From de6e6707d255997b15c7c651aab37647064a833a Mon Sep 17 00:00:00 2001 From: Wilfred Hughes Date: Thu, 19 Dec 2024 23:14:12 -0800 Subject: [PATCH] Use tree-sitter-ocaml from crates.io --- CHANGELOG.md | 2 +- Cargo.lock | 11 + Cargo.toml | 1 + build.rs | 10 - sample_files/compare.expected | 6 +- src/parse/tree_sitter_parser.rs | 22 +- vendored_parsers/highlights/ocaml.scm | 1 - vendored_parsers/tree-sitter-ocaml-src/common | 1 - .../tree-sitter-ocaml-src/interface | 1 - vendored_parsers/tree-sitter-ocaml-src/ocaml | 1 - .../tree-sitter-ocaml/.gitattributes | 3 - .../.github/workflows/build.yml | 56 - .../.github/workflows/publish.yml | 29 - vendored_parsers/tree-sitter-ocaml/.gitignore | 19 - vendored_parsers/tree-sitter-ocaml/Cargo.toml | 31 - vendored_parsers/tree-sitter-ocaml/LICENSE | 21 - vendored_parsers/tree-sitter-ocaml/README.md | 19 - .../tree-sitter-ocaml/binding.gyp | 21 - .../bindings/node/binding.cc | 37 - .../tree-sitter-ocaml/bindings/node/index.js | 20 - .../bindings/node/interface.js | 1 - .../tree-sitter-ocaml/bindings/node/ocaml.js | 1 - .../tree-sitter-ocaml/bindings/rust/README.md | 42 - .../tree-sitter-ocaml/bindings/rust/build.rs | 31 - .../tree-sitter-ocaml/bindings/rust/lib.rs | 104 - .../tree-sitter-ocaml/common/scanner.h | 294 - .../interface/corpus/module-items.txt | 1 - .../interface/corpus/module-specification.txt | 53 - .../tree-sitter-ocaml/interface/grammar.js | 7 - .../tree-sitter-ocaml/interface/package.json | 3 - .../interface/src/grammar.json | 10883 - .../interface/src/node-types.json | 5977 - .../tree-sitter-ocaml/interface/src/parser.c | 438041 ------------- .../interface/src/scanner.cc | 29 - .../interface/src/tree_sitter/parser.h | 224 - .../ocaml/corpus/attributes.txt | 173 - .../ocaml/corpus/comments.txt | 77 - .../ocaml/corpus/expressions.txt | 719 - .../ocaml/corpus/module-expressions.txt | 146 - .../ocaml/corpus/module-implementation.txt | 98 - .../ocaml/corpus/module-items.txt | 215 - .../ocaml/corpus/module-types.txt | 118 - .../ocaml/corpus/patterns.txt | 235 - .../ocaml/corpus/toplevel.txt | 31 - .../tree-sitter-ocaml/ocaml/corpus/types.txt | 244 - .../tree-sitter-ocaml/ocaml/grammar.js | 2062 - .../tree-sitter-ocaml/ocaml/package.json | 3 - .../tree-sitter-ocaml/ocaml/src/grammar.json | 10900 - .../ocaml/src/node-types.json | 5953 - .../tree-sitter-ocaml/ocaml/src/parser.c | 507923 --------------- .../tree-sitter-ocaml/ocaml/src/scanner.cc | 29 - .../ocaml/src/tree_sitter/parser.h | 224 - .../tree-sitter-ocaml/package.json | 45 - .../tree-sitter-ocaml/queries/highlights.scm | 147 - .../tree-sitter-ocaml/queries/locals.scm | 24 - .../tree-sitter-ocaml/queries/tags.scm | 116 - .../script/known_failures.txt | 47 - .../tree-sitter-ocaml/script/parse-examples | 60 - .../test/highlight/attributes.ml | 4 - .../test/highlight/constants.ml | 14 - .../test/highlight/functions.ml | 32 - .../test/highlight/locals.ml | 47 - .../test/highlight/modules.ml | 38 - .../test/highlight/operators.ml | 19 - .../tree-sitter-ocaml/test/highlight/types.ml | 33 - 65 files changed, 24 insertions(+), 985755 deletions(-) delete mode 120000 vendored_parsers/highlights/ocaml.scm delete mode 120000 vendored_parsers/tree-sitter-ocaml-src/common delete mode 120000 vendored_parsers/tree-sitter-ocaml-src/interface delete mode 120000 vendored_parsers/tree-sitter-ocaml-src/ocaml delete mode 100644 vendored_parsers/tree-sitter-ocaml/.gitattributes delete mode 100644 vendored_parsers/tree-sitter-ocaml/.github/workflows/build.yml delete mode 100644 vendored_parsers/tree-sitter-ocaml/.github/workflows/publish.yml delete mode 100644 vendored_parsers/tree-sitter-ocaml/.gitignore delete mode 100644 vendored_parsers/tree-sitter-ocaml/Cargo.toml delete mode 100644 vendored_parsers/tree-sitter-ocaml/LICENSE delete mode 100644 vendored_parsers/tree-sitter-ocaml/README.md delete mode 100644 vendored_parsers/tree-sitter-ocaml/binding.gyp delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/node/binding.cc delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/node/index.js delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/node/interface.js delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/node/ocaml.js delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/rust/README.md delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/rust/build.rs delete mode 100644 vendored_parsers/tree-sitter-ocaml/bindings/rust/lib.rs delete mode 100644 vendored_parsers/tree-sitter-ocaml/common/scanner.h delete mode 120000 vendored_parsers/tree-sitter-ocaml/interface/corpus/module-items.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/corpus/module-specification.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/grammar.js delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/package.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/src/grammar.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/src/node-types.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/src/parser.c delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/src/scanner.cc delete mode 100644 vendored_parsers/tree-sitter-ocaml/interface/src/tree_sitter/parser.h delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/attributes.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/comments.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/expressions.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-expressions.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-implementation.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-items.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-types.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/patterns.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/toplevel.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/corpus/types.txt delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/grammar.js delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/package.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/src/grammar.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/src/node-types.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/src/parser.c delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/src/scanner.cc delete mode 100644 vendored_parsers/tree-sitter-ocaml/ocaml/src/tree_sitter/parser.h delete mode 100644 vendored_parsers/tree-sitter-ocaml/package.json delete mode 100644 vendored_parsers/tree-sitter-ocaml/queries/highlights.scm delete mode 100644 vendored_parsers/tree-sitter-ocaml/queries/locals.scm delete mode 100644 vendored_parsers/tree-sitter-ocaml/queries/tags.scm delete mode 100644 vendored_parsers/tree-sitter-ocaml/script/known_failures.txt delete mode 100755 vendored_parsers/tree-sitter-ocaml/script/parse-examples delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/attributes.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/constants.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/functions.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/locals.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/modules.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/operators.ml delete mode 100644 vendored_parsers/tree-sitter-ocaml/test/highlight/types.ml diff --git a/CHANGELOG.md b/CHANGELOG.md index d7575d382..54df9c12e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ with YAML. Improved language detection when one argument is a named pipe. Updated to the latest tree-sitter parser for Haskell, Objective-C, -Ruby and Scala. +OCaml, Ruby and Scala. ### Syntax Highlighting diff --git a/Cargo.lock b/Cargo.lock index e99518c7b..6f851c46c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -252,6 +252,7 @@ dependencies = [ "tree-sitter-haskell", "tree-sitter-language", "tree-sitter-objc", + "tree-sitter-ocaml", "tree-sitter-ruby", "tree-sitter-scala", "tree_magic_mini", @@ -1031,6 +1032,16 @@ dependencies = [ "tree-sitter-language", ] +[[package]] +name = "tree-sitter-ocaml" +version = "0.23.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93c104a23d175906dd0cf1f872745d2b4ec10f29a75194a3556501b2f66ce377" +dependencies = [ + "cc", + "tree-sitter-language", +] + [[package]] name = "tree-sitter-ruby" version = "0.23.1" diff --git a/Cargo.toml b/Cargo.toml index e932c74be..e5061785b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -82,6 +82,7 @@ tree-sitter-haskell = "0.23.1" tree-sitter-ruby = "0.23.1" tree-sitter-scala = "0.23.3" tree-sitter-objc = "3.0.2" +tree-sitter-ocaml = "0.23.2" [dev-dependencies] # assert_cmd 2.0.10 requires predicates 3. diff --git a/build.rs b/build.rs index de46744ae..1a08cbb8f 100644 --- a/build.rs +++ b/build.rs @@ -243,16 +243,6 @@ fn main() { src_dir: "vendored_parsers/tree-sitter-nix-src", extra_files: vec!["scanner.c"], }, - TreeSitterParser { - name: "tree-sitter-ocaml", - src_dir: "vendored_parsers/tree-sitter-ocaml-src/ocaml/src", - extra_files: vec!["scanner.cc"], - }, - TreeSitterParser { - name: "tree-sitter-ocaml-interface", - src_dir: "vendored_parsers/tree-sitter-ocaml-src/interface/src", - extra_files: vec!["scanner.cc"], - }, TreeSitterParser { name: "tree-sitter-pascal", src_dir: "vendored_parsers/tree-sitter-pascal-src", diff --git a/sample_files/compare.expected b/sample_files/compare.expected index 1fe14474c..fed88e627 100644 --- a/sample_files/compare.expected +++ b/sample_files/compare.expected @@ -152,7 +152,7 @@ sample_files/metadata_1.clj sample_files/metadata_2.clj 4b58ce366467c8cca46db53508e81323 - sample_files/modules_1.ml sample_files/modules_2.ml -05438d347d9e2ee90376b193098fc1fc - +b29a0d9427b7f5a9450163a9f1ba7f49 - sample_files/multibyte_1.py sample_files/multibyte_2.py f761255d521267ace4f4887a21664a12 - @@ -191,7 +191,7 @@ sample_files/objc_module_1.m sample_files/objc_module_2.m f4a376b78a73c190dc91b39d739490a5 - sample_files/ocaml_1.ml sample_files/ocaml_2.ml -36e6ea64ce5cfbbf5178b56f2469478b - +20586eb6dedffb55c7a9e264ed3739c9 - sample_files/outer_delimiter_1.el sample_files/outer_delimiter_2.el a7e206f6391237be0ce8ed244ec3dd62 - @@ -287,7 +287,7 @@ sample_files/typescript_1.ts sample_files/typescript_2.ts fee7ee33d2037ad1941ba6bb5532a1db - sample_files/typing_1.ml sample_files/typing_2.ml -28bf693af81e1c45ff9ee47ac29895ef - +975a97f2a6798abd1e4c0ce219e183fd - sample_files/utf16_1.py sample_files/utf16_2.py 3bcee785d4cebc38a42eafe49a198b52 - diff --git a/src/parse/tree_sitter_parser.rs b/src/parse/tree_sitter_parser.rs index 349c93bce..cda82fea6 100644 --- a/src/parse/tree_sitter_parser.rs +++ b/src/parse/tree_sitter_parser.rs @@ -96,8 +96,6 @@ extern "C" { fn tree_sitter_make() -> ts::Language; fn tree_sitter_newick() -> ts::Language; fn tree_sitter_nix() -> ts::Language; - fn tree_sitter_ocaml() -> ts::Language; - fn tree_sitter_ocaml_interface() -> ts::Language; fn tree_sitter_pascal() -> ts::Language; fn tree_sitter_php() -> ts::Language; fn tree_sitter_perl() -> ts::Language; @@ -794,30 +792,26 @@ pub(crate) fn from_language(language: guess::Language) -> TreeSitterConfig { } } OCaml => { - let language = unsafe { tree_sitter_ocaml() }; + let language_fn = tree_sitter_ocaml::LANGUAGE_OCAML; + let language = tree_sitter::Language::new(language_fn); TreeSitterConfig { language: language.clone(), atom_nodes: OCAML_ATOM_NODES.iter().copied().collect(), delimiter_tokens: vec![("(", ")"), ("[", "]"), ("{", "}")], - highlight_query: ts::Query::new( - &language, - include_str!("../../vendored_parsers/highlights/ocaml.scm"), - ) - .unwrap(), + highlight_query: ts::Query::new(&language, tree_sitter_ocaml::HIGHLIGHTS_QUERY) + .unwrap(), sub_languages: vec![], } } OCamlInterface => { - let language = unsafe { tree_sitter_ocaml_interface() }; + let language_fn = tree_sitter_ocaml::LANGUAGE_OCAML_INTERFACE; + let language = tree_sitter::Language::new(language_fn); TreeSitterConfig { language: language.clone(), atom_nodes: OCAML_ATOM_NODES.iter().copied().collect(), delimiter_tokens: vec![("(", ")"), ("[", "]"), ("{", "}")], - highlight_query: ts::Query::new( - &language, - include_str!("../../vendored_parsers/highlights/ocaml.scm"), - ) - .unwrap(), + // TODO: why doesn't tree_sitter_ocaml::HIGHLIGHTS_QUERY work here? + highlight_query: ts::Query::new(&language, "").unwrap(), sub_languages: vec![], } } diff --git a/vendored_parsers/highlights/ocaml.scm b/vendored_parsers/highlights/ocaml.scm deleted file mode 120000 index 9738149b7..000000000 --- a/vendored_parsers/highlights/ocaml.scm +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-ocaml/queries/highlights.scm \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml-src/common b/vendored_parsers/tree-sitter-ocaml-src/common deleted file mode 120000 index 801894d31..000000000 --- a/vendored_parsers/tree-sitter-ocaml-src/common +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-ocaml/common \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml-src/interface b/vendored_parsers/tree-sitter-ocaml-src/interface deleted file mode 120000 index 3f655083f..000000000 --- a/vendored_parsers/tree-sitter-ocaml-src/interface +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-ocaml/interface \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml-src/ocaml b/vendored_parsers/tree-sitter-ocaml-src/ocaml deleted file mode 120000 index 7894f6c8e..000000000 --- a/vendored_parsers/tree-sitter-ocaml-src/ocaml +++ /dev/null @@ -1 +0,0 @@ -../tree-sitter-ocaml/ocaml \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml/.gitattributes b/vendored_parsers/tree-sitter-ocaml/.gitattributes deleted file mode 100644 index 6b02fc2a0..000000000 --- a/vendored_parsers/tree-sitter-ocaml/.gitattributes +++ /dev/null @@ -1,3 +0,0 @@ -ocaml/src/parser.c linguist-vendored -interface/src/parser.c linguist-vendored -/examples/** linguist-vendored diff --git a/vendored_parsers/tree-sitter-ocaml/.github/workflows/build.yml b/vendored_parsers/tree-sitter-ocaml/.github/workflows/build.yml deleted file mode 100644 index 6774d1165..000000000 --- a/vendored_parsers/tree-sitter-ocaml/.github/workflows/build.yml +++ /dev/null @@ -1,56 +0,0 @@ -name: build - -on: [push, pull_request] - -env: - CARGO_TERM_COLOR: always - CARGO_INCREMENTAL: 0 - -jobs: - build-node: - name: build-node - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Setup Node - uses: actions/setup-node@v2-beta - with: - node-version: '12' - - - name: Display Node versions - run: | - node --version - npm --version - - - name: Install dependencies - run: npm install - - - name: Cache examples - uses: actions/cache@v3 - with: - path: examples - key: ${{ hashFiles('script/parse-examples') }} - - - name: Test corpus & parse examples - run: npm test - - build-rust: - name: build-rust - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - - - name: Build - run: cargo build --release - - - name: Test - run: cargo test diff --git a/vendored_parsers/tree-sitter-ocaml/.github/workflows/publish.yml b/vendored_parsers/tree-sitter-ocaml/.github/workflows/publish.yml deleted file mode 100644 index b3e31b4a3..000000000 --- a/vendored_parsers/tree-sitter-ocaml/.github/workflows/publish.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: publish - -on: - push: - tags: - - v* - -env: - CARGO_TERM_COLOR: always - CARGO_INCREMENTAL: 0 - -jobs: - crate: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Install rust - uses: actions-rs/toolchain@v1 - with: - toolchain: stable - profile: minimal - override: true - - - name: Publish crate - uses: katyo/publish-crates@v1 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/vendored_parsers/tree-sitter-ocaml/.gitignore b/vendored_parsers/tree-sitter-ocaml/.gitignore deleted file mode 100644 index 7c2996825..000000000 --- a/vendored_parsers/tree-sitter-ocaml/.gitignore +++ /dev/null @@ -1,19 +0,0 @@ -package-lock.json -node_modules -build -examples -*.log -log.html -/test.ml -/test.mli -target -Cargo.lock - -# These files would be generated by 'tree-sitter generate' with the default -# settings. We don't want them because there's already a copy at the root. -/interface/Cargo.toml -/interface/binding.gyp -/interface/bindings -/ocaml/Cargo.toml -/ocaml/binding.gyp -/ocaml/bindings diff --git a/vendored_parsers/tree-sitter-ocaml/Cargo.toml b/vendored_parsers/tree-sitter-ocaml/Cargo.toml deleted file mode 100644 index c76f8c03f..000000000 --- a/vendored_parsers/tree-sitter-ocaml/Cargo.toml +++ /dev/null @@ -1,31 +0,0 @@ -[package] -name = "tree-sitter-ocaml" -description = "OCaml grammar for the tree-sitter parsing library" -version = "0.20.1" -authors = ["Max Brunsfeld "] -license = "MIT" -readme = "bindings/rust/README.md" -keywords = ["incremental", "parsing", "ocaml"] -categories = ["parsing", "text-editors"] -repository = "https://github.com/tree-sitter/tree-sitter-ocaml" -edition = "2018" - -build = "bindings/rust/build.rs" -include = [ - "common/*", - "bindings/rust/*", - "ocaml/grammar.js", - "ocaml/src/*", - "interface/grammar.js", - "interface/src/*", - "queries/*" -] - -[lib] -path = "bindings/rust/lib.rs" - -[dependencies] -tree-sitter = "0.20" - -[build-dependencies] -cc = "1.0" diff --git a/vendored_parsers/tree-sitter-ocaml/LICENSE b/vendored_parsers/tree-sitter-ocaml/LICENSE deleted file mode 100644 index 82557a14d..000000000 --- a/vendored_parsers/tree-sitter-ocaml/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -MIT License - -Copyright (c) 2020 Max Brunsfeld and Pieter Goetschalckx - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. diff --git a/vendored_parsers/tree-sitter-ocaml/README.md b/vendored_parsers/tree-sitter-ocaml/README.md deleted file mode 100644 index d9c59868c..000000000 --- a/vendored_parsers/tree-sitter-ocaml/README.md +++ /dev/null @@ -1,19 +0,0 @@ -tree-sitter-ocaml -================= - -[![Build Status](https://github.com/tree-sitter/tree-sitter-ocaml/workflows/build/badge.svg)](https://github.com/tree-sitter/tree-sitter-ocaml/actions?query=workflow%3Abuild) - -OCaml grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter). - -This module defines two grammars for implementation (`.ml`) and interface (`.mli`) files. Require them as follows: - -```js -require('tree-sitter-ocaml').ocaml; -require('tree-sitter-ocaml').interface; -``` - -References - -* [OCaml language reference](https://ocaml.org/manual/language.html) -* [OCaml language extensions](https://ocaml.org/manual/extn.html) -* [OCaml parser](https://github.com/ocaml/ocaml/blob/trunk/parsing/parser.mly) diff --git a/vendored_parsers/tree-sitter-ocaml/binding.gyp b/vendored_parsers/tree-sitter-ocaml/binding.gyp deleted file mode 100644 index 4512efd52..000000000 --- a/vendored_parsers/tree-sitter-ocaml/binding.gyp +++ /dev/null @@ -1,21 +0,0 @@ -{ - "targets": [ - { - "target_name": "tree_sitter_ocaml_binding", - "include_dirs": [ - " -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_ocaml(); -extern "C" TSLanguage * tree_sitter_ocaml_interface(); - -namespace { - -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local ocaml_tpl = Nan::New(New); - ocaml_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - ocaml_tpl->InstanceTemplate()->SetInternalFieldCount(1); - Local ocaml_constructor = Nan::GetFunction(ocaml_tpl).ToLocalChecked(); - Local ocaml_instance = ocaml_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(ocaml_instance, 0, tree_sitter_ocaml()); - Nan::Set(ocaml_instance, Nan::New("name").ToLocalChecked(), Nan::New("ocaml").ToLocalChecked()); - - Local iface_tpl = Nan::New(New); - iface_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - iface_tpl->InstanceTemplate()->SetInternalFieldCount(1); - Local iface_constructor = Nan::GetFunction(iface_tpl).ToLocalChecked(); - Local iface_instance = iface_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(iface_instance, 0, tree_sitter_ocaml_interface()); - Nan::Set(iface_instance, Nan::New("name").ToLocalChecked(), Nan::New("ocaml_interface").ToLocalChecked()); - - Nan::Set(exports, Nan::New("ocaml").ToLocalChecked(), ocaml_instance); - Nan::Set(exports, Nan::New("interface").ToLocalChecked(), iface_instance); -} - -NODE_MODULE(tree_sitter_ocaml_binding, Init) - -} // namespace diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/node/index.js b/vendored_parsers/tree-sitter-ocaml/bindings/node/index.js deleted file mode 100644 index 54f51a6d5..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/node/index.js +++ /dev/null @@ -1,20 +0,0 @@ -try { - module.exports = require("../../build/Release/tree_sitter_ocaml_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_ocaml_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} - -try { - module.exports.ocaml.nodeTypeInfo = require("../../ocaml/src/node-types.json"); - module.exports.interface.nodeTypeInfo = require("../../interface/src/node-types.json"); -} catch (_) {} diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/node/interface.js b/vendored_parsers/tree-sitter-ocaml/bindings/node/interface.js deleted file mode 100644 index d844872f0..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/node/interface.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./index').interface; diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/node/ocaml.js b/vendored_parsers/tree-sitter-ocaml/bindings/node/ocaml.js deleted file mode 100644 index d05488e48..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/node/ocaml.js +++ /dev/null @@ -1 +0,0 @@ -module.exports = require('./index').ocaml; diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/rust/README.md b/vendored_parsers/tree-sitter-ocaml/bindings/rust/README.md deleted file mode 100644 index 3ead5ee5a..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/rust/README.md +++ /dev/null @@ -1,42 +0,0 @@ -# tree-sitter-ocaml - -This crate provides Ocaml grammars for the [tree-sitter][] parsing library. -There are separate grammars for implementation (`.ml`) and interface (`.mli`) -files. - -To use this crate, add it to the `[dependencies]` section of your `Cargo.toml` -file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20" -tree-sitter-ocaml = "0.20" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code: - -```rust -let code = r#" - module M = struct - let x = 0 - end -"#; -let mut parser = Parser::new(); -parser - .set_language(tree_sitter_ocaml::language_ocaml()) - .expect("Error loading OCaml grammar"); -let tree = parser.parse(code, None).unwrap(); -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -[language func]: https://docs.rs/tree-sitter-rust/*/tree_sitter_ocaml/fn.language_ocaml.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/rust/build.rs b/vendored_parsers/tree-sitter-ocaml/bindings/rust/build.rs deleted file mode 100644 index 07a5de755..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/rust/build.rs +++ /dev/null @@ -1,31 +0,0 @@ -fn main() { - let root_dir = std::path::Path::new("."); - let ocaml_dir = root_dir.join("ocaml").join("src"); - let interface_dir = root_dir.join("interface").join("src"); - - let mut c_config = cc::Build::new(); - c_config.include(&ocaml_dir); - c_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable") - .flag_if_supported("-Wno-trigraphs"); - - let mut cpp_config = cc::Build::new(); - cpp_config.cpp(true); - cpp_config.include(&ocaml_dir); - cpp_config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); - - for dir in &[ocaml_dir, interface_dir] { - let parser_path = dir.join("parser.c"); - let scanner_path = dir.join("scanner.cc"); - c_config.file(&parser_path); - cpp_config.file(&scanner_path); - println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); - println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); - } - - c_config.compile("parser"); - cpp_config.compile("scanner"); -} diff --git a/vendored_parsers/tree-sitter-ocaml/bindings/rust/lib.rs b/vendored_parsers/tree-sitter-ocaml/bindings/rust/lib.rs deleted file mode 100644 index 6418eb902..000000000 --- a/vendored_parsers/tree-sitter-ocaml/bindings/rust/lib.rs +++ /dev/null @@ -1,104 +0,0 @@ -//! This crate provides OCaml grammars for the [tree-sitter][] parsing library. -//! There are separate grammars for implementation (`.ml`) and interface -//! (`.mli`) files. -//! -//! Typically, you will use the [language_ocaml][language func] function to add -//! this grammar to a tree-sitter [Parser][], and then use the parser to parse -//! some code: -//! -//! ``` -//! let code = r#" -//! module M = struct -//! let x = 0 -//! end -//! "#; -//! let mut parser = tree_sitter::Parser::new(); -//! parser -//! .set_language(tree_sitter_ocaml::language_ocaml()) -//! .expect("Error loading OCaml grammar"); -//! let tree = parser.parse(code, None).unwrap(); -//! ``` -//! -//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language_ocaml.html -//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -//! [tree-sitter]: https://tree-sitter.github.io/ - -use tree_sitter::Language; - -extern "C" { - fn tree_sitter_ocaml() -> Language; - fn tree_sitter_ocaml_interface() -> Language; -} - -/// Get the tree-sitter [Language][] for OCaml. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language_ocaml() -> Language { - unsafe { tree_sitter_ocaml() } -} - -/// Get the tree-sitter [Language][] for OCaml interfaces. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language_ocaml_interface() -> Language { - unsafe { tree_sitter_ocaml_interface() } -} - -/// The content of the [`node-types.json`][] file for OCaml. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const OCAML_NODE_TYPES: &'static str = include_str!("../../ocaml/src/node-types.json"); - -/// The content of the [`node-types.json`][] file for OCaml interfaces. -/// -/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types -pub const INTERFACE_NODE_TYPES: &'static str = include_str!("../../interface/src/node-types.json"); - -/// The syntax highlighting query for OCaml. -pub const HIGHLIGHTS_QUERY: &'static str = include_str!("../../queries/highlights.scm"); - -/// The local-variable syntax highlighting query for OCaml. -pub const LOCALS_QUERY: &'static str = include_str!("../../queries/locals.scm"); - -/// The symbol tagging query for OCaml. -pub const TAGGING_QUERY: &'static str = include_str!("../../queries/tags.scm"); - -#[cfg(test)] -mod tests { - #[test] - fn test_ocaml() { - let mut parser = tree_sitter::Parser::new(); - parser - .set_language(super::language_ocaml()) - .expect("Error loading OCaml grammar"); - - let code = r#" - module M = struct - let x = 0 - end - "#; - - let tree = parser.parse(code, None).unwrap(); - let root = tree.root_node(); - assert!(!root.has_error()); - } - - #[test] - fn test_ocaml_interface() { - let mut parser = tree_sitter::Parser::new(); - parser - .set_language(super::language_ocaml_interface()) - .expect("Error loading OCaml interface grammar"); - - let code = r#" - module M : sig - val x : int - end - "#; - - let tree = parser.parse(code, None).unwrap(); - let root = tree.root_node(); - assert!(!root.has_error()); - } -} diff --git a/vendored_parsers/tree-sitter-ocaml/common/scanner.h b/vendored_parsers/tree-sitter-ocaml/common/scanner.h deleted file mode 100644 index 2be4c7936..000000000 --- a/vendored_parsers/tree-sitter-ocaml/common/scanner.h +++ /dev/null @@ -1,294 +0,0 @@ -#include -#include -#include - -namespace { - -enum { - COMMENT, - LEFT_QUOTED_STRING_DELIM, - RIGHT_QUOTED_STRING_DELIM, - STRING_DELIM, - LINE_NUMBER_DIRECTIVE, - NULL_CHARACTER -}; - -struct Scanner { - bool in_string = false; - std::string quoted_string_id; - - unsigned serialize(char *buffer) { - size_t size = quoted_string_id.size(); - - buffer[0] = in_string; - quoted_string_id.copy(&buffer[1], size); - return size + 1; - } - - void deserialize(const char *buffer, unsigned length) { - if (length > 0) { - in_string = buffer[0]; - quoted_string_id.assign(&buffer[1], length - 1); - } - } - - void advance(TSLexer *lexer) { - lexer->advance(lexer, false); - } - - void skip(TSLexer *lexer) { - lexer->advance(lexer, true); - } - - bool scan(TSLexer *lexer, const bool *valid_symbols) { - if (valid_symbols[LEFT_QUOTED_STRING_DELIM] && (iswlower(lexer->lookahead) || lexer->lookahead == '_' || lexer->lookahead == '|')) { - lexer->result_symbol = LEFT_QUOTED_STRING_DELIM; - return scan_left_quoted_string_delimiter(lexer); - } else if (valid_symbols[RIGHT_QUOTED_STRING_DELIM] && (lexer->lookahead == '|')) { - advance(lexer); - lexer->result_symbol = RIGHT_QUOTED_STRING_DELIM; - return scan_right_quoted_string_delimiter(lexer); - } else if (in_string && valid_symbols[STRING_DELIM] && lexer->lookahead == '"') { - advance(lexer); - in_string = false; - lexer->result_symbol = STRING_DELIM; - return true; - } - - while (iswspace(lexer->lookahead)) { - skip(lexer); - } - - if (!in_string && lexer->lookahead == '#' && lexer->get_column(lexer) == 0) { - advance(lexer); - - while (lexer->lookahead == ' ' || lexer->lookahead == '\t') advance(lexer); - - if (!iswdigit(lexer->lookahead)) return false; - while (iswdigit(lexer->lookahead)) advance(lexer); - - while (lexer->lookahead == ' ' || lexer->lookahead == '\t') advance(lexer); - - if (lexer->lookahead != '"') return false; - while (lexer->lookahead != '\n' && lexer->lookahead != '\r' && lexer->lookahead != '"') advance(lexer); - if (lexer->lookahead != '"') return false; - - while (lexer->lookahead != '\n' && lexer->lookahead != '\r') advance(lexer); - - lexer->result_symbol = LINE_NUMBER_DIRECTIVE; - return true; - } else if (!in_string && lexer->lookahead == '(') { - advance(lexer); - lexer->result_symbol = COMMENT; - return scan_comment(lexer); - } else if (!in_string && valid_symbols[STRING_DELIM] && lexer->lookahead == '"') { - advance(lexer); - in_string = true; - lexer->result_symbol = STRING_DELIM; - return true; - } else if (valid_symbols[NULL_CHARACTER] && lexer->lookahead == '\0') { - return !lexer->eof(lexer); - } - - return false; - } - - void scan_string(TSLexer *lexer) { - for (;;) { - switch (lexer->lookahead) { - case '\\': - advance(lexer); - advance(lexer); - break; - case '"': - advance(lexer); - return; - case '\0': - if (lexer->eof(lexer)) return; - advance(lexer); - break; - default: - advance(lexer); - } - } - } - - char scan_character(TSLexer *lexer) { - char last = 0; - - switch (lexer->lookahead) { - case '\\': - advance(lexer); - if (iswdigit(lexer->lookahead)) { - advance(lexer); - for (size_t i = 0; i < 2; i++) { - if (!iswdigit(lexer->lookahead)) return 0; - advance(lexer); - } - } else { - switch (lexer->lookahead) { - case 'x': - advance(lexer); - for (size_t i = 0; i < 2; i++) { - if (!iswdigit(lexer->lookahead) && (towupper(lexer->lookahead) < 'A' || towupper(lexer->lookahead) > 'F')) return 0; - advance(lexer); - } - break; - case 'o': - advance(lexer); - for (size_t i = 0; i < 3; i++) { - if (!iswdigit(lexer->lookahead) || lexer->lookahead > '7') return 0; - advance(lexer); - } - break; - case '\'': - case '"': - case '\\': - case 'n': - case 't': - case 'b': - case 'r': - case ' ': - last = lexer->lookahead; - advance(lexer); - break; - default: - return 0; - } - } - break; - case '\'': - break; - case '\0': - if (lexer->eof(lexer)) return 0; - advance(lexer); - break; - default: - last = lexer->lookahead; - advance(lexer); - } - - if (lexer->lookahead == '\'') { - advance(lexer); - return 0; - } else { - return last; - } - } - - bool scan_left_quoted_string_delimiter(TSLexer *lexer) { - quoted_string_id.clear(); - - while (iswlower(lexer->lookahead) || lexer->lookahead == '_') { - quoted_string_id.push_back(lexer->lookahead); - advance(lexer); - } - - if (lexer->lookahead != '|') return false; - - advance(lexer); - in_string = true; - return true; - } - - bool scan_right_quoted_string_delimiter(TSLexer *lexer) { - for (size_t i = 0; i < quoted_string_id.size(); i++) { - if (lexer->lookahead != quoted_string_id[i]) return false; - advance(lexer); - } - - if (lexer->lookahead != '}') return false; - - in_string = false; - return true; - } - - bool scan_quoted_string(TSLexer *lexer) { - if (!scan_left_quoted_string_delimiter(lexer)) return false; - - for (;;) { - switch (lexer->lookahead) { - case '|': - advance(lexer); - if (scan_right_quoted_string_delimiter(lexer)) return true; - break; - case '\0': - if (lexer->eof(lexer)) return false; - advance(lexer); - break; - default: - advance(lexer); - } - } - } - - bool scan_identifier(TSLexer *lexer) { - if (iswalpha(lexer->lookahead) || lexer->lookahead == '_') { - advance(lexer); - while (iswalnum(lexer->lookahead) || lexer->lookahead == '_' || lexer->lookahead == '\'') { - advance(lexer); - } - return true; - } - return false; - } - - bool scan_extattrident(TSLexer *lexer) { - while (scan_identifier(lexer)) { - if (lexer->lookahead != '.') return true; - } - return false; - } - - bool scan_comment(TSLexer *lexer) { - char last = 0; - - if (lexer->lookahead != '*') return false; - advance(lexer); - - for (;;) { - switch (last ? last : lexer->lookahead) { - case '(': - if (last) last = 0; else advance(lexer); - scan_comment(lexer); - break; - case '*': - if (last) last = 0; else advance(lexer); - if (lexer->lookahead == ')') { - advance(lexer); - return true; - } - break; - case '\'': - if (last) last = 0; else advance(lexer); - last = scan_character(lexer); - break; - case '"': - if (last) last = 0; else advance(lexer); - scan_string(lexer); - break; - case '{': - if (last) last = 0; else advance(lexer); - if (lexer->lookahead == '%') { - advance(lexer); - if (lexer->lookahead == '%') advance(lexer); - if (scan_extattrident(lexer)) { - while (iswspace(lexer->lookahead)) advance(lexer); - } else { - break; - } - } - if (scan_quoted_string(lexer)) advance(lexer); - break; - case '\0': - if (lexer->eof(lexer)) return false; - if (last) last = 0; else advance(lexer); - break; - default: - if (scan_identifier(lexer) || last) last = 0; else advance(lexer); - } - } - } -}; - -} diff --git a/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-items.txt b/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-items.txt deleted file mode 120000 index ecd4097d5..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-items.txt +++ /dev/null @@ -1 +0,0 @@ -../../ocaml/corpus/module-items.txt \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-specification.txt b/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-specification.txt deleted file mode 100644 index 2533e44da..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/corpus/module-specification.txt +++ /dev/null @@ -1,53 +0,0 @@ -============================== -Value specification -============================== - -val x : t -val x : 'a . 'a - ---- - -(compilation_unit - (value_specification - (value_name) - (type_constructor_path (type_constructor))) - (value_specification - (value_name) - (polymorphic_type (type_variable) (type_variable)))) - -============================== -Include -============================== - -include M -include t -include M.M -include M.t -include M.M.M -include M.M.t - ---- - -(compilation_unit - (include_module_type (module_type_path (module_type_name))) - (include_module_type (module_type_path (module_type_name))) - (include_module_type - (module_type_path - (extended_module_path (module_name)) - (module_type_name))) - (include_module_type - (module_type_path - (extended_module_path (module_name)) - (module_type_name))) - (include_module_type - (module_type_path - (extended_module_path - (extended_module_path (module_name)) - (module_name)) - (module_type_name))) - (include_module_type - (module_type_path - (extended_module_path - (extended_module_path (module_name)) - (module_name)) - (module_type_name)))) diff --git a/vendored_parsers/tree-sitter-ocaml/interface/grammar.js b/vendored_parsers/tree-sitter-ocaml/interface/grammar.js deleted file mode 100644 index 7954a5c6f..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/grammar.js +++ /dev/null @@ -1,7 +0,0 @@ -module.exports = grammar(require('../ocaml/grammar'), { - name: 'ocaml_interface', - - rules: { - compilation_unit: $ => optional($._signature) - } -}) diff --git a/vendored_parsers/tree-sitter-ocaml/interface/package.json b/vendored_parsers/tree-sitter-ocaml/interface/package.json deleted file mode 100644 index 83d44212c..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "main": "../bindings/node/interface" -} diff --git a/vendored_parsers/tree-sitter-ocaml/interface/src/grammar.json b/vendored_parsers/tree-sitter-ocaml/interface/src/grammar.json deleted file mode 100644 index 8ebb0a6aa..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/src/grammar.json +++ /dev/null @@ -1,10883 +0,0 @@ -{ - "name": "ocaml_interface", - "word": "_identifier", - "rules": { - "compilation_unit": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_signature" - }, - { - "type": "BLANK" - } - ] - }, - "shebang": { - "type": "PATTERN", - "value": "#!.*" - }, - "_structure": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item_ext" - }, - { - "type": "SYMBOL", - "name": "toplevel_directive" - }, - { - "type": "SYMBOL", - "name": "expression_item" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item_ext" - }, - { - "type": "SYMBOL", - "name": "toplevel_directive" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SYMBOL", - "name": "expression_item" - } - ] - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - } - ] - } - ] - }, - "expression_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_signature": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SYMBOL", - "name": "_signature_item_ext" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - } - ] - } - ] - }, - "toplevel_directive": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "directive" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "value_path" - }, - { - "type": "SYMBOL", - "name": "module_path" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_structure_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "SYMBOL", - "name": "external" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "SYMBOL", - "name": "module_type_definition" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "SYMBOL", - "name": "include_module" - }, - { - "type": "SYMBOL", - "name": "class_definition" - }, - { - "type": "SYMBOL", - "name": "class_type_definition" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - }, - "_structure_item_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "value_definition": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "rec" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "let_operator" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "let_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "and_operator" - } - ] - }, - { - "type": "SYMBOL", - "name": "let_binding" - } - ] - } - } - ] - } - ] - }, - "let_binding": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - } - }, - "_parameter": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_abstract_type" - }, - "named": true, - "value": "abstract_type" - } - ] - }, - "parameter": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_simple_pattern_ext" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_simple_pattern_ext" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "external": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "external" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "nonrec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "type_binding" - } - ] - } - } - ] - } - ] - }, - "type_binding": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_params" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_constructor" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_equation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variant_declaration" - }, - { - "type": "SYMBOL", - "name": "record_declaration" - }, - { - "type": "STRING", - "value": ".." - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_constraint" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "type_constructor_path" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "variant_declaration" - } - } - ] - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_type_params": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_type_param": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_variable" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "type_variable" - } - ] - } - ] - }, - "_type_equation": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "variant_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - } - ] - } - } - ] - } - ] - }, - "constructor_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_name" - }, - { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "named": true, - "value": "constructor_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "of" - }, - { - "type": "SYMBOL", - "name": "_constructor_argument" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "type_variable" - } - }, - { - "type": "STRING", - "value": "." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_argument" - }, - { - "type": "STRING", - "value": "->" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_constructor_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "record_declaration" - } - ] - }, - "record_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_declaration" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "field_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_field_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - } - ] - }, - "type_constraint": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "constraint" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "exception_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "exception" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "module_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "rec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "module_binding" - } - ] - } - } - ] - } - ] - }, - "module_binding": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "module_parameter": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_module_typed" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "module_type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_module_type_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_type_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "open_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "open" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "include_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "include" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "class_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "class_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "class_binding" - } - ] - } - } - ] - } - ] - }, - "class_binding": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "virtual" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - } - }, - "class_type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "class_type_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "class_type_binding" - } - ] - } - } - ] - } - ] - }, - "class_type_binding": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "virtual" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_type_name" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_signature_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_specification" - }, - { - "type": "SYMBOL", - "name": "external" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "SYMBOL", - "name": "module_type_definition" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "SYMBOL", - "name": "include_module_type" - }, - { - "type": "SYMBOL", - "name": "class_definition" - }, - { - "type": "SYMBOL", - "name": "class_type_definition" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - }, - "_signature_item_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_signature_item" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "value_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "include_module_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "include" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_module_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - "_module_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "module_type_path" - }, - { - "type": "SYMBOL", - "name": "signature" - }, - { - "type": "SYMBOL", - "name": "module_type_constraint" - }, - { - "type": "SYMBOL", - "name": "module_type_of" - }, - { - "type": "SYMBOL", - "name": "functor_type" - }, - { - "type": "SYMBOL", - "name": "parenthesized_module_type" - } - ] - }, - "_module_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "signature": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "sig" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_signature" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "module_type_constraint": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constrain_type" - }, - { - "type": "SYMBOL", - "name": "constrain_module" - }, - { - "type": "SYMBOL", - "name": "constrain_module_type" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constrain_type" - }, - { - "type": "SYMBOL", - "name": "constrain_module" - }, - { - "type": "SYMBOL", - "name": "constrain_module_type" - } - ] - } - ] - } - } - ] - } - ] - } - }, - "constrain_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_params" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - }, - { - "type": "SYMBOL", - "name": "_type_equation" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_constraint" - } - } - ] - }, - "constrain_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "SYMBOL", - "name": "extended_module_path" - } - ] - }, - "constrain_module_type": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "module_type_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - } - }, - "module_type_of": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "STRING", - "value": "of" - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - ] - }, - "functor_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "functor" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - } - }, - "parenthesized_module_type": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_simple_module_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "typed_module_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_module_expression" - }, - { - "type": "SYMBOL", - "name": "packed_module" - } - ] - }, - "_simple_module_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_module_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_module_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_module_expression" - }, - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "SYMBOL", - "name": "structure" - }, - { - "type": "SYMBOL", - "name": "functor" - }, - { - "type": "SYMBOL", - "name": "module_application" - } - ] - }, - "_module_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "structure": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "functor": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "functor" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - } - ] - } - }, - "module_application": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "functor", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_simple_module_expression_ext" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "typed_module_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_module_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "packed_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_module_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_class_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_class_type_ext" - } - ] - }, - "_simple_class_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class_type_path" - }, - { - "type": "SYMBOL", - "name": "instantiated_class_type" - }, - { - "type": "SYMBOL", - "name": "class_body_type" - }, - { - "type": "SYMBOL", - "name": "let_open_class_type" - } - ] - }, - "_simple_class_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_class_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_type" - }, - { - "type": "SYMBOL", - "name": "class_function_type" - } - ] - }, - "_class_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "instantiated_class_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "class_type_path" - } - ] - }, - "class_body_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "object" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_specification_ext" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - } - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "_class_field_specification": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inheritance_specification" - }, - { - "type": "SYMBOL", - "name": "instance_variable_specification" - }, - { - "type": "SYMBOL", - "name": "method_specification" - }, - { - "type": "SYMBOL", - "name": "type_parameter_constraint" - } - ] - }, - "_class_field_specification_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_specification" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "inheritance_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "inherit" - }, - { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "instance_variable_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_instance_variable_name" - }, - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "method_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "method" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_method_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "type_parameter_constraint": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "constraint" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "let_open_class_type": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - } - } - ] - } - }, - "class_function_type": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_tuple_type_ext" - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_class_type_ext" - } - ] - } - }, - "_simple_class_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class_path" - }, - { - "type": "SYMBOL", - "name": "instantiated_class" - }, - { - "type": "SYMBOL", - "name": "object_expression" - }, - { - "type": "SYMBOL", - "name": "typed_class_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_class_expression" - } - ] - }, - "_class_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_expression" - }, - { - "type": "SYMBOL", - "name": "class_function" - }, - { - "type": "SYMBOL", - "name": "class_application" - }, - { - "type": "SYMBOL", - "name": "let_class_expression" - }, - { - "type": "SYMBOL", - "name": "let_open_class_expression" - } - ] - }, - "_class_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "instantiated_class": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "class_path" - } - ] - }, - "typed_class_expression": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_class_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "class_function": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fun" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "class_application": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "class", - "content": { - "type": "SYMBOL", - "name": "_simple_class_expression" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_argument" - } - } - } - ] - } - }, - "let_class_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "_class_field": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inheritance_definition" - }, - { - "type": "SYMBOL", - "name": "instance_variable_definition" - }, - { - "type": "SYMBOL", - "name": "method_definition" - }, - { - "type": "SYMBOL", - "name": "type_parameter_constraint" - }, - { - "type": "SYMBOL", - "name": "class_initializer" - } - ] - }, - "_class_field_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "inheritance_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "inherit" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_pattern" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "instance_variable_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_instance_variable_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "method_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "method" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_method_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "class_initializer": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "initializer" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "let_open_class_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "parenthesized_class_expression": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "_simple_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - "_polymorphic_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_type" - } - ] - }, - "_polymorphic_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "polymorphic_type" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "polymorphic_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "type_variable" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_abstract_type" - }, - "named": true, - "value": "abstract_type" - } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "_abstract_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_type_constructor" - } - } - ] - }, - "_parenthesized_abstract_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_abstract_type" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_simple_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_variable" - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - }, - { - "type": "SYMBOL", - "name": "constructed_type" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_type" - }, - { - "type": "SYMBOL", - "name": "package_type" - }, - { - "type": "SYMBOL", - "name": "hash_type" - }, - { - "type": "SYMBOL", - "name": "object_type" - }, - { - "type": "SYMBOL", - "name": "parenthesized_type" - } - ] - }, - "_simple_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_tuple_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - } - ] - }, - "_tuple_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "aliased_type" - } - ] - }, - "_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "function_type": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "typed_label" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - }, - "typed_label": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - }, - "tuple_type": { - "type": "PREC", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type_ext" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - }, - "constructed_type": { - "type": "PREC", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - } - ] - } - }, - "aliased_type": { - "type": "PREC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "type_variable" - } - ] - } - }, - "polymorphic_variant_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "tag_specification" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[>" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "tag" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - ] - } - ] - }, - "_tag_spec": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "SYMBOL", - "name": "tag_specification" - } - ] - }, - "tag_specification": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "of" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "package_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "object_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "method_type" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "method_type" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - }, - "method_type": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_method_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - } - ] - }, - "hash_type": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "class_type_path" - } - ] - } - }, - "parenthesized_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_simple_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_path" - }, - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "typed_expression" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "list_expression" - }, - { - "type": "SYMBOL", - "name": "array_expression" - }, - { - "type": "SYMBOL", - "name": "record_expression" - }, - { - "type": "SYMBOL", - "name": "prefix_expression" - }, - { - "type": "SYMBOL", - "name": "hash_expression" - }, - { - "type": "SYMBOL", - "name": "field_get_expression" - }, - { - "type": "SYMBOL", - "name": "array_get_expression" - }, - { - "type": "SYMBOL", - "name": "string_get_expression" - }, - { - "type": "SYMBOL", - "name": "bigarray_get_expression" - }, - { - "type": "SYMBOL", - "name": "coercion_expression" - }, - { - "type": "SYMBOL", - "name": "local_open_expression" - }, - { - "type": "SYMBOL", - "name": "package_expression" - }, - { - "type": "SYMBOL", - "name": "new_expression" - }, - { - "type": "SYMBOL", - "name": "object_copy_expression" - }, - { - "type": "SYMBOL", - "name": "method_invocation" - }, - { - "type": "SYMBOL", - "name": "object_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "ocamlyacc_value" - } - ] - }, - "_simple_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression" - }, - { - "type": "SYMBOL", - "name": "product_expression" - }, - { - "type": "SYMBOL", - "name": "cons_expression" - }, - { - "type": "SYMBOL", - "name": "application_expression" - }, - { - "type": "SYMBOL", - "name": "infix_expression" - }, - { - "type": "SYMBOL", - "name": "sign_expression" - }, - { - "type": "SYMBOL", - "name": "set_expression" - }, - { - "type": "SYMBOL", - "name": "if_expression" - }, - { - "type": "SYMBOL", - "name": "while_expression" - }, - { - "type": "SYMBOL", - "name": "for_expression" - }, - { - "type": "SYMBOL", - "name": "match_expression" - }, - { - "type": "SYMBOL", - "name": "function_expression" - }, - { - "type": "SYMBOL", - "name": "fun_expression" - }, - { - "type": "SYMBOL", - "name": "try_expression" - }, - { - "type": "SYMBOL", - "name": "let_expression" - }, - { - "type": "SYMBOL", - "name": "assert_expression" - }, - { - "type": "SYMBOL", - "name": "lazy_expression" - }, - { - "type": "SYMBOL", - "name": "let_module_expression" - }, - { - "type": "SYMBOL", - "name": "let_open_expression" - }, - { - "type": "SYMBOL", - "name": "let_exception_expression" - } - ] - }, - "_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_sequence_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "sequence_expression" - } - ] - }, - "_sequence_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "typed_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "product_expression": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "cons_expression": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "list_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "array_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - }, - "record_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "with" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_expression" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "field_expression": { - "type": "PREC", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "field_path" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "application_expression": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_argument" - } - } - } - ] - } - }, - "_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "SYMBOL", - "name": "labeled_argument" - } - ] - }, - "labeled_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "prefix_expression": { - "type": "PREC", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "prefix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - } - ] - } - }, - "sign_expression": { - "type": "PREC", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "sign_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "hash_expression": { - "type": "PREC_LEFT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "hash_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - } - ] - } - }, - "infix_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_pow_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_mult_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_add_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_concat_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_rel_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_and_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_or_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_assign_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - } - ] - }, - "field_get_expression": { - "type": "PREC_LEFT", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "field_path" - } - ] - } - }, - "array_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "string_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "bigarray_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "set_expression": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "field_get_expression" - }, - { - "type": "SYMBOL", - "name": "array_get_expression" - }, - { - "type": "SYMBOL", - "name": "string_get_expression" - }, - { - "type": "SYMBOL", - "name": "bigarray_get_expression" - }, - { - "type": "SYMBOL", - "name": "_instance_variable_name" - } - ] - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "if_expression": { - "type": "PREC_RIGHT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "then_clause" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_clause" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "then_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "then" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - "else_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - "while_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "do_clause" - } - ] - }, - "do_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "done" - } - ] - }, - "for_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_value_pattern" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "from", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "to" - }, - { - "type": "STRING", - "value": "downto" - } - ] - }, - { - "type": "FIELD", - "name": "to", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "do_clause" - } - ] - }, - "sequence_expression": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "match_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "match_operator" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "_match_cases": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "match_case" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "match_case" - } - ] - } - } - ] - } - ] - } - }, - "match_case": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "guard" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "SYMBOL", - "name": "refutation_case" - } - ] - } - } - ] - }, - "guard": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "when" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - "refutation_case": { - "type": "STRING", - "value": "." - }, - "function_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "function" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "fun_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fun" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "try_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "try" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "let_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - } - }, - "coercion_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "assert_expression": { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "assert" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - } - }, - "lazy_expression": { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - } - }, - "let_module_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "let_open_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "local_open_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_expression" - }, - { - "type": "SYMBOL", - "name": "array_expression" - }, - { - "type": "SYMBOL", - "name": "record_expression" - }, - { - "type": "SYMBOL", - "name": "object_copy_expression" - }, - { - "type": "SYMBOL", - "name": "package_expression" - } - ] - } - ] - }, - "package_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "let_exception_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "new_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "new" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "class_path" - } - ] - }, - "object_copy_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "instance_variable_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "instance_variable_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">}" - } - ] - }, - "instance_variable_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_instance_variable_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "method_invocation": { - "type": "PREC_RIGHT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "_method_name" - } - ] - } - }, - "object_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "object" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_ext" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - } - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "parenthesized_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "begin" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "ocamlyacc_value": { - "type": "PATTERN", - "value": "\\$[0-9]+" - }, - "_simple_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_pattern" - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "SYMBOL", - "name": "typed_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_pattern" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - }, - { - "type": "SYMBOL", - "name": "list_pattern" - }, - { - "type": "SYMBOL", - "name": "array_pattern" - }, - { - "type": "SYMBOL", - "name": "local_open_pattern" - }, - { - "type": "SYMBOL", - "name": "package_pattern" - }, - { - "type": "SYMBOL", - "name": "parenthesized_pattern" - } - ] - }, - "_simple_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_pattern" - }, - { - "type": "SYMBOL", - "name": "alias_pattern" - }, - { - "type": "SYMBOL", - "name": "or_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_pattern" - }, - { - "type": "SYMBOL", - "name": "tag_pattern" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - }, - { - "type": "SYMBOL", - "name": "cons_pattern" - }, - { - "type": "SYMBOL", - "name": "range_pattern" - }, - { - "type": "SYMBOL", - "name": "lazy_pattern" - }, - { - "type": "SYMBOL", - "name": "exception_pattern" - } - ] - }, - "_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_binding_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "typed_binding_pattern" - }, - "named": true, - "value": "typed_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "record_binding_pattern" - }, - "named": true, - "value": "record_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "list_binding_pattern" - }, - "named": true, - "value": "list_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "array_binding_pattern" - }, - "named": true, - "value": "array_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "local_open_binding_pattern" - }, - "named": true, - "value": "local_open_pattern" - }, - { - "type": "SYMBOL", - "name": "package_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "parenthesized_binding_pattern" - }, - "named": true, - "value": "parenthesized_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "alias_binding_pattern" - }, - "named": true, - "value": "alias_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "or_binding_pattern" - }, - "named": true, - "value": "or_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constructor_binding_pattern" - }, - "named": true, - "value": "constructor_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "tag_binding_pattern" - }, - "named": true, - "value": "tag_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "tuple_binding_pattern" - }, - "named": true, - "value": "tuple_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "cons_binding_pattern" - }, - "named": true, - "value": "cons_pattern" - }, - { - "type": "SYMBOL", - "name": "range_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "lazy_binding_pattern" - }, - "named": true, - "value": "lazy_pattern" - } - ] - }, - "_binding_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "alias_pattern": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_pattern" - } - ] - } - }, - "alias_binding_pattern": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_name" - } - ] - } - }, - "typed_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "typed_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "or_pattern": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "or_binding_pattern": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "constructor_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_abstract_type" - }, - "named": true, - "value": "abstract_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "constructor_binding_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - } - }, - "tag_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "tag_binding_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - } - }, - "polymorphic_variant_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - } - ] - }, - "tuple_pattern": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "tuple_binding_pattern": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "record_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_pattern" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "field_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "record_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "field_binding_pattern" - }, - "named": true, - "value": "field_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "field_binding_pattern" - }, - "named": true, - "value": "field_pattern" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "field_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "list_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "list_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "cons_pattern": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "cons_binding_pattern": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "array_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - } - }, - "array_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - } - }, - "range_pattern": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "STRING", - "value": ".." - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - } - ] - } - }, - "lazy_pattern": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "lazy_binding_pattern": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "local_open_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_pattern" - }, - { - "type": "SYMBOL", - "name": "array_pattern" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - } - ] - } - ] - }, - "local_open_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "array_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "record_binding_pattern" - } - ] - } - ] - }, - "package_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "exception_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "exception" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "item_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "floating_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@@@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "attribute_payload": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "SYMBOL", - "name": "_signature" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "guard" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "_extension": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "extension" - }, - { - "type": "SYMBOL", - "name": "quoted_extension" - } - ] - }, - "extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "quoted_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\s+" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_item_extension": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "item_extension" - }, - { - "type": "SYMBOL", - "name": "quoted_item_extension" - } - ] - }, - "item_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[%%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "quoted_item_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{%%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\s+" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - } - ] - }, - "_constant": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "character" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "quoted_string" - }, - { - "type": "SYMBOL", - "name": "boolean" - }, - { - "type": "SYMBOL", - "name": "unit" - } - ] - }, - "_signed_constant": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "signed_number" - } - ] - }, - "number": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[0-9][0-9_]*(\\.[0-9_]*)?([eE][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[xX][0-9A-Fa-f][0-9A-Fa-f_]*(\\.[0-9A-Fa-f_]*)?([pP][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[oO][0-7][0-7_]*[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[bB][01][01_]*[g-zG-Z]?" - } - ] - } - }, - "signed_number": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[0-9][0-9_]*(\\.[0-9_]*)?([eE][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[xX][0-9A-Fa-f][0-9A-Fa-f_]*(\\.[0-9A-Fa-f_]*)?([pP][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[oO][0-7][0-7_]*[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[bB][01][01_]*[g-zG-Z]?" - } - ] - } - } - ] - }, - "character": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "SYMBOL", - "name": "character_content" - }, - { - "type": "STRING", - "value": "'" - } - ] - }, - "character_content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\']" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - } - ] - }, - "string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string_content" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - "string_content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\n" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\t" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@@" - } - }, - { - "type": "PATTERN", - "value": "[^\\\\\"%@]+|%|@" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\\\u\\{[0-9A-Fa-f]+\\}" - }, - "named": true, - "value": "escape_sequence" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\\\\\n[\\t ]*" - }, - "named": true, - "value": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "conversion_specification" - }, - { - "type": "SYMBOL", - "name": "pretty_printing_indication" - } - ] - } - }, - "quoted_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_quoted_string": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_left_quoted_string_delimiter" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "quoted_string_content" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_right_quoted_string_delimiter" - } - ] - }, - "quoted_string_content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\n" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\t" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@@" - } - }, - { - "type": "PATTERN", - "value": "[^%@|]+|%|@|\\|" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "conversion_specification" - }, - { - "type": "SYMBOL", - "name": "pretty_printing_indication" - } - ] - } - }, - "escape_sequence": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\\\[\\\\\"'ntbr ]" - }, - { - "type": "PATTERN", - "value": "\\\\[0-9][0-9][0-9]" - }, - { - "type": "PATTERN", - "value": "\\\\x[0-9A-Fa-f][0-9A-Fa-f]" - }, - { - "type": "PATTERN", - "value": "\\\\o[0-3][0-7][0-7]" - } - ] - }, - "conversion_specification": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[\\-0+ #]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[1-9][0-9]*|\\*" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\.([0-9]*|\\*)" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[diunlLNxXosScCfFeEgGhHbBat!%@,]" - }, - { - "type": "PATTERN", - "value": "[lnL][diuxXo]" - } - ] - } - ] - } - }, - "pretty_printing_indication": { - "type": "PATTERN", - "value": "@([\\[\\], ;.{}?]|\\\\n|<[0-9]+>)" - }, - "boolean": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "unit": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "begin" - }, - { - "type": "STRING", - "value": "end" - } - ] - } - ] - }, - "prefix_operator": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<>?@^|~]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[~?]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - }, - "sign_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+." - }, - { - "type": "STRING", - "value": "-." - } - ] - }, - "infix_operator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pow_operator" - }, - { - "type": "SYMBOL", - "name": "_mult_operator" - }, - { - "type": "SYMBOL", - "name": "_add_operator" - }, - { - "type": "SYMBOL", - "name": "_concat_operator" - }, - { - "type": "SYMBOL", - "name": "_rel_operator" - }, - { - "type": "SYMBOL", - "name": "_and_operator" - }, - { - "type": "SYMBOL", - "name": "_or_operator" - }, - { - "type": "SYMBOL", - "name": "_assign_operator" - } - ] - }, - "hash_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_pow_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "**" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - { - "type": "STRING", - "value": "lsl" - }, - { - "type": "STRING", - "value": "lsr" - }, - { - "type": "STRING", - "value": "asr" - } - ] - }, - "_mult_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[*/%]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - { - "type": "STRING", - "value": "mod" - }, - { - "type": "STRING", - "value": "land" - }, - { - "type": "STRING", - "value": "lor" - }, - { - "type": "STRING", - "value": "lxor" - } - ] - }, - "_add_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+." - }, - { - "type": "STRING", - "value": "-." - }, - { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=?@^|~]" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - } - ] - } - } - ] - }, - "_concat_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[@^]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_rel_operator": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[=>$]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+./:<=>?@^|~]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%*+\\-./:<=>?@^|~]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^~]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "STRING", - "value": "!=" - } - ] - } - }, - "_and_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] - }, - "_or_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "STRING", - "value": "||" - } - ] - }, - "_assign_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ":=" - } - ] - }, - "indexing_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-/:=>?@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "indexing_operator_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "indexing_operator" - } - ] - } - ] - }, - "let_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "and_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "match_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_value_name": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_name" - }, - { - "type": "SYMBOL", - "name": "parenthesized_operator" - } - ] - }, - "_value_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - }, - { - "type": "SYMBOL", - "name": "parenthesized_operator" - } - ] - }, - "parenthesized_operator": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "prefix_operator" - }, - { - "type": "SYMBOL", - "name": "infix_operator" - }, - { - "type": "SYMBOL", - "name": "hash_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "indexing_operator" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<-" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "let_operator" - }, - { - "type": "SYMBOL", - "name": "and_operator" - }, - { - "type": "SYMBOL", - "name": "match_operator" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "value_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_value_name" - } - ] - } - ] - }, - "module_path": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_name" - } - ] - } - ] - } - }, - "extended_module_path": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_name" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "module_type_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_type_name" - } - ] - } - ] - }, - "field_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_field_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_field_name" - } - ] - } - ] - }, - "constructor_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_constructor_name" - } - ] - } - ] - }, - "type_constructor_path": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_constructor" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_type_constructor" - } - ] - } - ] - } - }, - "class_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_class_name" - } - ] - } - ] - }, - "class_type_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_type_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_class_type_name" - } - ] - } - ] - }, - "_label_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "label_name" - }, - "_field_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "field_name" - }, - "_class_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "class_name" - }, - "_class_type_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "class_type_name" - }, - "_method_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "method_name" - }, - "_type_constructor": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "type_constructor" - }, - "_instance_variable_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "instance_variable_name" - }, - "_module_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - "named": true, - "value": "module_name" - }, - "_module_type_name": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - { - "type": "SYMBOL", - "name": "_identifier" - } - ] - }, - "named": true, - "value": "module_type_name" - }, - "_constructor_name": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - "named": true, - "value": "constructor_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "::" - }, - "named": true, - "value": "constructor_name" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_identifier": { - "type": "PATTERN", - "value": "[a-z_][a-zA-Z0-9_']*" - }, - "_capitalized_identifier": { - "type": "PATTERN", - "value": "[A-Z][a-zA-Z0-9_']*" - }, - "_label": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - } - ] - }, - "directive": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "#" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "type_variable": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "'" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "tag": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "`" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "attribute_id": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - } - } - ] - } - }, - "extras": [ - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "SYMBOL", - "name": "line_number_directive" - }, - { - "type": "SYMBOL", - "name": "attribute" - } - ], - "conflicts": [], - "precedences": [], - "externals": [ - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "SYMBOL", - "name": "_left_quoted_string_delimiter" - }, - { - "type": "SYMBOL", - "name": "_right_quoted_string_delimiter" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "SYMBOL", - "name": "line_number_directive" - }, - { - "type": "SYMBOL", - "name": "_null" - } - ], - "inline": [ - "_module_type_ext", - "_module_expression_ext", - "_module_expression_ext", - "_simple_type_ext", - "_simple_expression_ext", - "_expression_ext", - "_quoted_string", - "_label_name", - "_field_name", - "_class_name", - "_class_type_name", - "_method_name", - "_type_constructor", - "_instance_variable_name", - "_module_name", - "_module_type_name", - "_constructor_name" - ], - "supertypes": [ - "_structure_item", - "_parameter", - "_module_type", - "_simple_module_expression", - "_module_expression", - "_simple_class_type", - "_class_type", - "_class_field_specification", - "_simple_class_expression", - "_class_expression", - "_class_field", - "_polymorphic_type", - "_simple_type", - "_tuple_type", - "_tag_spec", - "_type", - "_simple_expression", - "_expression", - "_sequence_expression", - "_argument", - "_simple_pattern", - "_pattern", - "_binding_pattern", - "_extension", - "_item_extension", - "_constant", - "_signed_constant", - "_value_name", - "_value_pattern" - ] -} - diff --git a/vendored_parsers/tree-sitter-ocaml/interface/src/node-types.json b/vendored_parsers/tree-sitter-ocaml/interface/src/node-types.json deleted file mode 100644 index 52d5802a8..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/src/node-types.json +++ /dev/null @@ -1,5977 +0,0 @@ -[ - { - "type": "_argument", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "labeled_argument", - "named": true - } - ] - }, - { - "type": "_binding_pattern", - "named": true, - "subtypes": [ - { - "type": "_signed_constant", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "alias_pattern", - "named": true - }, - { - "type": "array_pattern", - "named": true - }, - { - "type": "cons_pattern", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "constructor_pattern", - "named": true - }, - { - "type": "lazy_pattern", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "local_open_pattern", - "named": true - }, - { - "type": "or_pattern", - "named": true - }, - { - "type": "package_pattern", - "named": true - }, - { - "type": "parenthesized_pattern", - "named": true - }, - { - "type": "polymorphic_variant_pattern", - "named": true - }, - { - "type": "range_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "tag_pattern", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - }, - { - "type": "typed_pattern", - "named": true - } - ] - }, - { - "type": "_class_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_class_expression", - "named": true - }, - { - "type": "class_application", - "named": true - }, - { - "type": "class_function", - "named": true - }, - { - "type": "let_class_expression", - "named": true - }, - { - "type": "let_open_class_expression", - "named": true - } - ] - }, - { - "type": "_class_field", - "named": true, - "subtypes": [ - { - "type": "class_initializer", - "named": true - }, - { - "type": "inheritance_definition", - "named": true - }, - { - "type": "instance_variable_definition", - "named": true - }, - { - "type": "method_definition", - "named": true - }, - { - "type": "type_parameter_constraint", - "named": true - } - ] - }, - { - "type": "_class_field_specification", - "named": true, - "subtypes": [ - { - "type": "inheritance_specification", - "named": true - }, - { - "type": "instance_variable_specification", - "named": true - }, - { - "type": "method_specification", - "named": true - }, - { - "type": "type_parameter_constraint", - "named": true - } - ] - }, - { - "type": "_class_type", - "named": true, - "subtypes": [ - { - "type": "_simple_class_type", - "named": true - }, - { - "type": "class_function_type", - "named": true - } - ] - }, - { - "type": "_constant", - "named": true, - "subtypes": [ - { - "type": "boolean", - "named": true - }, - { - "type": "character", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "quoted_string", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unit", - "named": true - } - ] - }, - { - "type": "_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_expression", - "named": true - }, - { - "type": "application_expression", - "named": true - }, - { - "type": "assert_expression", - "named": true - }, - { - "type": "cons_expression", - "named": true - }, - { - "type": "for_expression", - "named": true - }, - { - "type": "fun_expression", - "named": true - }, - { - "type": "function_expression", - "named": true - }, - { - "type": "if_expression", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "lazy_expression", - "named": true - }, - { - "type": "let_exception_expression", - "named": true - }, - { - "type": "let_expression", - "named": true - }, - { - "type": "let_module_expression", - "named": true - }, - { - "type": "let_open_expression", - "named": true - }, - { - "type": "match_expression", - "named": true - }, - { - "type": "product_expression", - "named": true - }, - { - "type": "set_expression", - "named": true - }, - { - "type": "sign_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "while_expression", - "named": true - } - ] - }, - { - "type": "_extension", - "named": true, - "subtypes": [ - { - "type": "extension", - "named": true - }, - { - "type": "quoted_extension", - "named": true - } - ] - }, - { - "type": "_item_extension", - "named": true, - "subtypes": [ - { - "type": "item_extension", - "named": true - }, - { - "type": "quoted_item_extension", - "named": true - } - ] - }, - { - "type": "_module_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_module_expression", - "named": true - }, - { - "type": "functor", - "named": true - }, - { - "type": "module_application", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "structure", - "named": true - } - ] - }, - { - "type": "_module_type", - "named": true, - "subtypes": [ - { - "type": "functor_type", - "named": true - }, - { - "type": "module_type_constraint", - "named": true - }, - { - "type": "module_type_of", - "named": true - }, - { - "type": "module_type_path", - "named": true - }, - { - "type": "parenthesized_module_type", - "named": true - }, - { - "type": "signature", - "named": true - } - ] - }, - { - "type": "_parameter", - "named": true, - "subtypes": [ - { - "type": "abstract_type", - "named": true - }, - { - "type": "parameter", - "named": true - } - ] - }, - { - "type": "_pattern", - "named": true, - "subtypes": [ - { - "type": "_simple_pattern", - "named": true - }, - { - "type": "alias_pattern", - "named": true - }, - { - "type": "cons_pattern", - "named": true - }, - { - "type": "constructor_pattern", - "named": true - }, - { - "type": "exception_pattern", - "named": true - }, - { - "type": "lazy_pattern", - "named": true - }, - { - "type": "or_pattern", - "named": true - }, - { - "type": "range_pattern", - "named": true - }, - { - "type": "tag_pattern", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - { - "type": "_polymorphic_type", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "polymorphic_type", - "named": true - } - ] - }, - { - "type": "_sequence_expression", - "named": true, - "subtypes": [ - { - "type": "_expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - } - ] - }, - { - "type": "_signed_constant", - "named": true, - "subtypes": [ - { - "type": "_constant", - "named": true - }, - { - "type": "signed_number", - "named": true - } - ] - }, - { - "type": "_simple_class_expression", - "named": true, - "subtypes": [ - { - "type": "class_path", - "named": true - }, - { - "type": "instantiated_class", - "named": true - }, - { - "type": "object_expression", - "named": true - }, - { - "type": "parenthesized_class_expression", - "named": true - }, - { - "type": "typed_class_expression", - "named": true - } - ] - }, - { - "type": "_simple_class_type", - "named": true, - "subtypes": [ - { - "type": "class_body_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - }, - { - "type": "instantiated_class_type", - "named": true - }, - { - "type": "let_open_class_type", - "named": true - } - ] - }, - { - "type": "_simple_expression", - "named": true, - "subtypes": [ - { - "type": "_constant", - "named": true - }, - { - "type": "array_expression", - "named": true - }, - { - "type": "array_get_expression", - "named": true - }, - { - "type": "bigarray_get_expression", - "named": true - }, - { - "type": "coercion_expression", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "field_get_expression", - "named": true - }, - { - "type": "hash_expression", - "named": true - }, - { - "type": "list_expression", - "named": true - }, - { - "type": "local_open_expression", - "named": true - }, - { - "type": "method_invocation", - "named": true - }, - { - "type": "new_expression", - "named": true - }, - { - "type": "object_copy_expression", - "named": true - }, - { - "type": "object_expression", - "named": true - }, - { - "type": "ocamlyacc_value", - "named": true - }, - { - "type": "package_expression", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "record_expression", - "named": true - }, - { - "type": "string_get_expression", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "typed_expression", - "named": true - }, - { - "type": "value_path", - "named": true - } - ] - }, - { - "type": "_simple_module_expression", - "named": true, - "subtypes": [ - { - "type": "packed_module", - "named": true - }, - { - "type": "parenthesized_module_expression", - "named": true - }, - { - "type": "typed_module_expression", - "named": true - } - ] - }, - { - "type": "_simple_pattern", - "named": true, - "subtypes": [ - { - "type": "_signed_constant", - "named": true - }, - { - "type": "_value_pattern", - "named": true - }, - { - "type": "array_pattern", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "local_open_pattern", - "named": true - }, - { - "type": "package_pattern", - "named": true - }, - { - "type": "parenthesized_pattern", - "named": true - }, - { - "type": "polymorphic_variant_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "typed_pattern", - "named": true - } - ] - }, - { - "type": "_simple_type", - "named": true, - "subtypes": [ - { - "type": "constructed_type", - "named": true - }, - { - "type": "hash_type", - "named": true - }, - { - "type": "object_type", - "named": true - }, - { - "type": "package_type", - "named": true - }, - { - "type": "parenthesized_type", - "named": true - }, - { - "type": "polymorphic_variant_type", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - }, - { - "type": "_structure_item", - "named": true, - "subtypes": [ - { - "type": "class_definition", - "named": true - }, - { - "type": "class_type_definition", - "named": true - }, - { - "type": "exception_definition", - "named": true - }, - { - "type": "external", - "named": true - }, - { - "type": "floating_attribute", - "named": true - }, - { - "type": "include_module", - "named": true - }, - { - "type": "module_definition", - "named": true - }, - { - "type": "module_type_definition", - "named": true - }, - { - "type": "open_module", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "value_definition", - "named": true - } - ] - }, - { - "type": "_tag_spec", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "tag_specification", - "named": true - } - ] - }, - { - "type": "_tuple_type", - "named": true, - "subtypes": [ - { - "type": "_simple_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - } - ] - }, - { - "type": "_type", - "named": true, - "subtypes": [ - { - "type": "_tuple_type", - "named": true - }, - { - "type": "aliased_type", - "named": true - }, - { - "type": "function_type", - "named": true - } - ] - }, - { - "type": "_value_name", - "named": true, - "subtypes": [ - { - "type": "parenthesized_operator", - "named": true - }, - { - "type": "value_name", - "named": true - } - ] - }, - { - "type": "_value_pattern", - "named": true, - "subtypes": [ - { - "type": "parenthesized_operator", - "named": true - }, - { - "type": "value_pattern", - "named": true - } - ] - }, - { - "type": "abstract_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_constructor", - "named": true - } - ] - } - }, - { - "type": "alias_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_value_pattern", - "named": true - } - ] - } - }, - { - "type": "aliased_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "application_expression", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_argument", - "named": true - } - ] - }, - "function": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - } - }, - { - "type": "array_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "array_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "array_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "array_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "assert_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "attribute_id", - "named": true, - "fields": {} - }, - { - "type": "attribute_payload", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_structure_item", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "expression_item", - "named": true - }, - { - "type": "guard", - "named": true - }, - { - "type": "include_module_type", - "named": true - }, - { - "type": "toplevel_directive", - "named": true - }, - { - "type": "value_specification", - "named": true - } - ] - } - }, - { - "type": "bigarray_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "boolean", - "named": true, - "fields": {} - }, - { - "type": "character", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "character_content", - "named": true - } - ] - } - }, - { - "type": "character_content", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - } - ] - } - }, - { - "type": "class_application", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_argument", - "named": true - } - ] - }, - "class": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_simple_class_expression", - "named": true - } - ] - } - } - }, - { - "type": "class_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "class_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_parameter", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "class_body_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_field_specification", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "floating_attribute", - "named": true - } - ] - } - }, - { - "type": "class_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_binding", - "named": true - } - ] - } - }, - { - "type": "class_function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_parameter", - "named": true - } - ] - } - }, - { - "type": "class_function_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_tuple_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "class_initializer", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "class_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "class_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "class_type_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "class_type_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "class_type_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_type_binding", - "named": true - } - ] - } - }, - { - "type": "class_type_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "class_type_name", - "named": true - }, - { - "type": "extended_module_path", - "named": true - } - ] - } - }, - { - "type": "coercion_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "compilation_unit", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "class_definition", - "named": true - }, - { - "type": "class_type_definition", - "named": true - }, - { - "type": "exception_definition", - "named": true - }, - { - "type": "external", - "named": true - }, - { - "type": "floating_attribute", - "named": true - }, - { - "type": "include_module_type", - "named": true - }, - { - "type": "module_definition", - "named": true - }, - { - "type": "module_type_definition", - "named": true - }, - { - "type": "open_module", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "value_specification", - "named": true - } - ] - } - }, - { - "type": "cons_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - } - }, - { - "type": "cons_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "constrain_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "constrain_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "constrain_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "type_constraint", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "constructed_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "constructor_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "constructor_name", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "record_declaration", - "named": true - } - ] - } - }, - { - "type": "constructor_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "constructor_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "abstract_type", - "named": true - }, - { - "type": "constructor_path", - "named": true - } - ] - } - }, - { - "type": "directive", - "named": true, - "fields": {} - }, - { - "type": "do_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - { - "type": "else_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "escape_sequence", - "named": true, - "fields": {} - }, - { - "type": "exception_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "constructor_declaration", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "exception_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "expression_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "extended_module_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_name", - "named": true - } - ] - } - }, - { - "type": "extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "external", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "field_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "field_name", - "named": true - } - ] - } - }, - { - "type": "field_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "field_path", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "field_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "field_path", - "named": true - } - ] - } - }, - { - "type": "field_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "field_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "field_path", - "named": true - } - ] - } - }, - { - "type": "floating_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "for_expression", - "named": true, - "fields": { - "from": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_value_pattern", - "named": true - } - ] - }, - "to": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "do_clause", - "named": true - } - ] - } - }, - { - "type": "fun_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_parameter", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "function_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - } - ] - } - }, - { - "type": "function_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "typed_label", - "named": true - } - ] - } - }, - { - "type": "functor", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "functor_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "guard", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - { - "type": "hash_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "hash_operator", - "named": true - } - ] - } - }, - { - "type": "hash_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - } - ] - } - }, - { - "type": "if_expression", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "else_clause", - "named": true - }, - { - "type": "then_clause", - "named": true - } - ] - } - }, - { - "type": "include_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "include_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "indexing_operator_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "indexing_operator", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "infix_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "infix_operator", - "named": true - } - ] - } - }, - { - "type": "infix_operator", - "named": true, - "fields": {} - }, - { - "type": "inheritance_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_value_pattern", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "inheritance_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instance_variable_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "instance_variable_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instance_variable_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - } - ] - } - }, - { - "type": "instance_variable_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instantiated_class", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_path", - "named": true - } - ] - } - }, - { - "type": "instantiated_class_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - } - ] - } - }, - { - "type": "item_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "item_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "labeled_argument", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "lazy_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "lazy_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "let_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_parameter", - "named": true - }, - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "let_class_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "value_definition", - "named": true - } - ] - } - }, - { - "type": "let_exception_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "exception_definition", - "named": true - } - ] - } - }, - { - "type": "let_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "value_definition", - "named": true - } - ] - } - }, - { - "type": "let_module_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_definition", - "named": true - } - ] - } - }, - { - "type": "let_open_class_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "let_open_class_type", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "let_open_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "list_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "list_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "list_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "local_open_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "array_expression", - "named": true - }, - { - "type": "list_expression", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "object_copy_expression", - "named": true - }, - { - "type": "package_expression", - "named": true - }, - { - "type": "record_expression", - "named": true - } - ] - } - }, - { - "type": "local_open_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "array_binding_pattern", - "named": true - }, - { - "type": "list_binding_pattern", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "record_binding_pattern", - "named": true - } - ] - } - }, - { - "type": "match_case", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "refutation_case", - "named": true - } - ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "guard", - "named": true - } - ] - } - }, - { - "type": "match_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - }, - { - "type": "match_operator", - "named": true - } - ] - } - }, - { - "type": "method_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "method_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_parameter", - "named": true - }, - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "method_invocation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "method_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "method_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "module_application", - "named": true, - "fields": { - "argument": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_module_expression", - "named": true - } - ] - }, - "functor": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - } - }, - { - "type": "module_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "module_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "module_binding", - "named": true - } - ] - } - }, - { - "type": "module_parameter", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "module_name", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "module_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "module_type_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "constrain_module", - "named": true - }, - { - "type": "constrain_module_type", - "named": true - }, - { - "type": "constrain_type", - "named": true - } - ] - } - }, - { - "type": "module_type_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_type_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "module_type_of", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - { - "type": "module_type_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_type_name", - "named": true - } - ] - } - }, - { - "type": "new_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_path", - "named": true - } - ] - } - }, - { - "type": "number", - "named": true, - "fields": {} - }, - { - "type": "object_copy_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "instance_variable_expression", - "named": true - } - ] - } - }, - { - "type": "object_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_field", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "floating_attribute", - "named": true - } - ] - } - }, - { - "type": "object_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "method_type", - "named": true - } - ] - } - }, - { - "type": "open_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "or_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "package_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "package_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "module_name", - "named": true - } - ] - } - }, - { - "type": "package_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "packed_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "parameter", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "value_pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "parenthesized_class_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "parenthesized_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "parenthesized_module_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - { - "type": "parenthesized_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "parenthesized_operator", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "and_operator", - "named": true - }, - { - "type": "hash_operator", - "named": true - }, - { - "type": "indexing_operator", - "named": true - }, - { - "type": "infix_operator", - "named": true - }, - { - "type": "let_operator", - "named": true - }, - { - "type": "match_operator", - "named": true - }, - { - "type": "prefix_operator", - "named": true - } - ] - } - }, - { - "type": "parenthesized_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "parenthesized_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "polymorphic_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "abstract_type", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "polymorphic_variant_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_constructor_path", - "named": true - } - ] - } - }, - { - "type": "polymorphic_variant_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_tag_spec", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "prefix_expression", - "named": true, - "fields": { - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "prefix_operator", - "named": true - } - ] - } - }, - { - "type": "product_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - } - }, - { - "type": "quoted_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_item_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_string", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_string_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "conversion_specification", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - } - ] - } - }, - { - "type": "range_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_signed_constant", - "named": true - } - ] - } - }, - { - "type": "record_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_pattern", - "named": true - } - ] - } - }, - { - "type": "record_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_declaration", - "named": true - } - ] - } - }, - { - "type": "record_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "field_expression", - "named": true - } - ] - } - }, - { - "type": "record_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_pattern", - "named": true - } - ] - } - }, - { - "type": "refutation_case", - "named": true, - "fields": {} - }, - { - "type": "sequence_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "set_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_get_expression", - "named": true - }, - { - "type": "bigarray_get_expression", - "named": true - }, - { - "type": "field_get_expression", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "string_get_expression", - "named": true - } - ] - } - }, - { - "type": "sign_expression", - "named": true, - "fields": { - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "sign_operator", - "named": true - } - ] - } - }, - { - "type": "sign_operator", - "named": true, - "fields": {} - }, - { - "type": "signature", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "class_definition", - "named": true - }, - { - "type": "class_type_definition", - "named": true - }, - { - "type": "exception_definition", - "named": true - }, - { - "type": "external", - "named": true - }, - { - "type": "floating_attribute", - "named": true - }, - { - "type": "include_module_type", - "named": true - }, - { - "type": "module_definition", - "named": true - }, - { - "type": "module_type_definition", - "named": true - }, - { - "type": "open_module", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "value_specification", - "named": true - } - ] - } - }, - { - "type": "signed_number", - "named": true, - "fields": {} - }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "string_content", - "named": true - } - ] - } - }, - { - "type": "string_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "conversion_specification", - "named": true - }, - { - "type": "escape_sequence", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - } - ] - } - }, - { - "type": "string_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "structure", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "_structure_item", - "named": true - }, - { - "type": "expression_item", - "named": true - }, - { - "type": "toplevel_directive", - "named": true - } - ] - } - }, - { - "type": "tag", - "named": true, - "fields": {} - }, - { - "type": "tag_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "tag_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "then_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "toplevel_directive", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_constant", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "value_path", - "named": true - } - ] - } - }, - { - "type": "try_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - } - ] - } - }, - { - "type": "tuple_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "tuple_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_tuple_type", - "named": true - } - ] - } - }, - { - "type": "type_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "..", - "named": false - }, - { - "type": "record_declaration", - "named": true - }, - { - "type": "variant_declaration", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_constructor", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_constraint", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "type_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "type_constructor_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "type_constructor", - "named": true - } - ] - } - }, - { - "type": "type_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "type_binding", - "named": true - } - ] - } - }, - { - "type": "type_parameter_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "type_variable", - "named": true, - "fields": {} - }, - { - "type": "typed_class_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "typed_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "typed_label", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "typed_module_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "typed_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "unit", - "named": true, - "fields": {} - }, - { - "type": "value_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "and_operator", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "let_binding", - "named": true - }, - { - "type": "let_operator", - "named": true - } - ] - } - }, - { - "type": "value_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_value_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "value_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "variant_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "constructor_declaration", - "named": true - } - ] - } - }, - { - "type": "while_expression", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "do_clause", - "named": true - } - ] - } - }, - { - "type": "\t", - "named": false - }, - { - "type": "\n", - "named": false - }, - { - "type": " ", - "named": false - }, - { - "type": "!", - "named": false - }, - { - "type": "\"", - "named": false - }, - { - "type": "#", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "'", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "+.", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "-.", - "named": false - }, - { - "type": "->", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "..", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "::", - "named": false - }, - { - "type": ":=", - "named": false - }, - { - "type": ":>", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": ";;", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<-", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">}", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "[%", - "named": false - }, - { - "type": "[%%", - "named": false - }, - { - "type": "[<", - "named": false - }, - { - "type": "[>", - "named": false - }, - { - "type": "[@", - "named": false - }, - { - "type": "[@@", - "named": false - }, - { - "type": "[@@@", - "named": false - }, - { - "type": "[|", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "_", - "named": false - }, - { - "type": "and", - "named": false - }, - { - "type": "and_operator", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "asr", - "named": false - }, - { - "type": "assert", - "named": false - }, - { - "type": "begin", - "named": false - }, - { - "type": "class", - "named": false - }, - { - "type": "class_name", - "named": true - }, - { - "type": "class_type_name", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "constraint", - "named": false - }, - { - "type": "constructor_name", - "named": true - }, - { - "type": "conversion_specification", - "named": true - }, - { - "type": "do", - "named": false - }, - { - "type": "done", - "named": false - }, - { - "type": "downto", - "named": false - }, - { - "type": "else", - "named": false - }, - { - "type": "end", - "named": false - }, - { - "type": "exception", - "named": false - }, - { - "type": "external", - "named": false - }, - { - "type": "false", - "named": false - }, - { - "type": "field_name", - "named": true - }, - { - "type": "for", - "named": false - }, - { - "type": "fun", - "named": false - }, - { - "type": "function", - "named": false - }, - { - "type": "functor", - "named": false - }, - { - "type": "hash_operator", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "include", - "named": false - }, - { - "type": "indexing_operator", - "named": true - }, - { - "type": "inherit", - "named": false - }, - { - "type": "initializer", - "named": false - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "label_name", - "named": true - }, - { - "type": "land", - "named": false - }, - { - "type": "lazy", - "named": false - }, - { - "type": "let", - "named": false - }, - { - "type": "let_operator", - "named": true - }, - { - "type": "line_number_directive", - "named": true - }, - { - "type": "lor", - "named": false - }, - { - "type": "lsl", - "named": false - }, - { - "type": "lsr", - "named": false - }, - { - "type": "lxor", - "named": false - }, - { - "type": "match", - "named": false - }, - { - "type": "match_operator", - "named": true - }, - { - "type": "method", - "named": false - }, - { - "type": "method_name", - "named": true - }, - { - "type": "mod", - "named": false - }, - { - "type": "module", - "named": false - }, - { - "type": "module_name", - "named": true - }, - { - "type": "module_type_name", - "named": true - }, - { - "type": "mutable", - "named": false - }, - { - "type": "new", - "named": false - }, - { - "type": "nonrec", - "named": false - }, - { - "type": "object", - "named": false - }, - { - "type": "ocamlyacc_value", - "named": true - }, - { - "type": "of", - "named": false - }, - { - "type": "open", - "named": false - }, - { - "type": "or", - "named": false - }, - { - "type": "prefix_operator", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - }, - { - "type": "private", - "named": false - }, - { - "type": "rec", - "named": false - }, - { - "type": "sig", - "named": false - }, - { - "type": "struct", - "named": false - }, - { - "type": "then", - "named": false - }, - { - "type": "to", - "named": false - }, - { - "type": "true", - "named": false - }, - { - "type": "try", - "named": false - }, - { - "type": "type", - "named": false - }, - { - "type": "type_constructor", - "named": true - }, - { - "type": "val", - "named": false - }, - { - "type": "value_name", - "named": true - }, - { - "type": "value_pattern", - "named": true - }, - { - "type": "virtual", - "named": false - }, - { - "type": "when", - "named": false - }, - { - "type": "while", - "named": false - }, - { - "type": "with", - "named": false - }, - { - "type": "{", - "named": false - }, - { - "type": "{%", - "named": false - }, - { - "type": "{%%", - "named": false - }, - { - "type": "{<", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "|]", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - }, - { - "type": "~", - "named": false - } -] \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml/interface/src/parser.c b/vendored_parsers/tree-sitter-ocaml/interface/src/parser.c deleted file mode 100644 index a6e0309bf..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/src/parser.c +++ /dev/null @@ -1,438041 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 8632 -#define LARGE_STATE_COUNT 1560 -#define SYMBOL_COUNT 447 -#define ALIAS_COUNT 12 -#define TOKEN_COUNT 152 -#define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 12 -#define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 143 - -enum { - sym__identifier = 1, - sym_shebang = 2, - anon_sym_SEMI_SEMI = 3, - anon_sym_let = 4, - anon_sym_rec = 5, - anon_sym_and = 6, - anon_sym_COLON_GT = 7, - anon_sym_EQ = 8, - anon_sym_TILDE = 9, - anon_sym_QMARK = 10, - anon_sym_COLON = 11, - anon_sym_LPAREN = 12, - anon_sym_RPAREN = 13, - anon_sym_external = 14, - anon_sym_type = 15, - anon_sym_nonrec = 16, - anon_sym_private = 17, - anon_sym_DOT_DOT = 18, - anon_sym_PLUS_EQ = 19, - anon_sym_COMMA = 20, - anon_sym_PLUS = 21, - anon_sym_BANG = 22, - anon_sym_DASH = 23, - anon_sym__ = 24, - anon_sym_COLON_EQ = 25, - anon_sym_PIPE = 26, - anon_sym_LBRACK = 27, - anon_sym_RBRACK = 28, - anon_sym_true = 29, - anon_sym_false = 30, - anon_sym_of = 31, - anon_sym_COLON2 = 32, - anon_sym_DOT = 33, - anon_sym_DASH_GT = 34, - anon_sym_STAR = 35, - anon_sym_LBRACE = 36, - anon_sym_SEMI = 37, - anon_sym_RBRACE = 38, - anon_sym_mutable = 39, - anon_sym_constraint = 40, - anon_sym_exception = 41, - anon_sym_module = 42, - anon_sym_open = 43, - anon_sym_include = 44, - anon_sym_class = 45, - anon_sym_virtual = 46, - anon_sym_val = 47, - anon_sym_sig = 48, - anon_sym_end = 49, - anon_sym_with = 50, - anon_sym_functor = 51, - anon_sym_struct = 52, - anon_sym_object = 53, - anon_sym_inherit = 54, - anon_sym_method = 55, - anon_sym_in = 56, - anon_sym_fun = 57, - anon_sym_as = 58, - anon_sym_initializer = 59, - anon_sym_LBRACK_GT = 60, - anon_sym_LBRACK_LT = 61, - anon_sym_GT = 62, - anon_sym_AMP = 63, - anon_sym_LT = 64, - anon_sym_POUND = 65, - anon_sym_COLON_COLON = 66, - anon_sym_LBRACK_PIPE = 67, - anon_sym_PIPE_RBRACK = 68, - anon_sym_LT_DASH = 69, - anon_sym_if = 70, - anon_sym_then = 71, - anon_sym_else = 72, - anon_sym_while = 73, - anon_sym_do = 74, - anon_sym_done = 75, - anon_sym_for = 76, - anon_sym_to = 77, - anon_sym_downto = 78, - anon_sym_match = 79, - anon_sym_when = 80, - anon_sym_function = 81, - anon_sym_try = 82, - anon_sym_assert = 83, - anon_sym_lazy = 84, - anon_sym_new = 85, - anon_sym_LBRACE_LT = 86, - anon_sym_GT_RBRACE = 87, - anon_sym_begin = 88, - sym_ocamlyacc_value = 89, - anon_sym_LBRACK_AT = 90, - anon_sym_LBRACK_AT_AT = 91, - anon_sym_LBRACK_AT_AT_AT = 92, - anon_sym_LBRACK_PERCENT = 93, - anon_sym_LBRACE_PERCENT = 94, - aux_sym_quoted_extension_token1 = 95, - anon_sym_LBRACK_PERCENT_PERCENT = 96, - anon_sym_LBRACE_PERCENT_PERCENT = 97, - anon_sym_PERCENT = 98, - aux_sym_number_token1 = 99, - anon_sym_SQUOTE = 100, - aux_sym_character_content_token1 = 101, - anon_sym_DQUOTE = 102, - anon_sym_ = 103, - anon_sym_LF = 104, - anon_sym_TAB = 105, - anon_sym_LBRACK_AT2 = 106, - anon_sym_LBRACK_AT_AT2 = 107, - anon_sym_LBRACK_AT_AT_AT2 = 108, - aux_sym_string_content_token1 = 109, - aux_sym_string_content_token2 = 110, - aux_sym_string_content_token3 = 111, - aux_sym_quoted_string_content_token1 = 112, - aux_sym_escape_sequence_token1 = 113, - aux_sym_escape_sequence_token2 = 114, - aux_sym_escape_sequence_token3 = 115, - aux_sym_escape_sequence_token4 = 116, - sym_conversion_specification = 117, - sym_pretty_printing_indication = 118, - sym_prefix_operator = 119, - anon_sym_PLUS_DOT = 120, - anon_sym_DASH_DOT = 121, - sym_hash_operator = 122, - aux_sym__pow_operator_token1 = 123, - anon_sym_lsl = 124, - anon_sym_lsr = 125, - anon_sym_asr = 126, - aux_sym__mult_operator_token1 = 127, - anon_sym_mod = 128, - anon_sym_land = 129, - anon_sym_lor = 130, - anon_sym_lxor = 131, - aux_sym__add_operator_token1 = 132, - sym__concat_operator = 133, - sym__rel_operator = 134, - anon_sym_AMP_AMP = 135, - anon_sym_or = 136, - anon_sym_PIPE_PIPE = 137, - sym_indexing_operator = 138, - sym_let_operator = 139, - sym_and_operator = 140, - sym_match_operator = 141, - sym__capitalized_identifier = 142, - aux_sym_directive_token1 = 143, - aux_sym_type_variable_token1 = 144, - aux_sym_tag_token1 = 145, - aux_sym_attribute_id_token1 = 146, - sym_comment = 147, - sym__left_quoted_string_delimiter = 148, - sym__right_quoted_string_delimiter = 149, - sym_line_number_directive = 150, - sym__null = 151, - sym_compilation_unit = 152, - sym__structure = 153, - sym_expression_item = 154, - sym__signature = 155, - sym_toplevel_directive = 156, - sym__structure_item = 157, - sym__structure_item_ext = 158, - sym_value_definition = 159, - sym_let_binding = 160, - sym__parameter = 161, - sym_parameter = 162, - sym_external = 163, - sym_type_definition = 164, - sym_type_binding = 165, - sym__type_params = 166, - sym__type_param = 167, - sym__type_equation = 168, - sym_variant_declaration = 169, - sym_constructor_declaration = 170, - sym__constructor_argument = 171, - sym_record_declaration = 172, - sym_field_declaration = 173, - sym_type_constraint = 174, - sym_exception_definition = 175, - sym_module_definition = 176, - sym_module_binding = 177, - sym_module_parameter = 178, - sym_module_type_definition = 179, - sym_open_module = 180, - sym_include_module = 181, - sym_class_definition = 182, - sym_class_binding = 183, - sym_class_type_definition = 184, - sym_class_type_binding = 185, - sym__signature_item = 186, - sym__signature_item_ext = 187, - sym_value_specification = 188, - sym_include_module_type = 189, - sym__module_typed = 190, - sym__module_type = 191, - sym_signature = 192, - sym_module_type_constraint = 193, - sym_constrain_type = 194, - sym_constrain_module = 195, - sym_constrain_module_type = 196, - sym_module_type_of = 197, - sym_functor_type = 198, - sym_parenthesized_module_type = 199, - sym__simple_module_expression = 200, - sym__simple_module_expression_ext = 201, - sym__module_expression = 202, - sym_structure = 203, - sym_functor = 204, - sym_module_application = 205, - sym_typed_module_expression = 206, - sym_packed_module = 207, - sym_parenthesized_module_expression = 208, - sym__class_typed = 209, - sym__simple_class_type = 210, - sym__simple_class_type_ext = 211, - sym__class_type = 212, - sym__class_type_ext = 213, - sym_instantiated_class_type = 214, - sym_class_body_type = 215, - sym__class_field_specification = 216, - sym__class_field_specification_ext = 217, - sym_inheritance_specification = 218, - sym_instance_variable_specification = 219, - sym_method_specification = 220, - sym_type_parameter_constraint = 221, - sym_let_open_class_type = 222, - sym_class_function_type = 223, - sym__simple_class_expression = 224, - sym__class_expression = 225, - sym__class_expression_ext = 226, - sym_instantiated_class = 227, - sym_typed_class_expression = 228, - sym_class_function = 229, - sym_class_application = 230, - sym_let_class_expression = 231, - sym__class_field = 232, - sym__class_field_ext = 233, - sym_inheritance_definition = 234, - sym_instance_variable_definition = 235, - sym_method_definition = 236, - sym_class_initializer = 237, - sym_let_open_class_expression = 238, - sym_parenthesized_class_expression = 239, - sym__typed = 240, - sym__simple_typed = 241, - sym__polymorphic_typed = 242, - sym__polymorphic_type = 243, - sym_polymorphic_type = 244, - sym__abstract_type = 245, - sym__parenthesized_abstract_type = 246, - sym__simple_type = 247, - sym__tuple_type = 248, - sym__tuple_type_ext = 249, - sym__type = 250, - sym__type_ext = 251, - sym_function_type = 252, - sym_typed_label = 253, - sym_tuple_type = 254, - sym_constructed_type = 255, - sym_aliased_type = 256, - sym_polymorphic_variant_type = 257, - sym__tag_spec = 258, - sym_tag_specification = 259, - sym_package_type = 260, - sym_object_type = 261, - sym_method_type = 262, - sym_hash_type = 263, - sym_parenthesized_type = 264, - sym__simple_expression = 265, - sym__expression = 266, - sym__sequence_expression = 267, - sym__sequence_expression_ext = 268, - sym_typed_expression = 269, - sym_product_expression = 270, - sym_cons_expression = 271, - sym_list_expression = 272, - sym_array_expression = 273, - sym_record_expression = 274, - sym_field_expression = 275, - sym_application_expression = 276, - sym__argument = 277, - sym_labeled_argument = 278, - sym_prefix_expression = 279, - sym_sign_expression = 280, - sym_hash_expression = 281, - sym_infix_expression = 282, - sym_field_get_expression = 283, - sym_array_get_expression = 284, - sym_string_get_expression = 285, - sym_bigarray_get_expression = 286, - sym_set_expression = 287, - sym_if_expression = 288, - sym_then_clause = 289, - sym_else_clause = 290, - sym_while_expression = 291, - sym_do_clause = 292, - sym_for_expression = 293, - sym_sequence_expression = 294, - sym_match_expression = 295, - sym__match_cases = 296, - sym_match_case = 297, - sym_guard = 298, - sym_refutation_case = 299, - sym_function_expression = 300, - sym_fun_expression = 301, - sym_try_expression = 302, - sym_let_expression = 303, - sym_coercion_expression = 304, - sym_assert_expression = 305, - sym_lazy_expression = 306, - sym_let_module_expression = 307, - sym_let_open_expression = 308, - sym_local_open_expression = 309, - sym_package_expression = 310, - sym_let_exception_expression = 311, - sym_new_expression = 312, - sym_object_copy_expression = 313, - sym_instance_variable_expression = 314, - sym_method_invocation = 315, - sym_object_expression = 316, - sym_parenthesized_expression = 317, - sym__simple_pattern = 318, - sym__simple_pattern_ext = 319, - sym__pattern = 320, - sym__pattern_ext = 321, - sym__binding_pattern = 322, - sym__binding_pattern_ext = 323, - sym_alias_pattern = 324, - sym_alias_binding_pattern = 325, - sym_typed_pattern = 326, - sym_typed_binding_pattern = 327, - sym_or_pattern = 328, - sym_or_binding_pattern = 329, - sym_constructor_pattern = 330, - sym_constructor_binding_pattern = 331, - sym_tag_pattern = 332, - sym_tag_binding_pattern = 333, - sym_polymorphic_variant_pattern = 334, - sym_tuple_pattern = 335, - sym_tuple_binding_pattern = 336, - sym_record_pattern = 337, - sym_field_pattern = 338, - sym_record_binding_pattern = 339, - sym_field_binding_pattern = 340, - sym_list_pattern = 341, - sym_list_binding_pattern = 342, - sym_cons_pattern = 343, - sym_cons_binding_pattern = 344, - sym_array_pattern = 345, - sym_array_binding_pattern = 346, - sym_range_pattern = 347, - sym_lazy_pattern = 348, - sym_lazy_binding_pattern = 349, - sym_local_open_pattern = 350, - sym_local_open_binding_pattern = 351, - sym_package_pattern = 352, - sym_parenthesized_pattern = 353, - sym_parenthesized_binding_pattern = 354, - sym_exception_pattern = 355, - sym_attribute = 356, - sym_item_attribute = 357, - sym_floating_attribute = 358, - sym_attribute_payload = 359, - sym__extension = 360, - sym_extension = 361, - sym_quoted_extension = 362, - sym__item_extension = 363, - sym_item_extension = 364, - sym_quoted_item_extension = 365, - sym__attribute = 366, - sym__constant = 367, - sym__signed_constant = 368, - sym_number = 369, - sym_signed_number = 370, - sym_character = 371, - sym_character_content = 372, - sym_string = 373, - sym_string_content = 374, - sym_quoted_string = 375, - sym_quoted_string_content = 376, - sym_escape_sequence = 377, - sym_boolean = 378, - sym_unit = 379, - sym_sign_operator = 380, - sym_infix_operator = 381, - sym__pow_operator = 382, - sym__mult_operator = 383, - sym__add_operator = 384, - sym__and_operator = 385, - sym__or_operator = 386, - sym__assign_operator = 387, - sym_indexing_operator_path = 388, - sym__value_name = 389, - sym__value_pattern = 390, - sym_parenthesized_operator = 391, - sym_value_path = 392, - sym_module_path = 393, - sym_extended_module_path = 394, - sym_module_type_path = 395, - sym_field_path = 396, - sym_constructor_path = 397, - sym_type_constructor_path = 398, - sym_class_path = 399, - sym_class_type_path = 400, - sym__label = 401, - sym_directive = 402, - sym_type_variable = 403, - sym_tag = 404, - sym_attribute_id = 405, - aux_sym__structure_repeat1 = 406, - aux_sym__structure_repeat2 = 407, - aux_sym_expression_item_repeat1 = 408, - aux_sym__signature_repeat1 = 409, - aux_sym_value_definition_repeat1 = 410, - aux_sym_let_binding_repeat1 = 411, - aux_sym_external_repeat1 = 412, - aux_sym_type_definition_repeat1 = 413, - aux_sym_type_binding_repeat1 = 414, - aux_sym__type_params_repeat1 = 415, - aux_sym_variant_declaration_repeat1 = 416, - aux_sym_constructor_declaration_repeat1 = 417, - aux_sym__constructor_argument_repeat1 = 418, - aux_sym_record_declaration_repeat1 = 419, - aux_sym_module_definition_repeat1 = 420, - aux_sym_module_binding_repeat1 = 421, - aux_sym_class_definition_repeat1 = 422, - aux_sym_class_type_definition_repeat1 = 423, - aux_sym_module_type_constraint_repeat1 = 424, - aux_sym_instantiated_class_type_repeat1 = 425, - aux_sym_class_body_type_repeat1 = 426, - aux_sym_instance_variable_specification_repeat1 = 427, - aux_sym_method_specification_repeat1 = 428, - aux_sym_class_application_repeat1 = 429, - aux_sym__abstract_type_repeat1 = 430, - aux_sym_polymorphic_variant_type_repeat1 = 431, - aux_sym_polymorphic_variant_type_repeat2 = 432, - aux_sym_tag_specification_repeat1 = 433, - aux_sym_object_type_repeat1 = 434, - aux_sym_list_expression_repeat1 = 435, - aux_sym_record_expression_repeat1 = 436, - aux_sym__match_cases_repeat1 = 437, - aux_sym_object_copy_expression_repeat1 = 438, - aux_sym_object_expression_repeat1 = 439, - aux_sym_record_pattern_repeat1 = 440, - aux_sym_record_binding_pattern_repeat1 = 441, - aux_sym_list_pattern_repeat1 = 442, - aux_sym_list_binding_pattern_repeat1 = 443, - aux_sym_string_content_repeat1 = 444, - aux_sym_quoted_string_content_repeat1 = 445, - aux_sym_attribute_id_repeat1 = 446, - alias_sym_class_name = 447, - alias_sym_class_type_name = 448, - alias_sym_constructor_name = 449, - alias_sym_field_name = 450, - alias_sym_instance_variable_name = 451, - alias_sym_label_name = 452, - alias_sym_method_name = 453, - alias_sym_module_name = 454, - alias_sym_module_type_name = 455, - alias_sym_type_constructor = 456, - alias_sym_value_name = 457, - alias_sym_value_pattern = 458, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym__identifier] = "_identifier", - [sym_shebang] = "shebang", - [anon_sym_SEMI_SEMI] = ";;", - [anon_sym_let] = "let", - [anon_sym_rec] = "rec", - [anon_sym_and] = "and", - [anon_sym_COLON_GT] = ":>", - [anon_sym_EQ] = "=", - [anon_sym_TILDE] = "~", - [anon_sym_QMARK] = "\?", - [anon_sym_COLON] = ":", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_external] = "external", - [anon_sym_type] = "type", - [anon_sym_nonrec] = "nonrec", - [anon_sym_private] = "private", - [anon_sym_DOT_DOT] = "..", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_COMMA] = ",", - [anon_sym_PLUS] = "+", - [anon_sym_BANG] = "!", - [anon_sym_DASH] = "-", - [anon_sym__] = "_", - [anon_sym_COLON_EQ] = ":=", - [anon_sym_PIPE] = "|", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_of] = "of", - [anon_sym_COLON2] = ":", - [anon_sym_DOT] = ".", - [anon_sym_DASH_GT] = "->", - [anon_sym_STAR] = "*", - [anon_sym_LBRACE] = "{", - [anon_sym_SEMI] = ";", - [anon_sym_RBRACE] = "}", - [anon_sym_mutable] = "mutable", - [anon_sym_constraint] = "constraint", - [anon_sym_exception] = "exception", - [anon_sym_module] = "module", - [anon_sym_open] = "open", - [anon_sym_include] = "include", - [anon_sym_class] = "class", - [anon_sym_virtual] = "virtual", - [anon_sym_val] = "val", - [anon_sym_sig] = "sig", - [anon_sym_end] = "end", - [anon_sym_with] = "with", - [anon_sym_functor] = "functor", - [anon_sym_struct] = "struct", - [anon_sym_object] = "object", - [anon_sym_inherit] = "inherit", - [anon_sym_method] = "method", - [anon_sym_in] = "in", - [anon_sym_fun] = "fun", - [anon_sym_as] = "as", - [anon_sym_initializer] = "initializer", - [anon_sym_LBRACK_GT] = "[>", - [anon_sym_LBRACK_LT] = "[<", - [anon_sym_GT] = ">", - [anon_sym_AMP] = "&", - [anon_sym_LT] = "<", - [anon_sym_POUND] = "#", - [anon_sym_COLON_COLON] = "::", - [anon_sym_LBRACK_PIPE] = "[|", - [anon_sym_PIPE_RBRACK] = "|]", - [anon_sym_LT_DASH] = "<-", - [anon_sym_if] = "if", - [anon_sym_then] = "then", - [anon_sym_else] = "else", - [anon_sym_while] = "while", - [anon_sym_do] = "do", - [anon_sym_done] = "done", - [anon_sym_for] = "for", - [anon_sym_to] = "to", - [anon_sym_downto] = "downto", - [anon_sym_match] = "match", - [anon_sym_when] = "when", - [anon_sym_function] = "function", - [anon_sym_try] = "try", - [anon_sym_assert] = "assert", - [anon_sym_lazy] = "lazy", - [anon_sym_new] = "new", - [anon_sym_LBRACE_LT] = "{<", - [anon_sym_GT_RBRACE] = ">}", - [anon_sym_begin] = "begin", - [sym_ocamlyacc_value] = "ocamlyacc_value", - [anon_sym_LBRACK_AT] = "[@", - [anon_sym_LBRACK_AT_AT] = "[@@", - [anon_sym_LBRACK_AT_AT_AT] = "[@@@", - [anon_sym_LBRACK_PERCENT] = "[%", - [anon_sym_LBRACE_PERCENT] = "{%", - [aux_sym_quoted_extension_token1] = "quoted_extension_token1", - [anon_sym_LBRACK_PERCENT_PERCENT] = "[%%", - [anon_sym_LBRACE_PERCENT_PERCENT] = "{%%", - [anon_sym_PERCENT] = "%", - [aux_sym_number_token1] = "number_token1", - [anon_sym_SQUOTE] = "'", - [aux_sym_character_content_token1] = "character_content_token1", - [anon_sym_DQUOTE] = "\"", - [anon_sym_] = " ", - [anon_sym_LF] = "\n", - [anon_sym_TAB] = "\t", - [anon_sym_LBRACK_AT2] = "[@", - [anon_sym_LBRACK_AT_AT2] = "[@@", - [anon_sym_LBRACK_AT_AT_AT2] = "[@@@", - [aux_sym_string_content_token1] = "string_content_token1", - [aux_sym_string_content_token2] = "escape_sequence", - [aux_sym_string_content_token3] = "escape_sequence", - [aux_sym_quoted_string_content_token1] = "quoted_string_content_token1", - [aux_sym_escape_sequence_token1] = "escape_sequence_token1", - [aux_sym_escape_sequence_token2] = "escape_sequence_token2", - [aux_sym_escape_sequence_token3] = "escape_sequence_token3", - [aux_sym_escape_sequence_token4] = "escape_sequence_token4", - [sym_conversion_specification] = "conversion_specification", - [sym_pretty_printing_indication] = "pretty_printing_indication", - [sym_prefix_operator] = "prefix_operator", - [anon_sym_PLUS_DOT] = "+.", - [anon_sym_DASH_DOT] = "-.", - [sym_hash_operator] = "hash_operator", - [aux_sym__pow_operator_token1] = "_pow_operator_token1", - [anon_sym_lsl] = "lsl", - [anon_sym_lsr] = "lsr", - [anon_sym_asr] = "asr", - [aux_sym__mult_operator_token1] = "_mult_operator_token1", - [anon_sym_mod] = "mod", - [anon_sym_land] = "land", - [anon_sym_lor] = "lor", - [anon_sym_lxor] = "lxor", - [aux_sym__add_operator_token1] = "_add_operator_token1", - [sym__concat_operator] = "_concat_operator", - [sym__rel_operator] = "_rel_operator", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_or] = "or", - [anon_sym_PIPE_PIPE] = "||", - [sym_indexing_operator] = "indexing_operator", - [sym_let_operator] = "let_operator", - [sym_and_operator] = "and_operator", - [sym_match_operator] = "match_operator", - [sym__capitalized_identifier] = "_capitalized_identifier", - [aux_sym_directive_token1] = "directive_token1", - [aux_sym_type_variable_token1] = "type_variable_token1", - [aux_sym_tag_token1] = "tag_token1", - [aux_sym_attribute_id_token1] = "attribute_id_token1", - [sym_comment] = "comment", - [sym__left_quoted_string_delimiter] = "_left_quoted_string_delimiter", - [sym__right_quoted_string_delimiter] = "_right_quoted_string_delimiter", - [sym_line_number_directive] = "line_number_directive", - [sym__null] = "_null", - [sym_compilation_unit] = "compilation_unit", - [sym__structure] = "_structure", - [sym_expression_item] = "expression_item", - [sym__signature] = "_signature", - [sym_toplevel_directive] = "toplevel_directive", - [sym__structure_item] = "_structure_item", - [sym__structure_item_ext] = "_structure_item_ext", - [sym_value_definition] = "value_definition", - [sym_let_binding] = "let_binding", - [sym__parameter] = "_parameter", - [sym_parameter] = "parameter", - [sym_external] = "external", - [sym_type_definition] = "type_definition", - [sym_type_binding] = "type_binding", - [sym__type_params] = "_type_params", - [sym__type_param] = "_type_param", - [sym__type_equation] = "_type_equation", - [sym_variant_declaration] = "variant_declaration", - [sym_constructor_declaration] = "constructor_declaration", - [sym__constructor_argument] = "_constructor_argument", - [sym_record_declaration] = "record_declaration", - [sym_field_declaration] = "field_declaration", - [sym_type_constraint] = "type_constraint", - [sym_exception_definition] = "exception_definition", - [sym_module_definition] = "module_definition", - [sym_module_binding] = "module_binding", - [sym_module_parameter] = "module_parameter", - [sym_module_type_definition] = "module_type_definition", - [sym_open_module] = "open_module", - [sym_include_module] = "include_module", - [sym_class_definition] = "class_definition", - [sym_class_binding] = "class_binding", - [sym_class_type_definition] = "class_type_definition", - [sym_class_type_binding] = "class_type_binding", - [sym__signature_item] = "_signature_item", - [sym__signature_item_ext] = "_signature_item_ext", - [sym_value_specification] = "value_specification", - [sym_include_module_type] = "include_module_type", - [sym__module_typed] = "_module_typed", - [sym__module_type] = "_module_type", - [sym_signature] = "signature", - [sym_module_type_constraint] = "module_type_constraint", - [sym_constrain_type] = "constrain_type", - [sym_constrain_module] = "constrain_module", - [sym_constrain_module_type] = "constrain_module_type", - [sym_module_type_of] = "module_type_of", - [sym_functor_type] = "functor_type", - [sym_parenthesized_module_type] = "parenthesized_module_type", - [sym__simple_module_expression] = "_simple_module_expression", - [sym__simple_module_expression_ext] = "_simple_module_expression_ext", - [sym__module_expression] = "_module_expression", - [sym_structure] = "structure", - [sym_functor] = "functor", - [sym_module_application] = "module_application", - [sym_typed_module_expression] = "typed_module_expression", - [sym_packed_module] = "packed_module", - [sym_parenthesized_module_expression] = "parenthesized_module_expression", - [sym__class_typed] = "_class_typed", - [sym__simple_class_type] = "_simple_class_type", - [sym__simple_class_type_ext] = "_simple_class_type_ext", - [sym__class_type] = "_class_type", - [sym__class_type_ext] = "_class_type_ext", - [sym_instantiated_class_type] = "instantiated_class_type", - [sym_class_body_type] = "class_body_type", - [sym__class_field_specification] = "_class_field_specification", - [sym__class_field_specification_ext] = "_class_field_specification_ext", - [sym_inheritance_specification] = "inheritance_specification", - [sym_instance_variable_specification] = "instance_variable_specification", - [sym_method_specification] = "method_specification", - [sym_type_parameter_constraint] = "type_parameter_constraint", - [sym_let_open_class_type] = "let_open_class_type", - [sym_class_function_type] = "class_function_type", - [sym__simple_class_expression] = "_simple_class_expression", - [sym__class_expression] = "_class_expression", - [sym__class_expression_ext] = "_class_expression_ext", - [sym_instantiated_class] = "instantiated_class", - [sym_typed_class_expression] = "typed_class_expression", - [sym_class_function] = "class_function", - [sym_class_application] = "class_application", - [sym_let_class_expression] = "let_class_expression", - [sym__class_field] = "_class_field", - [sym__class_field_ext] = "_class_field_ext", - [sym_inheritance_definition] = "inheritance_definition", - [sym_instance_variable_definition] = "instance_variable_definition", - [sym_method_definition] = "method_definition", - [sym_class_initializer] = "class_initializer", - [sym_let_open_class_expression] = "let_open_class_expression", - [sym_parenthesized_class_expression] = "parenthesized_class_expression", - [sym__typed] = "_typed", - [sym__simple_typed] = "_simple_typed", - [sym__polymorphic_typed] = "_polymorphic_typed", - [sym__polymorphic_type] = "_polymorphic_type", - [sym_polymorphic_type] = "polymorphic_type", - [sym__abstract_type] = "_abstract_type", - [sym__parenthesized_abstract_type] = "abstract_type", - [sym__simple_type] = "_simple_type", - [sym__tuple_type] = "_tuple_type", - [sym__tuple_type_ext] = "_tuple_type_ext", - [sym__type] = "_type", - [sym__type_ext] = "_type_ext", - [sym_function_type] = "function_type", - [sym_typed_label] = "typed_label", - [sym_tuple_type] = "tuple_type", - [sym_constructed_type] = "constructed_type", - [sym_aliased_type] = "aliased_type", - [sym_polymorphic_variant_type] = "polymorphic_variant_type", - [sym__tag_spec] = "_tag_spec", - [sym_tag_specification] = "tag_specification", - [sym_package_type] = "package_type", - [sym_object_type] = "object_type", - [sym_method_type] = "method_type", - [sym_hash_type] = "hash_type", - [sym_parenthesized_type] = "parenthesized_type", - [sym__simple_expression] = "_simple_expression", - [sym__expression] = "_expression", - [sym__sequence_expression] = "_sequence_expression", - [sym__sequence_expression_ext] = "_sequence_expression_ext", - [sym_typed_expression] = "typed_expression", - [sym_product_expression] = "product_expression", - [sym_cons_expression] = "cons_expression", - [sym_list_expression] = "list_expression", - [sym_array_expression] = "array_expression", - [sym_record_expression] = "record_expression", - [sym_field_expression] = "field_expression", - [sym_application_expression] = "application_expression", - [sym__argument] = "_argument", - [sym_labeled_argument] = "labeled_argument", - [sym_prefix_expression] = "prefix_expression", - [sym_sign_expression] = "sign_expression", - [sym_hash_expression] = "hash_expression", - [sym_infix_expression] = "infix_expression", - [sym_field_get_expression] = "field_get_expression", - [sym_array_get_expression] = "array_get_expression", - [sym_string_get_expression] = "string_get_expression", - [sym_bigarray_get_expression] = "bigarray_get_expression", - [sym_set_expression] = "set_expression", - [sym_if_expression] = "if_expression", - [sym_then_clause] = "then_clause", - [sym_else_clause] = "else_clause", - [sym_while_expression] = "while_expression", - [sym_do_clause] = "do_clause", - [sym_for_expression] = "for_expression", - [sym_sequence_expression] = "sequence_expression", - [sym_match_expression] = "match_expression", - [sym__match_cases] = "_match_cases", - [sym_match_case] = "match_case", - [sym_guard] = "guard", - [sym_refutation_case] = "refutation_case", - [sym_function_expression] = "function_expression", - [sym_fun_expression] = "fun_expression", - [sym_try_expression] = "try_expression", - [sym_let_expression] = "let_expression", - [sym_coercion_expression] = "coercion_expression", - [sym_assert_expression] = "assert_expression", - [sym_lazy_expression] = "lazy_expression", - [sym_let_module_expression] = "let_module_expression", - [sym_let_open_expression] = "let_open_expression", - [sym_local_open_expression] = "local_open_expression", - [sym_package_expression] = "package_expression", - [sym_let_exception_expression] = "let_exception_expression", - [sym_new_expression] = "new_expression", - [sym_object_copy_expression] = "object_copy_expression", - [sym_instance_variable_expression] = "instance_variable_expression", - [sym_method_invocation] = "method_invocation", - [sym_object_expression] = "object_expression", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym__simple_pattern] = "_simple_pattern", - [sym__simple_pattern_ext] = "_simple_pattern_ext", - [sym__pattern] = "_pattern", - [sym__pattern_ext] = "_pattern_ext", - [sym__binding_pattern] = "_binding_pattern", - [sym__binding_pattern_ext] = "_binding_pattern_ext", - [sym_alias_pattern] = "alias_pattern", - [sym_alias_binding_pattern] = "alias_pattern", - [sym_typed_pattern] = "typed_pattern", - [sym_typed_binding_pattern] = "typed_pattern", - [sym_or_pattern] = "or_pattern", - [sym_or_binding_pattern] = "or_pattern", - [sym_constructor_pattern] = "constructor_pattern", - [sym_constructor_binding_pattern] = "constructor_pattern", - [sym_tag_pattern] = "tag_pattern", - [sym_tag_binding_pattern] = "tag_pattern", - [sym_polymorphic_variant_pattern] = "polymorphic_variant_pattern", - [sym_tuple_pattern] = "tuple_pattern", - [sym_tuple_binding_pattern] = "tuple_pattern", - [sym_record_pattern] = "record_pattern", - [sym_field_pattern] = "field_pattern", - [sym_record_binding_pattern] = "record_binding_pattern", - [sym_field_binding_pattern] = "field_pattern", - [sym_list_pattern] = "list_pattern", - [sym_list_binding_pattern] = "list_binding_pattern", - [sym_cons_pattern] = "cons_pattern", - [sym_cons_binding_pattern] = "cons_pattern", - [sym_array_pattern] = "array_pattern", - [sym_array_binding_pattern] = "array_binding_pattern", - [sym_range_pattern] = "range_pattern", - [sym_lazy_pattern] = "lazy_pattern", - [sym_lazy_binding_pattern] = "lazy_pattern", - [sym_local_open_pattern] = "local_open_pattern", - [sym_local_open_binding_pattern] = "local_open_pattern", - [sym_package_pattern] = "package_pattern", - [sym_parenthesized_pattern] = "parenthesized_pattern", - [sym_parenthesized_binding_pattern] = "parenthesized_pattern", - [sym_exception_pattern] = "exception_pattern", - [sym_attribute] = "attribute", - [sym_item_attribute] = "item_attribute", - [sym_floating_attribute] = "floating_attribute", - [sym_attribute_payload] = "attribute_payload", - [sym__extension] = "_extension", - [sym_extension] = "extension", - [sym_quoted_extension] = "quoted_extension", - [sym__item_extension] = "_item_extension", - [sym_item_extension] = "item_extension", - [sym_quoted_item_extension] = "quoted_item_extension", - [sym__attribute] = "_attribute", - [sym__constant] = "_constant", - [sym__signed_constant] = "_signed_constant", - [sym_number] = "number", - [sym_signed_number] = "signed_number", - [sym_character] = "character", - [sym_character_content] = "character_content", - [sym_string] = "string", - [sym_string_content] = "string_content", - [sym_quoted_string] = "quoted_string", - [sym_quoted_string_content] = "quoted_string_content", - [sym_escape_sequence] = "escape_sequence", - [sym_boolean] = "boolean", - [sym_unit] = "unit", - [sym_sign_operator] = "sign_operator", - [sym_infix_operator] = "infix_operator", - [sym__pow_operator] = "_pow_operator", - [sym__mult_operator] = "_mult_operator", - [sym__add_operator] = "_add_operator", - [sym__and_operator] = "_and_operator", - [sym__or_operator] = "_or_operator", - [sym__assign_operator] = "_assign_operator", - [sym_indexing_operator_path] = "indexing_operator_path", - [sym__value_name] = "_value_name", - [sym__value_pattern] = "_value_pattern", - [sym_parenthesized_operator] = "parenthesized_operator", - [sym_value_path] = "value_path", - [sym_module_path] = "module_path", - [sym_extended_module_path] = "extended_module_path", - [sym_module_type_path] = "module_type_path", - [sym_field_path] = "field_path", - [sym_constructor_path] = "constructor_path", - [sym_type_constructor_path] = "type_constructor_path", - [sym_class_path] = "class_path", - [sym_class_type_path] = "class_type_path", - [sym__label] = "_label", - [sym_directive] = "directive", - [sym_type_variable] = "type_variable", - [sym_tag] = "tag", - [sym_attribute_id] = "attribute_id", - [aux_sym__structure_repeat1] = "_structure_repeat1", - [aux_sym__structure_repeat2] = "_structure_repeat2", - [aux_sym_expression_item_repeat1] = "expression_item_repeat1", - [aux_sym__signature_repeat1] = "_signature_repeat1", - [aux_sym_value_definition_repeat1] = "value_definition_repeat1", - [aux_sym_let_binding_repeat1] = "let_binding_repeat1", - [aux_sym_external_repeat1] = "external_repeat1", - [aux_sym_type_definition_repeat1] = "type_definition_repeat1", - [aux_sym_type_binding_repeat1] = "type_binding_repeat1", - [aux_sym__type_params_repeat1] = "_type_params_repeat1", - [aux_sym_variant_declaration_repeat1] = "variant_declaration_repeat1", - [aux_sym_constructor_declaration_repeat1] = "constructor_declaration_repeat1", - [aux_sym__constructor_argument_repeat1] = "_constructor_argument_repeat1", - [aux_sym_record_declaration_repeat1] = "record_declaration_repeat1", - [aux_sym_module_definition_repeat1] = "module_definition_repeat1", - [aux_sym_module_binding_repeat1] = "module_binding_repeat1", - [aux_sym_class_definition_repeat1] = "class_definition_repeat1", - [aux_sym_class_type_definition_repeat1] = "class_type_definition_repeat1", - [aux_sym_module_type_constraint_repeat1] = "module_type_constraint_repeat1", - [aux_sym_instantiated_class_type_repeat1] = "instantiated_class_type_repeat1", - [aux_sym_class_body_type_repeat1] = "class_body_type_repeat1", - [aux_sym_instance_variable_specification_repeat1] = "instance_variable_specification_repeat1", - [aux_sym_method_specification_repeat1] = "method_specification_repeat1", - [aux_sym_class_application_repeat1] = "class_application_repeat1", - [aux_sym__abstract_type_repeat1] = "_abstract_type_repeat1", - [aux_sym_polymorphic_variant_type_repeat1] = "polymorphic_variant_type_repeat1", - [aux_sym_polymorphic_variant_type_repeat2] = "polymorphic_variant_type_repeat2", - [aux_sym_tag_specification_repeat1] = "tag_specification_repeat1", - [aux_sym_object_type_repeat1] = "object_type_repeat1", - [aux_sym_list_expression_repeat1] = "list_expression_repeat1", - [aux_sym_record_expression_repeat1] = "record_expression_repeat1", - [aux_sym__match_cases_repeat1] = "_match_cases_repeat1", - [aux_sym_object_copy_expression_repeat1] = "object_copy_expression_repeat1", - [aux_sym_object_expression_repeat1] = "object_expression_repeat1", - [aux_sym_record_pattern_repeat1] = "record_pattern_repeat1", - [aux_sym_record_binding_pattern_repeat1] = "record_binding_pattern_repeat1", - [aux_sym_list_pattern_repeat1] = "list_pattern_repeat1", - [aux_sym_list_binding_pattern_repeat1] = "list_binding_pattern_repeat1", - [aux_sym_string_content_repeat1] = "string_content_repeat1", - [aux_sym_quoted_string_content_repeat1] = "quoted_string_content_repeat1", - [aux_sym_attribute_id_repeat1] = "attribute_id_repeat1", - [alias_sym_class_name] = "class_name", - [alias_sym_class_type_name] = "class_type_name", - [alias_sym_constructor_name] = "constructor_name", - [alias_sym_field_name] = "field_name", - [alias_sym_instance_variable_name] = "instance_variable_name", - [alias_sym_label_name] = "label_name", - [alias_sym_method_name] = "method_name", - [alias_sym_module_name] = "module_name", - [alias_sym_module_type_name] = "module_type_name", - [alias_sym_type_constructor] = "type_constructor", - [alias_sym_value_name] = "value_name", - [alias_sym_value_pattern] = "value_pattern", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym__identifier] = sym__identifier, - [sym_shebang] = sym_shebang, - [anon_sym_SEMI_SEMI] = anon_sym_SEMI_SEMI, - [anon_sym_let] = anon_sym_let, - [anon_sym_rec] = anon_sym_rec, - [anon_sym_and] = anon_sym_and, - [anon_sym_COLON_GT] = anon_sym_COLON_GT, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_QMARK] = anon_sym_QMARK, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_external] = anon_sym_external, - [anon_sym_type] = anon_sym_type, - [anon_sym_nonrec] = anon_sym_nonrec, - [anon_sym_private] = anon_sym_private, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym__] = anon_sym__, - [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_true] = anon_sym_true, - [anon_sym_false] = anon_sym_false, - [anon_sym_of] = anon_sym_of, - [anon_sym_COLON2] = anon_sym_COLON, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_mutable] = anon_sym_mutable, - [anon_sym_constraint] = anon_sym_constraint, - [anon_sym_exception] = anon_sym_exception, - [anon_sym_module] = anon_sym_module, - [anon_sym_open] = anon_sym_open, - [anon_sym_include] = anon_sym_include, - [anon_sym_class] = anon_sym_class, - [anon_sym_virtual] = anon_sym_virtual, - [anon_sym_val] = anon_sym_val, - [anon_sym_sig] = anon_sym_sig, - [anon_sym_end] = anon_sym_end, - [anon_sym_with] = anon_sym_with, - [anon_sym_functor] = anon_sym_functor, - [anon_sym_struct] = anon_sym_struct, - [anon_sym_object] = anon_sym_object, - [anon_sym_inherit] = anon_sym_inherit, - [anon_sym_method] = anon_sym_method, - [anon_sym_in] = anon_sym_in, - [anon_sym_fun] = anon_sym_fun, - [anon_sym_as] = anon_sym_as, - [anon_sym_initializer] = anon_sym_initializer, - [anon_sym_LBRACK_GT] = anon_sym_LBRACK_GT, - [anon_sym_LBRACK_LT] = anon_sym_LBRACK_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [anon_sym_LBRACK_PIPE] = anon_sym_LBRACK_PIPE, - [anon_sym_PIPE_RBRACK] = anon_sym_PIPE_RBRACK, - [anon_sym_LT_DASH] = anon_sym_LT_DASH, - [anon_sym_if] = anon_sym_if, - [anon_sym_then] = anon_sym_then, - [anon_sym_else] = anon_sym_else, - [anon_sym_while] = anon_sym_while, - [anon_sym_do] = anon_sym_do, - [anon_sym_done] = anon_sym_done, - [anon_sym_for] = anon_sym_for, - [anon_sym_to] = anon_sym_to, - [anon_sym_downto] = anon_sym_downto, - [anon_sym_match] = anon_sym_match, - [anon_sym_when] = anon_sym_when, - [anon_sym_function] = anon_sym_function, - [anon_sym_try] = anon_sym_try, - [anon_sym_assert] = anon_sym_assert, - [anon_sym_lazy] = anon_sym_lazy, - [anon_sym_new] = anon_sym_new, - [anon_sym_LBRACE_LT] = anon_sym_LBRACE_LT, - [anon_sym_GT_RBRACE] = anon_sym_GT_RBRACE, - [anon_sym_begin] = anon_sym_begin, - [sym_ocamlyacc_value] = sym_ocamlyacc_value, - [anon_sym_LBRACK_AT] = anon_sym_LBRACK_AT, - [anon_sym_LBRACK_AT_AT] = anon_sym_LBRACK_AT_AT, - [anon_sym_LBRACK_AT_AT_AT] = anon_sym_LBRACK_AT_AT_AT, - [anon_sym_LBRACK_PERCENT] = anon_sym_LBRACK_PERCENT, - [anon_sym_LBRACE_PERCENT] = anon_sym_LBRACE_PERCENT, - [aux_sym_quoted_extension_token1] = aux_sym_quoted_extension_token1, - [anon_sym_LBRACK_PERCENT_PERCENT] = anon_sym_LBRACK_PERCENT_PERCENT, - [anon_sym_LBRACE_PERCENT_PERCENT] = anon_sym_LBRACE_PERCENT_PERCENT, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [aux_sym_number_token1] = aux_sym_number_token1, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [aux_sym_character_content_token1] = aux_sym_character_content_token1, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_] = anon_sym_, - [anon_sym_LF] = anon_sym_LF, - [anon_sym_TAB] = anon_sym_TAB, - [anon_sym_LBRACK_AT2] = anon_sym_LBRACK_AT, - [anon_sym_LBRACK_AT_AT2] = anon_sym_LBRACK_AT_AT, - [anon_sym_LBRACK_AT_AT_AT2] = anon_sym_LBRACK_AT_AT_AT, - [aux_sym_string_content_token1] = aux_sym_string_content_token1, - [aux_sym_string_content_token2] = sym_escape_sequence, - [aux_sym_string_content_token3] = sym_escape_sequence, - [aux_sym_quoted_string_content_token1] = aux_sym_quoted_string_content_token1, - [aux_sym_escape_sequence_token1] = aux_sym_escape_sequence_token1, - [aux_sym_escape_sequence_token2] = aux_sym_escape_sequence_token2, - [aux_sym_escape_sequence_token3] = aux_sym_escape_sequence_token3, - [aux_sym_escape_sequence_token4] = aux_sym_escape_sequence_token4, - [sym_conversion_specification] = sym_conversion_specification, - [sym_pretty_printing_indication] = sym_pretty_printing_indication, - [sym_prefix_operator] = sym_prefix_operator, - [anon_sym_PLUS_DOT] = anon_sym_PLUS_DOT, - [anon_sym_DASH_DOT] = anon_sym_DASH_DOT, - [sym_hash_operator] = sym_hash_operator, - [aux_sym__pow_operator_token1] = aux_sym__pow_operator_token1, - [anon_sym_lsl] = anon_sym_lsl, - [anon_sym_lsr] = anon_sym_lsr, - [anon_sym_asr] = anon_sym_asr, - [aux_sym__mult_operator_token1] = aux_sym__mult_operator_token1, - [anon_sym_mod] = anon_sym_mod, - [anon_sym_land] = anon_sym_land, - [anon_sym_lor] = anon_sym_lor, - [anon_sym_lxor] = anon_sym_lxor, - [aux_sym__add_operator_token1] = aux_sym__add_operator_token1, - [sym__concat_operator] = sym__concat_operator, - [sym__rel_operator] = sym__rel_operator, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_or] = anon_sym_or, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [sym_indexing_operator] = sym_indexing_operator, - [sym_let_operator] = sym_let_operator, - [sym_and_operator] = sym_and_operator, - [sym_match_operator] = sym_match_operator, - [sym__capitalized_identifier] = sym__capitalized_identifier, - [aux_sym_directive_token1] = aux_sym_directive_token1, - [aux_sym_type_variable_token1] = aux_sym_type_variable_token1, - [aux_sym_tag_token1] = aux_sym_tag_token1, - [aux_sym_attribute_id_token1] = aux_sym_attribute_id_token1, - [sym_comment] = sym_comment, - [sym__left_quoted_string_delimiter] = sym__left_quoted_string_delimiter, - [sym__right_quoted_string_delimiter] = sym__right_quoted_string_delimiter, - [sym_line_number_directive] = sym_line_number_directive, - [sym__null] = sym__null, - [sym_compilation_unit] = sym_compilation_unit, - [sym__structure] = sym__structure, - [sym_expression_item] = sym_expression_item, - [sym__signature] = sym__signature, - [sym_toplevel_directive] = sym_toplevel_directive, - [sym__structure_item] = sym__structure_item, - [sym__structure_item_ext] = sym__structure_item_ext, - [sym_value_definition] = sym_value_definition, - [sym_let_binding] = sym_let_binding, - [sym__parameter] = sym__parameter, - [sym_parameter] = sym_parameter, - [sym_external] = sym_external, - [sym_type_definition] = sym_type_definition, - [sym_type_binding] = sym_type_binding, - [sym__type_params] = sym__type_params, - [sym__type_param] = sym__type_param, - [sym__type_equation] = sym__type_equation, - [sym_variant_declaration] = sym_variant_declaration, - [sym_constructor_declaration] = sym_constructor_declaration, - [sym__constructor_argument] = sym__constructor_argument, - [sym_record_declaration] = sym_record_declaration, - [sym_field_declaration] = sym_field_declaration, - [sym_type_constraint] = sym_type_constraint, - [sym_exception_definition] = sym_exception_definition, - [sym_module_definition] = sym_module_definition, - [sym_module_binding] = sym_module_binding, - [sym_module_parameter] = sym_module_parameter, - [sym_module_type_definition] = sym_module_type_definition, - [sym_open_module] = sym_open_module, - [sym_include_module] = sym_include_module, - [sym_class_definition] = sym_class_definition, - [sym_class_binding] = sym_class_binding, - [sym_class_type_definition] = sym_class_type_definition, - [sym_class_type_binding] = sym_class_type_binding, - [sym__signature_item] = sym__signature_item, - [sym__signature_item_ext] = sym__signature_item_ext, - [sym_value_specification] = sym_value_specification, - [sym_include_module_type] = sym_include_module_type, - [sym__module_typed] = sym__module_typed, - [sym__module_type] = sym__module_type, - [sym_signature] = sym_signature, - [sym_module_type_constraint] = sym_module_type_constraint, - [sym_constrain_type] = sym_constrain_type, - [sym_constrain_module] = sym_constrain_module, - [sym_constrain_module_type] = sym_constrain_module_type, - [sym_module_type_of] = sym_module_type_of, - [sym_functor_type] = sym_functor_type, - [sym_parenthesized_module_type] = sym_parenthesized_module_type, - [sym__simple_module_expression] = sym__simple_module_expression, - [sym__simple_module_expression_ext] = sym__simple_module_expression_ext, - [sym__module_expression] = sym__module_expression, - [sym_structure] = sym_structure, - [sym_functor] = sym_functor, - [sym_module_application] = sym_module_application, - [sym_typed_module_expression] = sym_typed_module_expression, - [sym_packed_module] = sym_packed_module, - [sym_parenthesized_module_expression] = sym_parenthesized_module_expression, - [sym__class_typed] = sym__class_typed, - [sym__simple_class_type] = sym__simple_class_type, - [sym__simple_class_type_ext] = sym__simple_class_type_ext, - [sym__class_type] = sym__class_type, - [sym__class_type_ext] = sym__class_type_ext, - [sym_instantiated_class_type] = sym_instantiated_class_type, - [sym_class_body_type] = sym_class_body_type, - [sym__class_field_specification] = sym__class_field_specification, - [sym__class_field_specification_ext] = sym__class_field_specification_ext, - [sym_inheritance_specification] = sym_inheritance_specification, - [sym_instance_variable_specification] = sym_instance_variable_specification, - [sym_method_specification] = sym_method_specification, - [sym_type_parameter_constraint] = sym_type_parameter_constraint, - [sym_let_open_class_type] = sym_let_open_class_type, - [sym_class_function_type] = sym_class_function_type, - [sym__simple_class_expression] = sym__simple_class_expression, - [sym__class_expression] = sym__class_expression, - [sym__class_expression_ext] = sym__class_expression_ext, - [sym_instantiated_class] = sym_instantiated_class, - [sym_typed_class_expression] = sym_typed_class_expression, - [sym_class_function] = sym_class_function, - [sym_class_application] = sym_class_application, - [sym_let_class_expression] = sym_let_class_expression, - [sym__class_field] = sym__class_field, - [sym__class_field_ext] = sym__class_field_ext, - [sym_inheritance_definition] = sym_inheritance_definition, - [sym_instance_variable_definition] = sym_instance_variable_definition, - [sym_method_definition] = sym_method_definition, - [sym_class_initializer] = sym_class_initializer, - [sym_let_open_class_expression] = sym_let_open_class_expression, - [sym_parenthesized_class_expression] = sym_parenthesized_class_expression, - [sym__typed] = sym__typed, - [sym__simple_typed] = sym__simple_typed, - [sym__polymorphic_typed] = sym__polymorphic_typed, - [sym__polymorphic_type] = sym__polymorphic_type, - [sym_polymorphic_type] = sym_polymorphic_type, - [sym__abstract_type] = sym__abstract_type, - [sym__parenthesized_abstract_type] = sym__parenthesized_abstract_type, - [sym__simple_type] = sym__simple_type, - [sym__tuple_type] = sym__tuple_type, - [sym__tuple_type_ext] = sym__tuple_type_ext, - [sym__type] = sym__type, - [sym__type_ext] = sym__type_ext, - [sym_function_type] = sym_function_type, - [sym_typed_label] = sym_typed_label, - [sym_tuple_type] = sym_tuple_type, - [sym_constructed_type] = sym_constructed_type, - [sym_aliased_type] = sym_aliased_type, - [sym_polymorphic_variant_type] = sym_polymorphic_variant_type, - [sym__tag_spec] = sym__tag_spec, - [sym_tag_specification] = sym_tag_specification, - [sym_package_type] = sym_package_type, - [sym_object_type] = sym_object_type, - [sym_method_type] = sym_method_type, - [sym_hash_type] = sym_hash_type, - [sym_parenthesized_type] = sym_parenthesized_type, - [sym__simple_expression] = sym__simple_expression, - [sym__expression] = sym__expression, - [sym__sequence_expression] = sym__sequence_expression, - [sym__sequence_expression_ext] = sym__sequence_expression_ext, - [sym_typed_expression] = sym_typed_expression, - [sym_product_expression] = sym_product_expression, - [sym_cons_expression] = sym_cons_expression, - [sym_list_expression] = sym_list_expression, - [sym_array_expression] = sym_array_expression, - [sym_record_expression] = sym_record_expression, - [sym_field_expression] = sym_field_expression, - [sym_application_expression] = sym_application_expression, - [sym__argument] = sym__argument, - [sym_labeled_argument] = sym_labeled_argument, - [sym_prefix_expression] = sym_prefix_expression, - [sym_sign_expression] = sym_sign_expression, - [sym_hash_expression] = sym_hash_expression, - [sym_infix_expression] = sym_infix_expression, - [sym_field_get_expression] = sym_field_get_expression, - [sym_array_get_expression] = sym_array_get_expression, - [sym_string_get_expression] = sym_string_get_expression, - [sym_bigarray_get_expression] = sym_bigarray_get_expression, - [sym_set_expression] = sym_set_expression, - [sym_if_expression] = sym_if_expression, - [sym_then_clause] = sym_then_clause, - [sym_else_clause] = sym_else_clause, - [sym_while_expression] = sym_while_expression, - [sym_do_clause] = sym_do_clause, - [sym_for_expression] = sym_for_expression, - [sym_sequence_expression] = sym_sequence_expression, - [sym_match_expression] = sym_match_expression, - [sym__match_cases] = sym__match_cases, - [sym_match_case] = sym_match_case, - [sym_guard] = sym_guard, - [sym_refutation_case] = sym_refutation_case, - [sym_function_expression] = sym_function_expression, - [sym_fun_expression] = sym_fun_expression, - [sym_try_expression] = sym_try_expression, - [sym_let_expression] = sym_let_expression, - [sym_coercion_expression] = sym_coercion_expression, - [sym_assert_expression] = sym_assert_expression, - [sym_lazy_expression] = sym_lazy_expression, - [sym_let_module_expression] = sym_let_module_expression, - [sym_let_open_expression] = sym_let_open_expression, - [sym_local_open_expression] = sym_local_open_expression, - [sym_package_expression] = sym_package_expression, - [sym_let_exception_expression] = sym_let_exception_expression, - [sym_new_expression] = sym_new_expression, - [sym_object_copy_expression] = sym_object_copy_expression, - [sym_instance_variable_expression] = sym_instance_variable_expression, - [sym_method_invocation] = sym_method_invocation, - [sym_object_expression] = sym_object_expression, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym__simple_pattern] = sym__simple_pattern, - [sym__simple_pattern_ext] = sym__simple_pattern_ext, - [sym__pattern] = sym__pattern, - [sym__pattern_ext] = sym__pattern_ext, - [sym__binding_pattern] = sym__binding_pattern, - [sym__binding_pattern_ext] = sym__binding_pattern_ext, - [sym_alias_pattern] = sym_alias_pattern, - [sym_alias_binding_pattern] = sym_alias_pattern, - [sym_typed_pattern] = sym_typed_pattern, - [sym_typed_binding_pattern] = sym_typed_pattern, - [sym_or_pattern] = sym_or_pattern, - [sym_or_binding_pattern] = sym_or_pattern, - [sym_constructor_pattern] = sym_constructor_pattern, - [sym_constructor_binding_pattern] = sym_constructor_pattern, - [sym_tag_pattern] = sym_tag_pattern, - [sym_tag_binding_pattern] = sym_tag_pattern, - [sym_polymorphic_variant_pattern] = sym_polymorphic_variant_pattern, - [sym_tuple_pattern] = sym_tuple_pattern, - [sym_tuple_binding_pattern] = sym_tuple_pattern, - [sym_record_pattern] = sym_record_pattern, - [sym_field_pattern] = sym_field_pattern, - [sym_record_binding_pattern] = sym_record_binding_pattern, - [sym_field_binding_pattern] = sym_field_pattern, - [sym_list_pattern] = sym_list_pattern, - [sym_list_binding_pattern] = sym_list_binding_pattern, - [sym_cons_pattern] = sym_cons_pattern, - [sym_cons_binding_pattern] = sym_cons_pattern, - [sym_array_pattern] = sym_array_pattern, - [sym_array_binding_pattern] = sym_array_binding_pattern, - [sym_range_pattern] = sym_range_pattern, - [sym_lazy_pattern] = sym_lazy_pattern, - [sym_lazy_binding_pattern] = sym_lazy_pattern, - [sym_local_open_pattern] = sym_local_open_pattern, - [sym_local_open_binding_pattern] = sym_local_open_pattern, - [sym_package_pattern] = sym_package_pattern, - [sym_parenthesized_pattern] = sym_parenthesized_pattern, - [sym_parenthesized_binding_pattern] = sym_parenthesized_pattern, - [sym_exception_pattern] = sym_exception_pattern, - [sym_attribute] = sym_attribute, - [sym_item_attribute] = sym_item_attribute, - [sym_floating_attribute] = sym_floating_attribute, - [sym_attribute_payload] = sym_attribute_payload, - [sym__extension] = sym__extension, - [sym_extension] = sym_extension, - [sym_quoted_extension] = sym_quoted_extension, - [sym__item_extension] = sym__item_extension, - [sym_item_extension] = sym_item_extension, - [sym_quoted_item_extension] = sym_quoted_item_extension, - [sym__attribute] = sym__attribute, - [sym__constant] = sym__constant, - [sym__signed_constant] = sym__signed_constant, - [sym_number] = sym_number, - [sym_signed_number] = sym_signed_number, - [sym_character] = sym_character, - [sym_character_content] = sym_character_content, - [sym_string] = sym_string, - [sym_string_content] = sym_string_content, - [sym_quoted_string] = sym_quoted_string, - [sym_quoted_string_content] = sym_quoted_string_content, - [sym_escape_sequence] = sym_escape_sequence, - [sym_boolean] = sym_boolean, - [sym_unit] = sym_unit, - [sym_sign_operator] = sym_sign_operator, - [sym_infix_operator] = sym_infix_operator, - [sym__pow_operator] = sym__pow_operator, - [sym__mult_operator] = sym__mult_operator, - [sym__add_operator] = sym__add_operator, - [sym__and_operator] = sym__and_operator, - [sym__or_operator] = sym__or_operator, - [sym__assign_operator] = sym__assign_operator, - [sym_indexing_operator_path] = sym_indexing_operator_path, - [sym__value_name] = sym__value_name, - [sym__value_pattern] = sym__value_pattern, - [sym_parenthesized_operator] = sym_parenthesized_operator, - [sym_value_path] = sym_value_path, - [sym_module_path] = sym_module_path, - [sym_extended_module_path] = sym_extended_module_path, - [sym_module_type_path] = sym_module_type_path, - [sym_field_path] = sym_field_path, - [sym_constructor_path] = sym_constructor_path, - [sym_type_constructor_path] = sym_type_constructor_path, - [sym_class_path] = sym_class_path, - [sym_class_type_path] = sym_class_type_path, - [sym__label] = sym__label, - [sym_directive] = sym_directive, - [sym_type_variable] = sym_type_variable, - [sym_tag] = sym_tag, - [sym_attribute_id] = sym_attribute_id, - [aux_sym__structure_repeat1] = aux_sym__structure_repeat1, - [aux_sym__structure_repeat2] = aux_sym__structure_repeat2, - [aux_sym_expression_item_repeat1] = aux_sym_expression_item_repeat1, - [aux_sym__signature_repeat1] = aux_sym__signature_repeat1, - [aux_sym_value_definition_repeat1] = aux_sym_value_definition_repeat1, - [aux_sym_let_binding_repeat1] = aux_sym_let_binding_repeat1, - [aux_sym_external_repeat1] = aux_sym_external_repeat1, - [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, - [aux_sym_type_binding_repeat1] = aux_sym_type_binding_repeat1, - [aux_sym__type_params_repeat1] = aux_sym__type_params_repeat1, - [aux_sym_variant_declaration_repeat1] = aux_sym_variant_declaration_repeat1, - [aux_sym_constructor_declaration_repeat1] = aux_sym_constructor_declaration_repeat1, - [aux_sym__constructor_argument_repeat1] = aux_sym__constructor_argument_repeat1, - [aux_sym_record_declaration_repeat1] = aux_sym_record_declaration_repeat1, - [aux_sym_module_definition_repeat1] = aux_sym_module_definition_repeat1, - [aux_sym_module_binding_repeat1] = aux_sym_module_binding_repeat1, - [aux_sym_class_definition_repeat1] = aux_sym_class_definition_repeat1, - [aux_sym_class_type_definition_repeat1] = aux_sym_class_type_definition_repeat1, - [aux_sym_module_type_constraint_repeat1] = aux_sym_module_type_constraint_repeat1, - [aux_sym_instantiated_class_type_repeat1] = aux_sym_instantiated_class_type_repeat1, - [aux_sym_class_body_type_repeat1] = aux_sym_class_body_type_repeat1, - [aux_sym_instance_variable_specification_repeat1] = aux_sym_instance_variable_specification_repeat1, - [aux_sym_method_specification_repeat1] = aux_sym_method_specification_repeat1, - [aux_sym_class_application_repeat1] = aux_sym_class_application_repeat1, - [aux_sym__abstract_type_repeat1] = aux_sym__abstract_type_repeat1, - [aux_sym_polymorphic_variant_type_repeat1] = aux_sym_polymorphic_variant_type_repeat1, - [aux_sym_polymorphic_variant_type_repeat2] = aux_sym_polymorphic_variant_type_repeat2, - [aux_sym_tag_specification_repeat1] = aux_sym_tag_specification_repeat1, - [aux_sym_object_type_repeat1] = aux_sym_object_type_repeat1, - [aux_sym_list_expression_repeat1] = aux_sym_list_expression_repeat1, - [aux_sym_record_expression_repeat1] = aux_sym_record_expression_repeat1, - [aux_sym__match_cases_repeat1] = aux_sym__match_cases_repeat1, - [aux_sym_object_copy_expression_repeat1] = aux_sym_object_copy_expression_repeat1, - [aux_sym_object_expression_repeat1] = aux_sym_object_expression_repeat1, - [aux_sym_record_pattern_repeat1] = aux_sym_record_pattern_repeat1, - [aux_sym_record_binding_pattern_repeat1] = aux_sym_record_binding_pattern_repeat1, - [aux_sym_list_pattern_repeat1] = aux_sym_list_pattern_repeat1, - [aux_sym_list_binding_pattern_repeat1] = aux_sym_list_binding_pattern_repeat1, - [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, - [aux_sym_quoted_string_content_repeat1] = aux_sym_quoted_string_content_repeat1, - [aux_sym_attribute_id_repeat1] = aux_sym_attribute_id_repeat1, - [alias_sym_class_name] = alias_sym_class_name, - [alias_sym_class_type_name] = alias_sym_class_type_name, - [alias_sym_constructor_name] = alias_sym_constructor_name, - [alias_sym_field_name] = alias_sym_field_name, - [alias_sym_instance_variable_name] = alias_sym_instance_variable_name, - [alias_sym_label_name] = alias_sym_label_name, - [alias_sym_method_name] = alias_sym_method_name, - [alias_sym_module_name] = alias_sym_module_name, - [alias_sym_module_type_name] = alias_sym_module_type_name, - [alias_sym_type_constructor] = alias_sym_type_constructor, - [alias_sym_value_name] = alias_sym_value_name, - [alias_sym_value_pattern] = alias_sym_value_pattern, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym__identifier] = { - .visible = false, - .named = true, - }, - [sym_shebang] = { - .visible = true, - .named = true, - }, - [anon_sym_SEMI_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_let] = { - .visible = true, - .named = false, - }, - [anon_sym_rec] = { - .visible = true, - .named = false, - }, - [anon_sym_and] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_external] = { - .visible = true, - .named = false, - }, - [anon_sym_type] = { - .visible = true, - .named = false, - }, - [anon_sym_nonrec] = { - .visible = true, - .named = false, - }, - [anon_sym_private] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym__] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_of] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON2] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_mutable] = { - .visible = true, - .named = false, - }, - [anon_sym_constraint] = { - .visible = true, - .named = false, - }, - [anon_sym_exception] = { - .visible = true, - .named = false, - }, - [anon_sym_module] = { - .visible = true, - .named = false, - }, - [anon_sym_open] = { - .visible = true, - .named = false, - }, - [anon_sym_include] = { - .visible = true, - .named = false, - }, - [anon_sym_class] = { - .visible = true, - .named = false, - }, - [anon_sym_virtual] = { - .visible = true, - .named = false, - }, - [anon_sym_val] = { - .visible = true, - .named = false, - }, - [anon_sym_sig] = { - .visible = true, - .named = false, - }, - [anon_sym_end] = { - .visible = true, - .named = false, - }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, - [anon_sym_functor] = { - .visible = true, - .named = false, - }, - [anon_sym_struct] = { - .visible = true, - .named = false, - }, - [anon_sym_object] = { - .visible = true, - .named = false, - }, - [anon_sym_inherit] = { - .visible = true, - .named = false, - }, - [anon_sym_method] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_fun] = { - .visible = true, - .named = false, - }, - [anon_sym_as] = { - .visible = true, - .named = false, - }, - [anon_sym_initializer] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_then] = { - .visible = true, - .named = false, - }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_do] = { - .visible = true, - .named = false, - }, - [anon_sym_done] = { - .visible = true, - .named = false, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_to] = { - .visible = true, - .named = false, - }, - [anon_sym_downto] = { - .visible = true, - .named = false, - }, - [anon_sym_match] = { - .visible = true, - .named = false, - }, - [anon_sym_when] = { - .visible = true, - .named = false, - }, - [anon_sym_function] = { - .visible = true, - .named = false, - }, - [anon_sym_try] = { - .visible = true, - .named = false, - }, - [anon_sym_assert] = { - .visible = true, - .named = false, - }, - [anon_sym_lazy] = { - .visible = true, - .named = false, - }, - [anon_sym_new] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_begin] = { - .visible = true, - .named = false, - }, - [sym_ocamlyacc_value] = { - .visible = true, - .named = true, - }, - [anon_sym_LBRACK_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_quoted_extension_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACK_PERCENT_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_PERCENT_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_number_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_character_content_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_] = { - .visible = true, - .named = false, - }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, - [anon_sym_TAB] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT2] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT2] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT_AT2] = { - .visible = true, - .named = false, - }, - [aux_sym_string_content_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_content_token2] = { - .visible = true, - .named = true, - }, - [aux_sym_string_content_token3] = { - .visible = true, - .named = true, - }, - [aux_sym_quoted_string_content_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token4] = { - .visible = false, - .named = false, - }, - [sym_conversion_specification] = { - .visible = true, - .named = true, - }, - [sym_pretty_printing_indication] = { - .visible = true, - .named = true, - }, - [sym_prefix_operator] = { - .visible = true, - .named = true, - }, - [anon_sym_PLUS_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DOT] = { - .visible = true, - .named = false, - }, - [sym_hash_operator] = { - .visible = true, - .named = true, - }, - [aux_sym__pow_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_lsl] = { - .visible = true, - .named = false, - }, - [anon_sym_lsr] = { - .visible = true, - .named = false, - }, - [anon_sym_asr] = { - .visible = true, - .named = false, - }, - [aux_sym__mult_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_mod] = { - .visible = true, - .named = false, - }, - [anon_sym_land] = { - .visible = true, - .named = false, - }, - [anon_sym_lor] = { - .visible = true, - .named = false, - }, - [anon_sym_lxor] = { - .visible = true, - .named = false, - }, - [aux_sym__add_operator_token1] = { - .visible = false, - .named = false, - }, - [sym__concat_operator] = { - .visible = false, - .named = true, - }, - [sym__rel_operator] = { - .visible = false, - .named = true, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_or] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [sym_indexing_operator] = { - .visible = true, - .named = true, - }, - [sym_let_operator] = { - .visible = true, - .named = true, - }, - [sym_and_operator] = { - .visible = true, - .named = true, - }, - [sym_match_operator] = { - .visible = true, - .named = true, - }, - [sym__capitalized_identifier] = { - .visible = false, - .named = true, - }, - [aux_sym_directive_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_variable_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_tag_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_id_token1] = { - .visible = false, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__left_quoted_string_delimiter] = { - .visible = false, - .named = true, - }, - [sym__right_quoted_string_delimiter] = { - .visible = false, - .named = true, - }, - [sym_line_number_directive] = { - .visible = true, - .named = true, - }, - [sym__null] = { - .visible = false, - .named = true, - }, - [sym_compilation_unit] = { - .visible = true, - .named = true, - }, - [sym__structure] = { - .visible = false, - .named = true, - }, - [sym_expression_item] = { - .visible = true, - .named = true, - }, - [sym__signature] = { - .visible = false, - .named = true, - }, - [sym_toplevel_directive] = { - .visible = true, - .named = true, - }, - [sym__structure_item] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__structure_item_ext] = { - .visible = false, - .named = true, - }, - [sym_value_definition] = { - .visible = true, - .named = true, - }, - [sym_let_binding] = { - .visible = true, - .named = true, - }, - [sym__parameter] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parameter] = { - .visible = true, - .named = true, - }, - [sym_external] = { - .visible = true, - .named = true, - }, - [sym_type_definition] = { - .visible = true, - .named = true, - }, - [sym_type_binding] = { - .visible = true, - .named = true, - }, - [sym__type_params] = { - .visible = false, - .named = true, - }, - [sym__type_param] = { - .visible = false, - .named = true, - }, - [sym__type_equation] = { - .visible = false, - .named = true, - }, - [sym_variant_declaration] = { - .visible = true, - .named = true, - }, - [sym_constructor_declaration] = { - .visible = true, - .named = true, - }, - [sym__constructor_argument] = { - .visible = false, - .named = true, - }, - [sym_record_declaration] = { - .visible = true, - .named = true, - }, - [sym_field_declaration] = { - .visible = true, - .named = true, - }, - [sym_type_constraint] = { - .visible = true, - .named = true, - }, - [sym_exception_definition] = { - .visible = true, - .named = true, - }, - [sym_module_definition] = { - .visible = true, - .named = true, - }, - [sym_module_binding] = { - .visible = true, - .named = true, - }, - [sym_module_parameter] = { - .visible = true, - .named = true, - }, - [sym_module_type_definition] = { - .visible = true, - .named = true, - }, - [sym_open_module] = { - .visible = true, - .named = true, - }, - [sym_include_module] = { - .visible = true, - .named = true, - }, - [sym_class_definition] = { - .visible = true, - .named = true, - }, - [sym_class_binding] = { - .visible = true, - .named = true, - }, - [sym_class_type_definition] = { - .visible = true, - .named = true, - }, - [sym_class_type_binding] = { - .visible = true, - .named = true, - }, - [sym__signature_item] = { - .visible = false, - .named = true, - }, - [sym__signature_item_ext] = { - .visible = false, - .named = true, - }, - [sym_value_specification] = { - .visible = true, - .named = true, - }, - [sym_include_module_type] = { - .visible = true, - .named = true, - }, - [sym__module_typed] = { - .visible = false, - .named = true, - }, - [sym__module_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_signature] = { - .visible = true, - .named = true, - }, - [sym_module_type_constraint] = { - .visible = true, - .named = true, - }, - [sym_constrain_type] = { - .visible = true, - .named = true, - }, - [sym_constrain_module] = { - .visible = true, - .named = true, - }, - [sym_constrain_module_type] = { - .visible = true, - .named = true, - }, - [sym_module_type_of] = { - .visible = true, - .named = true, - }, - [sym_functor_type] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_module_type] = { - .visible = true, - .named = true, - }, - [sym__simple_module_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_module_expression_ext] = { - .visible = false, - .named = true, - }, - [sym__module_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_structure] = { - .visible = true, - .named = true, - }, - [sym_functor] = { - .visible = true, - .named = true, - }, - [sym_module_application] = { - .visible = true, - .named = true, - }, - [sym_typed_module_expression] = { - .visible = true, - .named = true, - }, - [sym_packed_module] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_module_expression] = { - .visible = true, - .named = true, - }, - [sym__class_typed] = { - .visible = false, - .named = true, - }, - [sym__simple_class_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_class_type_ext] = { - .visible = false, - .named = true, - }, - [sym__class_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_type_ext] = { - .visible = false, - .named = true, - }, - [sym_instantiated_class_type] = { - .visible = true, - .named = true, - }, - [sym_class_body_type] = { - .visible = true, - .named = true, - }, - [sym__class_field_specification] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_field_specification_ext] = { - .visible = false, - .named = true, - }, - [sym_inheritance_specification] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_specification] = { - .visible = true, - .named = true, - }, - [sym_method_specification] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_constraint] = { - .visible = true, - .named = true, - }, - [sym_let_open_class_type] = { - .visible = true, - .named = true, - }, - [sym_class_function_type] = { - .visible = true, - .named = true, - }, - [sym__simple_class_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_expression_ext] = { - .visible = false, - .named = true, - }, - [sym_instantiated_class] = { - .visible = true, - .named = true, - }, - [sym_typed_class_expression] = { - .visible = true, - .named = true, - }, - [sym_class_function] = { - .visible = true, - .named = true, - }, - [sym_class_application] = { - .visible = true, - .named = true, - }, - [sym_let_class_expression] = { - .visible = true, - .named = true, - }, - [sym__class_field] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_field_ext] = { - .visible = false, - .named = true, - }, - [sym_inheritance_definition] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_definition] = { - .visible = true, - .named = true, - }, - [sym_method_definition] = { - .visible = true, - .named = true, - }, - [sym_class_initializer] = { - .visible = true, - .named = true, - }, - [sym_let_open_class_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_class_expression] = { - .visible = true, - .named = true, - }, - [sym__typed] = { - .visible = false, - .named = true, - }, - [sym__simple_typed] = { - .visible = false, - .named = true, - }, - [sym__polymorphic_typed] = { - .visible = false, - .named = true, - }, - [sym__polymorphic_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_polymorphic_type] = { - .visible = true, - .named = true, - }, - [sym__abstract_type] = { - .visible = false, - .named = true, - }, - [sym__parenthesized_abstract_type] = { - .visible = true, - .named = true, - }, - [sym__simple_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__tuple_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__tuple_type_ext] = { - .visible = false, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__type_ext] = { - .visible = false, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym_typed_label] = { - .visible = true, - .named = true, - }, - [sym_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_constructed_type] = { - .visible = true, - .named = true, - }, - [sym_aliased_type] = { - .visible = true, - .named = true, - }, - [sym_polymorphic_variant_type] = { - .visible = true, - .named = true, - }, - [sym__tag_spec] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_tag_specification] = { - .visible = true, - .named = true, - }, - [sym_package_type] = { - .visible = true, - .named = true, - }, - [sym_object_type] = { - .visible = true, - .named = true, - }, - [sym_method_type] = { - .visible = true, - .named = true, - }, - [sym_hash_type] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_type] = { - .visible = true, - .named = true, - }, - [sym__simple_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__sequence_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__sequence_expression_ext] = { - .visible = false, - .named = true, - }, - [sym_typed_expression] = { - .visible = true, - .named = true, - }, - [sym_product_expression] = { - .visible = true, - .named = true, - }, - [sym_cons_expression] = { - .visible = true, - .named = true, - }, - [sym_list_expression] = { - .visible = true, - .named = true, - }, - [sym_array_expression] = { - .visible = true, - .named = true, - }, - [sym_record_expression] = { - .visible = true, - .named = true, - }, - [sym_field_expression] = { - .visible = true, - .named = true, - }, - [sym_application_expression] = { - .visible = true, - .named = true, - }, - [sym__argument] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_labeled_argument] = { - .visible = true, - .named = true, - }, - [sym_prefix_expression] = { - .visible = true, - .named = true, - }, - [sym_sign_expression] = { - .visible = true, - .named = true, - }, - [sym_hash_expression] = { - .visible = true, - .named = true, - }, - [sym_infix_expression] = { - .visible = true, - .named = true, - }, - [sym_field_get_expression] = { - .visible = true, - .named = true, - }, - [sym_array_get_expression] = { - .visible = true, - .named = true, - }, - [sym_string_get_expression] = { - .visible = true, - .named = true, - }, - [sym_bigarray_get_expression] = { - .visible = true, - .named = true, - }, - [sym_set_expression] = { - .visible = true, - .named = true, - }, - [sym_if_expression] = { - .visible = true, - .named = true, - }, - [sym_then_clause] = { - .visible = true, - .named = true, - }, - [sym_else_clause] = { - .visible = true, - .named = true, - }, - [sym_while_expression] = { - .visible = true, - .named = true, - }, - [sym_do_clause] = { - .visible = true, - .named = true, - }, - [sym_for_expression] = { - .visible = true, - .named = true, - }, - [sym_sequence_expression] = { - .visible = true, - .named = true, - }, - [sym_match_expression] = { - .visible = true, - .named = true, - }, - [sym__match_cases] = { - .visible = false, - .named = true, - }, - [sym_match_case] = { - .visible = true, - .named = true, - }, - [sym_guard] = { - .visible = true, - .named = true, - }, - [sym_refutation_case] = { - .visible = true, - .named = true, - }, - [sym_function_expression] = { - .visible = true, - .named = true, - }, - [sym_fun_expression] = { - .visible = true, - .named = true, - }, - [sym_try_expression] = { - .visible = true, - .named = true, - }, - [sym_let_expression] = { - .visible = true, - .named = true, - }, - [sym_coercion_expression] = { - .visible = true, - .named = true, - }, - [sym_assert_expression] = { - .visible = true, - .named = true, - }, - [sym_lazy_expression] = { - .visible = true, - .named = true, - }, - [sym_let_module_expression] = { - .visible = true, - .named = true, - }, - [sym_let_open_expression] = { - .visible = true, - .named = true, - }, - [sym_local_open_expression] = { - .visible = true, - .named = true, - }, - [sym_package_expression] = { - .visible = true, - .named = true, - }, - [sym_let_exception_expression] = { - .visible = true, - .named = true, - }, - [sym_new_expression] = { - .visible = true, - .named = true, - }, - [sym_object_copy_expression] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_expression] = { - .visible = true, - .named = true, - }, - [sym_method_invocation] = { - .visible = true, - .named = true, - }, - [sym_object_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym__simple_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_pattern_ext] = { - .visible = false, - .named = true, - }, - [sym__pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__pattern_ext] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__binding_pattern_ext] = { - .visible = false, - .named = true, - }, - [sym_alias_pattern] = { - .visible = true, - .named = true, - }, - [sym_alias_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_typed_pattern] = { - .visible = true, - .named = true, - }, - [sym_typed_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_or_pattern] = { - .visible = true, - .named = true, - }, - [sym_or_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_constructor_pattern] = { - .visible = true, - .named = true, - }, - [sym_constructor_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_tag_pattern] = { - .visible = true, - .named = true, - }, - [sym_tag_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_polymorphic_variant_pattern] = { - .visible = true, - .named = true, - }, - [sym_tuple_pattern] = { - .visible = true, - .named = true, - }, - [sym_tuple_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_record_pattern] = { - .visible = true, - .named = true, - }, - [sym_field_pattern] = { - .visible = true, - .named = true, - }, - [sym_record_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_field_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_list_pattern] = { - .visible = true, - .named = true, - }, - [sym_list_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_cons_pattern] = { - .visible = true, - .named = true, - }, - [sym_cons_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_array_pattern] = { - .visible = true, - .named = true, - }, - [sym_array_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_range_pattern] = { - .visible = true, - .named = true, - }, - [sym_lazy_pattern] = { - .visible = true, - .named = true, - }, - [sym_lazy_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_local_open_pattern] = { - .visible = true, - .named = true, - }, - [sym_local_open_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_package_pattern] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_pattern] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_exception_pattern] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym_item_attribute] = { - .visible = true, - .named = true, - }, - [sym_floating_attribute] = { - .visible = true, - .named = true, - }, - [sym_attribute_payload] = { - .visible = true, - .named = true, - }, - [sym__extension] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_extension] = { - .visible = true, - .named = true, - }, - [sym_quoted_extension] = { - .visible = true, - .named = true, - }, - [sym__item_extension] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_item_extension] = { - .visible = true, - .named = true, - }, - [sym_quoted_item_extension] = { - .visible = true, - .named = true, - }, - [sym__attribute] = { - .visible = false, - .named = true, - }, - [sym__constant] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__signed_constant] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_number] = { - .visible = true, - .named = true, - }, - [sym_signed_number] = { - .visible = true, - .named = true, - }, - [sym_character] = { - .visible = true, - .named = true, - }, - [sym_character_content] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym_string_content] = { - .visible = true, - .named = true, - }, - [sym_quoted_string] = { - .visible = true, - .named = true, - }, - [sym_quoted_string_content] = { - .visible = true, - .named = true, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, - [sym_unit] = { - .visible = true, - .named = true, - }, - [sym_sign_operator] = { - .visible = true, - .named = true, - }, - [sym_infix_operator] = { - .visible = true, - .named = true, - }, - [sym__pow_operator] = { - .visible = false, - .named = true, - }, - [sym__mult_operator] = { - .visible = false, - .named = true, - }, - [sym__add_operator] = { - .visible = false, - .named = true, - }, - [sym__and_operator] = { - .visible = false, - .named = true, - }, - [sym__or_operator] = { - .visible = false, - .named = true, - }, - [sym__assign_operator] = { - .visible = false, - .named = true, - }, - [sym_indexing_operator_path] = { - .visible = true, - .named = true, - }, - [sym__value_name] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__value_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parenthesized_operator] = { - .visible = true, - .named = true, - }, - [sym_value_path] = { - .visible = true, - .named = true, - }, - [sym_module_path] = { - .visible = true, - .named = true, - }, - [sym_extended_module_path] = { - .visible = true, - .named = true, - }, - [sym_module_type_path] = { - .visible = true, - .named = true, - }, - [sym_field_path] = { - .visible = true, - .named = true, - }, - [sym_constructor_path] = { - .visible = true, - .named = true, - }, - [sym_type_constructor_path] = { - .visible = true, - .named = true, - }, - [sym_class_path] = { - .visible = true, - .named = true, - }, - [sym_class_type_path] = { - .visible = true, - .named = true, - }, - [sym__label] = { - .visible = false, - .named = true, - }, - [sym_directive] = { - .visible = true, - .named = true, - }, - [sym_type_variable] = { - .visible = true, - .named = true, - }, - [sym_tag] = { - .visible = true, - .named = true, - }, - [sym_attribute_id] = { - .visible = true, - .named = true, - }, - [aux_sym__structure_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__structure_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_expression_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__signature_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_value_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_let_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_external_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__type_params_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_variant_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constructor_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constructor_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_type_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_type_constraint_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_instantiated_class_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_body_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_instance_variable_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_method_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_application_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__abstract_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_polymorphic_variant_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_polymorphic_variant_type_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_tag_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__match_cases_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_copy_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_binding_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_binding_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_quoted_string_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_id_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_class_name] = { - .visible = true, - .named = true, - }, - [alias_sym_class_type_name] = { - .visible = true, - .named = true, - }, - [alias_sym_constructor_name] = { - .visible = true, - .named = true, - }, - [alias_sym_field_name] = { - .visible = true, - .named = true, - }, - [alias_sym_instance_variable_name] = { - .visible = true, - .named = true, - }, - [alias_sym_label_name] = { - .visible = true, - .named = true, - }, - [alias_sym_method_name] = { - .visible = true, - .named = true, - }, - [alias_sym_module_name] = { - .visible = true, - .named = true, - }, - [alias_sym_module_type_name] = { - .visible = true, - .named = true, - }, - [alias_sym_type_constructor] = { - .visible = true, - .named = true, - }, - [alias_sym_value_name] = { - .visible = true, - .named = true, - }, - [alias_sym_value_pattern] = { - .visible = true, - .named = true, - }, -}; - -enum { - field_argument = 1, - field_body = 2, - field_class = 3, - field_condition = 4, - field_from = 5, - field_function = 6, - field_functor = 7, - field_left = 8, - field_name = 9, - field_pattern = 10, - field_right = 11, - field_to = 12, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_argument] = "argument", - [field_body] = "body", - [field_class] = "class", - [field_condition] = "condition", - [field_from] = "from", - [field_function] = "function", - [field_functor] = "functor", - [field_left] = "left", - [field_name] = "name", - [field_pattern] = "pattern", - [field_right] = "right", - [field_to] = "to", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [3] = {.index = 0, .length = 1}, - [7] = {.index = 0, .length = 1}, - [9] = {.index = 0, .length = 1}, - [11] = {.index = 1, .length = 1}, - [13] = {.index = 2, .length = 1}, - [14] = {.index = 3, .length = 2}, - [15] = {.index = 1, .length = 1}, - [17] = {.index = 5, .length = 1}, - [22] = {.index = 0, .length = 1}, - [25] = {.index = 6, .length = 1}, - [26] = {.index = 7, .length = 1}, - [27] = {.index = 8, .length = 2}, - [28] = {.index = 10, .length = 1}, - [30] = {.index = 11, .length = 2}, - [33] = {.index = 11, .length = 2}, - [35] = {.index = 13, .length = 1}, - [36] = {.index = 11, .length = 2}, - [37] = {.index = 14, .length = 1}, - [39] = {.index = 11, .length = 2}, - [40] = {.index = 15, .length = 1}, - [43] = {.index = 15, .length = 1}, - [44] = {.index = 1, .length = 1}, - [45] = {.index = 1, .length = 1}, - [46] = {.index = 16, .length = 1}, - [47] = {.index = 17, .length = 1}, - [49] = {.index = 18, .length = 2}, - [50] = {.index = 20, .length = 2}, - [51] = {.index = 18, .length = 2}, - [52] = {.index = 17, .length = 1}, - [54] = {.index = 22, .length = 2}, - [55] = {.index = 24, .length = 2}, - [56] = {.index = 24, .length = 2}, - [57] = {.index = 22, .length = 2}, - [58] = {.index = 26, .length = 2}, - [59] = {.index = 22, .length = 2}, - [60] = {.index = 28, .length = 1}, - [61] = {.index = 11, .length = 2}, - [62] = {.index = 13, .length = 1}, - [63] = {.index = 24, .length = 2}, - [64] = {.index = 29, .length = 2}, - [65] = {.index = 22, .length = 2}, - [66] = {.index = 31, .length = 1}, - [67] = {.index = 32, .length = 2}, - [71] = {.index = 2, .length = 1}, - [72] = {.index = 2, .length = 1}, - [73] = {.index = 34, .length = 1}, - [75] = {.index = 35, .length = 2}, - [77] = {.index = 37, .length = 2}, - [78] = {.index = 39, .length = 2}, - [79] = {.index = 39, .length = 2}, - [80] = {.index = 41, .length = 2}, - [81] = {.index = 1, .length = 1}, - [82] = {.index = 37, .length = 2}, - [83] = {.index = 24, .length = 2}, - [84] = {.index = 43, .length = 1}, - [85] = {.index = 39, .length = 2}, - [86] = {.index = 31, .length = 1}, - [88] = {.index = 37, .length = 2}, - [89] = {.index = 44, .length = 2}, - [90] = {.index = 13, .length = 1}, - [91] = {.index = 24, .length = 2}, - [92] = {.index = 13, .length = 1}, - [93] = {.index = 24, .length = 2}, - [94] = {.index = 46, .length = 1}, - [97] = {.index = 47, .length = 2}, - [98] = {.index = 41, .length = 2}, - [99] = {.index = 49, .length = 1}, - [100] = {.index = 47, .length = 2}, - [104] = {.index = 50, .length = 1}, - [105] = {.index = 51, .length = 2}, - [106] = {.index = 26, .length = 2}, - [107] = {.index = 39, .length = 2}, - [108] = {.index = 26, .length = 2}, - [109] = {.index = 39, .length = 2}, - [110] = {.index = 53, .length = 1}, - [112] = {.index = 41, .length = 2}, - [113] = {.index = 54, .length = 2}, - [114] = {.index = 56, .length = 2}, - [116] = {.index = 58, .length = 2}, - [117] = {.index = 60, .length = 2}, - [118] = {.index = 41, .length = 2}, - [119] = {.index = 47, .length = 2}, - [120] = {.index = 60, .length = 2}, - [121] = {.index = 41, .length = 2}, - [122] = {.index = 47, .length = 2}, - [123] = {.index = 62, .length = 3}, - [124] = {.index = 56, .length = 2}, - [125] = {.index = 65, .length = 2}, - [126] = {.index = 67, .length = 2}, - [127] = {.index = 69, .length = 2}, - [128] = {.index = 71, .length = 2}, - [129] = {.index = 73, .length = 2}, - [130] = {.index = 54, .length = 2}, - [131] = {.index = 75, .length = 2}, - [132] = {.index = 73, .length = 2}, - [133] = {.index = 54, .length = 2}, - [134] = {.index = 77, .length = 3}, - [135] = {.index = 69, .length = 2}, - [136] = {.index = 80, .length = 2}, - [137] = {.index = 82, .length = 2}, - [138] = {.index = 84, .length = 2}, - [139] = {.index = 65, .length = 2}, - [140] = {.index = 65, .length = 2}, - [141] = {.index = 86, .length = 2}, - [142] = {.index = 88, .length = 2}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_name, 0}, - [1] = - {field_name, 1}, - [2] = - {field_name, 2}, - [3] = - {field_argument, 1}, - {field_functor, 0}, - [5] = - {field_pattern, 0}, - [6] = - {field_right, 1}, - [7] = - {field_argument, 0}, - [8] = - {field_argument, 1, .inherited = true}, - {field_function, 0}, - [10] = - {field_left, 0}, - [11] = - {field_body, 2}, - {field_name, 0}, - [13] = - {field_name, 3}, - [14] = - {field_functor, 0}, - [15] = - {field_pattern, 1}, - [16] = - {field_condition, 1}, - [17] = - {field_body, 2}, - [18] = - {field_left, 0}, - {field_right, 2}, - [20] = - {field_argument, 0, .inherited = true}, - {field_argument, 1, .inherited = true}, - [22] = - {field_body, 3}, - {field_name, 0}, - [24] = - {field_body, 3}, - {field_name, 1}, - [26] = - {field_body, 4}, - {field_name, 2}, - [28] = - {field_body, 3}, - [29] = - {field_argument, 1, .inherited = true}, - {field_class, 0}, - [31] = - {field_pattern, 2}, - [32] = - {field_body, 2}, - {field_pattern, 0}, - [34] = - {field_condition, 2}, - [35] = - {field_left, 0}, - {field_right, 3}, - [37] = - {field_body, 4}, - {field_name, 0}, - [39] = - {field_body, 4}, - {field_name, 1}, - [41] = - {field_body, 5}, - {field_name, 3}, - [43] = - {field_name, 4}, - [44] = - {field_body, 3}, - {field_pattern, 0}, - [46] = - {field_body, 4}, - [47] = - {field_body, 5}, - {field_name, 1}, - [49] = - {field_name, 5}, - [50] = - {field_pattern, 3}, - [51] = - {field_body, 4}, - {field_pattern, 0}, - [53] = - {field_body, 5}, - [54] = - {field_body, 6}, - {field_name, 3}, - [56] = - {field_body, 6}, - {field_name, 4}, - [58] = - {field_body, 5}, - {field_pattern, 0}, - [60] = - {field_body, 5}, - {field_name, 2}, - [62] = - {field_from, 3}, - {field_name, 1}, - {field_to, 5}, - [65] = - {field_body, 7}, - {field_name, 3}, - [67] = - {field_body, 7}, - {field_name, 4}, - [69] = - {field_body, 7}, - {field_name, 5}, - [71] = - {field_body, 6}, - {field_pattern, 0}, - [73] = - {field_body, 6}, - {field_name, 2}, - [75] = - {field_body, 6}, - {field_name, 1}, - [77] = - {field_from, 4}, - {field_name, 2}, - {field_to, 6}, - [80] = - {field_body, 8}, - {field_name, 4}, - [82] = - {field_body, 8}, - {field_name, 5}, - [84] = - {field_body, 7}, - {field_name, 2}, - [86] = - {field_body, 9}, - {field_name, 5}, - [88] = - {field_body, 8}, - {field_name, 3}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [1] = { - [0] = alias_sym_value_name, - }, - [2] = { - [0] = sym_type_variable, - }, - [3] = { - [0] = alias_sym_type_constructor, - }, - [4] = { - [0] = alias_sym_type_constructor, - }, - [5] = { - [0] = alias_sym_module_name, - }, - [6] = { - [0] = alias_sym_constructor_name, - }, - [7] = { - [0] = alias_sym_module_name, - }, - [8] = { - [0] = alias_sym_module_type_name, - }, - [9] = { - [0] = alias_sym_class_name, - }, - [10] = { - [1] = sym_type_variable, - }, - [11] = { - [1] = alias_sym_type_constructor, - }, - [12] = { - [0] = alias_sym_constructor_name, - [1] = alias_sym_constructor_name, - }, - [13] = { - [2] = alias_sym_module_type_name, - }, - [15] = { - [1] = alias_sym_class_name, - }, - [16] = { - [0] = alias_sym_value_pattern, - }, - [18] = { - [0] = sym_record_pattern, - }, - [19] = { - [0] = sym_list_pattern, - }, - [20] = { - [0] = sym_array_pattern, - }, - [21] = { - [0] = alias_sym_field_name, - }, - [23] = { - [0] = alias_sym_class_name, - }, - [24] = { - [0] = alias_sym_instance_variable_name, - }, - [29] = { - [2] = sym_type_variable, - }, - [30] = { - [0] = alias_sym_type_constructor, - }, - [31] = { - [2] = alias_sym_type_constructor, - }, - [32] = { - [2] = alias_sym_module_name, - }, - [34] = { - [1] = alias_sym_constructor_name, - }, - [35] = { - [3] = alias_sym_module_type_name, - }, - [36] = { - [0] = alias_sym_module_name, - }, - [38] = { - [2] = alias_sym_module_type_name, - }, - [39] = { - [0] = alias_sym_class_name, - }, - [40] = { - [1] = alias_sym_value_pattern, - }, - [41] = { - [1] = alias_sym_label_name, - }, - [42] = { - [0] = alias_sym_class_type_name, - }, - [44] = { - [1] = alias_sym_instance_variable_name, - }, - [45] = { - [1] = alias_sym_method_name, - }, - [47] = { - [0] = alias_sym_instance_variable_name, - }, - [48] = { - [2] = alias_sym_method_name, - }, - [51] = { - [1] = sym_infix_operator, - }, - [53] = { - [2] = alias_sym_constructor_name, - }, - [54] = { - [0] = alias_sym_type_constructor, - }, - [55] = { - [1] = alias_sym_type_constructor, - }, - [58] = { - [2] = alias_sym_module_type_name, - }, - [59] = { - [0] = alias_sym_module_name, - }, - [61] = { - [0] = alias_sym_class_type_name, - }, - [62] = { - [3] = alias_sym_class_name, - }, - [63] = { - [1] = alias_sym_class_name, - }, - [65] = { - [0] = alias_sym_class_name, - }, - [68] = { - [0] = alias_sym_method_name, - }, - [69] = { - [0] = alias_sym_label_name, - }, - [70] = { - [2] = alias_sym_field_name, - }, - [71] = { - [2] = alias_sym_instance_variable_name, - }, - [72] = { - [2] = alias_sym_method_name, - }, - [74] = { - [2] = alias_sym_class_name, - }, - [76] = { - [0] = sym__parenthesized_abstract_type, - }, - [77] = { - [0] = alias_sym_type_constructor, - }, - [78] = { - [1] = alias_sym_type_constructor, - }, - [80] = { - [3] = alias_sym_module_type_name, - }, - [81] = { - [1] = alias_sym_module_name, - }, - [82] = { - [0] = alias_sym_module_name, - }, - [83] = { - [1] = alias_sym_class_type_name, - }, - [84] = { - [4] = alias_sym_class_name, - }, - [85] = { - [1] = alias_sym_class_name, - }, - [86] = { - [2] = alias_sym_value_pattern, - }, - [87] = { - [2] = alias_sym_class_type_name, - }, - [88] = { - [0] = alias_sym_class_name, - }, - [90] = { - [3] = alias_sym_instance_variable_name, - }, - [91] = { - [1] = alias_sym_instance_variable_name, - }, - [92] = { - [3] = alias_sym_method_name, - }, - [93] = { - [1] = alias_sym_method_name, - }, - [95] = { - [3] = alias_sym_constructor_name, - }, - [96] = { - [1] = alias_sym_field_name, - }, - [97] = { - [1] = alias_sym_type_constructor, - }, - [98] = { - [3] = alias_sym_class_name, - }, - [99] = { - [5] = alias_sym_class_name, - }, - [100] = { - [1] = alias_sym_class_name, - }, - [101] = { - [3] = alias_sym_module_name, - }, - [102] = { - [1] = alias_sym_instance_variable_name, - }, - [103] = { - [1] = alias_sym_method_name, - }, - [106] = { - [2] = alias_sym_instance_variable_name, - }, - [107] = { - [1] = alias_sym_instance_variable_name, - }, - [108] = { - [2] = alias_sym_method_name, - }, - [109] = { - [1] = alias_sym_method_name, - }, - [111] = { - [2] = alias_sym_label_name, - }, - [112] = { - [3] = alias_sym_class_type_name, - }, - [113] = { - [3] = alias_sym_class_name, - }, - [114] = { - [4] = alias_sym_class_name, - }, - [115] = { - [2] = alias_sym_instance_variable_name, - }, - [117] = { - [2] = alias_sym_instance_variable_name, - }, - [118] = { - [3] = alias_sym_instance_variable_name, - }, - [119] = { - [1] = alias_sym_instance_variable_name, - }, - [120] = { - [2] = alias_sym_method_name, - }, - [121] = { - [3] = alias_sym_method_name, - }, - [122] = { - [1] = alias_sym_method_name, - }, - [124] = { - [4] = alias_sym_class_type_name, - }, - [125] = { - [3] = alias_sym_class_name, - }, - [126] = { - [4] = alias_sym_class_name, - }, - [127] = { - [5] = alias_sym_class_name, - }, - [129] = { - [2] = alias_sym_instance_variable_name, - }, - [130] = { - [3] = alias_sym_instance_variable_name, - }, - [131] = { - [1] = alias_sym_instance_variable_name, - }, - [132] = { - [2] = alias_sym_method_name, - }, - [133] = { - [3] = alias_sym_method_name, - }, - [135] = { - [5] = alias_sym_class_type_name, - }, - [136] = { - [4] = alias_sym_class_name, - }, - [137] = { - [5] = alias_sym_class_name, - }, - [138] = { - [2] = alias_sym_instance_variable_name, - }, - [139] = { - [3] = alias_sym_instance_variable_name, - }, - [140] = { - [3] = alias_sym_method_name, - }, - [141] = { - [5] = alias_sym_class_name, - }, - [142] = { - [3] = alias_sym_instance_variable_name, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym__abstract_type, 2, - sym__abstract_type, - sym__parenthesized_abstract_type, - sym_record_binding_pattern, 2, - sym_record_binding_pattern, - sym_record_pattern, - sym_list_binding_pattern, 2, - sym_list_binding_pattern, - sym_list_pattern, - sym_array_binding_pattern, 2, - sym_array_binding_pattern, - sym_array_pattern, - sym__pow_operator, 2, - sym__pow_operator, - sym_infix_operator, - sym__mult_operator, 2, - sym__mult_operator, - sym_infix_operator, - sym__add_operator, 2, - sym__add_operator, - sym_infix_operator, - sym__and_operator, 2, - sym__and_operator, - sym_infix_operator, - sym__or_operator, 2, - sym__or_operator, - sym_infix_operator, - sym__assign_operator, 2, - sym__assign_operator, - sym_infix_operator, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 2, - [5] = 5, - [6] = 6, - [7] = 6, - [8] = 6, - [9] = 6, - [10] = 6, - [11] = 6, - [12] = 6, - [13] = 6, - [14] = 6, - [15] = 6, - [16] = 6, - [17] = 6, - [18] = 18, - [19] = 6, - [20] = 6, - [21] = 6, - [22] = 6, - [23] = 18, - [24] = 6, - [25] = 25, - [26] = 6, - [27] = 18, - [28] = 6, - [29] = 29, - [30] = 6, - [31] = 6, - [32] = 6, - [33] = 18, - [34] = 6, - [35] = 6, - [36] = 6, - [37] = 6, - [38] = 6, - [39] = 2, - [40] = 2, - [41] = 41, - [42] = 41, - [43] = 2, - [44] = 44, - [45] = 2, - [46] = 46, - [47] = 47, - [48] = 48, - [49] = 49, - [50] = 50, - [51] = 50, - [52] = 50, - [53] = 50, - [54] = 50, - [55] = 50, - [56] = 56, - [57] = 56, - [58] = 50, - [59] = 56, - [60] = 50, - [61] = 56, - [62] = 50, - [63] = 56, - [64] = 56, - [65] = 50, - [66] = 56, - [67] = 56, - [68] = 50, - [69] = 56, - [70] = 56, - [71] = 56, - [72] = 56, - [73] = 50, - [74] = 50, - [75] = 56, - [76] = 56, - [77] = 56, - [78] = 50, - [79] = 50, - [80] = 2, - [81] = 2, - [82] = 2, - [83] = 2, - [84] = 2, - [85] = 2, - [86] = 86, - [87] = 87, - [88] = 88, - [89] = 89, - [90] = 90, - [91] = 91, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 95, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 2, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 96, - [104] = 98, - [105] = 101, - [106] = 91, - [107] = 93, - [108] = 97, - [109] = 87, - [110] = 86, - [111] = 94, - [112] = 88, - [113] = 100, - [114] = 95, - [115] = 2, - [116] = 92, - [117] = 90, - [118] = 89, - [119] = 102, - [120] = 102, - [121] = 102, - [122] = 98, - [123] = 92, - [124] = 102, - [125] = 96, - [126] = 94, - [127] = 2, - [128] = 88, - [129] = 100, - [130] = 90, - [131] = 97, - [132] = 91, - [133] = 86, - [134] = 93, - [135] = 95, - [136] = 87, - [137] = 89, - [138] = 101, - [139] = 102, - [140] = 140, - [141] = 140, - [142] = 140, - [143] = 143, - [144] = 144, - [145] = 2, - [146] = 146, - [147] = 144, - [148] = 146, - [149] = 140, - [150] = 143, - [151] = 91, - [152] = 87, - [153] = 96, - [154] = 90, - [155] = 97, - [156] = 93, - [157] = 89, - [158] = 143, - [159] = 97, - [160] = 89, - [161] = 102, - [162] = 2, - [163] = 96, - [164] = 98, - [165] = 101, - [166] = 144, - [167] = 87, - [168] = 102, - [169] = 91, - [170] = 93, - [171] = 86, - [172] = 94, - [173] = 146, - [174] = 92, - [175] = 101, - [176] = 98, - [177] = 95, - [178] = 88, - [179] = 100, - [180] = 88, - [181] = 100, - [182] = 95, - [183] = 94, - [184] = 86, - [185] = 92, - [186] = 90, - [187] = 101, - [188] = 97, - [189] = 88, - [190] = 100, - [191] = 95, - [192] = 92, - [193] = 98, - [194] = 102, - [195] = 91, - [196] = 90, - [197] = 93, - [198] = 97, - [199] = 102, - [200] = 89, - [201] = 90, - [202] = 92, - [203] = 95, - [204] = 100, - [205] = 87, - [206] = 88, - [207] = 96, - [208] = 98, - [209] = 94, - [210] = 86, - [211] = 86, - [212] = 87, - [213] = 96, - [214] = 94, - [215] = 93, - [216] = 101, - [217] = 89, - [218] = 91, - [219] = 144, - [220] = 146, - [221] = 102, - [222] = 143, - [223] = 102, - [224] = 2, - [225] = 2, - [226] = 91, - [227] = 96, - [228] = 98, - [229] = 101, - [230] = 86, - [231] = 89, - [232] = 88, - [233] = 90, - [234] = 87, - [235] = 93, - [236] = 97, - [237] = 92, - [238] = 102, - [239] = 94, - [240] = 95, - [241] = 100, - [242] = 97, - [243] = 89, - [244] = 244, - [245] = 244, - [246] = 244, - [247] = 97, - [248] = 90, - [249] = 93, - [250] = 91, - [251] = 102, - [252] = 244, - [253] = 101, - [254] = 90, - [255] = 94, - [256] = 88, - [257] = 92, - [258] = 95, - [259] = 98, - [260] = 244, - [261] = 100, - [262] = 244, - [263] = 101, - [264] = 244, - [265] = 98, - [266] = 244, - [267] = 244, - [268] = 244, - [269] = 96, - [270] = 2, - [271] = 244, - [272] = 102, - [273] = 2, - [274] = 244, - [275] = 244, - [276] = 91, - [277] = 92, - [278] = 93, - [279] = 95, - [280] = 100, - [281] = 88, - [282] = 89, - [283] = 94, - [284] = 86, - [285] = 86, - [286] = 96, - [287] = 244, - [288] = 87, - [289] = 87, - [290] = 244, - [291] = 291, - [292] = 292, - [293] = 291, - [294] = 294, - [295] = 291, - [296] = 291, - [297] = 292, - [298] = 298, - [299] = 298, - [300] = 294, - [301] = 298, - [302] = 302, - [303] = 298, - [304] = 292, - [305] = 302, - [306] = 291, - [307] = 302, - [308] = 294, - [309] = 294, - [310] = 292, - [311] = 311, - [312] = 298, - [313] = 291, - [314] = 298, - [315] = 311, - [316] = 302, - [317] = 292, - [318] = 291, - [319] = 302, - [320] = 302, - [321] = 302, - [322] = 302, - [323] = 294, - [324] = 302, - [325] = 311, - [326] = 302, - [327] = 292, - [328] = 292, - [329] = 294, - [330] = 298, - [331] = 291, - [332] = 294, - [333] = 292, - [334] = 302, - [335] = 311, - [336] = 302, - [337] = 294, - [338] = 298, - [339] = 294, - [340] = 298, - [341] = 292, - [342] = 298, - [343] = 291, - [344] = 298, - [345] = 298, - [346] = 291, - [347] = 302, - [348] = 102, - [349] = 291, - [350] = 291, - [351] = 95, - [352] = 100, - [353] = 353, - [354] = 353, - [355] = 89, - [356] = 96, - [357] = 98, - [358] = 101, - [359] = 91, - [360] = 93, - [361] = 97, - [362] = 87, - [363] = 353, - [364] = 102, - [365] = 86, - [366] = 94, - [367] = 367, - [368] = 353, - [369] = 369, - [370] = 369, - [371] = 353, - [372] = 353, - [373] = 88, - [374] = 90, - [375] = 100, - [376] = 353, - [377] = 353, - [378] = 367, - [379] = 87, - [380] = 92, - [381] = 353, - [382] = 90, - [383] = 89, - [384] = 353, - [385] = 353, - [386] = 353, - [387] = 92, - [388] = 95, - [389] = 353, - [390] = 88, - [391] = 94, - [392] = 353, - [393] = 86, - [394] = 369, - [395] = 97, - [396] = 93, - [397] = 91, - [398] = 101, - [399] = 98, - [400] = 102, - [401] = 369, - [402] = 96, - [403] = 353, - [404] = 102, - [405] = 405, - [406] = 406, - [407] = 405, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 405, - [412] = 412, - [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, - [417] = 417, - [418] = 418, - [419] = 408, - [420] = 418, - [421] = 413, - [422] = 416, - [423] = 412, - [424] = 424, - [425] = 425, - [426] = 405, - [427] = 427, - [428] = 428, - [429] = 415, - [430] = 430, - [431] = 431, - [432] = 416, - [433] = 418, - [434] = 434, - [435] = 435, - [436] = 436, - [437] = 406, - [438] = 438, - [439] = 414, - [440] = 440, - [441] = 441, - [442] = 442, - [443] = 443, - [444] = 424, - [445] = 445, - [446] = 415, - [447] = 447, - [448] = 448, - [449] = 430, - [450] = 440, - [451] = 435, - [452] = 452, - [453] = 438, - [454] = 418, - [455] = 416, - [456] = 452, - [457] = 434, - [458] = 434, - [459] = 445, - [460] = 443, - [461] = 440, - [462] = 427, - [463] = 436, - [464] = 464, - [465] = 414, - [466] = 427, - [467] = 406, - [468] = 412, - [469] = 448, - [470] = 440, - [471] = 424, - [472] = 427, - [473] = 430, - [474] = 434, - [475] = 405, - [476] = 418, - [477] = 414, - [478] = 418, - [479] = 427, - [480] = 405, - [481] = 434, - [482] = 430, - [483] = 412, - [484] = 406, - [485] = 464, - [486] = 435, - [487] = 427, - [488] = 448, - [489] = 438, - [490] = 415, - [491] = 435, - [492] = 430, - [493] = 424, - [494] = 416, - [495] = 440, - [496] = 412, - [497] = 414, - [498] = 464, - [499] = 406, - [500] = 406, - [501] = 445, - [502] = 438, - [503] = 428, - [504] = 440, - [505] = 405, - [506] = 506, - [507] = 431, - [508] = 442, - [509] = 417, - [510] = 443, - [511] = 438, - [512] = 436, - [513] = 416, - [514] = 435, - [515] = 417, - [516] = 428, - [517] = 405, - [518] = 441, - [519] = 434, - [520] = 431, - [521] = 442, - [522] = 442, - [523] = 523, - [524] = 409, - [525] = 431, - [526] = 428, - [527] = 527, - [528] = 528, - [529] = 410, - [530] = 530, - [531] = 436, - [532] = 532, - [533] = 416, - [534] = 443, - [535] = 445, - [536] = 430, - [537] = 418, - [538] = 415, - [539] = 406, - [540] = 540, - [541] = 416, - [542] = 427, - [543] = 442, - [544] = 431, - [545] = 428, - [546] = 418, - [547] = 547, - [548] = 418, - [549] = 436, - [550] = 443, - [551] = 414, - [552] = 445, - [553] = 553, - [554] = 418, - [555] = 438, - [556] = 435, - [557] = 427, - [558] = 430, - [559] = 424, - [560] = 560, - [561] = 424, - [562] = 562, - [563] = 96, - [564] = 440, - [565] = 415, - [566] = 406, - [567] = 438, - [568] = 568, - [569] = 442, - [570] = 431, - [571] = 440, - [572] = 572, - [573] = 428, - [574] = 440, - [575] = 436, - [576] = 464, - [577] = 412, - [578] = 435, - [579] = 414, - [580] = 430, - [581] = 581, - [582] = 424, - [583] = 443, - [584] = 445, - [585] = 464, - [586] = 434, - [587] = 415, - [588] = 416, - [589] = 425, - [590] = 440, - [591] = 427, - [592] = 412, - [593] = 530, - [594] = 438, - [595] = 435, - [596] = 412, - [597] = 425, - [598] = 442, - [599] = 464, - [600] = 431, - [601] = 428, - [602] = 416, - [603] = 436, - [604] = 443, - [605] = 424, - [606] = 434, - [607] = 410, - [608] = 445, - [609] = 609, - [610] = 415, - [611] = 611, - [612] = 612, - [613] = 613, - [614] = 412, - [615] = 427, - [616] = 616, - [617] = 617, - [618] = 405, - [619] = 416, - [620] = 442, - [621] = 412, - [622] = 98, - [623] = 418, - [624] = 438, - [625] = 438, - [626] = 435, - [627] = 430, - [628] = 441, - [629] = 447, - [630] = 435, - [631] = 440, - [632] = 431, - [633] = 528, - [634] = 428, - [635] = 464, - [636] = 418, - [637] = 430, - [638] = 415, - [639] = 436, - [640] = 424, - [641] = 430, - [642] = 443, - [643] = 434, - [644] = 445, - [645] = 435, - [646] = 527, - [647] = 405, - [648] = 438, - [649] = 406, - [650] = 650, - [651] = 415, - [652] = 409, - [653] = 101, - [654] = 440, - [655] = 440, - [656] = 464, - [657] = 412, - [658] = 650, - [659] = 659, - [660] = 91, - [661] = 464, - [662] = 662, - [663] = 412, - [664] = 93, - [665] = 442, - [666] = 102, - [667] = 431, - [668] = 464, - [669] = 428, - [670] = 670, - [671] = 436, - [672] = 443, - [673] = 97, - [674] = 418, - [675] = 445, - [676] = 87, - [677] = 677, - [678] = 415, - [679] = 414, - [680] = 427, - [681] = 416, - [682] = 464, - [683] = 86, - [684] = 94, - [685] = 414, - [686] = 452, - [687] = 427, - [688] = 440, - [689] = 447, - [690] = 88, - [691] = 464, - [692] = 442, - [693] = 431, - [694] = 428, - [695] = 100, - [696] = 436, - [697] = 406, - [698] = 443, - [699] = 445, - [700] = 424, - [701] = 434, - [702] = 415, - [703] = 406, - [704] = 523, - [705] = 418, - [706] = 95, - [707] = 440, - [708] = 408, - [709] = 406, - [710] = 530, - [711] = 442, - [712] = 431, - [713] = 428, - [714] = 434, - [715] = 440, - [716] = 436, - [717] = 416, - [718] = 410, - [719] = 92, - [720] = 405, - [721] = 416, - [722] = 438, - [723] = 424, - [724] = 443, - [725] = 413, - [726] = 435, - [727] = 445, - [728] = 414, - [729] = 414, - [730] = 440, - [731] = 430, - [732] = 405, - [733] = 415, - [734] = 414, - [735] = 413, - [736] = 414, - [737] = 528, - [738] = 424, - [739] = 739, - [740] = 430, - [741] = 424, - [742] = 527, - [743] = 89, - [744] = 440, - [745] = 90, - [746] = 448, - [747] = 442, - [748] = 431, - [749] = 428, - [750] = 415, - [751] = 409, - [752] = 435, - [753] = 442, - [754] = 431, - [755] = 434, - [756] = 408, - [757] = 428, - [758] = 440, - [759] = 440, - [760] = 523, - [761] = 440, - [762] = 464, - [763] = 445, - [764] = 427, - [765] = 443, - [766] = 445, - [767] = 443, - [768] = 436, - [769] = 436, - [770] = 443, - [771] = 445, - [772] = 412, - [773] = 436, - [774] = 774, - [775] = 428, - [776] = 438, - [777] = 431, - [778] = 440, - [779] = 442, - [780] = 780, - [781] = 781, - [782] = 102, - [783] = 102, - [784] = 784, - [785] = 781, - [786] = 786, - [787] = 787, - [788] = 787, - [789] = 789, - [790] = 790, - [791] = 791, - [792] = 789, - [793] = 793, - [794] = 787, - [795] = 790, - [796] = 793, - [797] = 797, - [798] = 797, - [799] = 789, - [800] = 793, - [801] = 789, - [802] = 791, - [803] = 787, - [804] = 797, - [805] = 791, - [806] = 787, - [807] = 793, - [808] = 790, - [809] = 791, - [810] = 797, - [811] = 791, - [812] = 787, - [813] = 797, - [814] = 789, - [815] = 815, - [816] = 793, - [817] = 790, - [818] = 791, - [819] = 140, - [820] = 791, - [821] = 793, - [822] = 815, - [823] = 790, - [824] = 787, - [825] = 789, - [826] = 793, - [827] = 797, - [828] = 815, - [829] = 789, - [830] = 793, - [831] = 791, - [832] = 790, - [833] = 790, - [834] = 797, - [835] = 789, - [836] = 787, - [837] = 791, - [838] = 790, - [839] = 789, - [840] = 797, - [841] = 797, - [842] = 790, - [843] = 789, - [844] = 793, - [845] = 791, - [846] = 797, - [847] = 787, - [848] = 787, - [849] = 793, - [850] = 789, - [851] = 797, - [852] = 791, - [853] = 787, - [854] = 815, - [855] = 793, - [856] = 790, - [857] = 791, - [858] = 790, - [859] = 797, - [860] = 815, - [861] = 787, - [862] = 787, - [863] = 789, - [864] = 789, - [865] = 793, - [866] = 797, - [867] = 793, - [868] = 791, - [869] = 790, - [870] = 791, - [871] = 787, - [872] = 789, - [873] = 793, - [874] = 797, - [875] = 790, - [876] = 790, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 882, - [886] = 881, - [887] = 883, - [888] = 888, - [889] = 889, - [890] = 888, - [891] = 878, - [892] = 881, - [893] = 880, - [894] = 889, - [895] = 883, - [896] = 879, - [897] = 881, - [898] = 880, - [899] = 879, - [900] = 877, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 884, - [906] = 902, - [907] = 903, - [908] = 904, - [909] = 901, - [910] = 884, - [911] = 882, - [912] = 912, - [913] = 878, - [914] = 877, - [915] = 901, - [916] = 883, - [917] = 902, - [918] = 904, - [919] = 919, - [920] = 903, - [921] = 904, - [922] = 884, - [923] = 882, - [924] = 877, - [925] = 903, - [926] = 878, - [927] = 919, - [928] = 919, - [929] = 888, - [930] = 878, - [931] = 882, - [932] = 882, - [933] = 884, - [934] = 904, - [935] = 902, - [936] = 919, - [937] = 903, - [938] = 901, - [939] = 902, - [940] = 901, - [941] = 878, - [942] = 879, - [943] = 877, - [944] = 877, - [945] = 879, - [946] = 880, - [947] = 881, - [948] = 883, - [949] = 884, - [950] = 889, - [951] = 903, - [952] = 889, - [953] = 888, - [954] = 919, - [955] = 955, - [956] = 880, - [957] = 877, - [958] = 882, - [959] = 884, - [960] = 904, - [961] = 903, - [962] = 877, - [963] = 880, - [964] = 888, - [965] = 902, - [966] = 879, - [967] = 889, - [968] = 883, - [969] = 881, - [970] = 901, - [971] = 879, - [972] = 880, - [973] = 880, - [974] = 881, - [975] = 879, - [976] = 901, - [977] = 877, - [978] = 889, - [979] = 877, - [980] = 902, - [981] = 901, - [982] = 880, - [983] = 903, - [984] = 904, - [985] = 884, - [986] = 882, - [987] = 883, - [988] = 878, - [989] = 919, - [990] = 140, - [991] = 991, - [992] = 883, - [993] = 912, - [994] = 888, - [995] = 881, - [996] = 880, - [997] = 879, - [998] = 881, - [999] = 888, - [1000] = 888, - [1001] = 919, - [1002] = 901, - [1003] = 889, - [1004] = 902, - [1005] = 883, - [1006] = 889, - [1007] = 902, - [1008] = 919, - [1009] = 889, - [1010] = 883, - [1011] = 877, - [1012] = 903, - [1013] = 881, - [1014] = 904, - [1015] = 889, - [1016] = 919, - [1017] = 919, - [1018] = 919, - [1019] = 879, - [1020] = 919, - [1021] = 888, - [1022] = 884, - [1023] = 878, - [1024] = 878, - [1025] = 901, - [1026] = 877, - [1027] = 878, - [1028] = 882, - [1029] = 884, - [1030] = 889, - [1031] = 904, - [1032] = 882, - [1033] = 903, - [1034] = 902, - [1035] = 901, - [1036] = 884, - [1037] = 904, - [1038] = 903, - [1039] = 902, - [1040] = 901, - [1041] = 879, - [1042] = 880, - [1043] = 879, - [1044] = 881, - [1045] = 883, - [1046] = 889, - [1047] = 880, - [1048] = 881, - [1049] = 902, - [1050] = 1050, - [1051] = 888, - [1052] = 888, - [1053] = 883, - [1054] = 889, - [1055] = 882, - [1056] = 888, - [1057] = 955, - [1058] = 1058, - [1059] = 903, - [1060] = 904, - [1061] = 878, - [1062] = 882, - [1063] = 883, - [1064] = 881, - [1065] = 880, - [1066] = 879, - [1067] = 901, - [1068] = 902, - [1069] = 903, - [1070] = 904, - [1071] = 904, - [1072] = 884, - [1073] = 919, - [1074] = 888, - [1075] = 882, - [1076] = 877, - [1077] = 878, - [1078] = 884, - [1079] = 878, - [1080] = 1080, - [1081] = 1080, - [1082] = 1082, - [1083] = 1082, - [1084] = 1082, - [1085] = 140, - [1086] = 143, - [1087] = 144, - [1088] = 146, - [1089] = 146, - [1090] = 143, - [1091] = 144, - [1092] = 1092, - [1093] = 1092, - [1094] = 1092, - [1095] = 1092, - [1096] = 143, - [1097] = 144, - [1098] = 146, - [1099] = 1099, - [1100] = 1100, - [1101] = 1101, - [1102] = 1101, - [1103] = 1103, - [1104] = 1104, - [1105] = 146, - [1106] = 146, - [1107] = 1103, - [1108] = 1104, - [1109] = 1103, - [1110] = 1104, - [1111] = 146, - [1112] = 1112, - [1113] = 1113, - [1114] = 1114, - [1115] = 1115, - [1116] = 1116, - [1117] = 1117, - [1118] = 1118, - [1119] = 1119, - [1120] = 1120, - [1121] = 1121, - [1122] = 1122, - [1123] = 1112, - [1124] = 1124, - [1125] = 1116, - [1126] = 1126, - [1127] = 1127, - [1128] = 1113, - [1129] = 1120, - [1130] = 1121, - [1131] = 1131, - [1132] = 1132, - [1133] = 1133, - [1134] = 1134, - [1135] = 1117, - [1136] = 1114, - [1137] = 1137, - [1138] = 1118, - [1139] = 1115, - [1140] = 1119, - [1141] = 1141, - [1142] = 1117, - [1143] = 1143, - [1144] = 1144, - [1145] = 1145, - [1146] = 1146, - [1147] = 1147, - [1148] = 1132, - [1149] = 1126, - [1150] = 1150, - [1151] = 1151, - [1152] = 1120, - [1153] = 1153, - [1154] = 1154, - [1155] = 1155, - [1156] = 1113, - [1157] = 1104, - [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1124, - [1170] = 1170, - [1171] = 1127, - [1172] = 1172, - [1173] = 1173, - [1174] = 1122, - [1175] = 1134, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1137, - [1180] = 1180, - [1181] = 1131, - [1182] = 1121, - [1183] = 1183, - [1184] = 1137, - [1185] = 1132, - [1186] = 1186, - [1187] = 1187, - [1188] = 1188, - [1189] = 1118, - [1190] = 1190, - [1191] = 1191, - [1192] = 1192, - [1193] = 1193, - [1194] = 1115, - [1195] = 1114, - [1196] = 1196, - [1197] = 1122, - [1198] = 1198, - [1199] = 1199, - [1200] = 1200, - [1201] = 1201, - [1202] = 1202, - [1203] = 1203, - [1204] = 1204, - [1205] = 1205, - [1206] = 1124, - [1207] = 1207, - [1208] = 1208, - [1209] = 1209, - [1210] = 1134, - [1211] = 1211, - [1212] = 1212, - [1213] = 1127, - [1214] = 1131, - [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 1221, - [1222] = 1119, - [1223] = 1223, - [1224] = 1116, - [1225] = 1126, - [1226] = 1226, - [1227] = 1227, - [1228] = 1112, - [1229] = 1229, - [1230] = 1230, - [1231] = 1103, - [1232] = 1133, - [1233] = 1233, - [1234] = 146, - [1235] = 1235, - [1236] = 1236, - [1237] = 1133, - [1238] = 1238, - [1239] = 1239, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 1248, - [1249] = 1212, - [1250] = 1159, - [1251] = 1198, - [1252] = 1151, - [1253] = 1220, - [1254] = 1165, - [1255] = 1176, - [1256] = 1203, - [1257] = 1241, - [1258] = 1199, - [1259] = 1204, - [1260] = 1216, - [1261] = 1223, - [1262] = 1161, - [1263] = 1170, - [1264] = 1193, - [1265] = 1167, - [1266] = 1168, - [1267] = 1187, - [1268] = 1183, - [1269] = 1191, - [1270] = 1202, - [1271] = 1193, - [1272] = 1248, - [1273] = 1244, - [1274] = 1146, - [1275] = 1141, - [1276] = 1221, - [1277] = 1245, - [1278] = 1247, - [1279] = 1219, - [1280] = 1209, - [1281] = 1229, - [1282] = 1186, - [1283] = 1247, - [1284] = 1230, - [1285] = 1235, - [1286] = 1205, - [1287] = 1215, - [1288] = 1246, - [1289] = 1217, - [1290] = 1163, - [1291] = 1201, - [1292] = 1240, - [1293] = 1211, - [1294] = 1227, - [1295] = 1178, - [1296] = 1178, - [1297] = 1217, - [1298] = 1215, - [1299] = 1241, - [1300] = 1220, - [1301] = 1165, - [1302] = 1221, - [1303] = 1226, - [1304] = 1176, - [1305] = 1226, - [1306] = 1227, - [1307] = 1218, - [1308] = 1209, - [1309] = 1218, - [1310] = 1190, - [1311] = 1187, - [1312] = 1190, - [1313] = 1196, - [1314] = 1173, - [1315] = 1202, - [1316] = 1200, - [1317] = 1248, - [1318] = 1153, - [1319] = 1173, - [1320] = 1200, - [1321] = 1230, - [1322] = 1154, - [1323] = 1229, - [1324] = 1219, - [1325] = 1244, - [1326] = 1150, - [1327] = 1191, - [1328] = 1240, - [1329] = 1144, - [1330] = 1183, - [1331] = 1201, - [1332] = 1180, - [1333] = 1172, - [1334] = 1153, - [1335] = 1164, - [1336] = 1146, - [1337] = 1162, - [1338] = 1145, - [1339] = 1239, - [1340] = 1147, - [1341] = 1196, - [1342] = 1143, - [1343] = 1150, - [1344] = 1238, - [1345] = 1236, - [1346] = 1243, - [1347] = 1168, - [1348] = 1167, - [1349] = 1151, - [1350] = 1233, - [1351] = 1242, - [1352] = 1198, - [1353] = 1188, - [1354] = 1166, - [1355] = 1208, - [1356] = 1177, - [1357] = 1144, - [1358] = 1164, - [1359] = 1239, - [1360] = 1158, - [1361] = 1235, - [1362] = 1199, - [1363] = 1159, - [1364] = 1242, - [1365] = 1192, - [1366] = 1207, - [1367] = 1163, - [1368] = 1204, - [1369] = 1155, - [1370] = 1160, - [1371] = 1211, - [1372] = 1245, - [1373] = 1166, - [1374] = 1207, - [1375] = 1188, - [1376] = 1180, - [1377] = 1212, - [1378] = 1216, - [1379] = 1141, - [1380] = 1223, - [1381] = 1205, - [1382] = 1236, - [1383] = 1192, - [1384] = 1243, - [1385] = 1208, - [1386] = 1186, - [1387] = 1145, - [1388] = 1143, - [1389] = 1233, - [1390] = 1160, - [1391] = 1158, - [1392] = 1238, - [1393] = 1203, - [1394] = 1170, - [1395] = 1177, - [1396] = 1155, - [1397] = 1154, - [1398] = 1398, - [1399] = 1399, - [1400] = 1246, - [1401] = 1147, - [1402] = 1124, - [1403] = 1162, - [1404] = 1154, - [1405] = 1122, - [1406] = 1398, - [1407] = 1180, - [1408] = 1134, - [1409] = 1409, - [1410] = 1398, - [1411] = 1411, - [1412] = 1412, - [1413] = 1172, - [1414] = 1137, - [1415] = 1133, - [1416] = 1399, - [1417] = 1126, - [1418] = 1132, - [1419] = 1127, - [1420] = 1131, - [1421] = 1208, - [1422] = 1216, - [1423] = 1411, - [1424] = 1219, - [1425] = 1236, - [1426] = 1229, - [1427] = 1409, - [1428] = 1412, - [1429] = 1170, - [1430] = 1186, - [1431] = 1230, - [1432] = 1246, - [1433] = 1160, - [1434] = 1218, - [1435] = 1176, - [1436] = 1163, - [1437] = 1190, - [1438] = 1153, - [1439] = 1164, - [1440] = 1240, - [1441] = 1200, - [1442] = 1188, - [1443] = 1205, - [1444] = 1202, - [1445] = 1173, - [1446] = 1203, - [1447] = 1221, - [1448] = 1239, - [1449] = 1449, - [1450] = 1207, - [1451] = 1209, - [1452] = 1243, - [1453] = 1223, - [1454] = 1158, - [1455] = 1220, - [1456] = 1227, - [1457] = 1187, - [1458] = 1217, - [1459] = 1409, - [1460] = 1198, - [1461] = 1211, - [1462] = 1212, - [1463] = 1411, - [1464] = 1145, - [1465] = 1143, - [1466] = 1226, - [1467] = 1412, - [1468] = 1196, - [1469] = 1193, - [1470] = 1247, - [1471] = 1248, - [1472] = 1215, - [1473] = 1238, - [1474] = 1192, - [1475] = 1146, - [1476] = 1204, - [1477] = 1399, - [1478] = 1178, - [1479] = 1147, - [1480] = 1141, - [1481] = 1235, - [1482] = 1191, - [1483] = 1245, - [1484] = 1167, - [1485] = 1201, - [1486] = 1168, - [1487] = 1199, - [1488] = 1166, - [1489] = 1144, - [1490] = 1155, - [1491] = 1151, - [1492] = 1233, - [1493] = 1150, - [1494] = 1244, - [1495] = 1159, - [1496] = 1177, - [1497] = 1165, - [1498] = 1241, - [1499] = 1242, - [1500] = 1183, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1099, - [1509] = 1100, - [1510] = 1161, - [1511] = 1398, - [1512] = 1101, - [1513] = 1399, - [1514] = 1411, - [1515] = 1412, - [1516] = 1516, - [1517] = 1449, - [1518] = 1409, - [1519] = 1449, - [1520] = 1520, - [1521] = 1520, - [1522] = 1520, - [1523] = 1520, - [1524] = 1520, - [1525] = 1520, - [1526] = 1520, - [1527] = 1520, - [1528] = 1520, - [1529] = 1501, - [1530] = 1520, - [1531] = 1520, - [1532] = 1520, - [1533] = 1520, - [1534] = 1520, - [1535] = 1501, - [1536] = 1104, - [1537] = 1103, - [1538] = 1538, - [1539] = 1172, - [1540] = 1538, - [1541] = 1538, - [1542] = 1538, - [1543] = 1172, - [1544] = 1538, - [1545] = 1538, - [1546] = 1538, - [1547] = 1538, - [1548] = 1538, - [1549] = 1162, - [1550] = 1538, - [1551] = 1538, - [1552] = 1162, - [1553] = 1538, - [1554] = 1162, - [1555] = 1099, - [1556] = 1172, - [1557] = 1172, - [1558] = 1100, - [1559] = 1162, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1562, - [1564] = 1564, - [1565] = 1564, - [1566] = 1561, - [1567] = 1561, - [1568] = 1568, - [1569] = 1569, - [1570] = 1568, - [1571] = 1569, - [1572] = 1562, - [1573] = 1562, - [1574] = 1560, - [1575] = 1564, - [1576] = 1569, - [1577] = 1560, - [1578] = 1560, - [1579] = 1568, - [1580] = 1569, - [1581] = 1561, - [1582] = 1561, - [1583] = 1568, - [1584] = 1561, - [1585] = 1561, - [1586] = 1568, - [1587] = 1562, - [1588] = 1569, - [1589] = 1568, - [1590] = 1561, - [1591] = 1569, - [1592] = 1100, - [1593] = 1560, - [1594] = 1099, - [1595] = 1561, - [1596] = 1568, - [1597] = 1560, - [1598] = 1562, - [1599] = 1562, - [1600] = 1569, - [1601] = 1560, - [1602] = 1569, - [1603] = 1568, - [1604] = 1560, - [1605] = 1568, - [1606] = 1560, - [1607] = 1562, - [1608] = 1569, - [1609] = 1568, - [1610] = 1569, - [1611] = 1100, - [1612] = 1099, - [1613] = 1560, - [1614] = 1564, - [1615] = 1560, - [1616] = 1562, - [1617] = 1561, - [1618] = 1568, - [1619] = 1562, - [1620] = 1564, - [1621] = 1561, - [1622] = 1560, - [1623] = 1568, - [1624] = 1569, - [1625] = 1562, - [1626] = 1561, - [1627] = 1569, - [1628] = 1562, - [1629] = 1629, - [1630] = 1630, - [1631] = 1631, - [1632] = 1630, - [1633] = 1631, - [1634] = 1629, - [1635] = 1629, - [1636] = 1630, - [1637] = 1629, - [1638] = 1631, - [1639] = 1629, - [1640] = 1640, - [1641] = 1641, - [1642] = 1642, - [1643] = 1643, - [1644] = 1640, - [1645] = 1645, - [1646] = 1645, - [1647] = 1645, - [1648] = 1648, - [1649] = 1640, - [1650] = 1650, - [1651] = 1642, - [1652] = 1641, - [1653] = 1648, - [1654] = 1640, - [1655] = 1640, - [1656] = 1648, - [1657] = 1640, - [1658] = 1658, - [1659] = 1648, - [1660] = 1648, - [1661] = 1648, - [1662] = 1640, - [1663] = 1648, - [1664] = 1664, - [1665] = 1650, - [1666] = 1643, - [1667] = 1650, - [1668] = 1648, - [1669] = 1648, - [1670] = 1641, - [1671] = 1648, - [1672] = 1648, - [1673] = 1641, - [1674] = 1640, - [1675] = 1658, - [1676] = 1645, - [1677] = 1648, - [1678] = 1658, - [1679] = 1642, - [1680] = 1641, - [1681] = 1645, - [1682] = 1645, - [1683] = 1648, - [1684] = 1645, - [1685] = 1685, - [1686] = 1642, - [1687] = 1650, - [1688] = 1685, - [1689] = 1645, - [1690] = 1643, - [1691] = 1645, - [1692] = 1685, - [1693] = 1643, - [1694] = 1648, - [1695] = 1658, - [1696] = 1650, - [1697] = 1658, - [1698] = 1640, - [1699] = 1648, - [1700] = 1643, - [1701] = 1685, - [1702] = 1642, - [1703] = 1685, - [1704] = 1704, - [1705] = 1705, - [1706] = 1706, - [1707] = 1707, - [1708] = 1705, - [1709] = 1704, - [1710] = 1710, - [1711] = 1711, - [1712] = 1704, - [1713] = 1713, - [1714] = 1714, - [1715] = 1715, - [1716] = 1716, - [1717] = 1704, - [1718] = 1718, - [1719] = 1705, - [1720] = 1705, - [1721] = 1718, - [1722] = 1722, - [1723] = 1707, - [1724] = 1705, - [1725] = 1716, - [1726] = 1722, - [1727] = 1727, - [1728] = 1728, - [1729] = 1729, - [1730] = 1715, - [1731] = 1731, - [1732] = 1722, - [1733] = 1705, - [1734] = 1704, - [1735] = 1707, - [1736] = 1707, - [1737] = 1704, - [1738] = 1707, - [1739] = 1710, - [1740] = 1705, - [1741] = 1741, - [1742] = 1707, - [1743] = 1707, - [1744] = 1707, - [1745] = 1707, - [1746] = 1704, - [1747] = 1705, - [1748] = 1704, - [1749] = 1704, - [1750] = 1705, - [1751] = 1727, - [1752] = 1711, - [1753] = 1707, - [1754] = 1728, - [1755] = 1728, - [1756] = 1711, - [1757] = 1704, - [1758] = 1705, - [1759] = 1716, - [1760] = 1704, - [1761] = 1705, - [1762] = 1705, - [1763] = 1705, - [1764] = 1716, - [1765] = 1704, - [1766] = 1766, - [1767] = 1705, - [1768] = 1766, - [1769] = 1704, - [1770] = 1727, - [1771] = 1718, - [1772] = 1707, - [1773] = 1704, - [1774] = 1707, - [1775] = 1704, - [1776] = 1705, - [1777] = 1707, - [1778] = 1710, - [1779] = 1715, - [1780] = 1707, - [1781] = 1781, - [1782] = 1722, - [1783] = 1172, - [1784] = 1162, - [1785] = 1785, - [1786] = 1786, - [1787] = 1786, - [1788] = 1785, - [1789] = 1786, - [1790] = 1785, - [1791] = 1786, - [1792] = 1785, - [1793] = 1785, - [1794] = 1786, - [1795] = 1795, - [1796] = 1796, - [1797] = 1785, - [1798] = 1795, - [1799] = 1796, - [1800] = 1800, - [1801] = 1786, - [1802] = 1800, - [1803] = 1803, - [1804] = 1803, - [1805] = 1800, - [1806] = 1795, - [1807] = 1786, - [1808] = 1131, - [1809] = 1137, - [1810] = 1127, - [1811] = 1132, - [1812] = 1803, - [1813] = 1124, - [1814] = 1134, - [1815] = 1796, - [1816] = 1785, - [1817] = 1800, - [1818] = 1786, - [1819] = 1785, - [1820] = 1785, - [1821] = 1786, - [1822] = 1126, - [1823] = 1803, - [1824] = 1785, - [1825] = 1786, - [1826] = 1122, - [1827] = 1133, - [1828] = 1785, - [1829] = 1786, - [1830] = 1786, - [1831] = 1786, - [1832] = 1785, - [1833] = 1785, - [1834] = 1785, - [1835] = 1786, - [1836] = 1785, - [1837] = 1786, - [1838] = 1803, - [1839] = 1233, - [1840] = 1840, - [1841] = 1841, - [1842] = 1147, - [1843] = 1843, - [1844] = 1840, - [1845] = 1845, - [1846] = 1846, - [1847] = 1847, - [1848] = 1846, - [1849] = 1847, - [1850] = 1846, - [1851] = 1851, - [1852] = 1852, - [1853] = 1843, - [1854] = 1162, - [1855] = 1855, - [1856] = 1856, - [1857] = 1857, - [1858] = 1841, - [1859] = 1859, - [1860] = 1860, - [1861] = 1227, - [1862] = 1860, - [1863] = 1855, - [1864] = 1864, - [1865] = 1864, - [1866] = 1855, - [1867] = 1855, - [1868] = 1868, - [1869] = 1177, - [1870] = 1153, - [1871] = 1173, - [1872] = 1190, - [1873] = 1246, - [1874] = 1218, - [1875] = 1226, - [1876] = 1859, - [1877] = 1856, - [1878] = 1868, - [1879] = 1857, - [1880] = 1847, - [1881] = 1178, - [1882] = 1846, - [1883] = 1846, - [1884] = 1217, - [1885] = 1165, - [1886] = 1215, - [1887] = 1198, - [1888] = 1864, - [1889] = 1855, - [1890] = 1846, - [1891] = 1860, - [1892] = 1847, - [1893] = 1857, - [1894] = 1245, - [1895] = 1855, - [1896] = 1209, - [1897] = 1202, - [1898] = 1191, - [1899] = 1172, - [1900] = 1841, - [1901] = 1183, - [1902] = 1868, - [1903] = 1846, - [1904] = 1847, - [1905] = 1868, - [1906] = 1860, - [1907] = 1868, - [1908] = 1855, - [1909] = 1857, - [1910] = 1845, - [1911] = 1857, - [1912] = 1186, - [1913] = 1211, - [1914] = 1846, - [1915] = 1915, - [1916] = 1868, - [1917] = 1917, - [1918] = 1857, - [1919] = 1851, - [1920] = 1847, - [1921] = 1864, - [1922] = 1244, - [1923] = 1847, - [1924] = 1857, - [1925] = 1840, - [1926] = 1126, - [1927] = 1845, - [1928] = 1847, - [1929] = 1168, - [1930] = 1847, - [1931] = 1846, - [1932] = 1857, - [1933] = 1857, - [1934] = 1847, - [1935] = 1144, - [1936] = 1167, - [1937] = 1193, - [1938] = 1201, - [1939] = 1223, - [1940] = 1216, - [1941] = 1212, - [1942] = 1204, - [1943] = 1199, - [1944] = 1151, - [1945] = 1150, - [1946] = 1855, - [1947] = 1146, - [1948] = 1846, - [1949] = 1868, - [1950] = 1917, - [1951] = 1855, - [1952] = 1248, - [1953] = 1131, - [1954] = 1857, - [1955] = 1127, - [1956] = 1859, - [1957] = 1196, - [1958] = 1124, - [1959] = 1915, - [1960] = 1219, - [1961] = 1847, - [1962] = 1846, - [1963] = 1164, - [1964] = 1847, - [1965] = 1868, - [1966] = 1229, - [1967] = 1192, - [1968] = 1154, - [1969] = 1230, - [1970] = 1155, - [1971] = 1851, - [1972] = 1868, - [1973] = 1856, - [1974] = 1857, - [1975] = 1134, - [1976] = 1137, - [1977] = 1132, - [1978] = 1166, - [1979] = 1855, - [1980] = 1180, - [1981] = 1188, - [1982] = 1160, - [1983] = 1236, - [1984] = 1158, - [1985] = 1205, - [1986] = 1840, - [1987] = 1846, - [1988] = 1238, - [1989] = 1852, - [1990] = 1176, - [1991] = 1855, - [1992] = 1241, - [1993] = 1220, - [1994] = 1221, - [1995] = 1243, - [1996] = 1208, - [1997] = 1187, - [1998] = 1917, - [1999] = 1847, - [2000] = 1915, - [2001] = 1857, - [2002] = 1172, - [2003] = 1855, - [2004] = 1868, - [2005] = 1917, - [2006] = 1247, - [2007] = 1122, - [2008] = 1170, - [2009] = 1239, - [2010] = 1845, - [2011] = 1240, - [2012] = 1162, - [2013] = 1857, - [2014] = 1133, - [2015] = 1159, - [2016] = 1915, - [2017] = 1843, - [2018] = 1847, - [2019] = 1857, - [2020] = 1203, - [2021] = 1145, - [2022] = 1143, - [2023] = 1242, - [2024] = 1856, - [2025] = 1859, - [2026] = 1852, - [2027] = 1235, - [2028] = 1200, - [2029] = 1163, - [2030] = 1855, - [2031] = 1207, - [2032] = 1846, - [2033] = 1868, - [2034] = 1141, - [2035] = 1857, - [2036] = 1847, - [2037] = 1217, - [2038] = 1245, - [2039] = 2039, - [2040] = 2040, - [2041] = 1198, - [2042] = 2042, - [2043] = 1165, - [2044] = 2044, - [2045] = 2045, - [2046] = 2044, - [2047] = 1244, - [2048] = 2042, - [2049] = 2049, - [2050] = 2039, - [2051] = 2042, - [2052] = 2040, - [2053] = 1144, - [2054] = 2042, - [2055] = 1201, - [2056] = 2045, - [2057] = 1141, - [2058] = 1196, - [2059] = 2042, - [2060] = 1163, - [2061] = 1205, - [2062] = 1159, - [2063] = 1247, - [2064] = 1239, - [2065] = 1170, - [2066] = 1203, - [2067] = 2042, - [2068] = 2068, - [2069] = 2040, - [2070] = 2039, - [2071] = 2044, - [2072] = 1207, - [2073] = 1208, - [2074] = 1238, - [2075] = 2045, - [2076] = 2068, - [2077] = 1235, - [2078] = 2042, - [2079] = 1143, - [2080] = 1145, - [2081] = 1154, - [2082] = 1240, - [2083] = 2042, - [2084] = 1180, - [2085] = 1221, - [2086] = 1241, - [2087] = 1230, - [2088] = 1236, - [2089] = 1227, - [2090] = 1226, - [2091] = 1178, - [2092] = 1188, - [2093] = 1166, - [2094] = 1147, - [2095] = 1219, - [2096] = 1164, - [2097] = 1146, - [2098] = 1150, - [2099] = 1186, - [2100] = 1151, - [2101] = 1242, - [2102] = 1187, - [2103] = 1199, - [2104] = 1204, - [2105] = 1212, - [2106] = 1216, - [2107] = 1248, - [2108] = 1223, - [2109] = 1193, - [2110] = 1200, - [2111] = 2042, - [2112] = 1167, - [2113] = 1220, - [2114] = 1168, - [2115] = 1183, - [2116] = 1191, - [2117] = 1202, - [2118] = 1192, - [2119] = 1209, - [2120] = 1215, - [2121] = 1176, - [2122] = 2042, - [2123] = 1229, - [2124] = 1218, - [2125] = 1155, - [2126] = 1190, - [2127] = 1173, - [2128] = 2042, - [2129] = 2040, - [2130] = 1153, - [2131] = 2042, - [2132] = 1177, - [2133] = 2133, - [2134] = 2039, - [2135] = 2045, - [2136] = 2044, - [2137] = 2045, - [2138] = 1211, - [2139] = 1246, - [2140] = 1160, - [2141] = 1158, - [2142] = 2042, - [2143] = 2044, - [2144] = 1233, - [2145] = 2040, - [2146] = 2039, - [2147] = 1243, - [2148] = 2148, - [2149] = 2149, - [2150] = 1399, - [2151] = 2148, - [2152] = 2148, - [2153] = 2148, - [2154] = 1162, - [2155] = 1172, - [2156] = 1162, - [2157] = 2148, - [2158] = 1398, - [2159] = 1172, - [2160] = 2160, - [2161] = 2161, - [2162] = 2162, - [2163] = 2162, - [2164] = 2162, - [2165] = 2165, - [2166] = 2166, - [2167] = 2167, - [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 2162, - [2172] = 2162, - [2173] = 2173, - [2174] = 2162, - [2175] = 2175, - [2176] = 2176, - [2177] = 2169, - [2178] = 2169, - [2179] = 2169, - [2180] = 2180, - [2181] = 2181, - [2182] = 2169, - [2183] = 2162, - [2184] = 2184, - [2185] = 2185, - [2186] = 2162, - [2187] = 1399, - [2188] = 2188, - [2189] = 2162, - [2190] = 1162, - [2191] = 2191, - [2192] = 1172, - [2193] = 1398, - [2194] = 2194, - [2195] = 2195, - [2196] = 1412, - [2197] = 2197, - [2198] = 2162, - [2199] = 1147, - [2200] = 1411, - [2201] = 2162, - [2202] = 1246, - [2203] = 2162, - [2204] = 1409, - [2205] = 2162, - [2206] = 1187, - [2207] = 2180, - [2208] = 2208, - [2209] = 2188, - [2210] = 1409, - [2211] = 2175, - [2212] = 2176, - [2213] = 1176, - [2214] = 2184, - [2215] = 1411, - [2216] = 1412, - [2217] = 2173, - [2218] = 1186, - [2219] = 1227, - [2220] = 2165, - [2221] = 2195, - [2222] = 2170, - [2223] = 2168, - [2224] = 1178, - [2225] = 1200, - [2226] = 1248, - [2227] = 2191, - [2228] = 2166, - [2229] = 2167, - [2230] = 2197, - [2231] = 2181, - [2232] = 2185, - [2233] = 1247, - [2234] = 1193, - [2235] = 1137, - [2236] = 1134, - [2237] = 1245, - [2238] = 1235, - [2239] = 1143, - [2240] = 1145, - [2241] = 1240, - [2242] = 1124, - [2243] = 1127, - [2244] = 1131, - [2245] = 1221, - [2246] = 1227, - [2247] = 1220, - [2248] = 1178, - [2249] = 1159, - [2250] = 1244, - [2251] = 1241, - [2252] = 1230, - [2253] = 1141, - [2254] = 1163, - [2255] = 1229, - [2256] = 1219, - [2257] = 1236, - [2258] = 1146, - [2259] = 1159, - [2260] = 1239, - [2261] = 1150, - [2262] = 1239, - [2263] = 1151, - [2264] = 1165, - [2265] = 1198, - [2266] = 1186, - [2267] = 1208, - [2268] = 2188, - [2269] = 1245, - [2270] = 1199, - [2271] = 1201, - [2272] = 1204, - [2273] = 1177, - [2274] = 1122, - [2275] = 1144, - [2276] = 1212, - [2277] = 1216, - [2278] = 1238, - [2279] = 1223, - [2280] = 1176, - [2281] = 1244, - [2282] = 1201, - [2283] = 1211, - [2284] = 1187, - [2285] = 1203, - [2286] = 1248, - [2287] = 1196, - [2288] = 1205, - [2289] = 1200, - [2290] = 2290, - [2291] = 1183, - [2292] = 2292, - [2293] = 1170, - [2294] = 1203, - [2295] = 1207, - [2296] = 1132, - [2297] = 1137, - [2298] = 1208, - [2299] = 1134, - [2300] = 1235, - [2301] = 1143, - [2302] = 1145, - [2303] = 1240, - [2304] = 1124, - [2305] = 1196, - [2306] = 1132, - [2307] = 1127, - [2308] = 1153, - [2309] = 1247, - [2310] = 1131, - [2311] = 1221, - [2312] = 1220, - [2313] = 1170, - [2314] = 1173, - [2315] = 1241, - [2316] = 1165, - [2317] = 1230, - [2318] = 1229, - [2319] = 1219, - [2320] = 1146, - [2321] = 1190, - [2322] = 1218, - [2323] = 1150, - [2324] = 1226, - [2325] = 1180, - [2326] = 1151, - [2327] = 1199, - [2328] = 1204, - [2329] = 1212, - [2330] = 1216, - [2331] = 1223, - [2332] = 1193, - [2333] = 1167, - [2334] = 1168, - [2335] = 1144, - [2336] = 1164, - [2337] = 1183, - [2338] = 1191, - [2339] = 1202, - [2340] = 1168, - [2341] = 1126, - [2342] = 1209, - [2343] = 1166, - [2344] = 1399, - [2345] = 1133, - [2346] = 1215, - [2347] = 1217, - [2348] = 1163, - [2349] = 1238, - [2350] = 2350, - [2351] = 2351, - [2352] = 1141, - [2353] = 1243, - [2354] = 1233, - [2355] = 1158, - [2356] = 1160, - [2357] = 2357, - [2358] = 1155, - [2359] = 1154, - [2360] = 1217, - [2361] = 1215, - [2362] = 1192, - [2363] = 1207, - [2364] = 1242, - [2365] = 1198, - [2366] = 1209, - [2367] = 1205, - [2368] = 1126, - [2369] = 1202, - [2370] = 1177, - [2371] = 1153, - [2372] = 1173, - [2373] = 1190, - [2374] = 1218, - [2375] = 1226, - [2376] = 1188, - [2377] = 1191, - [2378] = 1160, - [2379] = 1154, - [2380] = 2191, - [2381] = 2188, - [2382] = 2290, - [2383] = 1166, - [2384] = 1141, - [2385] = 1163, - [2386] = 1159, - [2387] = 2195, - [2388] = 1176, - [2389] = 1207, - [2390] = 1239, - [2391] = 1132, - [2392] = 2292, - [2393] = 1211, - [2394] = 2170, - [2395] = 1137, - [2396] = 1134, - [2397] = 1160, - [2398] = 2292, - [2399] = 2290, - [2400] = 1158, - [2401] = 1233, - [2402] = 1235, - [2403] = 1170, - [2404] = 2175, - [2405] = 2168, - [2406] = 1143, - [2407] = 2167, - [2408] = 1145, - [2409] = 2184, - [2410] = 1247, - [2411] = 2176, - [2412] = 1133, - [2413] = 1240, - [2414] = 1124, - [2415] = 1714, - [2416] = 1186, - [2417] = 2166, - [2418] = 1127, - [2419] = 1208, - [2420] = 2165, - [2421] = 1131, - [2422] = 2180, - [2423] = 2185, - [2424] = 1221, - [2425] = 1187, - [2426] = 1220, - [2427] = 1241, - [2428] = 1248, - [2429] = 1200, - [2430] = 2350, - [2431] = 2351, - [2432] = 2197, - [2433] = 1243, - [2434] = 1233, - [2435] = 1205, - [2436] = 1158, - [2437] = 1248, - [2438] = 1196, - [2439] = 1203, - [2440] = 2188, - [2441] = 1155, - [2442] = 1192, - [2443] = 1242, - [2444] = 1164, - [2445] = 1122, - [2446] = 1201, - [2447] = 1144, - [2448] = 1244, - [2449] = 1166, - [2450] = 1230, - [2451] = 1188, - [2452] = 1229, - [2453] = 1219, - [2454] = 1122, - [2455] = 1146, - [2456] = 1150, - [2457] = 1155, - [2458] = 1236, - [2459] = 2351, - [2460] = 2181, - [2461] = 1245, - [2462] = 1226, - [2463] = 1151, - [2464] = 1713, - [2465] = 1198, - [2466] = 1165, - [2467] = 2350, - [2468] = 1731, - [2469] = 1199, - [2470] = 1204, - [2471] = 1167, - [2472] = 1176, - [2473] = 1192, - [2474] = 2173, - [2475] = 1211, - [2476] = 1238, - [2477] = 1180, - [2478] = 1212, - [2479] = 1216, - [2480] = 1178, - [2481] = 1223, - [2482] = 1193, - [2483] = 1180, - [2484] = 1167, - [2485] = 1168, - [2486] = 1126, - [2487] = 1243, - [2488] = 1227, - [2489] = 1191, - [2490] = 1202, - [2491] = 1209, - [2492] = 1215, - [2493] = 1217, - [2494] = 1133, - [2495] = 1164, - [2496] = 1236, - [2497] = 1177, - [2498] = 1183, - [2499] = 1154, - [2500] = 1218, - [2501] = 1741, - [2502] = 1190, - [2503] = 1173, - [2504] = 1153, - [2505] = 1188, - [2506] = 1242, - [2507] = 1242, - [2508] = 2508, - [2509] = 1187, - [2510] = 1155, - [2511] = 1154, - [2512] = 1243, - [2513] = 2513, - [2514] = 1186, - [2515] = 1180, - [2516] = 1160, - [2517] = 1200, - [2518] = 2518, - [2519] = 1158, - [2520] = 1192, - [2521] = 1233, - [2522] = 2522, - [2523] = 2523, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2529, - [2530] = 2530, - [2531] = 1239, - [2532] = 2532, - [2533] = 2533, - [2534] = 2534, - [2535] = 1178, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2542, - [2543] = 2543, - [2544] = 2544, - [2545] = 2545, - [2546] = 2546, - [2547] = 2547, - [2548] = 1159, - [2549] = 2549, - [2550] = 2550, - [2551] = 2551, - [2552] = 2552, - [2553] = 2188, - [2554] = 2554, - [2555] = 2555, - [2556] = 2556, - [2557] = 2557, - [2558] = 2558, - [2559] = 2559, - [2560] = 2560, - [2561] = 2561, - [2562] = 2562, - [2563] = 2563, - [2564] = 1164, - [2565] = 1163, - [2566] = 1238, - [2567] = 2567, - [2568] = 2568, - [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, - [2573] = 1166, - [2574] = 2574, - [2575] = 1141, - [2576] = 1188, - [2577] = 1208, - [2578] = 2578, - [2579] = 2579, - [2580] = 2580, - [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 1236, - [2588] = 2588, - [2589] = 2589, - [2590] = 1211, - [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, - [2596] = 2596, - [2597] = 1227, - [2598] = 2598, - [2599] = 2599, - [2600] = 2600, - [2601] = 2601, - [2602] = 2602, - [2603] = 2603, - [2604] = 2568, - [2605] = 2601, - [2606] = 2529, - [2607] = 2578, - [2608] = 2568, - [2609] = 2585, - [2610] = 2594, - [2611] = 2525, - [2612] = 2530, - [2613] = 2613, - [2614] = 2561, - [2615] = 2559, - [2616] = 2616, - [2617] = 2592, - [2618] = 2618, - [2619] = 2619, - [2620] = 2619, - [2621] = 2596, - [2622] = 1714, - [2623] = 2580, - [2624] = 2618, - [2625] = 1176, - [2626] = 2579, - [2627] = 2572, - [2628] = 1731, - [2629] = 1248, - [2630] = 2613, - [2631] = 1713, - [2632] = 2574, - [2633] = 2552, - [2634] = 2599, - [2635] = 2581, - [2636] = 2599, - [2637] = 2572, - [2638] = 2579, - [2639] = 2580, - [2640] = 2601, - [2641] = 2596, - [2642] = 2555, - [2643] = 1741, - [2644] = 2528, - [2645] = 2586, - [2646] = 2616, - [2647] = 2538, - [2648] = 2583, - [2649] = 2538, - [2650] = 2591, - [2651] = 2588, - [2652] = 2557, - [2653] = 2530, - [2654] = 2529, - [2655] = 2560, - [2656] = 2588, - [2657] = 2583, - [2658] = 2560, - [2659] = 2555, - [2660] = 2592, - [2661] = 2581, - [2662] = 2546, - [2663] = 2552, - [2664] = 2574, - [2665] = 2557, - [2666] = 2585, - [2667] = 2525, - [2668] = 2546, - [2669] = 2669, - [2670] = 1186, - [2671] = 1200, - [2672] = 2669, - [2673] = 1187, - [2674] = 1200, - [2675] = 1248, - [2676] = 1187, - [2677] = 1176, - [2678] = 1186, - [2679] = 2669, - [2680] = 2559, - [2681] = 2586, - [2682] = 2561, - [2683] = 2528, - [2684] = 2578, - [2685] = 2594, - [2686] = 2591, - [2687] = 1233, - [2688] = 1238, - [2689] = 1178, - [2690] = 1133, - [2691] = 1165, - [2692] = 1122, - [2693] = 1154, - [2694] = 1198, - [2695] = 1245, - [2696] = 1244, - [2697] = 1144, - [2698] = 1201, - [2699] = 1196, - [2700] = 1205, - [2701] = 1247, - [2702] = 1170, - [2703] = 1203, - [2704] = 1180, - [2705] = 1207, - [2706] = 1132, - [2707] = 1137, - [2708] = 1134, - [2709] = 1235, - [2710] = 1143, - [2711] = 1145, - [2712] = 1240, - [2713] = 1227, - [2714] = 1124, - [2715] = 1242, - [2716] = 1192, - [2717] = 1131, - [2718] = 1221, - [2719] = 1155, - [2720] = 1246, - [2721] = 1220, - [2722] = 1160, - [2723] = 1241, - [2724] = 1230, - [2725] = 1229, - [2726] = 1219, - [2727] = 1146, - [2728] = 1150, - [2729] = 1151, - [2730] = 1199, - [2731] = 1204, - [2732] = 1212, - [2733] = 1216, - [2734] = 1223, - [2735] = 1193, - [2736] = 1158, - [2737] = 1236, - [2738] = 1167, - [2739] = 1243, - [2740] = 1168, - [2741] = 1126, - [2742] = 1183, - [2743] = 1191, - [2744] = 1186, - [2745] = 1141, - [2746] = 1163, - [2747] = 1202, - [2748] = 1209, - [2749] = 1200, - [2750] = 1215, - [2751] = 1217, - [2752] = 1159, - [2753] = 1239, - [2754] = 1226, - [2755] = 1218, - [2756] = 1127, - [2757] = 1173, - [2758] = 1153, - [2759] = 1248, - [2760] = 1177, - [2761] = 1190, - [2762] = 1187, - [2763] = 1208, - [2764] = 1164, - [2765] = 1147, - [2766] = 1166, - [2767] = 1211, - [2768] = 1188, - [2769] = 1176, - [2770] = 2168, - [2771] = 2181, - [2772] = 2772, - [2773] = 2170, - [2774] = 2188, - [2775] = 2175, - [2776] = 2176, - [2777] = 2168, - [2778] = 2195, - [2779] = 2191, - [2780] = 2184, - [2781] = 2173, - [2782] = 2167, - [2783] = 1741, - [2784] = 1144, - [2785] = 1714, - [2786] = 2173, - [2787] = 2166, - [2788] = 2165, - [2789] = 2180, - [2790] = 2185, - [2791] = 2184, - [2792] = 2176, - [2793] = 2175, - [2794] = 2181, - [2795] = 2197, - [2796] = 2796, - [2797] = 1247, - [2798] = 1713, - [2799] = 1731, - [2800] = 2796, - [2801] = 1170, - [2802] = 2188, - [2803] = 2772, - [2804] = 2191, - [2805] = 2195, - [2806] = 1165, - [2807] = 2170, - [2808] = 2167, - [2809] = 1198, - [2810] = 1245, - [2811] = 2166, - [2812] = 2165, - [2813] = 1205, - [2814] = 1201, - [2815] = 2185, - [2816] = 1244, - [2817] = 2180, - [2818] = 2197, - [2819] = 1191, - [2820] = 2820, - [2821] = 2820, - [2822] = 2197, - [2823] = 2823, - [2824] = 1398, - [2825] = 2181, - [2826] = 2184, - [2827] = 1246, - [2828] = 2185, - [2829] = 2180, - [2830] = 2165, - [2831] = 2166, - [2832] = 2197, - [2833] = 2823, - [2834] = 1399, - [2835] = 2175, - [2836] = 2176, - [2837] = 2167, - [2838] = 2181, - [2839] = 2170, - [2840] = 2195, - [2841] = 2191, - [2842] = 2185, - [2843] = 1147, - [2844] = 2180, - [2845] = 2165, - [2846] = 1177, - [2847] = 1153, - [2848] = 2166, - [2849] = 1173, - [2850] = 2176, - [2851] = 2184, - [2852] = 2167, - [2853] = 2168, - [2854] = 2170, - [2855] = 2195, - [2856] = 1190, - [2857] = 2191, - [2858] = 1218, - [2859] = 2859, - [2860] = 1226, - [2861] = 1201, - [2862] = 1215, - [2863] = 1209, - [2864] = 1202, - [2865] = 1183, - [2866] = 1126, - [2867] = 1168, - [2868] = 1167, - [2869] = 1193, - [2870] = 1223, - [2871] = 1216, - [2872] = 1212, - [2873] = 1204, - [2874] = 1199, - [2875] = 1151, - [2876] = 1154, - [2877] = 1180, - [2878] = 1150, - [2879] = 2173, - [2880] = 1242, - [2881] = 2173, - [2882] = 1146, - [2883] = 1219, - [2884] = 1229, - [2885] = 1192, - [2886] = 1230, - [2887] = 1155, - [2888] = 1160, - [2889] = 1158, - [2890] = 1233, - [2891] = 1243, - [2892] = 1241, - [2893] = 1220, - [2894] = 1221, - [2895] = 1131, - [2896] = 1127, - [2897] = 1124, - [2898] = 1240, - [2899] = 1145, - [2900] = 1143, - [2901] = 1141, - [2902] = 1235, - [2903] = 1134, - [2904] = 1137, - [2905] = 1163, - [2906] = 1200, - [2907] = 1132, - [2908] = 1207, - [2909] = 1227, - [2910] = 1159, - [2911] = 1239, - [2912] = 1248, - [2913] = 1187, - [2914] = 1208, - [2915] = 1176, - [2916] = 1203, - [2917] = 1176, - [2918] = 1170, - [2919] = 1238, - [2920] = 1247, - [2921] = 1205, - [2922] = 2188, - [2923] = 1236, - [2924] = 1248, - [2925] = 1188, - [2926] = 1196, - [2927] = 1166, - [2928] = 2175, - [2929] = 1217, - [2930] = 1164, - [2931] = 2168, - [2932] = 1144, - [2933] = 1244, - [2934] = 1245, - [2935] = 1198, - [2936] = 1165, - [2937] = 1211, - [2938] = 1186, - [2939] = 1178, - [2940] = 1133, - [2941] = 1122, - [2942] = 2188, - [2943] = 2943, - [2944] = 1163, - [2945] = 1226, - [2946] = 1122, - [2947] = 1218, - [2948] = 1190, - [2949] = 1144, - [2950] = 1223, - [2951] = 1203, - [2952] = 1168, - [2953] = 2953, - [2954] = 2954, - [2955] = 1167, - [2956] = 2956, - [2957] = 1409, - [2958] = 2508, - [2959] = 1170, - [2960] = 1199, - [2961] = 2513, - [2962] = 2569, - [2963] = 1205, - [2964] = 2964, - [2965] = 1201, - [2966] = 1153, - [2967] = 2967, - [2968] = 1242, - [2969] = 1173, - [2970] = 1141, - [2971] = 1192, - [2972] = 1154, - [2973] = 1155, - [2974] = 2547, - [2975] = 1183, - [2976] = 2976, - [2977] = 1244, - [2978] = 1180, - [2979] = 2603, - [2980] = 1160, - [2981] = 1158, - [2982] = 1177, - [2983] = 1233, - [2984] = 1243, - [2985] = 1200, - [2986] = 2986, - [2987] = 1163, - [2988] = 2988, - [2989] = 1242, - [2990] = 2990, - [2991] = 1216, - [2992] = 2992, - [2993] = 2600, - [2994] = 1245, - [2995] = 1192, - [2996] = 2539, - [2997] = 1198, - [2998] = 1248, - [2999] = 1154, - [3000] = 1155, - [3001] = 1187, - [3002] = 1165, - [3003] = 3003, - [3004] = 1133, - [3005] = 1211, - [3006] = 3006, - [3007] = 2584, - [3008] = 3008, - [3009] = 3009, - [3010] = 1248, - [3011] = 1180, - [3012] = 1160, - [3013] = 1158, - [3014] = 1411, - [3015] = 1176, - [3016] = 1412, - [3017] = 1151, - [3018] = 1233, - [3019] = 1243, - [3020] = 1241, - [3021] = 3021, - [3022] = 1150, - [3023] = 1141, - [3024] = 1247, - [3025] = 1246, - [3026] = 3026, - [3027] = 1200, - [3028] = 1146, - [3029] = 1193, - [3030] = 1176, - [3031] = 1191, - [3032] = 1164, - [3033] = 1166, - [3034] = 1188, - [3035] = 1239, - [3036] = 1236, - [3037] = 3037, - [3038] = 1159, - [3039] = 3039, - [3040] = 1212, - [3041] = 1178, - [3042] = 1227, - [3043] = 1238, - [3044] = 3044, - [3045] = 1202, - [3046] = 1239, - [3047] = 3047, - [3048] = 2859, - [3049] = 1186, - [3050] = 1211, - [3051] = 1208, - [3052] = 1219, - [3053] = 1187, - [3054] = 1208, - [3055] = 2598, - [3056] = 1126, - [3057] = 1186, - [3058] = 1229, - [3059] = 1196, - [3060] = 1230, - [3061] = 1207, - [3062] = 3062, - [3063] = 3063, - [3064] = 3064, - [3065] = 3065, - [3066] = 3066, - [3067] = 1204, - [3068] = 1398, - [3069] = 3069, - [3070] = 3070, - [3071] = 2188, - [3072] = 1238, - [3073] = 3073, - [3074] = 1236, - [3075] = 3075, - [3076] = 3076, - [3077] = 1188, - [3078] = 1132, - [3079] = 1141, - [3080] = 1166, - [3081] = 1137, - [3082] = 1134, - [3083] = 1147, - [3084] = 1235, - [3085] = 1238, - [3086] = 1163, - [3087] = 1164, - [3088] = 1143, - [3089] = 1145, - [3090] = 3090, - [3091] = 3091, - [3092] = 3092, - [3093] = 1159, - [3094] = 3094, - [3095] = 3095, - [3096] = 1217, - [3097] = 1215, - [3098] = 1240, - [3099] = 1124, - [3100] = 3100, - [3101] = 1159, - [3102] = 1127, - [3103] = 1131, - [3104] = 1221, - [3105] = 1208, - [3106] = 3106, - [3107] = 1220, - [3108] = 1209, - [3109] = 1239, - [3110] = 1155, - [3111] = 3008, - [3112] = 1186, - [3113] = 2569, - [3114] = 3039, - [3115] = 3037, - [3116] = 2603, - [3117] = 1159, - [3118] = 1180, - [3119] = 3106, - [3120] = 2600, - [3121] = 3121, - [3122] = 3026, - [3123] = 1239, - [3124] = 3121, - [3125] = 2953, - [3126] = 1200, - [3127] = 1242, - [3128] = 1238, - [3129] = 3121, - [3130] = 3073, - [3131] = 2964, - [3132] = 3090, - [3133] = 3076, - [3134] = 3075, - [3135] = 2547, - [3136] = 1160, - [3137] = 2967, - [3138] = 3070, - [3139] = 2976, - [3140] = 3121, - [3141] = 2584, - [3142] = 2988, - [3143] = 2954, - [3144] = 3065, - [3145] = 3021, - [3146] = 2508, - [3147] = 2956, - [3148] = 3148, - [3149] = 2598, - [3150] = 3121, - [3151] = 3091, - [3152] = 3069, - [3153] = 1399, - [3154] = 3009, - [3155] = 3062, - [3156] = 3006, - [3157] = 2539, - [3158] = 2513, - [3159] = 3063, - [3160] = 1208, - [3161] = 1164, - [3162] = 1192, - [3163] = 2943, - [3164] = 1163, - [3165] = 1236, - [3166] = 2992, - [3167] = 3003, - [3168] = 1188, - [3169] = 3044, - [3170] = 1158, - [3171] = 3094, - [3172] = 2990, - [3173] = 2986, - [3174] = 1187, - [3175] = 1211, - [3176] = 3121, - [3177] = 1141, - [3178] = 1166, - [3179] = 3047, - [3180] = 3064, - [3181] = 1411, - [3182] = 1412, - [3183] = 3148, - [3184] = 1154, - [3185] = 1233, - [3186] = 1409, - [3187] = 1243, - [3188] = 3066, - [3189] = 3100, - [3190] = 3092, - [3191] = 3095, - [3192] = 3192, - [3193] = 3193, - [3194] = 3194, - [3195] = 3193, - [3196] = 3196, - [3197] = 3194, - [3198] = 3198, - [3199] = 3199, - [3200] = 3192, - [3201] = 3198, - [3202] = 1399, - [3203] = 3192, - [3204] = 2188, - [3205] = 3198, - [3206] = 3192, - [3207] = 3199, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3196, - [3212] = 3194, - [3213] = 2584, - [3214] = 3209, - [3215] = 3196, - [3216] = 3209, - [3217] = 3199, - [3218] = 3210, - [3219] = 3199, - [3220] = 3194, - [3221] = 3192, - [3222] = 3199, - [3223] = 3208, - [3224] = 3192, - [3225] = 3199, - [3226] = 3208, - [3227] = 3194, - [3228] = 3194, - [3229] = 2586, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3232, - [3234] = 2598, - [3235] = 2578, - [3236] = 2594, - [3237] = 2591, - [3238] = 2559, - [3239] = 3232, - [3240] = 3231, - [3241] = 3241, - [3242] = 2561, - [3243] = 3241, - [3244] = 3244, - [3245] = 2528, - [3246] = 3241, - [3247] = 3241, - [3248] = 3248, - [3249] = 3231, - [3250] = 3231, - [3251] = 2528, - [3252] = 3232, - [3253] = 3232, - [3254] = 3254, - [3255] = 3231, - [3256] = 2559, - [3257] = 3231, - [3258] = 2586, - [3259] = 2561, - [3260] = 3241, - [3261] = 3232, - [3262] = 2578, - [3263] = 2594, - [3264] = 3264, - [3265] = 3241, - [3266] = 2591, - [3267] = 1127, - [3268] = 1153, - [3269] = 1199, - [3270] = 2528, - [3271] = 1147, - [3272] = 2290, - [3273] = 2292, - [3274] = 1151, - [3275] = 1150, - [3276] = 1200, - [3277] = 1248, - [3278] = 1146, - [3279] = 1187, - [3280] = 1219, - [3281] = 1229, - [3282] = 1230, - [3283] = 1186, - [3284] = 1176, - [3285] = 2188, - [3286] = 1178, - [3287] = 1204, - [3288] = 1227, - [3289] = 1241, - [3290] = 1243, - [3291] = 1220, - [3292] = 1233, - [3293] = 1158, - [3294] = 1221, - [3295] = 1131, - [3296] = 1127, - [3297] = 1124, - [3298] = 1160, - [3299] = 1240, - [3300] = 1211, - [3301] = 1155, - [3302] = 1192, - [3303] = 1242, - [3304] = 1145, - [3305] = 1143, - [3306] = 1164, - [3307] = 1166, - [3308] = 1212, - [3309] = 1216, - [3310] = 1165, - [3311] = 1235, - [3312] = 1198, - [3313] = 1223, - [3314] = 1134, - [3315] = 1137, - [3316] = 1132, - [3317] = 1245, - [3318] = 1188, - [3319] = 1244, - [3320] = 1122, - [3321] = 1144, - [3322] = 1201, - [3323] = 1207, - [3324] = 1196, - [3325] = 1236, - [3326] = 1205, - [3327] = 1133, - [3328] = 1247, - [3329] = 1227, - [3330] = 1170, - [3331] = 1203, - [3332] = 1180, - [3333] = 1207, - [3334] = 1132, - [3335] = 1137, - [3336] = 1134, - [3337] = 1203, - [3338] = 1235, - [3339] = 1193, - [3340] = 1143, - [3341] = 2173, - [3342] = 1145, - [3343] = 1240, - [3344] = 1124, - [3345] = 1131, - [3346] = 1221, - [3347] = 1220, - [3348] = 1241, - [3349] = 1242, - [3350] = 1230, - [3351] = 1229, - [3352] = 1219, - [3353] = 1146, - [3354] = 1150, - [3355] = 1151, - [3356] = 1199, - [3357] = 1154, - [3358] = 1204, - [3359] = 1192, - [3360] = 1212, - [3361] = 1216, - [3362] = 1223, - [3363] = 1193, - [3364] = 1167, - [3365] = 1168, - [3366] = 1126, - [3367] = 3367, - [3368] = 1154, - [3369] = 1155, - [3370] = 1183, - [3371] = 1191, - [3372] = 1202, - [3373] = 1209, - [3374] = 1215, - [3375] = 1217, - [3376] = 3376, - [3377] = 1226, - [3378] = 1180, - [3379] = 1218, - [3380] = 1196, - [3381] = 1190, - [3382] = 3382, - [3383] = 1173, - [3384] = 1153, - [3385] = 1160, - [3386] = 1158, - [3387] = 1233, - [3388] = 1177, - [3389] = 1243, - [3390] = 2197, - [3391] = 2181, - [3392] = 2185, - [3393] = 2180, - [3394] = 2165, - [3395] = 1167, - [3396] = 1168, - [3397] = 1126, - [3398] = 2166, - [3399] = 2528, - [3400] = 2167, - [3401] = 2168, - [3402] = 2170, - [3403] = 1183, - [3404] = 2195, - [3405] = 2191, - [3406] = 1238, - [3407] = 1246, - [3408] = 1208, - [3409] = 1239, - [3410] = 1159, - [3411] = 1163, - [3412] = 1141, - [3413] = 1191, - [3414] = 1202, - [3415] = 2350, - [3416] = 1209, - [3417] = 2351, - [3418] = 2184, - [3419] = 1170, - [3420] = 1247, - [3421] = 1141, - [3422] = 1163, - [3423] = 1159, - [3424] = 3424, - [3425] = 1239, - [3426] = 1208, - [3427] = 1238, - [3428] = 1236, - [3429] = 1188, - [3430] = 1166, - [3431] = 1164, - [3432] = 1178, - [3433] = 3433, - [3434] = 1211, - [3435] = 2559, - [3436] = 1205, - [3437] = 3437, - [3438] = 1215, - [3439] = 3106, - [3440] = 3440, - [3441] = 1217, - [3442] = 3442, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3446, - [3447] = 3424, - [3448] = 1201, - [3449] = 1144, - [3450] = 1244, - [3451] = 1245, - [3452] = 1198, - [3453] = 1165, - [3454] = 1177, - [3455] = 3455, - [3456] = 2176, - [3457] = 3457, - [3458] = 2559, - [3459] = 1226, - [3460] = 1133, - [3461] = 3461, - [3462] = 1218, - [3463] = 2175, - [3464] = 1190, - [3465] = 1173, - [3466] = 3466, - [3467] = 1122, - [3468] = 2168, - [3469] = 3469, - [3470] = 2173, - [3471] = 2165, - [3472] = 2180, - [3473] = 3473, - [3474] = 3009, - [3475] = 2181, - [3476] = 2185, - [3477] = 2197, - [3478] = 2185, - [3479] = 3479, - [3480] = 3480, - [3481] = 2166, - [3482] = 2197, - [3483] = 2180, - [3484] = 2188, - [3485] = 2165, - [3486] = 2166, - [3487] = 2167, - [3488] = 2168, - [3489] = 2191, - [3490] = 2170, - [3491] = 3491, - [3492] = 2195, - [3493] = 2191, - [3494] = 3494, - [3495] = 2175, - [3496] = 2176, - [3497] = 2181, - [3498] = 3498, - [3499] = 2173, - [3500] = 2175, - [3501] = 3021, - [3502] = 3502, - [3503] = 2195, - [3504] = 2167, - [3505] = 2170, - [3506] = 2184, - [3507] = 2188, - [3508] = 2176, - [3509] = 2184, - [3510] = 3076, - [3511] = 3039, - [3512] = 2859, - [3513] = 3047, - [3514] = 3514, - [3515] = 1399, - [3516] = 1188, - [3517] = 2990, - [3518] = 1238, - [3519] = 3037, - [3520] = 2569, - [3521] = 2513, - [3522] = 2598, - [3523] = 1233, - [3524] = 2986, - [3525] = 1208, - [3526] = 2584, - [3527] = 1243, - [3528] = 3075, - [3529] = 2953, - [3530] = 1239, - [3531] = 3531, - [3532] = 1159, - [3533] = 1154, - [3534] = 1155, - [3535] = 3535, - [3536] = 3531, - [3537] = 2547, - [3538] = 1398, - [3539] = 1236, - [3540] = 1163, - [3541] = 2188, - [3542] = 3542, - [3543] = 1141, - [3544] = 3535, - [3545] = 2508, - [3546] = 2992, - [3547] = 3531, - [3548] = 3003, - [3549] = 2956, - [3550] = 3542, - [3551] = 3044, - [3552] = 3026, - [3553] = 3531, - [3554] = 2539, - [3555] = 3006, - [3556] = 3100, - [3557] = 3535, - [3558] = 2943, - [3559] = 1166, - [3560] = 3531, - [3561] = 3542, - [3562] = 2600, - [3563] = 3070, - [3564] = 3073, - [3565] = 2603, - [3566] = 1164, - [3567] = 3535, - [3568] = 1158, - [3569] = 1160, - [3570] = 3531, - [3571] = 1192, - [3572] = 1180, - [3573] = 1242, - [3574] = 2964, - [3575] = 2967, - [3576] = 2976, - [3577] = 2988, - [3578] = 3062, - [3579] = 3579, - [3580] = 3063, - [3581] = 3064, - [3582] = 3535, - [3583] = 3065, - [3584] = 3066, - [3585] = 3095, - [3586] = 3094, - [3587] = 3092, - [3588] = 3069, - [3589] = 3091, - [3590] = 3090, - [3591] = 2954, - [3592] = 1211, - [3593] = 3593, - [3594] = 3008, - [3595] = 3595, - [3596] = 2197, - [3597] = 3597, - [3598] = 3598, - [3599] = 3599, - [3600] = 3600, - [3601] = 3601, - [3602] = 2557, - [3603] = 3603, - [3604] = 3604, - [3605] = 3605, - [3606] = 2568, - [3607] = 2195, - [3608] = 2560, - [3609] = 2588, - [3610] = 1741, - [3611] = 3599, - [3612] = 3600, - [3613] = 1411, - [3614] = 2619, - [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3618, - [3619] = 3619, - [3620] = 3620, - [3621] = 3621, - [3622] = 3622, - [3623] = 3623, - [3624] = 3599, - [3625] = 3598, - [3626] = 3626, - [3627] = 3627, - [3628] = 3628, - [3629] = 3629, - [3630] = 3600, - [3631] = 2583, - [3632] = 1412, - [3633] = 3633, - [3634] = 2188, - [3635] = 3635, - [3636] = 3636, - [3637] = 2555, - [3638] = 3599, - [3639] = 3639, - [3640] = 3640, - [3641] = 3595, - [3642] = 3601, - [3643] = 2175, - [3644] = 3644, - [3645] = 2176, - [3646] = 3646, - [3647] = 3599, - [3648] = 3599, - [3649] = 2596, - [3650] = 3629, - [3651] = 2530, - [3652] = 3652, - [3653] = 3653, - [3654] = 3600, - [3655] = 3655, - [3656] = 2184, - [3657] = 3657, - [3658] = 3658, - [3659] = 3659, - [3660] = 3600, - [3661] = 3661, - [3662] = 2580, - [3663] = 3663, - [3664] = 1714, - [3665] = 3665, - [3666] = 2538, - [3667] = 3661, - [3668] = 3600, - [3669] = 3669, - [3670] = 3600, - [3671] = 1248, - [3672] = 2529, - [3673] = 3673, - [3674] = 2173, - [3675] = 2188, - [3676] = 2197, - [3677] = 3677, - [3678] = 3599, - [3679] = 2170, - [3680] = 2572, - [3681] = 3661, - [3682] = 3599, - [3683] = 2613, - [3684] = 3635, - [3685] = 2618, - [3686] = 2599, - [3687] = 3653, - [3688] = 3605, - [3689] = 3599, - [3690] = 3617, - [3691] = 3640, - [3692] = 3599, - [3693] = 1176, - [3694] = 3600, - [3695] = 2616, - [3696] = 3696, - [3697] = 2191, - [3698] = 3599, - [3699] = 3595, - [3700] = 2546, - [3701] = 2181, - [3702] = 3702, - [3703] = 3600, - [3704] = 2168, - [3705] = 3663, - [3706] = 2167, - [3707] = 3620, - [3708] = 3661, - [3709] = 1731, - [3710] = 3635, - [3711] = 3711, - [3712] = 3712, - [3713] = 3600, - [3714] = 3714, - [3715] = 2574, - [3716] = 3635, - [3717] = 3600, - [3718] = 2579, - [3719] = 2181, - [3720] = 3720, - [3721] = 1713, - [3722] = 2185, - [3723] = 3653, - [3724] = 2592, - [3725] = 1409, - [3726] = 2601, - [3727] = 2180, - [3728] = 2166, - [3729] = 3605, - [3730] = 3617, - [3731] = 2552, - [3732] = 2188, - [3733] = 3599, - [3734] = 3734, - [3735] = 3735, - [3736] = 2165, - [3737] = 2165, - [3738] = 2166, - [3739] = 3739, - [3740] = 3740, - [3741] = 3626, - [3742] = 3600, - [3743] = 3601, - [3744] = 2175, - [3745] = 2173, - [3746] = 2581, - [3747] = 3600, - [3748] = 2176, - [3749] = 3599, - [3750] = 2585, - [3751] = 2184, - [3752] = 3629, - [3753] = 3753, - [3754] = 3600, - [3755] = 3755, - [3756] = 2167, - [3757] = 2168, - [3758] = 2185, - [3759] = 2170, - [3760] = 2525, - [3761] = 2195, - [3762] = 2191, - [3763] = 3763, - [3764] = 3764, - [3765] = 2180, - [3766] = 3661, - [3767] = 3599, - [3768] = 2175, - [3769] = 3769, - [3770] = 1200, - [3771] = 3769, - [3772] = 3769, - [3773] = 3769, - [3774] = 2181, - [3775] = 3775, - [3776] = 1187, - [3777] = 1155, - [3778] = 1186, - [3779] = 2195, - [3780] = 1180, - [3781] = 3473, - [3782] = 1160, - [3783] = 2165, - [3784] = 2197, - [3785] = 3775, - [3786] = 3775, - [3787] = 2185, - [3788] = 2176, - [3789] = 3775, - [3790] = 1242, - [3791] = 2184, - [3792] = 2167, - [3793] = 2166, - [3794] = 3775, - [3795] = 3769, - [3796] = 3775, - [3797] = 2173, - [3798] = 3775, - [3799] = 3769, - [3800] = 2188, - [3801] = 3801, - [3802] = 3775, - [3803] = 3769, - [3804] = 3775, - [3805] = 3264, - [3806] = 2168, - [3807] = 2513, - [3808] = 3769, - [3809] = 3809, - [3810] = 3775, - [3811] = 3775, - [3812] = 1192, - [3813] = 3775, - [3814] = 2191, - [3815] = 3769, - [3816] = 2170, - [3817] = 3769, - [3818] = 3769, - [3819] = 3769, - [3820] = 2508, - [3821] = 3775, - [3822] = 3491, - [3823] = 3775, - [3824] = 2180, - [3825] = 3769, - [3826] = 2518, - [3827] = 1243, - [3828] = 3769, - [3829] = 3829, - [3830] = 1154, - [3831] = 3801, - [3832] = 1158, - [3833] = 1233, - [3834] = 3834, - [3835] = 2149, - [3836] = 2522, - [3837] = 3473, - [3838] = 3838, - [3839] = 3809, - [3840] = 2554, - [3841] = 2550, - [3842] = 2603, - [3843] = 3843, - [3844] = 3844, - [3845] = 1238, - [3846] = 2526, - [3847] = 3847, - [3848] = 2556, - [3849] = 2160, - [3850] = 2569, - [3851] = 2600, - [3852] = 1166, - [3853] = 2549, - [3854] = 2532, - [3855] = 2188, - [3856] = 2523, - [3857] = 2563, - [3858] = 3491, - [3859] = 1239, - [3860] = 2543, - [3861] = 2562, - [3862] = 2567, - [3863] = 2570, - [3864] = 2551, - [3865] = 3865, - [3866] = 1178, - [3867] = 2524, - [3868] = 2533, - [3869] = 2559, - [3870] = 3870, - [3871] = 3248, - [3872] = 2542, - [3873] = 2188, - [3874] = 1141, - [3875] = 2544, - [3876] = 2539, - [3877] = 2527, - [3878] = 2537, - [3879] = 2582, - [3880] = 2536, - [3881] = 2528, - [3882] = 2540, - [3883] = 3479, - [3884] = 2591, - [3885] = 2534, - [3886] = 2541, - [3887] = 3502, - [3888] = 1227, - [3889] = 1159, - [3890] = 1188, - [3891] = 2586, - [3892] = 2602, - [3893] = 2561, - [3894] = 2161, - [3895] = 1208, - [3896] = 2595, - [3897] = 1164, - [3898] = 2594, - [3899] = 2578, - [3900] = 1211, - [3901] = 2547, - [3902] = 1236, - [3903] = 2545, - [3904] = 3498, - [3905] = 2593, - [3906] = 3834, - [3907] = 2584, - [3908] = 3908, - [3909] = 2589, - [3910] = 2598, - [3911] = 2558, - [3912] = 1163, - [3913] = 2571, - [3914] = 3829, - [3915] = 3915, - [3916] = 3916, - [3917] = 3621, - [3918] = 3734, - [3919] = 3696, - [3920] = 3658, - [3921] = 3843, - [3922] = 3922, - [3923] = 2591, - [3924] = 3924, - [3925] = 3657, - [3926] = 3655, - [3927] = 2528, - [3928] = 2561, - [3929] = 2586, - [3930] = 3652, - [3931] = 3931, - [3932] = 3677, - [3933] = 2559, - [3934] = 3633, - [3935] = 3935, - [3936] = 2528, - [3937] = 3937, - [3938] = 3479, - [3939] = 3603, - [3940] = 2594, - [3941] = 3636, - [3942] = 3639, - [3943] = 2598, - [3944] = 3944, - [3945] = 1238, - [3946] = 3764, - [3947] = 3712, - [3948] = 3579, - [3949] = 3949, - [3950] = 3950, - [3951] = 1208, - [3952] = 3847, - [3953] = 1239, - [3954] = 1159, - [3955] = 3739, - [3956] = 2578, - [3957] = 3502, - [3958] = 1163, - [3959] = 3959, - [3960] = 1141, - [3961] = 3735, - [3962] = 3962, - [3963] = 3665, - [3964] = 3763, - [3965] = 3965, - [3966] = 3498, - [3967] = 2194, - [3968] = 3968, - [3969] = 3604, - [3970] = 2559, - [3971] = 3740, - [3972] = 3627, - [3973] = 3973, - [3974] = 2584, - [3975] = 3975, - [3976] = 3976, - [3977] = 3977, - [3978] = 3978, - [3979] = 3979, - [3980] = 3618, - [3981] = 3622, - [3982] = 1238, - [3983] = 3658, - [3984] = 1141, - [3985] = 3696, - [3986] = 2584, - [3987] = 1163, - [3988] = 2598, - [3989] = 1208, - [3990] = 1238, - [3991] = 3367, - [3992] = 1239, - [3993] = 3677, - [3994] = 3968, - [3995] = 3627, - [3996] = 3763, - [3997] = 3997, - [3998] = 3604, - [3999] = 3579, - [4000] = 1159, - [4001] = 3735, - [4002] = 3639, - [4003] = 3603, - [4004] = 4004, - [4005] = 3937, - [4006] = 3712, - [4007] = 3739, - [4008] = 3622, - [4009] = 3618, - [4010] = 3931, - [4011] = 1163, - [4012] = 3636, - [4013] = 3764, - [4014] = 1159, - [4015] = 1141, - [4016] = 3657, - [4017] = 3734, - [4018] = 3652, - [4019] = 3740, - [4020] = 3621, - [4021] = 1239, - [4022] = 3655, - [4023] = 3665, - [4024] = 1208, - [4025] = 3633, - [4026] = 3997, - [4027] = 4027, - [4028] = 4027, - [4029] = 2559, - [4030] = 4030, - [4031] = 4031, - [4032] = 4032, - [4033] = 4033, - [4034] = 4034, - [4035] = 4035, - [4036] = 4032, - [4037] = 4037, - [4038] = 2559, - [4039] = 4032, - [4040] = 4040, - [4041] = 2586, - [4042] = 4027, - [4043] = 2561, - [4044] = 4027, - [4045] = 2591, - [4046] = 4033, - [4047] = 4047, - [4048] = 2591, - [4049] = 4032, - [4050] = 2594, - [4051] = 4033, - [4052] = 4033, - [4053] = 2578, - [4054] = 4054, - [4055] = 4055, - [4056] = 4032, - [4057] = 2528, - [4058] = 4027, - [4059] = 4059, - [4060] = 2578, - [4061] = 3491, - [4062] = 4062, - [4063] = 4033, - [4064] = 4064, - [4065] = 2586, - [4066] = 4066, - [4067] = 2528, - [4068] = 2561, - [4069] = 2594, - [4070] = 4070, - [4071] = 4071, - [4072] = 4072, - [4073] = 4073, - [4074] = 4074, - [4075] = 4072, - [4076] = 4076, - [4077] = 4076, - [4078] = 4078, - [4079] = 4037, - [4080] = 4080, - [4081] = 4081, - [4082] = 4078, - [4083] = 4083, - [4084] = 4084, - [4085] = 4085, - [4086] = 4086, - [4087] = 4087, - [4088] = 4074, - [4089] = 4072, - [4090] = 4090, - [4091] = 4074, - [4092] = 4071, - [4093] = 4093, - [4094] = 4094, - [4095] = 4095, - [4096] = 4086, - [4097] = 4097, - [4098] = 4098, - [4099] = 4099, - [4100] = 4100, - [4101] = 4101, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, - [4105] = 4102, - [4106] = 4106, - [4107] = 4106, - [4108] = 4108, - [4109] = 4099, - [4110] = 4108, - [4111] = 4098, - [4112] = 4101, - [4113] = 4071, - [4114] = 4083, - [4115] = 4104, - [4116] = 2528, - [4117] = 4084, - [4118] = 4073, - [4119] = 4108, - [4120] = 4100, - [4121] = 4121, - [4122] = 4093, - [4123] = 4070, - [4124] = 4100, - [4125] = 4086, - [4126] = 4126, - [4127] = 4090, - [4128] = 4098, - [4129] = 4129, - [4130] = 4129, - [4131] = 4129, - [4132] = 4132, - [4133] = 2616, - [4134] = 4134, - [4135] = 4078, - [4136] = 4136, - [4137] = 4137, - [4138] = 4126, - [4139] = 4106, - [4140] = 4081, - [4141] = 4141, - [4142] = 4090, - [4143] = 4126, - [4144] = 4081, - [4145] = 4103, - [4146] = 4080, - [4147] = 4097, - [4148] = 4070, - [4149] = 4055, - [4150] = 2613, - [4151] = 4080, - [4152] = 4078, - [4153] = 4073, - [4154] = 4084, - [4155] = 4097, - [4156] = 4121, - [4157] = 4083, - [4158] = 4126, - [4159] = 4101, - [4160] = 4160, - [4161] = 2559, - [4162] = 4087, - [4163] = 4031, - [4164] = 4078, - [4165] = 4126, - [4166] = 4103, - [4167] = 4106, - [4168] = 4136, - [4169] = 4169, - [4170] = 4086, - [4171] = 3950, - [4172] = 4087, - [4173] = 4081, - [4174] = 4081, - [4175] = 4136, - [4176] = 4086, - [4177] = 4177, - [4178] = 4071, - [4179] = 4098, - [4180] = 4078, - [4181] = 4093, - [4182] = 4093, - [4183] = 4160, - [4184] = 4129, - [4185] = 4104, - [4186] = 4098, - [4187] = 4080, - [4188] = 4086, - [4189] = 4106, - [4190] = 4040, - [4191] = 4066, - [4192] = 4071, - [4193] = 4080, - [4194] = 4121, - [4195] = 4081, - [4196] = 4072, - [4197] = 4093, - [4198] = 4062, - [4199] = 2619, - [4200] = 4102, - [4201] = 4129, - [4202] = 4099, - [4203] = 4160, - [4204] = 4076, - [4205] = 2618, - [4206] = 4072, - [4207] = 4207, - [4208] = 4208, - [4209] = 4209, - [4210] = 4210, - [4211] = 4103, - [4212] = 4103, - [4213] = 1166, - [4214] = 4214, - [4215] = 4215, - [4216] = 2160, - [4217] = 4137, - [4218] = 2149, - [4219] = 4219, - [4220] = 1188, - [4221] = 2161, - [4222] = 1211, - [4223] = 1236, - [4224] = 4224, - [4225] = 4225, - [4226] = 4226, - [4227] = 4227, - [4228] = 4228, - [4229] = 4209, - [4230] = 4230, - [4231] = 4231, - [4232] = 3950, - [4233] = 4085, - [4234] = 4234, - [4235] = 4132, - [4236] = 4236, - [4237] = 4237, - [4238] = 4238, - [4239] = 1164, - [4240] = 4141, - [4241] = 4241, - [4242] = 4242, - [4243] = 4243, - [4244] = 4244, - [4245] = 4245, - [4246] = 4246, - [4247] = 4247, - [4248] = 4248, - [4249] = 4249, - [4250] = 4250, - [4251] = 4251, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 4241, - [4256] = 4256, - [4257] = 4228, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4231, - [4262] = 4236, - [4263] = 4040, - [4264] = 4264, - [4265] = 4265, - [4266] = 4266, - [4267] = 4237, - [4268] = 4268, - [4269] = 4269, - [4270] = 4270, - [4271] = 4271, - [4272] = 4272, - [4273] = 4031, - [4274] = 4274, - [4275] = 4004, - [4276] = 4276, - [4277] = 4277, - [4278] = 4278, - [4279] = 4279, - [4280] = 4280, - [4281] = 4281, - [4282] = 4062, - [4283] = 4283, - [4284] = 4215, - [4285] = 4066, - [4286] = 4230, - [4287] = 4055, - [4288] = 2194, - [4289] = 4289, - [4290] = 4290, - [4291] = 4037, - [4292] = 4292, - [4293] = 4293, - [4294] = 4294, - [4295] = 4260, - [4296] = 4296, - [4297] = 4297, - [4298] = 4296, - [4299] = 4294, - [4300] = 4300, - [4301] = 4296, - [4302] = 4037, - [4303] = 4271, - [4304] = 4304, - [4305] = 4305, - [4306] = 4305, - [4307] = 4307, - [4308] = 4308, - [4309] = 4297, - [4310] = 3491, - [4311] = 4311, - [4312] = 4294, - [4313] = 4313, - [4314] = 4311, - [4315] = 4315, - [4316] = 4244, - [4317] = 4308, - [4318] = 4305, - [4319] = 4305, - [4320] = 4320, - [4321] = 4308, - [4322] = 4248, - [4323] = 4323, - [4324] = 4258, - [4325] = 4305, - [4326] = 4305, - [4327] = 4259, - [4328] = 4311, - [4329] = 4246, - [4330] = 4330, - [4331] = 4300, - [4332] = 4305, - [4333] = 4333, - [4334] = 4334, - [4335] = 4335, - [4336] = 4304, - [4337] = 4335, - [4338] = 4265, - [4339] = 4339, - [4340] = 3367, - [4341] = 4311, - [4342] = 4297, - [4343] = 4249, - [4344] = 4031, - [4345] = 4055, - [4346] = 4304, - [4347] = 4305, - [4348] = 4305, - [4349] = 4274, - [4350] = 4304, - [4351] = 4335, - [4352] = 4300, - [4353] = 4305, - [4354] = 4305, - [4355] = 3473, - [4356] = 4250, - [4357] = 4335, - [4358] = 4294, - [4359] = 4300, - [4360] = 4360, - [4361] = 4004, - [4362] = 4362, - [4363] = 3950, - [4364] = 4364, - [4365] = 4305, - [4366] = 4040, - [4367] = 4085, - [4368] = 4368, - [4369] = 4311, - [4370] = 4305, - [4371] = 4305, - [4372] = 4372, - [4373] = 4335, - [4374] = 4304, - [4375] = 4300, - [4376] = 4066, - [4377] = 4062, - [4378] = 4294, - [4379] = 4308, - [4380] = 4305, - [4381] = 4264, - [4382] = 4297, - [4383] = 4383, - [4384] = 4296, - [4385] = 4296, - [4386] = 4297, - [4387] = 4308, - [4388] = 4388, - [4389] = 4320, - [4390] = 4390, - [4391] = 4241, - [4392] = 4392, - [4393] = 4393, - [4394] = 4394, - [4395] = 4334, - [4396] = 4396, - [4397] = 4397, - [4398] = 4398, - [4399] = 4399, - [4400] = 4400, - [4401] = 4401, - [4402] = 4402, - [4403] = 4364, - [4404] = 4404, - [4405] = 4405, - [4406] = 4368, - [4407] = 4407, - [4408] = 4408, - [4409] = 4409, - [4410] = 4241, - [4411] = 1248, - [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4416, - [4417] = 4417, - [4418] = 4307, - [4419] = 1176, - [4420] = 4420, - [4421] = 4330, - [4422] = 4422, - [4423] = 4085, - [4424] = 4424, - [4425] = 4425, - [4426] = 4426, - [4427] = 3636, - [4428] = 3639, - [4429] = 4429, - [4430] = 3621, - [4431] = 3618, - [4432] = 3622, - [4433] = 3627, - [4434] = 4417, - [4435] = 4390, - [4436] = 3763, - [4437] = 3712, - [4438] = 3677, - [4439] = 3603, - [4440] = 4440, - [4441] = 3652, - [4442] = 4426, - [4443] = 3655, - [4444] = 3657, - [4445] = 4445, - [4446] = 4446, - [4447] = 3658, - [4448] = 4413, - [4449] = 4449, - [4450] = 3696, - [4451] = 4388, - [4452] = 4452, - [4453] = 3734, - [4454] = 3735, - [4455] = 4455, - [4456] = 4456, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 3740, - [4461] = 4426, - [4462] = 3739, - [4463] = 2161, - [4464] = 3633, - [4465] = 4426, - [4466] = 4466, - [4467] = 4426, - [4468] = 4468, - [4469] = 2160, - [4470] = 3764, - [4471] = 4471, - [4472] = 3665, - [4473] = 4473, - [4474] = 4474, - [4475] = 4393, - [4476] = 2149, - [4477] = 4426, - [4478] = 3604, - [4479] = 4479, - [4480] = 4480, - [4481] = 4481, - [4482] = 4482, - [4483] = 4483, - [4484] = 4414, - [4485] = 4426, - [4486] = 4404, - [4487] = 4415, - [4488] = 4488, - [4489] = 4244, - [4490] = 4265, - [4491] = 4491, - [4492] = 4492, - [4493] = 4426, - [4494] = 4259, - [4495] = 4246, - [4496] = 4249, - [4497] = 1187, - [4498] = 4426, - [4499] = 1141, - [4500] = 1163, - [4501] = 1159, - [4502] = 1239, - [4503] = 4250, - [4504] = 1208, - [4505] = 1238, - [4506] = 4506, - [4507] = 4507, - [4508] = 4508, - [4509] = 4509, - [4510] = 4510, - [4511] = 4511, - [4512] = 1200, - [4513] = 4426, - [4514] = 4426, - [4515] = 4426, - [4516] = 4426, - [4517] = 2584, - [4518] = 2598, - [4519] = 4242, - [4520] = 4426, - [4521] = 4521, - [4522] = 2956, - [4523] = 2953, - [4524] = 4524, - [4525] = 4525, - [4526] = 4416, - [4527] = 4527, - [4528] = 4528, - [4529] = 4529, - [4530] = 4412, - [4531] = 4531, - [4532] = 4532, - [4533] = 4420, - [4534] = 4534, - [4535] = 4535, - [4536] = 4536, - [4537] = 4409, - [4538] = 4538, - [4539] = 4408, - [4540] = 4540, - [4541] = 4407, - [4542] = 4542, - [4543] = 4543, - [4544] = 4544, - [4545] = 4545, - [4546] = 4546, - [4547] = 4547, - [4548] = 4548, - [4549] = 4549, - [4550] = 4550, - [4551] = 4551, - [4552] = 4552, - [4553] = 4553, - [4554] = 4554, - [4555] = 4555, - [4556] = 4556, - [4557] = 4557, - [4558] = 4558, - [4559] = 4559, - [4560] = 4560, - [4561] = 4561, - [4562] = 4562, - [4563] = 4563, - [4564] = 4564, - [4565] = 4565, - [4566] = 4566, - [4567] = 4567, - [4568] = 4568, - [4569] = 4569, - [4570] = 4426, - [4571] = 4571, - [4572] = 4572, - [4573] = 4573, - [4574] = 4422, - [4575] = 4575, - [4576] = 4576, - [4577] = 4577, - [4578] = 4578, - [4579] = 4579, - [4580] = 4580, - [4581] = 4402, - [4582] = 4399, - [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 4401, - [4587] = 4587, - [4588] = 4400, - [4589] = 4589, - [4590] = 4590, - [4591] = 4591, - [4592] = 4592, - [4593] = 4593, - [4594] = 4594, - [4595] = 4595, - [4596] = 4596, - [4597] = 4597, - [4598] = 4598, - [4599] = 4599, - [4600] = 4600, - [4601] = 4601, - [4602] = 4602, - [4603] = 4603, - [4604] = 4604, - [4605] = 1227, - [4606] = 4606, - [4607] = 4607, - [4608] = 4396, - [4609] = 4609, - [4610] = 4610, - [4611] = 4398, - [4612] = 1178, - [4613] = 4613, - [4614] = 4614, - [4615] = 4615, - [4616] = 4616, - [4617] = 4617, - [4618] = 4618, - [4619] = 4619, - [4620] = 4620, - [4621] = 4621, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, - [4627] = 4627, - [4628] = 4625, - [4629] = 4629, - [4630] = 4626, - [4631] = 4631, - [4632] = 4265, - [4633] = 4633, - [4634] = 4634, - [4635] = 4249, - [4636] = 4626, - [4637] = 4637, - [4638] = 4638, - [4639] = 4639, - [4640] = 4627, - [4641] = 4625, - [4642] = 4634, - [4643] = 4633, - [4644] = 4634, - [4645] = 4638, - [4646] = 4634, - [4647] = 4633, - [4648] = 4648, - [4649] = 4259, - [4650] = 4650, - [4651] = 4651, - [4652] = 4625, - [4653] = 4653, - [4654] = 4654, - [4655] = 4618, - [4656] = 4656, - [4657] = 4657, - [4658] = 4244, - [4659] = 4250, - [4660] = 4633, - [4661] = 4661, - [4662] = 4625, - [4663] = 4627, - [4664] = 4664, - [4665] = 4648, - [4666] = 4666, - [4667] = 4667, - [4668] = 4668, - [4669] = 4626, - [4670] = 4670, - [4671] = 4671, - [4672] = 4627, - [4673] = 4673, - [4674] = 4633, - [4675] = 4675, - [4676] = 4626, - [4677] = 4677, - [4678] = 4678, - [4679] = 4634, - [4680] = 4638, - [4681] = 4681, - [4682] = 4633, - [4683] = 4683, - [4684] = 4683, - [4685] = 4685, - [4686] = 4686, - [4687] = 4648, - [4688] = 4688, - [4689] = 4648, - [4690] = 4683, - [4691] = 4691, - [4692] = 4692, - [4693] = 4693, - [4694] = 4691, - [4695] = 4638, - [4696] = 4626, - [4697] = 4627, - [4698] = 4698, - [4699] = 4625, - [4700] = 4691, - [4701] = 4626, - [4702] = 4627, - [4703] = 4683, - [4704] = 4638, - [4705] = 4648, - [4706] = 4614, - [4707] = 4683, - [4708] = 4708, - [4709] = 4626, - [4710] = 4627, - [4711] = 4625, - [4712] = 4246, - [4713] = 4633, - [4714] = 4606, - [4715] = 4648, - [4716] = 4691, - [4717] = 4638, - [4718] = 4634, - [4719] = 4638, - [4720] = 4634, - [4721] = 4627, - [4722] = 2194, - [4723] = 4634, - [4724] = 4633, - [4725] = 4648, - [4726] = 4625, - [4727] = 4691, - [4728] = 4691, - [4729] = 4625, - [4730] = 4638, - [4731] = 4638, - [4732] = 4691, - [4733] = 4626, - [4734] = 4627, - [4735] = 4625, - [4736] = 4648, - [4737] = 4634, - [4738] = 4633, - [4739] = 4648, - [4740] = 4691, - [4741] = 4638, - [4742] = 4638, - [4743] = 4633, - [4744] = 4691, - [4745] = 4626, - [4746] = 4626, - [4747] = 4627, - [4748] = 4627, - [4749] = 4691, - [4750] = 4750, - [4751] = 4637, - [4752] = 4634, - [4753] = 4633, - [4754] = 4754, - [4755] = 4648, - [4756] = 4691, - [4757] = 4638, - [4758] = 4648, - [4759] = 4627, - [4760] = 4625, - [4761] = 4634, - [4762] = 4648, - [4763] = 4633, - [4764] = 4648, - [4765] = 4625, - [4766] = 4633, - [4767] = 4634, - [4768] = 4625, - [4769] = 4627, - [4770] = 4626, - [4771] = 4683, - [4772] = 4637, - [4773] = 4638, - [4774] = 4774, - [4775] = 4626, - [4776] = 4626, - [4777] = 4627, - [4778] = 4634, - [4779] = 4634, - [4780] = 4638, - [4781] = 4691, - [4782] = 4633, - [4783] = 4648, - [4784] = 3665, - [4785] = 4691, - [4786] = 4691, - [4787] = 4638, - [4788] = 4648, - [4789] = 4789, - [4790] = 4790, - [4791] = 4691, - [4792] = 4633, - [4793] = 4793, - [4794] = 4626, - [4795] = 3604, - [4796] = 4625, - [4797] = 4627, - [4798] = 4625, - [4799] = 4634, - [4800] = 4333, - [4801] = 4801, - [4802] = 4414, - [4803] = 4693, - [4804] = 4804, - [4805] = 4805, - [4806] = 4806, - [4807] = 4524, - [4808] = 4808, - [4809] = 4809, - [4810] = 4808, - [4811] = 4811, - [4812] = 4808, - [4813] = 4811, - [4814] = 4811, - [4815] = 4815, - [4816] = 4811, - [4817] = 4808, - [4818] = 4818, - [4819] = 4808, - [4820] = 4673, - [4821] = 4821, - [4822] = 4822, - [4823] = 4815, - [4824] = 4824, - [4825] = 4808, - [4826] = 4826, - [4827] = 3367, - [4828] = 4811, - [4829] = 4818, - [4830] = 4808, - [4831] = 4808, - [4832] = 4808, - [4833] = 4360, - [4834] = 4808, - [4835] = 4835, - [4836] = 4416, - [4837] = 4808, - [4838] = 4754, - [4839] = 4811, - [4840] = 4840, - [4841] = 4841, - [4842] = 4808, - [4843] = 4843, - [4844] = 4808, - [4845] = 4811, - [4846] = 4808, - [4847] = 4808, - [4848] = 4808, - [4849] = 4808, - [4850] = 4808, - [4851] = 4811, - [4852] = 4808, - [4853] = 4853, - [4854] = 4815, - [4855] = 4811, - [4856] = 4808, - [4857] = 4857, - [4858] = 4811, - [4859] = 4390, - [4860] = 4668, - [4861] = 4811, - [4862] = 4650, - [4863] = 4811, - [4864] = 4864, - [4865] = 4811, - [4866] = 4339, - [4867] = 4811, - [4868] = 4808, - [4869] = 4869, - [4870] = 4420, - [4871] = 4404, - [4872] = 4670, - [4873] = 4808, - [4874] = 4671, - [4875] = 4808, - [4876] = 4631, - [4877] = 4688, - [4878] = 4878, - [4879] = 4525, - [4880] = 4880, - [4881] = 4881, - [4882] = 4678, - [4883] = 4883, - [4884] = 4884, - [4885] = 4885, - [4886] = 4886, - [4887] = 4881, - [4888] = 4880, - [4889] = 4884, - [4890] = 4890, - [4891] = 4840, - [4892] = 4892, - [4893] = 4893, - [4894] = 4677, - [4895] = 4895, - [4896] = 4896, - [4897] = 4897, - [4898] = 4881, - [4899] = 4899, - [4900] = 4750, - [4901] = 4881, - [4902] = 4885, - [4903] = 4903, - [4904] = 4841, - [4905] = 1238, - [4906] = 4906, - [4907] = 4885, - [4908] = 1208, - [4909] = 4909, - [4910] = 4880, - [4911] = 4681, - [4912] = 4606, - [4913] = 4821, - [4914] = 4826, - [4915] = 4915, - [4916] = 1239, - [4917] = 4917, - [4918] = 4667, - [4919] = 4915, - [4920] = 4878, - [4921] = 4892, - [4922] = 4922, - [4923] = 4884, - [4924] = 4606, - [4925] = 1159, - [4926] = 4881, - [4927] = 4927, - [4928] = 4928, - [4929] = 4885, - [4930] = 4903, - [4931] = 4822, - [4932] = 1163, - [4933] = 4903, - [4934] = 4666, - [4935] = 4935, - [4936] = 4824, - [4937] = 4937, - [4938] = 4664, - [4939] = 4922, - [4940] = 4880, - [4941] = 4941, - [4942] = 4614, - [4943] = 4943, - [4944] = 4892, - [4945] = 4881, - [4946] = 4899, - [4947] = 4524, - [4948] = 4948, - [4949] = 4685, - [4950] = 4525, - [4951] = 4686, - [4952] = 2584, - [4953] = 4692, - [4954] = 4954, - [4955] = 4886, - [4956] = 4903, - [4957] = 1141, - [4958] = 4890, - [4959] = 4959, - [4960] = 4906, - [4961] = 4884, - [4962] = 4614, - [4963] = 2598, - [4964] = 4964, - [4965] = 4965, - [4966] = 4416, - [4967] = 4667, - [4968] = 4968, - [4969] = 4968, - [4970] = 4666, - [4971] = 4971, - [4972] = 4972, - [4973] = 4973, - [4974] = 3264, - [4975] = 4975, - [4976] = 4968, - [4977] = 3248, - [4978] = 4975, - [4979] = 4971, - [4980] = 4980, - [4981] = 4968, - [4982] = 4686, - [4983] = 4971, - [4984] = 4984, - [4985] = 4968, - [4986] = 4973, - [4987] = 1154, - [4988] = 1180, - [4989] = 4989, - [4990] = 4990, - [4991] = 4968, - [4992] = 4992, - [4993] = 4993, - [4994] = 4677, - [4995] = 4664, - [4996] = 4968, - [4997] = 4997, - [4998] = 4681, - [4999] = 4999, - [5000] = 5000, - [5001] = 4968, - [5002] = 4968, - [5003] = 5003, - [5004] = 4968, - [5005] = 5005, - [5006] = 4968, - [5007] = 4390, - [5008] = 5008, - [5009] = 5009, - [5010] = 4999, - [5011] = 5011, - [5012] = 5012, - [5013] = 5013, - [5014] = 5014, - [5015] = 5015, - [5016] = 4678, - [5017] = 5017, - [5018] = 5018, - [5019] = 5019, - [5020] = 4869, - [5021] = 4975, - [5022] = 5022, - [5023] = 4993, - [5024] = 5024, - [5025] = 4685, - [5026] = 4989, - [5027] = 4968, - [5028] = 4692, - [5029] = 4975, - [5030] = 5030, - [5031] = 4968, - [5032] = 4993, - [5033] = 4750, - [5034] = 5034, - [5035] = 4420, - [5036] = 5030, - [5037] = 5030, - [5038] = 4968, - [5039] = 5039, - [5040] = 5040, - [5041] = 4390, - [5042] = 1192, - [5043] = 5034, - [5044] = 5044, - [5045] = 5009, - [5046] = 5046, - [5047] = 5017, - [5048] = 4990, - [5049] = 1180, - [5050] = 1233, - [5051] = 4972, - [5052] = 5003, - [5053] = 5053, - [5054] = 5054, - [5055] = 5055, - [5056] = 5040, - [5057] = 1158, - [5058] = 4416, - [5059] = 5059, - [5060] = 1160, - [5061] = 5061, - [5062] = 5008, - [5063] = 1243, - [5064] = 5064, - [5065] = 1242, - [5066] = 5022, - [5067] = 1154, - [5068] = 5024, - [5069] = 4869, - [5070] = 5055, - [5071] = 5071, - [5072] = 5072, - [5073] = 5000, - [5074] = 5059, - [5075] = 4992, - [5076] = 1155, - [5077] = 4997, - [5078] = 4980, - [5079] = 5079, - [5080] = 4420, - [5081] = 5081, - [5082] = 5082, - [5083] = 1158, - [5084] = 1163, - [5085] = 1192, - [5086] = 3491, - [5087] = 2208, - [5088] = 1239, - [5089] = 1242, - [5090] = 5090, - [5091] = 1164, - [5092] = 3702, - [5093] = 1211, - [5094] = 1166, - [5095] = 1188, - [5096] = 2598, - [5097] = 1236, - [5098] = 1243, - [5099] = 5014, - [5100] = 1180, - [5101] = 5015, - [5102] = 5102, - [5103] = 1160, - [5104] = 3711, - [5105] = 1159, - [5106] = 5106, - [5107] = 3720, - [5108] = 1203, - [5109] = 5109, - [5110] = 1155, - [5111] = 1208, - [5112] = 1238, - [5113] = 5113, - [5114] = 1154, - [5115] = 1141, - [5116] = 2584, - [5117] = 5011, - [5118] = 1233, - [5119] = 5013, - [5120] = 5120, - [5121] = 5018, - [5122] = 1196, - [5123] = 5123, - [5124] = 5013, - [5125] = 3498, - [5126] = 5126, - [5127] = 3473, - [5128] = 5128, - [5129] = 5129, - [5130] = 5130, - [5131] = 3931, - [5132] = 5132, - [5133] = 5018, - [5134] = 3968, - [5135] = 5011, - [5136] = 5136, - [5137] = 5137, - [5138] = 5138, - [5139] = 3502, - [5140] = 5140, - [5141] = 5014, - [5142] = 5142, - [5143] = 3479, - [5144] = 2357, - [5145] = 5132, - [5146] = 5146, - [5147] = 3937, - [5148] = 5148, - [5149] = 5015, - [5150] = 5150, - [5151] = 5151, - [5152] = 5150, - [5153] = 5153, - [5154] = 5154, - [5155] = 5155, - [5156] = 5154, - [5157] = 3491, - [5158] = 5154, - [5159] = 5159, - [5160] = 5159, - [5161] = 5154, - [5162] = 3579, - [5163] = 5159, - [5164] = 5150, - [5165] = 5150, - [5166] = 5159, - [5167] = 5159, - [5168] = 5154, - [5169] = 5154, - [5170] = 5153, - [5171] = 5171, - [5172] = 5150, - [5173] = 5150, - [5174] = 5174, - [5175] = 5150, - [5176] = 5150, - [5177] = 5154, - [5178] = 5154, - [5179] = 5159, - [5180] = 5154, - [5181] = 5181, - [5182] = 5159, - [5183] = 5154, - [5184] = 5154, - [5185] = 5185, - [5186] = 5159, - [5187] = 5159, - [5188] = 5181, - [5189] = 3473, - [5190] = 5150, - [5191] = 5191, - [5192] = 5150, - [5193] = 5154, - [5194] = 5150, - [5195] = 5159, - [5196] = 5159, - [5197] = 5159, - [5198] = 5150, - [5199] = 5159, - [5200] = 5150, - [5201] = 5201, - [5202] = 5171, - [5203] = 5159, - [5204] = 5150, - [5205] = 5159, - [5206] = 5154, - [5207] = 5174, - [5208] = 5154, - [5209] = 5209, - [5210] = 3636, - [5211] = 5211, - [5212] = 5211, - [5213] = 5213, - [5214] = 5209, - [5215] = 5211, - [5216] = 5213, - [5217] = 5209, - [5218] = 5211, - [5219] = 5209, - [5220] = 5213, - [5221] = 5209, - [5222] = 5211, - [5223] = 3604, - [5224] = 5213, - [5225] = 5213, - [5226] = 5209, - [5227] = 5211, - [5228] = 5228, - [5229] = 5209, - [5230] = 5213, - [5231] = 5213, - [5232] = 5232, - [5233] = 5213, - [5234] = 5209, - [5235] = 5211, - [5236] = 5211, - [5237] = 5213, - [5238] = 5213, - [5239] = 5211, - [5240] = 5213, - [5241] = 5211, - [5242] = 5209, - [5243] = 5213, - [5244] = 1238, - [5245] = 5211, - [5246] = 5211, - [5247] = 5247, - [5248] = 5209, - [5249] = 5209, - [5250] = 5213, - [5251] = 5213, - [5252] = 5209, - [5253] = 5209, - [5254] = 5213, - [5255] = 5209, - [5256] = 5213, - [5257] = 5232, - [5258] = 5209, - [5259] = 5213, - [5260] = 5209, - [5261] = 5209, - [5262] = 5211, - [5263] = 3264, - [5264] = 5213, - [5265] = 3665, - [5266] = 5209, - [5267] = 5211, - [5268] = 5213, - [5269] = 2508, - [5270] = 2513, - [5271] = 5232, - [5272] = 5209, - [5273] = 5213, - [5274] = 5211, - [5275] = 5209, - [5276] = 3739, - [5277] = 5277, - [5278] = 5209, - [5279] = 5211, - [5280] = 5209, - [5281] = 1141, - [5282] = 3740, - [5283] = 3735, - [5284] = 3734, - [5285] = 5211, - [5286] = 5213, - [5287] = 3696, - [5288] = 3658, - [5289] = 5213, - [5290] = 3657, - [5291] = 5213, - [5292] = 3455, - [5293] = 3655, - [5294] = 5211, - [5295] = 5209, - [5296] = 5296, - [5297] = 1163, - [5298] = 5209, - [5299] = 3652, - [5300] = 3764, - [5301] = 5301, - [5302] = 5211, - [5303] = 3627, - [5304] = 5213, - [5305] = 3950, - [5306] = 5306, - [5307] = 3622, - [5308] = 3618, - [5309] = 3677, - [5310] = 3712, - [5311] = 3763, - [5312] = 5211, - [5313] = 5313, - [5314] = 5209, - [5315] = 5315, - [5316] = 3621, - [5317] = 5317, - [5318] = 5213, - [5319] = 5319, - [5320] = 5213, - [5321] = 3633, - [5322] = 3603, - [5323] = 1208, - [5324] = 1239, - [5325] = 5211, - [5326] = 1159, - [5327] = 5209, - [5328] = 5209, - [5329] = 5329, - [5330] = 5211, - [5331] = 3466, - [5332] = 5213, - [5333] = 3639, - [5334] = 5334, - [5335] = 5335, - [5336] = 2539, - [5337] = 5337, - [5338] = 5338, - [5339] = 5339, - [5340] = 5340, - [5341] = 3696, - [5342] = 5342, - [5343] = 5343, - [5344] = 5344, - [5345] = 5345, - [5346] = 3604, - [5347] = 5347, - [5348] = 5348, - [5349] = 5349, - [5350] = 5350, - [5351] = 5351, - [5352] = 5352, - [5353] = 5353, - [5354] = 5354, - [5355] = 5355, - [5356] = 5356, - [5357] = 5357, - [5358] = 5358, - [5359] = 3094, - [5360] = 5360, - [5361] = 5361, - [5362] = 5362, - [5363] = 3655, - [5364] = 5364, - [5365] = 5365, - [5366] = 5366, - [5367] = 5367, - [5368] = 5368, - [5369] = 5369, - [5370] = 5370, - [5371] = 5371, - [5372] = 3514, - [5373] = 5373, - [5374] = 3734, - [5375] = 2600, - [5376] = 5376, - [5377] = 5377, - [5378] = 2603, - [5379] = 5379, - [5380] = 5380, - [5381] = 5381, - [5382] = 5382, - [5383] = 5383, - [5384] = 5384, - [5385] = 5385, - [5386] = 5386, - [5387] = 5387, - [5388] = 5388, - [5389] = 5389, - [5390] = 5390, - [5391] = 5391, - [5392] = 5392, - [5393] = 5393, - [5394] = 5394, - [5395] = 5395, - [5396] = 5396, - [5397] = 3498, - [5398] = 2547, - [5399] = 5399, - [5400] = 5400, - [5401] = 5401, - [5402] = 4141, - [5403] = 5403, - [5404] = 5404, - [5405] = 5405, - [5406] = 5406, - [5407] = 5407, - [5408] = 5408, - [5409] = 5409, - [5410] = 5410, - [5411] = 5411, - [5412] = 3502, - [5413] = 5413, - [5414] = 5414, - [5415] = 3469, - [5416] = 3092, - [5417] = 3003, - [5418] = 3006, - [5419] = 3658, - [5420] = 5420, - [5421] = 5421, - [5422] = 3095, - [5423] = 5414, - [5424] = 5424, - [5425] = 3735, - [5426] = 5426, - [5427] = 5427, - [5428] = 3665, - [5429] = 2569, - [5430] = 5430, - [5431] = 3657, - [5432] = 5432, - [5433] = 3764, - [5434] = 3070, - [5435] = 3090, - [5436] = 3603, - [5437] = 5437, - [5438] = 4209, - [5439] = 5362, - [5440] = 5440, - [5441] = 3677, - [5442] = 3091, - [5443] = 3652, - [5444] = 3044, - [5445] = 3480, - [5446] = 2943, - [5447] = 2954, - [5448] = 5448, - [5449] = 5449, - [5450] = 3712, - [5451] = 3062, - [5452] = 3063, - [5453] = 5453, - [5454] = 5454, - [5455] = 3064, - [5456] = 5456, - [5457] = 2543, - [5458] = 5458, - [5459] = 3065, - [5460] = 3066, - [5461] = 3479, - [5462] = 3763, - [5463] = 3740, - [5464] = 5464, - [5465] = 3633, - [5466] = 3636, - [5467] = 3639, - [5468] = 3621, - [5469] = 3069, - [5470] = 3627, - [5471] = 3618, - [5472] = 3739, - [5473] = 3073, - [5474] = 3026, - [5475] = 3622, - [5476] = 5476, - [5477] = 5477, - [5478] = 3915, - [5479] = 5479, - [5480] = 5480, - [5481] = 5481, - [5482] = 3838, - [5483] = 5483, - [5484] = 5484, - [5485] = 3579, - [5486] = 5486, - [5487] = 5487, - [5488] = 5488, - [5489] = 3844, - [5490] = 5490, - [5491] = 5491, - [5492] = 5492, - [5493] = 5483, - [5494] = 5477, - [5495] = 3949, - [5496] = 5496, - [5497] = 3977, - [5498] = 4237, - [5499] = 3916, - [5500] = 4231, - [5501] = 4228, - [5502] = 3973, - [5503] = 4215, - [5504] = 3978, - [5505] = 3944, - [5506] = 3975, - [5507] = 3962, - [5508] = 3959, - [5509] = 4236, - [5510] = 3965, - [5511] = 5511, - [5512] = 5512, - [5513] = 2518, - [5514] = 3922, - [5515] = 4062, - [5516] = 4040, - [5517] = 4055, - [5518] = 3979, - [5519] = 5519, - [5520] = 4031, - [5521] = 3935, - [5522] = 4066, - [5523] = 4037, - [5524] = 5524, - [5525] = 2550, - [5526] = 4004, - [5527] = 5527, - [5528] = 5527, - [5529] = 5527, - [5530] = 2589, - [5531] = 2593, - [5532] = 2595, - [5533] = 2602, - [5534] = 2527, - [5535] = 4054, - [5536] = 2544, - [5537] = 2537, - [5538] = 4085, - [5539] = 5527, - [5540] = 2523, - [5541] = 5527, - [5542] = 2532, - [5543] = 2551, - [5544] = 4034, - [5545] = 2524, - [5546] = 5527, - [5547] = 2526, - [5548] = 2533, - [5549] = 2563, - [5550] = 2567, - [5551] = 2570, - [5552] = 5527, - [5553] = 5527, - [5554] = 2558, - [5555] = 2571, - [5556] = 5527, - [5557] = 5527, - [5558] = 4047, - [5559] = 3491, - [5560] = 2545, - [5561] = 5561, - [5562] = 5527, - [5563] = 2562, - [5564] = 2556, - [5565] = 4248, - [5566] = 2522, - [5567] = 5567, - [5568] = 2554, - [5569] = 4035, - [5570] = 5567, - [5571] = 2582, - [5572] = 5527, - [5573] = 2549, - [5574] = 5527, - [5575] = 5575, - [5576] = 5576, - [5577] = 5577, - [5578] = 2540, - [5579] = 4264, - [5580] = 2541, - [5581] = 5527, - [5582] = 4030, - [5583] = 4095, - [5584] = 4274, - [5585] = 5561, - [5586] = 4064, - [5587] = 5527, - [5588] = 5588, - [5589] = 5589, - [5590] = 4330, - [5591] = 5591, - [5592] = 5591, - [5593] = 5593, - [5594] = 5594, - [5595] = 5595, - [5596] = 5591, - [5597] = 5591, - [5598] = 4230, - [5599] = 5599, - [5600] = 5600, - [5601] = 5600, - [5602] = 5589, - [5603] = 5589, - [5604] = 5593, - [5605] = 5591, - [5606] = 5594, - [5607] = 5607, - [5608] = 5608, - [5609] = 5591, - [5610] = 5591, - [5611] = 5591, - [5612] = 5591, - [5613] = 4307, - [5614] = 5591, - [5615] = 5608, - [5616] = 5591, - [5617] = 5591, - [5618] = 5591, - [5619] = 5591, - [5620] = 4241, - [5621] = 5591, - [5622] = 4134, - [5623] = 1122, - [5624] = 5591, - [5625] = 5594, - [5626] = 5607, - [5627] = 5593, - [5628] = 5591, - [5629] = 5593, - [5630] = 1133, - [5631] = 5607, - [5632] = 5593, - [5633] = 5589, - [5634] = 5591, - [5635] = 5599, - [5636] = 5591, - [5637] = 5594, - [5638] = 5594, - [5639] = 5593, - [5640] = 5640, - [5641] = 5591, - [5642] = 5642, - [5643] = 5608, - [5644] = 5591, - [5645] = 5607, - [5646] = 5646, - [5647] = 4368, - [5648] = 5591, - [5649] = 5649, - [5650] = 4227, - [5651] = 5651, - [5652] = 4268, - [5653] = 5319, - [5654] = 5654, - [5655] = 5655, - [5656] = 5656, - [5657] = 5657, - [5658] = 5656, - [5659] = 5659, - [5660] = 5660, - [5661] = 5656, - [5662] = 5511, - [5663] = 4238, - [5664] = 4226, - [5665] = 5665, - [5666] = 5655, - [5667] = 5496, - [5668] = 4269, - [5669] = 5524, - [5670] = 5657, - [5671] = 5660, - [5672] = 4618, - [5673] = 5519, - [5674] = 4372, - [5675] = 5675, - [5676] = 5676, - [5677] = 5512, - [5678] = 1227, - [5679] = 5654, - [5680] = 5680, - [5681] = 1178, - [5682] = 5682, - [5683] = 5649, - [5684] = 5649, - [5685] = 5656, - [5686] = 1155, - [5687] = 4362, - [5688] = 4253, - [5689] = 5654, - [5690] = 5680, - [5691] = 5656, - [5692] = 5692, - [5693] = 5649, - [5694] = 4250, - [5695] = 5695, - [5696] = 4214, - [5697] = 5682, - [5698] = 5698, - [5699] = 1242, - [5700] = 5700, - [5701] = 5692, - [5702] = 4249, - [5703] = 1192, - [5704] = 5680, - [5705] = 5705, - [5706] = 5706, - [5707] = 5698, - [5708] = 5708, - [5709] = 5705, - [5710] = 4243, - [5711] = 5680, - [5712] = 1154, - [5713] = 5706, - [5714] = 5714, - [5715] = 1180, - [5716] = 5655, - [5717] = 1160, - [5718] = 5655, - [5719] = 5649, - [5720] = 1158, - [5721] = 5657, - [5722] = 5722, - [5723] = 5682, - [5724] = 5692, - [5725] = 1233, - [5726] = 1243, - [5727] = 4225, - [5728] = 5680, - [5729] = 5714, - [5730] = 5680, - [5731] = 5731, - [5732] = 4246, - [5733] = 5656, - [5734] = 4259, - [5735] = 4265, - [5736] = 4244, - [5737] = 4224, - [5738] = 5649, - [5739] = 4404, - [5740] = 2508, - [5741] = 5698, - [5742] = 5742, - [5743] = 5676, - [5744] = 5680, - [5745] = 4219, - [5746] = 5649, - [5747] = 5676, - [5748] = 5705, - [5749] = 5706, - [5750] = 5742, - [5751] = 2513, - [5752] = 5675, - [5753] = 5675, - [5754] = 5714, - [5755] = 5680, - [5756] = 5649, - [5757] = 5680, - [5758] = 5649, - [5759] = 5759, - [5760] = 5760, - [5761] = 5655, - [5762] = 5714, - [5763] = 5654, - [5764] = 5680, - [5765] = 5676, - [5766] = 5742, - [5767] = 5649, - [5768] = 5706, - [5769] = 5705, - [5770] = 5649, - [5771] = 5680, - [5772] = 4271, - [5773] = 5675, - [5774] = 5698, - [5775] = 5698, - [5776] = 5649, - [5777] = 5692, - [5778] = 5682, - [5779] = 5692, - [5780] = 5731, - [5781] = 5682, - [5782] = 5680, - [5783] = 5660, - [5784] = 5649, - [5785] = 2518, - [5786] = 2534, - [5787] = 5787, - [5788] = 2536, - [5789] = 2542, - [5790] = 5656, - [5791] = 5680, - [5792] = 5656, - [5793] = 5649, - [5794] = 5649, - [5795] = 5676, - [5796] = 5680, - [5797] = 4414, - [5798] = 5680, - [5799] = 5656, - [5800] = 3094, - [5801] = 5801, - [5802] = 5802, - [5803] = 2571, - [5804] = 5804, - [5805] = 5805, - [5806] = 5801, - [5807] = 5802, - [5808] = 5808, - [5809] = 5809, - [5810] = 5810, - [5811] = 5383, - [5812] = 5812, - [5813] = 5804, - [5814] = 5809, - [5815] = 4624, - [5816] = 4620, - [5817] = 4557, - [5818] = 5384, - [5819] = 5802, - [5820] = 4425, - [5821] = 5809, - [5822] = 4538, - [5823] = 5809, - [5824] = 5805, - [5825] = 2533, - [5826] = 2562, - [5827] = 2556, - [5828] = 2522, - [5829] = 2554, - [5830] = 2550, - [5831] = 2539, - [5832] = 5810, - [5833] = 2524, - [5834] = 5801, - [5835] = 2953, - [5836] = 4602, - [5837] = 2954, - [5838] = 2956, - [5839] = 5839, - [5840] = 4601, - [5841] = 5808, - [5842] = 5842, - [5843] = 5843, - [5844] = 5801, - [5845] = 5845, - [5846] = 2558, - [5847] = 5801, - [5848] = 5848, - [5849] = 5808, - [5850] = 5850, - [5851] = 5809, - [5852] = 5801, - [5853] = 5848, - [5854] = 5801, - [5855] = 5802, - [5856] = 2600, - [5857] = 2603, - [5858] = 2551, - [5859] = 5804, - [5860] = 4511, - [5861] = 5808, - [5862] = 2534, - [5863] = 5808, - [5864] = 5802, - [5865] = 5812, - [5866] = 5866, - [5867] = 5809, - [5868] = 5802, - [5869] = 5802, - [5870] = 5802, - [5871] = 5809, - [5872] = 5866, - [5873] = 5848, - [5874] = 5349, - [5875] = 5848, - [5876] = 2547, - [5877] = 5808, - [5878] = 5808, - [5879] = 2536, - [5880] = 5801, - [5881] = 2570, - [5882] = 5801, - [5883] = 5352, - [5884] = 5866, - [5885] = 2527, - [5886] = 5802, - [5887] = 5848, - [5888] = 2523, - [5889] = 5370, - [5890] = 5512, - [5891] = 5801, - [5892] = 2602, - [5893] = 2595, - [5894] = 5802, - [5895] = 2545, - [5896] = 2541, - [5897] = 5897, - [5898] = 3003, - [5899] = 2593, - [5900] = 5848, - [5901] = 5848, - [5902] = 2589, - [5903] = 4458, - [5904] = 2540, - [5905] = 5801, - [5906] = 4242, - [5907] = 5848, - [5908] = 5848, - [5909] = 4320, - [5910] = 5910, - [5911] = 2582, - [5912] = 2549, - [5913] = 5809, - [5914] = 5914, - [5915] = 5801, - [5916] = 5866, - [5917] = 2569, - [5918] = 5808, - [5919] = 5919, - [5920] = 5809, - [5921] = 1236, - [5922] = 1188, - [5923] = 2542, - [5924] = 5519, - [5925] = 1166, - [5926] = 5464, - [5927] = 5801, - [5928] = 5524, - [5929] = 5808, - [5930] = 5848, - [5931] = 5848, - [5932] = 5808, - [5933] = 5809, - [5934] = 1164, - [5935] = 5810, - [5936] = 5496, - [5937] = 5454, - [5938] = 5511, - [5939] = 5809, - [5940] = 5802, - [5941] = 5812, - [5942] = 3044, - [5943] = 5809, - [5944] = 2943, - [5945] = 3062, - [5946] = 5808, - [5947] = 3063, - [5948] = 5808, - [5949] = 5812, - [5950] = 5848, - [5951] = 3064, - [5952] = 5850, - [5953] = 3065, - [5954] = 5410, - [5955] = 5845, - [5956] = 3066, - [5957] = 1211, - [5958] = 5804, - [5959] = 5959, - [5960] = 5809, - [5961] = 3069, - [5962] = 5848, - [5963] = 4004, - [5964] = 5808, - [5965] = 3006, - [5966] = 3070, - [5967] = 3073, - [5968] = 5808, - [5969] = 3026, - [5970] = 5802, - [5971] = 5809, - [5972] = 5850, - [5973] = 4569, - [5974] = 5801, - [5975] = 4567, - [5976] = 2567, - [5977] = 2563, - [5978] = 2526, - [5979] = 3095, - [5980] = 5980, - [5981] = 2532, - [5982] = 5842, - [5983] = 2534, - [5984] = 1178, - [5985] = 3092, - [5986] = 1227, - [5987] = 2536, - [5988] = 5848, - [5989] = 3091, - [5990] = 2537, - [5991] = 3090, - [5992] = 5992, - [5993] = 5802, - [5994] = 5802, - [5995] = 2542, - [5996] = 2543, - [5997] = 5804, - [5998] = 5810, - [5999] = 5992, - [6000] = 6000, - [6001] = 2544, - [6002] = 6002, - [6003] = 6003, - [6004] = 6004, - [6005] = 6003, - [6006] = 6006, - [6007] = 6006, - [6008] = 6008, - [6009] = 4483, - [6010] = 6008, - [6011] = 4416, - [6012] = 6012, - [6013] = 6013, - [6014] = 4313, - [6015] = 6015, - [6016] = 6016, - [6017] = 6017, - [6018] = 6018, - [6019] = 6012, - [6020] = 6006, - [6021] = 6006, - [6022] = 6022, - [6023] = 6015, - [6024] = 4594, - [6025] = 4323, - [6026] = 4315, - [6027] = 5138, - [6028] = 6028, - [6029] = 4420, - [6030] = 4549, - [6031] = 6017, - [6032] = 6006, - [6033] = 6033, - [6034] = 6006, - [6035] = 6017, - [6036] = 6036, - [6037] = 6022, - [6038] = 6038, - [6039] = 6017, - [6040] = 6040, - [6041] = 6022, - [6042] = 6042, - [6043] = 6006, - [6044] = 6015, - [6045] = 6015, - [6046] = 6013, - [6047] = 6018, - [6048] = 6048, - [6049] = 6006, - [6050] = 6050, - [6051] = 6008, - [6052] = 4390, - [6053] = 4507, - [6054] = 6015, - [6055] = 6006, - [6056] = 6056, - [6057] = 6018, - [6058] = 6028, - [6059] = 6048, - [6060] = 6006, - [6061] = 6015, - [6062] = 6022, - [6063] = 6008, - [6064] = 6012, - [6065] = 6006, - [6066] = 4466, - [6067] = 6067, - [6068] = 6008, - [6069] = 4242, - [6070] = 6012, - [6071] = 6071, - [6072] = 6018, - [6073] = 6073, - [6074] = 6006, - [6075] = 6075, - [6076] = 6013, - [6077] = 6006, - [6078] = 4473, - [6079] = 6017, - [6080] = 6006, - [6081] = 6081, - [6082] = 6082, - [6083] = 6028, - [6084] = 6012, - [6085] = 6012, - [6086] = 6086, - [6087] = 6087, - [6088] = 6088, - [6089] = 6089, - [6090] = 6090, - [6091] = 6003, - [6092] = 6013, - [6093] = 6093, - [6094] = 4826, - [6095] = 6095, - [6096] = 6096, - [6097] = 6097, - [6098] = 6098, - [6099] = 4339, - [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 6103, - [6104] = 6104, - [6105] = 6105, - [6106] = 6106, - [6107] = 6107, - [6108] = 6097, - [6109] = 6097, - [6110] = 6110, - [6111] = 6111, - [6112] = 6111, - [6113] = 6096, - [6114] = 6114, - [6115] = 4774, - [6116] = 6096, - [6117] = 2160, - [6118] = 6118, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, - [6122] = 6122, - [6123] = 6123, - [6124] = 6124, - [6125] = 6106, - [6126] = 6100, - [6127] = 4651, - [6128] = 6097, - [6129] = 6124, - [6130] = 6130, - [6131] = 6131, - [6132] = 6132, - [6133] = 6122, - [6134] = 6119, - [6135] = 6135, - [6136] = 6136, - [6137] = 6137, - [6138] = 6098, - [6139] = 4606, - [6140] = 6140, - [6141] = 6141, - [6142] = 6093, - [6143] = 6137, - [6144] = 4360, - [6145] = 6137, - [6146] = 6097, - [6147] = 6147, - [6148] = 6119, - [6149] = 6118, - [6150] = 6150, - [6151] = 6122, - [6152] = 6119, - [6153] = 6153, - [6154] = 6154, - [6155] = 4661, - [6156] = 4789, - [6157] = 4790, - [6158] = 6158, - [6159] = 2149, - [6160] = 6132, - [6161] = 6158, - [6162] = 6162, - [6163] = 6163, - [6164] = 6147, - [6165] = 6165, - [6166] = 6166, - [6167] = 6093, - [6168] = 6168, - [6169] = 6121, - [6170] = 6170, - [6171] = 6104, - [6172] = 4698, - [6173] = 6119, - [6174] = 6107, - [6175] = 6105, - [6176] = 4333, - [6177] = 2161, - [6178] = 4614, - [6179] = 6097, - [6180] = 6130, - [6181] = 1167, - [6182] = 6182, - [6183] = 6096, - [6184] = 6123, - [6185] = 6147, - [6186] = 6165, - [6187] = 6137, - [6188] = 4840, - [6189] = 6189, - [6190] = 6166, - [6191] = 6097, - [6192] = 6096, - [6193] = 6096, - [6194] = 6136, - [6195] = 6118, - [6196] = 4841, - [6197] = 6140, - [6198] = 6136, - [6199] = 6141, - [6200] = 6140, - [6201] = 6201, - [6202] = 6096, - [6203] = 6137, - [6204] = 6118, - [6205] = 6189, - [6206] = 6130, - [6207] = 6121, - [6208] = 6166, - [6209] = 6123, - [6210] = 6098, - [6211] = 6100, - [6212] = 6212, - [6213] = 6111, - [6214] = 6096, - [6215] = 6215, - [6216] = 6216, - [6217] = 6217, - [6218] = 6218, - [6219] = 6096, - [6220] = 6107, - [6221] = 6132, - [6222] = 6189, - [6223] = 6101, - [6224] = 6101, - [6225] = 6097, - [6226] = 4618, - [6227] = 6158, - [6228] = 6101, - [6229] = 6095, - [6230] = 6097, - [6231] = 6123, - [6232] = 6102, - [6233] = 6124, - [6234] = 6106, - [6235] = 6235, - [6236] = 6236, - [6237] = 6237, - [6238] = 6137, - [6239] = 6119, - [6240] = 6119, - [6241] = 6154, - [6242] = 6097, - [6243] = 4793, - [6244] = 6158, - [6245] = 6114, - [6246] = 6137, - [6247] = 6119, - [6248] = 6137, - [6249] = 6165, - [6250] = 6096, - [6251] = 6150, - [6252] = 6119, - [6253] = 6147, - [6254] = 6168, - [6255] = 6093, - [6256] = 6170, - [6257] = 6135, - [6258] = 6147, - [6259] = 6147, - [6260] = 6168, - [6261] = 6165, - [6262] = 6096, - [6263] = 6153, - [6264] = 6137, - [6265] = 6123, - [6266] = 6096, - [6267] = 6120, - [6268] = 4821, - [6269] = 6154, - [6270] = 6119, - [6271] = 6096, - [6272] = 6106, - [6273] = 6106, - [6274] = 6104, - [6275] = 6118, - [6276] = 6105, - [6277] = 6277, - [6278] = 6096, - [6279] = 6097, - [6280] = 6101, - [6281] = 6150, - [6282] = 6093, - [6283] = 6283, - [6284] = 6182, - [6285] = 6107, - [6286] = 6286, - [6287] = 4822, - [6288] = 6137, - [6289] = 6289, - [6290] = 6166, - [6291] = 6137, - [6292] = 6093, - [6293] = 6100, - [6294] = 6283, - [6295] = 6189, - [6296] = 6137, - [6297] = 6098, - [6298] = 6298, - [6299] = 6107, - [6300] = 6106, - [6301] = 6111, - [6302] = 6302, - [6303] = 6182, - [6304] = 6302, - [6305] = 4824, - [6306] = 6105, - [6307] = 6123, - [6308] = 6114, - [6309] = 6119, - [6310] = 6165, - [6311] = 6140, - [6312] = 6136, - [6313] = 6103, - [6314] = 6314, - [6315] = 6136, - [6316] = 6114, - [6317] = 6104, - [6318] = 6147, - [6319] = 6137, - [6320] = 6140, - [6321] = 6140, - [6322] = 6166, - [6323] = 6136, - [6324] = 6324, - [6325] = 6325, - [6326] = 6326, - [6327] = 6327, - [6328] = 6189, - [6329] = 6097, - [6330] = 6097, - [6331] = 6331, - [6332] = 6130, - [6333] = 6153, - [6334] = 6124, - [6335] = 6093, - [6336] = 6137, - [6337] = 6098, - [6338] = 4878, - [6339] = 6100, - [6340] = 6189, - [6341] = 6098, - [6342] = 6342, - [6343] = 6343, - [6344] = 6283, - [6345] = 6100, - [6346] = 6119, - [6347] = 6124, - [6348] = 6348, - [6349] = 6131, - [6350] = 6170, - [6351] = 6118, - [6352] = 6158, - [6353] = 6119, - [6354] = 6124, - [6355] = 6095, - [6356] = 6119, - [6357] = 6107, - [6358] = 6110, - [6359] = 6130, - [6360] = 6360, - [6361] = 6147, - [6362] = 6362, - [6363] = 6110, - [6364] = 1186, - [6365] = 6110, - [6366] = 6366, - [6367] = 6366, - [6368] = 6101, - [6369] = 6097, - [6370] = 6121, - [6371] = 6371, - [6372] = 6372, - [6373] = 6373, - [6374] = 6374, - [6375] = 6375, - [6376] = 6374, - [6377] = 6377, - [6378] = 6375, - [6379] = 6379, - [6380] = 6380, - [6381] = 6381, - [6382] = 6382, - [6383] = 6383, - [6384] = 6383, - [6385] = 6385, - [6386] = 6383, - [6387] = 6387, - [6388] = 6388, - [6389] = 6383, - [6390] = 6390, - [6391] = 6391, - [6392] = 6383, - [6393] = 6383, - [6394] = 6383, - [6395] = 6395, - [6396] = 6383, - [6397] = 6383, - [6398] = 6398, - [6399] = 6399, - [6400] = 6383, - [6401] = 6383, - [6402] = 6383, - [6403] = 6403, - [6404] = 6383, - [6405] = 6383, - [6406] = 6383, - [6407] = 6383, - [6408] = 6383, - [6409] = 6409, - [6410] = 6410, - [6411] = 6383, - [6412] = 6383, - [6413] = 6383, - [6414] = 6383, - [6415] = 6383, - [6416] = 6383, - [6417] = 6383, - [6418] = 6383, - [6419] = 6385, - [6420] = 6395, - [6421] = 6421, - [6422] = 6422, - [6423] = 6423, - [6424] = 6424, - [6425] = 6371, - [6426] = 6426, - [6427] = 6427, - [6428] = 6410, - [6429] = 6429, - [6430] = 6430, - [6431] = 6409, - [6432] = 6432, - [6433] = 6383, - [6434] = 6387, - [6435] = 6435, - [6436] = 6435, - [6437] = 6435, - [6438] = 6403, - [6439] = 6374, - [6440] = 6435, - [6441] = 6435, - [6442] = 6435, - [6443] = 6399, - [6444] = 6435, - [6445] = 6375, - [6446] = 6435, - [6447] = 6447, - [6448] = 6388, - [6449] = 6435, - [6450] = 6450, - [6451] = 6398, - [6452] = 6447, - [6453] = 6435, - [6454] = 6447, - [6455] = 6435, - [6456] = 6385, - [6457] = 6390, - [6458] = 6391, - [6459] = 6387, - [6460] = 6447, - [6461] = 6399, - [6462] = 6388, - [6463] = 6435, - [6464] = 6390, - [6465] = 6391, - [6466] = 6377, - [6467] = 6447, - [6468] = 4909, - [6469] = 6469, - [6470] = 6435, - [6471] = 6391, - [6472] = 6395, - [6473] = 6390, - [6474] = 6474, - [6475] = 6398, - [6476] = 6476, - [6477] = 6388, - [6478] = 6478, - [6479] = 6399, - [6480] = 6480, - [6481] = 6481, - [6482] = 6383, - [6483] = 6403, - [6484] = 6447, - [6485] = 6435, - [6486] = 6486, - [6487] = 6487, - [6488] = 6447, - [6489] = 6409, - [6490] = 6387, - [6491] = 6410, - [6492] = 6435, - [6493] = 6385, - [6494] = 6494, - [6495] = 6495, - [6496] = 6496, - [6497] = 6447, - [6498] = 6435, - [6499] = 6450, - [6500] = 6395, - [6501] = 6501, - [6502] = 6447, - [6503] = 6503, - [6504] = 6435, - [6505] = 6505, - [6506] = 6506, - [6507] = 6375, - [6508] = 6447, - [6509] = 6435, - [6510] = 6374, - [6511] = 6447, - [6512] = 6435, - [6513] = 6513, - [6514] = 6398, - [6515] = 6515, - [6516] = 6516, - [6517] = 6447, - [6518] = 6399, - [6519] = 6435, - [6520] = 6403, - [6521] = 5000, - [6522] = 4339, - [6523] = 6374, - [6524] = 6524, - [6525] = 6525, - [6526] = 6380, - [6527] = 6379, - [6528] = 6528, - [6529] = 6375, - [6530] = 6530, - [6531] = 6531, - [6532] = 6532, - [6533] = 6429, - [6534] = 6534, - [6535] = 6409, - [6536] = 6536, - [6537] = 6537, - [6538] = 6538, - [6539] = 6385, - [6540] = 6410, - [6541] = 6541, - [6542] = 6387, - [6543] = 6374, - [6544] = 6410, - [6545] = 6388, - [6546] = 6546, - [6547] = 6390, - [6548] = 6391, - [6549] = 6375, - [6550] = 6409, - [6551] = 6531, - [6552] = 6552, - [6553] = 6553, - [6554] = 6435, - [6555] = 6395, - [6556] = 6447, - [6557] = 6557, - [6558] = 6398, - [6559] = 6559, - [6560] = 6410, - [6561] = 6561, - [6562] = 6399, - [6563] = 6563, - [6564] = 6538, - [6565] = 6537, - [6566] = 6403, - [6567] = 6536, - [6568] = 6409, - [6569] = 6435, - [6570] = 6570, - [6571] = 6571, - [6572] = 6409, - [6573] = 6403, - [6574] = 6410, - [6575] = 6534, - [6576] = 6528, - [6577] = 6577, - [6578] = 6578, - [6579] = 6390, - [6580] = 6580, - [6581] = 6403, - [6582] = 6480, - [6583] = 6399, - [6584] = 6398, - [6585] = 6481, - [6586] = 6524, - [6587] = 6481, - [6588] = 6398, - [6589] = 6506, - [6590] = 6395, - [6591] = 6481, - [6592] = 6505, - [6593] = 6503, - [6594] = 6481, - [6595] = 6501, - [6596] = 6395, - [6597] = 6391, - [6598] = 6390, - [6599] = 6481, - [6600] = 6481, - [6601] = 6481, - [6602] = 6602, - [6603] = 6388, - [6604] = 6496, - [6605] = 6495, - [6606] = 6481, - [6607] = 6494, - [6608] = 6387, - [6609] = 6487, - [6610] = 6481, - [6611] = 6486, - [6612] = 6403, - [6613] = 6481, - [6614] = 6481, - [6615] = 6478, - [6616] = 6385, - [6617] = 4360, - [6618] = 6476, - [6619] = 6481, - [6620] = 6374, - [6621] = 6474, - [6622] = 6622, - [6623] = 6481, - [6624] = 6469, - [6625] = 6375, - [6626] = 6373, - [6627] = 6627, - [6628] = 6481, - [6629] = 6381, - [6630] = 6427, - [6631] = 6426, - [6632] = 6632, - [6633] = 6633, - [6634] = 6385, - [6635] = 6382, - [6636] = 6481, - [6637] = 6432, - [6638] = 6387, - [6639] = 6391, - [6640] = 6388, - [6641] = 6381, - [6642] = 6388, - [6643] = 6481, - [6644] = 6390, - [6645] = 6391, - [6646] = 6375, - [6647] = 6387, - [6648] = 6476, - [6649] = 6478, - [6650] = 6486, - [6651] = 6432, - [6652] = 6487, - [6653] = 6494, - [6654] = 6382, - [6655] = 6495, - [6656] = 6481, - [6657] = 6496, - [6658] = 6371, - [6659] = 6395, - [6660] = 6371, - [6661] = 6503, - [6662] = 6505, - [6663] = 6506, - [6664] = 6374, - [6665] = 6524, - [6666] = 6398, - [6667] = 6385, - [6668] = 6385, - [6669] = 6481, - [6670] = 6399, - [6671] = 6403, - [6672] = 6672, - [6673] = 6534, - [6674] = 6432, - [6675] = 6382, - [6676] = 6481, - [6677] = 6409, - [6678] = 6536, - [6679] = 5022, - [6680] = 6537, - [6681] = 6387, - [6682] = 5024, - [6683] = 6538, - [6684] = 6684, - [6685] = 6410, - [6686] = 6686, - [6687] = 6687, - [6688] = 6481, - [6689] = 6689, - [6690] = 6531, - [6691] = 6501, - [6692] = 6388, - [6693] = 6481, - [6694] = 6391, - [6695] = 6695, - [6696] = 6372, - [6697] = 6697, - [6698] = 6698, - [6699] = 6390, - [6700] = 6580, - [6701] = 6557, - [6702] = 6633, - [6703] = 6703, - [6704] = 6375, - [6705] = 6705, - [6706] = 6481, - [6707] = 6695, - [6708] = 6372, - [6709] = 6632, - [6710] = 6697, - [6711] = 6374, - [6712] = 6381, - [6713] = 6481, - [6714] = 6469, - [6715] = 6622, - [6716] = 6447, - [6717] = 6695, - [6718] = 6372, - [6719] = 6719, - [6720] = 6720, - [6721] = 6721, - [6722] = 6697, - [6723] = 6374, - [6724] = 6530, - [6725] = 6424, - [6726] = 6474, - [6727] = 6525, - [6728] = 6375, - [6729] = 6476, - [6730] = 6478, - [6731] = 6381, - [6732] = 4333, - [6733] = 6516, - [6734] = 6385, - [6735] = 6481, - [6736] = 6432, - [6737] = 6486, - [6738] = 6738, - [6739] = 6487, - [6740] = 6387, - [6741] = 6494, - [6742] = 6495, - [6743] = 6743, - [6744] = 6496, - [6745] = 6602, - [6746] = 6388, - [6747] = 6377, - [6748] = 6371, - [6749] = 6390, - [6750] = 6391, - [6751] = 6395, - [6752] = 5040, - [6753] = 6553, - [6754] = 6501, - [6755] = 6503, - [6756] = 6505, - [6757] = 6697, - [6758] = 6476, - [6759] = 6524, - [6760] = 6398, - [6761] = 6506, - [6762] = 6450, - [6763] = 6478, - [6764] = 6486, - [6765] = 6487, - [6766] = 6395, - [6767] = 6501, - [6768] = 6695, - [6769] = 6503, - [6770] = 6505, - [6771] = 6506, - [6772] = 6524, - [6773] = 6372, - [6774] = 6398, - [6775] = 6719, - [6776] = 6399, - [6777] = 6697, - [6778] = 6403, - [6779] = 6534, - [6780] = 6480, - [6781] = 6481, - [6782] = 6409, - [6783] = 6399, - [6784] = 6410, - [6785] = 6785, - [6786] = 6409, - [6787] = 6536, - [6788] = 4604, - [6789] = 4593, - [6790] = 6537, - [6791] = 6538, - [6792] = 6410, - [6793] = 6563, - [6794] = 6516, - [6795] = 6403, - [6796] = 6516, - [6797] = 6403, - [6798] = 6481, - [6799] = 6480, - [6800] = 6531, - [6801] = 6578, - [6802] = 6802, - [6803] = 6399, - [6804] = 6577, - [6805] = 6528, - [6806] = 6429, - [6807] = 6398, - [6808] = 6719, - [6809] = 6395, - [6810] = 6534, - [6811] = 6811, - [6812] = 6571, - [6813] = 6813, - [6814] = 6391, - [6815] = 6815, - [6816] = 6390, - [6817] = 6374, - [6818] = 6375, - [6819] = 6819, - [6820] = 6388, - [6821] = 6821, - [6822] = 6387, - [6823] = 6570, - [6824] = 6409, - [6825] = 6385, - [6826] = 6826, - [6827] = 6385, - [6828] = 6537, - [6829] = 6538, - [6830] = 6830, - [6831] = 6557, - [6832] = 6371, - [6833] = 2194, - [6834] = 6372, - [6835] = 6561, - [6836] = 6432, - [6837] = 6563, - [6838] = 6838, - [6839] = 6387, - [6840] = 6375, - [6841] = 6410, - [6842] = 6388, - [6843] = 6390, - [6844] = 6391, - [6845] = 6374, - [6846] = 6476, - [6847] = 6373, - [6848] = 6427, - [6849] = 6426, - [6850] = 6395, - [6851] = 6501, - [6852] = 6503, - [6853] = 6505, - [6854] = 6506, - [6855] = 6855, - [6856] = 6856, - [6857] = 6552, - [6858] = 6398, - [6859] = 6399, - [6860] = 6536, - [6861] = 6403, - [6862] = 6532, - [6863] = 6534, - [6864] = 6531, - [6865] = 6409, - [6866] = 6379, - [6867] = 6536, - [6868] = 6695, - [6869] = 5034, - [6870] = 6380, - [6871] = 6537, - [6872] = 6538, - [6873] = 6410, - [6874] = 6524, - [6875] = 6531, - [6876] = 6410, - [6877] = 6877, - [6878] = 6409, - [6879] = 6374, - [6880] = 6375, - [6881] = 6385, - [6882] = 6387, - [6883] = 6388, - [6884] = 6390, - [6885] = 6391, - [6886] = 6476, - [6887] = 6633, - [6888] = 4990, - [6889] = 6395, - [6890] = 6398, - [6891] = 6399, - [6892] = 6403, - [6893] = 6403, - [6894] = 6534, - [6895] = 6409, - [6896] = 6399, - [6897] = 6410, - [6898] = 6398, - [6899] = 6424, - [6900] = 6719, - [6901] = 6385, - [6902] = 6395, - [6903] = 6375, - [6904] = 6811, - [6905] = 6532, - [6906] = 6819, - [6907] = 6391, - [6908] = 6602, - [6909] = 6390, - [6910] = 6570, - [6911] = 6374, - [6912] = 6450, - [6913] = 6388, - [6914] = 6695, - [6915] = 6697, - [6916] = 4997, - [6917] = 6387, - [6918] = 6918, - [6919] = 6919, - [6920] = 6918, - [6921] = 6921, - [6922] = 6922, - [6923] = 6923, - [6924] = 6924, - [6925] = 6925, - [6926] = 6926, - [6927] = 6927, - [6928] = 6919, - [6929] = 6926, - [6930] = 6930, - [6931] = 6931, - [6932] = 6919, - [6933] = 6933, - [6934] = 4546, - [6935] = 6935, - [6936] = 6924, - [6937] = 4405, - [6938] = 6938, - [6939] = 6939, - [6940] = 6919, - [6941] = 6941, - [6942] = 6935, - [6943] = 6943, - [6944] = 6941, - [6945] = 6945, - [6946] = 6946, - [6947] = 6947, - [6948] = 6948, - [6949] = 6941, - [6950] = 6950, - [6951] = 6951, - [6952] = 6951, - [6953] = 6939, - [6954] = 6951, - [6955] = 6941, - [6956] = 6951, - [6957] = 6957, - [6958] = 6951, - [6959] = 6959, - [6960] = 6935, - [6961] = 6951, - [6962] = 6951, - [6963] = 6951, - [6964] = 6951, - [6965] = 6951, - [6966] = 6951, - [6967] = 6951, - [6968] = 6957, - [6969] = 6969, - [6970] = 6948, - [6971] = 6951, - [6972] = 6972, - [6973] = 6951, - [6974] = 6959, - [6975] = 6933, - [6976] = 6919, - [6977] = 6977, - [6978] = 6951, - [6979] = 6979, - [6980] = 6926, - [6981] = 6957, - [6982] = 6951, - [6983] = 6983, - [6984] = 6979, - [6985] = 6985, - [6986] = 6959, - [6987] = 6987, - [6988] = 6926, - [6989] = 6989, - [6990] = 6951, - [6991] = 6991, - [6992] = 6992, - [6993] = 6926, - [6994] = 6951, - [6995] = 6995, - [6996] = 6933, - [6997] = 6997, - [6998] = 6933, - [6999] = 6926, - [7000] = 6951, - [7001] = 7001, - [7002] = 7002, - [7003] = 6947, - [7004] = 6951, - [7005] = 6933, - [7006] = 6919, - [7007] = 7007, - [7008] = 7008, - [7009] = 6924, - [7010] = 6919, - [7011] = 6950, - [7012] = 6951, - [7013] = 6935, - [7014] = 7014, - [7015] = 6951, - [7016] = 6985, - [7017] = 4394, - [7018] = 6918, - [7019] = 6991, - [7020] = 6951, - [7021] = 6989, - [7022] = 7022, - [7023] = 7023, - [7024] = 6945, - [7025] = 6941, - [7026] = 6951, - [7027] = 6935, - [7028] = 6935, - [7029] = 6977, - [7030] = 6989, - [7031] = 7031, - [7032] = 7022, - [7033] = 6939, - [7034] = 7023, - [7035] = 6941, - [7036] = 6957, - [7037] = 6939, - [7038] = 6935, - [7039] = 7039, - [7040] = 6939, - [7041] = 6941, - [7042] = 6951, - [7043] = 7043, - [7044] = 6989, - [7045] = 6951, - [7046] = 6959, - [7047] = 6918, - [7048] = 7048, - [7049] = 7049, - [7050] = 7050, - [7051] = 7051, - [7052] = 6941, - [7053] = 6938, - [7054] = 7054, - [7055] = 7031, - [7056] = 7056, - [7057] = 7057, - [7058] = 7058, - [7059] = 7059, - [7060] = 6935, - [7061] = 7061, - [7062] = 6919, - [7063] = 7054, - [7064] = 4445, - [7065] = 6979, - [7066] = 6933, - [7067] = 7067, - [7068] = 7057, - [7069] = 6959, - [7070] = 7070, - [7071] = 6926, - [7072] = 6918, - [7073] = 7073, - [7074] = 6921, - [7075] = 7067, - [7076] = 7057, - [7077] = 7067, - [7078] = 6959, - [7079] = 7022, - [7080] = 6941, - [7081] = 7054, - [7082] = 6924, - [7083] = 6977, - [7084] = 7023, - [7085] = 7085, - [7086] = 6935, - [7087] = 6935, - [7088] = 6939, - [7089] = 7089, - [7090] = 7090, - [7091] = 6991, - [7092] = 7092, - [7093] = 7093, - [7094] = 6933, - [7095] = 6933, - [7096] = 7096, - [7097] = 6985, - [7098] = 7039, - [7099] = 6933, - [7100] = 7058, - [7101] = 7056, - [7102] = 6959, - [7103] = 7048, - [7104] = 7104, - [7105] = 7022, - [7106] = 6923, - [7107] = 6941, - [7108] = 6951, - [7109] = 7043, - [7110] = 6945, - [7111] = 7111, - [7112] = 6933, - [7113] = 6989, - [7114] = 6959, - [7115] = 6948, - [7116] = 4928, - [7117] = 6935, - [7118] = 7111, - [7119] = 6926, - [7120] = 6991, - [7121] = 6959, - [7122] = 6941, - [7123] = 6926, - [7124] = 6959, - [7125] = 6957, - [7126] = 7126, - [7127] = 6997, - [7128] = 6969, - [7129] = 7001, - [7130] = 7130, - [7131] = 6950, - [7132] = 6941, - [7133] = 6924, - [7134] = 6997, - [7135] = 6969, - [7136] = 7001, - [7137] = 6939, - [7138] = 6997, - [7139] = 6943, - [7140] = 6918, - [7141] = 6969, - [7142] = 7001, - [7143] = 6926, - [7144] = 6919, - [7145] = 6997, - [7146] = 6969, - [7147] = 7001, - [7148] = 6997, - [7149] = 7149, - [7150] = 6919, - [7151] = 6969, - [7152] = 7001, - [7153] = 6924, - [7154] = 6933, - [7155] = 6997, - [7156] = 6969, - [7157] = 7001, - [7158] = 7158, - [7159] = 7058, - [7160] = 6995, - [7161] = 6997, - [7162] = 6969, - [7163] = 7001, - [7164] = 6919, - [7165] = 6918, - [7166] = 6926, - [7167] = 6997, - [7168] = 6969, - [7169] = 7169, - [7170] = 7056, - [7171] = 7001, - [7172] = 7031, - [7173] = 6935, - [7174] = 6959, - [7175] = 6918, - [7176] = 7176, - [7177] = 6921, - [7178] = 7178, - [7179] = 7179, - [7180] = 6997, - [7181] = 6969, - [7182] = 7001, - [7183] = 6939, - [7184] = 6941, - [7185] = 6924, - [7186] = 6992, - [7187] = 6925, - [7188] = 7048, - [7189] = 6997, - [7190] = 6969, - [7191] = 7001, - [7192] = 6919, - [7193] = 6957, - [7194] = 7194, - [7195] = 6943, - [7196] = 6933, - [7197] = 7090, - [7198] = 6931, - [7199] = 6923, - [7200] = 6997, - [7201] = 6969, - [7202] = 7001, - [7203] = 7203, - [7204] = 6927, - [7205] = 6918, - [7206] = 7085, - [7207] = 6946, - [7208] = 6926, - [7209] = 6927, - [7210] = 6918, - [7211] = 6935, - [7212] = 6918, - [7213] = 6935, - [7214] = 6972, - [7215] = 6987, - [7216] = 6972, - [7217] = 6926, - [7218] = 6941, - [7219] = 6997, - [7220] = 7057, - [7221] = 7221, - [7222] = 7222, - [7223] = 6926, - [7224] = 6969, - [7225] = 7001, - [7226] = 6946, - [7227] = 6941, - [7228] = 6933, - [7229] = 6987, - [7230] = 7059, - [7231] = 6935, - [7232] = 6943, - [7233] = 6997, - [7234] = 6969, - [7235] = 7001, - [7236] = 6941, - [7237] = 6991, - [7238] = 6933, - [7239] = 6919, - [7240] = 6919, - [7241] = 6987, - [7242] = 6930, - [7243] = 6943, - [7244] = 6997, - [7245] = 6969, - [7246] = 7001, - [7247] = 6933, - [7248] = 6933, - [7249] = 7059, - [7250] = 7056, - [7251] = 7058, - [7252] = 7051, - [7253] = 6935, - [7254] = 6987, - [7255] = 6946, - [7256] = 6930, - [7257] = 6941, - [7258] = 7085, - [7259] = 6933, - [7260] = 6997, - [7261] = 6930, - [7262] = 6969, - [7263] = 7002, - [7264] = 7264, - [7265] = 7051, - [7266] = 7001, - [7267] = 6987, - [7268] = 7057, - [7269] = 7054, - [7270] = 7023, - [7271] = 6930, - [7272] = 6933, - [7273] = 7056, - [7274] = 6922, - [7275] = 6997, - [7276] = 7001, - [7277] = 6969, - [7278] = 6997, - [7279] = 6969, - [7280] = 7001, - [7281] = 6959, - [7282] = 6977, - [7283] = 6935, - [7284] = 7051, - [7285] = 6972, - [7286] = 6922, - [7287] = 6933, - [7288] = 6985, - [7289] = 6926, - [7290] = 6987, - [7291] = 6935, - [7292] = 6930, - [7293] = 6941, - [7294] = 6930, - [7295] = 6922, - [7296] = 6997, - [7297] = 6969, - [7298] = 7001, - [7299] = 7051, - [7300] = 7001, - [7301] = 6987, - [7302] = 6969, - [7303] = 6997, - [7304] = 6924, - [7305] = 7305, - [7306] = 6991, - [7307] = 7307, - [7308] = 6921, - [7309] = 6987, - [7310] = 6935, - [7311] = 7311, - [7312] = 6933, - [7313] = 6957, - [7314] = 6930, - [7315] = 6950, - [7316] = 4564, - [7317] = 4397, - [7318] = 6922, - [7319] = 6997, - [7320] = 6969, - [7321] = 7001, - [7322] = 6941, - [7323] = 4392, - [7324] = 6939, - [7325] = 7325, - [7326] = 7051, - [7327] = 6992, - [7328] = 7328, - [7329] = 6991, - [7330] = 6935, - [7331] = 7331, - [7332] = 7178, - [7333] = 6938, - [7334] = 6957, - [7335] = 7049, - [7336] = 6987, - [7337] = 6959, - [7338] = 6930, - [7339] = 6933, - [7340] = 6941, - [7341] = 6950, - [7342] = 7051, - [7343] = 6924, - [7344] = 6989, - [7345] = 6997, - [7346] = 6918, - [7347] = 7347, - [7348] = 6933, - [7349] = 7349, - [7350] = 6935, - [7351] = 6918, - [7352] = 6939, - [7353] = 6995, - [7354] = 6922, - [7355] = 6987, - [7356] = 6925, - [7357] = 6922, - [7358] = 6947, - [7359] = 6939, - [7360] = 7001, - [7361] = 6935, - [7362] = 6943, - [7363] = 6969, - [7364] = 7364, - [7365] = 7365, - [7366] = 7366, - [7367] = 7367, - [7368] = 7368, - [7369] = 7369, - [7370] = 7370, - [7371] = 7371, - [7372] = 7372, - [7373] = 7373, - [7374] = 7366, - [7375] = 7372, - [7376] = 7376, - [7377] = 7377, - [7378] = 7378, - [7379] = 7379, - [7380] = 7380, - [7381] = 7381, - [7382] = 7372, - [7383] = 7383, - [7384] = 7384, - [7385] = 7385, - [7386] = 7386, - [7387] = 7387, - [7388] = 7373, - [7389] = 7389, - [7390] = 7366, - [7391] = 7391, - [7392] = 7392, - [7393] = 7387, - [7394] = 7368, - [7395] = 7395, - [7396] = 7395, - [7397] = 7377, - [7398] = 7379, - [7399] = 7399, - [7400] = 7400, - [7401] = 7401, - [7402] = 7402, - [7403] = 7368, - [7404] = 7404, - [7405] = 7399, - [7406] = 7406, - [7407] = 7407, - [7408] = 7408, - [7409] = 7379, - [7410] = 7410, - [7411] = 7411, - [7412] = 7412, - [7413] = 7413, - [7414] = 7414, - [7415] = 7377, - [7416] = 7401, - [7417] = 7392, - [7418] = 7418, - [7419] = 7380, - [7420] = 7420, - [7421] = 7421, - [7422] = 7364, - [7423] = 7423, - [7424] = 7372, - [7425] = 7425, - [7426] = 7426, - [7427] = 7427, - [7428] = 7428, - [7429] = 7425, - [7430] = 7430, - [7431] = 7386, - [7432] = 7373, - [7433] = 7366, - [7434] = 7434, - [7435] = 7389, - [7436] = 7436, - [7437] = 7437, - [7438] = 7366, - [7439] = 7439, - [7440] = 7366, - [7441] = 7387, - [7442] = 7442, - [7443] = 7368, - [7444] = 7377, - [7445] = 7445, - [7446] = 7446, - [7447] = 7365, - [7448] = 7448, - [7449] = 7449, - [7450] = 7401, - [7451] = 7451, - [7452] = 7379, - [7453] = 7453, - [7454] = 7372, - [7455] = 7418, - [7456] = 7380, - [7457] = 7457, - [7458] = 7368, - [7459] = 7427, - [7460] = 7460, - [7461] = 7395, - [7462] = 7366, - [7463] = 7463, - [7464] = 7400, - [7465] = 7368, - [7466] = 7466, - [7467] = 7451, - [7468] = 7392, - [7469] = 7469, - [7470] = 7470, - [7471] = 7410, - [7472] = 7411, - [7473] = 7412, - [7474] = 7474, - [7475] = 7474, - [7476] = 7414, - [7477] = 7469, - [7478] = 7478, - [7479] = 7372, - [7480] = 7373, - [7481] = 7451, - [7482] = 7466, - [7483] = 7389, - [7484] = 7420, - [7485] = 7372, - [7486] = 7379, - [7487] = 7364, - [7488] = 7423, - [7489] = 7367, - [7490] = 7490, - [7491] = 7413, - [7492] = 7426, - [7493] = 7368, - [7494] = 7366, - [7495] = 7436, - [7496] = 7427, - [7497] = 7457, - [7498] = 7425, - [7499] = 7437, - [7500] = 7373, - [7501] = 7434, - [7502] = 7373, - [7503] = 7372, - [7504] = 7386, - [7505] = 7436, - [7506] = 7369, - [7507] = 7368, - [7508] = 7508, - [7509] = 7366, - [7510] = 7373, - [7511] = 7442, - [7512] = 7373, - [7513] = 7445, - [7514] = 7365, - [7515] = 7448, - [7516] = 7449, - [7517] = 7517, - [7518] = 7372, - [7519] = 7380, - [7520] = 7389, - [7521] = 7521, - [7522] = 7449, - [7523] = 7448, - [7524] = 7421, - [7525] = 7395, - [7526] = 7366, - [7527] = 7387, - [7528] = 7418, - [7529] = 7365, - [7530] = 7401, - [7531] = 7377, - [7532] = 7410, - [7533] = 7411, - [7534] = 7412, - [7535] = 7368, - [7536] = 7445, - [7537] = 7407, - [7538] = 7538, - [7539] = 7377, - [7540] = 7540, - [7541] = 7389, - [7542] = 7386, - [7543] = 7543, - [7544] = 7420, - [7545] = 7401, - [7546] = 7463, - [7547] = 7364, - [7548] = 7423, - [7549] = 7404, - [7550] = 7426, - [7551] = 7463, - [7552] = 7426, - [7553] = 7442, - [7554] = 7554, - [7555] = 7555, - [7556] = 7427, - [7557] = 7557, - [7558] = 7558, - [7559] = 7379, - [7560] = 7368, - [7561] = 7561, - [7562] = 7562, - [7563] = 7436, - [7564] = 7564, - [7565] = 7565, - [7566] = 7566, - [7567] = 7380, - [7568] = 7371, - [7569] = 7442, - [7570] = 7457, - [7571] = 7445, - [7572] = 7365, - [7573] = 7448, - [7574] = 7449, - [7575] = 7380, - [7576] = 7436, - [7577] = 7577, - [7578] = 7372, - [7579] = 7579, - [7580] = 7580, - [7581] = 7423, - [7582] = 7517, - [7583] = 7395, - [7584] = 7376, - [7585] = 7463, - [7586] = 7364, - [7587] = 7410, - [7588] = 7411, - [7589] = 7412, - [7590] = 7590, - [7591] = 7591, - [7592] = 7592, - [7593] = 7593, - [7594] = 7594, - [7595] = 7595, - [7596] = 7420, - [7597] = 7597, - [7598] = 7425, - [7599] = 7364, - [7600] = 7423, - [7601] = 7373, - [7602] = 7386, - [7603] = 7381, - [7604] = 7426, - [7605] = 7605, - [7606] = 7606, - [7607] = 7427, - [7608] = 7427, - [7609] = 7380, - [7610] = 7426, - [7611] = 7611, - [7612] = 7436, - [7613] = 7543, - [7614] = 7614, - [7615] = 7423, - [7616] = 7616, - [7617] = 7517, - [7618] = 7442, - [7619] = 7445, - [7620] = 7365, - [7621] = 7448, - [7622] = 7449, - [7623] = 7364, - [7624] = 7624, - [7625] = 7389, - [7626] = 7626, - [7627] = 7627, - [7628] = 7366, - [7629] = 7372, - [7630] = 7395, - [7631] = 7631, - [7632] = 7386, - [7633] = 7387, - [7634] = 7410, - [7635] = 7411, - [7636] = 7412, - [7637] = 7555, - [7638] = 7577, - [7639] = 7580, - [7640] = 7606, - [7641] = 7420, - [7642] = 7368, - [7643] = 7643, - [7644] = 7364, - [7645] = 7423, - [7646] = 7377, - [7647] = 7401, - [7648] = 7463, - [7649] = 7426, - [7650] = 7650, - [7651] = 7420, - [7652] = 7624, - [7653] = 7427, - [7654] = 7379, - [7655] = 7373, - [7656] = 7436, - [7657] = 7380, - [7658] = 7395, - [7659] = 7624, - [7660] = 7420, - [7661] = 7387, - [7662] = 7442, - [7663] = 7445, - [7664] = 7365, - [7665] = 7448, - [7666] = 7449, - [7667] = 7667, - [7668] = 7414, - [7669] = 7558, - [7670] = 7372, - [7671] = 7643, - [7672] = 7386, - [7673] = 7673, - [7674] = 7395, - [7675] = 7606, - [7676] = 7676, - [7677] = 7373, - [7678] = 7410, - [7679] = 7411, - [7680] = 7412, - [7681] = 7391, - [7682] = 7540, - [7683] = 7373, - [7684] = 7597, - [7685] = 7420, - [7686] = 7595, - [7687] = 7687, - [7688] = 7364, - [7689] = 7423, - [7690] = 7594, - [7691] = 7594, - [7692] = 7517, - [7693] = 7426, - [7694] = 7562, - [7695] = 7412, - [7696] = 7411, - [7697] = 7427, - [7698] = 7517, - [7699] = 7565, - [7700] = 7436, - [7701] = 7565, - [7702] = 7517, - [7703] = 7703, - [7704] = 7562, - [7705] = 7558, - [7706] = 7442, - [7707] = 7445, - [7708] = 7365, - [7709] = 7448, - [7710] = 7449, - [7711] = 7389, - [7712] = 7410, - [7713] = 7366, - [7714] = 7387, - [7715] = 7517, - [7716] = 7614, - [7717] = 7594, - [7718] = 7395, - [7719] = 7543, - [7720] = 7368, - [7721] = 7377, - [7722] = 7410, - [7723] = 7411, - [7724] = 7412, - [7725] = 7389, - [7726] = 7580, - [7727] = 7401, - [7728] = 7728, - [7729] = 7420, - [7730] = 7463, - [7731] = 7379, - [7732] = 7364, - [7733] = 7423, - [7734] = 7400, - [7735] = 7466, - [7736] = 7566, - [7737] = 7426, - [7738] = 7738, - [7739] = 7739, - [7740] = 7402, - [7741] = 7427, - [7742] = 7577, - [7743] = 7401, - [7744] = 7436, - [7745] = 7369, - [7746] = 7400, - [7747] = 7555, - [7748] = 7378, - [7749] = 7442, - [7750] = 7445, - [7751] = 7365, - [7752] = 7448, - [7753] = 7449, - [7754] = 7372, - [7755] = 7386, - [7756] = 7386, - [7757] = 7373, - [7758] = 7399, - [7759] = 7517, - [7760] = 7391, - [7761] = 7395, - [7762] = 7383, - [7763] = 7389, - [7764] = 7366, - [7765] = 7410, - [7766] = 7411, - [7767] = 7412, - [7768] = 7387, - [7769] = 7368, - [7770] = 7631, - [7771] = 7771, - [7772] = 7420, - [7773] = 7413, - [7774] = 7377, - [7775] = 7389, - [7776] = 7423, - [7777] = 7387, - [7778] = 7778, - [7779] = 7366, - [7780] = 7426, - [7781] = 7395, - [7782] = 7372, - [7783] = 7627, - [7784] = 7427, - [7785] = 7367, - [7786] = 7508, - [7787] = 7436, - [7788] = 7401, - [7789] = 7371, - [7790] = 7463, - [7791] = 7379, - [7792] = 7442, - [7793] = 7445, - [7794] = 7365, - [7795] = 7448, - [7796] = 7449, - [7797] = 7565, - [7798] = 7399, - [7799] = 7381, - [7800] = 7376, - [7801] = 7418, - [7802] = 7395, - [7803] = 7562, - [7804] = 7558, - [7805] = 7805, - [7806] = 7410, - [7807] = 7411, - [7808] = 7412, - [7809] = 7380, - [7810] = 7376, - [7811] = 7611, - [7812] = 7439, - [7813] = 7420, - [7814] = 7381, - [7815] = 7554, - [7816] = 7364, - [7817] = 7423, - [7818] = 7593, - [7819] = 7597, - [7820] = 7543, - [7821] = 7426, - [7822] = 7592, - [7823] = 7373, - [7824] = 7442, - [7825] = 7427, - [7826] = 7372, - [7827] = 7827, - [7828] = 7436, - [7829] = 7386, - [7830] = 7389, - [7831] = 7387, - [7832] = 7373, - [7833] = 7442, - [7834] = 7445, - [7835] = 7365, - [7836] = 7448, - [7837] = 7449, - [7838] = 7838, - [7839] = 7391, - [7840] = 7517, - [7841] = 7395, - [7842] = 7371, - [7843] = 7843, - [7844] = 7412, - [7845] = 7595, - [7846] = 7389, - [7847] = 7366, - [7848] = 7667, - [7849] = 7420, - [7850] = 7380, - [7851] = 7387, - [7852] = 7414, - [7853] = 7508, - [7854] = 7368, - [7855] = 7426, - [7856] = 7856, - [7857] = 7857, - [7858] = 7626, - [7859] = 7427, - [7860] = 7367, - [7861] = 7377, - [7862] = 7436, - [7863] = 7392, - [7864] = 7564, - [7865] = 7463, - [7866] = 7368, - [7867] = 7442, - [7868] = 7445, - [7869] = 7365, - [7870] = 7448, - [7871] = 7449, - [7872] = 7377, - [7873] = 7873, - [7874] = 7404, - [7875] = 7540, - [7876] = 7470, - [7877] = 7412, - [7878] = 7401, - [7879] = 7407, - [7880] = 7369, - [7881] = 7377, - [7882] = 7420, - [7883] = 7401, - [7884] = 7418, - [7885] = 7379, - [7886] = 7379, - [7887] = 7421, - [7888] = 7426, - [7889] = 7366, - [7890] = 7469, - [7891] = 7371, - [7892] = 7427, - [7893] = 7402, - [7894] = 7366, - [7895] = 7436, - [7896] = 7474, - [7897] = 7897, - [7898] = 7377, - [7899] = 7368, - [7900] = 7442, - [7901] = 7445, - [7902] = 7365, - [7903] = 7448, - [7904] = 7449, - [7905] = 7380, - [7906] = 7466, - [7907] = 7407, - [7908] = 7412, - [7909] = 7460, - [7910] = 7420, - [7911] = 7451, - [7912] = 7426, - [7913] = 7466, - [7914] = 7463, - [7915] = 7457, - [7916] = 7427, - [7917] = 7368, - [7918] = 7436, - [7919] = 7434, - [7920] = 7442, - [7921] = 7445, - [7922] = 7365, - [7923] = 7448, - [7924] = 7449, - [7925] = 7457, - [7926] = 7437, - [7927] = 7372, - [7928] = 7413, - [7929] = 7420, - [7930] = 7421, - [7931] = 7376, - [7932] = 7932, - [7933] = 7427, - [7934] = 7386, - [7935] = 7442, - [7936] = 7365, - [7937] = 7448, - [7938] = 7449, - [7939] = 7373, - [7940] = 7408, - [7941] = 7457, - [7942] = 7418, - [7943] = 7420, - [7944] = 7381, - [7945] = 7401, - [7946] = 7387, - [7947] = 7427, - [7948] = 7463, - [7949] = 7442, - [7950] = 7365, - [7951] = 7448, - [7952] = 7449, - [7953] = 7377, - [7954] = 7466, - [7955] = 7451, - [7956] = 7392, - [7957] = 7420, - [7958] = 7410, - [7959] = 7624, - [7960] = 7543, - [7961] = 7427, - [7962] = 7517, - [7963] = 7442, - [7964] = 7365, - [7965] = 7448, - [7966] = 7449, - [7967] = 7387, - [7968] = 7389, - [7969] = 7383, - [7970] = 7474, - [7971] = 7420, - [7972] = 7411, - [7973] = 7407, - [7974] = 7368, - [7975] = 7427, - [7976] = 7366, - [7977] = 7442, - [7978] = 7365, - [7979] = 7448, - [7980] = 7449, - [7981] = 7381, - [7982] = 7469, - [7983] = 7381, - [7984] = 7387, - [7985] = 7420, - [7986] = 7412, - [7987] = 7368, - [7988] = 7988, - [7989] = 7427, - [7990] = 7368, - [7991] = 7442, - [7992] = 7365, - [7993] = 7448, - [7994] = 7449, - [7995] = 7373, - [7996] = 7373, - [7997] = 7373, - [7998] = 7379, - [7999] = 7420, - [8000] = 7451, - [8001] = 7392, - [8002] = 7395, - [8003] = 7427, - [8004] = 7378, - [8005] = 7442, - [8006] = 7365, - [8007] = 7448, - [8008] = 7449, - [8009] = 7401, - [8010] = 7407, - [8011] = 7369, - [8012] = 7377, - [8013] = 7420, - [8014] = 7391, - [8015] = 7401, - [8016] = 7643, - [8017] = 7427, - [8018] = 7387, - [8019] = 7442, - [8020] = 7365, - [8021] = 7448, - [8022] = 7449, - [8023] = 7379, - [8024] = 7687, - [8025] = 7427, - [8026] = 7371, - [8027] = 7442, - [8028] = 7463, - [8029] = 7366, - [8030] = 7427, - [8031] = 7379, - [8032] = 7442, - [8033] = 7676, - [8034] = 7369, - [8035] = 7427, - [8036] = 7381, - [8037] = 7442, - [8038] = 7389, - [8039] = 7380, - [8040] = 7427, - [8041] = 7421, - [8042] = 7442, - [8043] = 7543, - [8044] = 7389, - [8045] = 7427, - [8046] = 7376, - [8047] = 7442, - [8048] = 7543, - [8049] = 7614, - [8050] = 7457, - [8051] = 7557, - [8052] = 7371, - [8053] = 7558, - [8054] = 7562, - [8055] = 7366, - [8056] = 7370, - [8057] = 7565, - [8058] = 7421, - [8059] = 7650, - [8060] = 7558, - [8061] = 7517, - [8062] = 7594, - [8063] = 7372, - [8064] = 7369, - [8065] = 7386, - [8066] = 7463, - [8067] = 7555, - [8068] = 7595, - [8069] = 7466, - [8070] = 7673, - [8071] = 7597, - [8072] = 7577, - [8073] = 7404, - [8074] = 7676, - [8075] = 8075, - [8076] = 7399, - [8077] = 7451, - [8078] = 7414, - [8079] = 7580, - [8080] = 7667, - [8081] = 7687, - [8082] = 7856, - [8083] = 7857, - [8084] = 7445, - [8085] = 7540, - [8086] = 7562, - [8087] = 7565, - [8088] = 7457, - [8089] = 7606, - [8090] = 7580, - [8091] = 7421, - [8092] = 7624, - [8093] = 8093, - [8094] = 7373, - [8095] = 7988, - [8096] = 7624, - [8097] = 7577, - [8098] = 7594, - [8099] = 7517, - [8100] = 7565, - [8101] = 7562, - [8102] = 7558, - [8103] = 7643, - [8104] = 7517, - [8105] = 8105, - [8106] = 7897, - [8107] = 7606, - [8108] = 7564, - [8109] = 7580, - [8110] = 7594, - [8111] = 7380, - [8112] = 7555, - [8113] = 7577, - [8114] = 7591, - [8115] = 7386, - [8116] = 7703, - [8117] = 7606, - [8118] = 7561, - [8119] = 7389, - [8120] = 7448, - [8121] = 7538, - [8122] = 7592, - [8123] = 7449, - [8124] = 8124, - [8125] = 7988, - [8126] = 7555, - [8127] = 7631, - [8128] = 7386, - [8129] = 7460, - [8130] = 7406, - [8131] = 7593, - [8132] = 7372, - [8133] = 8093, - [8134] = 7624, - [8135] = 7389, - [8136] = 7605, - [8137] = 7738, - [8138] = 7739, - [8139] = 8139, - [8140] = 7379, - [8141] = 7631, - [8142] = 7407, - [8143] = 7369, - [8144] = 8144, - [8145] = 7611, - [8146] = 7366, - [8147] = 7856, - [8148] = 7543, - [8149] = 1714, - [8150] = 7377, - [8151] = 7616, - [8152] = 7401, - [8153] = 5079, - [8154] = 8154, - [8155] = 7418, - [8156] = 8156, - [8157] = 7371, - [8158] = 7400, - [8159] = 7412, - [8160] = 7627, - [8161] = 7411, - [8162] = 7626, - [8163] = 7410, - [8164] = 8164, - [8165] = 7558, - [8166] = 7562, - [8167] = 7565, - [8168] = 7627, - [8169] = 8156, - [8170] = 7372, - [8171] = 7372, - [8172] = 7631, - [8173] = 7386, - [8174] = 7555, - [8175] = 8175, - [8176] = 7380, - [8177] = 7577, - [8178] = 7580, - [8179] = 7606, - [8180] = 7434, - [8181] = 7490, - [8182] = 7437, - [8183] = 8183, - [8184] = 7517, - [8185] = 8156, - [8186] = 8186, - [8187] = 7627, - [8188] = 7457, - [8189] = 7463, - [8190] = 7580, - [8191] = 7626, - [8192] = 7643, - [8193] = 7387, - [8194] = 7402, - [8195] = 7466, - [8196] = 7451, - [8197] = 7392, - [8198] = 7594, - [8199] = 7616, - [8200] = 8200, - [8201] = 7577, - [8202] = 8202, - [8203] = 8203, - [8204] = 7624, - [8205] = 7373, - [8206] = 7626, - [8207] = 7540, - [8208] = 7372, - [8209] = 7478, - [8210] = 7616, - [8211] = 7624, - [8212] = 7474, - [8213] = 7386, - [8214] = 7555, - [8215] = 7469, - [8216] = 7577, - [8217] = 7368, - [8218] = 7407, - [8219] = 7580, - [8220] = 8220, - [8221] = 7611, - [8222] = 7540, - [8223] = 7643, - [8224] = 7420, - [8225] = 7555, - [8226] = 7857, - [8227] = 7377, - [8228] = 7453, - [8229] = 7439, - [8230] = 7401, - [8231] = 7392, - [8232] = 7451, - [8233] = 7466, - [8234] = 7430, - [8235] = 7577, - [8236] = 7580, - [8237] = 7428, - [8238] = 7611, - [8239] = 7381, - [8240] = 7418, - [8241] = 7543, - [8242] = 7373, - [8243] = 7421, - [8244] = 7597, - [8245] = 7386, - [8246] = 7595, - [8247] = 7372, - [8248] = 7407, - [8249] = 7426, - [8250] = 7370, - [8251] = 7594, - [8252] = 7555, - [8253] = 7517, - [8254] = 7380, - [8255] = 7606, - [8256] = 7565, - [8257] = 7399, - [8258] = 7562, - [8259] = 7558, - [8260] = 8093, - [8261] = 7372, - [8262] = 7897, - [8263] = 7627, - [8264] = 7364, - [8265] = 7379, - [8266] = 7703, - [8267] = 8267, - [8268] = 7561, - [8269] = 7611, - [8270] = 7406, - [8271] = 7380, - [8272] = 7605, - [8273] = 7738, - [8274] = 7739, - [8275] = 7379, - [8276] = 7469, - [8277] = 7614, - [8278] = 7392, - [8279] = 7474, - [8280] = 7370, - [8281] = 7392, - [8282] = 7543, - [8283] = 7463, - [8284] = 7423, - [8285] = 7593, - [8286] = 7451, - [8287] = 7379, - [8288] = 7673, - [8289] = 8093, - [8290] = 7593, - [8291] = 7897, - [8292] = 7451, - [8293] = 3446, - [8294] = 8294, - [8295] = 7703, - [8296] = 3445, - [8297] = 7561, - [8298] = 7466, - [8299] = 8299, - [8300] = 7605, - [8301] = 7738, - [8302] = 7739, - [8303] = 7466, - [8304] = 7463, - [8305] = 7370, - [8306] = 3444, - [8307] = 7379, - [8308] = 3443, - [8309] = 8124, - [8310] = 7389, - [8311] = 8311, - [8312] = 3442, - [8313] = 3440, - [8314] = 8093, - [8315] = 7463, - [8316] = 7897, - [8317] = 7395, - [8318] = 8318, - [8319] = 7703, - [8320] = 7457, - [8321] = 7561, - [8322] = 7624, - [8323] = 7605, - [8324] = 7738, - [8325] = 7739, - [8326] = 7421, - [8327] = 8124, - [8328] = 7421, - [8329] = 7373, - [8330] = 7418, - [8331] = 8331, - [8332] = 7434, - [8333] = 7418, - [8334] = 7401, - [8335] = 7897, - [8336] = 7703, - [8337] = 7380, - [8338] = 7561, - [8339] = 7377, - [8340] = 7605, - [8341] = 7738, - [8342] = 7739, - [8343] = 7401, - [8344] = 7592, - [8345] = 7624, - [8346] = 7377, - [8347] = 7369, - [8348] = 7368, - [8349] = 7592, - [8350] = 8075, - [8351] = 8075, - [8352] = 7897, - [8353] = 7378, - [8354] = 7561, - [8355] = 7372, - [8356] = 7605, - [8357] = 7738, - [8358] = 7739, - [8359] = 7591, - [8360] = 7407, - [8361] = 7386, - [8362] = 7368, - [8363] = 7591, - [8364] = 7555, - [8365] = 7577, - [8366] = 7387, - [8367] = 7580, - [8368] = 7897, - [8369] = 7383, - [8370] = 7561, - [8371] = 7387, - [8372] = 7605, - [8373] = 7738, - [8374] = 7739, - [8375] = 7381, - [8376] = 7580, - [8377] = 7380, - [8378] = 7381, - [8379] = 8105, - [8380] = 7376, - [8381] = 7650, - [8382] = 7373, - [8383] = 7392, - [8384] = 7897, - [8385] = 7371, - [8386] = 7561, - [8387] = 7594, - [8388] = 7605, - [8389] = 7738, - [8390] = 7739, - [8391] = 7517, - [8392] = 7565, - [8393] = 7562, - [8394] = 7366, - [8395] = 7558, - [8396] = 7413, - [8397] = 7381, - [8398] = 7594, - [8399] = 7389, - [8400] = 7897, - [8401] = 7369, - [8402] = 7366, - [8403] = 7605, - [8404] = 7738, - [8405] = 7739, - [8406] = 7371, - [8407] = 7366, - [8408] = 7369, - [8409] = 7517, - [8410] = 7367, - [8411] = 7370, - [8412] = 7389, - [8413] = 7508, - [8414] = 7371, - [8415] = 7897, - [8416] = 8416, - [8417] = 7427, - [8418] = 7605, - [8419] = 7738, - [8420] = 7739, - [8421] = 7543, - [8422] = 1741, - [8423] = 7380, - [8424] = 7565, - [8425] = 7371, - [8426] = 7366, - [8427] = 7369, - [8428] = 7558, - [8429] = 7387, - [8430] = 7897, - [8431] = 7562, - [8432] = 7565, - [8433] = 7605, - [8434] = 7738, - [8435] = 7739, - [8436] = 7562, - [8437] = 8105, - [8438] = 7376, - [8439] = 7517, - [8440] = 7897, - [8441] = 7594, - [8442] = 7389, - [8443] = 7605, - [8444] = 7738, - [8445] = 7739, - [8446] = 7373, - [8447] = 7540, - [8448] = 7368, - [8449] = 7407, - [8450] = 7897, - [8451] = 7543, - [8452] = 7377, - [8453] = 7605, - [8454] = 7738, - [8455] = 7739, - [8456] = 7558, - [8457] = 7624, - [8458] = 7401, - [8459] = 7897, - [8460] = 7543, - [8461] = 7605, - [8462] = 7738, - [8463] = 7739, - [8464] = 7606, - [8465] = 7418, - [8466] = 7897, - [8467] = 7605, - [8468] = 7738, - [8469] = 7739, - [8470] = 7386, - [8471] = 7421, - [8472] = 7897, - [8473] = 7605, - [8474] = 7738, - [8475] = 7739, - [8476] = 7577, - [8477] = 7558, - [8478] = 7897, - [8479] = 7605, - [8480] = 7738, - [8481] = 7739, - [8482] = 7555, - [8483] = 7562, - [8484] = 7897, - [8485] = 7605, - [8486] = 7738, - [8487] = 7739, - [8488] = 7386, - [8489] = 7565, - [8490] = 7897, - [8491] = 7605, - [8492] = 7738, - [8493] = 7739, - [8494] = 7372, - [8495] = 7517, - [8496] = 7897, - [8497] = 7605, - [8498] = 7738, - [8499] = 7739, - [8500] = 7627, - [8501] = 7594, - [8502] = 7897, - [8503] = 7605, - [8504] = 7738, - [8505] = 7739, - [8506] = 7425, - [8507] = 7897, - [8508] = 7380, - [8509] = 7897, - [8510] = 1713, - [8511] = 7897, - [8512] = 7379, - [8513] = 7897, - [8514] = 7474, - [8515] = 7897, - [8516] = 7437, - [8517] = 7392, - [8518] = 7451, - [8519] = 7387, - [8520] = 7466, - [8521] = 8416, - [8522] = 7373, - [8523] = 7463, - [8524] = 7449, - [8525] = 8311, - [8526] = 7448, - [8527] = 8267, - [8528] = 7624, - [8529] = 7463, - [8530] = 7379, - [8531] = 7457, - [8532] = 7391, - [8533] = 7365, - [8534] = 7580, - [8535] = 7827, - [8536] = 7577, - [8537] = 7445, - [8538] = 7555, - [8539] = 8539, - [8540] = 8540, - [8541] = 7386, - [8542] = 7372, - [8543] = 7457, - [8544] = 7380, - [8545] = 1731, - [8546] = 7421, - [8547] = 7379, - [8548] = 7418, - [8549] = 7401, - [8550] = 7380, - [8551] = 8311, - [8552] = 7827, - [8553] = 7469, - [8554] = 7474, - [8555] = 7377, - [8556] = 8311, - [8557] = 7478, - [8558] = 7392, - [8559] = 7442, - [8560] = 8311, - [8561] = 7554, - [8562] = 8311, - [8563] = 7372, - [8564] = 8311, - [8565] = 7386, - [8566] = 8311, - [8567] = 7555, - [8568] = 8311, - [8569] = 7577, - [8570] = 8311, - [8571] = 7580, - [8572] = 8311, - [8573] = 7624, - [8574] = 8311, - [8575] = 7373, - [8576] = 8311, - [8577] = 7407, - [8578] = 8311, - [8579] = 7594, - [8580] = 8311, - [8581] = 7517, - [8582] = 8311, - [8583] = 7565, - [8584] = 8311, - [8585] = 7562, - [8586] = 8311, - [8587] = 7558, - [8588] = 8311, - [8589] = 7389, - [8590] = 8311, - [8591] = 7368, - [8592] = 8311, - [8593] = 7369, - [8594] = 8311, - [8595] = 7366, - [8596] = 7371, - [8597] = 7387, - [8598] = 7387, - [8599] = 7436, - [8600] = 7368, - [8601] = 7451, - [8602] = 7407, - [8603] = 7381, - [8604] = 7566, - [8605] = 7377, - [8606] = 7368, - [8607] = 7401, - [8608] = 7404, - [8609] = 8164, - [8610] = 7466, - [8611] = 7463, - [8612] = 7457, - [8613] = 7590, - [8614] = 7407, - [8615] = 7376, - [8616] = 8164, - [8617] = 7590, - [8618] = 8164, - [8619] = 7590, - [8620] = 7418, - [8621] = 7377, - [8622] = 7401, - [8623] = 7418, - [8624] = 7421, - [8625] = 7371, - [8626] = 7421, - [8627] = 7366, - [8628] = 7369, - [8629] = 7463, - [8630] = 8630, - [8631] = 8631, -}; - -static inline bool sym_conversion_specification_character_set_1(int32_t c) { - return (c < 'N' - ? (c < '@' - ? (c < '%' - ? c == '!' - : (c <= '%' || c == ',')) - : (c <= '@' || (c < 'E' - ? (c >= 'B' && c <= 'C') - : c <= 'H'))) - : (c <= 'N' || (c < 'o' - ? (c < 'X' - ? c == 'S' - : (c <= 'X' || (c >= 'a' && c <= 'i'))) - : (c <= 'o' || (c < 'x' - ? (c >= 's' && c <= 'u') - : c <= 'x'))))); -} - -static inline bool sym_hash_operator_character_set_1(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '#' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool aux_sym__mult_operator_token1_character_set_1(int32_t c) { - return (c < ':' - ? (c < '+' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_1(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_2(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '%') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_3(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '.' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym_indexing_operator_character_set_1(int32_t c) { - return (c < '/' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || c == '-')) - : (c <= '/' || (c < '^' - ? (c < '=' - ? c == ':' - : c <= '@') - : (c <= '^' || c == '|')))); -} - -static inline bool sym_let_operator_character_set_1(int32_t c) { - return (c < '/' - ? (c < '*' - ? (c < '&' - ? c == '$' - : c <= '&') - : (c <= '+' || c == '-')) - : (c <= '/' || (c < '^' - ? (c < '@' - ? (c >= '<' && c <= '>') - : c <= '@') - : (c <= '^' || c == '|')))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(197); - if (lookahead == '+') ADVANCE(155); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(193); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(145); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(301); - if (lookahead == '[') ADVANCE(170); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '^') ADVANCE(303); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(114) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 1: - if (lookahead == '\t') ADVANCE(261); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(265); - if (lookahead == ' ') ADVANCE(259); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '%') ADVANCE(266); - if (lookahead == '@') ADVANCE(267); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '\\') ADVANCE(3); - if (lookahead != 0) ADVANCE(270); - END_STATE(); - case 2: - if (lookahead == '\t') ADVANCE(261); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(274); - if (lookahead == ' ') ADVANCE(259); - if (lookahead == '%') ADVANCE(275); - if (lookahead == '@') ADVANCE(276); - if (lookahead == '[') ADVANCE(277); - if (lookahead == '|') ADVANCE(273); - if (lookahead != 0) ADVANCE(279); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(272); - if (lookahead == 'o') ADVANCE(99); - if (lookahead == 'u') ADVANCE(91); - if (lookahead == 'x') ADVANCE(113); - if (lookahead == ' ' || - lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(106); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '[') ADVANCE(173); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(55); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(157); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '[') ADVANCE(175); - if (lookahead == '{') ADVANCE(55); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(202); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(305); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(202); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(179); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(329); - if (lookahead == 'l') ADVANCE(325); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(201); - if (lookahead == '|') ADVANCE(92); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(13) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 17: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 19: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(109); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(179); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(329); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(202); - if (lookahead == '|') ADVANCE(88); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 20: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(20) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 21: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(179); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(202); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 22: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '%') ADVANCE(241); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '/') ADVANCE(298); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(202); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(22) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 23: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(145); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(24) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 24: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(24) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 25: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(145); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 26: - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(72); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 28: - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 29: - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '?' || - lookahead == '~') ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 30: - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(190); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '<') ADVANCE(67); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(87); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 31: - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(184); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(176); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '~') ADVANCE(110); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 32: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '[') ADVANCE(181); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '$' || - lookahead == '=') ADVANCE(309); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(32) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 33: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '&') ADVANCE(212); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '[') ADVANCE(60); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '$' || - lookahead == '=') ADVANCE(309); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 34: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(84); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 35: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(60); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 36: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(181); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(203); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '}') ADVANCE(206); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '[') ADVANCE(173); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(55); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(78); - if (lookahead == '&') ADVANCE(212); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(162); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '[') ADVANCE(84); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '|') ADVANCE(168); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '$' || - lookahead == '=') ADVANCE(309); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 39: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(189); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(39) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 40: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 41: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(94); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(201); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 42: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 43: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(68); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(188); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(201); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 44: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(184); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 45: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(44) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 46: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(147); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 47: - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(343); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(191); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(217); - if (lookahead == ')') ADVANCE(149); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(193); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(82); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(340); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(60); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(49) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 50: - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '<') ADVANCE(213); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(177); - if (lookahead == 'l') ADVANCE(326); - if (lookahead == '{') ADVANCE(59); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(50) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 51: - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(76); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(60); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(51) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 52: - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '[') ADVANCE(84); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(52) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 53: - if (lookahead == '#') ADVANCE(215); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(196); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(58); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(59); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(53) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 54: - if (lookahead == '#') ADVANCE(215); - if (lookahead == '*') ADVANCE(196); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '[') ADVANCE(84); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(54) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 55: - if (lookahead == '%') ADVANCE(236); - END_STATE(); - case 56: - if (lookahead == '%') ADVANCE(238); - END_STATE(); - case 57: - if (lookahead == '%') ADVANCE(239); - END_STATE(); - case 58: - if (lookahead == '%') ADVANCE(233); - if (lookahead == '@') ADVANCE(228); - END_STATE(); - case 59: - if (lookahead == '%') ADVANCE(235); - END_STATE(); - case 60: - if (lookahead == '%') ADVANCE(56); - if (lookahead == '@') ADVANCE(227); - END_STATE(); - case 61: - if (lookahead == '%') ADVANCE(57); - END_STATE(); - case 62: - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(68); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(182); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(62) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 63: - if (lookahead == '(') ADVANCE(148); - if (lookahead == '[') ADVANCE(182); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(63) - if (sym_indexing_operator_character_set_1(lookahead)) ADVANCE(315); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 64: - if (lookahead == '*') ADVANCE(71); - if (lookahead == '.') ADVANCE(65); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 65: - if (lookahead == '*') ADVANCE(98); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 66: - if (lookahead == ',') ADVANCE(152); - if (lookahead == '.') ADVANCE(68); - if (lookahead == ':') ADVANCE(72); - if (lookahead == ';') ADVANCE(204); - if (lookahead == '[') ADVANCE(82); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(66) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 67: - if (lookahead == '-') ADVANCE(221); - END_STATE(); - case 68: - if (lookahead == '.') ADVANCE(150); - END_STATE(); - case 69: - if (lookahead == '.') ADVANCE(343); - if (lookahead == '[') ADVANCE(82); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(237); - END_STATE(); - case 70: - if (lookahead == '.') ADVANCE(65); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 71: - if (lookahead == '.') ADVANCE(65); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 72: - if (lookahead == ':') ADVANCE(218); - END_STATE(); - case 73: - if (lookahead == ':') ADVANCE(218); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 74: - if (lookahead == ';') ADVANCE(132); - END_STATE(); - case 75: - if (lookahead == '=') ADVANCE(151); - END_STATE(); - case 76: - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 77: - if (lookahead == '=') ADVANCE(164); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 78: - if (lookahead == '=') ADVANCE(304); - END_STATE(); - case 79: - if (lookahead == '>') ADVANCE(194); - END_STATE(); - case 80: - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 81: - if (lookahead == '>') ADVANCE(286); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); - END_STATE(); - case 82: - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 83: - if (lookahead == '@') ADVANCE(232); - END_STATE(); - case 84: - if (lookahead == '@') ADVANCE(228); - END_STATE(); - case 85: - if (lookahead == '[') ADVANCE(256); - if (lookahead == '\\') ADVANCE(90); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(257); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(255); - END_STATE(); - case 86: - if (lookahead == '[') ADVANCE(178); - if (lookahead == 'l') ADVANCE(326); - if (lookahead == '{') ADVANCE(59); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(86) - if (sym_indexing_operator_character_set_1(lookahead)) ADVANCE(315); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 87: - if (lookahead == ']') ADVANCE(220); - END_STATE(); - case 88: - if (lookahead == ']') ADVANCE(220); - if (lookahead == '|') ADVANCE(314); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(309); - END_STATE(); - case 89: - if (lookahead == 'n') ADVANCE(286); - END_STATE(); - case 90: - if (lookahead == 'o') ADVANCE(99); - if (lookahead == 'x') ADVANCE(113); - if (lookahead == ' ' || - lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(280); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(106); - END_STATE(); - case 91: - if (lookahead == '{') ADVANCE(111); - END_STATE(); - case 92: - if (lookahead == '|') ADVANCE(314); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(309); - END_STATE(); - case 93: - if (lookahead == '}') ADVANCE(271); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); - END_STATE(); - case 94: - if (lookahead == '}') ADVANCE(224); - END_STATE(); - case 95: - if (lookahead == '+' || - lookahead == '-') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); - END_STATE(); - case 96: - if (lookahead == '0' || - lookahead == '1') ADVANCE(249); - END_STATE(); - case 97: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 98: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 99: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(101); - END_STATE(); - case 100: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(283); - END_STATE(); - case 101: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(100); - END_STATE(); - case 102: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); - END_STATE(); - case 103: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); - END_STATE(); - case 104: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); - END_STATE(); - case 105: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(281); - END_STATE(); - case 106: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(105); - END_STATE(); - case 107: - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(309); - END_STATE(); - case 108: - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(300); - END_STATE(); - case 109: - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(295); - END_STATE(); - case 110: - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 111: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(93); - END_STATE(); - case 112: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(282); - END_STATE(); - case 113: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(112); - END_STATE(); - case 114: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '&') ADVANCE(211); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(197); - if (lookahead == '+') ADVANCE(155); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(193); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(214); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '@') ADVANCE(301); - if (lookahead == '[') ADVANCE(171); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '^') ADVANCE(303); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == 'm') ADVANCE(319); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(114) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 115: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '%') ADVANCE(240); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(80); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '[') ADVANCE(173); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '{') ADVANCE(55); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(115) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 116: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(157); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(75); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(68); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '<') ADVANCE(213); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(116) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 117: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '=') ADVANCE(309); - if (lookahead == '>') ADVANCE(307); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(92); - if (lookahead == '}') ADVANCE(206); - if (lookahead == '~') ADVANCE(140); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(117) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 118: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(119) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 119: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(288); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(308); - if (lookahead == '&') ADVANCE(212); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '*') ADVANCE(297); - if (lookahead == '+') ADVANCE(156); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(73); - if (lookahead == ';') ADVANCE(205); - if (lookahead == '<') ADVANCE(306); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(169); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '%' || - lookahead == '/') ADVANCE(298); - if (lookahead == '@' || - lookahead == '^') ADVANCE(303); - if (lookahead == '=' || - lookahead == '>') ADVANCE(309); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(119) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 120: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 121: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(75); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(77); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 122: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(75); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(146); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(123) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 123: - if (eof) ADVANCE(129); - if (lookahead == '!') ADVANCE(289); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '$') ADVANCE(102); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(75); - if (lookahead == ',') ADVANCE(152); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(77); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '>') ADVANCE(209); - if (lookahead == '?') ADVANCE(142); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(140); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(123) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 124: - if (eof) ADVANCE(129); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(163); - if (lookahead == '.') ADVANCE(192); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(190); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(124) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 125: - if (eof) ADVANCE(129); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(184); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 126: - if (eof) ADVANCE(129); - if (lookahead == '"') ADVANCE(258); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(254); - if (lookahead == '(') ADVANCE(148); - if (lookahead == '+') ADVANCE(153); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '0') ADVANCE(243); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '?') ADVANCE(141); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(183); - if (lookahead == '`') ADVANCE(342); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '~') ADVANCE(139); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(125) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(244); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 127: - if (eof) ADVANCE(129); - if (lookahead == '#') ADVANCE(340); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(190); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(173); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(55); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(127) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 128: - if (eof) ADVANCE(129); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '\'') ADVANCE(341); - if (lookahead == '(') ADVANCE(148); - if (lookahead == ')') ADVANCE(149); - if (lookahead == '*') ADVANCE(196); - if (lookahead == '-') ADVANCE(79); - if (lookahead == '.') ADVANCE(192); - if (lookahead == ':') ADVANCE(77); - if (lookahead == ';') ADVANCE(74); - if (lookahead == '=') ADVANCE(138); - if (lookahead == '[') ADVANCE(181); - if (lookahead == ']') ADVANCE(183); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '{') ADVANCE(61); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(128) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(339); - END_STATE(); - case 129: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 130: - ACCEPT_TOKEN(sym_shebang); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(130); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(131); - END_STATE(); - case 131: - ACCEPT_TOKEN(sym_shebang); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(131); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_let); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(316); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_and); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(317); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_COLON_GT); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_TILDE); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_QMARK); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(218); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(218); - if (lookahead == '=') ADVANCE(164); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(164); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(291); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(291); - if (lookahead == '=') ADVANCE(151); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(292); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(300); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(293); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(293); - if (lookahead == '>') ADVANCE(194); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(294); - if (lookahead == '>') ADVANCE(108); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(299); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(294); - if (lookahead == '>') ADVANCE(195); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(299); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(194); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(220); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(220); - if (lookahead == '|') ADVANCE(313); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(220); - if (lookahead == '|') ADVANCE(314); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(309); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(314); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(309); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '@') ADVANCE(262); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '@') ADVANCE(226); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '@') ADVANCE(227); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '@') ADVANCE(227); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '@') ADVANCE(227); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '@') ADVANCE(229); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '@') ADVANCE(229); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '<') ADVANCE(208); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '@') ADVANCE(226); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '@') ADVANCE(228); - if (lookahead == '|') ADVANCE(219); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(56); - if (lookahead == '@') ADVANCE(227); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_COLON2); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(218); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(218); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(218); - if (lookahead == '=') ADVANCE(164); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(218); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '=') ADVANCE(164); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '=') ADVANCE(164); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '>') ADVANCE(137); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(150); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(300); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(296); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(236); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(236); - if (lookahead == '<') ADVANCE(223); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(235); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(235); - if (lookahead == '<') ADVANCE(223); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(57); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(132); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_LBRACK_GT); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_LBRACK_LT); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(311); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(312); - if (sym__rel_operator_character_set_2(lookahead)) ADVANCE(309); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(221); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(130); - if (('#' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(295); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_POUND); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(295); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_LT_DASH); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(309); - END_STATE(); - case 223: - ACCEPT_TOKEN(anon_sym_LBRACE_LT); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_GT_RBRACE); - END_STATE(); - case 225: - ACCEPT_TOKEN(sym_ocamlyacc_value); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(231); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(230); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(83); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT); - if (lookahead == '@') ADVANCE(232); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT_AT); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT); - if (lookahead == '%') ADVANCE(238); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); - if (lookahead == '%') ADVANCE(239); - END_STATE(); - case 237: - ACCEPT_TOKEN(aux_sym_quoted_extension_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(237); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT_PERCENT); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT_PERCENT); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 242: - ACCEPT_TOKEN(aux_sym_number_token1); - END_STATE(); - case 243: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(247); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(96); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(250); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(253); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(244); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 244: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(247); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(244); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 245: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(248); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 246: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '+' || - lookahead == '-') ADVANCE(103); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); - END_STATE(); - case 247: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(95); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(247); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 248: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(248); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 249: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(249); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 250: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(251); - END_STATE(); - case 251: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(251); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 252: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(252); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(242); - END_STATE(); - case 253: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(245); - END_STATE(); - case 254: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 255: - ACCEPT_TOKEN(aux_sym_character_content_token1); - END_STATE(); - case 256: - ACCEPT_TOKEN(aux_sym_character_content_token1); - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 257: - ACCEPT_TOKEN(aux_sym_character_content_token1); - if (lookahead == '[') ADVANCE(256); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(257); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(255); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_LF); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_TAB); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_LBRACK_AT2); - if (lookahead == '@') ADVANCE(263); - END_STATE(); - case 263: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT2); - if (lookahead == '@') ADVANCE(264); - END_STATE(); - case 264: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT_AT2); - END_STATE(); - case 265: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '%') ADVANCE(266); - if (lookahead == '@') ADVANCE(267); - if (lookahead == '[') ADVANCE(269); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(265); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 266: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '.') ADVANCE(65); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (lookahead == ' ' || - lookahead == '#' || - lookahead == '+' || - lookahead == '-' || - lookahead == '0') ADVANCE(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 267: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(286); - END_STATE(); - case 268: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '@') ADVANCE(262); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 269: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '@') ADVANCE(226); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '@' && - lookahead != '\\') ADVANCE(270); - END_STATE(); - case 271: - ACCEPT_TOKEN(aux_sym_string_content_token2); - END_STATE(); - case 272: - ACCEPT_TOKEN(aux_sym_string_content_token3); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(272); - END_STATE(); - case 273: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - END_STATE(); - case 274: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '%') ADVANCE(275); - if (lookahead == '@') ADVANCE(276); - if (lookahead == '[') ADVANCE(278); - if (lookahead == '|') ADVANCE(273); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(274); - if (lookahead != 0) ADVANCE(279); - END_STATE(); - case 275: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '*') ADVANCE(71); - if (lookahead == '.') ADVANCE(65); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(285); - if (lookahead == ' ' || - lookahead == '#' || - lookahead == '+' || - lookahead == '-' || - lookahead == '0') ADVANCE(64); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(70); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(284); - END_STATE(); - case 276: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '<') ADVANCE(104); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(286); - END_STATE(); - case 277: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '@') ADVANCE(262); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '|') ADVANCE(279); - END_STATE(); - case 278: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '@') ADVANCE(226); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '|') ADVANCE(279); - END_STATE(); - case 279: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '@' && - lookahead != '|') ADVANCE(279); - END_STATE(); - case 280: - ACCEPT_TOKEN(aux_sym_escape_sequence_token1); - END_STATE(); - case 281: - ACCEPT_TOKEN(aux_sym_escape_sequence_token2); - END_STATE(); - case 282: - ACCEPT_TOKEN(aux_sym_escape_sequence_token3); - END_STATE(); - case 283: - ACCEPT_TOKEN(aux_sym_escape_sequence_token4); - END_STATE(); - case 284: - ACCEPT_TOKEN(sym_conversion_specification); - END_STATE(); - case 285: - ACCEPT_TOKEN(sym_conversion_specification); - if (lookahead == 'X' || - lookahead == 'd' || - lookahead == 'i' || - lookahead == 'o' || - lookahead == 'u' || - lookahead == 'x') ADVANCE(284); - END_STATE(); - case 286: - ACCEPT_TOKEN(sym_pretty_printing_indication); - END_STATE(); - case 287: - ACCEPT_TOKEN(sym_pretty_printing_indication); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(303); - END_STATE(); - case 288: - ACCEPT_TOKEN(sym_prefix_operator); - if (lookahead == '=') ADVANCE(310); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 289: - ACCEPT_TOKEN(sym_prefix_operator); - if (lookahead == '=') ADVANCE(110); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 290: - ACCEPT_TOKEN(sym_prefix_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(300); - END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - if (lookahead == '>') ADVANCE(300); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(299); - END_STATE(); - case 295: - ACCEPT_TOKEN(sym_hash_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(295); - END_STATE(); - case 296: - ACCEPT_TOKEN(aux_sym__pow_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(296); - END_STATE(); - case 297: - ACCEPT_TOKEN(aux_sym__mult_operator_token1); - if (lookahead == '*') ADVANCE(296); - if (aux_sym__mult_operator_token1_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 298: - ACCEPT_TOKEN(aux_sym__mult_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 299: - ACCEPT_TOKEN(aux_sym__add_operator_token1); - if (lookahead == '>') ADVANCE(300); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(299); - END_STATE(); - case 300: - ACCEPT_TOKEN(aux_sym__add_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(300); - END_STATE(); - case 301: - ACCEPT_TOKEN(sym__concat_operator); - if (lookahead == '<') ADVANCE(302); - if (lookahead == '\\') ADVANCE(89); - if (lookahead == '.' || - lookahead == '?') ADVANCE(287); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == ';' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(286); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(303); - END_STATE(); - case 302: - ACCEPT_TOKEN(sym__concat_operator); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(81); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(303); - END_STATE(); - case 303: - ACCEPT_TOKEN(sym__concat_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(303); - END_STATE(); - case 304: - ACCEPT_TOKEN(sym__rel_operator); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '-') ADVANCE(222); - if (sym__rel_operator_character_set_3(lookahead)) ADVANCE(309); - END_STATE(); - case 306: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '-') ADVANCE(107); - if (sym__rel_operator_character_set_3(lookahead)) ADVANCE(309); - END_STATE(); - case 307: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '}') ADVANCE(224); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(309); - END_STATE(); - case 308: - ACCEPT_TOKEN(sym__rel_operator); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(309); - END_STATE(); - case 309: - ACCEPT_TOKEN(sym__rel_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(309); - END_STATE(); - case 310: - ACCEPT_TOKEN(sym__rel_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(290); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 312: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(309); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 314: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(309); - END_STATE(); - case 315: - ACCEPT_TOKEN(sym_indexing_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(315); - END_STATE(); - case 316: - ACCEPT_TOKEN(sym_let_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(316); - END_STATE(); - case 317: - ACCEPT_TOKEN(sym_and_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(317); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym_match_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(318); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'a') ADVANCE(332); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 320: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'c') ADVANCE(327); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(135); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(136); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(335); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 324: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(331); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 325: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(334); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 326: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(333); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 327: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'h') ADVANCE(337); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 328: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(321); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 329: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(323); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 330: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(322); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 331: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(133); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 332: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(320); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 333: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(134); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 334: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(336); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 335: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(317); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 336: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(316); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 337: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(318); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 338: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(338); - END_STATE(); - case 339: - ACCEPT_TOKEN(sym__capitalized_identifier); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(339); - END_STATE(); - case 340: - ACCEPT_TOKEN(aux_sym_directive_token1); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym_type_variable_token1); - END_STATE(); - case 342: - ACCEPT_TOKEN(aux_sym_tag_token1); - END_STATE(); - case 343: - ACCEPT_TOKEN(aux_sym_attribute_id_token1); - 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 == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'n') ADVANCE(11); - if (lookahead == 'o') ADVANCE(12); - if (lookahead == 'p') ADVANCE(13); - if (lookahead == 'r') ADVANCE(14); - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - if (lookahead == 'v') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(19); - END_STATE(); - case 3: - if (lookahead == 'e') ADVANCE(20); - END_STATE(); - case 4: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - END_STATE(); - case 5: - if (lookahead == 'o') ADVANCE(23); - END_STATE(); - case 6: - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'n') ADVANCE(25); - if (lookahead == 'x') ADVANCE(26); - END_STATE(); - case 7: - if (lookahead == 'a') ADVANCE(27); - if (lookahead == 'o') ADVANCE(28); - if (lookahead == 'u') ADVANCE(29); - END_STATE(); - case 8: - if (lookahead == 'f') ADVANCE(30); - if (lookahead == 'n') ADVANCE(31); - END_STATE(); - case 9: - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); - if (lookahead == 's') ADVANCE(34); - if (lookahead == 'x') ADVANCE(35); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'e') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'u') ADVANCE(39); - END_STATE(); - case 11: - if (lookahead == 'e') ADVANCE(40); - if (lookahead == 'o') ADVANCE(41); - END_STATE(); - case 12: - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(43); - if (lookahead == 'p') ADVANCE(44); - if (lookahead == 'r') ADVANCE(45); - END_STATE(); - case 13: - if (lookahead == 'r') ADVANCE(46); - END_STATE(); - case 14: - if (lookahead == 'e') ADVANCE(47); - END_STATE(); - case 15: - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 't') ADVANCE(49); - END_STATE(); - case 16: - if (lookahead == 'h') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'r') ADVANCE(52); - if (lookahead == 'y') ADVANCE(53); - END_STATE(); - case 17: - if (lookahead == 'a') ADVANCE(54); - if (lookahead == 'i') ADVANCE(55); - END_STATE(); - case 18: - if (lookahead == 'h') ADVANCE(56); - if (lookahead == 'i') ADVANCE(57); - END_STATE(); - case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'r') ADVANCE(58); - if (lookahead == 's') ADVANCE(59); - END_STATE(); - case 20: - if (lookahead == 'g') ADVANCE(60); - END_STATE(); - case 21: - if (lookahead == 'a') ADVANCE(61); - END_STATE(); - case 22: - if (lookahead == 'n') ADVANCE(62); - END_STATE(); - case 23: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 'w') ADVANCE(64); - END_STATE(); - case 24: - if (lookahead == 's') ADVANCE(65); - END_STATE(); - case 25: - if (lookahead == 'd') ADVANCE(66); - END_STATE(); - case 26: - if (lookahead == 'c') ADVANCE(67); - if (lookahead == 't') ADVANCE(68); - END_STATE(); - case 27: - if (lookahead == 'l') ADVANCE(69); - END_STATE(); - case 28: - if (lookahead == 'r') ADVANCE(70); - END_STATE(); - case 29: - if (lookahead == 'n') ADVANCE(71); - END_STATE(); - case 30: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'c') ADVANCE(72); - if (lookahead == 'h') ADVANCE(73); - if (lookahead == 'i') ADVANCE(74); - END_STATE(); - case 32: - if (lookahead == 'n') ADVANCE(75); - if (lookahead == 'z') ADVANCE(76); - END_STATE(); - case 33: - if (lookahead == 'r') ADVANCE(77); - END_STATE(); - case 34: - if (lookahead == 'l') ADVANCE(78); - if (lookahead == 'r') ADVANCE(79); - END_STATE(); - case 35: - if (lookahead == 'o') ADVANCE(80); - END_STATE(); - case 36: - if (lookahead == 't') ADVANCE(81); - END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(82); - END_STATE(); - case 38: - if (lookahead == 'd') ADVANCE(83); - END_STATE(); - case 39: - if (lookahead == 't') ADVANCE(84); - END_STATE(); - case 40: - if (lookahead == 'w') ADVANCE(85); - END_STATE(); - case 41: - if (lookahead == 'n') ADVANCE(86); - END_STATE(); - case 42: - if (lookahead == 'j') ADVANCE(87); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_of); - END_STATE(); - case 44: - if (lookahead == 'e') ADVANCE(88); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 46: - if (lookahead == 'i') ADVANCE(89); - END_STATE(); - case 47: - if (lookahead == 'c') ADVANCE(90); - END_STATE(); - case 48: - if (lookahead == 'g') ADVANCE(91); - END_STATE(); - case 49: - if (lookahead == 'r') ADVANCE(92); - END_STATE(); - case 50: - if (lookahead == 'e') ADVANCE(93); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_to); - END_STATE(); - case 52: - if (lookahead == 'u') ADVANCE(94); - if (lookahead == 'y') ADVANCE(95); - END_STATE(); - case 53: - if (lookahead == 'p') ADVANCE(96); - END_STATE(); - case 54: - if (lookahead == 'l') ADVANCE(97); - END_STATE(); - case 55: - if (lookahead == 'r') ADVANCE(98); - END_STATE(); - case 56: - if (lookahead == 'e') ADVANCE(99); - if (lookahead == 'i') ADVANCE(100); - END_STATE(); - case 57: - if (lookahead == 't') ADVANCE(101); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_asr); - END_STATE(); - case 59: - if (lookahead == 'e') ADVANCE(102); - END_STATE(); - case 60: - if (lookahead == 'i') ADVANCE(103); - END_STATE(); - case 61: - if (lookahead == 's') ADVANCE(104); - END_STATE(); - case 62: - if (lookahead == 's') ADVANCE(105); - END_STATE(); - case 63: - if (lookahead == 'e') ADVANCE(106); - END_STATE(); - case 64: - if (lookahead == 'n') ADVANCE(107); - END_STATE(); - case 65: - if (lookahead == 'e') ADVANCE(108); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_end); - END_STATE(); - case 67: - if (lookahead == 'e') ADVANCE(109); - END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(110); - END_STATE(); - case 69: - if (lookahead == 's') ADVANCE(111); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_fun); - if (lookahead == 'c') ADVANCE(112); - END_STATE(); - case 72: - if (lookahead == 'l') ADVANCE(113); - END_STATE(); - case 73: - if (lookahead == 'e') ADVANCE(114); - END_STATE(); - case 74: - if (lookahead == 't') ADVANCE(115); - END_STATE(); - case 75: - if (lookahead == 'd') ADVANCE(116); - END_STATE(); - case 76: - if (lookahead == 'y') ADVANCE(117); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_lor); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_lsl); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_lsr); - END_STATE(); - case 80: - if (lookahead == 'r') ADVANCE(118); - END_STATE(); - case 81: - if (lookahead == 'c') ADVANCE(119); - END_STATE(); - case 82: - if (lookahead == 'h') ADVANCE(120); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(121); - END_STATE(); - case 84: - if (lookahead == 'a') ADVANCE(122); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_new); - END_STATE(); - case 86: - if (lookahead == 'r') ADVANCE(123); - END_STATE(); - case 87: - if (lookahead == 'e') ADVANCE(124); - END_STATE(); - case 88: - if (lookahead == 'n') ADVANCE(125); - END_STATE(); - case 89: - if (lookahead == 'v') ADVANCE(126); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_rec); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_sig); - END_STATE(); - case 92: - if (lookahead == 'u') ADVANCE(127); - END_STATE(); - case 93: - if (lookahead == 'n') ADVANCE(128); - END_STATE(); - case 94: - if (lookahead == 'e') ADVANCE(129); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 96: - if (lookahead == 'e') ADVANCE(130); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_val); - END_STATE(); - case 98: - if (lookahead == 't') ADVANCE(131); - END_STATE(); - case 99: - if (lookahead == 'n') ADVANCE(132); - END_STATE(); - case 100: - if (lookahead == 'l') ADVANCE(133); - END_STATE(); - case 101: - if (lookahead == 'h') ADVANCE(134); - END_STATE(); - case 102: - if (lookahead == 'r') ADVANCE(135); - END_STATE(); - case 103: - if (lookahead == 'n') ADVANCE(136); - END_STATE(); - case 104: - if (lookahead == 's') ADVANCE(137); - END_STATE(); - case 105: - if (lookahead == 't') ADVANCE(138); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_done); - END_STATE(); - case 107: - if (lookahead == 't') ADVANCE(139); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 109: - if (lookahead == 'p') ADVANCE(140); - END_STATE(); - case 110: - if (lookahead == 'r') ADVANCE(141); - END_STATE(); - case 111: - if (lookahead == 'e') ADVANCE(142); - END_STATE(); - case 112: - if (lookahead == 't') ADVANCE(143); - END_STATE(); - case 113: - if (lookahead == 'u') ADVANCE(144); - END_STATE(); - case 114: - if (lookahead == 'r') ADVANCE(145); - END_STATE(); - case 115: - if (lookahead == 'i') ADVANCE(146); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_land); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_lazy); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_lxor); - END_STATE(); - case 119: - if (lookahead == 'h') ADVANCE(147); - END_STATE(); - case 120: - if (lookahead == 'o') ADVANCE(148); - END_STATE(); - case 121: - if (lookahead == 'l') ADVANCE(149); - END_STATE(); - case 122: - if (lookahead == 'b') ADVANCE(150); - END_STATE(); - case 123: - if (lookahead == 'e') ADVANCE(151); - END_STATE(); - case 124: - if (lookahead == 'c') ADVANCE(152); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_open); - END_STATE(); - case 126: - if (lookahead == 'a') ADVANCE(153); - END_STATE(); - case 127: - if (lookahead == 'c') ADVANCE(154); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 131: - if (lookahead == 'u') ADVANCE(155); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_when); - END_STATE(); - case 133: - if (lookahead == 'e') ADVANCE(156); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_with); - END_STATE(); - case 135: - if (lookahead == 't') ADVANCE(157); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_begin); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 138: - if (lookahead == 'r') ADVANCE(158); - END_STATE(); - case 139: - if (lookahead == 'o') ADVANCE(159); - END_STATE(); - case 140: - if (lookahead == 't') ADVANCE(160); - END_STATE(); - case 141: - if (lookahead == 'n') ADVANCE(161); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 143: - if (lookahead == 'i') ADVANCE(162); - if (lookahead == 'o') ADVANCE(163); - END_STATE(); - case 144: - if (lookahead == 'd') ADVANCE(164); - END_STATE(); - case 145: - if (lookahead == 'i') ADVANCE(165); - END_STATE(); - case 146: - if (lookahead == 'a') ADVANCE(166); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 148: - if (lookahead == 'd') ADVANCE(167); - END_STATE(); - case 149: - if (lookahead == 'e') ADVANCE(168); - END_STATE(); - case 150: - if (lookahead == 'l') ADVANCE(169); - END_STATE(); - case 151: - if (lookahead == 'c') ADVANCE(170); - END_STATE(); - case 152: - if (lookahead == 't') ADVANCE(171); - END_STATE(); - case 153: - if (lookahead == 't') ADVANCE(172); - END_STATE(); - case 154: - if (lookahead == 't') ADVANCE(173); - END_STATE(); - case 155: - if (lookahead == 'a') ADVANCE(174); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_assert); - END_STATE(); - case 158: - if (lookahead == 'a') ADVANCE(175); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_downto); - END_STATE(); - case 160: - if (lookahead == 'i') ADVANCE(176); - END_STATE(); - case 161: - if (lookahead == 'a') ADVANCE(177); - END_STATE(); - case 162: - if (lookahead == 'o') ADVANCE(178); - END_STATE(); - case 163: - if (lookahead == 'r') ADVANCE(179); - END_STATE(); - case 164: - if (lookahead == 'e') ADVANCE(180); - END_STATE(); - case 165: - if (lookahead == 't') ADVANCE(181); - END_STATE(); - case 166: - if (lookahead == 'l') ADVANCE(182); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_method); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 169: - if (lookahead == 'e') ADVANCE(183); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_nonrec); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_object); - END_STATE(); - case 172: - if (lookahead == 'e') ADVANCE(184); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 174: - if (lookahead == 'l') ADVANCE(185); - END_STATE(); - case 175: - if (lookahead == 'i') ADVANCE(186); - END_STATE(); - case 176: - if (lookahead == 'o') ADVANCE(187); - END_STATE(); - case 177: - if (lookahead == 'l') ADVANCE(188); - END_STATE(); - case 178: - if (lookahead == 'n') ADVANCE(189); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_functor); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_include); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_inherit); - END_STATE(); - case 182: - if (lookahead == 'i') ADVANCE(190); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_mutable); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_virtual); - END_STATE(); - case 186: - if (lookahead == 'n') ADVANCE(191); - END_STATE(); - case 187: - if (lookahead == 'n') ADVANCE(192); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_function); - END_STATE(); - case 190: - if (lookahead == 'z') ADVANCE(193); - END_STATE(); - case 191: - if (lookahead == 't') ADVANCE(194); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_exception); - END_STATE(); - case 193: - if (lookahead == 'e') ADVANCE(195); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_constraint); - END_STATE(); - case 195: - if (lookahead == 'r') ADVANCE(196); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_initializer); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 117, .external_lex_state = 2}, - [2] = {.lex_state = 14, .external_lex_state = 3}, - [3] = {.lex_state = 14, .external_lex_state = 3}, - [4] = {.lex_state = 16, .external_lex_state = 3}, - [5] = {.lex_state = 30, .external_lex_state = 3}, - [6] = {.lex_state = 30, .external_lex_state = 3}, - [7] = {.lex_state = 30, .external_lex_state = 3}, - [8] = {.lex_state = 30, .external_lex_state = 3}, - [9] = {.lex_state = 30, .external_lex_state = 3}, - [10] = {.lex_state = 30, .external_lex_state = 3}, - [11] = {.lex_state = 30, .external_lex_state = 3}, - [12] = {.lex_state = 30, .external_lex_state = 3}, - [13] = {.lex_state = 30, .external_lex_state = 3}, - [14] = {.lex_state = 30, .external_lex_state = 3}, - [15] = {.lex_state = 30, .external_lex_state = 3}, - [16] = {.lex_state = 30, .external_lex_state = 3}, - [17] = {.lex_state = 30, .external_lex_state = 3}, - [18] = {.lex_state = 30, .external_lex_state = 3}, - [19] = {.lex_state = 30, .external_lex_state = 3}, - [20] = {.lex_state = 30, .external_lex_state = 3}, - [21] = {.lex_state = 30, .external_lex_state = 3}, - [22] = {.lex_state = 30, .external_lex_state = 3}, - [23] = {.lex_state = 30, .external_lex_state = 3}, - [24] = {.lex_state = 30, .external_lex_state = 3}, - [25] = {.lex_state = 30, .external_lex_state = 3}, - [26] = {.lex_state = 30, .external_lex_state = 3}, - [27] = {.lex_state = 30, .external_lex_state = 3}, - [28] = {.lex_state = 30, .external_lex_state = 3}, - [29] = {.lex_state = 30, .external_lex_state = 3}, - [30] = {.lex_state = 30, .external_lex_state = 3}, - [31] = {.lex_state = 30, .external_lex_state = 3}, - [32] = {.lex_state = 30, .external_lex_state = 3}, - [33] = {.lex_state = 30, .external_lex_state = 3}, - [34] = {.lex_state = 30, .external_lex_state = 3}, - [35] = {.lex_state = 30, .external_lex_state = 3}, - [36] = {.lex_state = 30, .external_lex_state = 3}, - [37] = {.lex_state = 30, .external_lex_state = 3}, - [38] = {.lex_state = 30, .external_lex_state = 3}, - [39] = {.lex_state = 20, .external_lex_state = 3}, - [40] = {.lex_state = 20, .external_lex_state = 3}, - [41] = {.lex_state = 30, .external_lex_state = 3}, - [42] = {.lex_state = 30, .external_lex_state = 3}, - [43] = {.lex_state = 20, .external_lex_state = 3}, - [44] = {.lex_state = 30, .external_lex_state = 3}, - [45] = {.lex_state = 20, .external_lex_state = 3}, - [46] = {.lex_state = 30, .external_lex_state = 3}, - [47] = {.lex_state = 30, .external_lex_state = 3}, - [48] = {.lex_state = 30, .external_lex_state = 3}, - [49] = {.lex_state = 30, .external_lex_state = 3}, - [50] = {.lex_state = 19, .external_lex_state = 3}, - [51] = {.lex_state = 19, .external_lex_state = 3}, - [52] = {.lex_state = 19, .external_lex_state = 3}, - [53] = {.lex_state = 19, .external_lex_state = 3}, - [54] = {.lex_state = 19, .external_lex_state = 3}, - [55] = {.lex_state = 19, .external_lex_state = 3}, - [56] = {.lex_state = 19, .external_lex_state = 3}, - [57] = {.lex_state = 19, .external_lex_state = 3}, - [58] = {.lex_state = 19, .external_lex_state = 3}, - [59] = {.lex_state = 19, .external_lex_state = 3}, - [60] = {.lex_state = 19, .external_lex_state = 3}, - [61] = {.lex_state = 19, .external_lex_state = 3}, - [62] = {.lex_state = 19, .external_lex_state = 3}, - [63] = {.lex_state = 19, .external_lex_state = 3}, - [64] = {.lex_state = 19, .external_lex_state = 3}, - [65] = {.lex_state = 19, .external_lex_state = 3}, - [66] = {.lex_state = 19, .external_lex_state = 3}, - [67] = {.lex_state = 19, .external_lex_state = 3}, - [68] = {.lex_state = 19, .external_lex_state = 3}, - [69] = {.lex_state = 19, .external_lex_state = 3}, - [70] = {.lex_state = 19, .external_lex_state = 3}, - [71] = {.lex_state = 19, .external_lex_state = 3}, - [72] = {.lex_state = 19, .external_lex_state = 3}, - [73] = {.lex_state = 19, .external_lex_state = 3}, - [74] = {.lex_state = 19, .external_lex_state = 3}, - [75] = {.lex_state = 19, .external_lex_state = 3}, - [76] = {.lex_state = 19, .external_lex_state = 3}, - [77] = {.lex_state = 19, .external_lex_state = 3}, - [78] = {.lex_state = 19, .external_lex_state = 3}, - [79] = {.lex_state = 19, .external_lex_state = 3}, - [80] = {.lex_state = 22, .external_lex_state = 3}, - [81] = {.lex_state = 20, .external_lex_state = 3}, - [82] = {.lex_state = 22, .external_lex_state = 3}, - [83] = {.lex_state = 20, .external_lex_state = 3}, - [84] = {.lex_state = 21, .external_lex_state = 3}, - [85] = {.lex_state = 20, .external_lex_state = 3}, - [86] = {.lex_state = 10, .external_lex_state = 3}, - [87] = {.lex_state = 10, .external_lex_state = 3}, - [88] = {.lex_state = 10, .external_lex_state = 3}, - [89] = {.lex_state = 10, .external_lex_state = 3}, - [90] = {.lex_state = 10, .external_lex_state = 3}, - [91] = {.lex_state = 10, .external_lex_state = 3}, - [92] = {.lex_state = 10, .external_lex_state = 3}, - [93] = {.lex_state = 10, .external_lex_state = 3}, - [94] = {.lex_state = 10, .external_lex_state = 3}, - [95] = {.lex_state = 10, .external_lex_state = 3}, - [96] = {.lex_state = 10, .external_lex_state = 3}, - [97] = {.lex_state = 10, .external_lex_state = 3}, - [98] = {.lex_state = 10, .external_lex_state = 3}, - [99] = {.lex_state = 29, .external_lex_state = 3}, - [100] = {.lex_state = 10, .external_lex_state = 3}, - [101] = {.lex_state = 10, .external_lex_state = 3}, - [102] = {.lex_state = 10, .external_lex_state = 3}, - [103] = {.lex_state = 10, .external_lex_state = 3}, - [104] = {.lex_state = 10, .external_lex_state = 3}, - [105] = {.lex_state = 10, .external_lex_state = 3}, - [106] = {.lex_state = 10, .external_lex_state = 3}, - [107] = {.lex_state = 10, .external_lex_state = 3}, - [108] = {.lex_state = 10, .external_lex_state = 3}, - [109] = {.lex_state = 10, .external_lex_state = 3}, - [110] = {.lex_state = 10, .external_lex_state = 3}, - [111] = {.lex_state = 10, .external_lex_state = 3}, - [112] = {.lex_state = 10, .external_lex_state = 3}, - [113] = {.lex_state = 10, .external_lex_state = 3}, - [114] = {.lex_state = 10, .external_lex_state = 3}, - [115] = {.lex_state = 29, .external_lex_state = 3}, - [116] = {.lex_state = 10, .external_lex_state = 3}, - [117] = {.lex_state = 10, .external_lex_state = 3}, - [118] = {.lex_state = 10, .external_lex_state = 3}, - [119] = {.lex_state = 10, .external_lex_state = 3}, - [120] = {.lex_state = 10, .external_lex_state = 3}, - [121] = {.lex_state = 11, .external_lex_state = 3}, - [122] = {.lex_state = 11, .external_lex_state = 3}, - [123] = {.lex_state = 11, .external_lex_state = 3}, - [124] = {.lex_state = 10, .external_lex_state = 3}, - [125] = {.lex_state = 11, .external_lex_state = 3}, - [126] = {.lex_state = 11, .external_lex_state = 3}, - [127] = {.lex_state = 30, .external_lex_state = 3}, - [128] = {.lex_state = 11, .external_lex_state = 3}, - [129] = {.lex_state = 11, .external_lex_state = 3}, - [130] = {.lex_state = 11, .external_lex_state = 3}, - [131] = {.lex_state = 11, .external_lex_state = 3}, - [132] = {.lex_state = 11, .external_lex_state = 3}, - [133] = {.lex_state = 11, .external_lex_state = 3}, - [134] = {.lex_state = 11, .external_lex_state = 3}, - [135] = {.lex_state = 11, .external_lex_state = 3}, - [136] = {.lex_state = 11, .external_lex_state = 3}, - [137] = {.lex_state = 11, .external_lex_state = 3}, - [138] = {.lex_state = 11, .external_lex_state = 3}, - [139] = {.lex_state = 11, .external_lex_state = 3}, - [140] = {.lex_state = 8, .external_lex_state = 3}, - [141] = {.lex_state = 10, .external_lex_state = 3}, - [142] = {.lex_state = 7, .external_lex_state = 3}, - [143] = {.lex_state = 8, .external_lex_state = 3}, - [144] = {.lex_state = 8, .external_lex_state = 3}, - [145] = {.lex_state = 30, .external_lex_state = 3}, - [146] = {.lex_state = 8, .external_lex_state = 3}, - [147] = {.lex_state = 17, .external_lex_state = 3}, - [148] = {.lex_state = 17, .external_lex_state = 3}, - [149] = {.lex_state = 11, .external_lex_state = 3}, - [150] = {.lex_state = 17, .external_lex_state = 3}, - [151] = {.lex_state = 7, .external_lex_state = 3}, - [152] = {.lex_state = 7, .external_lex_state = 3}, - [153] = {.lex_state = 7, .external_lex_state = 3}, - [154] = {.lex_state = 7, .external_lex_state = 3}, - [155] = {.lex_state = 7, .external_lex_state = 3}, - [156] = {.lex_state = 7, .external_lex_state = 3}, - [157] = {.lex_state = 7, .external_lex_state = 3}, - [158] = {.lex_state = 7, .external_lex_state = 3}, - [159] = {.lex_state = 7, .external_lex_state = 3}, - [160] = {.lex_state = 7, .external_lex_state = 3}, - [161] = {.lex_state = 7, .external_lex_state = 3}, - [162] = {.lex_state = 30, .external_lex_state = 3}, - [163] = {.lex_state = 7, .external_lex_state = 3}, - [164] = {.lex_state = 7, .external_lex_state = 3}, - [165] = {.lex_state = 7, .external_lex_state = 3}, - [166] = {.lex_state = 7, .external_lex_state = 3}, - [167] = {.lex_state = 7, .external_lex_state = 3}, - [168] = {.lex_state = 7, .external_lex_state = 3}, - [169] = {.lex_state = 7, .external_lex_state = 3}, - [170] = {.lex_state = 7, .external_lex_state = 3}, - [171] = {.lex_state = 7, .external_lex_state = 3}, - [172] = {.lex_state = 7, .external_lex_state = 3}, - [173] = {.lex_state = 7, .external_lex_state = 3}, - [174] = {.lex_state = 7, .external_lex_state = 3}, - [175] = {.lex_state = 7, .external_lex_state = 3}, - [176] = {.lex_state = 7, .external_lex_state = 3}, - [177] = {.lex_state = 7, .external_lex_state = 3}, - [178] = {.lex_state = 7, .external_lex_state = 3}, - [179] = {.lex_state = 7, .external_lex_state = 3}, - [180] = {.lex_state = 7, .external_lex_state = 3}, - [181] = {.lex_state = 7, .external_lex_state = 3}, - [182] = {.lex_state = 7, .external_lex_state = 3}, - [183] = {.lex_state = 7, .external_lex_state = 3}, - [184] = {.lex_state = 7, .external_lex_state = 3}, - [185] = {.lex_state = 7, .external_lex_state = 3}, - [186] = {.lex_state = 7, .external_lex_state = 3}, - [187] = {.lex_state = 8, .external_lex_state = 3}, - [188] = {.lex_state = 8, .external_lex_state = 3}, - [189] = {.lex_state = 8, .external_lex_state = 3}, - [190] = {.lex_state = 8, .external_lex_state = 3}, - [191] = {.lex_state = 8, .external_lex_state = 3}, - [192] = {.lex_state = 8, .external_lex_state = 3}, - [193] = {.lex_state = 8, .external_lex_state = 3}, - [194] = {.lex_state = 8, .external_lex_state = 3}, - [195] = {.lex_state = 8, .external_lex_state = 3}, - [196] = {.lex_state = 8, .external_lex_state = 3}, - [197] = {.lex_state = 8, .external_lex_state = 3}, - [198] = {.lex_state = 8, .external_lex_state = 3}, - [199] = {.lex_state = 8, .external_lex_state = 3}, - [200] = {.lex_state = 8, .external_lex_state = 3}, - [201] = {.lex_state = 8, .external_lex_state = 3}, - [202] = {.lex_state = 8, .external_lex_state = 3}, - [203] = {.lex_state = 8, .external_lex_state = 3}, - [204] = {.lex_state = 8, .external_lex_state = 3}, - [205] = {.lex_state = 8, .external_lex_state = 3}, - [206] = {.lex_state = 8, .external_lex_state = 3}, - [207] = {.lex_state = 8, .external_lex_state = 3}, - [208] = {.lex_state = 8, .external_lex_state = 3}, - [209] = {.lex_state = 8, .external_lex_state = 3}, - [210] = {.lex_state = 8, .external_lex_state = 3}, - [211] = {.lex_state = 8, .external_lex_state = 3}, - [212] = {.lex_state = 8, .external_lex_state = 3}, - [213] = {.lex_state = 8, .external_lex_state = 3}, - [214] = {.lex_state = 8, .external_lex_state = 3}, - [215] = {.lex_state = 8, .external_lex_state = 3}, - [216] = {.lex_state = 8, .external_lex_state = 3}, - [217] = {.lex_state = 8, .external_lex_state = 3}, - [218] = {.lex_state = 8, .external_lex_state = 3}, - [219] = {.lex_state = 118, .external_lex_state = 3}, - [220] = {.lex_state = 118, .external_lex_state = 3}, - [221] = {.lex_state = 8, .external_lex_state = 3}, - [222] = {.lex_state = 118, .external_lex_state = 3}, - [223] = {.lex_state = 8, .external_lex_state = 3}, - [224] = {.lex_state = 29, .external_lex_state = 3}, - [225] = {.lex_state = 30, .external_lex_state = 3}, - [226] = {.lex_state = 9, .external_lex_state = 3}, - [227] = {.lex_state = 9, .external_lex_state = 3}, - [228] = {.lex_state = 9, .external_lex_state = 3}, - [229] = {.lex_state = 9, .external_lex_state = 3}, - [230] = {.lex_state = 9, .external_lex_state = 3}, - [231] = {.lex_state = 9, .external_lex_state = 3}, - [232] = {.lex_state = 9, .external_lex_state = 3}, - [233] = {.lex_state = 9, .external_lex_state = 3}, - [234] = {.lex_state = 9, .external_lex_state = 3}, - [235] = {.lex_state = 9, .external_lex_state = 3}, - [236] = {.lex_state = 9, .external_lex_state = 3}, - [237] = {.lex_state = 9, .external_lex_state = 3}, - [238] = {.lex_state = 9, .external_lex_state = 3}, - [239] = {.lex_state = 9, .external_lex_state = 3}, - [240] = {.lex_state = 9, .external_lex_state = 3}, - [241] = {.lex_state = 9, .external_lex_state = 3}, - [242] = {.lex_state = 9, .external_lex_state = 3}, - [243] = {.lex_state = 9, .external_lex_state = 3}, - [244] = {.lex_state = 30, .external_lex_state = 3}, - [245] = {.lex_state = 30, .external_lex_state = 3}, - [246] = {.lex_state = 30, .external_lex_state = 3}, - [247] = {.lex_state = 7, .external_lex_state = 3}, - [248] = {.lex_state = 7, .external_lex_state = 3}, - [249] = {.lex_state = 7, .external_lex_state = 3}, - [250] = {.lex_state = 7, .external_lex_state = 3}, - [251] = {.lex_state = 7, .external_lex_state = 3}, - [252] = {.lex_state = 30, .external_lex_state = 3}, - [253] = {.lex_state = 7, .external_lex_state = 3}, - [254] = {.lex_state = 9, .external_lex_state = 3}, - [255] = {.lex_state = 7, .external_lex_state = 3}, - [256] = {.lex_state = 7, .external_lex_state = 3}, - [257] = {.lex_state = 7, .external_lex_state = 3}, - [258] = {.lex_state = 7, .external_lex_state = 3}, - [259] = {.lex_state = 9, .external_lex_state = 3}, - [260] = {.lex_state = 30, .external_lex_state = 3}, - [261] = {.lex_state = 7, .external_lex_state = 3}, - [262] = {.lex_state = 30, .external_lex_state = 3}, - [263] = {.lex_state = 9, .external_lex_state = 3}, - [264] = {.lex_state = 30, .external_lex_state = 3}, - [265] = {.lex_state = 7, .external_lex_state = 3}, - [266] = {.lex_state = 30, .external_lex_state = 3}, - [267] = {.lex_state = 30, .external_lex_state = 3}, - [268] = {.lex_state = 30, .external_lex_state = 3}, - [269] = {.lex_state = 9, .external_lex_state = 3}, - [270] = {.lex_state = 30, .external_lex_state = 3}, - [271] = {.lex_state = 30, .external_lex_state = 3}, - [272] = {.lex_state = 9, .external_lex_state = 3}, - [273] = {.lex_state = 30, .external_lex_state = 3}, - [274] = {.lex_state = 30, .external_lex_state = 3}, - [275] = {.lex_state = 30, .external_lex_state = 3}, - [276] = {.lex_state = 9, .external_lex_state = 3}, - [277] = {.lex_state = 9, .external_lex_state = 3}, - [278] = {.lex_state = 9, .external_lex_state = 3}, - [279] = {.lex_state = 9, .external_lex_state = 3}, - [280] = {.lex_state = 9, .external_lex_state = 3}, - [281] = {.lex_state = 9, .external_lex_state = 3}, - [282] = {.lex_state = 7, .external_lex_state = 3}, - [283] = {.lex_state = 9, .external_lex_state = 3}, - [284] = {.lex_state = 7, .external_lex_state = 3}, - [285] = {.lex_state = 9, .external_lex_state = 3}, - [286] = {.lex_state = 7, .external_lex_state = 3}, - [287] = {.lex_state = 30, .external_lex_state = 3}, - [288] = {.lex_state = 9, .external_lex_state = 3}, - [289] = {.lex_state = 7, .external_lex_state = 3}, - [290] = {.lex_state = 30, .external_lex_state = 3}, - [291] = {.lex_state = 30, .external_lex_state = 3}, - [292] = {.lex_state = 30, .external_lex_state = 3}, - [293] = {.lex_state = 30, .external_lex_state = 3}, - [294] = {.lex_state = 30, .external_lex_state = 3}, - [295] = {.lex_state = 30, .external_lex_state = 3}, - [296] = {.lex_state = 30, .external_lex_state = 3}, - [297] = {.lex_state = 30, .external_lex_state = 3}, - [298] = {.lex_state = 30, .external_lex_state = 3}, - [299] = {.lex_state = 30, .external_lex_state = 3}, - [300] = {.lex_state = 30, .external_lex_state = 3}, - [301] = {.lex_state = 30, .external_lex_state = 3}, - [302] = {.lex_state = 30, .external_lex_state = 3}, - [303] = {.lex_state = 30, .external_lex_state = 3}, - [304] = {.lex_state = 30, .external_lex_state = 3}, - [305] = {.lex_state = 30, .external_lex_state = 3}, - [306] = {.lex_state = 30, .external_lex_state = 3}, - [307] = {.lex_state = 30, .external_lex_state = 3}, - [308] = {.lex_state = 30, .external_lex_state = 3}, - [309] = {.lex_state = 30, .external_lex_state = 3}, - [310] = {.lex_state = 30, .external_lex_state = 3}, - [311] = {.lex_state = 30, .external_lex_state = 3}, - [312] = {.lex_state = 30, .external_lex_state = 3}, - [313] = {.lex_state = 30, .external_lex_state = 3}, - [314] = {.lex_state = 30, .external_lex_state = 3}, - [315] = {.lex_state = 30, .external_lex_state = 3}, - [316] = {.lex_state = 30, .external_lex_state = 3}, - [317] = {.lex_state = 30, .external_lex_state = 3}, - [318] = {.lex_state = 30, .external_lex_state = 3}, - [319] = {.lex_state = 30, .external_lex_state = 3}, - [320] = {.lex_state = 30, .external_lex_state = 3}, - [321] = {.lex_state = 30, .external_lex_state = 3}, - [322] = {.lex_state = 30, .external_lex_state = 3}, - [323] = {.lex_state = 30, .external_lex_state = 3}, - [324] = {.lex_state = 30, .external_lex_state = 3}, - [325] = {.lex_state = 30, .external_lex_state = 3}, - [326] = {.lex_state = 30, .external_lex_state = 3}, - [327] = {.lex_state = 30, .external_lex_state = 3}, - [328] = {.lex_state = 30, .external_lex_state = 3}, - [329] = {.lex_state = 30, .external_lex_state = 3}, - [330] = {.lex_state = 30, .external_lex_state = 3}, - [331] = {.lex_state = 30, .external_lex_state = 3}, - [332] = {.lex_state = 30, .external_lex_state = 3}, - [333] = {.lex_state = 30, .external_lex_state = 3}, - [334] = {.lex_state = 30, .external_lex_state = 3}, - [335] = {.lex_state = 30, .external_lex_state = 3}, - [336] = {.lex_state = 30, .external_lex_state = 3}, - [337] = {.lex_state = 30, .external_lex_state = 3}, - [338] = {.lex_state = 30, .external_lex_state = 3}, - [339] = {.lex_state = 30, .external_lex_state = 3}, - [340] = {.lex_state = 30, .external_lex_state = 3}, - [341] = {.lex_state = 30, .external_lex_state = 3}, - [342] = {.lex_state = 30, .external_lex_state = 3}, - [343] = {.lex_state = 30, .external_lex_state = 3}, - [344] = {.lex_state = 30, .external_lex_state = 3}, - [345] = {.lex_state = 30, .external_lex_state = 3}, - [346] = {.lex_state = 30, .external_lex_state = 3}, - [347] = {.lex_state = 30, .external_lex_state = 3}, - [348] = {.lex_state = 9, .external_lex_state = 3}, - [349] = {.lex_state = 30, .external_lex_state = 3}, - [350] = {.lex_state = 30, .external_lex_state = 3}, - [351] = {.lex_state = 8, .external_lex_state = 3}, - [352] = {.lex_state = 7, .external_lex_state = 3}, - [353] = {.lex_state = 30, .external_lex_state = 3}, - [354] = {.lex_state = 30, .external_lex_state = 3}, - [355] = {.lex_state = 7, .external_lex_state = 3}, - [356] = {.lex_state = 8, .external_lex_state = 3}, - [357] = {.lex_state = 8, .external_lex_state = 3}, - [358] = {.lex_state = 8, .external_lex_state = 3}, - [359] = {.lex_state = 8, .external_lex_state = 3}, - [360] = {.lex_state = 8, .external_lex_state = 3}, - [361] = {.lex_state = 8, .external_lex_state = 3}, - [362] = {.lex_state = 8, .external_lex_state = 3}, - [363] = {.lex_state = 30, .external_lex_state = 3}, - [364] = {.lex_state = 8, .external_lex_state = 3}, - [365] = {.lex_state = 8, .external_lex_state = 3}, - [366] = {.lex_state = 8, .external_lex_state = 3}, - [367] = {.lex_state = 117, .external_lex_state = 3}, - [368] = {.lex_state = 30, .external_lex_state = 3}, - [369] = {.lex_state = 30, .external_lex_state = 3}, - [370] = {.lex_state = 30, .external_lex_state = 3}, - [371] = {.lex_state = 30, .external_lex_state = 3}, - [372] = {.lex_state = 30, .external_lex_state = 3}, - [373] = {.lex_state = 8, .external_lex_state = 3}, - [374] = {.lex_state = 7, .external_lex_state = 3}, - [375] = {.lex_state = 8, .external_lex_state = 3}, - [376] = {.lex_state = 30, .external_lex_state = 3}, - [377] = {.lex_state = 30, .external_lex_state = 3}, - [378] = {.lex_state = 117, .external_lex_state = 3}, - [379] = {.lex_state = 7, .external_lex_state = 3}, - [380] = {.lex_state = 8, .external_lex_state = 3}, - [381] = {.lex_state = 30, .external_lex_state = 3}, - [382] = {.lex_state = 8, .external_lex_state = 3}, - [383] = {.lex_state = 8, .external_lex_state = 3}, - [384] = {.lex_state = 30, .external_lex_state = 3}, - [385] = {.lex_state = 30, .external_lex_state = 3}, - [386] = {.lex_state = 30, .external_lex_state = 3}, - [387] = {.lex_state = 7, .external_lex_state = 3}, - [388] = {.lex_state = 7, .external_lex_state = 3}, - [389] = {.lex_state = 30, .external_lex_state = 3}, - [390] = {.lex_state = 7, .external_lex_state = 3}, - [391] = {.lex_state = 7, .external_lex_state = 3}, - [392] = {.lex_state = 30, .external_lex_state = 3}, - [393] = {.lex_state = 7, .external_lex_state = 3}, - [394] = {.lex_state = 30, .external_lex_state = 3}, - [395] = {.lex_state = 7, .external_lex_state = 3}, - [396] = {.lex_state = 7, .external_lex_state = 3}, - [397] = {.lex_state = 7, .external_lex_state = 3}, - [398] = {.lex_state = 7, .external_lex_state = 3}, - [399] = {.lex_state = 7, .external_lex_state = 3}, - [400] = {.lex_state = 8, .external_lex_state = 3}, - [401] = {.lex_state = 30, .external_lex_state = 3}, - [402] = {.lex_state = 7, .external_lex_state = 3}, - [403] = {.lex_state = 30, .external_lex_state = 3}, - [404] = {.lex_state = 7, .external_lex_state = 3}, - [405] = {.lex_state = 30, .external_lex_state = 3}, - [406] = {.lex_state = 30, .external_lex_state = 3}, - [407] = {.lex_state = 30, .external_lex_state = 3}, - [408] = {.lex_state = 30, .external_lex_state = 3}, - [409] = {.lex_state = 30, .external_lex_state = 3}, - [410] = {.lex_state = 30, .external_lex_state = 3}, - [411] = {.lex_state = 30, .external_lex_state = 3}, - [412] = {.lex_state = 30, .external_lex_state = 3}, - [413] = {.lex_state = 30, .external_lex_state = 3}, - [414] = {.lex_state = 30, .external_lex_state = 3}, - [415] = {.lex_state = 30, .external_lex_state = 3}, - [416] = {.lex_state = 8, .external_lex_state = 3}, - [417] = {.lex_state = 30, .external_lex_state = 3}, - [418] = {.lex_state = 8, .external_lex_state = 3}, - [419] = {.lex_state = 30, .external_lex_state = 3}, - [420] = {.lex_state = 8, .external_lex_state = 3}, - [421] = {.lex_state = 30, .external_lex_state = 3}, - [422] = {.lex_state = 8, .external_lex_state = 3}, - [423] = {.lex_state = 30, .external_lex_state = 3}, - [424] = {.lex_state = 30, .external_lex_state = 3}, - [425] = {.lex_state = 30, .external_lex_state = 3}, - [426] = {.lex_state = 30, .external_lex_state = 3}, - [427] = {.lex_state = 30, .external_lex_state = 3}, - [428] = {.lex_state = 30, .external_lex_state = 3}, - [429] = {.lex_state = 30, .external_lex_state = 3}, - [430] = {.lex_state = 30, .external_lex_state = 3}, - [431] = {.lex_state = 30, .external_lex_state = 3}, - [432] = {.lex_state = 8, .external_lex_state = 3}, - [433] = {.lex_state = 8, .external_lex_state = 3}, - [434] = {.lex_state = 30, .external_lex_state = 3}, - [435] = {.lex_state = 30, .external_lex_state = 3}, - [436] = {.lex_state = 30, .external_lex_state = 3}, - [437] = {.lex_state = 30, .external_lex_state = 3}, - [438] = {.lex_state = 30, .external_lex_state = 3}, - [439] = {.lex_state = 30, .external_lex_state = 3}, - [440] = {.lex_state = 30, .external_lex_state = 3}, - [441] = {.lex_state = 30, .external_lex_state = 3}, - [442] = {.lex_state = 30, .external_lex_state = 3}, - [443] = {.lex_state = 30, .external_lex_state = 3}, - [444] = {.lex_state = 30, .external_lex_state = 3}, - [445] = {.lex_state = 30, .external_lex_state = 3}, - [446] = {.lex_state = 30, .external_lex_state = 3}, - [447] = {.lex_state = 30, .external_lex_state = 3}, - [448] = {.lex_state = 30, .external_lex_state = 3}, - [449] = {.lex_state = 30, .external_lex_state = 3}, - [450] = {.lex_state = 30, .external_lex_state = 3}, - [451] = {.lex_state = 30, .external_lex_state = 3}, - [452] = {.lex_state = 30, .external_lex_state = 3}, - [453] = {.lex_state = 30, .external_lex_state = 3}, - [454] = {.lex_state = 8, .external_lex_state = 3}, - [455] = {.lex_state = 8, .external_lex_state = 3}, - [456] = {.lex_state = 30, .external_lex_state = 3}, - [457] = {.lex_state = 30, .external_lex_state = 3}, - [458] = {.lex_state = 30, .external_lex_state = 3}, - [459] = {.lex_state = 30, .external_lex_state = 3}, - [460] = {.lex_state = 30, .external_lex_state = 3}, - [461] = {.lex_state = 30, .external_lex_state = 3}, - [462] = {.lex_state = 30, .external_lex_state = 3}, - [463] = {.lex_state = 30, .external_lex_state = 3}, - [464] = {.lex_state = 30, .external_lex_state = 3}, - [465] = {.lex_state = 30, .external_lex_state = 3}, - [466] = {.lex_state = 30, .external_lex_state = 3}, - [467] = {.lex_state = 30, .external_lex_state = 3}, - [468] = {.lex_state = 30, .external_lex_state = 3}, - [469] = {.lex_state = 30, .external_lex_state = 3}, - [470] = {.lex_state = 30, .external_lex_state = 3}, - [471] = {.lex_state = 30, .external_lex_state = 3}, - [472] = {.lex_state = 30, .external_lex_state = 3}, - [473] = {.lex_state = 30, .external_lex_state = 3}, - [474] = {.lex_state = 30, .external_lex_state = 3}, - [475] = {.lex_state = 30, .external_lex_state = 3}, - [476] = {.lex_state = 8, .external_lex_state = 3}, - [477] = {.lex_state = 30, .external_lex_state = 3}, - [478] = {.lex_state = 8, .external_lex_state = 3}, - [479] = {.lex_state = 30, .external_lex_state = 3}, - [480] = {.lex_state = 30, .external_lex_state = 3}, - [481] = {.lex_state = 30, .external_lex_state = 3}, - [482] = {.lex_state = 30, .external_lex_state = 3}, - [483] = {.lex_state = 30, .external_lex_state = 3}, - [484] = {.lex_state = 30, .external_lex_state = 3}, - [485] = {.lex_state = 30, .external_lex_state = 3}, - [486] = {.lex_state = 30, .external_lex_state = 3}, - [487] = {.lex_state = 30, .external_lex_state = 3}, - [488] = {.lex_state = 30, .external_lex_state = 3}, - [489] = {.lex_state = 30, .external_lex_state = 3}, - [490] = {.lex_state = 30, .external_lex_state = 3}, - [491] = {.lex_state = 30, .external_lex_state = 3}, - [492] = {.lex_state = 30, .external_lex_state = 3}, - [493] = {.lex_state = 30, .external_lex_state = 3}, - [494] = {.lex_state = 8, .external_lex_state = 3}, - [495] = {.lex_state = 30, .external_lex_state = 3}, - [496] = {.lex_state = 30, .external_lex_state = 3}, - [497] = {.lex_state = 30, .external_lex_state = 3}, - [498] = {.lex_state = 30, .external_lex_state = 3}, - [499] = {.lex_state = 30, .external_lex_state = 3}, - [500] = {.lex_state = 30, .external_lex_state = 3}, - [501] = {.lex_state = 30, .external_lex_state = 3}, - [502] = {.lex_state = 30, .external_lex_state = 3}, - [503] = {.lex_state = 30, .external_lex_state = 3}, - [504] = {.lex_state = 30, .external_lex_state = 3}, - [505] = {.lex_state = 30, .external_lex_state = 3}, - [506] = {.lex_state = 30, .external_lex_state = 3}, - [507] = {.lex_state = 30, .external_lex_state = 3}, - [508] = {.lex_state = 30, .external_lex_state = 3}, - [509] = {.lex_state = 30, .external_lex_state = 3}, - [510] = {.lex_state = 30, .external_lex_state = 3}, - [511] = {.lex_state = 30, .external_lex_state = 3}, - [512] = {.lex_state = 30, .external_lex_state = 3}, - [513] = {.lex_state = 8, .external_lex_state = 3}, - [514] = {.lex_state = 30, .external_lex_state = 3}, - [515] = {.lex_state = 30, .external_lex_state = 3}, - [516] = {.lex_state = 30, .external_lex_state = 3}, - [517] = {.lex_state = 30, .external_lex_state = 3}, - [518] = {.lex_state = 30, .external_lex_state = 3}, - [519] = {.lex_state = 30, .external_lex_state = 3}, - [520] = {.lex_state = 30, .external_lex_state = 3}, - [521] = {.lex_state = 30, .external_lex_state = 3}, - [522] = {.lex_state = 30, .external_lex_state = 3}, - [523] = {.lex_state = 30, .external_lex_state = 3}, - [524] = {.lex_state = 30, .external_lex_state = 3}, - [525] = {.lex_state = 30, .external_lex_state = 3}, - [526] = {.lex_state = 30, .external_lex_state = 3}, - [527] = {.lex_state = 30, .external_lex_state = 3}, - [528] = {.lex_state = 30, .external_lex_state = 3}, - [529] = {.lex_state = 30, .external_lex_state = 3}, - [530] = {.lex_state = 30, .external_lex_state = 3}, - [531] = {.lex_state = 30, .external_lex_state = 3}, - [532] = {.lex_state = 30, .external_lex_state = 3}, - [533] = {.lex_state = 8, .external_lex_state = 3}, - [534] = {.lex_state = 30, .external_lex_state = 3}, - [535] = {.lex_state = 30, .external_lex_state = 3}, - [536] = {.lex_state = 30, .external_lex_state = 3}, - [537] = {.lex_state = 8, .external_lex_state = 3}, - [538] = {.lex_state = 30, .external_lex_state = 3}, - [539] = {.lex_state = 30, .external_lex_state = 3}, - [540] = {.lex_state = 30, .external_lex_state = 3}, - [541] = {.lex_state = 8, .external_lex_state = 3}, - [542] = {.lex_state = 30, .external_lex_state = 3}, - [543] = {.lex_state = 30, .external_lex_state = 3}, - [544] = {.lex_state = 30, .external_lex_state = 3}, - [545] = {.lex_state = 30, .external_lex_state = 3}, - [546] = {.lex_state = 8, .external_lex_state = 3}, - [547] = {.lex_state = 30, .external_lex_state = 3}, - [548] = {.lex_state = 8, .external_lex_state = 3}, - [549] = {.lex_state = 30, .external_lex_state = 3}, - [550] = {.lex_state = 30, .external_lex_state = 3}, - [551] = {.lex_state = 30, .external_lex_state = 3}, - [552] = {.lex_state = 30, .external_lex_state = 3}, - [553] = {.lex_state = 30, .external_lex_state = 3}, - [554] = {.lex_state = 8, .external_lex_state = 3}, - [555] = {.lex_state = 30, .external_lex_state = 3}, - [556] = {.lex_state = 30, .external_lex_state = 3}, - [557] = {.lex_state = 30, .external_lex_state = 3}, - [558] = {.lex_state = 30, .external_lex_state = 3}, - [559] = {.lex_state = 30, .external_lex_state = 3}, - [560] = {.lex_state = 30, .external_lex_state = 3}, - [561] = {.lex_state = 30, .external_lex_state = 3}, - [562] = {.lex_state = 30, .external_lex_state = 3}, - [563] = {.lex_state = 8, .external_lex_state = 3}, - [564] = {.lex_state = 30, .external_lex_state = 3}, - [565] = {.lex_state = 30, .external_lex_state = 3}, - [566] = {.lex_state = 30, .external_lex_state = 3}, - [567] = {.lex_state = 30, .external_lex_state = 3}, - [568] = {.lex_state = 30, .external_lex_state = 3}, - [569] = {.lex_state = 30, .external_lex_state = 3}, - [570] = {.lex_state = 30, .external_lex_state = 3}, - [571] = {.lex_state = 30, .external_lex_state = 3}, - [572] = {.lex_state = 30, .external_lex_state = 3}, - [573] = {.lex_state = 30, .external_lex_state = 3}, - [574] = {.lex_state = 30, .external_lex_state = 3}, - [575] = {.lex_state = 30, .external_lex_state = 3}, - [576] = {.lex_state = 30, .external_lex_state = 3}, - [577] = {.lex_state = 30, .external_lex_state = 3}, - [578] = {.lex_state = 30, .external_lex_state = 3}, - [579] = {.lex_state = 30, .external_lex_state = 3}, - [580] = {.lex_state = 30, .external_lex_state = 3}, - [581] = {.lex_state = 30, .external_lex_state = 3}, - [582] = {.lex_state = 30, .external_lex_state = 3}, - [583] = {.lex_state = 30, .external_lex_state = 3}, - [584] = {.lex_state = 30, .external_lex_state = 3}, - [585] = {.lex_state = 30, .external_lex_state = 3}, - [586] = {.lex_state = 30, .external_lex_state = 3}, - [587] = {.lex_state = 30, .external_lex_state = 3}, - [588] = {.lex_state = 8, .external_lex_state = 3}, - [589] = {.lex_state = 30, .external_lex_state = 3}, - [590] = {.lex_state = 30, .external_lex_state = 3}, - [591] = {.lex_state = 30, .external_lex_state = 3}, - [592] = {.lex_state = 30, .external_lex_state = 3}, - [593] = {.lex_state = 30, .external_lex_state = 3}, - [594] = {.lex_state = 30, .external_lex_state = 3}, - [595] = {.lex_state = 30, .external_lex_state = 3}, - [596] = {.lex_state = 30, .external_lex_state = 3}, - [597] = {.lex_state = 30, .external_lex_state = 3}, - [598] = {.lex_state = 30, .external_lex_state = 3}, - [599] = {.lex_state = 30, .external_lex_state = 3}, - [600] = {.lex_state = 30, .external_lex_state = 3}, - [601] = {.lex_state = 30, .external_lex_state = 3}, - [602] = {.lex_state = 8, .external_lex_state = 3}, - [603] = {.lex_state = 30, .external_lex_state = 3}, - [604] = {.lex_state = 30, .external_lex_state = 3}, - [605] = {.lex_state = 30, .external_lex_state = 3}, - [606] = {.lex_state = 30, .external_lex_state = 3}, - [607] = {.lex_state = 30, .external_lex_state = 3}, - [608] = {.lex_state = 30, .external_lex_state = 3}, - [609] = {.lex_state = 30, .external_lex_state = 3}, - [610] = {.lex_state = 30, .external_lex_state = 3}, - [611] = {.lex_state = 30, .external_lex_state = 3}, - [612] = {.lex_state = 30, .external_lex_state = 3}, - [613] = {.lex_state = 30, .external_lex_state = 3}, - [614] = {.lex_state = 30, .external_lex_state = 3}, - [615] = {.lex_state = 30, .external_lex_state = 3}, - [616] = {.lex_state = 30, .external_lex_state = 3}, - [617] = {.lex_state = 30, .external_lex_state = 3}, - [618] = {.lex_state = 30, .external_lex_state = 3}, - [619] = {.lex_state = 8, .external_lex_state = 3}, - [620] = {.lex_state = 30, .external_lex_state = 3}, - [621] = {.lex_state = 30, .external_lex_state = 3}, - [622] = {.lex_state = 8, .external_lex_state = 3}, - [623] = {.lex_state = 8, .external_lex_state = 3}, - [624] = {.lex_state = 30, .external_lex_state = 3}, - [625] = {.lex_state = 30, .external_lex_state = 3}, - [626] = {.lex_state = 30, .external_lex_state = 3}, - [627] = {.lex_state = 30, .external_lex_state = 3}, - [628] = {.lex_state = 30, .external_lex_state = 3}, - [629] = {.lex_state = 30, .external_lex_state = 3}, - [630] = {.lex_state = 30, .external_lex_state = 3}, - [631] = {.lex_state = 30, .external_lex_state = 3}, - [632] = {.lex_state = 30, .external_lex_state = 3}, - [633] = {.lex_state = 30, .external_lex_state = 3}, - [634] = {.lex_state = 30, .external_lex_state = 3}, - [635] = {.lex_state = 30, .external_lex_state = 3}, - [636] = {.lex_state = 8, .external_lex_state = 3}, - [637] = {.lex_state = 30, .external_lex_state = 3}, - [638] = {.lex_state = 30, .external_lex_state = 3}, - [639] = {.lex_state = 30, .external_lex_state = 3}, - [640] = {.lex_state = 30, .external_lex_state = 3}, - [641] = {.lex_state = 30, .external_lex_state = 3}, - [642] = {.lex_state = 30, .external_lex_state = 3}, - [643] = {.lex_state = 30, .external_lex_state = 3}, - [644] = {.lex_state = 30, .external_lex_state = 3}, - [645] = {.lex_state = 30, .external_lex_state = 3}, - [646] = {.lex_state = 30, .external_lex_state = 3}, - [647] = {.lex_state = 30, .external_lex_state = 3}, - [648] = {.lex_state = 30, .external_lex_state = 3}, - [649] = {.lex_state = 30, .external_lex_state = 3}, - [650] = {.lex_state = 30, .external_lex_state = 3}, - [651] = {.lex_state = 30, .external_lex_state = 3}, - [652] = {.lex_state = 30, .external_lex_state = 3}, - [653] = {.lex_state = 8, .external_lex_state = 3}, - [654] = {.lex_state = 30, .external_lex_state = 3}, - [655] = {.lex_state = 30, .external_lex_state = 3}, - [656] = {.lex_state = 30, .external_lex_state = 3}, - [657] = {.lex_state = 30, .external_lex_state = 3}, - [658] = {.lex_state = 30, .external_lex_state = 3}, - [659] = {.lex_state = 30, .external_lex_state = 3}, - [660] = {.lex_state = 8, .external_lex_state = 3}, - [661] = {.lex_state = 30, .external_lex_state = 3}, - [662] = {.lex_state = 30, .external_lex_state = 3}, - [663] = {.lex_state = 30, .external_lex_state = 3}, - [664] = {.lex_state = 8, .external_lex_state = 3}, - [665] = {.lex_state = 30, .external_lex_state = 3}, - [666] = {.lex_state = 8, .external_lex_state = 3}, - [667] = {.lex_state = 30, .external_lex_state = 3}, - [668] = {.lex_state = 30, .external_lex_state = 3}, - [669] = {.lex_state = 30, .external_lex_state = 3}, - [670] = {.lex_state = 30, .external_lex_state = 3}, - [671] = {.lex_state = 30, .external_lex_state = 3}, - [672] = {.lex_state = 30, .external_lex_state = 3}, - [673] = {.lex_state = 8, .external_lex_state = 3}, - [674] = {.lex_state = 8, .external_lex_state = 3}, - [675] = {.lex_state = 30, .external_lex_state = 3}, - [676] = {.lex_state = 8, .external_lex_state = 3}, - [677] = {.lex_state = 30, .external_lex_state = 3}, - [678] = {.lex_state = 30, .external_lex_state = 3}, - [679] = {.lex_state = 30, .external_lex_state = 3}, - [680] = {.lex_state = 30, .external_lex_state = 3}, - [681] = {.lex_state = 8, .external_lex_state = 3}, - [682] = {.lex_state = 30, .external_lex_state = 3}, - [683] = {.lex_state = 8, .external_lex_state = 3}, - [684] = {.lex_state = 8, .external_lex_state = 3}, - [685] = {.lex_state = 30, .external_lex_state = 3}, - [686] = {.lex_state = 30, .external_lex_state = 3}, - [687] = {.lex_state = 30, .external_lex_state = 3}, - [688] = {.lex_state = 30, .external_lex_state = 3}, - [689] = {.lex_state = 30, .external_lex_state = 3}, - [690] = {.lex_state = 8, .external_lex_state = 3}, - [691] = {.lex_state = 30, .external_lex_state = 3}, - [692] = {.lex_state = 30, .external_lex_state = 3}, - [693] = {.lex_state = 30, .external_lex_state = 3}, - [694] = {.lex_state = 30, .external_lex_state = 3}, - [695] = {.lex_state = 8, .external_lex_state = 3}, - [696] = {.lex_state = 30, .external_lex_state = 3}, - [697] = {.lex_state = 30, .external_lex_state = 3}, - [698] = {.lex_state = 30, .external_lex_state = 3}, - [699] = {.lex_state = 30, .external_lex_state = 3}, - [700] = {.lex_state = 30, .external_lex_state = 3}, - [701] = {.lex_state = 30, .external_lex_state = 3}, - [702] = {.lex_state = 30, .external_lex_state = 3}, - [703] = {.lex_state = 30, .external_lex_state = 3}, - [704] = {.lex_state = 30, .external_lex_state = 3}, - [705] = {.lex_state = 8, .external_lex_state = 3}, - [706] = {.lex_state = 8, .external_lex_state = 3}, - [707] = {.lex_state = 30, .external_lex_state = 3}, - [708] = {.lex_state = 30, .external_lex_state = 3}, - [709] = {.lex_state = 30, .external_lex_state = 3}, - [710] = {.lex_state = 30, .external_lex_state = 3}, - [711] = {.lex_state = 30, .external_lex_state = 3}, - [712] = {.lex_state = 30, .external_lex_state = 3}, - [713] = {.lex_state = 30, .external_lex_state = 3}, - [714] = {.lex_state = 30, .external_lex_state = 3}, - [715] = {.lex_state = 30, .external_lex_state = 3}, - [716] = {.lex_state = 30, .external_lex_state = 3}, - [717] = {.lex_state = 8, .external_lex_state = 3}, - [718] = {.lex_state = 30, .external_lex_state = 3}, - [719] = {.lex_state = 8, .external_lex_state = 3}, - [720] = {.lex_state = 30, .external_lex_state = 3}, - [721] = {.lex_state = 8, .external_lex_state = 3}, - [722] = {.lex_state = 30, .external_lex_state = 3}, - [723] = {.lex_state = 30, .external_lex_state = 3}, - [724] = {.lex_state = 30, .external_lex_state = 3}, - [725] = {.lex_state = 30, .external_lex_state = 3}, - [726] = {.lex_state = 30, .external_lex_state = 3}, - [727] = {.lex_state = 30, .external_lex_state = 3}, - [728] = {.lex_state = 30, .external_lex_state = 3}, - [729] = {.lex_state = 30, .external_lex_state = 3}, - [730] = {.lex_state = 30, .external_lex_state = 3}, - [731] = {.lex_state = 30, .external_lex_state = 3}, - [732] = {.lex_state = 30, .external_lex_state = 3}, - [733] = {.lex_state = 30, .external_lex_state = 3}, - [734] = {.lex_state = 30, .external_lex_state = 3}, - [735] = {.lex_state = 30, .external_lex_state = 3}, - [736] = {.lex_state = 30, .external_lex_state = 3}, - [737] = {.lex_state = 30, .external_lex_state = 3}, - [738] = {.lex_state = 30, .external_lex_state = 3}, - [739] = {.lex_state = 30, .external_lex_state = 3}, - [740] = {.lex_state = 30, .external_lex_state = 3}, - [741] = {.lex_state = 30, .external_lex_state = 3}, - [742] = {.lex_state = 30, .external_lex_state = 3}, - [743] = {.lex_state = 8, .external_lex_state = 3}, - [744] = {.lex_state = 30, .external_lex_state = 3}, - [745] = {.lex_state = 8, .external_lex_state = 3}, - [746] = {.lex_state = 30, .external_lex_state = 3}, - [747] = {.lex_state = 30, .external_lex_state = 3}, - [748] = {.lex_state = 30, .external_lex_state = 3}, - [749] = {.lex_state = 30, .external_lex_state = 3}, - [750] = {.lex_state = 30, .external_lex_state = 3}, - [751] = {.lex_state = 30, .external_lex_state = 3}, - [752] = {.lex_state = 30, .external_lex_state = 3}, - [753] = {.lex_state = 30, .external_lex_state = 3}, - [754] = {.lex_state = 30, .external_lex_state = 3}, - [755] = {.lex_state = 30, .external_lex_state = 3}, - [756] = {.lex_state = 30, .external_lex_state = 3}, - [757] = {.lex_state = 30, .external_lex_state = 3}, - [758] = {.lex_state = 30, .external_lex_state = 3}, - [759] = {.lex_state = 30, .external_lex_state = 3}, - [760] = {.lex_state = 30, .external_lex_state = 3}, - [761] = {.lex_state = 30, .external_lex_state = 3}, - [762] = {.lex_state = 30, .external_lex_state = 3}, - [763] = {.lex_state = 30, .external_lex_state = 3}, - [764] = {.lex_state = 30, .external_lex_state = 3}, - [765] = {.lex_state = 30, .external_lex_state = 3}, - [766] = {.lex_state = 30, .external_lex_state = 3}, - [767] = {.lex_state = 30, .external_lex_state = 3}, - [768] = {.lex_state = 30, .external_lex_state = 3}, - [769] = {.lex_state = 30, .external_lex_state = 3}, - [770] = {.lex_state = 30, .external_lex_state = 3}, - [771] = {.lex_state = 30, .external_lex_state = 3}, - [772] = {.lex_state = 30, .external_lex_state = 3}, - [773] = {.lex_state = 30, .external_lex_state = 3}, - [774] = {.lex_state = 30, .external_lex_state = 3}, - [775] = {.lex_state = 30, .external_lex_state = 3}, - [776] = {.lex_state = 30, .external_lex_state = 3}, - [777] = {.lex_state = 30, .external_lex_state = 3}, - [778] = {.lex_state = 30, .external_lex_state = 3}, - [779] = {.lex_state = 30, .external_lex_state = 3}, - [780] = {.lex_state = 8, .external_lex_state = 3}, - [781] = {.lex_state = 8, .external_lex_state = 3}, - [782] = {.lex_state = 8, .external_lex_state = 3}, - [783] = {.lex_state = 8, .external_lex_state = 3}, - [784] = {.lex_state = 8, .external_lex_state = 3}, - [785] = {.lex_state = 8, .external_lex_state = 3}, - [786] = {.lex_state = 8, .external_lex_state = 3}, - [787] = {.lex_state = 30, .external_lex_state = 3}, - [788] = {.lex_state = 30, .external_lex_state = 3}, - [789] = {.lex_state = 30, .external_lex_state = 3}, - [790] = {.lex_state = 30, .external_lex_state = 3}, - [791] = {.lex_state = 30, .external_lex_state = 3}, - [792] = {.lex_state = 30, .external_lex_state = 3}, - [793] = {.lex_state = 30, .external_lex_state = 3}, - [794] = {.lex_state = 30, .external_lex_state = 3}, - [795] = {.lex_state = 30, .external_lex_state = 3}, - [796] = {.lex_state = 30, .external_lex_state = 3}, - [797] = {.lex_state = 30, .external_lex_state = 3}, - [798] = {.lex_state = 30, .external_lex_state = 3}, - [799] = {.lex_state = 30, .external_lex_state = 3}, - [800] = {.lex_state = 30, .external_lex_state = 3}, - [801] = {.lex_state = 30, .external_lex_state = 3}, - [802] = {.lex_state = 30, .external_lex_state = 3}, - [803] = {.lex_state = 30, .external_lex_state = 3}, - [804] = {.lex_state = 30, .external_lex_state = 3}, - [805] = {.lex_state = 30, .external_lex_state = 3}, - [806] = {.lex_state = 30, .external_lex_state = 3}, - [807] = {.lex_state = 30, .external_lex_state = 3}, - [808] = {.lex_state = 30, .external_lex_state = 3}, - [809] = {.lex_state = 30, .external_lex_state = 3}, - [810] = {.lex_state = 30, .external_lex_state = 3}, - [811] = {.lex_state = 30, .external_lex_state = 3}, - [812] = {.lex_state = 30, .external_lex_state = 3}, - [813] = {.lex_state = 30, .external_lex_state = 3}, - [814] = {.lex_state = 30, .external_lex_state = 3}, - [815] = {.lex_state = 13, .external_lex_state = 3}, - [816] = {.lex_state = 30, .external_lex_state = 3}, - [817] = {.lex_state = 30, .external_lex_state = 3}, - [818] = {.lex_state = 30, .external_lex_state = 3}, - [819] = {.lex_state = 9, .external_lex_state = 3}, - [820] = {.lex_state = 30, .external_lex_state = 3}, - [821] = {.lex_state = 30, .external_lex_state = 3}, - [822] = {.lex_state = 13, .external_lex_state = 3}, - [823] = {.lex_state = 30, .external_lex_state = 3}, - [824] = {.lex_state = 30, .external_lex_state = 3}, - [825] = {.lex_state = 30, .external_lex_state = 3}, - [826] = {.lex_state = 30, .external_lex_state = 3}, - [827] = {.lex_state = 30, .external_lex_state = 3}, - [828] = {.lex_state = 13, .external_lex_state = 3}, - [829] = {.lex_state = 30, .external_lex_state = 3}, - [830] = {.lex_state = 30, .external_lex_state = 3}, - [831] = {.lex_state = 30, .external_lex_state = 3}, - [832] = {.lex_state = 30, .external_lex_state = 3}, - [833] = {.lex_state = 30, .external_lex_state = 3}, - [834] = {.lex_state = 30, .external_lex_state = 3}, - [835] = {.lex_state = 30, .external_lex_state = 3}, - [836] = {.lex_state = 30, .external_lex_state = 3}, - [837] = {.lex_state = 30, .external_lex_state = 3}, - [838] = {.lex_state = 30, .external_lex_state = 3}, - [839] = {.lex_state = 30, .external_lex_state = 3}, - [840] = {.lex_state = 30, .external_lex_state = 3}, - [841] = {.lex_state = 30, .external_lex_state = 3}, - [842] = {.lex_state = 30, .external_lex_state = 3}, - [843] = {.lex_state = 30, .external_lex_state = 3}, - [844] = {.lex_state = 30, .external_lex_state = 3}, - [845] = {.lex_state = 30, .external_lex_state = 3}, - [846] = {.lex_state = 30, .external_lex_state = 3}, - [847] = {.lex_state = 30, .external_lex_state = 3}, - [848] = {.lex_state = 30, .external_lex_state = 3}, - [849] = {.lex_state = 30, .external_lex_state = 3}, - [850] = {.lex_state = 30, .external_lex_state = 3}, - [851] = {.lex_state = 30, .external_lex_state = 3}, - [852] = {.lex_state = 30, .external_lex_state = 3}, - [853] = {.lex_state = 30, .external_lex_state = 3}, - [854] = {.lex_state = 13, .external_lex_state = 3}, - [855] = {.lex_state = 30, .external_lex_state = 3}, - [856] = {.lex_state = 30, .external_lex_state = 3}, - [857] = {.lex_state = 30, .external_lex_state = 3}, - [858] = {.lex_state = 30, .external_lex_state = 3}, - [859] = {.lex_state = 30, .external_lex_state = 3}, - [860] = {.lex_state = 13, .external_lex_state = 3}, - [861] = {.lex_state = 30, .external_lex_state = 3}, - [862] = {.lex_state = 30, .external_lex_state = 3}, - [863] = {.lex_state = 30, .external_lex_state = 3}, - [864] = {.lex_state = 30, .external_lex_state = 3}, - [865] = {.lex_state = 30, .external_lex_state = 3}, - [866] = {.lex_state = 30, .external_lex_state = 3}, - [867] = {.lex_state = 30, .external_lex_state = 3}, - [868] = {.lex_state = 30, .external_lex_state = 3}, - [869] = {.lex_state = 30, .external_lex_state = 3}, - [870] = {.lex_state = 30, .external_lex_state = 3}, - [871] = {.lex_state = 30, .external_lex_state = 3}, - [872] = {.lex_state = 30, .external_lex_state = 3}, - [873] = {.lex_state = 30, .external_lex_state = 3}, - [874] = {.lex_state = 30, .external_lex_state = 3}, - [875] = {.lex_state = 30, .external_lex_state = 3}, - [876] = {.lex_state = 30, .external_lex_state = 3}, - [877] = {.lex_state = 30, .external_lex_state = 3}, - [878] = {.lex_state = 30, .external_lex_state = 3}, - [879] = {.lex_state = 30, .external_lex_state = 3}, - [880] = {.lex_state = 30, .external_lex_state = 3}, - [881] = {.lex_state = 30, .external_lex_state = 3}, - [882] = {.lex_state = 30, .external_lex_state = 3}, - [883] = {.lex_state = 30, .external_lex_state = 3}, - [884] = {.lex_state = 30, .external_lex_state = 3}, - [885] = {.lex_state = 30, .external_lex_state = 3}, - [886] = {.lex_state = 30, .external_lex_state = 3}, - [887] = {.lex_state = 30, .external_lex_state = 3}, - [888] = {.lex_state = 30, .external_lex_state = 3}, - [889] = {.lex_state = 30, .external_lex_state = 3}, - [890] = {.lex_state = 30, .external_lex_state = 3}, - [891] = {.lex_state = 30, .external_lex_state = 3}, - [892] = {.lex_state = 30, .external_lex_state = 3}, - [893] = {.lex_state = 30, .external_lex_state = 3}, - [894] = {.lex_state = 30, .external_lex_state = 3}, - [895] = {.lex_state = 30, .external_lex_state = 3}, - [896] = {.lex_state = 30, .external_lex_state = 3}, - [897] = {.lex_state = 30, .external_lex_state = 3}, - [898] = {.lex_state = 30, .external_lex_state = 3}, - [899] = {.lex_state = 30, .external_lex_state = 3}, - [900] = {.lex_state = 30, .external_lex_state = 3}, - [901] = {.lex_state = 30, .external_lex_state = 3}, - [902] = {.lex_state = 30, .external_lex_state = 3}, - [903] = {.lex_state = 30, .external_lex_state = 3}, - [904] = {.lex_state = 30, .external_lex_state = 3}, - [905] = {.lex_state = 30, .external_lex_state = 3}, - [906] = {.lex_state = 30, .external_lex_state = 3}, - [907] = {.lex_state = 30, .external_lex_state = 3}, - [908] = {.lex_state = 30, .external_lex_state = 3}, - [909] = {.lex_state = 30, .external_lex_state = 3}, - [910] = {.lex_state = 30, .external_lex_state = 3}, - [911] = {.lex_state = 30, .external_lex_state = 3}, - [912] = {.lex_state = 30, .external_lex_state = 3}, - [913] = {.lex_state = 30, .external_lex_state = 3}, - [914] = {.lex_state = 30, .external_lex_state = 3}, - [915] = {.lex_state = 30, .external_lex_state = 3}, - [916] = {.lex_state = 30, .external_lex_state = 3}, - [917] = {.lex_state = 30, .external_lex_state = 3}, - [918] = {.lex_state = 30, .external_lex_state = 3}, - [919] = {.lex_state = 30, .external_lex_state = 3}, - [920] = {.lex_state = 30, .external_lex_state = 3}, - [921] = {.lex_state = 30, .external_lex_state = 3}, - [922] = {.lex_state = 30, .external_lex_state = 3}, - [923] = {.lex_state = 30, .external_lex_state = 3}, - [924] = {.lex_state = 30, .external_lex_state = 3}, - [925] = {.lex_state = 30, .external_lex_state = 3}, - [926] = {.lex_state = 30, .external_lex_state = 3}, - [927] = {.lex_state = 30, .external_lex_state = 3}, - [928] = {.lex_state = 30, .external_lex_state = 3}, - [929] = {.lex_state = 30, .external_lex_state = 3}, - [930] = {.lex_state = 30, .external_lex_state = 3}, - [931] = {.lex_state = 30, .external_lex_state = 3}, - [932] = {.lex_state = 30, .external_lex_state = 3}, - [933] = {.lex_state = 30, .external_lex_state = 3}, - [934] = {.lex_state = 30, .external_lex_state = 3}, - [935] = {.lex_state = 30, .external_lex_state = 3}, - [936] = {.lex_state = 30, .external_lex_state = 3}, - [937] = {.lex_state = 30, .external_lex_state = 3}, - [938] = {.lex_state = 30, .external_lex_state = 3}, - [939] = {.lex_state = 30, .external_lex_state = 3}, - [940] = {.lex_state = 30, .external_lex_state = 3}, - [941] = {.lex_state = 30, .external_lex_state = 3}, - [942] = {.lex_state = 30, .external_lex_state = 3}, - [943] = {.lex_state = 30, .external_lex_state = 3}, - [944] = {.lex_state = 30, .external_lex_state = 3}, - [945] = {.lex_state = 30, .external_lex_state = 3}, - [946] = {.lex_state = 30, .external_lex_state = 3}, - [947] = {.lex_state = 30, .external_lex_state = 3}, - [948] = {.lex_state = 30, .external_lex_state = 3}, - [949] = {.lex_state = 30, .external_lex_state = 3}, - [950] = {.lex_state = 30, .external_lex_state = 3}, - [951] = {.lex_state = 30, .external_lex_state = 3}, - [952] = {.lex_state = 30, .external_lex_state = 3}, - [953] = {.lex_state = 30, .external_lex_state = 3}, - [954] = {.lex_state = 30, .external_lex_state = 3}, - [955] = {.lex_state = 30, .external_lex_state = 3}, - [956] = {.lex_state = 30, .external_lex_state = 3}, - [957] = {.lex_state = 30, .external_lex_state = 3}, - [958] = {.lex_state = 30, .external_lex_state = 3}, - [959] = {.lex_state = 30, .external_lex_state = 3}, - [960] = {.lex_state = 30, .external_lex_state = 3}, - [961] = {.lex_state = 30, .external_lex_state = 3}, - [962] = {.lex_state = 30, .external_lex_state = 3}, - [963] = {.lex_state = 30, .external_lex_state = 3}, - [964] = {.lex_state = 30, .external_lex_state = 3}, - [965] = {.lex_state = 30, .external_lex_state = 3}, - [966] = {.lex_state = 30, .external_lex_state = 3}, - [967] = {.lex_state = 30, .external_lex_state = 3}, - [968] = {.lex_state = 30, .external_lex_state = 3}, - [969] = {.lex_state = 30, .external_lex_state = 3}, - [970] = {.lex_state = 30, .external_lex_state = 3}, - [971] = {.lex_state = 30, .external_lex_state = 3}, - [972] = {.lex_state = 30, .external_lex_state = 3}, - [973] = {.lex_state = 30, .external_lex_state = 3}, - [974] = {.lex_state = 30, .external_lex_state = 3}, - [975] = {.lex_state = 30, .external_lex_state = 3}, - [976] = {.lex_state = 30, .external_lex_state = 3}, - [977] = {.lex_state = 30, .external_lex_state = 3}, - [978] = {.lex_state = 30, .external_lex_state = 3}, - [979] = {.lex_state = 30, .external_lex_state = 3}, - [980] = {.lex_state = 30, .external_lex_state = 3}, - [981] = {.lex_state = 30, .external_lex_state = 3}, - [982] = {.lex_state = 30, .external_lex_state = 3}, - [983] = {.lex_state = 30, .external_lex_state = 3}, - [984] = {.lex_state = 30, .external_lex_state = 3}, - [985] = {.lex_state = 30, .external_lex_state = 3}, - [986] = {.lex_state = 30, .external_lex_state = 3}, - [987] = {.lex_state = 30, .external_lex_state = 3}, - [988] = {.lex_state = 30, .external_lex_state = 3}, - [989] = {.lex_state = 30, .external_lex_state = 3}, - [990] = {.lex_state = 7, .external_lex_state = 3}, - [991] = {.lex_state = 30, .external_lex_state = 3}, - [992] = {.lex_state = 30, .external_lex_state = 3}, - [993] = {.lex_state = 30, .external_lex_state = 3}, - [994] = {.lex_state = 30, .external_lex_state = 3}, - [995] = {.lex_state = 30, .external_lex_state = 3}, - [996] = {.lex_state = 30, .external_lex_state = 3}, - [997] = {.lex_state = 30, .external_lex_state = 3}, - [998] = {.lex_state = 30, .external_lex_state = 3}, - [999] = {.lex_state = 30, .external_lex_state = 3}, - [1000] = {.lex_state = 30, .external_lex_state = 3}, - [1001] = {.lex_state = 30, .external_lex_state = 3}, - [1002] = {.lex_state = 30, .external_lex_state = 3}, - [1003] = {.lex_state = 30, .external_lex_state = 3}, - [1004] = {.lex_state = 30, .external_lex_state = 3}, - [1005] = {.lex_state = 30, .external_lex_state = 3}, - [1006] = {.lex_state = 30, .external_lex_state = 3}, - [1007] = {.lex_state = 30, .external_lex_state = 3}, - [1008] = {.lex_state = 30, .external_lex_state = 3}, - [1009] = {.lex_state = 30, .external_lex_state = 3}, - [1010] = {.lex_state = 30, .external_lex_state = 3}, - [1011] = {.lex_state = 30, .external_lex_state = 3}, - [1012] = {.lex_state = 30, .external_lex_state = 3}, - [1013] = {.lex_state = 30, .external_lex_state = 3}, - [1014] = {.lex_state = 30, .external_lex_state = 3}, - [1015] = {.lex_state = 30, .external_lex_state = 3}, - [1016] = {.lex_state = 30, .external_lex_state = 3}, - [1017] = {.lex_state = 30, .external_lex_state = 3}, - [1018] = {.lex_state = 30, .external_lex_state = 3}, - [1019] = {.lex_state = 30, .external_lex_state = 3}, - [1020] = {.lex_state = 30, .external_lex_state = 3}, - [1021] = {.lex_state = 30, .external_lex_state = 3}, - [1022] = {.lex_state = 30, .external_lex_state = 3}, - [1023] = {.lex_state = 30, .external_lex_state = 3}, - [1024] = {.lex_state = 30, .external_lex_state = 3}, - [1025] = {.lex_state = 30, .external_lex_state = 3}, - [1026] = {.lex_state = 30, .external_lex_state = 3}, - [1027] = {.lex_state = 30, .external_lex_state = 3}, - [1028] = {.lex_state = 30, .external_lex_state = 3}, - [1029] = {.lex_state = 30, .external_lex_state = 3}, - [1030] = {.lex_state = 30, .external_lex_state = 3}, - [1031] = {.lex_state = 30, .external_lex_state = 3}, - [1032] = {.lex_state = 30, .external_lex_state = 3}, - [1033] = {.lex_state = 30, .external_lex_state = 3}, - [1034] = {.lex_state = 30, .external_lex_state = 3}, - [1035] = {.lex_state = 30, .external_lex_state = 3}, - [1036] = {.lex_state = 30, .external_lex_state = 3}, - [1037] = {.lex_state = 30, .external_lex_state = 3}, - [1038] = {.lex_state = 30, .external_lex_state = 3}, - [1039] = {.lex_state = 30, .external_lex_state = 3}, - [1040] = {.lex_state = 30, .external_lex_state = 3}, - [1041] = {.lex_state = 30, .external_lex_state = 3}, - [1042] = {.lex_state = 30, .external_lex_state = 3}, - [1043] = {.lex_state = 30, .external_lex_state = 3}, - [1044] = {.lex_state = 30, .external_lex_state = 3}, - [1045] = {.lex_state = 30, .external_lex_state = 3}, - [1046] = {.lex_state = 30, .external_lex_state = 3}, - [1047] = {.lex_state = 30, .external_lex_state = 3}, - [1048] = {.lex_state = 30, .external_lex_state = 3}, - [1049] = {.lex_state = 30, .external_lex_state = 3}, - [1050] = {.lex_state = 30, .external_lex_state = 3}, - [1051] = {.lex_state = 30, .external_lex_state = 3}, - [1052] = {.lex_state = 30, .external_lex_state = 3}, - [1053] = {.lex_state = 30, .external_lex_state = 3}, - [1054] = {.lex_state = 30, .external_lex_state = 3}, - [1055] = {.lex_state = 30, .external_lex_state = 3}, - [1056] = {.lex_state = 30, .external_lex_state = 3}, - [1057] = {.lex_state = 30, .external_lex_state = 3}, - [1058] = {.lex_state = 30, .external_lex_state = 3}, - [1059] = {.lex_state = 30, .external_lex_state = 3}, - [1060] = {.lex_state = 30, .external_lex_state = 3}, - [1061] = {.lex_state = 30, .external_lex_state = 3}, - [1062] = {.lex_state = 30, .external_lex_state = 3}, - [1063] = {.lex_state = 30, .external_lex_state = 3}, - [1064] = {.lex_state = 30, .external_lex_state = 3}, - [1065] = {.lex_state = 30, .external_lex_state = 3}, - [1066] = {.lex_state = 30, .external_lex_state = 3}, - [1067] = {.lex_state = 30, .external_lex_state = 3}, - [1068] = {.lex_state = 30, .external_lex_state = 3}, - [1069] = {.lex_state = 30, .external_lex_state = 3}, - [1070] = {.lex_state = 30, .external_lex_state = 3}, - [1071] = {.lex_state = 30, .external_lex_state = 3}, - [1072] = {.lex_state = 30, .external_lex_state = 3}, - [1073] = {.lex_state = 30, .external_lex_state = 3}, - [1074] = {.lex_state = 30, .external_lex_state = 3}, - [1075] = {.lex_state = 30, .external_lex_state = 3}, - [1076] = {.lex_state = 30, .external_lex_state = 3}, - [1077] = {.lex_state = 30, .external_lex_state = 3}, - [1078] = {.lex_state = 30, .external_lex_state = 3}, - [1079] = {.lex_state = 30, .external_lex_state = 3}, - [1080] = {.lex_state = 13, .external_lex_state = 3}, - [1081] = {.lex_state = 13, .external_lex_state = 3}, - [1082] = {.lex_state = 13, .external_lex_state = 3}, - [1083] = {.lex_state = 13, .external_lex_state = 3}, - [1084] = {.lex_state = 13, .external_lex_state = 3}, - [1085] = {.lex_state = 7, .external_lex_state = 3}, - [1086] = {.lex_state = 9, .external_lex_state = 3}, - [1087] = {.lex_state = 9, .external_lex_state = 3}, - [1088] = {.lex_state = 9, .external_lex_state = 3}, - [1089] = {.lex_state = 7, .external_lex_state = 3}, - [1090] = {.lex_state = 7, .external_lex_state = 3}, - [1091] = {.lex_state = 7, .external_lex_state = 3}, - [1092] = {.lex_state = 13, .external_lex_state = 3}, - [1093] = {.lex_state = 13, .external_lex_state = 3}, - [1094] = {.lex_state = 13, .external_lex_state = 3}, - [1095] = {.lex_state = 13, .external_lex_state = 3}, - [1096] = {.lex_state = 7, .external_lex_state = 3}, - [1097] = {.lex_state = 7, .external_lex_state = 3}, - [1098] = {.lex_state = 7, .external_lex_state = 3}, - [1099] = {.lex_state = 40, .external_lex_state = 3}, - [1100] = {.lex_state = 40, .external_lex_state = 3}, - [1101] = {.lex_state = 40, .external_lex_state = 3}, - [1102] = {.lex_state = 40, .external_lex_state = 3}, - [1103] = {.lex_state = 122, .external_lex_state = 3}, - [1104] = {.lex_state = 122, .external_lex_state = 3}, - [1105] = {.lex_state = 122, .external_lex_state = 3}, - [1106] = {.lex_state = 120, .external_lex_state = 3}, - [1107] = {.lex_state = 120, .external_lex_state = 3}, - [1108] = {.lex_state = 120, .external_lex_state = 3}, - [1109] = {.lex_state = 120, .external_lex_state = 3}, - [1110] = {.lex_state = 120, .external_lex_state = 3}, - [1111] = {.lex_state = 120, .external_lex_state = 3}, - [1112] = {.lex_state = 39, .external_lex_state = 3}, - [1113] = {.lex_state = 39, .external_lex_state = 3}, - [1114] = {.lex_state = 39, .external_lex_state = 3}, - [1115] = {.lex_state = 39, .external_lex_state = 3}, - [1116] = {.lex_state = 39, .external_lex_state = 3}, - [1117] = {.lex_state = 39, .external_lex_state = 3}, - [1118] = {.lex_state = 39, .external_lex_state = 3}, - [1119] = {.lex_state = 39, .external_lex_state = 3}, - [1120] = {.lex_state = 39, .external_lex_state = 3}, - [1121] = {.lex_state = 39, .external_lex_state = 3}, - [1122] = {.lex_state = 8, .external_lex_state = 3}, - [1123] = {.lex_state = 124, .external_lex_state = 3}, - [1124] = {.lex_state = 8, .external_lex_state = 3}, - [1125] = {.lex_state = 124, .external_lex_state = 3}, - [1126] = {.lex_state = 8, .external_lex_state = 3}, - [1127] = {.lex_state = 8, .external_lex_state = 3}, - [1128] = {.lex_state = 124, .external_lex_state = 3}, - [1129] = {.lex_state = 124, .external_lex_state = 3}, - [1130] = {.lex_state = 124, .external_lex_state = 3}, - [1131] = {.lex_state = 8, .external_lex_state = 3}, - [1132] = {.lex_state = 8, .external_lex_state = 3}, - [1133] = {.lex_state = 8, .external_lex_state = 3}, - [1134] = {.lex_state = 8, .external_lex_state = 3}, - [1135] = {.lex_state = 124, .external_lex_state = 3}, - [1136] = {.lex_state = 124, .external_lex_state = 3}, - [1137] = {.lex_state = 8, .external_lex_state = 3}, - [1138] = {.lex_state = 124, .external_lex_state = 3}, - [1139] = {.lex_state = 124, .external_lex_state = 3}, - [1140] = {.lex_state = 124, .external_lex_state = 3}, - [1141] = {.lex_state = 8, .external_lex_state = 3}, - [1142] = {.lex_state = 124, .external_lex_state = 3}, - [1143] = {.lex_state = 8, .external_lex_state = 3}, - [1144] = {.lex_state = 8, .external_lex_state = 3}, - [1145] = {.lex_state = 8, .external_lex_state = 3}, - [1146] = {.lex_state = 8, .external_lex_state = 3}, - [1147] = {.lex_state = 8, .external_lex_state = 3}, - [1148] = {.lex_state = 10, .external_lex_state = 3}, - [1149] = {.lex_state = 10, .external_lex_state = 3}, - [1150] = {.lex_state = 8, .external_lex_state = 3}, - [1151] = {.lex_state = 8, .external_lex_state = 3}, - [1152] = {.lex_state = 124, .external_lex_state = 3}, - [1153] = {.lex_state = 8, .external_lex_state = 3}, - [1154] = {.lex_state = 8, .external_lex_state = 3}, - [1155] = {.lex_state = 8, .external_lex_state = 3}, - [1156] = {.lex_state = 124, .external_lex_state = 3}, - [1157] = {.lex_state = 117, .external_lex_state = 3}, - [1158] = {.lex_state = 8, .external_lex_state = 3}, - [1159] = {.lex_state = 8, .external_lex_state = 3}, - [1160] = {.lex_state = 8, .external_lex_state = 3}, - [1161] = {.lex_state = 39, .external_lex_state = 3}, - [1162] = {.lex_state = 10, .external_lex_state = 3}, - [1163] = {.lex_state = 8, .external_lex_state = 3}, - [1164] = {.lex_state = 8, .external_lex_state = 3}, - [1165] = {.lex_state = 8, .external_lex_state = 3}, - [1166] = {.lex_state = 8, .external_lex_state = 3}, - [1167] = {.lex_state = 8, .external_lex_state = 3}, - [1168] = {.lex_state = 8, .external_lex_state = 3}, - [1169] = {.lex_state = 7, .external_lex_state = 3}, - [1170] = {.lex_state = 8, .external_lex_state = 3}, - [1171] = {.lex_state = 7, .external_lex_state = 3}, - [1172] = {.lex_state = 10, .external_lex_state = 3}, - [1173] = {.lex_state = 8, .external_lex_state = 3}, - [1174] = {.lex_state = 10, .external_lex_state = 3}, - [1175] = {.lex_state = 7, .external_lex_state = 3}, - [1176] = {.lex_state = 8, .external_lex_state = 3}, - [1177] = {.lex_state = 8, .external_lex_state = 3}, - [1178] = {.lex_state = 8, .external_lex_state = 3}, - [1179] = {.lex_state = 10, .external_lex_state = 3}, - [1180] = {.lex_state = 8, .external_lex_state = 3}, - [1181] = {.lex_state = 7, .external_lex_state = 3}, - [1182] = {.lex_state = 124, .external_lex_state = 3}, - [1183] = {.lex_state = 8, .external_lex_state = 3}, - [1184] = {.lex_state = 7, .external_lex_state = 3}, - [1185] = {.lex_state = 7, .external_lex_state = 3}, - [1186] = {.lex_state = 8, .external_lex_state = 3}, - [1187] = {.lex_state = 8, .external_lex_state = 3}, - [1188] = {.lex_state = 8, .external_lex_state = 3}, - [1189] = {.lex_state = 124, .external_lex_state = 3}, - [1190] = {.lex_state = 8, .external_lex_state = 3}, - [1191] = {.lex_state = 8, .external_lex_state = 3}, - [1192] = {.lex_state = 8, .external_lex_state = 3}, - [1193] = {.lex_state = 8, .external_lex_state = 3}, - [1194] = {.lex_state = 124, .external_lex_state = 3}, - [1195] = {.lex_state = 124, .external_lex_state = 3}, - [1196] = {.lex_state = 8, .external_lex_state = 3}, - [1197] = {.lex_state = 7, .external_lex_state = 3}, - [1198] = {.lex_state = 8, .external_lex_state = 3}, - [1199] = {.lex_state = 8, .external_lex_state = 3}, - [1200] = {.lex_state = 8, .external_lex_state = 3}, - [1201] = {.lex_state = 8, .external_lex_state = 3}, - [1202] = {.lex_state = 8, .external_lex_state = 3}, - [1203] = {.lex_state = 8, .external_lex_state = 3}, - [1204] = {.lex_state = 8, .external_lex_state = 3}, - [1205] = {.lex_state = 8, .external_lex_state = 3}, - [1206] = {.lex_state = 10, .external_lex_state = 3}, - [1207] = {.lex_state = 8, .external_lex_state = 3}, - [1208] = {.lex_state = 8, .external_lex_state = 3}, - [1209] = {.lex_state = 8, .external_lex_state = 3}, - [1210] = {.lex_state = 10, .external_lex_state = 3}, - [1211] = {.lex_state = 8, .external_lex_state = 3}, - [1212] = {.lex_state = 8, .external_lex_state = 3}, - [1213] = {.lex_state = 10, .external_lex_state = 3}, - [1214] = {.lex_state = 10, .external_lex_state = 3}, - [1215] = {.lex_state = 8, .external_lex_state = 3}, - [1216] = {.lex_state = 8, .external_lex_state = 3}, - [1217] = {.lex_state = 8, .external_lex_state = 3}, - [1218] = {.lex_state = 8, .external_lex_state = 3}, - [1219] = {.lex_state = 8, .external_lex_state = 3}, - [1220] = {.lex_state = 8, .external_lex_state = 3}, - [1221] = {.lex_state = 8, .external_lex_state = 3}, - [1222] = {.lex_state = 124, .external_lex_state = 3}, - [1223] = {.lex_state = 8, .external_lex_state = 3}, - [1224] = {.lex_state = 124, .external_lex_state = 3}, - [1225] = {.lex_state = 7, .external_lex_state = 3}, - [1226] = {.lex_state = 8, .external_lex_state = 3}, - [1227] = {.lex_state = 8, .external_lex_state = 3}, - [1228] = {.lex_state = 124, .external_lex_state = 3}, - [1229] = {.lex_state = 8, .external_lex_state = 3}, - [1230] = {.lex_state = 8, .external_lex_state = 3}, - [1231] = {.lex_state = 117, .external_lex_state = 3}, - [1232] = {.lex_state = 7, .external_lex_state = 3}, - [1233] = {.lex_state = 8, .external_lex_state = 3}, - [1234] = {.lex_state = 117, .external_lex_state = 3}, - [1235] = {.lex_state = 8, .external_lex_state = 3}, - [1236] = {.lex_state = 8, .external_lex_state = 3}, - [1237] = {.lex_state = 10, .external_lex_state = 3}, - [1238] = {.lex_state = 8, .external_lex_state = 3}, - [1239] = {.lex_state = 8, .external_lex_state = 3}, - [1240] = {.lex_state = 8, .external_lex_state = 3}, - [1241] = {.lex_state = 8, .external_lex_state = 3}, - [1242] = {.lex_state = 8, .external_lex_state = 3}, - [1243] = {.lex_state = 8, .external_lex_state = 3}, - [1244] = {.lex_state = 8, .external_lex_state = 3}, - [1245] = {.lex_state = 8, .external_lex_state = 3}, - [1246] = {.lex_state = 8, .external_lex_state = 3}, - [1247] = {.lex_state = 8, .external_lex_state = 3}, - [1248] = {.lex_state = 8, .external_lex_state = 3}, - [1249] = {.lex_state = 7, .external_lex_state = 3}, - [1250] = {.lex_state = 10, .external_lex_state = 3}, - [1251] = {.lex_state = 7, .external_lex_state = 3}, - [1252] = {.lex_state = 7, .external_lex_state = 3}, - [1253] = {.lex_state = 10, .external_lex_state = 3}, - [1254] = {.lex_state = 7, .external_lex_state = 3}, - [1255] = {.lex_state = 10, .external_lex_state = 3}, - [1256] = {.lex_state = 10, .external_lex_state = 3}, - [1257] = {.lex_state = 10, .external_lex_state = 3}, - [1258] = {.lex_state = 7, .external_lex_state = 3}, - [1259] = {.lex_state = 7, .external_lex_state = 3}, - [1260] = {.lex_state = 7, .external_lex_state = 3}, - [1261] = {.lex_state = 7, .external_lex_state = 3}, - [1262] = {.lex_state = 124, .external_lex_state = 3}, - [1263] = {.lex_state = 10, .external_lex_state = 3}, - [1264] = {.lex_state = 7, .external_lex_state = 3}, - [1265] = {.lex_state = 7, .external_lex_state = 3}, - [1266] = {.lex_state = 7, .external_lex_state = 3}, - [1267] = {.lex_state = 10, .external_lex_state = 3}, - [1268] = {.lex_state = 7, .external_lex_state = 3}, - [1269] = {.lex_state = 7, .external_lex_state = 3}, - [1270] = {.lex_state = 7, .external_lex_state = 3}, - [1271] = {.lex_state = 10, .external_lex_state = 3}, - [1272] = {.lex_state = 10, .external_lex_state = 3}, - [1273] = {.lex_state = 10, .external_lex_state = 3}, - [1274] = {.lex_state = 7, .external_lex_state = 3}, - [1275] = {.lex_state = 10, .external_lex_state = 3}, - [1276] = {.lex_state = 10, .external_lex_state = 3}, - [1277] = {.lex_state = 7, .external_lex_state = 3}, - [1278] = {.lex_state = 7, .external_lex_state = 3}, - [1279] = {.lex_state = 7, .external_lex_state = 3}, - [1280] = {.lex_state = 7, .external_lex_state = 3}, - [1281] = {.lex_state = 7, .external_lex_state = 3}, - [1282] = {.lex_state = 7, .external_lex_state = 3}, - [1283] = {.lex_state = 10, .external_lex_state = 3}, - [1284] = {.lex_state = 7, .external_lex_state = 3}, - [1285] = {.lex_state = 10, .external_lex_state = 3}, - [1286] = {.lex_state = 10, .external_lex_state = 3}, - [1287] = {.lex_state = 7, .external_lex_state = 3}, - [1288] = {.lex_state = 10, .external_lex_state = 3}, - [1289] = {.lex_state = 7, .external_lex_state = 3}, - [1290] = {.lex_state = 10, .external_lex_state = 3}, - [1291] = {.lex_state = 10, .external_lex_state = 3}, - [1292] = {.lex_state = 10, .external_lex_state = 3}, - [1293] = {.lex_state = 10, .external_lex_state = 3}, - [1294] = {.lex_state = 7, .external_lex_state = 3}, - [1295] = {.lex_state = 7, .external_lex_state = 3}, - [1296] = {.lex_state = 10, .external_lex_state = 3}, - [1297] = {.lex_state = 10, .external_lex_state = 3}, - [1298] = {.lex_state = 10, .external_lex_state = 3}, - [1299] = {.lex_state = 7, .external_lex_state = 3}, - [1300] = {.lex_state = 7, .external_lex_state = 3}, - [1301] = {.lex_state = 10, .external_lex_state = 3}, - [1302] = {.lex_state = 7, .external_lex_state = 3}, - [1303] = {.lex_state = 7, .external_lex_state = 3}, - [1304] = {.lex_state = 7, .external_lex_state = 3}, - [1305] = {.lex_state = 10, .external_lex_state = 3}, - [1306] = {.lex_state = 10, .external_lex_state = 3}, - [1307] = {.lex_state = 10, .external_lex_state = 3}, - [1308] = {.lex_state = 10, .external_lex_state = 3}, - [1309] = {.lex_state = 7, .external_lex_state = 3}, - [1310] = {.lex_state = 7, .external_lex_state = 3}, - [1311] = {.lex_state = 7, .external_lex_state = 3}, - [1312] = {.lex_state = 10, .external_lex_state = 3}, - [1313] = {.lex_state = 10, .external_lex_state = 3}, - [1314] = {.lex_state = 7, .external_lex_state = 3}, - [1315] = {.lex_state = 10, .external_lex_state = 3}, - [1316] = {.lex_state = 10, .external_lex_state = 3}, - [1317] = {.lex_state = 7, .external_lex_state = 3}, - [1318] = {.lex_state = 7, .external_lex_state = 3}, - [1319] = {.lex_state = 10, .external_lex_state = 3}, - [1320] = {.lex_state = 7, .external_lex_state = 3}, - [1321] = {.lex_state = 10, .external_lex_state = 3}, - [1322] = {.lex_state = 7, .external_lex_state = 3}, - [1323] = {.lex_state = 10, .external_lex_state = 3}, - [1324] = {.lex_state = 10, .external_lex_state = 3}, - [1325] = {.lex_state = 7, .external_lex_state = 3}, - [1326] = {.lex_state = 7, .external_lex_state = 3}, - [1327] = {.lex_state = 10, .external_lex_state = 3}, - [1328] = {.lex_state = 7, .external_lex_state = 3}, - [1329] = {.lex_state = 7, .external_lex_state = 3}, - [1330] = {.lex_state = 10, .external_lex_state = 3}, - [1331] = {.lex_state = 7, .external_lex_state = 3}, - [1332] = {.lex_state = 7, .external_lex_state = 3}, - [1333] = {.lex_state = 10, .external_lex_state = 3}, - [1334] = {.lex_state = 10, .external_lex_state = 3}, - [1335] = {.lex_state = 10, .external_lex_state = 3}, - [1336] = {.lex_state = 10, .external_lex_state = 3}, - [1337] = {.lex_state = 10, .external_lex_state = 3}, - [1338] = {.lex_state = 7, .external_lex_state = 3}, - [1339] = {.lex_state = 10, .external_lex_state = 3}, - [1340] = {.lex_state = 10, .external_lex_state = 3}, - [1341] = {.lex_state = 7, .external_lex_state = 3}, - [1342] = {.lex_state = 7, .external_lex_state = 3}, - [1343] = {.lex_state = 10, .external_lex_state = 3}, - [1344] = {.lex_state = 7, .external_lex_state = 3}, - [1345] = {.lex_state = 7, .external_lex_state = 3}, - [1346] = {.lex_state = 10, .external_lex_state = 3}, - [1347] = {.lex_state = 10, .external_lex_state = 3}, - [1348] = {.lex_state = 10, .external_lex_state = 3}, - [1349] = {.lex_state = 10, .external_lex_state = 3}, - [1350] = {.lex_state = 10, .external_lex_state = 3}, - [1351] = {.lex_state = 10, .external_lex_state = 3}, - [1352] = {.lex_state = 10, .external_lex_state = 3}, - [1353] = {.lex_state = 7, .external_lex_state = 3}, - [1354] = {.lex_state = 7, .external_lex_state = 3}, - [1355] = {.lex_state = 7, .external_lex_state = 3}, - [1356] = {.lex_state = 7, .external_lex_state = 3}, - [1357] = {.lex_state = 10, .external_lex_state = 3}, - [1358] = {.lex_state = 7, .external_lex_state = 3}, - [1359] = {.lex_state = 7, .external_lex_state = 3}, - [1360] = {.lex_state = 10, .external_lex_state = 3}, - [1361] = {.lex_state = 7, .external_lex_state = 3}, - [1362] = {.lex_state = 10, .external_lex_state = 3}, - [1363] = {.lex_state = 7, .external_lex_state = 3}, - [1364] = {.lex_state = 7, .external_lex_state = 3}, - [1365] = {.lex_state = 7, .external_lex_state = 3}, - [1366] = {.lex_state = 10, .external_lex_state = 3}, - [1367] = {.lex_state = 7, .external_lex_state = 3}, - [1368] = {.lex_state = 10, .external_lex_state = 3}, - [1369] = {.lex_state = 7, .external_lex_state = 3}, - [1370] = {.lex_state = 10, .external_lex_state = 3}, - [1371] = {.lex_state = 7, .external_lex_state = 3}, - [1372] = {.lex_state = 10, .external_lex_state = 3}, - [1373] = {.lex_state = 10, .external_lex_state = 3}, - [1374] = {.lex_state = 7, .external_lex_state = 3}, - [1375] = {.lex_state = 10, .external_lex_state = 3}, - [1376] = {.lex_state = 10, .external_lex_state = 3}, - [1377] = {.lex_state = 10, .external_lex_state = 3}, - [1378] = {.lex_state = 10, .external_lex_state = 3}, - [1379] = {.lex_state = 7, .external_lex_state = 3}, - [1380] = {.lex_state = 10, .external_lex_state = 3}, - [1381] = {.lex_state = 7, .external_lex_state = 3}, - [1382] = {.lex_state = 10, .external_lex_state = 3}, - [1383] = {.lex_state = 10, .external_lex_state = 3}, - [1384] = {.lex_state = 7, .external_lex_state = 3}, - [1385] = {.lex_state = 10, .external_lex_state = 3}, - [1386] = {.lex_state = 10, .external_lex_state = 3}, - [1387] = {.lex_state = 10, .external_lex_state = 3}, - [1388] = {.lex_state = 10, .external_lex_state = 3}, - [1389] = {.lex_state = 7, .external_lex_state = 3}, - [1390] = {.lex_state = 7, .external_lex_state = 3}, - [1391] = {.lex_state = 7, .external_lex_state = 3}, - [1392] = {.lex_state = 10, .external_lex_state = 3}, - [1393] = {.lex_state = 7, .external_lex_state = 3}, - [1394] = {.lex_state = 7, .external_lex_state = 3}, - [1395] = {.lex_state = 10, .external_lex_state = 3}, - [1396] = {.lex_state = 10, .external_lex_state = 3}, - [1397] = {.lex_state = 10, .external_lex_state = 3}, - [1398] = {.lex_state = 23, .external_lex_state = 3}, - [1399] = {.lex_state = 23, .external_lex_state = 3}, - [1400] = {.lex_state = 7, .external_lex_state = 3}, - [1401] = {.lex_state = 7, .external_lex_state = 3}, - [1402] = {.lex_state = 11, .external_lex_state = 3}, - [1403] = {.lex_state = 11, .external_lex_state = 3}, - [1404] = {.lex_state = 11, .external_lex_state = 3}, - [1405] = {.lex_state = 11, .external_lex_state = 3}, - [1406] = {.lex_state = 25, .external_lex_state = 3}, - [1407] = {.lex_state = 11, .external_lex_state = 3}, - [1408] = {.lex_state = 11, .external_lex_state = 3}, - [1409] = {.lex_state = 8, .external_lex_state = 3}, - [1410] = {.lex_state = 17, .external_lex_state = 3}, - [1411] = {.lex_state = 8, .external_lex_state = 3}, - [1412] = {.lex_state = 8, .external_lex_state = 3}, - [1413] = {.lex_state = 11, .external_lex_state = 3}, - [1414] = {.lex_state = 11, .external_lex_state = 3}, - [1415] = {.lex_state = 11, .external_lex_state = 3}, - [1416] = {.lex_state = 17, .external_lex_state = 3}, - [1417] = {.lex_state = 11, .external_lex_state = 3}, - [1418] = {.lex_state = 11, .external_lex_state = 3}, - [1419] = {.lex_state = 11, .external_lex_state = 3}, - [1420] = {.lex_state = 11, .external_lex_state = 3}, - [1421] = {.lex_state = 11, .external_lex_state = 3}, - [1422] = {.lex_state = 11, .external_lex_state = 3}, - [1423] = {.lex_state = 17, .external_lex_state = 3}, - [1424] = {.lex_state = 11, .external_lex_state = 3}, - [1425] = {.lex_state = 11, .external_lex_state = 3}, - [1426] = {.lex_state = 11, .external_lex_state = 3}, - [1427] = {.lex_state = 7, .external_lex_state = 3}, - [1428] = {.lex_state = 17, .external_lex_state = 3}, - [1429] = {.lex_state = 11, .external_lex_state = 3}, - [1430] = {.lex_state = 11, .external_lex_state = 3}, - [1431] = {.lex_state = 11, .external_lex_state = 3}, - [1432] = {.lex_state = 11, .external_lex_state = 3}, - [1433] = {.lex_state = 11, .external_lex_state = 3}, - [1434] = {.lex_state = 11, .external_lex_state = 3}, - [1435] = {.lex_state = 11, .external_lex_state = 3}, - [1436] = {.lex_state = 11, .external_lex_state = 3}, - [1437] = {.lex_state = 11, .external_lex_state = 3}, - [1438] = {.lex_state = 11, .external_lex_state = 3}, - [1439] = {.lex_state = 11, .external_lex_state = 3}, - [1440] = {.lex_state = 11, .external_lex_state = 3}, - [1441] = {.lex_state = 11, .external_lex_state = 3}, - [1442] = {.lex_state = 11, .external_lex_state = 3}, - [1443] = {.lex_state = 11, .external_lex_state = 3}, - [1444] = {.lex_state = 11, .external_lex_state = 3}, - [1445] = {.lex_state = 11, .external_lex_state = 3}, - [1446] = {.lex_state = 11, .external_lex_state = 3}, - [1447] = {.lex_state = 11, .external_lex_state = 3}, - [1448] = {.lex_state = 11, .external_lex_state = 3}, - [1449] = {.lex_state = 4, .external_lex_state = 3}, - [1450] = {.lex_state = 11, .external_lex_state = 3}, - [1451] = {.lex_state = 11, .external_lex_state = 3}, - [1452] = {.lex_state = 11, .external_lex_state = 3}, - [1453] = {.lex_state = 11, .external_lex_state = 3}, - [1454] = {.lex_state = 11, .external_lex_state = 3}, - [1455] = {.lex_state = 11, .external_lex_state = 3}, - [1456] = {.lex_state = 11, .external_lex_state = 3}, - [1457] = {.lex_state = 11, .external_lex_state = 3}, - [1458] = {.lex_state = 11, .external_lex_state = 3}, - [1459] = {.lex_state = 17, .external_lex_state = 3}, - [1460] = {.lex_state = 11, .external_lex_state = 3}, - [1461] = {.lex_state = 11, .external_lex_state = 3}, - [1462] = {.lex_state = 11, .external_lex_state = 3}, - [1463] = {.lex_state = 7, .external_lex_state = 3}, - [1464] = {.lex_state = 11, .external_lex_state = 3}, - [1465] = {.lex_state = 11, .external_lex_state = 3}, - [1466] = {.lex_state = 11, .external_lex_state = 3}, - [1467] = {.lex_state = 7, .external_lex_state = 3}, - [1468] = {.lex_state = 11, .external_lex_state = 3}, - [1469] = {.lex_state = 11, .external_lex_state = 3}, - [1470] = {.lex_state = 11, .external_lex_state = 3}, - [1471] = {.lex_state = 11, .external_lex_state = 3}, - [1472] = {.lex_state = 11, .external_lex_state = 3}, - [1473] = {.lex_state = 11, .external_lex_state = 3}, - [1474] = {.lex_state = 11, .external_lex_state = 3}, - [1475] = {.lex_state = 11, .external_lex_state = 3}, - [1476] = {.lex_state = 11, .external_lex_state = 3}, - [1477] = {.lex_state = 25, .external_lex_state = 3}, - [1478] = {.lex_state = 11, .external_lex_state = 3}, - [1479] = {.lex_state = 11, .external_lex_state = 3}, - [1480] = {.lex_state = 11, .external_lex_state = 3}, - [1481] = {.lex_state = 11, .external_lex_state = 3}, - [1482] = {.lex_state = 11, .external_lex_state = 3}, - [1483] = {.lex_state = 11, .external_lex_state = 3}, - [1484] = {.lex_state = 11, .external_lex_state = 3}, - [1485] = {.lex_state = 11, .external_lex_state = 3}, - [1486] = {.lex_state = 11, .external_lex_state = 3}, - [1487] = {.lex_state = 11, .external_lex_state = 3}, - [1488] = {.lex_state = 11, .external_lex_state = 3}, - [1489] = {.lex_state = 11, .external_lex_state = 3}, - [1490] = {.lex_state = 11, .external_lex_state = 3}, - [1491] = {.lex_state = 11, .external_lex_state = 3}, - [1492] = {.lex_state = 11, .external_lex_state = 3}, - [1493] = {.lex_state = 11, .external_lex_state = 3}, - [1494] = {.lex_state = 11, .external_lex_state = 3}, - [1495] = {.lex_state = 11, .external_lex_state = 3}, - [1496] = {.lex_state = 11, .external_lex_state = 3}, - [1497] = {.lex_state = 11, .external_lex_state = 3}, - [1498] = {.lex_state = 11, .external_lex_state = 3}, - [1499] = {.lex_state = 11, .external_lex_state = 3}, - [1500] = {.lex_state = 11, .external_lex_state = 3}, - [1501] = {.lex_state = 4, .external_lex_state = 3}, - [1502] = {.lex_state = 4, .external_lex_state = 3}, - [1503] = {.lex_state = 4, .external_lex_state = 3}, - [1504] = {.lex_state = 4, .external_lex_state = 3}, - [1505] = {.lex_state = 4, .external_lex_state = 3}, - [1506] = {.lex_state = 4, .external_lex_state = 3}, - [1507] = {.lex_state = 4, .external_lex_state = 3}, - [1508] = {.lex_state = 41, .external_lex_state = 3}, - [1509] = {.lex_state = 41, .external_lex_state = 3}, - [1510] = {.lex_state = 4, .external_lex_state = 3}, - [1511] = {.lex_state = 118, .external_lex_state = 3}, - [1512] = {.lex_state = 41, .external_lex_state = 3}, - [1513] = {.lex_state = 118, .external_lex_state = 3}, - [1514] = {.lex_state = 118, .external_lex_state = 3}, - [1515] = {.lex_state = 118, .external_lex_state = 3}, - [1516] = {.lex_state = 116, .external_lex_state = 2}, - [1517] = {.lex_state = 4, .external_lex_state = 3}, - [1518] = {.lex_state = 118, .external_lex_state = 3}, - [1519] = {.lex_state = 27, .external_lex_state = 3}, - [1520] = {.lex_state = 4, .external_lex_state = 3}, - [1521] = {.lex_state = 4, .external_lex_state = 3}, - [1522] = {.lex_state = 4, .external_lex_state = 3}, - [1523] = {.lex_state = 4, .external_lex_state = 3}, - [1524] = {.lex_state = 4, .external_lex_state = 3}, - [1525] = {.lex_state = 4, .external_lex_state = 3}, - [1526] = {.lex_state = 4, .external_lex_state = 3}, - [1527] = {.lex_state = 4, .external_lex_state = 3}, - [1528] = {.lex_state = 4, .external_lex_state = 3}, - [1529] = {.lex_state = 4, .external_lex_state = 3}, - [1530] = {.lex_state = 4, .external_lex_state = 3}, - [1531] = {.lex_state = 4, .external_lex_state = 3}, - [1532] = {.lex_state = 4, .external_lex_state = 3}, - [1533] = {.lex_state = 4, .external_lex_state = 3}, - [1534] = {.lex_state = 4, .external_lex_state = 3}, - [1535] = {.lex_state = 27, .external_lex_state = 3}, - [1536] = {.lex_state = 117, .external_lex_state = 3}, - [1537] = {.lex_state = 117, .external_lex_state = 3}, - [1538] = {.lex_state = 4, .external_lex_state = 3}, - [1539] = {.lex_state = 7, .external_lex_state = 3}, - [1540] = {.lex_state = 4, .external_lex_state = 3}, - [1541] = {.lex_state = 4, .external_lex_state = 3}, - [1542] = {.lex_state = 4, .external_lex_state = 3}, - [1543] = {.lex_state = 7, .external_lex_state = 3}, - [1544] = {.lex_state = 4, .external_lex_state = 3}, - [1545] = {.lex_state = 4, .external_lex_state = 3}, - [1546] = {.lex_state = 4, .external_lex_state = 3}, - [1547] = {.lex_state = 4, .external_lex_state = 3}, - [1548] = {.lex_state = 4, .external_lex_state = 3}, - [1549] = {.lex_state = 7, .external_lex_state = 3}, - [1550] = {.lex_state = 4, .external_lex_state = 3}, - [1551] = {.lex_state = 4, .external_lex_state = 3}, - [1552] = {.lex_state = 7, .external_lex_state = 3}, - [1553] = {.lex_state = 4, .external_lex_state = 3}, - [1554] = {.lex_state = 8, .external_lex_state = 3}, - [1555] = {.lex_state = 4, .external_lex_state = 3}, - [1556] = {.lex_state = 8, .external_lex_state = 3}, - [1557] = {.lex_state = 8, .external_lex_state = 3}, - [1558] = {.lex_state = 4, .external_lex_state = 3}, - [1559] = {.lex_state = 8, .external_lex_state = 3}, - [1560] = {.lex_state = 4, .external_lex_state = 3}, - [1561] = {.lex_state = 4, .external_lex_state = 3}, - [1562] = {.lex_state = 4, .external_lex_state = 3}, - [1563] = {.lex_state = 4, .external_lex_state = 3}, - [1564] = {.lex_state = 4, .external_lex_state = 3}, - [1565] = {.lex_state = 4, .external_lex_state = 3}, - [1566] = {.lex_state = 4, .external_lex_state = 3}, - [1567] = {.lex_state = 4, .external_lex_state = 3}, - [1568] = {.lex_state = 4, .external_lex_state = 3}, - [1569] = {.lex_state = 4, .external_lex_state = 3}, - [1570] = {.lex_state = 4, .external_lex_state = 3}, - [1571] = {.lex_state = 4, .external_lex_state = 3}, - [1572] = {.lex_state = 4, .external_lex_state = 3}, - [1573] = {.lex_state = 4, .external_lex_state = 3}, - [1574] = {.lex_state = 4, .external_lex_state = 3}, - [1575] = {.lex_state = 4, .external_lex_state = 3}, - [1576] = {.lex_state = 4, .external_lex_state = 3}, - [1577] = {.lex_state = 4, .external_lex_state = 3}, - [1578] = {.lex_state = 4, .external_lex_state = 3}, - [1579] = {.lex_state = 4, .external_lex_state = 3}, - [1580] = {.lex_state = 4, .external_lex_state = 3}, - [1581] = {.lex_state = 4, .external_lex_state = 3}, - [1582] = {.lex_state = 4, .external_lex_state = 3}, - [1583] = {.lex_state = 4, .external_lex_state = 3}, - [1584] = {.lex_state = 4, .external_lex_state = 3}, - [1585] = {.lex_state = 4, .external_lex_state = 3}, - [1586] = {.lex_state = 4, .external_lex_state = 3}, - [1587] = {.lex_state = 4, .external_lex_state = 3}, - [1588] = {.lex_state = 4, .external_lex_state = 3}, - [1589] = {.lex_state = 4, .external_lex_state = 3}, - [1590] = {.lex_state = 4, .external_lex_state = 3}, - [1591] = {.lex_state = 4, .external_lex_state = 3}, - [1592] = {.lex_state = 27, .external_lex_state = 3}, - [1593] = {.lex_state = 4, .external_lex_state = 3}, - [1594] = {.lex_state = 27, .external_lex_state = 3}, - [1595] = {.lex_state = 4, .external_lex_state = 3}, - [1596] = {.lex_state = 4, .external_lex_state = 3}, - [1597] = {.lex_state = 4, .external_lex_state = 3}, - [1598] = {.lex_state = 4, .external_lex_state = 3}, - [1599] = {.lex_state = 4, .external_lex_state = 3}, - [1600] = {.lex_state = 4, .external_lex_state = 3}, - [1601] = {.lex_state = 4, .external_lex_state = 3}, - [1602] = {.lex_state = 4, .external_lex_state = 3}, - [1603] = {.lex_state = 4, .external_lex_state = 3}, - [1604] = {.lex_state = 4, .external_lex_state = 3}, - [1605] = {.lex_state = 4, .external_lex_state = 3}, - [1606] = {.lex_state = 4, .external_lex_state = 3}, - [1607] = {.lex_state = 4, .external_lex_state = 3}, - [1608] = {.lex_state = 4, .external_lex_state = 3}, - [1609] = {.lex_state = 4, .external_lex_state = 3}, - [1610] = {.lex_state = 4, .external_lex_state = 3}, - [1611] = {.lex_state = 4, .external_lex_state = 3}, - [1612] = {.lex_state = 4, .external_lex_state = 3}, - [1613] = {.lex_state = 4, .external_lex_state = 3}, - [1614] = {.lex_state = 4, .external_lex_state = 3}, - [1615] = {.lex_state = 4, .external_lex_state = 3}, - [1616] = {.lex_state = 4, .external_lex_state = 3}, - [1617] = {.lex_state = 4, .external_lex_state = 3}, - [1618] = {.lex_state = 4, .external_lex_state = 3}, - [1619] = {.lex_state = 4, .external_lex_state = 3}, - [1620] = {.lex_state = 4, .external_lex_state = 3}, - [1621] = {.lex_state = 4, .external_lex_state = 3}, - [1622] = {.lex_state = 4, .external_lex_state = 3}, - [1623] = {.lex_state = 4, .external_lex_state = 3}, - [1624] = {.lex_state = 4, .external_lex_state = 3}, - [1625] = {.lex_state = 4, .external_lex_state = 3}, - [1626] = {.lex_state = 4, .external_lex_state = 3}, - [1627] = {.lex_state = 4, .external_lex_state = 3}, - [1628] = {.lex_state = 4, .external_lex_state = 3}, - [1629] = {.lex_state = 4, .external_lex_state = 3}, - [1630] = {.lex_state = 4, .external_lex_state = 3}, - [1631] = {.lex_state = 4, .external_lex_state = 3}, - [1632] = {.lex_state = 4, .external_lex_state = 3}, - [1633] = {.lex_state = 4, .external_lex_state = 3}, - [1634] = {.lex_state = 4, .external_lex_state = 3}, - [1635] = {.lex_state = 4, .external_lex_state = 3}, - [1636] = {.lex_state = 4, .external_lex_state = 3}, - [1637] = {.lex_state = 4, .external_lex_state = 3}, - [1638] = {.lex_state = 4, .external_lex_state = 3}, - [1639] = {.lex_state = 4, .external_lex_state = 3}, - [1640] = {.lex_state = 4, .external_lex_state = 3}, - [1641] = {.lex_state = 4, .external_lex_state = 3}, - [1642] = {.lex_state = 27, .external_lex_state = 3}, - [1643] = {.lex_state = 4, .external_lex_state = 3}, - [1644] = {.lex_state = 4, .external_lex_state = 3}, - [1645] = {.lex_state = 4, .external_lex_state = 3}, - [1646] = {.lex_state = 4, .external_lex_state = 3}, - [1647] = {.lex_state = 4, .external_lex_state = 3}, - [1648] = {.lex_state = 117, .external_lex_state = 4}, - [1649] = {.lex_state = 4, .external_lex_state = 3}, - [1650] = {.lex_state = 27, .external_lex_state = 3}, - [1651] = {.lex_state = 27, .external_lex_state = 3}, - [1652] = {.lex_state = 4, .external_lex_state = 3}, - [1653] = {.lex_state = 117, .external_lex_state = 4}, - [1654] = {.lex_state = 4, .external_lex_state = 3}, - [1655] = {.lex_state = 4, .external_lex_state = 3}, - [1656] = {.lex_state = 117, .external_lex_state = 4}, - [1657] = {.lex_state = 4, .external_lex_state = 3}, - [1658] = {.lex_state = 4, .external_lex_state = 3}, - [1659] = {.lex_state = 117, .external_lex_state = 4}, - [1660] = {.lex_state = 117, .external_lex_state = 4}, - [1661] = {.lex_state = 117, .external_lex_state = 4}, - [1662] = {.lex_state = 4, .external_lex_state = 3}, - [1663] = {.lex_state = 117, .external_lex_state = 4}, - [1664] = {.lex_state = 4, .external_lex_state = 3}, - [1665] = {.lex_state = 27, .external_lex_state = 3}, - [1666] = {.lex_state = 4, .external_lex_state = 3}, - [1667] = {.lex_state = 27, .external_lex_state = 3}, - [1668] = {.lex_state = 117, .external_lex_state = 4}, - [1669] = {.lex_state = 117, .external_lex_state = 4}, - [1670] = {.lex_state = 4, .external_lex_state = 3}, - [1671] = {.lex_state = 117, .external_lex_state = 4}, - [1672] = {.lex_state = 117, .external_lex_state = 4}, - [1673] = {.lex_state = 4, .external_lex_state = 3}, - [1674] = {.lex_state = 4, .external_lex_state = 3}, - [1675] = {.lex_state = 4, .external_lex_state = 3}, - [1676] = {.lex_state = 4, .external_lex_state = 3}, - [1677] = {.lex_state = 117, .external_lex_state = 4}, - [1678] = {.lex_state = 4, .external_lex_state = 3}, - [1679] = {.lex_state = 27, .external_lex_state = 3}, - [1680] = {.lex_state = 4, .external_lex_state = 3}, - [1681] = {.lex_state = 4, .external_lex_state = 3}, - [1682] = {.lex_state = 4, .external_lex_state = 3}, - [1683] = {.lex_state = 117, .external_lex_state = 4}, - [1684] = {.lex_state = 4, .external_lex_state = 3}, - [1685] = {.lex_state = 27, .external_lex_state = 3}, - [1686] = {.lex_state = 27, .external_lex_state = 3}, - [1687] = {.lex_state = 27, .external_lex_state = 3}, - [1688] = {.lex_state = 27, .external_lex_state = 3}, - [1689] = {.lex_state = 4, .external_lex_state = 3}, - [1690] = {.lex_state = 4, .external_lex_state = 3}, - [1691] = {.lex_state = 4, .external_lex_state = 3}, - [1692] = {.lex_state = 27, .external_lex_state = 3}, - [1693] = {.lex_state = 4, .external_lex_state = 3}, - [1694] = {.lex_state = 117, .external_lex_state = 4}, - [1695] = {.lex_state = 4, .external_lex_state = 3}, - [1696] = {.lex_state = 27, .external_lex_state = 3}, - [1697] = {.lex_state = 4, .external_lex_state = 3}, - [1698] = {.lex_state = 4, .external_lex_state = 3}, - [1699] = {.lex_state = 117, .external_lex_state = 4}, - [1700] = {.lex_state = 4, .external_lex_state = 3}, - [1701] = {.lex_state = 27, .external_lex_state = 3}, - [1702] = {.lex_state = 27, .external_lex_state = 3}, - [1703] = {.lex_state = 27, .external_lex_state = 3}, - [1704] = {.lex_state = 4, .external_lex_state = 3}, - [1705] = {.lex_state = 4, .external_lex_state = 3}, - [1706] = {.lex_state = 4, .external_lex_state = 3}, - [1707] = {.lex_state = 117, .external_lex_state = 3}, - [1708] = {.lex_state = 4, .external_lex_state = 3}, - [1709] = {.lex_state = 4, .external_lex_state = 3}, - [1710] = {.lex_state = 4, .external_lex_state = 3}, - [1711] = {.lex_state = 4, .external_lex_state = 3}, - [1712] = {.lex_state = 4, .external_lex_state = 3}, - [1713] = {.lex_state = 36, .external_lex_state = 2}, - [1714] = {.lex_state = 36, .external_lex_state = 2}, - [1715] = {.lex_state = 4, .external_lex_state = 3}, - [1716] = {.lex_state = 27, .external_lex_state = 3}, - [1717] = {.lex_state = 4, .external_lex_state = 3}, - [1718] = {.lex_state = 4, .external_lex_state = 3}, - [1719] = {.lex_state = 4, .external_lex_state = 3}, - [1720] = {.lex_state = 4, .external_lex_state = 3}, - [1721] = {.lex_state = 4, .external_lex_state = 3}, - [1722] = {.lex_state = 27, .external_lex_state = 3}, - [1723] = {.lex_state = 117, .external_lex_state = 3}, - [1724] = {.lex_state = 4, .external_lex_state = 3}, - [1725] = {.lex_state = 27, .external_lex_state = 3}, - [1726] = {.lex_state = 27, .external_lex_state = 3}, - [1727] = {.lex_state = 4, .external_lex_state = 3}, - [1728] = {.lex_state = 4, .external_lex_state = 3}, - [1729] = {.lex_state = 4, .external_lex_state = 3}, - [1730] = {.lex_state = 4, .external_lex_state = 3}, - [1731] = {.lex_state = 36, .external_lex_state = 2}, - [1732] = {.lex_state = 27, .external_lex_state = 3}, - [1733] = {.lex_state = 4, .external_lex_state = 3}, - [1734] = {.lex_state = 4, .external_lex_state = 3}, - [1735] = {.lex_state = 117, .external_lex_state = 3}, - [1736] = {.lex_state = 117, .external_lex_state = 3}, - [1737] = {.lex_state = 4, .external_lex_state = 3}, - [1738] = {.lex_state = 117, .external_lex_state = 3}, - [1739] = {.lex_state = 4, .external_lex_state = 3}, - [1740] = {.lex_state = 4, .external_lex_state = 3}, - [1741] = {.lex_state = 36, .external_lex_state = 2}, - [1742] = {.lex_state = 117, .external_lex_state = 3}, - [1743] = {.lex_state = 117, .external_lex_state = 3}, - [1744] = {.lex_state = 117, .external_lex_state = 3}, - [1745] = {.lex_state = 117, .external_lex_state = 3}, - [1746] = {.lex_state = 4, .external_lex_state = 3}, - [1747] = {.lex_state = 4, .external_lex_state = 3}, - [1748] = {.lex_state = 4, .external_lex_state = 3}, - [1749] = {.lex_state = 4, .external_lex_state = 3}, - [1750] = {.lex_state = 4, .external_lex_state = 3}, - [1751] = {.lex_state = 4, .external_lex_state = 3}, - [1752] = {.lex_state = 4, .external_lex_state = 3}, - [1753] = {.lex_state = 117, .external_lex_state = 3}, - [1754] = {.lex_state = 4, .external_lex_state = 3}, - [1755] = {.lex_state = 4, .external_lex_state = 3}, - [1756] = {.lex_state = 4, .external_lex_state = 3}, - [1757] = {.lex_state = 4, .external_lex_state = 3}, - [1758] = {.lex_state = 4, .external_lex_state = 3}, - [1759] = {.lex_state = 27, .external_lex_state = 3}, - [1760] = {.lex_state = 4, .external_lex_state = 3}, - [1761] = {.lex_state = 4, .external_lex_state = 3}, - [1762] = {.lex_state = 4, .external_lex_state = 3}, - [1763] = {.lex_state = 4, .external_lex_state = 3}, - [1764] = {.lex_state = 27, .external_lex_state = 3}, - [1765] = {.lex_state = 4, .external_lex_state = 3}, - [1766] = {.lex_state = 4, .external_lex_state = 3}, - [1767] = {.lex_state = 4, .external_lex_state = 3}, - [1768] = {.lex_state = 4, .external_lex_state = 3}, - [1769] = {.lex_state = 4, .external_lex_state = 3}, - [1770] = {.lex_state = 4, .external_lex_state = 3}, - [1771] = {.lex_state = 4, .external_lex_state = 3}, - [1772] = {.lex_state = 117, .external_lex_state = 3}, - [1773] = {.lex_state = 4, .external_lex_state = 3}, - [1774] = {.lex_state = 117, .external_lex_state = 3}, - [1775] = {.lex_state = 4, .external_lex_state = 3}, - [1776] = {.lex_state = 4, .external_lex_state = 3}, - [1777] = {.lex_state = 117, .external_lex_state = 3}, - [1778] = {.lex_state = 4, .external_lex_state = 3}, - [1779] = {.lex_state = 4, .external_lex_state = 3}, - [1780] = {.lex_state = 117, .external_lex_state = 3}, - [1781] = {.lex_state = 4, .external_lex_state = 3}, - [1782] = {.lex_state = 27, .external_lex_state = 3}, - [1783] = {.lex_state = 9, .external_lex_state = 3}, - [1784] = {.lex_state = 9, .external_lex_state = 3}, - [1785] = {.lex_state = 4, .external_lex_state = 3}, - [1786] = {.lex_state = 117, .external_lex_state = 3}, - [1787] = {.lex_state = 117, .external_lex_state = 3}, - [1788] = {.lex_state = 4, .external_lex_state = 3}, - [1789] = {.lex_state = 117, .external_lex_state = 3}, - [1790] = {.lex_state = 4, .external_lex_state = 3}, - [1791] = {.lex_state = 117, .external_lex_state = 3}, - [1792] = {.lex_state = 4, .external_lex_state = 3}, - [1793] = {.lex_state = 4, .external_lex_state = 3}, - [1794] = {.lex_state = 117, .external_lex_state = 3}, - [1795] = {.lex_state = 4, .external_lex_state = 3}, - [1796] = {.lex_state = 4, .external_lex_state = 3}, - [1797] = {.lex_state = 4, .external_lex_state = 3}, - [1798] = {.lex_state = 4, .external_lex_state = 3}, - [1799] = {.lex_state = 4, .external_lex_state = 3}, - [1800] = {.lex_state = 4, .external_lex_state = 3}, - [1801] = {.lex_state = 117, .external_lex_state = 3}, - [1802] = {.lex_state = 4, .external_lex_state = 3}, - [1803] = {.lex_state = 4, .external_lex_state = 3}, - [1804] = {.lex_state = 4, .external_lex_state = 3}, - [1805] = {.lex_state = 4, .external_lex_state = 3}, - [1806] = {.lex_state = 4, .external_lex_state = 3}, - [1807] = {.lex_state = 117, .external_lex_state = 3}, - [1808] = {.lex_state = 9, .external_lex_state = 3}, - [1809] = {.lex_state = 9, .external_lex_state = 3}, - [1810] = {.lex_state = 9, .external_lex_state = 3}, - [1811] = {.lex_state = 9, .external_lex_state = 3}, - [1812] = {.lex_state = 4, .external_lex_state = 3}, - [1813] = {.lex_state = 9, .external_lex_state = 3}, - [1814] = {.lex_state = 9, .external_lex_state = 3}, - [1815] = {.lex_state = 4, .external_lex_state = 3}, - [1816] = {.lex_state = 4, .external_lex_state = 3}, - [1817] = {.lex_state = 4, .external_lex_state = 3}, - [1818] = {.lex_state = 117, .external_lex_state = 3}, - [1819] = {.lex_state = 4, .external_lex_state = 3}, - [1820] = {.lex_state = 4, .external_lex_state = 3}, - [1821] = {.lex_state = 117, .external_lex_state = 3}, - [1822] = {.lex_state = 9, .external_lex_state = 3}, - [1823] = {.lex_state = 4, .external_lex_state = 3}, - [1824] = {.lex_state = 4, .external_lex_state = 3}, - [1825] = {.lex_state = 117, .external_lex_state = 3}, - [1826] = {.lex_state = 9, .external_lex_state = 3}, - [1827] = {.lex_state = 9, .external_lex_state = 3}, - [1828] = {.lex_state = 4, .external_lex_state = 3}, - [1829] = {.lex_state = 117, .external_lex_state = 3}, - [1830] = {.lex_state = 117, .external_lex_state = 3}, - [1831] = {.lex_state = 117, .external_lex_state = 3}, - [1832] = {.lex_state = 4, .external_lex_state = 3}, - [1833] = {.lex_state = 4, .external_lex_state = 3}, - [1834] = {.lex_state = 4, .external_lex_state = 3}, - [1835] = {.lex_state = 117, .external_lex_state = 3}, - [1836] = {.lex_state = 4, .external_lex_state = 3}, - [1837] = {.lex_state = 117, .external_lex_state = 3}, - [1838] = {.lex_state = 4, .external_lex_state = 3}, - [1839] = {.lex_state = 9, .external_lex_state = 3}, - [1840] = {.lex_state = 117, .external_lex_state = 3}, - [1841] = {.lex_state = 4, .external_lex_state = 3}, - [1842] = {.lex_state = 9, .external_lex_state = 3}, - [1843] = {.lex_state = 4, .external_lex_state = 3}, - [1844] = {.lex_state = 117, .external_lex_state = 3}, - [1845] = {.lex_state = 117, .external_lex_state = 3}, - [1846] = {.lex_state = 4, .external_lex_state = 3}, - [1847] = {.lex_state = 117, .external_lex_state = 3}, - [1848] = {.lex_state = 4, .external_lex_state = 3}, - [1849] = {.lex_state = 117, .external_lex_state = 3}, - [1850] = {.lex_state = 4, .external_lex_state = 3}, - [1851] = {.lex_state = 4, .external_lex_state = 3}, - [1852] = {.lex_state = 4, .external_lex_state = 3}, - [1853] = {.lex_state = 4, .external_lex_state = 3}, - [1854] = {.lex_state = 7, .external_lex_state = 3}, - [1855] = {.lex_state = 4, .external_lex_state = 3}, - [1856] = {.lex_state = 27, .external_lex_state = 3}, - [1857] = {.lex_state = 117, .external_lex_state = 3}, - [1858] = {.lex_state = 4, .external_lex_state = 3}, - [1859] = {.lex_state = 4, .external_lex_state = 3}, - [1860] = {.lex_state = 4, .external_lex_state = 3}, - [1861] = {.lex_state = 9, .external_lex_state = 3}, - [1862] = {.lex_state = 4, .external_lex_state = 3}, - [1863] = {.lex_state = 4, .external_lex_state = 3}, - [1864] = {.lex_state = 27, .external_lex_state = 3}, - [1865] = {.lex_state = 27, .external_lex_state = 3}, - [1866] = {.lex_state = 4, .external_lex_state = 3}, - [1867] = {.lex_state = 4, .external_lex_state = 3}, - [1868] = {.lex_state = 117, .external_lex_state = 3}, - [1869] = {.lex_state = 9, .external_lex_state = 3}, - [1870] = {.lex_state = 9, .external_lex_state = 3}, - [1871] = {.lex_state = 9, .external_lex_state = 3}, - [1872] = {.lex_state = 9, .external_lex_state = 3}, - [1873] = {.lex_state = 9, .external_lex_state = 3}, - [1874] = {.lex_state = 9, .external_lex_state = 3}, - [1875] = {.lex_state = 9, .external_lex_state = 3}, - [1876] = {.lex_state = 4, .external_lex_state = 3}, - [1877] = {.lex_state = 27, .external_lex_state = 3}, - [1878] = {.lex_state = 117, .external_lex_state = 3}, - [1879] = {.lex_state = 117, .external_lex_state = 3}, - [1880] = {.lex_state = 117, .external_lex_state = 3}, - [1881] = {.lex_state = 9, .external_lex_state = 3}, - [1882] = {.lex_state = 4, .external_lex_state = 3}, - [1883] = {.lex_state = 4, .external_lex_state = 3}, - [1884] = {.lex_state = 9, .external_lex_state = 3}, - [1885] = {.lex_state = 9, .external_lex_state = 3}, - [1886] = {.lex_state = 9, .external_lex_state = 3}, - [1887] = {.lex_state = 9, .external_lex_state = 3}, - [1888] = {.lex_state = 27, .external_lex_state = 3}, - [1889] = {.lex_state = 4, .external_lex_state = 3}, - [1890] = {.lex_state = 4, .external_lex_state = 3}, - [1891] = {.lex_state = 4, .external_lex_state = 3}, - [1892] = {.lex_state = 117, .external_lex_state = 3}, - [1893] = {.lex_state = 117, .external_lex_state = 3}, - [1894] = {.lex_state = 9, .external_lex_state = 3}, - [1895] = {.lex_state = 4, .external_lex_state = 3}, - [1896] = {.lex_state = 9, .external_lex_state = 3}, - [1897] = {.lex_state = 9, .external_lex_state = 3}, - [1898] = {.lex_state = 9, .external_lex_state = 3}, - [1899] = {.lex_state = 7, .external_lex_state = 3}, - [1900] = {.lex_state = 4, .external_lex_state = 3}, - [1901] = {.lex_state = 9, .external_lex_state = 3}, - [1902] = {.lex_state = 117, .external_lex_state = 3}, - [1903] = {.lex_state = 4, .external_lex_state = 3}, - [1904] = {.lex_state = 117, .external_lex_state = 3}, - [1905] = {.lex_state = 117, .external_lex_state = 3}, - [1906] = {.lex_state = 4, .external_lex_state = 3}, - [1907] = {.lex_state = 117, .external_lex_state = 3}, - [1908] = {.lex_state = 4, .external_lex_state = 3}, - [1909] = {.lex_state = 117, .external_lex_state = 3}, - [1910] = {.lex_state = 117, .external_lex_state = 3}, - [1911] = {.lex_state = 117, .external_lex_state = 3}, - [1912] = {.lex_state = 9, .external_lex_state = 3}, - [1913] = {.lex_state = 9, .external_lex_state = 3}, - [1914] = {.lex_state = 4, .external_lex_state = 3}, - [1915] = {.lex_state = 4, .external_lex_state = 3}, - [1916] = {.lex_state = 117, .external_lex_state = 3}, - [1917] = {.lex_state = 27, .external_lex_state = 3}, - [1918] = {.lex_state = 117, .external_lex_state = 3}, - [1919] = {.lex_state = 4, .external_lex_state = 3}, - [1920] = {.lex_state = 117, .external_lex_state = 3}, - [1921] = {.lex_state = 27, .external_lex_state = 3}, - [1922] = {.lex_state = 9, .external_lex_state = 3}, - [1923] = {.lex_state = 117, .external_lex_state = 3}, - [1924] = {.lex_state = 117, .external_lex_state = 3}, - [1925] = {.lex_state = 117, .external_lex_state = 3}, - [1926] = {.lex_state = 7, .external_lex_state = 3}, - [1927] = {.lex_state = 117, .external_lex_state = 3}, - [1928] = {.lex_state = 117, .external_lex_state = 3}, - [1929] = {.lex_state = 9, .external_lex_state = 3}, - [1930] = {.lex_state = 117, .external_lex_state = 3}, - [1931] = {.lex_state = 4, .external_lex_state = 3}, - [1932] = {.lex_state = 117, .external_lex_state = 3}, - [1933] = {.lex_state = 117, .external_lex_state = 3}, - [1934] = {.lex_state = 117, .external_lex_state = 3}, - [1935] = {.lex_state = 9, .external_lex_state = 3}, - [1936] = {.lex_state = 9, .external_lex_state = 3}, - [1937] = {.lex_state = 9, .external_lex_state = 3}, - [1938] = {.lex_state = 9, .external_lex_state = 3}, - [1939] = {.lex_state = 9, .external_lex_state = 3}, - [1940] = {.lex_state = 9, .external_lex_state = 3}, - [1941] = {.lex_state = 9, .external_lex_state = 3}, - [1942] = {.lex_state = 9, .external_lex_state = 3}, - [1943] = {.lex_state = 9, .external_lex_state = 3}, - [1944] = {.lex_state = 9, .external_lex_state = 3}, - [1945] = {.lex_state = 9, .external_lex_state = 3}, - [1946] = {.lex_state = 4, .external_lex_state = 3}, - [1947] = {.lex_state = 9, .external_lex_state = 3}, - [1948] = {.lex_state = 4, .external_lex_state = 3}, - [1949] = {.lex_state = 117, .external_lex_state = 3}, - [1950] = {.lex_state = 27, .external_lex_state = 3}, - [1951] = {.lex_state = 4, .external_lex_state = 3}, - [1952] = {.lex_state = 9, .external_lex_state = 3}, - [1953] = {.lex_state = 7, .external_lex_state = 3}, - [1954] = {.lex_state = 117, .external_lex_state = 3}, - [1955] = {.lex_state = 7, .external_lex_state = 3}, - [1956] = {.lex_state = 4, .external_lex_state = 3}, - [1957] = {.lex_state = 9, .external_lex_state = 3}, - [1958] = {.lex_state = 7, .external_lex_state = 3}, - [1959] = {.lex_state = 4, .external_lex_state = 3}, - [1960] = {.lex_state = 9, .external_lex_state = 3}, - [1961] = {.lex_state = 117, .external_lex_state = 3}, - [1962] = {.lex_state = 4, .external_lex_state = 3}, - [1963] = {.lex_state = 9, .external_lex_state = 3}, - [1964] = {.lex_state = 117, .external_lex_state = 3}, - [1965] = {.lex_state = 117, .external_lex_state = 3}, - [1966] = {.lex_state = 9, .external_lex_state = 3}, - [1967] = {.lex_state = 9, .external_lex_state = 3}, - [1968] = {.lex_state = 9, .external_lex_state = 3}, - [1969] = {.lex_state = 9, .external_lex_state = 3}, - [1970] = {.lex_state = 9, .external_lex_state = 3}, - [1971] = {.lex_state = 4, .external_lex_state = 3}, - [1972] = {.lex_state = 117, .external_lex_state = 3}, - [1973] = {.lex_state = 27, .external_lex_state = 3}, - [1974] = {.lex_state = 117, .external_lex_state = 3}, - [1975] = {.lex_state = 7, .external_lex_state = 3}, - [1976] = {.lex_state = 7, .external_lex_state = 3}, - [1977] = {.lex_state = 7, .external_lex_state = 3}, - [1978] = {.lex_state = 9, .external_lex_state = 3}, - [1979] = {.lex_state = 4, .external_lex_state = 3}, - [1980] = {.lex_state = 9, .external_lex_state = 3}, - [1981] = {.lex_state = 9, .external_lex_state = 3}, - [1982] = {.lex_state = 9, .external_lex_state = 3}, - [1983] = {.lex_state = 9, .external_lex_state = 3}, - [1984] = {.lex_state = 9, .external_lex_state = 3}, - [1985] = {.lex_state = 9, .external_lex_state = 3}, - [1986] = {.lex_state = 117, .external_lex_state = 3}, - [1987] = {.lex_state = 4, .external_lex_state = 3}, - [1988] = {.lex_state = 9, .external_lex_state = 3}, - [1989] = {.lex_state = 4, .external_lex_state = 3}, - [1990] = {.lex_state = 9, .external_lex_state = 3}, - [1991] = {.lex_state = 4, .external_lex_state = 3}, - [1992] = {.lex_state = 9, .external_lex_state = 3}, - [1993] = {.lex_state = 9, .external_lex_state = 3}, - [1994] = {.lex_state = 9, .external_lex_state = 3}, - [1995] = {.lex_state = 9, .external_lex_state = 3}, - [1996] = {.lex_state = 9, .external_lex_state = 3}, - [1997] = {.lex_state = 9, .external_lex_state = 3}, - [1998] = {.lex_state = 27, .external_lex_state = 3}, - [1999] = {.lex_state = 117, .external_lex_state = 3}, - [2000] = {.lex_state = 4, .external_lex_state = 3}, - [2001] = {.lex_state = 117, .external_lex_state = 3}, - [2002] = {.lex_state = 9, .external_lex_state = 3}, - [2003] = {.lex_state = 4, .external_lex_state = 3}, - [2004] = {.lex_state = 117, .external_lex_state = 3}, - [2005] = {.lex_state = 27, .external_lex_state = 3}, - [2006] = {.lex_state = 9, .external_lex_state = 3}, - [2007] = {.lex_state = 7, .external_lex_state = 3}, - [2008] = {.lex_state = 9, .external_lex_state = 3}, - [2009] = {.lex_state = 9, .external_lex_state = 3}, - [2010] = {.lex_state = 117, .external_lex_state = 3}, - [2011] = {.lex_state = 9, .external_lex_state = 3}, - [2012] = {.lex_state = 9, .external_lex_state = 3}, - [2013] = {.lex_state = 117, .external_lex_state = 3}, - [2014] = {.lex_state = 7, .external_lex_state = 3}, - [2015] = {.lex_state = 9, .external_lex_state = 3}, - [2016] = {.lex_state = 4, .external_lex_state = 3}, - [2017] = {.lex_state = 4, .external_lex_state = 3}, - [2018] = {.lex_state = 117, .external_lex_state = 3}, - [2019] = {.lex_state = 117, .external_lex_state = 3}, - [2020] = {.lex_state = 9, .external_lex_state = 3}, - [2021] = {.lex_state = 9, .external_lex_state = 3}, - [2022] = {.lex_state = 9, .external_lex_state = 3}, - [2023] = {.lex_state = 9, .external_lex_state = 3}, - [2024] = {.lex_state = 27, .external_lex_state = 3}, - [2025] = {.lex_state = 4, .external_lex_state = 3}, - [2026] = {.lex_state = 4, .external_lex_state = 3}, - [2027] = {.lex_state = 9, .external_lex_state = 3}, - [2028] = {.lex_state = 9, .external_lex_state = 3}, - [2029] = {.lex_state = 9, .external_lex_state = 3}, - [2030] = {.lex_state = 4, .external_lex_state = 3}, - [2031] = {.lex_state = 9, .external_lex_state = 3}, - [2032] = {.lex_state = 4, .external_lex_state = 3}, - [2033] = {.lex_state = 117, .external_lex_state = 3}, - [2034] = {.lex_state = 9, .external_lex_state = 3}, - [2035] = {.lex_state = 117, .external_lex_state = 3}, - [2036] = {.lex_state = 117, .external_lex_state = 3}, - [2037] = {.lex_state = 7, .external_lex_state = 3}, - [2038] = {.lex_state = 7, .external_lex_state = 3}, - [2039] = {.lex_state = 4, .external_lex_state = 3}, - [2040] = {.lex_state = 4, .external_lex_state = 3}, - [2041] = {.lex_state = 7, .external_lex_state = 3}, - [2042] = {.lex_state = 4, .external_lex_state = 3}, - [2043] = {.lex_state = 7, .external_lex_state = 3}, - [2044] = {.lex_state = 4, .external_lex_state = 3}, - [2045] = {.lex_state = 4, .external_lex_state = 3}, - [2046] = {.lex_state = 4, .external_lex_state = 3}, - [2047] = {.lex_state = 7, .external_lex_state = 3}, - [2048] = {.lex_state = 4, .external_lex_state = 3}, - [2049] = {.lex_state = 4, .external_lex_state = 3}, - [2050] = {.lex_state = 4, .external_lex_state = 3}, - [2051] = {.lex_state = 4, .external_lex_state = 3}, - [2052] = {.lex_state = 4, .external_lex_state = 3}, - [2053] = {.lex_state = 7, .external_lex_state = 3}, - [2054] = {.lex_state = 4, .external_lex_state = 3}, - [2055] = {.lex_state = 7, .external_lex_state = 3}, - [2056] = {.lex_state = 4, .external_lex_state = 3}, - [2057] = {.lex_state = 7, .external_lex_state = 3}, - [2058] = {.lex_state = 7, .external_lex_state = 3}, - [2059] = {.lex_state = 4, .external_lex_state = 3}, - [2060] = {.lex_state = 7, .external_lex_state = 3}, - [2061] = {.lex_state = 7, .external_lex_state = 3}, - [2062] = {.lex_state = 7, .external_lex_state = 3}, - [2063] = {.lex_state = 7, .external_lex_state = 3}, - [2064] = {.lex_state = 7, .external_lex_state = 3}, - [2065] = {.lex_state = 7, .external_lex_state = 3}, - [2066] = {.lex_state = 7, .external_lex_state = 3}, - [2067] = {.lex_state = 4, .external_lex_state = 3}, - [2068] = {.lex_state = 4, .external_lex_state = 3}, - [2069] = {.lex_state = 4, .external_lex_state = 3}, - [2070] = {.lex_state = 4, .external_lex_state = 3}, - [2071] = {.lex_state = 4, .external_lex_state = 3}, - [2072] = {.lex_state = 7, .external_lex_state = 3}, - [2073] = {.lex_state = 7, .external_lex_state = 3}, - [2074] = {.lex_state = 7, .external_lex_state = 3}, - [2075] = {.lex_state = 4, .external_lex_state = 3}, - [2076] = {.lex_state = 4, .external_lex_state = 3}, - [2077] = {.lex_state = 7, .external_lex_state = 3}, - [2078] = {.lex_state = 4, .external_lex_state = 3}, - [2079] = {.lex_state = 7, .external_lex_state = 3}, - [2080] = {.lex_state = 7, .external_lex_state = 3}, - [2081] = {.lex_state = 7, .external_lex_state = 3}, - [2082] = {.lex_state = 7, .external_lex_state = 3}, - [2083] = {.lex_state = 4, .external_lex_state = 3}, - [2084] = {.lex_state = 7, .external_lex_state = 3}, - [2085] = {.lex_state = 7, .external_lex_state = 3}, - [2086] = {.lex_state = 7, .external_lex_state = 3}, - [2087] = {.lex_state = 7, .external_lex_state = 3}, - [2088] = {.lex_state = 7, .external_lex_state = 3}, - [2089] = {.lex_state = 7, .external_lex_state = 3}, - [2090] = {.lex_state = 7, .external_lex_state = 3}, - [2091] = {.lex_state = 7, .external_lex_state = 3}, - [2092] = {.lex_state = 7, .external_lex_state = 3}, - [2093] = {.lex_state = 7, .external_lex_state = 3}, - [2094] = {.lex_state = 7, .external_lex_state = 3}, - [2095] = {.lex_state = 7, .external_lex_state = 3}, - [2096] = {.lex_state = 7, .external_lex_state = 3}, - [2097] = {.lex_state = 7, .external_lex_state = 3}, - [2098] = {.lex_state = 7, .external_lex_state = 3}, - [2099] = {.lex_state = 7, .external_lex_state = 3}, - [2100] = {.lex_state = 7, .external_lex_state = 3}, - [2101] = {.lex_state = 7, .external_lex_state = 3}, - [2102] = {.lex_state = 7, .external_lex_state = 3}, - [2103] = {.lex_state = 7, .external_lex_state = 3}, - [2104] = {.lex_state = 7, .external_lex_state = 3}, - [2105] = {.lex_state = 7, .external_lex_state = 3}, - [2106] = {.lex_state = 7, .external_lex_state = 3}, - [2107] = {.lex_state = 7, .external_lex_state = 3}, - [2108] = {.lex_state = 7, .external_lex_state = 3}, - [2109] = {.lex_state = 7, .external_lex_state = 3}, - [2110] = {.lex_state = 7, .external_lex_state = 3}, - [2111] = {.lex_state = 4, .external_lex_state = 3}, - [2112] = {.lex_state = 7, .external_lex_state = 3}, - [2113] = {.lex_state = 7, .external_lex_state = 3}, - [2114] = {.lex_state = 7, .external_lex_state = 3}, - [2115] = {.lex_state = 7, .external_lex_state = 3}, - [2116] = {.lex_state = 7, .external_lex_state = 3}, - [2117] = {.lex_state = 7, .external_lex_state = 3}, - [2118] = {.lex_state = 7, .external_lex_state = 3}, - [2119] = {.lex_state = 7, .external_lex_state = 3}, - [2120] = {.lex_state = 7, .external_lex_state = 3}, - [2121] = {.lex_state = 7, .external_lex_state = 3}, - [2122] = {.lex_state = 4, .external_lex_state = 3}, - [2123] = {.lex_state = 7, .external_lex_state = 3}, - [2124] = {.lex_state = 7, .external_lex_state = 3}, - [2125] = {.lex_state = 7, .external_lex_state = 3}, - [2126] = {.lex_state = 7, .external_lex_state = 3}, - [2127] = {.lex_state = 7, .external_lex_state = 3}, - [2128] = {.lex_state = 4, .external_lex_state = 3}, - [2129] = {.lex_state = 4, .external_lex_state = 3}, - [2130] = {.lex_state = 7, .external_lex_state = 3}, - [2131] = {.lex_state = 4, .external_lex_state = 3}, - [2132] = {.lex_state = 7, .external_lex_state = 3}, - [2133] = {.lex_state = 4, .external_lex_state = 3}, - [2134] = {.lex_state = 4, .external_lex_state = 3}, - [2135] = {.lex_state = 4, .external_lex_state = 3}, - [2136] = {.lex_state = 4, .external_lex_state = 3}, - [2137] = {.lex_state = 4, .external_lex_state = 3}, - [2138] = {.lex_state = 7, .external_lex_state = 3}, - [2139] = {.lex_state = 7, .external_lex_state = 3}, - [2140] = {.lex_state = 7, .external_lex_state = 3}, - [2141] = {.lex_state = 7, .external_lex_state = 3}, - [2142] = {.lex_state = 4, .external_lex_state = 3}, - [2143] = {.lex_state = 4, .external_lex_state = 3}, - [2144] = {.lex_state = 7, .external_lex_state = 3}, - [2145] = {.lex_state = 4, .external_lex_state = 3}, - [2146] = {.lex_state = 4, .external_lex_state = 3}, - [2147] = {.lex_state = 7, .external_lex_state = 3}, - [2148] = {.lex_state = 4, .external_lex_state = 3}, - [2149] = {.lex_state = 31, .external_lex_state = 3}, - [2150] = {.lex_state = 9, .external_lex_state = 3}, - [2151] = {.lex_state = 4, .external_lex_state = 3}, - [2152] = {.lex_state = 4, .external_lex_state = 3}, - [2153] = {.lex_state = 4, .external_lex_state = 3}, - [2154] = {.lex_state = 8, .external_lex_state = 3}, - [2155] = {.lex_state = 7, .external_lex_state = 3}, - [2156] = {.lex_state = 7, .external_lex_state = 3}, - [2157] = {.lex_state = 4, .external_lex_state = 3}, - [2158] = {.lex_state = 9, .external_lex_state = 3}, - [2159] = {.lex_state = 8, .external_lex_state = 3}, - [2160] = {.lex_state = 31, .external_lex_state = 3}, - [2161] = {.lex_state = 31, .external_lex_state = 3}, - [2162] = {.lex_state = 4, .external_lex_state = 3}, - [2163] = {.lex_state = 4, .external_lex_state = 3}, - [2164] = {.lex_state = 4, .external_lex_state = 3}, - [2165] = {.lex_state = 36, .external_lex_state = 2}, - [2166] = {.lex_state = 36, .external_lex_state = 2}, - [2167] = {.lex_state = 36, .external_lex_state = 2}, - [2168] = {.lex_state = 36, .external_lex_state = 2}, - [2169] = {.lex_state = 4, .external_lex_state = 3}, - [2170] = {.lex_state = 36, .external_lex_state = 2}, - [2171] = {.lex_state = 4, .external_lex_state = 3}, - [2172] = {.lex_state = 4, .external_lex_state = 3}, - [2173] = {.lex_state = 36, .external_lex_state = 2}, - [2174] = {.lex_state = 4, .external_lex_state = 3}, - [2175] = {.lex_state = 36, .external_lex_state = 2}, - [2176] = {.lex_state = 36, .external_lex_state = 2}, - [2177] = {.lex_state = 4, .external_lex_state = 3}, - [2178] = {.lex_state = 4, .external_lex_state = 3}, - [2179] = {.lex_state = 4, .external_lex_state = 3}, - [2180] = {.lex_state = 36, .external_lex_state = 2}, - [2181] = {.lex_state = 36, .external_lex_state = 2}, - [2182] = {.lex_state = 4, .external_lex_state = 3}, - [2183] = {.lex_state = 4, .external_lex_state = 3}, - [2184] = {.lex_state = 36, .external_lex_state = 2}, - [2185] = {.lex_state = 36, .external_lex_state = 2}, - [2186] = {.lex_state = 4, .external_lex_state = 3}, - [2187] = {.lex_state = 25, .external_lex_state = 3}, - [2188] = {.lex_state = 36, .external_lex_state = 2}, - [2189] = {.lex_state = 4, .external_lex_state = 3}, - [2190] = {.lex_state = 8, .external_lex_state = 3}, - [2191] = {.lex_state = 36, .external_lex_state = 2}, - [2192] = {.lex_state = 8, .external_lex_state = 3}, - [2193] = {.lex_state = 25, .external_lex_state = 3}, - [2194] = {.lex_state = 31, .external_lex_state = 3}, - [2195] = {.lex_state = 36, .external_lex_state = 2}, - [2196] = {.lex_state = 9, .external_lex_state = 3}, - [2197] = {.lex_state = 36, .external_lex_state = 2}, - [2198] = {.lex_state = 4, .external_lex_state = 3}, - [2199] = {.lex_state = 7, .external_lex_state = 3}, - [2200] = {.lex_state = 9, .external_lex_state = 3}, - [2201] = {.lex_state = 4, .external_lex_state = 3}, - [2202] = {.lex_state = 7, .external_lex_state = 3}, - [2203] = {.lex_state = 4, .external_lex_state = 3}, - [2204] = {.lex_state = 9, .external_lex_state = 3}, - [2205] = {.lex_state = 4, .external_lex_state = 3}, - [2206] = {.lex_state = 35, .external_lex_state = 2}, - [2207] = {.lex_state = 36, .external_lex_state = 2}, - [2208] = {.lex_state = 30, .external_lex_state = 3}, - [2209] = {.lex_state = 36, .external_lex_state = 2}, - [2210] = {.lex_state = 7, .external_lex_state = 3}, - [2211] = {.lex_state = 36, .external_lex_state = 2}, - [2212] = {.lex_state = 36, .external_lex_state = 2}, - [2213] = {.lex_state = 35, .external_lex_state = 2}, - [2214] = {.lex_state = 36, .external_lex_state = 2}, - [2215] = {.lex_state = 7, .external_lex_state = 3}, - [2216] = {.lex_state = 7, .external_lex_state = 3}, - [2217] = {.lex_state = 36, .external_lex_state = 2}, - [2218] = {.lex_state = 35, .external_lex_state = 2}, - [2219] = {.lex_state = 35, .external_lex_state = 2}, - [2220] = {.lex_state = 36, .external_lex_state = 2}, - [2221] = {.lex_state = 36, .external_lex_state = 2}, - [2222] = {.lex_state = 36, .external_lex_state = 2}, - [2223] = {.lex_state = 36, .external_lex_state = 2}, - [2224] = {.lex_state = 35, .external_lex_state = 2}, - [2225] = {.lex_state = 35, .external_lex_state = 2}, - [2226] = {.lex_state = 35, .external_lex_state = 2}, - [2227] = {.lex_state = 36, .external_lex_state = 2}, - [2228] = {.lex_state = 36, .external_lex_state = 2}, - [2229] = {.lex_state = 36, .external_lex_state = 2}, - [2230] = {.lex_state = 36, .external_lex_state = 2}, - [2231] = {.lex_state = 36, .external_lex_state = 2}, - [2232] = {.lex_state = 36, .external_lex_state = 2}, - [2233] = {.lex_state = 32, .external_lex_state = 2}, - [2234] = {.lex_state = 35, .external_lex_state = 2}, - [2235] = {.lex_state = 35, .external_lex_state = 2}, - [2236] = {.lex_state = 35, .external_lex_state = 2}, - [2237] = {.lex_state = 35, .external_lex_state = 2}, - [2238] = {.lex_state = 35, .external_lex_state = 2}, - [2239] = {.lex_state = 35, .external_lex_state = 2}, - [2240] = {.lex_state = 35, .external_lex_state = 2}, - [2241] = {.lex_state = 35, .external_lex_state = 2}, - [2242] = {.lex_state = 35, .external_lex_state = 2}, - [2243] = {.lex_state = 35, .external_lex_state = 2}, - [2244] = {.lex_state = 35, .external_lex_state = 2}, - [2245] = {.lex_state = 35, .external_lex_state = 2}, - [2246] = {.lex_state = 32, .external_lex_state = 2}, - [2247] = {.lex_state = 35, .external_lex_state = 2}, - [2248] = {.lex_state = 32, .external_lex_state = 2}, - [2249] = {.lex_state = 35, .external_lex_state = 2}, - [2250] = {.lex_state = 35, .external_lex_state = 2}, - [2251] = {.lex_state = 35, .external_lex_state = 2}, - [2252] = {.lex_state = 35, .external_lex_state = 2}, - [2253] = {.lex_state = 32, .external_lex_state = 2}, - [2254] = {.lex_state = 32, .external_lex_state = 2}, - [2255] = {.lex_state = 35, .external_lex_state = 2}, - [2256] = {.lex_state = 35, .external_lex_state = 2}, - [2257] = {.lex_state = 32, .external_lex_state = 2}, - [2258] = {.lex_state = 35, .external_lex_state = 2}, - [2259] = {.lex_state = 32, .external_lex_state = 2}, - [2260] = {.lex_state = 35, .external_lex_state = 2}, - [2261] = {.lex_state = 35, .external_lex_state = 2}, - [2262] = {.lex_state = 32, .external_lex_state = 2}, - [2263] = {.lex_state = 35, .external_lex_state = 2}, - [2264] = {.lex_state = 32, .external_lex_state = 2}, - [2265] = {.lex_state = 32, .external_lex_state = 2}, - [2266] = {.lex_state = 32, .external_lex_state = 2}, - [2267] = {.lex_state = 32, .external_lex_state = 2}, - [2268] = {.lex_state = 36, .external_lex_state = 2}, - [2269] = {.lex_state = 32, .external_lex_state = 2}, - [2270] = {.lex_state = 35, .external_lex_state = 2}, - [2271] = {.lex_state = 35, .external_lex_state = 2}, - [2272] = {.lex_state = 35, .external_lex_state = 2}, - [2273] = {.lex_state = 35, .external_lex_state = 2}, - [2274] = {.lex_state = 32, .external_lex_state = 2}, - [2275] = {.lex_state = 35, .external_lex_state = 2}, - [2276] = {.lex_state = 35, .external_lex_state = 2}, - [2277] = {.lex_state = 35, .external_lex_state = 2}, - [2278] = {.lex_state = 32, .external_lex_state = 2}, - [2279] = {.lex_state = 35, .external_lex_state = 2}, - [2280] = {.lex_state = 32, .external_lex_state = 2}, - [2281] = {.lex_state = 32, .external_lex_state = 2}, - [2282] = {.lex_state = 32, .external_lex_state = 2}, - [2283] = {.lex_state = 32, .external_lex_state = 2}, - [2284] = {.lex_state = 32, .external_lex_state = 2}, - [2285] = {.lex_state = 35, .external_lex_state = 2}, - [2286] = {.lex_state = 32, .external_lex_state = 2}, - [2287] = {.lex_state = 32, .external_lex_state = 2}, - [2288] = {.lex_state = 32, .external_lex_state = 2}, - [2289] = {.lex_state = 32, .external_lex_state = 2}, - [2290] = {.lex_state = 32, .external_lex_state = 2}, - [2291] = {.lex_state = 35, .external_lex_state = 2}, - [2292] = {.lex_state = 32, .external_lex_state = 2}, - [2293] = {.lex_state = 32, .external_lex_state = 2}, - [2294] = {.lex_state = 32, .external_lex_state = 2}, - [2295] = {.lex_state = 32, .external_lex_state = 2}, - [2296] = {.lex_state = 32, .external_lex_state = 2}, - [2297] = {.lex_state = 32, .external_lex_state = 2}, - [2298] = {.lex_state = 35, .external_lex_state = 2}, - [2299] = {.lex_state = 32, .external_lex_state = 2}, - [2300] = {.lex_state = 32, .external_lex_state = 2}, - [2301] = {.lex_state = 32, .external_lex_state = 2}, - [2302] = {.lex_state = 32, .external_lex_state = 2}, - [2303] = {.lex_state = 32, .external_lex_state = 2}, - [2304] = {.lex_state = 32, .external_lex_state = 2}, - [2305] = {.lex_state = 35, .external_lex_state = 2}, - [2306] = {.lex_state = 35, .external_lex_state = 2}, - [2307] = {.lex_state = 32, .external_lex_state = 2}, - [2308] = {.lex_state = 35, .external_lex_state = 2}, - [2309] = {.lex_state = 35, .external_lex_state = 2}, - [2310] = {.lex_state = 32, .external_lex_state = 2}, - [2311] = {.lex_state = 32, .external_lex_state = 2}, - [2312] = {.lex_state = 32, .external_lex_state = 2}, - [2313] = {.lex_state = 35, .external_lex_state = 2}, - [2314] = {.lex_state = 35, .external_lex_state = 2}, - [2315] = {.lex_state = 32, .external_lex_state = 2}, - [2316] = {.lex_state = 35, .external_lex_state = 2}, - [2317] = {.lex_state = 32, .external_lex_state = 2}, - [2318] = {.lex_state = 32, .external_lex_state = 2}, - [2319] = {.lex_state = 32, .external_lex_state = 2}, - [2320] = {.lex_state = 32, .external_lex_state = 2}, - [2321] = {.lex_state = 35, .external_lex_state = 2}, - [2322] = {.lex_state = 35, .external_lex_state = 2}, - [2323] = {.lex_state = 32, .external_lex_state = 2}, - [2324] = {.lex_state = 35, .external_lex_state = 2}, - [2325] = {.lex_state = 32, .external_lex_state = 2}, - [2326] = {.lex_state = 32, .external_lex_state = 2}, - [2327] = {.lex_state = 32, .external_lex_state = 2}, - [2328] = {.lex_state = 32, .external_lex_state = 2}, - [2329] = {.lex_state = 32, .external_lex_state = 2}, - [2330] = {.lex_state = 32, .external_lex_state = 2}, - [2331] = {.lex_state = 32, .external_lex_state = 2}, - [2332] = {.lex_state = 32, .external_lex_state = 2}, - [2333] = {.lex_state = 32, .external_lex_state = 2}, - [2334] = {.lex_state = 32, .external_lex_state = 2}, - [2335] = {.lex_state = 32, .external_lex_state = 2}, - [2336] = {.lex_state = 32, .external_lex_state = 2}, - [2337] = {.lex_state = 32, .external_lex_state = 2}, - [2338] = {.lex_state = 32, .external_lex_state = 2}, - [2339] = {.lex_state = 32, .external_lex_state = 2}, - [2340] = {.lex_state = 35, .external_lex_state = 2}, - [2341] = {.lex_state = 35, .external_lex_state = 2}, - [2342] = {.lex_state = 32, .external_lex_state = 2}, - [2343] = {.lex_state = 32, .external_lex_state = 2}, - [2344] = {.lex_state = 25, .external_lex_state = 3}, - [2345] = {.lex_state = 32, .external_lex_state = 2}, - [2346] = {.lex_state = 32, .external_lex_state = 2}, - [2347] = {.lex_state = 32, .external_lex_state = 2}, - [2348] = {.lex_state = 35, .external_lex_state = 2}, - [2349] = {.lex_state = 35, .external_lex_state = 2}, - [2350] = {.lex_state = 32, .external_lex_state = 2}, - [2351] = {.lex_state = 32, .external_lex_state = 2}, - [2352] = {.lex_state = 35, .external_lex_state = 2}, - [2353] = {.lex_state = 32, .external_lex_state = 2}, - [2354] = {.lex_state = 32, .external_lex_state = 2}, - [2355] = {.lex_state = 32, .external_lex_state = 2}, - [2356] = {.lex_state = 32, .external_lex_state = 2}, - [2357] = {.lex_state = 30, .external_lex_state = 3}, - [2358] = {.lex_state = 32, .external_lex_state = 2}, - [2359] = {.lex_state = 32, .external_lex_state = 2}, - [2360] = {.lex_state = 35, .external_lex_state = 2}, - [2361] = {.lex_state = 35, .external_lex_state = 2}, - [2362] = {.lex_state = 32, .external_lex_state = 2}, - [2363] = {.lex_state = 35, .external_lex_state = 2}, - [2364] = {.lex_state = 32, .external_lex_state = 2}, - [2365] = {.lex_state = 35, .external_lex_state = 2}, - [2366] = {.lex_state = 35, .external_lex_state = 2}, - [2367] = {.lex_state = 35, .external_lex_state = 2}, - [2368] = {.lex_state = 32, .external_lex_state = 2}, - [2369] = {.lex_state = 35, .external_lex_state = 2}, - [2370] = {.lex_state = 32, .external_lex_state = 2}, - [2371] = {.lex_state = 32, .external_lex_state = 2}, - [2372] = {.lex_state = 32, .external_lex_state = 2}, - [2373] = {.lex_state = 32, .external_lex_state = 2}, - [2374] = {.lex_state = 32, .external_lex_state = 2}, - [2375] = {.lex_state = 32, .external_lex_state = 2}, - [2376] = {.lex_state = 32, .external_lex_state = 2}, - [2377] = {.lex_state = 35, .external_lex_state = 2}, - [2378] = {.lex_state = 33, .external_lex_state = 2}, - [2379] = {.lex_state = 35, .external_lex_state = 2}, - [2380] = {.lex_state = 37, .external_lex_state = 2}, - [2381] = {.lex_state = 36, .external_lex_state = 2}, - [2382] = {.lex_state = 35, .external_lex_state = 2}, - [2383] = {.lex_state = 35, .external_lex_state = 2}, - [2384] = {.lex_state = 33, .external_lex_state = 2}, - [2385] = {.lex_state = 33, .external_lex_state = 2}, - [2386] = {.lex_state = 33, .external_lex_state = 2}, - [2387] = {.lex_state = 37, .external_lex_state = 2}, - [2388] = {.lex_state = 33, .external_lex_state = 2}, - [2389] = {.lex_state = 33, .external_lex_state = 2}, - [2390] = {.lex_state = 33, .external_lex_state = 2}, - [2391] = {.lex_state = 33, .external_lex_state = 2}, - [2392] = {.lex_state = 35, .external_lex_state = 2}, - [2393] = {.lex_state = 33, .external_lex_state = 2}, - [2394] = {.lex_state = 37, .external_lex_state = 2}, - [2395] = {.lex_state = 33, .external_lex_state = 2}, - [2396] = {.lex_state = 33, .external_lex_state = 2}, - [2397] = {.lex_state = 35, .external_lex_state = 2}, - [2398] = {.lex_state = 33, .external_lex_state = 2}, - [2399] = {.lex_state = 33, .external_lex_state = 2}, - [2400] = {.lex_state = 35, .external_lex_state = 2}, - [2401] = {.lex_state = 35, .external_lex_state = 2}, - [2402] = {.lex_state = 33, .external_lex_state = 2}, - [2403] = {.lex_state = 33, .external_lex_state = 2}, - [2404] = {.lex_state = 37, .external_lex_state = 2}, - [2405] = {.lex_state = 37, .external_lex_state = 2}, - [2406] = {.lex_state = 33, .external_lex_state = 2}, - [2407] = {.lex_state = 37, .external_lex_state = 2}, - [2408] = {.lex_state = 33, .external_lex_state = 2}, - [2409] = {.lex_state = 37, .external_lex_state = 2}, - [2410] = {.lex_state = 33, .external_lex_state = 2}, - [2411] = {.lex_state = 37, .external_lex_state = 2}, - [2412] = {.lex_state = 35, .external_lex_state = 2}, - [2413] = {.lex_state = 33, .external_lex_state = 2}, - [2414] = {.lex_state = 33, .external_lex_state = 2}, - [2415] = {.lex_state = 36, .external_lex_state = 2}, - [2416] = {.lex_state = 33, .external_lex_state = 2}, - [2417] = {.lex_state = 37, .external_lex_state = 2}, - [2418] = {.lex_state = 33, .external_lex_state = 2}, - [2419] = {.lex_state = 33, .external_lex_state = 2}, - [2420] = {.lex_state = 37, .external_lex_state = 2}, - [2421] = {.lex_state = 33, .external_lex_state = 2}, - [2422] = {.lex_state = 37, .external_lex_state = 2}, - [2423] = {.lex_state = 37, .external_lex_state = 2}, - [2424] = {.lex_state = 33, .external_lex_state = 2}, - [2425] = {.lex_state = 33, .external_lex_state = 2}, - [2426] = {.lex_state = 33, .external_lex_state = 2}, - [2427] = {.lex_state = 33, .external_lex_state = 2}, - [2428] = {.lex_state = 33, .external_lex_state = 2}, - [2429] = {.lex_state = 33, .external_lex_state = 2}, - [2430] = {.lex_state = 33, .external_lex_state = 2}, - [2431] = {.lex_state = 33, .external_lex_state = 2}, - [2432] = {.lex_state = 37, .external_lex_state = 2}, - [2433] = {.lex_state = 33, .external_lex_state = 2}, - [2434] = {.lex_state = 33, .external_lex_state = 2}, - [2435] = {.lex_state = 33, .external_lex_state = 2}, - [2436] = {.lex_state = 33, .external_lex_state = 2}, - [2437] = {.lex_state = 40, .external_lex_state = 3}, - [2438] = {.lex_state = 33, .external_lex_state = 2}, - [2439] = {.lex_state = 33, .external_lex_state = 2}, - [2440] = {.lex_state = 37, .external_lex_state = 2}, - [2441] = {.lex_state = 33, .external_lex_state = 2}, - [2442] = {.lex_state = 33, .external_lex_state = 2}, - [2443] = {.lex_state = 33, .external_lex_state = 2}, - [2444] = {.lex_state = 33, .external_lex_state = 2}, - [2445] = {.lex_state = 35, .external_lex_state = 2}, - [2446] = {.lex_state = 33, .external_lex_state = 2}, - [2447] = {.lex_state = 33, .external_lex_state = 2}, - [2448] = {.lex_state = 33, .external_lex_state = 2}, - [2449] = {.lex_state = 33, .external_lex_state = 2}, - [2450] = {.lex_state = 33, .external_lex_state = 2}, - [2451] = {.lex_state = 33, .external_lex_state = 2}, - [2452] = {.lex_state = 33, .external_lex_state = 2}, - [2453] = {.lex_state = 33, .external_lex_state = 2}, - [2454] = {.lex_state = 33, .external_lex_state = 2}, - [2455] = {.lex_state = 33, .external_lex_state = 2}, - [2456] = {.lex_state = 33, .external_lex_state = 2}, - [2457] = {.lex_state = 35, .external_lex_state = 2}, - [2458] = {.lex_state = 33, .external_lex_state = 2}, - [2459] = {.lex_state = 35, .external_lex_state = 2}, - [2460] = {.lex_state = 37, .external_lex_state = 2}, - [2461] = {.lex_state = 33, .external_lex_state = 2}, - [2462] = {.lex_state = 33, .external_lex_state = 2}, - [2463] = {.lex_state = 33, .external_lex_state = 2}, - [2464] = {.lex_state = 36, .external_lex_state = 2}, - [2465] = {.lex_state = 33, .external_lex_state = 2}, - [2466] = {.lex_state = 33, .external_lex_state = 2}, - [2467] = {.lex_state = 35, .external_lex_state = 2}, - [2468] = {.lex_state = 36, .external_lex_state = 2}, - [2469] = {.lex_state = 33, .external_lex_state = 2}, - [2470] = {.lex_state = 33, .external_lex_state = 2}, - [2471] = {.lex_state = 35, .external_lex_state = 2}, - [2472] = {.lex_state = 40, .external_lex_state = 3}, - [2473] = {.lex_state = 35, .external_lex_state = 2}, - [2474] = {.lex_state = 37, .external_lex_state = 2}, - [2475] = {.lex_state = 35, .external_lex_state = 2}, - [2476] = {.lex_state = 33, .external_lex_state = 2}, - [2477] = {.lex_state = 35, .external_lex_state = 2}, - [2478] = {.lex_state = 33, .external_lex_state = 2}, - [2479] = {.lex_state = 33, .external_lex_state = 2}, - [2480] = {.lex_state = 33, .external_lex_state = 2}, - [2481] = {.lex_state = 33, .external_lex_state = 2}, - [2482] = {.lex_state = 33, .external_lex_state = 2}, - [2483] = {.lex_state = 33, .external_lex_state = 2}, - [2484] = {.lex_state = 33, .external_lex_state = 2}, - [2485] = {.lex_state = 33, .external_lex_state = 2}, - [2486] = {.lex_state = 33, .external_lex_state = 2}, - [2487] = {.lex_state = 35, .external_lex_state = 2}, - [2488] = {.lex_state = 33, .external_lex_state = 2}, - [2489] = {.lex_state = 33, .external_lex_state = 2}, - [2490] = {.lex_state = 33, .external_lex_state = 2}, - [2491] = {.lex_state = 33, .external_lex_state = 2}, - [2492] = {.lex_state = 33, .external_lex_state = 2}, - [2493] = {.lex_state = 33, .external_lex_state = 2}, - [2494] = {.lex_state = 33, .external_lex_state = 2}, - [2495] = {.lex_state = 35, .external_lex_state = 2}, - [2496] = {.lex_state = 35, .external_lex_state = 2}, - [2497] = {.lex_state = 33, .external_lex_state = 2}, - [2498] = {.lex_state = 33, .external_lex_state = 2}, - [2499] = {.lex_state = 33, .external_lex_state = 2}, - [2500] = {.lex_state = 33, .external_lex_state = 2}, - [2501] = {.lex_state = 36, .external_lex_state = 2}, - [2502] = {.lex_state = 33, .external_lex_state = 2}, - [2503] = {.lex_state = 33, .external_lex_state = 2}, - [2504] = {.lex_state = 33, .external_lex_state = 2}, - [2505] = {.lex_state = 35, .external_lex_state = 2}, - [2506] = {.lex_state = 35, .external_lex_state = 2}, - [2507] = {.lex_state = 42, .external_lex_state = 3}, - [2508] = {.lex_state = 42, .external_lex_state = 3}, - [2509] = {.lex_state = 40, .external_lex_state = 3}, - [2510] = {.lex_state = 42, .external_lex_state = 3}, - [2511] = {.lex_state = 42, .external_lex_state = 3}, - [2512] = {.lex_state = 42, .external_lex_state = 3}, - [2513] = {.lex_state = 42, .external_lex_state = 3}, - [2514] = {.lex_state = 40, .external_lex_state = 3}, - [2515] = {.lex_state = 42, .external_lex_state = 3}, - [2516] = {.lex_state = 42, .external_lex_state = 3}, - [2517] = {.lex_state = 40, .external_lex_state = 3}, - [2518] = {.lex_state = 42, .external_lex_state = 3}, - [2519] = {.lex_state = 42, .external_lex_state = 3}, - [2520] = {.lex_state = 42, .external_lex_state = 3}, - [2521] = {.lex_state = 42, .external_lex_state = 3}, - [2522] = {.lex_state = 40, .external_lex_state = 3}, - [2523] = {.lex_state = 40, .external_lex_state = 3}, - [2524] = {.lex_state = 40, .external_lex_state = 3}, - [2525] = {.lex_state = 32, .external_lex_state = 2}, - [2526] = {.lex_state = 40, .external_lex_state = 3}, - [2527] = {.lex_state = 40, .external_lex_state = 3}, - [2528] = {.lex_state = 36, .external_lex_state = 2}, - [2529] = {.lex_state = 32, .external_lex_state = 2}, - [2530] = {.lex_state = 32, .external_lex_state = 2}, - [2531] = {.lex_state = 40, .external_lex_state = 3}, - [2532] = {.lex_state = 40, .external_lex_state = 3}, - [2533] = {.lex_state = 40, .external_lex_state = 3}, - [2534] = {.lex_state = 40, .external_lex_state = 3}, - [2535] = {.lex_state = 40, .external_lex_state = 3}, - [2536] = {.lex_state = 40, .external_lex_state = 3}, - [2537] = {.lex_state = 40, .external_lex_state = 3}, - [2538] = {.lex_state = 32, .external_lex_state = 2}, - [2539] = {.lex_state = 40, .external_lex_state = 3}, - [2540] = {.lex_state = 40, .external_lex_state = 3}, - [2541] = {.lex_state = 40, .external_lex_state = 3}, - [2542] = {.lex_state = 40, .external_lex_state = 3}, - [2543] = {.lex_state = 40, .external_lex_state = 3}, - [2544] = {.lex_state = 40, .external_lex_state = 3}, - [2545] = {.lex_state = 40, .external_lex_state = 3}, - [2546] = {.lex_state = 32, .external_lex_state = 2}, - [2547] = {.lex_state = 40, .external_lex_state = 3}, - [2548] = {.lex_state = 40, .external_lex_state = 3}, - [2549] = {.lex_state = 40, .external_lex_state = 3}, - [2550] = {.lex_state = 40, .external_lex_state = 3}, - [2551] = {.lex_state = 40, .external_lex_state = 3}, - [2552] = {.lex_state = 32, .external_lex_state = 2}, - [2553] = {.lex_state = 37, .external_lex_state = 2}, - [2554] = {.lex_state = 40, .external_lex_state = 3}, - [2555] = {.lex_state = 32, .external_lex_state = 2}, - [2556] = {.lex_state = 40, .external_lex_state = 3}, - [2557] = {.lex_state = 32, .external_lex_state = 2}, - [2558] = {.lex_state = 40, .external_lex_state = 3}, - [2559] = {.lex_state = 36, .external_lex_state = 2}, - [2560] = {.lex_state = 32, .external_lex_state = 2}, - [2561] = {.lex_state = 36, .external_lex_state = 2}, - [2562] = {.lex_state = 40, .external_lex_state = 3}, - [2563] = {.lex_state = 40, .external_lex_state = 3}, - [2564] = {.lex_state = 40, .external_lex_state = 3}, - [2565] = {.lex_state = 40, .external_lex_state = 3}, - [2566] = {.lex_state = 40, .external_lex_state = 3}, - [2567] = {.lex_state = 40, .external_lex_state = 3}, - [2568] = {.lex_state = 32, .external_lex_state = 2}, - [2569] = {.lex_state = 40, .external_lex_state = 3}, - [2570] = {.lex_state = 40, .external_lex_state = 3}, - [2571] = {.lex_state = 40, .external_lex_state = 3}, - [2572] = {.lex_state = 32, .external_lex_state = 2}, - [2573] = {.lex_state = 40, .external_lex_state = 3}, - [2574] = {.lex_state = 32, .external_lex_state = 2}, - [2575] = {.lex_state = 40, .external_lex_state = 3}, - [2576] = {.lex_state = 40, .external_lex_state = 3}, - [2577] = {.lex_state = 40, .external_lex_state = 3}, - [2578] = {.lex_state = 36, .external_lex_state = 2}, - [2579] = {.lex_state = 32, .external_lex_state = 2}, - [2580] = {.lex_state = 32, .external_lex_state = 2}, - [2581] = {.lex_state = 32, .external_lex_state = 2}, - [2582] = {.lex_state = 40, .external_lex_state = 3}, - [2583] = {.lex_state = 32, .external_lex_state = 2}, - [2584] = {.lex_state = 40, .external_lex_state = 3}, - [2585] = {.lex_state = 32, .external_lex_state = 2}, - [2586] = {.lex_state = 36, .external_lex_state = 2}, - [2587] = {.lex_state = 40, .external_lex_state = 3}, - [2588] = {.lex_state = 32, .external_lex_state = 2}, - [2589] = {.lex_state = 40, .external_lex_state = 3}, - [2590] = {.lex_state = 40, .external_lex_state = 3}, - [2591] = {.lex_state = 36, .external_lex_state = 2}, - [2592] = {.lex_state = 32, .external_lex_state = 2}, - [2593] = {.lex_state = 40, .external_lex_state = 3}, - [2594] = {.lex_state = 36, .external_lex_state = 2}, - [2595] = {.lex_state = 40, .external_lex_state = 3}, - [2596] = {.lex_state = 32, .external_lex_state = 2}, - [2597] = {.lex_state = 40, .external_lex_state = 3}, - [2598] = {.lex_state = 40, .external_lex_state = 3}, - [2599] = {.lex_state = 32, .external_lex_state = 2}, - [2600] = {.lex_state = 40, .external_lex_state = 3}, - [2601] = {.lex_state = 32, .external_lex_state = 2}, - [2602] = {.lex_state = 40, .external_lex_state = 3}, - [2603] = {.lex_state = 40, .external_lex_state = 3}, - [2604] = {.lex_state = 33, .external_lex_state = 2}, - [2605] = {.lex_state = 33, .external_lex_state = 2}, - [2606] = {.lex_state = 36, .external_lex_state = 2}, - [2607] = {.lex_state = 36, .external_lex_state = 2}, - [2608] = {.lex_state = 36, .external_lex_state = 2}, - [2609] = {.lex_state = 33, .external_lex_state = 2}, - [2610] = {.lex_state = 36, .external_lex_state = 2}, - [2611] = {.lex_state = 33, .external_lex_state = 2}, - [2612] = {.lex_state = 36, .external_lex_state = 2}, - [2613] = {.lex_state = 33, .external_lex_state = 2}, - [2614] = {.lex_state = 36, .external_lex_state = 2}, - [2615] = {.lex_state = 36, .external_lex_state = 2}, - [2616] = {.lex_state = 33, .external_lex_state = 2}, - [2617] = {.lex_state = 33, .external_lex_state = 2}, - [2618] = {.lex_state = 33, .external_lex_state = 2}, - [2619] = {.lex_state = 33, .external_lex_state = 2}, - [2620] = {.lex_state = 36, .external_lex_state = 2}, - [2621] = {.lex_state = 36, .external_lex_state = 2}, - [2622] = {.lex_state = 33, .external_lex_state = 2}, - [2623] = {.lex_state = 36, .external_lex_state = 2}, - [2624] = {.lex_state = 36, .external_lex_state = 2}, - [2625] = {.lex_state = 4, .external_lex_state = 3}, - [2626] = {.lex_state = 36, .external_lex_state = 2}, - [2627] = {.lex_state = 36, .external_lex_state = 2}, - [2628] = {.lex_state = 33, .external_lex_state = 2}, - [2629] = {.lex_state = 4, .external_lex_state = 3}, - [2630] = {.lex_state = 36, .external_lex_state = 2}, - [2631] = {.lex_state = 33, .external_lex_state = 2}, - [2632] = {.lex_state = 36, .external_lex_state = 2}, - [2633] = {.lex_state = 36, .external_lex_state = 2}, - [2634] = {.lex_state = 36, .external_lex_state = 2}, - [2635] = {.lex_state = 36, .external_lex_state = 2}, - [2636] = {.lex_state = 33, .external_lex_state = 2}, - [2637] = {.lex_state = 33, .external_lex_state = 2}, - [2638] = {.lex_state = 33, .external_lex_state = 2}, - [2639] = {.lex_state = 33, .external_lex_state = 2}, - [2640] = {.lex_state = 36, .external_lex_state = 2}, - [2641] = {.lex_state = 33, .external_lex_state = 2}, - [2642] = {.lex_state = 33, .external_lex_state = 2}, - [2643] = {.lex_state = 33, .external_lex_state = 2}, - [2644] = {.lex_state = 36, .external_lex_state = 2}, - [2645] = {.lex_state = 36, .external_lex_state = 2}, - [2646] = {.lex_state = 36, .external_lex_state = 2}, - [2647] = {.lex_state = 36, .external_lex_state = 2}, - [2648] = {.lex_state = 33, .external_lex_state = 2}, - [2649] = {.lex_state = 33, .external_lex_state = 2}, - [2650] = {.lex_state = 36, .external_lex_state = 2}, - [2651] = {.lex_state = 36, .external_lex_state = 2}, - [2652] = {.lex_state = 36, .external_lex_state = 2}, - [2653] = {.lex_state = 33, .external_lex_state = 2}, - [2654] = {.lex_state = 33, .external_lex_state = 2}, - [2655] = {.lex_state = 33, .external_lex_state = 2}, - [2656] = {.lex_state = 33, .external_lex_state = 2}, - [2657] = {.lex_state = 36, .external_lex_state = 2}, - [2658] = {.lex_state = 36, .external_lex_state = 2}, - [2659] = {.lex_state = 36, .external_lex_state = 2}, - [2660] = {.lex_state = 36, .external_lex_state = 2}, - [2661] = {.lex_state = 33, .external_lex_state = 2}, - [2662] = {.lex_state = 36, .external_lex_state = 2}, - [2663] = {.lex_state = 33, .external_lex_state = 2}, - [2664] = {.lex_state = 33, .external_lex_state = 2}, - [2665] = {.lex_state = 33, .external_lex_state = 2}, - [2666] = {.lex_state = 36, .external_lex_state = 2}, - [2667] = {.lex_state = 36, .external_lex_state = 2}, - [2668] = {.lex_state = 33, .external_lex_state = 2}, - [2669] = {.lex_state = 4, .external_lex_state = 3}, - [2670] = {.lex_state = 4, .external_lex_state = 3}, - [2671] = {.lex_state = 27, .external_lex_state = 3}, - [2672] = {.lex_state = 4, .external_lex_state = 3}, - [2673] = {.lex_state = 4, .external_lex_state = 3}, - [2674] = {.lex_state = 4, .external_lex_state = 3}, - [2675] = {.lex_state = 27, .external_lex_state = 3}, - [2676] = {.lex_state = 27, .external_lex_state = 3}, - [2677] = {.lex_state = 27, .external_lex_state = 3}, - [2678] = {.lex_state = 27, .external_lex_state = 3}, - [2679] = {.lex_state = 4, .external_lex_state = 3}, - [2680] = {.lex_state = 37, .external_lex_state = 2}, - [2681] = {.lex_state = 37, .external_lex_state = 2}, - [2682] = {.lex_state = 37, .external_lex_state = 2}, - [2683] = {.lex_state = 37, .external_lex_state = 2}, - [2684] = {.lex_state = 37, .external_lex_state = 2}, - [2685] = {.lex_state = 37, .external_lex_state = 2}, - [2686] = {.lex_state = 37, .external_lex_state = 2}, - [2687] = {.lex_state = 28, .external_lex_state = 3}, - [2688] = {.lex_state = 28, .external_lex_state = 3}, - [2689] = {.lex_state = 28, .external_lex_state = 3}, - [2690] = {.lex_state = 28, .external_lex_state = 3}, - [2691] = {.lex_state = 28, .external_lex_state = 3}, - [2692] = {.lex_state = 28, .external_lex_state = 3}, - [2693] = {.lex_state = 28, .external_lex_state = 3}, - [2694] = {.lex_state = 28, .external_lex_state = 3}, - [2695] = {.lex_state = 28, .external_lex_state = 3}, - [2696] = {.lex_state = 28, .external_lex_state = 3}, - [2697] = {.lex_state = 28, .external_lex_state = 3}, - [2698] = {.lex_state = 28, .external_lex_state = 3}, - [2699] = {.lex_state = 28, .external_lex_state = 3}, - [2700] = {.lex_state = 28, .external_lex_state = 3}, - [2701] = {.lex_state = 28, .external_lex_state = 3}, - [2702] = {.lex_state = 28, .external_lex_state = 3}, - [2703] = {.lex_state = 28, .external_lex_state = 3}, - [2704] = {.lex_state = 28, .external_lex_state = 3}, - [2705] = {.lex_state = 28, .external_lex_state = 3}, - [2706] = {.lex_state = 28, .external_lex_state = 3}, - [2707] = {.lex_state = 28, .external_lex_state = 3}, - [2708] = {.lex_state = 28, .external_lex_state = 3}, - [2709] = {.lex_state = 28, .external_lex_state = 3}, - [2710] = {.lex_state = 28, .external_lex_state = 3}, - [2711] = {.lex_state = 28, .external_lex_state = 3}, - [2712] = {.lex_state = 28, .external_lex_state = 3}, - [2713] = {.lex_state = 28, .external_lex_state = 3}, - [2714] = {.lex_state = 28, .external_lex_state = 3}, - [2715] = {.lex_state = 28, .external_lex_state = 3}, - [2716] = {.lex_state = 28, .external_lex_state = 3}, - [2717] = {.lex_state = 28, .external_lex_state = 3}, - [2718] = {.lex_state = 28, .external_lex_state = 3}, - [2719] = {.lex_state = 28, .external_lex_state = 3}, - [2720] = {.lex_state = 28, .external_lex_state = 3}, - [2721] = {.lex_state = 28, .external_lex_state = 3}, - [2722] = {.lex_state = 28, .external_lex_state = 3}, - [2723] = {.lex_state = 28, .external_lex_state = 3}, - [2724] = {.lex_state = 28, .external_lex_state = 3}, - [2725] = {.lex_state = 28, .external_lex_state = 3}, - [2726] = {.lex_state = 28, .external_lex_state = 3}, - [2727] = {.lex_state = 28, .external_lex_state = 3}, - [2728] = {.lex_state = 28, .external_lex_state = 3}, - [2729] = {.lex_state = 28, .external_lex_state = 3}, - [2730] = {.lex_state = 28, .external_lex_state = 3}, - [2731] = {.lex_state = 28, .external_lex_state = 3}, - [2732] = {.lex_state = 28, .external_lex_state = 3}, - [2733] = {.lex_state = 28, .external_lex_state = 3}, - [2734] = {.lex_state = 28, .external_lex_state = 3}, - [2735] = {.lex_state = 28, .external_lex_state = 3}, - [2736] = {.lex_state = 28, .external_lex_state = 3}, - [2737] = {.lex_state = 28, .external_lex_state = 3}, - [2738] = {.lex_state = 28, .external_lex_state = 3}, - [2739] = {.lex_state = 28, .external_lex_state = 3}, - [2740] = {.lex_state = 28, .external_lex_state = 3}, - [2741] = {.lex_state = 28, .external_lex_state = 3}, - [2742] = {.lex_state = 28, .external_lex_state = 3}, - [2743] = {.lex_state = 28, .external_lex_state = 3}, - [2744] = {.lex_state = 28, .external_lex_state = 3}, - [2745] = {.lex_state = 28, .external_lex_state = 3}, - [2746] = {.lex_state = 28, .external_lex_state = 3}, - [2747] = {.lex_state = 28, .external_lex_state = 3}, - [2748] = {.lex_state = 28, .external_lex_state = 3}, - [2749] = {.lex_state = 28, .external_lex_state = 3}, - [2750] = {.lex_state = 28, .external_lex_state = 3}, - [2751] = {.lex_state = 28, .external_lex_state = 3}, - [2752] = {.lex_state = 28, .external_lex_state = 3}, - [2753] = {.lex_state = 28, .external_lex_state = 3}, - [2754] = {.lex_state = 28, .external_lex_state = 3}, - [2755] = {.lex_state = 28, .external_lex_state = 3}, - [2756] = {.lex_state = 28, .external_lex_state = 3}, - [2757] = {.lex_state = 28, .external_lex_state = 3}, - [2758] = {.lex_state = 28, .external_lex_state = 3}, - [2759] = {.lex_state = 28, .external_lex_state = 3}, - [2760] = {.lex_state = 28, .external_lex_state = 3}, - [2761] = {.lex_state = 28, .external_lex_state = 3}, - [2762] = {.lex_state = 28, .external_lex_state = 3}, - [2763] = {.lex_state = 28, .external_lex_state = 3}, - [2764] = {.lex_state = 28, .external_lex_state = 3}, - [2765] = {.lex_state = 28, .external_lex_state = 3}, - [2766] = {.lex_state = 28, .external_lex_state = 3}, - [2767] = {.lex_state = 28, .external_lex_state = 3}, - [2768] = {.lex_state = 28, .external_lex_state = 3}, - [2769] = {.lex_state = 28, .external_lex_state = 3}, - [2770] = {.lex_state = 33, .external_lex_state = 2}, - [2771] = {.lex_state = 33, .external_lex_state = 2}, - [2772] = {.lex_state = 116, .external_lex_state = 2}, - [2773] = {.lex_state = 33, .external_lex_state = 2}, - [2774] = {.lex_state = 33, .external_lex_state = 2}, - [2775] = {.lex_state = 33, .external_lex_state = 2}, - [2776] = {.lex_state = 33, .external_lex_state = 2}, - [2777] = {.lex_state = 33, .external_lex_state = 2}, - [2778] = {.lex_state = 33, .external_lex_state = 2}, - [2779] = {.lex_state = 33, .external_lex_state = 2}, - [2780] = {.lex_state = 33, .external_lex_state = 2}, - [2781] = {.lex_state = 33, .external_lex_state = 2}, - [2782] = {.lex_state = 33, .external_lex_state = 2}, - [2783] = {.lex_state = 38, .external_lex_state = 2}, - [2784] = {.lex_state = 120, .external_lex_state = 3}, - [2785] = {.lex_state = 38, .external_lex_state = 2}, - [2786] = {.lex_state = 33, .external_lex_state = 2}, - [2787] = {.lex_state = 33, .external_lex_state = 2}, - [2788] = {.lex_state = 33, .external_lex_state = 2}, - [2789] = {.lex_state = 33, .external_lex_state = 2}, - [2790] = {.lex_state = 33, .external_lex_state = 2}, - [2791] = {.lex_state = 33, .external_lex_state = 2}, - [2792] = {.lex_state = 33, .external_lex_state = 2}, - [2793] = {.lex_state = 33, .external_lex_state = 2}, - [2794] = {.lex_state = 33, .external_lex_state = 2}, - [2795] = {.lex_state = 33, .external_lex_state = 2}, - [2796] = {.lex_state = 116, .external_lex_state = 2}, - [2797] = {.lex_state = 120, .external_lex_state = 3}, - [2798] = {.lex_state = 38, .external_lex_state = 2}, - [2799] = {.lex_state = 38, .external_lex_state = 2}, - [2800] = {.lex_state = 116, .external_lex_state = 2}, - [2801] = {.lex_state = 120, .external_lex_state = 3}, - [2802] = {.lex_state = 33, .external_lex_state = 2}, - [2803] = {.lex_state = 116, .external_lex_state = 2}, - [2804] = {.lex_state = 33, .external_lex_state = 2}, - [2805] = {.lex_state = 33, .external_lex_state = 2}, - [2806] = {.lex_state = 120, .external_lex_state = 3}, - [2807] = {.lex_state = 33, .external_lex_state = 2}, - [2808] = {.lex_state = 33, .external_lex_state = 2}, - [2809] = {.lex_state = 120, .external_lex_state = 3}, - [2810] = {.lex_state = 120, .external_lex_state = 3}, - [2811] = {.lex_state = 33, .external_lex_state = 2}, - [2812] = {.lex_state = 33, .external_lex_state = 2}, - [2813] = {.lex_state = 120, .external_lex_state = 3}, - [2814] = {.lex_state = 120, .external_lex_state = 3}, - [2815] = {.lex_state = 33, .external_lex_state = 2}, - [2816] = {.lex_state = 120, .external_lex_state = 3}, - [2817] = {.lex_state = 33, .external_lex_state = 2}, - [2818] = {.lex_state = 33, .external_lex_state = 2}, - [2819] = {.lex_state = 120, .external_lex_state = 3}, - [2820] = {.lex_state = 116, .external_lex_state = 2}, - [2821] = {.lex_state = 116, .external_lex_state = 2}, - [2822] = {.lex_state = 32, .external_lex_state = 2}, - [2823] = {.lex_state = 116, .external_lex_state = 2}, - [2824] = {.lex_state = 122, .external_lex_state = 3}, - [2825] = {.lex_state = 32, .external_lex_state = 2}, - [2826] = {.lex_state = 32, .external_lex_state = 2}, - [2827] = {.lex_state = 120, .external_lex_state = 3}, - [2828] = {.lex_state = 32, .external_lex_state = 2}, - [2829] = {.lex_state = 32, .external_lex_state = 2}, - [2830] = {.lex_state = 32, .external_lex_state = 2}, - [2831] = {.lex_state = 32, .external_lex_state = 2}, - [2832] = {.lex_state = 32, .external_lex_state = 2}, - [2833] = {.lex_state = 116, .external_lex_state = 2}, - [2834] = {.lex_state = 122, .external_lex_state = 3}, - [2835] = {.lex_state = 32, .external_lex_state = 2}, - [2836] = {.lex_state = 32, .external_lex_state = 2}, - [2837] = {.lex_state = 32, .external_lex_state = 2}, - [2838] = {.lex_state = 32, .external_lex_state = 2}, - [2839] = {.lex_state = 32, .external_lex_state = 2}, - [2840] = {.lex_state = 32, .external_lex_state = 2}, - [2841] = {.lex_state = 32, .external_lex_state = 2}, - [2842] = {.lex_state = 32, .external_lex_state = 2}, - [2843] = {.lex_state = 120, .external_lex_state = 3}, - [2844] = {.lex_state = 32, .external_lex_state = 2}, - [2845] = {.lex_state = 32, .external_lex_state = 2}, - [2846] = {.lex_state = 120, .external_lex_state = 3}, - [2847] = {.lex_state = 120, .external_lex_state = 3}, - [2848] = {.lex_state = 32, .external_lex_state = 2}, - [2849] = {.lex_state = 120, .external_lex_state = 3}, - [2850] = {.lex_state = 32, .external_lex_state = 2}, - [2851] = {.lex_state = 32, .external_lex_state = 2}, - [2852] = {.lex_state = 32, .external_lex_state = 2}, - [2853] = {.lex_state = 32, .external_lex_state = 2}, - [2854] = {.lex_state = 32, .external_lex_state = 2}, - [2855] = {.lex_state = 32, .external_lex_state = 2}, - [2856] = {.lex_state = 120, .external_lex_state = 3}, - [2857] = {.lex_state = 32, .external_lex_state = 2}, - [2858] = {.lex_state = 120, .external_lex_state = 3}, - [2859] = {.lex_state = 45, .external_lex_state = 3}, - [2860] = {.lex_state = 120, .external_lex_state = 3}, - [2861] = {.lex_state = 120, .external_lex_state = 3}, - [2862] = {.lex_state = 120, .external_lex_state = 3}, - [2863] = {.lex_state = 120, .external_lex_state = 3}, - [2864] = {.lex_state = 120, .external_lex_state = 3}, - [2865] = {.lex_state = 120, .external_lex_state = 3}, - [2866] = {.lex_state = 120, .external_lex_state = 3}, - [2867] = {.lex_state = 120, .external_lex_state = 3}, - [2868] = {.lex_state = 120, .external_lex_state = 3}, - [2869] = {.lex_state = 120, .external_lex_state = 3}, - [2870] = {.lex_state = 120, .external_lex_state = 3}, - [2871] = {.lex_state = 120, .external_lex_state = 3}, - [2872] = {.lex_state = 120, .external_lex_state = 3}, - [2873] = {.lex_state = 120, .external_lex_state = 3}, - [2874] = {.lex_state = 120, .external_lex_state = 3}, - [2875] = {.lex_state = 120, .external_lex_state = 3}, - [2876] = {.lex_state = 120, .external_lex_state = 3}, - [2877] = {.lex_state = 120, .external_lex_state = 3}, - [2878] = {.lex_state = 120, .external_lex_state = 3}, - [2879] = {.lex_state = 32, .external_lex_state = 2}, - [2880] = {.lex_state = 120, .external_lex_state = 3}, - [2881] = {.lex_state = 32, .external_lex_state = 2}, - [2882] = {.lex_state = 120, .external_lex_state = 3}, - [2883] = {.lex_state = 120, .external_lex_state = 3}, - [2884] = {.lex_state = 120, .external_lex_state = 3}, - [2885] = {.lex_state = 120, .external_lex_state = 3}, - [2886] = {.lex_state = 120, .external_lex_state = 3}, - [2887] = {.lex_state = 120, .external_lex_state = 3}, - [2888] = {.lex_state = 120, .external_lex_state = 3}, - [2889] = {.lex_state = 120, .external_lex_state = 3}, - [2890] = {.lex_state = 120, .external_lex_state = 3}, - [2891] = {.lex_state = 120, .external_lex_state = 3}, - [2892] = {.lex_state = 120, .external_lex_state = 3}, - [2893] = {.lex_state = 120, .external_lex_state = 3}, - [2894] = {.lex_state = 120, .external_lex_state = 3}, - [2895] = {.lex_state = 120, .external_lex_state = 3}, - [2896] = {.lex_state = 120, .external_lex_state = 3}, - [2897] = {.lex_state = 120, .external_lex_state = 3}, - [2898] = {.lex_state = 120, .external_lex_state = 3}, - [2899] = {.lex_state = 120, .external_lex_state = 3}, - [2900] = {.lex_state = 120, .external_lex_state = 3}, - [2901] = {.lex_state = 120, .external_lex_state = 3}, - [2902] = {.lex_state = 120, .external_lex_state = 3}, - [2903] = {.lex_state = 120, .external_lex_state = 3}, - [2904] = {.lex_state = 120, .external_lex_state = 3}, - [2905] = {.lex_state = 120, .external_lex_state = 3}, - [2906] = {.lex_state = 120, .external_lex_state = 3}, - [2907] = {.lex_state = 120, .external_lex_state = 3}, - [2908] = {.lex_state = 120, .external_lex_state = 3}, - [2909] = {.lex_state = 120, .external_lex_state = 3}, - [2910] = {.lex_state = 120, .external_lex_state = 3}, - [2911] = {.lex_state = 120, .external_lex_state = 3}, - [2912] = {.lex_state = 120, .external_lex_state = 3}, - [2913] = {.lex_state = 120, .external_lex_state = 3}, - [2914] = {.lex_state = 120, .external_lex_state = 3}, - [2915] = {.lex_state = 39, .external_lex_state = 3}, - [2916] = {.lex_state = 120, .external_lex_state = 3}, - [2917] = {.lex_state = 120, .external_lex_state = 3}, - [2918] = {.lex_state = 120, .external_lex_state = 3}, - [2919] = {.lex_state = 120, .external_lex_state = 3}, - [2920] = {.lex_state = 120, .external_lex_state = 3}, - [2921] = {.lex_state = 120, .external_lex_state = 3}, - [2922] = {.lex_state = 32, .external_lex_state = 2}, - [2923] = {.lex_state = 120, .external_lex_state = 3}, - [2924] = {.lex_state = 39, .external_lex_state = 3}, - [2925] = {.lex_state = 120, .external_lex_state = 3}, - [2926] = {.lex_state = 120, .external_lex_state = 3}, - [2927] = {.lex_state = 120, .external_lex_state = 3}, - [2928] = {.lex_state = 32, .external_lex_state = 2}, - [2929] = {.lex_state = 120, .external_lex_state = 3}, - [2930] = {.lex_state = 120, .external_lex_state = 3}, - [2931] = {.lex_state = 32, .external_lex_state = 2}, - [2932] = {.lex_state = 120, .external_lex_state = 3}, - [2933] = {.lex_state = 120, .external_lex_state = 3}, - [2934] = {.lex_state = 120, .external_lex_state = 3}, - [2935] = {.lex_state = 120, .external_lex_state = 3}, - [2936] = {.lex_state = 120, .external_lex_state = 3}, - [2937] = {.lex_state = 120, .external_lex_state = 3}, - [2938] = {.lex_state = 120, .external_lex_state = 3}, - [2939] = {.lex_state = 120, .external_lex_state = 3}, - [2940] = {.lex_state = 120, .external_lex_state = 3}, - [2941] = {.lex_state = 120, .external_lex_state = 3}, - [2942] = {.lex_state = 32, .external_lex_state = 2}, - [2943] = {.lex_state = 39, .external_lex_state = 3}, - [2944] = {.lex_state = 120, .external_lex_state = 3}, - [2945] = {.lex_state = 120, .external_lex_state = 3}, - [2946] = {.lex_state = 120, .external_lex_state = 3}, - [2947] = {.lex_state = 120, .external_lex_state = 3}, - [2948] = {.lex_state = 120, .external_lex_state = 3}, - [2949] = {.lex_state = 122, .external_lex_state = 3}, - [2950] = {.lex_state = 120, .external_lex_state = 3}, - [2951] = {.lex_state = 120, .external_lex_state = 3}, - [2952] = {.lex_state = 120, .external_lex_state = 3}, - [2953] = {.lex_state = 39, .external_lex_state = 3}, - [2954] = {.lex_state = 39, .external_lex_state = 3}, - [2955] = {.lex_state = 120, .external_lex_state = 3}, - [2956] = {.lex_state = 39, .external_lex_state = 3}, - [2957] = {.lex_state = 122, .external_lex_state = 3}, - [2958] = {.lex_state = 39, .external_lex_state = 3}, - [2959] = {.lex_state = 122, .external_lex_state = 3}, - [2960] = {.lex_state = 120, .external_lex_state = 3}, - [2961] = {.lex_state = 39, .external_lex_state = 3}, - [2962] = {.lex_state = 39, .external_lex_state = 3}, - [2963] = {.lex_state = 122, .external_lex_state = 3}, - [2964] = {.lex_state = 39, .external_lex_state = 3}, - [2965] = {.lex_state = 122, .external_lex_state = 3}, - [2966] = {.lex_state = 120, .external_lex_state = 3}, - [2967] = {.lex_state = 39, .external_lex_state = 3}, - [2968] = {.lex_state = 120, .external_lex_state = 3}, - [2969] = {.lex_state = 120, .external_lex_state = 3}, - [2970] = {.lex_state = 116, .external_lex_state = 2}, - [2971] = {.lex_state = 120, .external_lex_state = 3}, - [2972] = {.lex_state = 120, .external_lex_state = 3}, - [2973] = {.lex_state = 120, .external_lex_state = 3}, - [2974] = {.lex_state = 39, .external_lex_state = 3}, - [2975] = {.lex_state = 120, .external_lex_state = 3}, - [2976] = {.lex_state = 39, .external_lex_state = 3}, - [2977] = {.lex_state = 122, .external_lex_state = 3}, - [2978] = {.lex_state = 120, .external_lex_state = 3}, - [2979] = {.lex_state = 39, .external_lex_state = 3}, - [2980] = {.lex_state = 120, .external_lex_state = 3}, - [2981] = {.lex_state = 120, .external_lex_state = 3}, - [2982] = {.lex_state = 120, .external_lex_state = 3}, - [2983] = {.lex_state = 120, .external_lex_state = 3}, - [2984] = {.lex_state = 120, .external_lex_state = 3}, - [2985] = {.lex_state = 120, .external_lex_state = 3}, - [2986] = {.lex_state = 39, .external_lex_state = 3}, - [2987] = {.lex_state = 116, .external_lex_state = 2}, - [2988] = {.lex_state = 39, .external_lex_state = 3}, - [2989] = {.lex_state = 39, .external_lex_state = 3}, - [2990] = {.lex_state = 39, .external_lex_state = 3}, - [2991] = {.lex_state = 120, .external_lex_state = 3}, - [2992] = {.lex_state = 39, .external_lex_state = 3}, - [2993] = {.lex_state = 39, .external_lex_state = 3}, - [2994] = {.lex_state = 122, .external_lex_state = 3}, - [2995] = {.lex_state = 39, .external_lex_state = 3}, - [2996] = {.lex_state = 39, .external_lex_state = 3}, - [2997] = {.lex_state = 122, .external_lex_state = 3}, - [2998] = {.lex_state = 120, .external_lex_state = 3}, - [2999] = {.lex_state = 39, .external_lex_state = 3}, - [3000] = {.lex_state = 39, .external_lex_state = 3}, - [3001] = {.lex_state = 120, .external_lex_state = 3}, - [3002] = {.lex_state = 122, .external_lex_state = 3}, - [3003] = {.lex_state = 39, .external_lex_state = 3}, - [3004] = {.lex_state = 120, .external_lex_state = 3}, - [3005] = {.lex_state = 39, .external_lex_state = 3}, - [3006] = {.lex_state = 39, .external_lex_state = 3}, - [3007] = {.lex_state = 39, .external_lex_state = 3}, - [3008] = {.lex_state = 39, .external_lex_state = 3}, - [3009] = {.lex_state = 122, .external_lex_state = 3}, - [3010] = {.lex_state = 124, .external_lex_state = 3}, - [3011] = {.lex_state = 39, .external_lex_state = 3}, - [3012] = {.lex_state = 39, .external_lex_state = 3}, - [3013] = {.lex_state = 39, .external_lex_state = 3}, - [3014] = {.lex_state = 122, .external_lex_state = 3}, - [3015] = {.lex_state = 120, .external_lex_state = 3}, - [3016] = {.lex_state = 122, .external_lex_state = 3}, - [3017] = {.lex_state = 120, .external_lex_state = 3}, - [3018] = {.lex_state = 39, .external_lex_state = 3}, - [3019] = {.lex_state = 39, .external_lex_state = 3}, - [3020] = {.lex_state = 120, .external_lex_state = 3}, - [3021] = {.lex_state = 122, .external_lex_state = 3}, - [3022] = {.lex_state = 120, .external_lex_state = 3}, - [3023] = {.lex_state = 120, .external_lex_state = 3}, - [3024] = {.lex_state = 122, .external_lex_state = 3}, - [3025] = {.lex_state = 120, .external_lex_state = 3}, - [3026] = {.lex_state = 39, .external_lex_state = 3}, - [3027] = {.lex_state = 39, .external_lex_state = 3}, - [3028] = {.lex_state = 120, .external_lex_state = 3}, - [3029] = {.lex_state = 120, .external_lex_state = 3}, - [3030] = {.lex_state = 124, .external_lex_state = 3}, - [3031] = {.lex_state = 120, .external_lex_state = 3}, - [3032] = {.lex_state = 39, .external_lex_state = 3}, - [3033] = {.lex_state = 39, .external_lex_state = 3}, - [3034] = {.lex_state = 39, .external_lex_state = 3}, - [3035] = {.lex_state = 116, .external_lex_state = 2}, - [3036] = {.lex_state = 39, .external_lex_state = 3}, - [3037] = {.lex_state = 39, .external_lex_state = 3}, - [3038] = {.lex_state = 120, .external_lex_state = 3}, - [3039] = {.lex_state = 122, .external_lex_state = 3}, - [3040] = {.lex_state = 120, .external_lex_state = 3}, - [3041] = {.lex_state = 120, .external_lex_state = 3}, - [3042] = {.lex_state = 120, .external_lex_state = 3}, - [3043] = {.lex_state = 39, .external_lex_state = 3}, - [3044] = {.lex_state = 39, .external_lex_state = 3}, - [3045] = {.lex_state = 120, .external_lex_state = 3}, - [3046] = {.lex_state = 120, .external_lex_state = 3}, - [3047] = {.lex_state = 122, .external_lex_state = 3}, - [3048] = {.lex_state = 126, .external_lex_state = 3}, - [3049] = {.lex_state = 39, .external_lex_state = 3}, - [3050] = {.lex_state = 120, .external_lex_state = 3}, - [3051] = {.lex_state = 39, .external_lex_state = 3}, - [3052] = {.lex_state = 120, .external_lex_state = 3}, - [3053] = {.lex_state = 39, .external_lex_state = 3}, - [3054] = {.lex_state = 120, .external_lex_state = 3}, - [3055] = {.lex_state = 39, .external_lex_state = 3}, - [3056] = {.lex_state = 120, .external_lex_state = 3}, - [3057] = {.lex_state = 120, .external_lex_state = 3}, - [3058] = {.lex_state = 120, .external_lex_state = 3}, - [3059] = {.lex_state = 120, .external_lex_state = 3}, - [3060] = {.lex_state = 120, .external_lex_state = 3}, - [3061] = {.lex_state = 120, .external_lex_state = 3}, - [3062] = {.lex_state = 39, .external_lex_state = 3}, - [3063] = {.lex_state = 39, .external_lex_state = 3}, - [3064] = {.lex_state = 39, .external_lex_state = 3}, - [3065] = {.lex_state = 39, .external_lex_state = 3}, - [3066] = {.lex_state = 39, .external_lex_state = 3}, - [3067] = {.lex_state = 120, .external_lex_state = 3}, - [3068] = {.lex_state = 120, .external_lex_state = 3}, - [3069] = {.lex_state = 39, .external_lex_state = 3}, - [3070] = {.lex_state = 39, .external_lex_state = 3}, - [3071] = {.lex_state = 32, .external_lex_state = 2}, - [3072] = {.lex_state = 120, .external_lex_state = 3}, - [3073] = {.lex_state = 39, .external_lex_state = 3}, - [3074] = {.lex_state = 120, .external_lex_state = 3}, - [3075] = {.lex_state = 39, .external_lex_state = 3}, - [3076] = {.lex_state = 122, .external_lex_state = 3}, - [3077] = {.lex_state = 120, .external_lex_state = 3}, - [3078] = {.lex_state = 120, .external_lex_state = 3}, - [3079] = {.lex_state = 39, .external_lex_state = 3}, - [3080] = {.lex_state = 120, .external_lex_state = 3}, - [3081] = {.lex_state = 120, .external_lex_state = 3}, - [3082] = {.lex_state = 120, .external_lex_state = 3}, - [3083] = {.lex_state = 120, .external_lex_state = 3}, - [3084] = {.lex_state = 120, .external_lex_state = 3}, - [3085] = {.lex_state = 116, .external_lex_state = 2}, - [3086] = {.lex_state = 39, .external_lex_state = 3}, - [3087] = {.lex_state = 120, .external_lex_state = 3}, - [3088] = {.lex_state = 120, .external_lex_state = 3}, - [3089] = {.lex_state = 120, .external_lex_state = 3}, - [3090] = {.lex_state = 39, .external_lex_state = 3}, - [3091] = {.lex_state = 39, .external_lex_state = 3}, - [3092] = {.lex_state = 39, .external_lex_state = 3}, - [3093] = {.lex_state = 116, .external_lex_state = 2}, - [3094] = {.lex_state = 39, .external_lex_state = 3}, - [3095] = {.lex_state = 39, .external_lex_state = 3}, - [3096] = {.lex_state = 120, .external_lex_state = 3}, - [3097] = {.lex_state = 120, .external_lex_state = 3}, - [3098] = {.lex_state = 120, .external_lex_state = 3}, - [3099] = {.lex_state = 120, .external_lex_state = 3}, - [3100] = {.lex_state = 39, .external_lex_state = 3}, - [3101] = {.lex_state = 39, .external_lex_state = 3}, - [3102] = {.lex_state = 120, .external_lex_state = 3}, - [3103] = {.lex_state = 120, .external_lex_state = 3}, - [3104] = {.lex_state = 120, .external_lex_state = 3}, - [3105] = {.lex_state = 116, .external_lex_state = 2}, - [3106] = {.lex_state = 39, .external_lex_state = 3}, - [3107] = {.lex_state = 120, .external_lex_state = 3}, - [3108] = {.lex_state = 120, .external_lex_state = 3}, - [3109] = {.lex_state = 39, .external_lex_state = 3}, - [3110] = {.lex_state = 124, .external_lex_state = 3}, - [3111] = {.lex_state = 124, .external_lex_state = 3}, - [3112] = {.lex_state = 124, .external_lex_state = 3}, - [3113] = {.lex_state = 124, .external_lex_state = 3}, - [3114] = {.lex_state = 120, .external_lex_state = 3}, - [3115] = {.lex_state = 124, .external_lex_state = 3}, - [3116] = {.lex_state = 124, .external_lex_state = 3}, - [3117] = {.lex_state = 124, .external_lex_state = 3}, - [3118] = {.lex_state = 124, .external_lex_state = 3}, - [3119] = {.lex_state = 124, .external_lex_state = 3}, - [3120] = {.lex_state = 124, .external_lex_state = 3}, - [3121] = {.lex_state = 116, .external_lex_state = 2}, - [3122] = {.lex_state = 124, .external_lex_state = 3}, - [3123] = {.lex_state = 124, .external_lex_state = 3}, - [3124] = {.lex_state = 116, .external_lex_state = 2}, - [3125] = {.lex_state = 124, .external_lex_state = 3}, - [3126] = {.lex_state = 124, .external_lex_state = 3}, - [3127] = {.lex_state = 124, .external_lex_state = 3}, - [3128] = {.lex_state = 124, .external_lex_state = 3}, - [3129] = {.lex_state = 116, .external_lex_state = 2}, - [3130] = {.lex_state = 124, .external_lex_state = 3}, - [3131] = {.lex_state = 124, .external_lex_state = 3}, - [3132] = {.lex_state = 124, .external_lex_state = 3}, - [3133] = {.lex_state = 120, .external_lex_state = 3}, - [3134] = {.lex_state = 124, .external_lex_state = 3}, - [3135] = {.lex_state = 124, .external_lex_state = 3}, - [3136] = {.lex_state = 124, .external_lex_state = 3}, - [3137] = {.lex_state = 124, .external_lex_state = 3}, - [3138] = {.lex_state = 124, .external_lex_state = 3}, - [3139] = {.lex_state = 124, .external_lex_state = 3}, - [3140] = {.lex_state = 116, .external_lex_state = 2}, - [3141] = {.lex_state = 124, .external_lex_state = 3}, - [3142] = {.lex_state = 124, .external_lex_state = 3}, - [3143] = {.lex_state = 124, .external_lex_state = 3}, - [3144] = {.lex_state = 124, .external_lex_state = 3}, - [3145] = {.lex_state = 120, .external_lex_state = 3}, - [3146] = {.lex_state = 124, .external_lex_state = 3}, - [3147] = {.lex_state = 124, .external_lex_state = 3}, - [3148] = {.lex_state = 116, .external_lex_state = 2}, - [3149] = {.lex_state = 124, .external_lex_state = 3}, - [3150] = {.lex_state = 116, .external_lex_state = 2}, - [3151] = {.lex_state = 124, .external_lex_state = 3}, - [3152] = {.lex_state = 124, .external_lex_state = 3}, - [3153] = {.lex_state = 120, .external_lex_state = 3}, - [3154] = {.lex_state = 120, .external_lex_state = 3}, - [3155] = {.lex_state = 124, .external_lex_state = 3}, - [3156] = {.lex_state = 124, .external_lex_state = 3}, - [3157] = {.lex_state = 124, .external_lex_state = 3}, - [3158] = {.lex_state = 124, .external_lex_state = 3}, - [3159] = {.lex_state = 124, .external_lex_state = 3}, - [3160] = {.lex_state = 124, .external_lex_state = 3}, - [3161] = {.lex_state = 124, .external_lex_state = 3}, - [3162] = {.lex_state = 124, .external_lex_state = 3}, - [3163] = {.lex_state = 124, .external_lex_state = 3}, - [3164] = {.lex_state = 124, .external_lex_state = 3}, - [3165] = {.lex_state = 124, .external_lex_state = 3}, - [3166] = {.lex_state = 124, .external_lex_state = 3}, - [3167] = {.lex_state = 124, .external_lex_state = 3}, - [3168] = {.lex_state = 124, .external_lex_state = 3}, - [3169] = {.lex_state = 124, .external_lex_state = 3}, - [3170] = {.lex_state = 124, .external_lex_state = 3}, - [3171] = {.lex_state = 124, .external_lex_state = 3}, - [3172] = {.lex_state = 124, .external_lex_state = 3}, - [3173] = {.lex_state = 124, .external_lex_state = 3}, - [3174] = {.lex_state = 124, .external_lex_state = 3}, - [3175] = {.lex_state = 124, .external_lex_state = 3}, - [3176] = {.lex_state = 116, .external_lex_state = 2}, - [3177] = {.lex_state = 124, .external_lex_state = 3}, - [3178] = {.lex_state = 124, .external_lex_state = 3}, - [3179] = {.lex_state = 120, .external_lex_state = 3}, - [3180] = {.lex_state = 124, .external_lex_state = 3}, - [3181] = {.lex_state = 120, .external_lex_state = 3}, - [3182] = {.lex_state = 120, .external_lex_state = 3}, - [3183] = {.lex_state = 116, .external_lex_state = 2}, - [3184] = {.lex_state = 124, .external_lex_state = 3}, - [3185] = {.lex_state = 124, .external_lex_state = 3}, - [3186] = {.lex_state = 120, .external_lex_state = 3}, - [3187] = {.lex_state = 124, .external_lex_state = 3}, - [3188] = {.lex_state = 124, .external_lex_state = 3}, - [3189] = {.lex_state = 124, .external_lex_state = 3}, - [3190] = {.lex_state = 124, .external_lex_state = 3}, - [3191] = {.lex_state = 124, .external_lex_state = 3}, - [3192] = {.lex_state = 116, .external_lex_state = 2}, - [3193] = {.lex_state = 116, .external_lex_state = 2}, - [3194] = {.lex_state = 116, .external_lex_state = 2}, - [3195] = {.lex_state = 116, .external_lex_state = 2}, - [3196] = {.lex_state = 50, .external_lex_state = 2}, - [3197] = {.lex_state = 116, .external_lex_state = 2}, - [3198] = {.lex_state = 50, .external_lex_state = 2}, - [3199] = {.lex_state = 116, .external_lex_state = 2}, - [3200] = {.lex_state = 116, .external_lex_state = 2}, - [3201] = {.lex_state = 50, .external_lex_state = 2}, - [3202] = {.lex_state = 120, .external_lex_state = 3}, - [3203] = {.lex_state = 116, .external_lex_state = 2}, - [3204] = {.lex_state = 32, .external_lex_state = 2}, - [3205] = {.lex_state = 50, .external_lex_state = 2}, - [3206] = {.lex_state = 116, .external_lex_state = 2}, - [3207] = {.lex_state = 116, .external_lex_state = 2}, - [3208] = {.lex_state = 50, .external_lex_state = 2}, - [3209] = {.lex_state = 50, .external_lex_state = 2}, - [3210] = {.lex_state = 116, .external_lex_state = 2}, - [3211] = {.lex_state = 50, .external_lex_state = 2}, - [3212] = {.lex_state = 116, .external_lex_state = 2}, - [3213] = {.lex_state = 116, .external_lex_state = 2}, - [3214] = {.lex_state = 50, .external_lex_state = 2}, - [3215] = {.lex_state = 50, .external_lex_state = 2}, - [3216] = {.lex_state = 50, .external_lex_state = 2}, - [3217] = {.lex_state = 116, .external_lex_state = 2}, - [3218] = {.lex_state = 116, .external_lex_state = 2}, - [3219] = {.lex_state = 116, .external_lex_state = 2}, - [3220] = {.lex_state = 116, .external_lex_state = 2}, - [3221] = {.lex_state = 116, .external_lex_state = 2}, - [3222] = {.lex_state = 116, .external_lex_state = 2}, - [3223] = {.lex_state = 50, .external_lex_state = 2}, - [3224] = {.lex_state = 116, .external_lex_state = 2}, - [3225] = {.lex_state = 116, .external_lex_state = 2}, - [3226] = {.lex_state = 50, .external_lex_state = 2}, - [3227] = {.lex_state = 116, .external_lex_state = 2}, - [3228] = {.lex_state = 116, .external_lex_state = 2}, - [3229] = {.lex_state = 33, .external_lex_state = 2}, - [3230] = {.lex_state = 116, .external_lex_state = 2}, - [3231] = {.lex_state = 116, .external_lex_state = 2}, - [3232] = {.lex_state = 116, .external_lex_state = 2}, - [3233] = {.lex_state = 116, .external_lex_state = 2}, - [3234] = {.lex_state = 116, .external_lex_state = 2}, - [3235] = {.lex_state = 33, .external_lex_state = 2}, - [3236] = {.lex_state = 33, .external_lex_state = 2}, - [3237] = {.lex_state = 33, .external_lex_state = 2}, - [3238] = {.lex_state = 33, .external_lex_state = 2}, - [3239] = {.lex_state = 116, .external_lex_state = 2}, - [3240] = {.lex_state = 116, .external_lex_state = 2}, - [3241] = {.lex_state = 116, .external_lex_state = 2}, - [3242] = {.lex_state = 33, .external_lex_state = 2}, - [3243] = {.lex_state = 116, .external_lex_state = 2}, - [3244] = {.lex_state = 118, .external_lex_state = 3}, - [3245] = {.lex_state = 33, .external_lex_state = 2}, - [3246] = {.lex_state = 116, .external_lex_state = 2}, - [3247] = {.lex_state = 116, .external_lex_state = 2}, - [3248] = {.lex_state = 122, .external_lex_state = 2}, - [3249] = {.lex_state = 116, .external_lex_state = 2}, - [3250] = {.lex_state = 116, .external_lex_state = 2}, - [3251] = {.lex_state = 33, .external_lex_state = 2}, - [3252] = {.lex_state = 116, .external_lex_state = 2}, - [3253] = {.lex_state = 116, .external_lex_state = 2}, - [3254] = {.lex_state = 30, .external_lex_state = 3}, - [3255] = {.lex_state = 116, .external_lex_state = 2}, - [3256] = {.lex_state = 33, .external_lex_state = 2}, - [3257] = {.lex_state = 116, .external_lex_state = 2}, - [3258] = {.lex_state = 33, .external_lex_state = 2}, - [3259] = {.lex_state = 33, .external_lex_state = 2}, - [3260] = {.lex_state = 116, .external_lex_state = 2}, - [3261] = {.lex_state = 116, .external_lex_state = 2}, - [3262] = {.lex_state = 33, .external_lex_state = 2}, - [3263] = {.lex_state = 33, .external_lex_state = 2}, - [3264] = {.lex_state = 122, .external_lex_state = 2}, - [3265] = {.lex_state = 116, .external_lex_state = 2}, - [3266] = {.lex_state = 33, .external_lex_state = 2}, - [3267] = {.lex_state = 34, .external_lex_state = 2}, - [3268] = {.lex_state = 117, .external_lex_state = 3}, - [3269] = {.lex_state = 117, .external_lex_state = 3}, - [3270] = {.lex_state = 32, .external_lex_state = 2}, - [3271] = {.lex_state = 117, .external_lex_state = 3}, - [3272] = {.lex_state = 34, .external_lex_state = 2}, - [3273] = {.lex_state = 34, .external_lex_state = 2}, - [3274] = {.lex_state = 117, .external_lex_state = 3}, - [3275] = {.lex_state = 117, .external_lex_state = 3}, - [3276] = {.lex_state = 34, .external_lex_state = 2}, - [3277] = {.lex_state = 34, .external_lex_state = 2}, - [3278] = {.lex_state = 117, .external_lex_state = 3}, - [3279] = {.lex_state = 34, .external_lex_state = 2}, - [3280] = {.lex_state = 117, .external_lex_state = 3}, - [3281] = {.lex_state = 117, .external_lex_state = 3}, - [3282] = {.lex_state = 117, .external_lex_state = 3}, - [3283] = {.lex_state = 34, .external_lex_state = 2}, - [3284] = {.lex_state = 34, .external_lex_state = 2}, - [3285] = {.lex_state = 34, .external_lex_state = 2}, - [3286] = {.lex_state = 34, .external_lex_state = 2}, - [3287] = {.lex_state = 117, .external_lex_state = 3}, - [3288] = {.lex_state = 34, .external_lex_state = 2}, - [3289] = {.lex_state = 117, .external_lex_state = 3}, - [3290] = {.lex_state = 34, .external_lex_state = 2}, - [3291] = {.lex_state = 117, .external_lex_state = 3}, - [3292] = {.lex_state = 34, .external_lex_state = 2}, - [3293] = {.lex_state = 34, .external_lex_state = 2}, - [3294] = {.lex_state = 117, .external_lex_state = 3}, - [3295] = {.lex_state = 117, .external_lex_state = 3}, - [3296] = {.lex_state = 117, .external_lex_state = 3}, - [3297] = {.lex_state = 117, .external_lex_state = 3}, - [3298] = {.lex_state = 34, .external_lex_state = 2}, - [3299] = {.lex_state = 117, .external_lex_state = 3}, - [3300] = {.lex_state = 34, .external_lex_state = 2}, - [3301] = {.lex_state = 34, .external_lex_state = 2}, - [3302] = {.lex_state = 34, .external_lex_state = 2}, - [3303] = {.lex_state = 34, .external_lex_state = 2}, - [3304] = {.lex_state = 117, .external_lex_state = 3}, - [3305] = {.lex_state = 117, .external_lex_state = 3}, - [3306] = {.lex_state = 34, .external_lex_state = 2}, - [3307] = {.lex_state = 34, .external_lex_state = 2}, - [3308] = {.lex_state = 117, .external_lex_state = 3}, - [3309] = {.lex_state = 117, .external_lex_state = 3}, - [3310] = {.lex_state = 34, .external_lex_state = 2}, - [3311] = {.lex_state = 117, .external_lex_state = 3}, - [3312] = {.lex_state = 34, .external_lex_state = 2}, - [3313] = {.lex_state = 117, .external_lex_state = 3}, - [3314] = {.lex_state = 117, .external_lex_state = 3}, - [3315] = {.lex_state = 117, .external_lex_state = 3}, - [3316] = {.lex_state = 117, .external_lex_state = 3}, - [3317] = {.lex_state = 34, .external_lex_state = 2}, - [3318] = {.lex_state = 34, .external_lex_state = 2}, - [3319] = {.lex_state = 34, .external_lex_state = 2}, - [3320] = {.lex_state = 34, .external_lex_state = 2}, - [3321] = {.lex_state = 34, .external_lex_state = 2}, - [3322] = {.lex_state = 34, .external_lex_state = 2}, - [3323] = {.lex_state = 117, .external_lex_state = 3}, - [3324] = {.lex_state = 34, .external_lex_state = 2}, - [3325] = {.lex_state = 34, .external_lex_state = 2}, - [3326] = {.lex_state = 34, .external_lex_state = 2}, - [3327] = {.lex_state = 34, .external_lex_state = 2}, - [3328] = {.lex_state = 34, .external_lex_state = 2}, - [3329] = {.lex_state = 117, .external_lex_state = 3}, - [3330] = {.lex_state = 34, .external_lex_state = 2}, - [3331] = {.lex_state = 34, .external_lex_state = 2}, - [3332] = {.lex_state = 34, .external_lex_state = 2}, - [3333] = {.lex_state = 34, .external_lex_state = 2}, - [3334] = {.lex_state = 34, .external_lex_state = 2}, - [3335] = {.lex_state = 34, .external_lex_state = 2}, - [3336] = {.lex_state = 34, .external_lex_state = 2}, - [3337] = {.lex_state = 117, .external_lex_state = 3}, - [3338] = {.lex_state = 34, .external_lex_state = 2}, - [3339] = {.lex_state = 117, .external_lex_state = 3}, - [3340] = {.lex_state = 34, .external_lex_state = 2}, - [3341] = {.lex_state = 34, .external_lex_state = 2}, - [3342] = {.lex_state = 34, .external_lex_state = 2}, - [3343] = {.lex_state = 34, .external_lex_state = 2}, - [3344] = {.lex_state = 34, .external_lex_state = 2}, - [3345] = {.lex_state = 34, .external_lex_state = 2}, - [3346] = {.lex_state = 34, .external_lex_state = 2}, - [3347] = {.lex_state = 34, .external_lex_state = 2}, - [3348] = {.lex_state = 34, .external_lex_state = 2}, - [3349] = {.lex_state = 117, .external_lex_state = 3}, - [3350] = {.lex_state = 34, .external_lex_state = 2}, - [3351] = {.lex_state = 34, .external_lex_state = 2}, - [3352] = {.lex_state = 34, .external_lex_state = 2}, - [3353] = {.lex_state = 34, .external_lex_state = 2}, - [3354] = {.lex_state = 34, .external_lex_state = 2}, - [3355] = {.lex_state = 34, .external_lex_state = 2}, - [3356] = {.lex_state = 34, .external_lex_state = 2}, - [3357] = {.lex_state = 34, .external_lex_state = 2}, - [3358] = {.lex_state = 34, .external_lex_state = 2}, - [3359] = {.lex_state = 117, .external_lex_state = 3}, - [3360] = {.lex_state = 34, .external_lex_state = 2}, - [3361] = {.lex_state = 34, .external_lex_state = 2}, - [3362] = {.lex_state = 34, .external_lex_state = 2}, - [3363] = {.lex_state = 34, .external_lex_state = 2}, - [3364] = {.lex_state = 34, .external_lex_state = 2}, - [3365] = {.lex_state = 34, .external_lex_state = 2}, - [3366] = {.lex_state = 34, .external_lex_state = 2}, - [3367] = {.lex_state = 30, .external_lex_state = 3}, - [3368] = {.lex_state = 117, .external_lex_state = 3}, - [3369] = {.lex_state = 117, .external_lex_state = 3}, - [3370] = {.lex_state = 34, .external_lex_state = 2}, - [3371] = {.lex_state = 34, .external_lex_state = 2}, - [3372] = {.lex_state = 34, .external_lex_state = 2}, - [3373] = {.lex_state = 34, .external_lex_state = 2}, - [3374] = {.lex_state = 34, .external_lex_state = 2}, - [3375] = {.lex_state = 34, .external_lex_state = 2}, - [3376] = {.lex_state = 30, .external_lex_state = 3}, - [3377] = {.lex_state = 34, .external_lex_state = 2}, - [3378] = {.lex_state = 117, .external_lex_state = 3}, - [3379] = {.lex_state = 34, .external_lex_state = 2}, - [3380] = {.lex_state = 117, .external_lex_state = 3}, - [3381] = {.lex_state = 34, .external_lex_state = 2}, - [3382] = {.lex_state = 118, .external_lex_state = 2}, - [3383] = {.lex_state = 34, .external_lex_state = 2}, - [3384] = {.lex_state = 34, .external_lex_state = 2}, - [3385] = {.lex_state = 117, .external_lex_state = 3}, - [3386] = {.lex_state = 117, .external_lex_state = 3}, - [3387] = {.lex_state = 117, .external_lex_state = 3}, - [3388] = {.lex_state = 34, .external_lex_state = 2}, - [3389] = {.lex_state = 117, .external_lex_state = 3}, - [3390] = {.lex_state = 34, .external_lex_state = 2}, - [3391] = {.lex_state = 34, .external_lex_state = 2}, - [3392] = {.lex_state = 34, .external_lex_state = 2}, - [3393] = {.lex_state = 34, .external_lex_state = 2}, - [3394] = {.lex_state = 34, .external_lex_state = 2}, - [3395] = {.lex_state = 117, .external_lex_state = 3}, - [3396] = {.lex_state = 117, .external_lex_state = 3}, - [3397] = {.lex_state = 117, .external_lex_state = 3}, - [3398] = {.lex_state = 34, .external_lex_state = 2}, - [3399] = {.lex_state = 32, .external_lex_state = 2}, - [3400] = {.lex_state = 34, .external_lex_state = 2}, - [3401] = {.lex_state = 34, .external_lex_state = 2}, - [3402] = {.lex_state = 34, .external_lex_state = 2}, - [3403] = {.lex_state = 117, .external_lex_state = 3}, - [3404] = {.lex_state = 34, .external_lex_state = 2}, - [3405] = {.lex_state = 34, .external_lex_state = 2}, - [3406] = {.lex_state = 34, .external_lex_state = 2}, - [3407] = {.lex_state = 117, .external_lex_state = 3}, - [3408] = {.lex_state = 34, .external_lex_state = 2}, - [3409] = {.lex_state = 34, .external_lex_state = 2}, - [3410] = {.lex_state = 34, .external_lex_state = 2}, - [3411] = {.lex_state = 34, .external_lex_state = 2}, - [3412] = {.lex_state = 34, .external_lex_state = 2}, - [3413] = {.lex_state = 117, .external_lex_state = 3}, - [3414] = {.lex_state = 117, .external_lex_state = 3}, - [3415] = {.lex_state = 34, .external_lex_state = 2}, - [3416] = {.lex_state = 117, .external_lex_state = 3}, - [3417] = {.lex_state = 34, .external_lex_state = 2}, - [3418] = {.lex_state = 34, .external_lex_state = 2}, - [3419] = {.lex_state = 117, .external_lex_state = 3}, - [3420] = {.lex_state = 117, .external_lex_state = 3}, - [3421] = {.lex_state = 117, .external_lex_state = 3}, - [3422] = {.lex_state = 117, .external_lex_state = 3}, - [3423] = {.lex_state = 117, .external_lex_state = 3}, - [3424] = {.lex_state = 116, .external_lex_state = 2}, - [3425] = {.lex_state = 117, .external_lex_state = 3}, - [3426] = {.lex_state = 117, .external_lex_state = 3}, - [3427] = {.lex_state = 117, .external_lex_state = 3}, - [3428] = {.lex_state = 117, .external_lex_state = 3}, - [3429] = {.lex_state = 117, .external_lex_state = 3}, - [3430] = {.lex_state = 117, .external_lex_state = 3}, - [3431] = {.lex_state = 117, .external_lex_state = 3}, - [3432] = {.lex_state = 117, .external_lex_state = 3}, - [3433] = {.lex_state = 118, .external_lex_state = 2}, - [3434] = {.lex_state = 117, .external_lex_state = 3}, - [3435] = {.lex_state = 32, .external_lex_state = 2}, - [3436] = {.lex_state = 117, .external_lex_state = 3}, - [3437] = {.lex_state = 118, .external_lex_state = 2}, - [3438] = {.lex_state = 117, .external_lex_state = 3}, - [3439] = {.lex_state = 4, .external_lex_state = 3}, - [3440] = {.lex_state = 30, .external_lex_state = 3}, - [3441] = {.lex_state = 117, .external_lex_state = 3}, - [3442] = {.lex_state = 30, .external_lex_state = 3}, - [3443] = {.lex_state = 30, .external_lex_state = 3}, - [3444] = {.lex_state = 30, .external_lex_state = 3}, - [3445] = {.lex_state = 30, .external_lex_state = 3}, - [3446] = {.lex_state = 30, .external_lex_state = 3}, - [3447] = {.lex_state = 116, .external_lex_state = 2}, - [3448] = {.lex_state = 117, .external_lex_state = 3}, - [3449] = {.lex_state = 117, .external_lex_state = 3}, - [3450] = {.lex_state = 117, .external_lex_state = 3}, - [3451] = {.lex_state = 117, .external_lex_state = 3}, - [3452] = {.lex_state = 117, .external_lex_state = 3}, - [3453] = {.lex_state = 117, .external_lex_state = 3}, - [3454] = {.lex_state = 117, .external_lex_state = 3}, - [3455] = {.lex_state = 122, .external_lex_state = 2}, - [3456] = {.lex_state = 34, .external_lex_state = 2}, - [3457] = {.lex_state = 118, .external_lex_state = 2}, - [3458] = {.lex_state = 32, .external_lex_state = 2}, - [3459] = {.lex_state = 117, .external_lex_state = 3}, - [3460] = {.lex_state = 117, .external_lex_state = 3}, - [3461] = {.lex_state = 118, .external_lex_state = 2}, - [3462] = {.lex_state = 117, .external_lex_state = 3}, - [3463] = {.lex_state = 34, .external_lex_state = 2}, - [3464] = {.lex_state = 117, .external_lex_state = 3}, - [3465] = {.lex_state = 117, .external_lex_state = 3}, - [3466] = {.lex_state = 122, .external_lex_state = 2}, - [3467] = {.lex_state = 117, .external_lex_state = 3}, - [3468] = {.lex_state = 33, .external_lex_state = 2}, - [3469] = {.lex_state = 122, .external_lex_state = 2}, - [3470] = {.lex_state = 33, .external_lex_state = 2}, - [3471] = {.lex_state = 33, .external_lex_state = 2}, - [3472] = {.lex_state = 33, .external_lex_state = 2}, - [3473] = {.lex_state = 116, .external_lex_state = 2}, - [3474] = {.lex_state = 117, .external_lex_state = 3}, - [3475] = {.lex_state = 38, .external_lex_state = 2}, - [3476] = {.lex_state = 33, .external_lex_state = 2}, - [3477] = {.lex_state = 38, .external_lex_state = 2}, - [3478] = {.lex_state = 38, .external_lex_state = 2}, - [3479] = {.lex_state = 116, .external_lex_state = 2}, - [3480] = {.lex_state = 122, .external_lex_state = 2}, - [3481] = {.lex_state = 33, .external_lex_state = 2}, - [3482] = {.lex_state = 33, .external_lex_state = 2}, - [3483] = {.lex_state = 38, .external_lex_state = 2}, - [3484] = {.lex_state = 33, .external_lex_state = 2}, - [3485] = {.lex_state = 38, .external_lex_state = 2}, - [3486] = {.lex_state = 38, .external_lex_state = 2}, - [3487] = {.lex_state = 38, .external_lex_state = 2}, - [3488] = {.lex_state = 38, .external_lex_state = 2}, - [3489] = {.lex_state = 33, .external_lex_state = 2}, - [3490] = {.lex_state = 38, .external_lex_state = 2}, - [3491] = {.lex_state = 115, .external_lex_state = 2}, - [3492] = {.lex_state = 38, .external_lex_state = 2}, - [3493] = {.lex_state = 38, .external_lex_state = 2}, - [3494] = {.lex_state = 13, .external_lex_state = 2}, - [3495] = {.lex_state = 33, .external_lex_state = 2}, - [3496] = {.lex_state = 33, .external_lex_state = 2}, - [3497] = {.lex_state = 33, .external_lex_state = 2}, - [3498] = {.lex_state = 116, .external_lex_state = 2}, - [3499] = {.lex_state = 38, .external_lex_state = 2}, - [3500] = {.lex_state = 38, .external_lex_state = 2}, - [3501] = {.lex_state = 117, .external_lex_state = 3}, - [3502] = {.lex_state = 116, .external_lex_state = 2}, - [3503] = {.lex_state = 33, .external_lex_state = 2}, - [3504] = {.lex_state = 33, .external_lex_state = 2}, - [3505] = {.lex_state = 33, .external_lex_state = 2}, - [3506] = {.lex_state = 33, .external_lex_state = 2}, - [3507] = {.lex_state = 38, .external_lex_state = 2}, - [3508] = {.lex_state = 38, .external_lex_state = 2}, - [3509] = {.lex_state = 38, .external_lex_state = 2}, - [3510] = {.lex_state = 117, .external_lex_state = 3}, - [3511] = {.lex_state = 117, .external_lex_state = 3}, - [3512] = {.lex_state = 46, .external_lex_state = 3}, - [3513] = {.lex_state = 117, .external_lex_state = 3}, - [3514] = {.lex_state = 122, .external_lex_state = 2}, - [3515] = {.lex_state = 23, .external_lex_state = 3}, - [3516] = {.lex_state = 4, .external_lex_state = 3}, - [3517] = {.lex_state = 4, .external_lex_state = 3}, - [3518] = {.lex_state = 4, .external_lex_state = 3}, - [3519] = {.lex_state = 4, .external_lex_state = 3}, - [3520] = {.lex_state = 4, .external_lex_state = 3}, - [3521] = {.lex_state = 4, .external_lex_state = 3}, - [3522] = {.lex_state = 4, .external_lex_state = 3}, - [3523] = {.lex_state = 4, .external_lex_state = 3}, - [3524] = {.lex_state = 4, .external_lex_state = 3}, - [3525] = {.lex_state = 4, .external_lex_state = 3}, - [3526] = {.lex_state = 4, .external_lex_state = 3}, - [3527] = {.lex_state = 4, .external_lex_state = 3}, - [3528] = {.lex_state = 4, .external_lex_state = 3}, - [3529] = {.lex_state = 4, .external_lex_state = 3}, - [3530] = {.lex_state = 4, .external_lex_state = 3}, - [3531] = {.lex_state = 116, .external_lex_state = 2}, - [3532] = {.lex_state = 4, .external_lex_state = 3}, - [3533] = {.lex_state = 4, .external_lex_state = 3}, - [3534] = {.lex_state = 4, .external_lex_state = 3}, - [3535] = {.lex_state = 13, .external_lex_state = 2}, - [3536] = {.lex_state = 116, .external_lex_state = 2}, - [3537] = {.lex_state = 4, .external_lex_state = 3}, - [3538] = {.lex_state = 23, .external_lex_state = 3}, - [3539] = {.lex_state = 4, .external_lex_state = 3}, - [3540] = {.lex_state = 4, .external_lex_state = 3}, - [3541] = {.lex_state = 38, .external_lex_state = 2}, - [3542] = {.lex_state = 116, .external_lex_state = 2}, - [3543] = {.lex_state = 4, .external_lex_state = 3}, - [3544] = {.lex_state = 13, .external_lex_state = 2}, - [3545] = {.lex_state = 4, .external_lex_state = 3}, - [3546] = {.lex_state = 4, .external_lex_state = 3}, - [3547] = {.lex_state = 116, .external_lex_state = 2}, - [3548] = {.lex_state = 4, .external_lex_state = 3}, - [3549] = {.lex_state = 4, .external_lex_state = 3}, - [3550] = {.lex_state = 116, .external_lex_state = 2}, - [3551] = {.lex_state = 4, .external_lex_state = 3}, - [3552] = {.lex_state = 4, .external_lex_state = 3}, - [3553] = {.lex_state = 116, .external_lex_state = 2}, - [3554] = {.lex_state = 4, .external_lex_state = 3}, - [3555] = {.lex_state = 4, .external_lex_state = 3}, - [3556] = {.lex_state = 4, .external_lex_state = 3}, - [3557] = {.lex_state = 13, .external_lex_state = 2}, - [3558] = {.lex_state = 4, .external_lex_state = 3}, - [3559] = {.lex_state = 4, .external_lex_state = 3}, - [3560] = {.lex_state = 116, .external_lex_state = 2}, - [3561] = {.lex_state = 116, .external_lex_state = 2}, - [3562] = {.lex_state = 4, .external_lex_state = 3}, - [3563] = {.lex_state = 4, .external_lex_state = 3}, - [3564] = {.lex_state = 4, .external_lex_state = 3}, - [3565] = {.lex_state = 4, .external_lex_state = 3}, - [3566] = {.lex_state = 4, .external_lex_state = 3}, - [3567] = {.lex_state = 13, .external_lex_state = 2}, - [3568] = {.lex_state = 4, .external_lex_state = 3}, - [3569] = {.lex_state = 4, .external_lex_state = 3}, - [3570] = {.lex_state = 116, .external_lex_state = 2}, - [3571] = {.lex_state = 4, .external_lex_state = 3}, - [3572] = {.lex_state = 4, .external_lex_state = 3}, - [3573] = {.lex_state = 4, .external_lex_state = 3}, - [3574] = {.lex_state = 4, .external_lex_state = 3}, - [3575] = {.lex_state = 4, .external_lex_state = 3}, - [3576] = {.lex_state = 4, .external_lex_state = 3}, - [3577] = {.lex_state = 4, .external_lex_state = 3}, - [3578] = {.lex_state = 4, .external_lex_state = 3}, - [3579] = {.lex_state = 116, .external_lex_state = 2}, - [3580] = {.lex_state = 4, .external_lex_state = 3}, - [3581] = {.lex_state = 4, .external_lex_state = 3}, - [3582] = {.lex_state = 13, .external_lex_state = 2}, - [3583] = {.lex_state = 4, .external_lex_state = 3}, - [3584] = {.lex_state = 4, .external_lex_state = 3}, - [3585] = {.lex_state = 4, .external_lex_state = 3}, - [3586] = {.lex_state = 4, .external_lex_state = 3}, - [3587] = {.lex_state = 4, .external_lex_state = 3}, - [3588] = {.lex_state = 4, .external_lex_state = 3}, - [3589] = {.lex_state = 4, .external_lex_state = 3}, - [3590] = {.lex_state = 4, .external_lex_state = 3}, - [3591] = {.lex_state = 4, .external_lex_state = 3}, - [3592] = {.lex_state = 4, .external_lex_state = 3}, - [3593] = {.lex_state = 116, .external_lex_state = 2}, - [3594] = {.lex_state = 4, .external_lex_state = 3}, - [3595] = {.lex_state = 116, .external_lex_state = 2}, - [3596] = {.lex_state = 32, .external_lex_state = 2}, - [3597] = {.lex_state = 116, .external_lex_state = 2}, - [3598] = {.lex_state = 116, .external_lex_state = 2}, - [3599] = {.lex_state = 116, .external_lex_state = 2}, - [3600] = {.lex_state = 116, .external_lex_state = 2}, - [3601] = {.lex_state = 116, .external_lex_state = 2}, - [3602] = {.lex_state = 34, .external_lex_state = 2}, - [3603] = {.lex_state = 116, .external_lex_state = 2}, - [3604] = {.lex_state = 116, .external_lex_state = 2}, - [3605] = {.lex_state = 116, .external_lex_state = 2}, - [3606] = {.lex_state = 34, .external_lex_state = 2}, - [3607] = {.lex_state = 33, .external_lex_state = 2}, - [3608] = {.lex_state = 34, .external_lex_state = 2}, - [3609] = {.lex_state = 34, .external_lex_state = 2}, - [3610] = {.lex_state = 34, .external_lex_state = 2}, - [3611] = {.lex_state = 116, .external_lex_state = 2}, - [3612] = {.lex_state = 116, .external_lex_state = 2}, - [3613] = {.lex_state = 117, .external_lex_state = 3}, - [3614] = {.lex_state = 34, .external_lex_state = 2}, - [3615] = {.lex_state = 116, .external_lex_state = 2}, - [3616] = {.lex_state = 116, .external_lex_state = 2}, - [3617] = {.lex_state = 116, .external_lex_state = 2}, - [3618] = {.lex_state = 116, .external_lex_state = 2}, - [3619] = {.lex_state = 116, .external_lex_state = 2}, - [3620] = {.lex_state = 116, .external_lex_state = 2}, - [3621] = {.lex_state = 116, .external_lex_state = 2}, - [3622] = {.lex_state = 116, .external_lex_state = 2}, - [3623] = {.lex_state = 116, .external_lex_state = 2}, - [3624] = {.lex_state = 116, .external_lex_state = 2}, - [3625] = {.lex_state = 116, .external_lex_state = 2}, - [3626] = {.lex_state = 116, .external_lex_state = 2}, - [3627] = {.lex_state = 116, .external_lex_state = 2}, - [3628] = {.lex_state = 116, .external_lex_state = 2}, - [3629] = {.lex_state = 116, .external_lex_state = 2}, - [3630] = {.lex_state = 116, .external_lex_state = 2}, - [3631] = {.lex_state = 34, .external_lex_state = 2}, - [3632] = {.lex_state = 117, .external_lex_state = 3}, - [3633] = {.lex_state = 116, .external_lex_state = 2}, - [3634] = {.lex_state = 32, .external_lex_state = 2}, - [3635] = {.lex_state = 116, .external_lex_state = 2}, - [3636] = {.lex_state = 116, .external_lex_state = 2}, - [3637] = {.lex_state = 34, .external_lex_state = 2}, - [3638] = {.lex_state = 116, .external_lex_state = 2}, - [3639] = {.lex_state = 116, .external_lex_state = 2}, - [3640] = {.lex_state = 32, .external_lex_state = 2}, - [3641] = {.lex_state = 116, .external_lex_state = 2}, - [3642] = {.lex_state = 116, .external_lex_state = 2}, - [3643] = {.lex_state = 33, .external_lex_state = 2}, - [3644] = {.lex_state = 116, .external_lex_state = 2}, - [3645] = {.lex_state = 33, .external_lex_state = 2}, - [3646] = {.lex_state = 116, .external_lex_state = 2}, - [3647] = {.lex_state = 116, .external_lex_state = 2}, - [3648] = {.lex_state = 116, .external_lex_state = 2}, - [3649] = {.lex_state = 34, .external_lex_state = 2}, - [3650] = {.lex_state = 116, .external_lex_state = 2}, - [3651] = {.lex_state = 34, .external_lex_state = 2}, - [3652] = {.lex_state = 116, .external_lex_state = 2}, - [3653] = {.lex_state = 116, .external_lex_state = 2}, - [3654] = {.lex_state = 116, .external_lex_state = 2}, - [3655] = {.lex_state = 116, .external_lex_state = 2}, - [3656] = {.lex_state = 33, .external_lex_state = 2}, - [3657] = {.lex_state = 116, .external_lex_state = 2}, - [3658] = {.lex_state = 116, .external_lex_state = 2}, - [3659] = {.lex_state = 116, .external_lex_state = 2}, - [3660] = {.lex_state = 116, .external_lex_state = 2}, - [3661] = {.lex_state = 116, .external_lex_state = 2}, - [3662] = {.lex_state = 34, .external_lex_state = 2}, - [3663] = {.lex_state = 116, .external_lex_state = 2}, - [3664] = {.lex_state = 34, .external_lex_state = 2}, - [3665] = {.lex_state = 116, .external_lex_state = 2}, - [3666] = {.lex_state = 34, .external_lex_state = 2}, - [3667] = {.lex_state = 116, .external_lex_state = 2}, - [3668] = {.lex_state = 116, .external_lex_state = 2}, - [3669] = {.lex_state = 116, .external_lex_state = 2}, - [3670] = {.lex_state = 116, .external_lex_state = 2}, - [3671] = {.lex_state = 41, .external_lex_state = 3}, - [3672] = {.lex_state = 34, .external_lex_state = 2}, - [3673] = {.lex_state = 116, .external_lex_state = 2}, - [3674] = {.lex_state = 33, .external_lex_state = 2}, - [3675] = {.lex_state = 32, .external_lex_state = 2}, - [3676] = {.lex_state = 33, .external_lex_state = 2}, - [3677] = {.lex_state = 116, .external_lex_state = 2}, - [3678] = {.lex_state = 116, .external_lex_state = 2}, - [3679] = {.lex_state = 33, .external_lex_state = 2}, - [3680] = {.lex_state = 34, .external_lex_state = 2}, - [3681] = {.lex_state = 116, .external_lex_state = 2}, - [3682] = {.lex_state = 116, .external_lex_state = 2}, - [3683] = {.lex_state = 34, .external_lex_state = 2}, - [3684] = {.lex_state = 116, .external_lex_state = 2}, - [3685] = {.lex_state = 34, .external_lex_state = 2}, - [3686] = {.lex_state = 34, .external_lex_state = 2}, - [3687] = {.lex_state = 116, .external_lex_state = 2}, - [3688] = {.lex_state = 116, .external_lex_state = 2}, - [3689] = {.lex_state = 116, .external_lex_state = 2}, - [3690] = {.lex_state = 116, .external_lex_state = 2}, - [3691] = {.lex_state = 32, .external_lex_state = 2}, - [3692] = {.lex_state = 116, .external_lex_state = 2}, - [3693] = {.lex_state = 41, .external_lex_state = 3}, - [3694] = {.lex_state = 116, .external_lex_state = 2}, - [3695] = {.lex_state = 34, .external_lex_state = 2}, - [3696] = {.lex_state = 116, .external_lex_state = 2}, - [3697] = {.lex_state = 33, .external_lex_state = 2}, - [3698] = {.lex_state = 116, .external_lex_state = 2}, - [3699] = {.lex_state = 116, .external_lex_state = 2}, - [3700] = {.lex_state = 34, .external_lex_state = 2}, - [3701] = {.lex_state = 33, .external_lex_state = 2}, - [3702] = {.lex_state = 122, .external_lex_state = 2}, - [3703] = {.lex_state = 116, .external_lex_state = 2}, - [3704] = {.lex_state = 33, .external_lex_state = 2}, - [3705] = {.lex_state = 116, .external_lex_state = 2}, - [3706] = {.lex_state = 33, .external_lex_state = 2}, - [3707] = {.lex_state = 116, .external_lex_state = 2}, - [3708] = {.lex_state = 116, .external_lex_state = 2}, - [3709] = {.lex_state = 34, .external_lex_state = 2}, - [3710] = {.lex_state = 116, .external_lex_state = 2}, - [3711] = {.lex_state = 122, .external_lex_state = 2}, - [3712] = {.lex_state = 116, .external_lex_state = 2}, - [3713] = {.lex_state = 116, .external_lex_state = 2}, - [3714] = {.lex_state = 116, .external_lex_state = 2}, - [3715] = {.lex_state = 34, .external_lex_state = 2}, - [3716] = {.lex_state = 116, .external_lex_state = 2}, - [3717] = {.lex_state = 116, .external_lex_state = 2}, - [3718] = {.lex_state = 34, .external_lex_state = 2}, - [3719] = {.lex_state = 32, .external_lex_state = 2}, - [3720] = {.lex_state = 122, .external_lex_state = 2}, - [3721] = {.lex_state = 34, .external_lex_state = 2}, - [3722] = {.lex_state = 32, .external_lex_state = 2}, - [3723] = {.lex_state = 116, .external_lex_state = 2}, - [3724] = {.lex_state = 34, .external_lex_state = 2}, - [3725] = {.lex_state = 117, .external_lex_state = 3}, - [3726] = {.lex_state = 34, .external_lex_state = 2}, - [3727] = {.lex_state = 32, .external_lex_state = 2}, - [3728] = {.lex_state = 33, .external_lex_state = 2}, - [3729] = {.lex_state = 116, .external_lex_state = 2}, - [3730] = {.lex_state = 116, .external_lex_state = 2}, - [3731] = {.lex_state = 34, .external_lex_state = 2}, - [3732] = {.lex_state = 33, .external_lex_state = 2}, - [3733] = {.lex_state = 116, .external_lex_state = 2}, - [3734] = {.lex_state = 116, .external_lex_state = 2}, - [3735] = {.lex_state = 116, .external_lex_state = 2}, - [3736] = {.lex_state = 32, .external_lex_state = 2}, - [3737] = {.lex_state = 33, .external_lex_state = 2}, - [3738] = {.lex_state = 32, .external_lex_state = 2}, - [3739] = {.lex_state = 116, .external_lex_state = 2}, - [3740] = {.lex_state = 116, .external_lex_state = 2}, - [3741] = {.lex_state = 116, .external_lex_state = 2}, - [3742] = {.lex_state = 116, .external_lex_state = 2}, - [3743] = {.lex_state = 116, .external_lex_state = 2}, - [3744] = {.lex_state = 32, .external_lex_state = 2}, - [3745] = {.lex_state = 32, .external_lex_state = 2}, - [3746] = {.lex_state = 34, .external_lex_state = 2}, - [3747] = {.lex_state = 116, .external_lex_state = 2}, - [3748] = {.lex_state = 32, .external_lex_state = 2}, - [3749] = {.lex_state = 116, .external_lex_state = 2}, - [3750] = {.lex_state = 34, .external_lex_state = 2}, - [3751] = {.lex_state = 32, .external_lex_state = 2}, - [3752] = {.lex_state = 116, .external_lex_state = 2}, - [3753] = {.lex_state = 116, .external_lex_state = 2}, - [3754] = {.lex_state = 116, .external_lex_state = 2}, - [3755] = {.lex_state = 116, .external_lex_state = 2}, - [3756] = {.lex_state = 32, .external_lex_state = 2}, - [3757] = {.lex_state = 32, .external_lex_state = 2}, - [3758] = {.lex_state = 33, .external_lex_state = 2}, - [3759] = {.lex_state = 32, .external_lex_state = 2}, - [3760] = {.lex_state = 34, .external_lex_state = 2}, - [3761] = {.lex_state = 32, .external_lex_state = 2}, - [3762] = {.lex_state = 32, .external_lex_state = 2}, - [3763] = {.lex_state = 116, .external_lex_state = 2}, - [3764] = {.lex_state = 116, .external_lex_state = 2}, - [3765] = {.lex_state = 33, .external_lex_state = 2}, - [3766] = {.lex_state = 116, .external_lex_state = 2}, - [3767] = {.lex_state = 116, .external_lex_state = 2}, - [3768] = {.lex_state = 32, .external_lex_state = 2}, - [3769] = {.lex_state = 32, .external_lex_state = 2}, - [3770] = {.lex_state = 41, .external_lex_state = 3}, - [3771] = {.lex_state = 32, .external_lex_state = 2}, - [3772] = {.lex_state = 32, .external_lex_state = 2}, - [3773] = {.lex_state = 32, .external_lex_state = 2}, - [3774] = {.lex_state = 32, .external_lex_state = 2}, - [3775] = {.lex_state = 32, .external_lex_state = 2}, - [3776] = {.lex_state = 41, .external_lex_state = 3}, - [3777] = {.lex_state = 43, .external_lex_state = 3}, - [3778] = {.lex_state = 41, .external_lex_state = 3}, - [3779] = {.lex_state = 32, .external_lex_state = 2}, - [3780] = {.lex_state = 43, .external_lex_state = 3}, - [3781] = {.lex_state = 120, .external_lex_state = 2}, - [3782] = {.lex_state = 43, .external_lex_state = 3}, - [3783] = {.lex_state = 32, .external_lex_state = 2}, - [3784] = {.lex_state = 32, .external_lex_state = 2}, - [3785] = {.lex_state = 32, .external_lex_state = 2}, - [3786] = {.lex_state = 32, .external_lex_state = 2}, - [3787] = {.lex_state = 32, .external_lex_state = 2}, - [3788] = {.lex_state = 32, .external_lex_state = 2}, - [3789] = {.lex_state = 32, .external_lex_state = 2}, - [3790] = {.lex_state = 43, .external_lex_state = 3}, - [3791] = {.lex_state = 32, .external_lex_state = 2}, - [3792] = {.lex_state = 32, .external_lex_state = 2}, - [3793] = {.lex_state = 32, .external_lex_state = 2}, - [3794] = {.lex_state = 32, .external_lex_state = 2}, - [3795] = {.lex_state = 32, .external_lex_state = 2}, - [3796] = {.lex_state = 32, .external_lex_state = 2}, - [3797] = {.lex_state = 32, .external_lex_state = 2}, - [3798] = {.lex_state = 32, .external_lex_state = 2}, - [3799] = {.lex_state = 32, .external_lex_state = 2}, - [3800] = {.lex_state = 32, .external_lex_state = 2}, - [3801] = {.lex_state = 117, .external_lex_state = 2}, - [3802] = {.lex_state = 32, .external_lex_state = 2}, - [3803] = {.lex_state = 32, .external_lex_state = 2}, - [3804] = {.lex_state = 32, .external_lex_state = 2}, - [3805] = {.lex_state = 116, .external_lex_state = 2}, - [3806] = {.lex_state = 32, .external_lex_state = 2}, - [3807] = {.lex_state = 43, .external_lex_state = 3}, - [3808] = {.lex_state = 32, .external_lex_state = 2}, - [3809] = {.lex_state = 117, .external_lex_state = 2}, - [3810] = {.lex_state = 32, .external_lex_state = 2}, - [3811] = {.lex_state = 32, .external_lex_state = 2}, - [3812] = {.lex_state = 43, .external_lex_state = 3}, - [3813] = {.lex_state = 32, .external_lex_state = 2}, - [3814] = {.lex_state = 32, .external_lex_state = 2}, - [3815] = {.lex_state = 32, .external_lex_state = 2}, - [3816] = {.lex_state = 32, .external_lex_state = 2}, - [3817] = {.lex_state = 32, .external_lex_state = 2}, - [3818] = {.lex_state = 32, .external_lex_state = 2}, - [3819] = {.lex_state = 32, .external_lex_state = 2}, - [3820] = {.lex_state = 43, .external_lex_state = 3}, - [3821] = {.lex_state = 32, .external_lex_state = 2}, - [3822] = {.lex_state = 128, .external_lex_state = 2}, - [3823] = {.lex_state = 32, .external_lex_state = 2}, - [3824] = {.lex_state = 32, .external_lex_state = 2}, - [3825] = {.lex_state = 32, .external_lex_state = 2}, - [3826] = {.lex_state = 43, .external_lex_state = 3}, - [3827] = {.lex_state = 43, .external_lex_state = 3}, - [3828] = {.lex_state = 32, .external_lex_state = 2}, - [3829] = {.lex_state = 117, .external_lex_state = 2}, - [3830] = {.lex_state = 43, .external_lex_state = 3}, - [3831] = {.lex_state = 117, .external_lex_state = 2}, - [3832] = {.lex_state = 43, .external_lex_state = 3}, - [3833] = {.lex_state = 43, .external_lex_state = 3}, - [3834] = {.lex_state = 32, .external_lex_state = 2}, - [3835] = {.lex_state = 6, .external_lex_state = 2}, - [3836] = {.lex_state = 41, .external_lex_state = 3}, - [3837] = {.lex_state = 39, .external_lex_state = 2}, - [3838] = {.lex_state = 127, .external_lex_state = 2}, - [3839] = {.lex_state = 117, .external_lex_state = 2}, - [3840] = {.lex_state = 41, .external_lex_state = 3}, - [3841] = {.lex_state = 41, .external_lex_state = 3}, - [3842] = {.lex_state = 41, .external_lex_state = 3}, - [3843] = {.lex_state = 117, .external_lex_state = 2}, - [3844] = {.lex_state = 127, .external_lex_state = 2}, - [3845] = {.lex_state = 41, .external_lex_state = 3}, - [3846] = {.lex_state = 41, .external_lex_state = 3}, - [3847] = {.lex_state = 117, .external_lex_state = 2}, - [3848] = {.lex_state = 41, .external_lex_state = 3}, - [3849] = {.lex_state = 6, .external_lex_state = 2}, - [3850] = {.lex_state = 41, .external_lex_state = 3}, - [3851] = {.lex_state = 41, .external_lex_state = 3}, - [3852] = {.lex_state = 41, .external_lex_state = 3}, - [3853] = {.lex_state = 41, .external_lex_state = 3}, - [3854] = {.lex_state = 41, .external_lex_state = 3}, - [3855] = {.lex_state = 32, .external_lex_state = 2}, - [3856] = {.lex_state = 41, .external_lex_state = 3}, - [3857] = {.lex_state = 41, .external_lex_state = 3}, - [3858] = {.lex_state = 51, .external_lex_state = 2}, - [3859] = {.lex_state = 41, .external_lex_state = 3}, - [3860] = {.lex_state = 41, .external_lex_state = 3}, - [3861] = {.lex_state = 41, .external_lex_state = 3}, - [3862] = {.lex_state = 41, .external_lex_state = 3}, - [3863] = {.lex_state = 41, .external_lex_state = 3}, - [3864] = {.lex_state = 41, .external_lex_state = 3}, - [3865] = {.lex_state = 32, .external_lex_state = 2}, - [3866] = {.lex_state = 41, .external_lex_state = 3}, - [3867] = {.lex_state = 41, .external_lex_state = 3}, - [3868] = {.lex_state = 41, .external_lex_state = 3}, - [3869] = {.lex_state = 34, .external_lex_state = 2}, - [3870] = {.lex_state = 32, .external_lex_state = 2}, - [3871] = {.lex_state = 116, .external_lex_state = 2}, - [3872] = {.lex_state = 41, .external_lex_state = 3}, - [3873] = {.lex_state = 32, .external_lex_state = 2}, - [3874] = {.lex_state = 41, .external_lex_state = 3}, - [3875] = {.lex_state = 41, .external_lex_state = 3}, - [3876] = {.lex_state = 41, .external_lex_state = 3}, - [3877] = {.lex_state = 41, .external_lex_state = 3}, - [3878] = {.lex_state = 41, .external_lex_state = 3}, - [3879] = {.lex_state = 41, .external_lex_state = 3}, - [3880] = {.lex_state = 41, .external_lex_state = 3}, - [3881] = {.lex_state = 34, .external_lex_state = 2}, - [3882] = {.lex_state = 41, .external_lex_state = 3}, - [3883] = {.lex_state = 120, .external_lex_state = 2}, - [3884] = {.lex_state = 34, .external_lex_state = 2}, - [3885] = {.lex_state = 41, .external_lex_state = 3}, - [3886] = {.lex_state = 41, .external_lex_state = 3}, - [3887] = {.lex_state = 120, .external_lex_state = 2}, - [3888] = {.lex_state = 41, .external_lex_state = 3}, - [3889] = {.lex_state = 41, .external_lex_state = 3}, - [3890] = {.lex_state = 41, .external_lex_state = 3}, - [3891] = {.lex_state = 34, .external_lex_state = 2}, - [3892] = {.lex_state = 41, .external_lex_state = 3}, - [3893] = {.lex_state = 34, .external_lex_state = 2}, - [3894] = {.lex_state = 6, .external_lex_state = 2}, - [3895] = {.lex_state = 41, .external_lex_state = 3}, - [3896] = {.lex_state = 41, .external_lex_state = 3}, - [3897] = {.lex_state = 41, .external_lex_state = 3}, - [3898] = {.lex_state = 34, .external_lex_state = 2}, - [3899] = {.lex_state = 34, .external_lex_state = 2}, - [3900] = {.lex_state = 41, .external_lex_state = 3}, - [3901] = {.lex_state = 41, .external_lex_state = 3}, - [3902] = {.lex_state = 41, .external_lex_state = 3}, - [3903] = {.lex_state = 41, .external_lex_state = 3}, - [3904] = {.lex_state = 120, .external_lex_state = 2}, - [3905] = {.lex_state = 41, .external_lex_state = 3}, - [3906] = {.lex_state = 32, .external_lex_state = 2}, - [3907] = {.lex_state = 41, .external_lex_state = 3}, - [3908] = {.lex_state = 32, .external_lex_state = 2}, - [3909] = {.lex_state = 41, .external_lex_state = 3}, - [3910] = {.lex_state = 41, .external_lex_state = 3}, - [3911] = {.lex_state = 41, .external_lex_state = 3}, - [3912] = {.lex_state = 41, .external_lex_state = 3}, - [3913] = {.lex_state = 41, .external_lex_state = 3}, - [3914] = {.lex_state = 117, .external_lex_state = 2}, - [3915] = {.lex_state = 127, .external_lex_state = 2}, - [3916] = {.lex_state = 127, .external_lex_state = 2}, - [3917] = {.lex_state = 120, .external_lex_state = 2}, - [3918] = {.lex_state = 120, .external_lex_state = 2}, - [3919] = {.lex_state = 120, .external_lex_state = 2}, - [3920] = {.lex_state = 120, .external_lex_state = 2}, - [3921] = {.lex_state = 117, .external_lex_state = 2}, - [3922] = {.lex_state = 127, .external_lex_state = 2}, - [3923] = {.lex_state = 33, .external_lex_state = 2}, - [3924] = {.lex_state = 118, .external_lex_state = 2}, - [3925] = {.lex_state = 120, .external_lex_state = 2}, - [3926] = {.lex_state = 120, .external_lex_state = 2}, - [3927] = {.lex_state = 38, .external_lex_state = 2}, - [3928] = {.lex_state = 33, .external_lex_state = 2}, - [3929] = {.lex_state = 33, .external_lex_state = 2}, - [3930] = {.lex_state = 120, .external_lex_state = 2}, - [3931] = {.lex_state = 118, .external_lex_state = 2}, - [3932] = {.lex_state = 120, .external_lex_state = 2}, - [3933] = {.lex_state = 33, .external_lex_state = 2}, - [3934] = {.lex_state = 120, .external_lex_state = 2}, - [3935] = {.lex_state = 127, .external_lex_state = 2}, - [3936] = {.lex_state = 33, .external_lex_state = 2}, - [3937] = {.lex_state = 118, .external_lex_state = 2}, - [3938] = {.lex_state = 39, .external_lex_state = 2}, - [3939] = {.lex_state = 120, .external_lex_state = 2}, - [3940] = {.lex_state = 33, .external_lex_state = 2}, - [3941] = {.lex_state = 120, .external_lex_state = 2}, - [3942] = {.lex_state = 120, .external_lex_state = 2}, - [3943] = {.lex_state = 120, .external_lex_state = 2}, - [3944] = {.lex_state = 127, .external_lex_state = 2}, - [3945] = {.lex_state = 120, .external_lex_state = 2}, - [3946] = {.lex_state = 120, .external_lex_state = 2}, - [3947] = {.lex_state = 120, .external_lex_state = 2}, - [3948] = {.lex_state = 124, .external_lex_state = 2}, - [3949] = {.lex_state = 127, .external_lex_state = 2}, - [3950] = {.lex_state = 115, .external_lex_state = 2}, - [3951] = {.lex_state = 120, .external_lex_state = 2}, - [3952] = {.lex_state = 117, .external_lex_state = 2}, - [3953] = {.lex_state = 120, .external_lex_state = 2}, - [3954] = {.lex_state = 120, .external_lex_state = 2}, - [3955] = {.lex_state = 120, .external_lex_state = 2}, - [3956] = {.lex_state = 33, .external_lex_state = 2}, - [3957] = {.lex_state = 39, .external_lex_state = 2}, - [3958] = {.lex_state = 120, .external_lex_state = 2}, - [3959] = {.lex_state = 127, .external_lex_state = 2}, - [3960] = {.lex_state = 120, .external_lex_state = 2}, - [3961] = {.lex_state = 120, .external_lex_state = 2}, - [3962] = {.lex_state = 127, .external_lex_state = 2}, - [3963] = {.lex_state = 120, .external_lex_state = 2}, - [3964] = {.lex_state = 120, .external_lex_state = 2}, - [3965] = {.lex_state = 127, .external_lex_state = 2}, - [3966] = {.lex_state = 39, .external_lex_state = 2}, - [3967] = {.lex_state = 6, .external_lex_state = 2}, - [3968] = {.lex_state = 118, .external_lex_state = 2}, - [3969] = {.lex_state = 120, .external_lex_state = 2}, - [3970] = {.lex_state = 38, .external_lex_state = 2}, - [3971] = {.lex_state = 120, .external_lex_state = 2}, - [3972] = {.lex_state = 120, .external_lex_state = 2}, - [3973] = {.lex_state = 127, .external_lex_state = 2}, - [3974] = {.lex_state = 120, .external_lex_state = 2}, - [3975] = {.lex_state = 127, .external_lex_state = 2}, - [3976] = {.lex_state = 118, .external_lex_state = 2}, - [3977] = {.lex_state = 127, .external_lex_state = 2}, - [3978] = {.lex_state = 127, .external_lex_state = 2}, - [3979] = {.lex_state = 127, .external_lex_state = 2}, - [3980] = {.lex_state = 120, .external_lex_state = 2}, - [3981] = {.lex_state = 120, .external_lex_state = 2}, - [3982] = {.lex_state = 39, .external_lex_state = 2}, - [3983] = {.lex_state = 39, .external_lex_state = 2}, - [3984] = {.lex_state = 39, .external_lex_state = 2}, - [3985] = {.lex_state = 39, .external_lex_state = 2}, - [3986] = {.lex_state = 39, .external_lex_state = 2}, - [3987] = {.lex_state = 39, .external_lex_state = 2}, - [3988] = {.lex_state = 39, .external_lex_state = 2}, - [3989] = {.lex_state = 122, .external_lex_state = 2}, - [3990] = {.lex_state = 122, .external_lex_state = 2}, - [3991] = {.lex_state = 115, .external_lex_state = 2}, - [3992] = {.lex_state = 122, .external_lex_state = 2}, - [3993] = {.lex_state = 39, .external_lex_state = 2}, - [3994] = {.lex_state = 117, .external_lex_state = 2}, - [3995] = {.lex_state = 39, .external_lex_state = 2}, - [3996] = {.lex_state = 39, .external_lex_state = 2}, - [3997] = {.lex_state = 117, .external_lex_state = 2}, - [3998] = {.lex_state = 39, .external_lex_state = 2}, - [3999] = {.lex_state = 39, .external_lex_state = 2}, - [4000] = {.lex_state = 122, .external_lex_state = 2}, - [4001] = {.lex_state = 39, .external_lex_state = 2}, - [4002] = {.lex_state = 39, .external_lex_state = 2}, - [4003] = {.lex_state = 39, .external_lex_state = 2}, - [4004] = {.lex_state = 116, .external_lex_state = 2}, - [4005] = {.lex_state = 117, .external_lex_state = 2}, - [4006] = {.lex_state = 39, .external_lex_state = 2}, - [4007] = {.lex_state = 39, .external_lex_state = 2}, - [4008] = {.lex_state = 39, .external_lex_state = 2}, - [4009] = {.lex_state = 39, .external_lex_state = 2}, - [4010] = {.lex_state = 117, .external_lex_state = 2}, - [4011] = {.lex_state = 122, .external_lex_state = 2}, - [4012] = {.lex_state = 39, .external_lex_state = 2}, - [4013] = {.lex_state = 39, .external_lex_state = 2}, - [4014] = {.lex_state = 39, .external_lex_state = 2}, - [4015] = {.lex_state = 122, .external_lex_state = 2}, - [4016] = {.lex_state = 39, .external_lex_state = 2}, - [4017] = {.lex_state = 39, .external_lex_state = 2}, - [4018] = {.lex_state = 39, .external_lex_state = 2}, - [4019] = {.lex_state = 39, .external_lex_state = 2}, - [4020] = {.lex_state = 39, .external_lex_state = 2}, - [4021] = {.lex_state = 39, .external_lex_state = 2}, - [4022] = {.lex_state = 39, .external_lex_state = 2}, - [4023] = {.lex_state = 39, .external_lex_state = 2}, - [4024] = {.lex_state = 39, .external_lex_state = 2}, - [4025] = {.lex_state = 39, .external_lex_state = 2}, - [4026] = {.lex_state = 117, .external_lex_state = 2}, - [4027] = {.lex_state = 116, .external_lex_state = 2}, - [4028] = {.lex_state = 116, .external_lex_state = 2}, - [4029] = {.lex_state = 32, .external_lex_state = 2}, - [4030] = {.lex_state = 122, .external_lex_state = 2}, - [4031] = {.lex_state = 39, .external_lex_state = 2}, - [4032] = {.lex_state = 116, .external_lex_state = 2}, - [4033] = {.lex_state = 116, .external_lex_state = 2}, - [4034] = {.lex_state = 122, .external_lex_state = 2}, - [4035] = {.lex_state = 122, .external_lex_state = 2}, - [4036] = {.lex_state = 116, .external_lex_state = 2}, - [4037] = {.lex_state = 39, .external_lex_state = 2}, - [4038] = {.lex_state = 33, .external_lex_state = 2}, - [4039] = {.lex_state = 116, .external_lex_state = 2}, - [4040] = {.lex_state = 39, .external_lex_state = 2}, - [4041] = {.lex_state = 33, .external_lex_state = 2}, - [4042] = {.lex_state = 116, .external_lex_state = 2}, - [4043] = {.lex_state = 33, .external_lex_state = 2}, - [4044] = {.lex_state = 116, .external_lex_state = 2}, - [4045] = {.lex_state = 32, .external_lex_state = 2}, - [4046] = {.lex_state = 116, .external_lex_state = 2}, - [4047] = {.lex_state = 122, .external_lex_state = 2}, - [4048] = {.lex_state = 33, .external_lex_state = 2}, - [4049] = {.lex_state = 116, .external_lex_state = 2}, - [4050] = {.lex_state = 32, .external_lex_state = 2}, - [4051] = {.lex_state = 116, .external_lex_state = 2}, - [4052] = {.lex_state = 116, .external_lex_state = 2}, - [4053] = {.lex_state = 33, .external_lex_state = 2}, - [4054] = {.lex_state = 122, .external_lex_state = 2}, - [4055] = {.lex_state = 39, .external_lex_state = 2}, - [4056] = {.lex_state = 116, .external_lex_state = 2}, - [4057] = {.lex_state = 33, .external_lex_state = 2}, - [4058] = {.lex_state = 116, .external_lex_state = 2}, - [4059] = {.lex_state = 5, .external_lex_state = 2}, - [4060] = {.lex_state = 32, .external_lex_state = 2}, - [4061] = {.lex_state = 122, .external_lex_state = 2}, - [4062] = {.lex_state = 39, .external_lex_state = 2}, - [4063] = {.lex_state = 116, .external_lex_state = 2}, - [4064] = {.lex_state = 122, .external_lex_state = 2}, - [4065] = {.lex_state = 32, .external_lex_state = 2}, - [4066] = {.lex_state = 39, .external_lex_state = 2}, - [4067] = {.lex_state = 32, .external_lex_state = 2}, - [4068] = {.lex_state = 32, .external_lex_state = 2}, - [4069] = {.lex_state = 33, .external_lex_state = 2}, - [4070] = {.lex_state = 37, .external_lex_state = 2}, - [4071] = {.lex_state = 37, .external_lex_state = 2}, - [4072] = {.lex_state = 37, .external_lex_state = 2}, - [4073] = {.lex_state = 37, .external_lex_state = 2}, - [4074] = {.lex_state = 37, .external_lex_state = 2}, - [4075] = {.lex_state = 37, .external_lex_state = 2}, - [4076] = {.lex_state = 37, .external_lex_state = 2}, - [4077] = {.lex_state = 37, .external_lex_state = 2}, - [4078] = {.lex_state = 116, .external_lex_state = 2}, - [4079] = {.lex_state = 120, .external_lex_state = 2}, - [4080] = {.lex_state = 116, .external_lex_state = 2}, - [4081] = {.lex_state = 116, .external_lex_state = 2}, - [4082] = {.lex_state = 116, .external_lex_state = 2}, - [4083] = {.lex_state = 37, .external_lex_state = 2}, - [4084] = {.lex_state = 37, .external_lex_state = 2}, - [4085] = {.lex_state = 39, .external_lex_state = 2}, - [4086] = {.lex_state = 116, .external_lex_state = 2}, - [4087] = {.lex_state = 37, .external_lex_state = 2}, - [4088] = {.lex_state = 37, .external_lex_state = 2}, - [4089] = {.lex_state = 37, .external_lex_state = 2}, - [4090] = {.lex_state = 37, .external_lex_state = 2}, - [4091] = {.lex_state = 37, .external_lex_state = 2}, - [4092] = {.lex_state = 37, .external_lex_state = 2}, - [4093] = {.lex_state = 116, .external_lex_state = 2}, - [4094] = {.lex_state = 127, .external_lex_state = 2}, - [4095] = {.lex_state = 127, .external_lex_state = 2}, - [4096] = {.lex_state = 116, .external_lex_state = 2}, - [4097] = {.lex_state = 37, .external_lex_state = 2}, - [4098] = {.lex_state = 116, .external_lex_state = 2}, - [4099] = {.lex_state = 37, .external_lex_state = 2}, - [4100] = {.lex_state = 37, .external_lex_state = 2}, - [4101] = {.lex_state = 116, .external_lex_state = 2}, - [4102] = {.lex_state = 37, .external_lex_state = 2}, - [4103] = {.lex_state = 37, .external_lex_state = 2}, - [4104] = {.lex_state = 37, .external_lex_state = 2}, - [4105] = {.lex_state = 37, .external_lex_state = 2}, - [4106] = {.lex_state = 116, .external_lex_state = 2}, - [4107] = {.lex_state = 116, .external_lex_state = 2}, - [4108] = {.lex_state = 37, .external_lex_state = 2}, - [4109] = {.lex_state = 37, .external_lex_state = 2}, - [4110] = {.lex_state = 37, .external_lex_state = 2}, - [4111] = {.lex_state = 116, .external_lex_state = 2}, - [4112] = {.lex_state = 116, .external_lex_state = 2}, - [4113] = {.lex_state = 37, .external_lex_state = 2}, - [4114] = {.lex_state = 37, .external_lex_state = 2}, - [4115] = {.lex_state = 37, .external_lex_state = 2}, - [4116] = {.lex_state = 32, .external_lex_state = 2}, - [4117] = {.lex_state = 37, .external_lex_state = 2}, - [4118] = {.lex_state = 37, .external_lex_state = 2}, - [4119] = {.lex_state = 37, .external_lex_state = 2}, - [4120] = {.lex_state = 37, .external_lex_state = 2}, - [4121] = {.lex_state = 116, .external_lex_state = 2}, - [4122] = {.lex_state = 116, .external_lex_state = 2}, - [4123] = {.lex_state = 37, .external_lex_state = 2}, - [4124] = {.lex_state = 37, .external_lex_state = 2}, - [4125] = {.lex_state = 116, .external_lex_state = 2}, - [4126] = {.lex_state = 116, .external_lex_state = 2}, - [4127] = {.lex_state = 37, .external_lex_state = 2}, - [4128] = {.lex_state = 116, .external_lex_state = 2}, - [4129] = {.lex_state = 116, .external_lex_state = 2}, - [4130] = {.lex_state = 116, .external_lex_state = 2}, - [4131] = {.lex_state = 116, .external_lex_state = 2}, - [4132] = {.lex_state = 122, .external_lex_state = 2}, - [4133] = {.lex_state = 32, .external_lex_state = 2}, - [4134] = {.lex_state = 122, .external_lex_state = 2}, - [4135] = {.lex_state = 116, .external_lex_state = 2}, - [4136] = {.lex_state = 37, .external_lex_state = 2}, - [4137] = {.lex_state = 122, .external_lex_state = 2}, - [4138] = {.lex_state = 116, .external_lex_state = 2}, - [4139] = {.lex_state = 116, .external_lex_state = 2}, - [4140] = {.lex_state = 116, .external_lex_state = 2}, - [4141] = {.lex_state = 127, .external_lex_state = 2}, - [4142] = {.lex_state = 37, .external_lex_state = 2}, - [4143] = {.lex_state = 116, .external_lex_state = 2}, - [4144] = {.lex_state = 116, .external_lex_state = 2}, - [4145] = {.lex_state = 37, .external_lex_state = 2}, - [4146] = {.lex_state = 116, .external_lex_state = 2}, - [4147] = {.lex_state = 37, .external_lex_state = 2}, - [4148] = {.lex_state = 37, .external_lex_state = 2}, - [4149] = {.lex_state = 120, .external_lex_state = 2}, - [4150] = {.lex_state = 32, .external_lex_state = 2}, - [4151] = {.lex_state = 116, .external_lex_state = 2}, - [4152] = {.lex_state = 116, .external_lex_state = 2}, - [4153] = {.lex_state = 37, .external_lex_state = 2}, - [4154] = {.lex_state = 37, .external_lex_state = 2}, - [4155] = {.lex_state = 37, .external_lex_state = 2}, - [4156] = {.lex_state = 116, .external_lex_state = 2}, - [4157] = {.lex_state = 37, .external_lex_state = 2}, - [4158] = {.lex_state = 116, .external_lex_state = 2}, - [4159] = {.lex_state = 116, .external_lex_state = 2}, - [4160] = {.lex_state = 37, .external_lex_state = 2}, - [4161] = {.lex_state = 32, .external_lex_state = 2}, - [4162] = {.lex_state = 37, .external_lex_state = 2}, - [4163] = {.lex_state = 120, .external_lex_state = 2}, - [4164] = {.lex_state = 116, .external_lex_state = 2}, - [4165] = {.lex_state = 116, .external_lex_state = 2}, - [4166] = {.lex_state = 37, .external_lex_state = 2}, - [4167] = {.lex_state = 116, .external_lex_state = 2}, - [4168] = {.lex_state = 37, .external_lex_state = 2}, - [4169] = {.lex_state = 127, .external_lex_state = 2}, - [4170] = {.lex_state = 116, .external_lex_state = 2}, - [4171] = {.lex_state = 51, .external_lex_state = 2}, - [4172] = {.lex_state = 37, .external_lex_state = 2}, - [4173] = {.lex_state = 116, .external_lex_state = 2}, - [4174] = {.lex_state = 116, .external_lex_state = 2}, - [4175] = {.lex_state = 37, .external_lex_state = 2}, - [4176] = {.lex_state = 116, .external_lex_state = 2}, - [4177] = {.lex_state = 37, .external_lex_state = 2}, - [4178] = {.lex_state = 37, .external_lex_state = 2}, - [4179] = {.lex_state = 116, .external_lex_state = 2}, - [4180] = {.lex_state = 116, .external_lex_state = 2}, - [4181] = {.lex_state = 116, .external_lex_state = 2}, - [4182] = {.lex_state = 116, .external_lex_state = 2}, - [4183] = {.lex_state = 37, .external_lex_state = 2}, - [4184] = {.lex_state = 116, .external_lex_state = 2}, - [4185] = {.lex_state = 37, .external_lex_state = 2}, - [4186] = {.lex_state = 116, .external_lex_state = 2}, - [4187] = {.lex_state = 116, .external_lex_state = 2}, - [4188] = {.lex_state = 116, .external_lex_state = 2}, - [4189] = {.lex_state = 116, .external_lex_state = 2}, - [4190] = {.lex_state = 120, .external_lex_state = 2}, - [4191] = {.lex_state = 120, .external_lex_state = 2}, - [4192] = {.lex_state = 37, .external_lex_state = 2}, - [4193] = {.lex_state = 116, .external_lex_state = 2}, - [4194] = {.lex_state = 116, .external_lex_state = 2}, - [4195] = {.lex_state = 116, .external_lex_state = 2}, - [4196] = {.lex_state = 37, .external_lex_state = 2}, - [4197] = {.lex_state = 116, .external_lex_state = 2}, - [4198] = {.lex_state = 120, .external_lex_state = 2}, - [4199] = {.lex_state = 32, .external_lex_state = 2}, - [4200] = {.lex_state = 37, .external_lex_state = 2}, - [4201] = {.lex_state = 116, .external_lex_state = 2}, - [4202] = {.lex_state = 37, .external_lex_state = 2}, - [4203] = {.lex_state = 37, .external_lex_state = 2}, - [4204] = {.lex_state = 37, .external_lex_state = 2}, - [4205] = {.lex_state = 32, .external_lex_state = 2}, - [4206] = {.lex_state = 37, .external_lex_state = 2}, - [4207] = {.lex_state = 127, .external_lex_state = 2}, - [4208] = {.lex_state = 127, .external_lex_state = 2}, - [4209] = {.lex_state = 127, .external_lex_state = 2}, - [4210] = {.lex_state = 127, .external_lex_state = 2}, - [4211] = {.lex_state = 37, .external_lex_state = 2}, - [4212] = {.lex_state = 37, .external_lex_state = 2}, - [4213] = {.lex_state = 4, .external_lex_state = 2}, - [4214] = {.lex_state = 122, .external_lex_state = 2}, - [4215] = {.lex_state = 120, .external_lex_state = 2}, - [4216] = {.lex_state = 46, .external_lex_state = 3}, - [4217] = {.lex_state = 120, .external_lex_state = 2}, - [4218] = {.lex_state = 46, .external_lex_state = 3}, - [4219] = {.lex_state = 122, .external_lex_state = 2}, - [4220] = {.lex_state = 4, .external_lex_state = 2}, - [4221] = {.lex_state = 46, .external_lex_state = 3}, - [4222] = {.lex_state = 4, .external_lex_state = 2}, - [4223] = {.lex_state = 4, .external_lex_state = 2}, - [4224] = {.lex_state = 122, .external_lex_state = 2}, - [4225] = {.lex_state = 122, .external_lex_state = 2}, - [4226] = {.lex_state = 122, .external_lex_state = 2}, - [4227] = {.lex_state = 122, .external_lex_state = 2}, - [4228] = {.lex_state = 120, .external_lex_state = 2}, - [4229] = {.lex_state = 124, .external_lex_state = 2}, - [4230] = {.lex_state = 39, .external_lex_state = 2}, - [4231] = {.lex_state = 120, .external_lex_state = 2}, - [4232] = {.lex_state = 128, .external_lex_state = 2}, - [4233] = {.lex_state = 120, .external_lex_state = 2}, - [4234] = {.lex_state = 118, .external_lex_state = 3}, - [4235] = {.lex_state = 120, .external_lex_state = 2}, - [4236] = {.lex_state = 120, .external_lex_state = 2}, - [4237] = {.lex_state = 120, .external_lex_state = 2}, - [4238] = {.lex_state = 122, .external_lex_state = 2}, - [4239] = {.lex_state = 4, .external_lex_state = 2}, - [4240] = {.lex_state = 124, .external_lex_state = 2}, - [4241] = {.lex_state = 39, .external_lex_state = 2}, - [4242] = {.lex_state = 122, .external_lex_state = 2}, - [4243] = {.lex_state = 122, .external_lex_state = 2}, - [4244] = {.lex_state = 39, .external_lex_state = 2}, - [4245] = {.lex_state = 118, .external_lex_state = 2}, - [4246] = {.lex_state = 39, .external_lex_state = 2}, - [4247] = {.lex_state = 122, .external_lex_state = 2}, - [4248] = {.lex_state = 120, .external_lex_state = 2}, - [4249] = {.lex_state = 39, .external_lex_state = 2}, - [4250] = {.lex_state = 39, .external_lex_state = 2}, - [4251] = {.lex_state = 118, .external_lex_state = 2}, - [4252] = {.lex_state = 118, .external_lex_state = 2}, - [4253] = {.lex_state = 127, .external_lex_state = 2}, - [4254] = {.lex_state = 118, .external_lex_state = 2}, - [4255] = {.lex_state = 120, .external_lex_state = 2}, - [4256] = {.lex_state = 122, .external_lex_state = 2}, - [4257] = {.lex_state = 122, .external_lex_state = 2}, - [4258] = {.lex_state = 127, .external_lex_state = 2}, - [4259] = {.lex_state = 39, .external_lex_state = 2}, - [4260] = {.lex_state = 127, .external_lex_state = 2}, - [4261] = {.lex_state = 122, .external_lex_state = 2}, - [4262] = {.lex_state = 122, .external_lex_state = 2}, - [4263] = {.lex_state = 5, .external_lex_state = 2}, - [4264] = {.lex_state = 120, .external_lex_state = 2}, - [4265] = {.lex_state = 39, .external_lex_state = 2}, - [4266] = {.lex_state = 118, .external_lex_state = 2}, - [4267] = {.lex_state = 122, .external_lex_state = 2}, - [4268] = {.lex_state = 127, .external_lex_state = 2}, - [4269] = {.lex_state = 127, .external_lex_state = 2}, - [4270] = {.lex_state = 122, .external_lex_state = 2}, - [4271] = {.lex_state = 39, .external_lex_state = 2}, - [4272] = {.lex_state = 118, .external_lex_state = 2}, - [4273] = {.lex_state = 5, .external_lex_state = 2}, - [4274] = {.lex_state = 120, .external_lex_state = 2}, - [4275] = {.lex_state = 120, .external_lex_state = 2}, - [4276] = {.lex_state = 122, .external_lex_state = 2}, - [4277] = {.lex_state = 122, .external_lex_state = 2}, - [4278] = {.lex_state = 118, .external_lex_state = 2}, - [4279] = {.lex_state = 118, .external_lex_state = 2}, - [4280] = {.lex_state = 118, .external_lex_state = 2}, - [4281] = {.lex_state = 118, .external_lex_state = 2}, - [4282] = {.lex_state = 5, .external_lex_state = 2}, - [4283] = {.lex_state = 116, .external_lex_state = 2}, - [4284] = {.lex_state = 122, .external_lex_state = 2}, - [4285] = {.lex_state = 5, .external_lex_state = 2}, - [4286] = {.lex_state = 120, .external_lex_state = 2}, - [4287] = {.lex_state = 5, .external_lex_state = 2}, - [4288] = {.lex_state = 46, .external_lex_state = 3}, - [4289] = {.lex_state = 122, .external_lex_state = 2}, - [4290] = {.lex_state = 122, .external_lex_state = 2}, - [4291] = {.lex_state = 5, .external_lex_state = 2}, - [4292] = {.lex_state = 122, .external_lex_state = 2}, - [4293] = {.lex_state = 122, .external_lex_state = 2}, - [4294] = {.lex_state = 116, .external_lex_state = 2}, - [4295] = {.lex_state = 124, .external_lex_state = 2}, - [4296] = {.lex_state = 116, .external_lex_state = 2}, - [4297] = {.lex_state = 116, .external_lex_state = 2}, - [4298] = {.lex_state = 116, .external_lex_state = 2}, - [4299] = {.lex_state = 116, .external_lex_state = 2}, - [4300] = {.lex_state = 116, .external_lex_state = 2}, - [4301] = {.lex_state = 116, .external_lex_state = 2}, - [4302] = {.lex_state = 116, .external_lex_state = 2}, - [4303] = {.lex_state = 124, .external_lex_state = 2}, - [4304] = {.lex_state = 116, .external_lex_state = 2}, - [4305] = {.lex_state = 4, .external_lex_state = 2}, - [4306] = {.lex_state = 4, .external_lex_state = 2}, - [4307] = {.lex_state = 120, .external_lex_state = 2}, - [4308] = {.lex_state = 116, .external_lex_state = 2}, - [4309] = {.lex_state = 116, .external_lex_state = 2}, - [4310] = {.lex_state = 5, .external_lex_state = 2}, - [4311] = {.lex_state = 116, .external_lex_state = 2}, - [4312] = {.lex_state = 116, .external_lex_state = 2}, - [4313] = {.lex_state = 116, .external_lex_state = 2}, - [4314] = {.lex_state = 116, .external_lex_state = 2}, - [4315] = {.lex_state = 116, .external_lex_state = 2}, - [4316] = {.lex_state = 120, .external_lex_state = 2}, - [4317] = {.lex_state = 116, .external_lex_state = 2}, - [4318] = {.lex_state = 4, .external_lex_state = 2}, - [4319] = {.lex_state = 4, .external_lex_state = 2}, - [4320] = {.lex_state = 39, .external_lex_state = 2}, - [4321] = {.lex_state = 116, .external_lex_state = 2}, - [4322] = {.lex_state = 122, .external_lex_state = 2}, - [4323] = {.lex_state = 116, .external_lex_state = 2}, - [4324] = {.lex_state = 128, .external_lex_state = 2}, - [4325] = {.lex_state = 4, .external_lex_state = 2}, - [4326] = {.lex_state = 4, .external_lex_state = 2}, - [4327] = {.lex_state = 120, .external_lex_state = 2}, - [4328] = {.lex_state = 116, .external_lex_state = 2}, - [4329] = {.lex_state = 120, .external_lex_state = 2}, - [4330] = {.lex_state = 120, .external_lex_state = 2}, - [4331] = {.lex_state = 116, .external_lex_state = 2}, - [4332] = {.lex_state = 4, .external_lex_state = 2}, - [4333] = {.lex_state = 122, .external_lex_state = 2}, - [4334] = {.lex_state = 122, .external_lex_state = 2}, - [4335] = {.lex_state = 116, .external_lex_state = 2}, - [4336] = {.lex_state = 116, .external_lex_state = 2}, - [4337] = {.lex_state = 116, .external_lex_state = 2}, - [4338] = {.lex_state = 120, .external_lex_state = 2}, - [4339] = {.lex_state = 122, .external_lex_state = 2}, - [4340] = {.lex_state = 4, .external_lex_state = 3}, - [4341] = {.lex_state = 116, .external_lex_state = 2}, - [4342] = {.lex_state = 116, .external_lex_state = 2}, - [4343] = {.lex_state = 120, .external_lex_state = 2}, - [4344] = {.lex_state = 116, .external_lex_state = 2}, - [4345] = {.lex_state = 116, .external_lex_state = 2}, - [4346] = {.lex_state = 116, .external_lex_state = 2}, - [4347] = {.lex_state = 4, .external_lex_state = 2}, - [4348] = {.lex_state = 4, .external_lex_state = 2}, - [4349] = {.lex_state = 122, .external_lex_state = 2}, - [4350] = {.lex_state = 116, .external_lex_state = 2}, - [4351] = {.lex_state = 116, .external_lex_state = 2}, - [4352] = {.lex_state = 116, .external_lex_state = 2}, - [4353] = {.lex_state = 4, .external_lex_state = 2}, - [4354] = {.lex_state = 4, .external_lex_state = 2}, - [4355] = {.lex_state = 5, .external_lex_state = 2}, - [4356] = {.lex_state = 120, .external_lex_state = 2}, - [4357] = {.lex_state = 116, .external_lex_state = 2}, - [4358] = {.lex_state = 116, .external_lex_state = 2}, - [4359] = {.lex_state = 116, .external_lex_state = 2}, - [4360] = {.lex_state = 122, .external_lex_state = 2}, - [4361] = {.lex_state = 122, .external_lex_state = 2}, - [4362] = {.lex_state = 122, .external_lex_state = 2}, - [4363] = {.lex_state = 5, .external_lex_state = 2}, - [4364] = {.lex_state = 122, .external_lex_state = 2}, - [4365] = {.lex_state = 4, .external_lex_state = 2}, - [4366] = {.lex_state = 116, .external_lex_state = 2}, - [4367] = {.lex_state = 5, .external_lex_state = 2}, - [4368] = {.lex_state = 120, .external_lex_state = 2}, - [4369] = {.lex_state = 116, .external_lex_state = 2}, - [4370] = {.lex_state = 4, .external_lex_state = 2}, - [4371] = {.lex_state = 4, .external_lex_state = 2}, - [4372] = {.lex_state = 122, .external_lex_state = 2}, - [4373] = {.lex_state = 116, .external_lex_state = 2}, - [4374] = {.lex_state = 116, .external_lex_state = 2}, - [4375] = {.lex_state = 116, .external_lex_state = 2}, - [4376] = {.lex_state = 116, .external_lex_state = 2}, - [4377] = {.lex_state = 116, .external_lex_state = 2}, - [4378] = {.lex_state = 116, .external_lex_state = 2}, - [4379] = {.lex_state = 116, .external_lex_state = 2}, - [4380] = {.lex_state = 4, .external_lex_state = 2}, - [4381] = {.lex_state = 122, .external_lex_state = 2}, - [4382] = {.lex_state = 116, .external_lex_state = 2}, - [4383] = {.lex_state = 116, .external_lex_state = 2}, - [4384] = {.lex_state = 116, .external_lex_state = 2}, - [4385] = {.lex_state = 116, .external_lex_state = 2}, - [4386] = {.lex_state = 116, .external_lex_state = 2}, - [4387] = {.lex_state = 116, .external_lex_state = 2}, - [4388] = {.lex_state = 122, .external_lex_state = 2}, - [4389] = {.lex_state = 120, .external_lex_state = 2}, - [4390] = {.lex_state = 127, .external_lex_state = 2}, - [4391] = {.lex_state = 116, .external_lex_state = 2}, - [4392] = {.lex_state = 122, .external_lex_state = 2}, - [4393] = {.lex_state = 122, .external_lex_state = 2}, - [4394] = {.lex_state = 122, .external_lex_state = 2}, - [4395] = {.lex_state = 120, .external_lex_state = 2}, - [4396] = {.lex_state = 122, .external_lex_state = 2}, - [4397] = {.lex_state = 122, .external_lex_state = 2}, - [4398] = {.lex_state = 122, .external_lex_state = 2}, - [4399] = {.lex_state = 122, .external_lex_state = 2}, - [4400] = {.lex_state = 122, .external_lex_state = 2}, - [4401] = {.lex_state = 122, .external_lex_state = 2}, - [4402] = {.lex_state = 122, .external_lex_state = 2}, - [4403] = {.lex_state = 120, .external_lex_state = 2}, - [4404] = {.lex_state = 120, .external_lex_state = 2}, - [4405] = {.lex_state = 122, .external_lex_state = 2}, - [4406] = {.lex_state = 122, .external_lex_state = 2}, - [4407] = {.lex_state = 122, .external_lex_state = 2}, - [4408] = {.lex_state = 122, .external_lex_state = 2}, - [4409] = {.lex_state = 122, .external_lex_state = 2}, - [4410] = {.lex_state = 5, .external_lex_state = 2}, - [4411] = {.lex_state = 122, .external_lex_state = 2}, - [4412] = {.lex_state = 122, .external_lex_state = 2}, - [4413] = {.lex_state = 122, .external_lex_state = 2}, - [4414] = {.lex_state = 120, .external_lex_state = 2}, - [4415] = {.lex_state = 122, .external_lex_state = 2}, - [4416] = {.lex_state = 127, .external_lex_state = 2}, - [4417] = {.lex_state = 122, .external_lex_state = 2}, - [4418] = {.lex_state = 122, .external_lex_state = 2}, - [4419] = {.lex_state = 122, .external_lex_state = 2}, - [4420] = {.lex_state = 127, .external_lex_state = 2}, - [4421] = {.lex_state = 122, .external_lex_state = 2}, - [4422] = {.lex_state = 122, .external_lex_state = 2}, - [4423] = {.lex_state = 116, .external_lex_state = 2}, - [4424] = {.lex_state = 122, .external_lex_state = 2}, - [4425] = {.lex_state = 17, .external_lex_state = 2}, - [4426] = {.lex_state = 117, .external_lex_state = 2}, - [4427] = {.lex_state = 5, .external_lex_state = 2}, - [4428] = {.lex_state = 5, .external_lex_state = 2}, - [4429] = {.lex_state = 118, .external_lex_state = 2}, - [4430] = {.lex_state = 5, .external_lex_state = 2}, - [4431] = {.lex_state = 5, .external_lex_state = 2}, - [4432] = {.lex_state = 5, .external_lex_state = 2}, - [4433] = {.lex_state = 5, .external_lex_state = 2}, - [4434] = {.lex_state = 120, .external_lex_state = 2}, - [4435] = {.lex_state = 124, .external_lex_state = 2}, - [4436] = {.lex_state = 5, .external_lex_state = 2}, - [4437] = {.lex_state = 5, .external_lex_state = 2}, - [4438] = {.lex_state = 5, .external_lex_state = 2}, - [4439] = {.lex_state = 5, .external_lex_state = 2}, - [4440] = {.lex_state = 122, .external_lex_state = 2}, - [4441] = {.lex_state = 5, .external_lex_state = 2}, - [4442] = {.lex_state = 117, .external_lex_state = 2}, - [4443] = {.lex_state = 5, .external_lex_state = 2}, - [4444] = {.lex_state = 5, .external_lex_state = 2}, - [4445] = {.lex_state = 122, .external_lex_state = 2}, - [4446] = {.lex_state = 122, .external_lex_state = 2}, - [4447] = {.lex_state = 5, .external_lex_state = 2}, - [4448] = {.lex_state = 120, .external_lex_state = 2}, - [4449] = {.lex_state = 122, .external_lex_state = 2}, - [4450] = {.lex_state = 5, .external_lex_state = 2}, - [4451] = {.lex_state = 120, .external_lex_state = 2}, - [4452] = {.lex_state = 122, .external_lex_state = 2}, - [4453] = {.lex_state = 5, .external_lex_state = 2}, - [4454] = {.lex_state = 5, .external_lex_state = 2}, - [4455] = {.lex_state = 122, .external_lex_state = 2}, - [4456] = {.lex_state = 122, .external_lex_state = 2}, - [4457] = {.lex_state = 122, .external_lex_state = 2}, - [4458] = {.lex_state = 17, .external_lex_state = 2}, - [4459] = {.lex_state = 122, .external_lex_state = 2}, - [4460] = {.lex_state = 5, .external_lex_state = 2}, - [4461] = {.lex_state = 117, .external_lex_state = 2}, - [4462] = {.lex_state = 5, .external_lex_state = 2}, - [4463] = {.lex_state = 23, .external_lex_state = 3}, - [4464] = {.lex_state = 5, .external_lex_state = 2}, - [4465] = {.lex_state = 117, .external_lex_state = 2}, - [4466] = {.lex_state = 122, .external_lex_state = 2}, - [4467] = {.lex_state = 117, .external_lex_state = 2}, - [4468] = {.lex_state = 118, .external_lex_state = 2}, - [4469] = {.lex_state = 23, .external_lex_state = 3}, - [4470] = {.lex_state = 5, .external_lex_state = 2}, - [4471] = {.lex_state = 122, .external_lex_state = 2}, - [4472] = {.lex_state = 5, .external_lex_state = 2}, - [4473] = {.lex_state = 122, .external_lex_state = 2}, - [4474] = {.lex_state = 122, .external_lex_state = 2}, - [4475] = {.lex_state = 120, .external_lex_state = 2}, - [4476] = {.lex_state = 23, .external_lex_state = 3}, - [4477] = {.lex_state = 117, .external_lex_state = 2}, - [4478] = {.lex_state = 5, .external_lex_state = 2}, - [4479] = {.lex_state = 122, .external_lex_state = 2}, - [4480] = {.lex_state = 122, .external_lex_state = 2}, - [4481] = {.lex_state = 122, .external_lex_state = 2}, - [4482] = {.lex_state = 122, .external_lex_state = 2}, - [4483] = {.lex_state = 122, .external_lex_state = 2}, - [4484] = {.lex_state = 122, .external_lex_state = 2}, - [4485] = {.lex_state = 117, .external_lex_state = 2}, - [4486] = {.lex_state = 122, .external_lex_state = 2}, - [4487] = {.lex_state = 120, .external_lex_state = 2}, - [4488] = {.lex_state = 122, .external_lex_state = 2}, - [4489] = {.lex_state = 11, .external_lex_state = 2}, - [4490] = {.lex_state = 11, .external_lex_state = 2}, - [4491] = {.lex_state = 122, .external_lex_state = 2}, - [4492] = {.lex_state = 122, .external_lex_state = 2}, - [4493] = {.lex_state = 117, .external_lex_state = 2}, - [4494] = {.lex_state = 11, .external_lex_state = 2}, - [4495] = {.lex_state = 11, .external_lex_state = 2}, - [4496] = {.lex_state = 11, .external_lex_state = 2}, - [4497] = {.lex_state = 122, .external_lex_state = 2}, - [4498] = {.lex_state = 117, .external_lex_state = 2}, - [4499] = {.lex_state = 5, .external_lex_state = 2}, - [4500] = {.lex_state = 5, .external_lex_state = 2}, - [4501] = {.lex_state = 5, .external_lex_state = 2}, - [4502] = {.lex_state = 5, .external_lex_state = 2}, - [4503] = {.lex_state = 11, .external_lex_state = 2}, - [4504] = {.lex_state = 5, .external_lex_state = 2}, - [4505] = {.lex_state = 5, .external_lex_state = 2}, - [4506] = {.lex_state = 122, .external_lex_state = 2}, - [4507] = {.lex_state = 122, .external_lex_state = 2}, - [4508] = {.lex_state = 122, .external_lex_state = 2}, - [4509] = {.lex_state = 122, .external_lex_state = 2}, - [4510] = {.lex_state = 118, .external_lex_state = 2}, - [4511] = {.lex_state = 17, .external_lex_state = 2}, - [4512] = {.lex_state = 122, .external_lex_state = 2}, - [4513] = {.lex_state = 117, .external_lex_state = 2}, - [4514] = {.lex_state = 117, .external_lex_state = 2}, - [4515] = {.lex_state = 117, .external_lex_state = 2}, - [4516] = {.lex_state = 117, .external_lex_state = 2}, - [4517] = {.lex_state = 5, .external_lex_state = 2}, - [4518] = {.lex_state = 5, .external_lex_state = 2}, - [4519] = {.lex_state = 17, .external_lex_state = 2}, - [4520] = {.lex_state = 117, .external_lex_state = 2}, - [4521] = {.lex_state = 122, .external_lex_state = 2}, - [4522] = {.lex_state = 4, .external_lex_state = 2}, - [4523] = {.lex_state = 4, .external_lex_state = 2}, - [4524] = {.lex_state = 118, .external_lex_state = 3}, - [4525] = {.lex_state = 118, .external_lex_state = 3}, - [4526] = {.lex_state = 124, .external_lex_state = 2}, - [4527] = {.lex_state = 122, .external_lex_state = 2}, - [4528] = {.lex_state = 122, .external_lex_state = 2}, - [4529] = {.lex_state = 122, .external_lex_state = 2}, - [4530] = {.lex_state = 120, .external_lex_state = 2}, - [4531] = {.lex_state = 122, .external_lex_state = 2}, - [4532] = {.lex_state = 122, .external_lex_state = 2}, - [4533] = {.lex_state = 124, .external_lex_state = 2}, - [4534] = {.lex_state = 122, .external_lex_state = 2}, - [4535] = {.lex_state = 122, .external_lex_state = 2}, - [4536] = {.lex_state = 122, .external_lex_state = 2}, - [4537] = {.lex_state = 120, .external_lex_state = 2}, - [4538] = {.lex_state = 17, .external_lex_state = 2}, - [4539] = {.lex_state = 120, .external_lex_state = 2}, - [4540] = {.lex_state = 122, .external_lex_state = 2}, - [4541] = {.lex_state = 120, .external_lex_state = 2}, - [4542] = {.lex_state = 122, .external_lex_state = 2}, - [4543] = {.lex_state = 122, .external_lex_state = 2}, - [4544] = {.lex_state = 122, .external_lex_state = 2}, - [4545] = {.lex_state = 122, .external_lex_state = 2}, - [4546] = {.lex_state = 122, .external_lex_state = 2}, - [4547] = {.lex_state = 122, .external_lex_state = 2}, - [4548] = {.lex_state = 122, .external_lex_state = 2}, - [4549] = {.lex_state = 122, .external_lex_state = 2}, - [4550] = {.lex_state = 122, .external_lex_state = 2}, - [4551] = {.lex_state = 122, .external_lex_state = 2}, - [4552] = {.lex_state = 122, .external_lex_state = 2}, - [4553] = {.lex_state = 122, .external_lex_state = 2}, - [4554] = {.lex_state = 122, .external_lex_state = 2}, - [4555] = {.lex_state = 122, .external_lex_state = 2}, - [4556] = {.lex_state = 122, .external_lex_state = 2}, - [4557] = {.lex_state = 17, .external_lex_state = 2}, - [4558] = {.lex_state = 122, .external_lex_state = 2}, - [4559] = {.lex_state = 122, .external_lex_state = 2}, - [4560] = {.lex_state = 122, .external_lex_state = 2}, - [4561] = {.lex_state = 122, .external_lex_state = 2}, - [4562] = {.lex_state = 122, .external_lex_state = 2}, - [4563] = {.lex_state = 122, .external_lex_state = 2}, - [4564] = {.lex_state = 122, .external_lex_state = 2}, - [4565] = {.lex_state = 122, .external_lex_state = 2}, - [4566] = {.lex_state = 122, .external_lex_state = 2}, - [4567] = {.lex_state = 17, .external_lex_state = 2}, - [4568] = {.lex_state = 122, .external_lex_state = 2}, - [4569] = {.lex_state = 17, .external_lex_state = 2}, - [4570] = {.lex_state = 117, .external_lex_state = 2}, - [4571] = {.lex_state = 122, .external_lex_state = 2}, - [4572] = {.lex_state = 122, .external_lex_state = 2}, - [4573] = {.lex_state = 122, .external_lex_state = 2}, - [4574] = {.lex_state = 120, .external_lex_state = 2}, - [4575] = {.lex_state = 122, .external_lex_state = 2}, - [4576] = {.lex_state = 122, .external_lex_state = 2}, - [4577] = {.lex_state = 122, .external_lex_state = 2}, - [4578] = {.lex_state = 122, .external_lex_state = 2}, - [4579] = {.lex_state = 122, .external_lex_state = 2}, - [4580] = {.lex_state = 122, .external_lex_state = 2}, - [4581] = {.lex_state = 120, .external_lex_state = 2}, - [4582] = {.lex_state = 120, .external_lex_state = 2}, - [4583] = {.lex_state = 122, .external_lex_state = 2}, - [4584] = {.lex_state = 122, .external_lex_state = 2}, - [4585] = {.lex_state = 122, .external_lex_state = 2}, - [4586] = {.lex_state = 120, .external_lex_state = 2}, - [4587] = {.lex_state = 122, .external_lex_state = 2}, - [4588] = {.lex_state = 120, .external_lex_state = 2}, - [4589] = {.lex_state = 122, .external_lex_state = 2}, - [4590] = {.lex_state = 122, .external_lex_state = 2}, - [4591] = {.lex_state = 122, .external_lex_state = 2}, - [4592] = {.lex_state = 122, .external_lex_state = 2}, - [4593] = {.lex_state = 116, .external_lex_state = 2}, - [4594] = {.lex_state = 122, .external_lex_state = 2}, - [4595] = {.lex_state = 122, .external_lex_state = 2}, - [4596] = {.lex_state = 122, .external_lex_state = 2}, - [4597] = {.lex_state = 122, .external_lex_state = 2}, - [4598] = {.lex_state = 122, .external_lex_state = 2}, - [4599] = {.lex_state = 122, .external_lex_state = 2}, - [4600] = {.lex_state = 122, .external_lex_state = 2}, - [4601] = {.lex_state = 17, .external_lex_state = 2}, - [4602] = {.lex_state = 17, .external_lex_state = 2}, - [4603] = {.lex_state = 122, .external_lex_state = 2}, - [4604] = {.lex_state = 116, .external_lex_state = 2}, - [4605] = {.lex_state = 49, .external_lex_state = 2}, - [4606] = {.lex_state = 122, .external_lex_state = 2}, - [4607] = {.lex_state = 122, .external_lex_state = 2}, - [4608] = {.lex_state = 120, .external_lex_state = 2}, - [4609] = {.lex_state = 122, .external_lex_state = 2}, - [4610] = {.lex_state = 122, .external_lex_state = 2}, - [4611] = {.lex_state = 120, .external_lex_state = 2}, - [4612] = {.lex_state = 49, .external_lex_state = 2}, - [4613] = {.lex_state = 122, .external_lex_state = 2}, - [4614] = {.lex_state = 122, .external_lex_state = 2}, - [4615] = {.lex_state = 122, .external_lex_state = 2}, - [4616] = {.lex_state = 122, .external_lex_state = 2}, - [4617] = {.lex_state = 122, .external_lex_state = 2}, - [4618] = {.lex_state = 122, .external_lex_state = 2}, - [4619] = {.lex_state = 122, .external_lex_state = 2}, - [4620] = {.lex_state = 17, .external_lex_state = 2}, - [4621] = {.lex_state = 122, .external_lex_state = 2}, - [4622] = {.lex_state = 122, .external_lex_state = 2}, - [4623] = {.lex_state = 122, .external_lex_state = 2}, - [4624] = {.lex_state = 17, .external_lex_state = 2}, - [4625] = {.lex_state = 117, .external_lex_state = 2}, - [4626] = {.lex_state = 117, .external_lex_state = 2}, - [4627] = {.lex_state = 117, .external_lex_state = 2}, - [4628] = {.lex_state = 117, .external_lex_state = 2}, - [4629] = {.lex_state = 118, .external_lex_state = 2}, - [4630] = {.lex_state = 117, .external_lex_state = 2}, - [4631] = {.lex_state = 49, .external_lex_state = 2}, - [4632] = {.lex_state = 117, .external_lex_state = 2}, - [4633] = {.lex_state = 117, .external_lex_state = 2}, - [4634] = {.lex_state = 117, .external_lex_state = 2}, - [4635] = {.lex_state = 117, .external_lex_state = 2}, - [4636] = {.lex_state = 117, .external_lex_state = 2}, - [4637] = {.lex_state = 4, .external_lex_state = 2}, - [4638] = {.lex_state = 117, .external_lex_state = 2}, - [4639] = {.lex_state = 118, .external_lex_state = 2}, - [4640] = {.lex_state = 117, .external_lex_state = 2}, - [4641] = {.lex_state = 117, .external_lex_state = 2}, - [4642] = {.lex_state = 117, .external_lex_state = 2}, - [4643] = {.lex_state = 117, .external_lex_state = 2}, - [4644] = {.lex_state = 117, .external_lex_state = 2}, - [4645] = {.lex_state = 117, .external_lex_state = 2}, - [4646] = {.lex_state = 117, .external_lex_state = 2}, - [4647] = {.lex_state = 117, .external_lex_state = 2}, - [4648] = {.lex_state = 117, .external_lex_state = 2}, - [4649] = {.lex_state = 117, .external_lex_state = 2}, - [4650] = {.lex_state = 122, .external_lex_state = 2}, - [4651] = {.lex_state = 118, .external_lex_state = 2}, - [4652] = {.lex_state = 117, .external_lex_state = 2}, - [4653] = {.lex_state = 118, .external_lex_state = 2}, - [4654] = {.lex_state = 4, .external_lex_state = 2}, - [4655] = {.lex_state = 120, .external_lex_state = 2}, - [4656] = {.lex_state = 117, .external_lex_state = 2}, - [4657] = {.lex_state = 118, .external_lex_state = 2}, - [4658] = {.lex_state = 117, .external_lex_state = 2}, - [4659] = {.lex_state = 117, .external_lex_state = 2}, - [4660] = {.lex_state = 117, .external_lex_state = 2}, - [4661] = {.lex_state = 118, .external_lex_state = 2}, - [4662] = {.lex_state = 117, .external_lex_state = 2}, - [4663] = {.lex_state = 117, .external_lex_state = 2}, - [4664] = {.lex_state = 122, .external_lex_state = 2}, - [4665] = {.lex_state = 117, .external_lex_state = 2}, - [4666] = {.lex_state = 122, .external_lex_state = 2}, - [4667] = {.lex_state = 122, .external_lex_state = 2}, - [4668] = {.lex_state = 122, .external_lex_state = 2}, - [4669] = {.lex_state = 117, .external_lex_state = 2}, - [4670] = {.lex_state = 122, .external_lex_state = 2}, - [4671] = {.lex_state = 122, .external_lex_state = 2}, - [4672] = {.lex_state = 117, .external_lex_state = 2}, - [4673] = {.lex_state = 122, .external_lex_state = 2}, - [4674] = {.lex_state = 117, .external_lex_state = 2}, - [4675] = {.lex_state = 118, .external_lex_state = 2}, - [4676] = {.lex_state = 117, .external_lex_state = 2}, - [4677] = {.lex_state = 122, .external_lex_state = 2}, - [4678] = {.lex_state = 122, .external_lex_state = 2}, - [4679] = {.lex_state = 117, .external_lex_state = 2}, - [4680] = {.lex_state = 117, .external_lex_state = 2}, - [4681] = {.lex_state = 122, .external_lex_state = 2}, - [4682] = {.lex_state = 117, .external_lex_state = 2}, - [4683] = {.lex_state = 4, .external_lex_state = 2}, - [4684] = {.lex_state = 4, .external_lex_state = 2}, - [4685] = {.lex_state = 122, .external_lex_state = 2}, - [4686] = {.lex_state = 122, .external_lex_state = 2}, - [4687] = {.lex_state = 117, .external_lex_state = 2}, - [4688] = {.lex_state = 49, .external_lex_state = 2}, - [4689] = {.lex_state = 117, .external_lex_state = 2}, - [4690] = {.lex_state = 4, .external_lex_state = 2}, - [4691] = {.lex_state = 117, .external_lex_state = 2}, - [4692] = {.lex_state = 122, .external_lex_state = 2}, - [4693] = {.lex_state = 49, .external_lex_state = 2}, - [4694] = {.lex_state = 117, .external_lex_state = 2}, - [4695] = {.lex_state = 117, .external_lex_state = 2}, - [4696] = {.lex_state = 117, .external_lex_state = 2}, - [4697] = {.lex_state = 117, .external_lex_state = 2}, - [4698] = {.lex_state = 118, .external_lex_state = 2}, - [4699] = {.lex_state = 117, .external_lex_state = 2}, - [4700] = {.lex_state = 117, .external_lex_state = 2}, - [4701] = {.lex_state = 117, .external_lex_state = 2}, - [4702] = {.lex_state = 117, .external_lex_state = 2}, - [4703] = {.lex_state = 4, .external_lex_state = 2}, - [4704] = {.lex_state = 117, .external_lex_state = 2}, - [4705] = {.lex_state = 117, .external_lex_state = 2}, - [4706] = {.lex_state = 120, .external_lex_state = 2}, - [4707] = {.lex_state = 4, .external_lex_state = 2}, - [4708] = {.lex_state = 118, .external_lex_state = 2}, - [4709] = {.lex_state = 117, .external_lex_state = 2}, - [4710] = {.lex_state = 117, .external_lex_state = 2}, - [4711] = {.lex_state = 117, .external_lex_state = 2}, - [4712] = {.lex_state = 117, .external_lex_state = 2}, - [4713] = {.lex_state = 117, .external_lex_state = 2}, - [4714] = {.lex_state = 120, .external_lex_state = 2}, - [4715] = {.lex_state = 117, .external_lex_state = 2}, - [4716] = {.lex_state = 117, .external_lex_state = 2}, - [4717] = {.lex_state = 117, .external_lex_state = 2}, - [4718] = {.lex_state = 117, .external_lex_state = 2}, - [4719] = {.lex_state = 117, .external_lex_state = 2}, - [4720] = {.lex_state = 117, .external_lex_state = 2}, - [4721] = {.lex_state = 117, .external_lex_state = 2}, - [4722] = {.lex_state = 23, .external_lex_state = 3}, - [4723] = {.lex_state = 117, .external_lex_state = 2}, - [4724] = {.lex_state = 117, .external_lex_state = 2}, - [4725] = {.lex_state = 117, .external_lex_state = 2}, - [4726] = {.lex_state = 117, .external_lex_state = 2}, - [4727] = {.lex_state = 117, .external_lex_state = 2}, - [4728] = {.lex_state = 117, .external_lex_state = 2}, - [4729] = {.lex_state = 117, .external_lex_state = 2}, - [4730] = {.lex_state = 117, .external_lex_state = 2}, - [4731] = {.lex_state = 117, .external_lex_state = 2}, - [4732] = {.lex_state = 117, .external_lex_state = 2}, - [4733] = {.lex_state = 117, .external_lex_state = 2}, - [4734] = {.lex_state = 117, .external_lex_state = 2}, - [4735] = {.lex_state = 117, .external_lex_state = 2}, - [4736] = {.lex_state = 117, .external_lex_state = 2}, - [4737] = {.lex_state = 117, .external_lex_state = 2}, - [4738] = {.lex_state = 117, .external_lex_state = 2}, - [4739] = {.lex_state = 117, .external_lex_state = 2}, - [4740] = {.lex_state = 117, .external_lex_state = 2}, - [4741] = {.lex_state = 117, .external_lex_state = 2}, - [4742] = {.lex_state = 117, .external_lex_state = 2}, - [4743] = {.lex_state = 117, .external_lex_state = 2}, - [4744] = {.lex_state = 117, .external_lex_state = 2}, - [4745] = {.lex_state = 117, .external_lex_state = 2}, - [4746] = {.lex_state = 117, .external_lex_state = 2}, - [4747] = {.lex_state = 117, .external_lex_state = 2}, - [4748] = {.lex_state = 117, .external_lex_state = 2}, - [4749] = {.lex_state = 117, .external_lex_state = 2}, - [4750] = {.lex_state = 122, .external_lex_state = 2}, - [4751] = {.lex_state = 4, .external_lex_state = 2}, - [4752] = {.lex_state = 117, .external_lex_state = 2}, - [4753] = {.lex_state = 117, .external_lex_state = 2}, - [4754] = {.lex_state = 49, .external_lex_state = 2}, - [4755] = {.lex_state = 117, .external_lex_state = 2}, - [4756] = {.lex_state = 117, .external_lex_state = 2}, - [4757] = {.lex_state = 117, .external_lex_state = 2}, - [4758] = {.lex_state = 117, .external_lex_state = 2}, - [4759] = {.lex_state = 117, .external_lex_state = 2}, - [4760] = {.lex_state = 117, .external_lex_state = 2}, - [4761] = {.lex_state = 117, .external_lex_state = 2}, - [4762] = {.lex_state = 117, .external_lex_state = 2}, - [4763] = {.lex_state = 117, .external_lex_state = 2}, - [4764] = {.lex_state = 117, .external_lex_state = 2}, - [4765] = {.lex_state = 117, .external_lex_state = 2}, - [4766] = {.lex_state = 117, .external_lex_state = 2}, - [4767] = {.lex_state = 117, .external_lex_state = 2}, - [4768] = {.lex_state = 117, .external_lex_state = 2}, - [4769] = {.lex_state = 117, .external_lex_state = 2}, - [4770] = {.lex_state = 117, .external_lex_state = 2}, - [4771] = {.lex_state = 4, .external_lex_state = 2}, - [4772] = {.lex_state = 4, .external_lex_state = 2}, - [4773] = {.lex_state = 117, .external_lex_state = 2}, - [4774] = {.lex_state = 118, .external_lex_state = 2}, - [4775] = {.lex_state = 117, .external_lex_state = 2}, - [4776] = {.lex_state = 117, .external_lex_state = 2}, - [4777] = {.lex_state = 117, .external_lex_state = 2}, - [4778] = {.lex_state = 117, .external_lex_state = 2}, - [4779] = {.lex_state = 117, .external_lex_state = 2}, - [4780] = {.lex_state = 117, .external_lex_state = 2}, - [4781] = {.lex_state = 117, .external_lex_state = 2}, - [4782] = {.lex_state = 117, .external_lex_state = 2}, - [4783] = {.lex_state = 117, .external_lex_state = 2}, - [4784] = {.lex_state = 122, .external_lex_state = 2}, - [4785] = {.lex_state = 117, .external_lex_state = 2}, - [4786] = {.lex_state = 117, .external_lex_state = 2}, - [4787] = {.lex_state = 117, .external_lex_state = 2}, - [4788] = {.lex_state = 117, .external_lex_state = 2}, - [4789] = {.lex_state = 118, .external_lex_state = 2}, - [4790] = {.lex_state = 118, .external_lex_state = 2}, - [4791] = {.lex_state = 117, .external_lex_state = 2}, - [4792] = {.lex_state = 117, .external_lex_state = 2}, - [4793] = {.lex_state = 118, .external_lex_state = 2}, - [4794] = {.lex_state = 117, .external_lex_state = 2}, - [4795] = {.lex_state = 122, .external_lex_state = 2}, - [4796] = {.lex_state = 117, .external_lex_state = 2}, - [4797] = {.lex_state = 117, .external_lex_state = 2}, - [4798] = {.lex_state = 117, .external_lex_state = 2}, - [4799] = {.lex_state = 117, .external_lex_state = 2}, - [4800] = {.lex_state = 17, .external_lex_state = 2}, - [4801] = {.lex_state = 122, .external_lex_state = 2}, - [4802] = {.lex_state = 116, .external_lex_state = 2}, - [4803] = {.lex_state = 116, .external_lex_state = 2}, - [4804] = {.lex_state = 122, .external_lex_state = 2}, - [4805] = {.lex_state = 116, .external_lex_state = 2}, - [4806] = {.lex_state = 122, .external_lex_state = 2}, - [4807] = {.lex_state = 117, .external_lex_state = 3}, - [4808] = {.lex_state = 1, .external_lex_state = 5}, - [4809] = {.lex_state = 117, .external_lex_state = 2}, - [4810] = {.lex_state = 1, .external_lex_state = 5}, - [4811] = {.lex_state = 4, .external_lex_state = 2}, - [4812] = {.lex_state = 1, .external_lex_state = 5}, - [4813] = {.lex_state = 4, .external_lex_state = 2}, - [4814] = {.lex_state = 4, .external_lex_state = 2}, - [4815] = {.lex_state = 4, .external_lex_state = 2}, - [4816] = {.lex_state = 4, .external_lex_state = 2}, - [4817] = {.lex_state = 1, .external_lex_state = 5}, - [4818] = {.lex_state = 117, .external_lex_state = 2}, - [4819] = {.lex_state = 1, .external_lex_state = 5}, - [4820] = {.lex_state = 120, .external_lex_state = 2}, - [4821] = {.lex_state = 17, .external_lex_state = 2}, - [4822] = {.lex_state = 17, .external_lex_state = 2}, - [4823] = {.lex_state = 4, .external_lex_state = 2}, - [4824] = {.lex_state = 17, .external_lex_state = 2}, - [4825] = {.lex_state = 1, .external_lex_state = 5}, - [4826] = {.lex_state = 17, .external_lex_state = 2}, - [4827] = {.lex_state = 117, .external_lex_state = 3}, - [4828] = {.lex_state = 4, .external_lex_state = 2}, - [4829] = {.lex_state = 117, .external_lex_state = 2}, - [4830] = {.lex_state = 1, .external_lex_state = 5}, - [4831] = {.lex_state = 1, .external_lex_state = 5}, - [4832] = {.lex_state = 1, .external_lex_state = 5}, - [4833] = {.lex_state = 17, .external_lex_state = 2}, - [4834] = {.lex_state = 1, .external_lex_state = 5}, - [4835] = {.lex_state = 4, .external_lex_state = 2}, - [4836] = {.lex_state = 49, .external_lex_state = 2}, - [4837] = {.lex_state = 1, .external_lex_state = 5}, - [4838] = {.lex_state = 116, .external_lex_state = 2}, - [4839] = {.lex_state = 4, .external_lex_state = 2}, - [4840] = {.lex_state = 17, .external_lex_state = 2}, - [4841] = {.lex_state = 17, .external_lex_state = 2}, - [4842] = {.lex_state = 1, .external_lex_state = 5}, - [4843] = {.lex_state = 116, .external_lex_state = 2}, - [4844] = {.lex_state = 1, .external_lex_state = 5}, - [4845] = {.lex_state = 4, .external_lex_state = 2}, - [4846] = {.lex_state = 1, .external_lex_state = 5}, - [4847] = {.lex_state = 1, .external_lex_state = 5}, - [4848] = {.lex_state = 1, .external_lex_state = 5}, - [4849] = {.lex_state = 1, .external_lex_state = 5}, - [4850] = {.lex_state = 1, .external_lex_state = 5}, - [4851] = {.lex_state = 4, .external_lex_state = 2}, - [4852] = {.lex_state = 1, .external_lex_state = 5}, - [4853] = {.lex_state = 118, .external_lex_state = 3}, - [4854] = {.lex_state = 4, .external_lex_state = 2}, - [4855] = {.lex_state = 4, .external_lex_state = 2}, - [4856] = {.lex_state = 1, .external_lex_state = 5}, - [4857] = {.lex_state = 122, .external_lex_state = 2}, - [4858] = {.lex_state = 4, .external_lex_state = 2}, - [4859] = {.lex_state = 49, .external_lex_state = 2}, - [4860] = {.lex_state = 120, .external_lex_state = 2}, - [4861] = {.lex_state = 4, .external_lex_state = 2}, - [4862] = {.lex_state = 120, .external_lex_state = 2}, - [4863] = {.lex_state = 4, .external_lex_state = 2}, - [4864] = {.lex_state = 122, .external_lex_state = 2}, - [4865] = {.lex_state = 4, .external_lex_state = 2}, - [4866] = {.lex_state = 17, .external_lex_state = 2}, - [4867] = {.lex_state = 4, .external_lex_state = 2}, - [4868] = {.lex_state = 1, .external_lex_state = 5}, - [4869] = {.lex_state = 118, .external_lex_state = 3}, - [4870] = {.lex_state = 49, .external_lex_state = 2}, - [4871] = {.lex_state = 116, .external_lex_state = 2}, - [4872] = {.lex_state = 120, .external_lex_state = 2}, - [4873] = {.lex_state = 1, .external_lex_state = 5}, - [4874] = {.lex_state = 120, .external_lex_state = 2}, - [4875] = {.lex_state = 1, .external_lex_state = 5}, - [4876] = {.lex_state = 116, .external_lex_state = 2}, - [4877] = {.lex_state = 116, .external_lex_state = 2}, - [4878] = {.lex_state = 17, .external_lex_state = 2}, - [4879] = {.lex_state = 117, .external_lex_state = 3}, - [4880] = {.lex_state = 117, .external_lex_state = 2}, - [4881] = {.lex_state = 117, .external_lex_state = 2}, - [4882] = {.lex_state = 120, .external_lex_state = 2}, - [4883] = {.lex_state = 118, .external_lex_state = 2}, - [4884] = {.lex_state = 4, .external_lex_state = 3}, - [4885] = {.lex_state = 117, .external_lex_state = 2}, - [4886] = {.lex_state = 117, .external_lex_state = 2}, - [4887] = {.lex_state = 117, .external_lex_state = 2}, - [4888] = {.lex_state = 117, .external_lex_state = 2}, - [4889] = {.lex_state = 4, .external_lex_state = 3}, - [4890] = {.lex_state = 117, .external_lex_state = 2}, - [4891] = {.lex_state = 17, .external_lex_state = 2}, - [4892] = {.lex_state = 117, .external_lex_state = 2}, - [4893] = {.lex_state = 118, .external_lex_state = 2}, - [4894] = {.lex_state = 120, .external_lex_state = 2}, - [4895] = {.lex_state = 122, .external_lex_state = 2}, - [4896] = {.lex_state = 1, .external_lex_state = 5}, - [4897] = {.lex_state = 122, .external_lex_state = 2}, - [4898] = {.lex_state = 117, .external_lex_state = 2}, - [4899] = {.lex_state = 117, .external_lex_state = 2}, - [4900] = {.lex_state = 120, .external_lex_state = 2}, - [4901] = {.lex_state = 117, .external_lex_state = 2}, - [4902] = {.lex_state = 117, .external_lex_state = 2}, - [4903] = {.lex_state = 117, .external_lex_state = 2}, - [4904] = {.lex_state = 17, .external_lex_state = 2}, - [4905] = {.lex_state = 4, .external_lex_state = 2}, - [4906] = {.lex_state = 117, .external_lex_state = 2}, - [4907] = {.lex_state = 117, .external_lex_state = 2}, - [4908] = {.lex_state = 4, .external_lex_state = 2}, - [4909] = {.lex_state = 17, .external_lex_state = 2}, - [4910] = {.lex_state = 117, .external_lex_state = 2}, - [4911] = {.lex_state = 120, .external_lex_state = 2}, - [4912] = {.lex_state = 49, .external_lex_state = 2}, - [4913] = {.lex_state = 17, .external_lex_state = 2}, - [4914] = {.lex_state = 17, .external_lex_state = 2}, - [4915] = {.lex_state = 117, .external_lex_state = 2}, - [4916] = {.lex_state = 4, .external_lex_state = 2}, - [4917] = {.lex_state = 118, .external_lex_state = 2}, - [4918] = {.lex_state = 120, .external_lex_state = 2}, - [4919] = {.lex_state = 117, .external_lex_state = 2}, - [4920] = {.lex_state = 17, .external_lex_state = 2}, - [4921] = {.lex_state = 117, .external_lex_state = 2}, - [4922] = {.lex_state = 117, .external_lex_state = 2}, - [4923] = {.lex_state = 4, .external_lex_state = 3}, - [4924] = {.lex_state = 116, .external_lex_state = 2}, - [4925] = {.lex_state = 4, .external_lex_state = 2}, - [4926] = {.lex_state = 117, .external_lex_state = 2}, - [4927] = {.lex_state = 122, .external_lex_state = 2}, - [4928] = {.lex_state = 122, .external_lex_state = 2}, - [4929] = {.lex_state = 117, .external_lex_state = 2}, - [4930] = {.lex_state = 117, .external_lex_state = 2}, - [4931] = {.lex_state = 17, .external_lex_state = 2}, - [4932] = {.lex_state = 4, .external_lex_state = 2}, - [4933] = {.lex_state = 117, .external_lex_state = 2}, - [4934] = {.lex_state = 120, .external_lex_state = 2}, - [4935] = {.lex_state = 117, .external_lex_state = 2}, - [4936] = {.lex_state = 17, .external_lex_state = 2}, - [4937] = {.lex_state = 118, .external_lex_state = 2}, - [4938] = {.lex_state = 120, .external_lex_state = 2}, - [4939] = {.lex_state = 117, .external_lex_state = 2}, - [4940] = {.lex_state = 117, .external_lex_state = 2}, - [4941] = {.lex_state = 117, .external_lex_state = 2}, - [4942] = {.lex_state = 49, .external_lex_state = 2}, - [4943] = {.lex_state = 117, .external_lex_state = 2}, - [4944] = {.lex_state = 117, .external_lex_state = 2}, - [4945] = {.lex_state = 117, .external_lex_state = 2}, - [4946] = {.lex_state = 117, .external_lex_state = 2}, - [4947] = {.lex_state = 117, .external_lex_state = 3}, - [4948] = {.lex_state = 117, .external_lex_state = 2}, - [4949] = {.lex_state = 120, .external_lex_state = 2}, - [4950] = {.lex_state = 117, .external_lex_state = 3}, - [4951] = {.lex_state = 120, .external_lex_state = 2}, - [4952] = {.lex_state = 54, .external_lex_state = 2}, - [4953] = {.lex_state = 120, .external_lex_state = 2}, - [4954] = {.lex_state = 1, .external_lex_state = 5}, - [4955] = {.lex_state = 117, .external_lex_state = 2}, - [4956] = {.lex_state = 117, .external_lex_state = 2}, - [4957] = {.lex_state = 4, .external_lex_state = 2}, - [4958] = {.lex_state = 117, .external_lex_state = 2}, - [4959] = {.lex_state = 117, .external_lex_state = 2}, - [4960] = {.lex_state = 117, .external_lex_state = 2}, - [4961] = {.lex_state = 4, .external_lex_state = 3}, - [4962] = {.lex_state = 116, .external_lex_state = 2}, - [4963] = {.lex_state = 53, .external_lex_state = 2}, - [4964] = {.lex_state = 117, .external_lex_state = 2}, - [4965] = {.lex_state = 117, .external_lex_state = 2}, - [4966] = {.lex_state = 116, .external_lex_state = 2}, - [4967] = {.lex_state = 120, .external_lex_state = 2}, - [4968] = {.lex_state = 117, .external_lex_state = 2}, - [4969] = {.lex_state = 117, .external_lex_state = 2}, - [4970] = {.lex_state = 120, .external_lex_state = 2}, - [4971] = {.lex_state = 117, .external_lex_state = 2}, - [4972] = {.lex_state = 122, .external_lex_state = 2}, - [4973] = {.lex_state = 117, .external_lex_state = 2}, - [4974] = {.lex_state = 120, .external_lex_state = 2}, - [4975] = {.lex_state = 117, .external_lex_state = 2}, - [4976] = {.lex_state = 117, .external_lex_state = 2}, - [4977] = {.lex_state = 120, .external_lex_state = 2}, - [4978] = {.lex_state = 117, .external_lex_state = 2}, - [4979] = {.lex_state = 117, .external_lex_state = 2}, - [4980] = {.lex_state = 122, .external_lex_state = 2}, - [4981] = {.lex_state = 117, .external_lex_state = 2}, - [4982] = {.lex_state = 120, .external_lex_state = 2}, - [4983] = {.lex_state = 117, .external_lex_state = 2}, - [4984] = {.lex_state = 117, .external_lex_state = 2}, - [4985] = {.lex_state = 117, .external_lex_state = 2}, - [4986] = {.lex_state = 117, .external_lex_state = 2}, - [4987] = {.lex_state = 118, .external_lex_state = 3}, - [4988] = {.lex_state = 118, .external_lex_state = 3}, - [4989] = {.lex_state = 117, .external_lex_state = 2}, - [4990] = {.lex_state = 122, .external_lex_state = 2}, - [4991] = {.lex_state = 117, .external_lex_state = 2}, - [4992] = {.lex_state = 122, .external_lex_state = 2}, - [4993] = {.lex_state = 117, .external_lex_state = 2}, - [4994] = {.lex_state = 120, .external_lex_state = 2}, - [4995] = {.lex_state = 120, .external_lex_state = 2}, - [4996] = {.lex_state = 117, .external_lex_state = 2}, - [4997] = {.lex_state = 122, .external_lex_state = 2}, - [4998] = {.lex_state = 120, .external_lex_state = 2}, - [4999] = {.lex_state = 117, .external_lex_state = 2}, - [5000] = {.lex_state = 122, .external_lex_state = 2}, - [5001] = {.lex_state = 117, .external_lex_state = 2}, - [5002] = {.lex_state = 117, .external_lex_state = 2}, - [5003] = {.lex_state = 122, .external_lex_state = 2}, - [5004] = {.lex_state = 117, .external_lex_state = 2}, - [5005] = {.lex_state = 117, .external_lex_state = 2}, - [5006] = {.lex_state = 117, .external_lex_state = 2}, - [5007] = {.lex_state = 116, .external_lex_state = 2}, - [5008] = {.lex_state = 122, .external_lex_state = 2}, - [5009] = {.lex_state = 122, .external_lex_state = 2}, - [5010] = {.lex_state = 117, .external_lex_state = 2}, - [5011] = {.lex_state = 122, .external_lex_state = 2}, - [5012] = {.lex_state = 117, .external_lex_state = 2}, - [5013] = {.lex_state = 122, .external_lex_state = 2}, - [5014] = {.lex_state = 122, .external_lex_state = 2}, - [5015] = {.lex_state = 122, .external_lex_state = 2}, - [5016] = {.lex_state = 120, .external_lex_state = 2}, - [5017] = {.lex_state = 122, .external_lex_state = 2}, - [5018] = {.lex_state = 122, .external_lex_state = 2}, - [5019] = {.lex_state = 117, .external_lex_state = 2}, - [5020] = {.lex_state = 117, .external_lex_state = 3}, - [5021] = {.lex_state = 117, .external_lex_state = 2}, - [5022] = {.lex_state = 122, .external_lex_state = 2}, - [5023] = {.lex_state = 117, .external_lex_state = 2}, - [5024] = {.lex_state = 122, .external_lex_state = 2}, - [5025] = {.lex_state = 120, .external_lex_state = 2}, - [5026] = {.lex_state = 117, .external_lex_state = 2}, - [5027] = {.lex_state = 117, .external_lex_state = 2}, - [5028] = {.lex_state = 120, .external_lex_state = 2}, - [5029] = {.lex_state = 117, .external_lex_state = 2}, - [5030] = {.lex_state = 117, .external_lex_state = 2}, - [5031] = {.lex_state = 117, .external_lex_state = 2}, - [5032] = {.lex_state = 117, .external_lex_state = 2}, - [5033] = {.lex_state = 120, .external_lex_state = 2}, - [5034] = {.lex_state = 122, .external_lex_state = 2}, - [5035] = {.lex_state = 116, .external_lex_state = 2}, - [5036] = {.lex_state = 117, .external_lex_state = 2}, - [5037] = {.lex_state = 117, .external_lex_state = 2}, - [5038] = {.lex_state = 117, .external_lex_state = 2}, - [5039] = {.lex_state = 117, .external_lex_state = 2}, - [5040] = {.lex_state = 122, .external_lex_state = 2}, - [5041] = {.lex_state = 116, .external_lex_state = 2}, - [5042] = {.lex_state = 48, .external_lex_state = 2}, - [5043] = {.lex_state = 120, .external_lex_state = 2}, - [5044] = {.lex_state = 86, .external_lex_state = 2}, - [5045] = {.lex_state = 120, .external_lex_state = 2}, - [5046] = {.lex_state = 86, .external_lex_state = 2}, - [5047] = {.lex_state = 120, .external_lex_state = 2}, - [5048] = {.lex_state = 120, .external_lex_state = 2}, - [5049] = {.lex_state = 48, .external_lex_state = 2}, - [5050] = {.lex_state = 48, .external_lex_state = 2}, - [5051] = {.lex_state = 120, .external_lex_state = 2}, - [5052] = {.lex_state = 120, .external_lex_state = 2}, - [5053] = {.lex_state = 86, .external_lex_state = 2}, - [5054] = {.lex_state = 118, .external_lex_state = 2}, - [5055] = {.lex_state = 115, .external_lex_state = 2}, - [5056] = {.lex_state = 120, .external_lex_state = 2}, - [5057] = {.lex_state = 48, .external_lex_state = 2}, - [5058] = {.lex_state = 116, .external_lex_state = 2}, - [5059] = {.lex_state = 86, .external_lex_state = 2}, - [5060] = {.lex_state = 48, .external_lex_state = 2}, - [5061] = {.lex_state = 86, .external_lex_state = 2}, - [5062] = {.lex_state = 120, .external_lex_state = 2}, - [5063] = {.lex_state = 48, .external_lex_state = 2}, - [5064] = {.lex_state = 86, .external_lex_state = 2}, - [5065] = {.lex_state = 48, .external_lex_state = 2}, - [5066] = {.lex_state = 120, .external_lex_state = 2}, - [5067] = {.lex_state = 48, .external_lex_state = 2}, - [5068] = {.lex_state = 120, .external_lex_state = 2}, - [5069] = {.lex_state = 117, .external_lex_state = 3}, - [5070] = {.lex_state = 115, .external_lex_state = 2}, - [5071] = {.lex_state = 86, .external_lex_state = 2}, - [5072] = {.lex_state = 118, .external_lex_state = 2}, - [5073] = {.lex_state = 120, .external_lex_state = 2}, - [5074] = {.lex_state = 86, .external_lex_state = 2}, - [5075] = {.lex_state = 120, .external_lex_state = 2}, - [5076] = {.lex_state = 48, .external_lex_state = 2}, - [5077] = {.lex_state = 120, .external_lex_state = 2}, - [5078] = {.lex_state = 120, .external_lex_state = 2}, - [5079] = {.lex_state = 1, .external_lex_state = 5}, - [5080] = {.lex_state = 116, .external_lex_state = 2}, - [5081] = {.lex_state = 1, .external_lex_state = 5}, - [5082] = {.lex_state = 118, .external_lex_state = 2}, - [5083] = {.lex_state = 118, .external_lex_state = 2}, - [5084] = {.lex_state = 53, .external_lex_state = 2}, - [5085] = {.lex_state = 118, .external_lex_state = 2}, - [5086] = {.lex_state = 54, .external_lex_state = 2}, - [5087] = {.lex_state = 117, .external_lex_state = 2}, - [5088] = {.lex_state = 53, .external_lex_state = 2}, - [5089] = {.lex_state = 118, .external_lex_state = 2}, - [5090] = {.lex_state = 118, .external_lex_state = 2}, - [5091] = {.lex_state = 118, .external_lex_state = 2}, - [5092] = {.lex_state = 120, .external_lex_state = 2}, - [5093] = {.lex_state = 118, .external_lex_state = 2}, - [5094] = {.lex_state = 118, .external_lex_state = 2}, - [5095] = {.lex_state = 118, .external_lex_state = 2}, - [5096] = {.lex_state = 4, .external_lex_state = 2}, - [5097] = {.lex_state = 118, .external_lex_state = 2}, - [5098] = {.lex_state = 118, .external_lex_state = 2}, - [5099] = {.lex_state = 120, .external_lex_state = 2}, - [5100] = {.lex_state = 118, .external_lex_state = 2}, - [5101] = {.lex_state = 120, .external_lex_state = 2}, - [5102] = {.lex_state = 118, .external_lex_state = 2}, - [5103] = {.lex_state = 118, .external_lex_state = 2}, - [5104] = {.lex_state = 120, .external_lex_state = 2}, - [5105] = {.lex_state = 53, .external_lex_state = 2}, - [5106] = {.lex_state = 4, .external_lex_state = 2}, - [5107] = {.lex_state = 120, .external_lex_state = 2}, - [5108] = {.lex_state = 118, .external_lex_state = 2}, - [5109] = {.lex_state = 118, .external_lex_state = 2}, - [5110] = {.lex_state = 118, .external_lex_state = 2}, - [5111] = {.lex_state = 53, .external_lex_state = 2}, - [5112] = {.lex_state = 53, .external_lex_state = 2}, - [5113] = {.lex_state = 118, .external_lex_state = 2}, - [5114] = {.lex_state = 118, .external_lex_state = 2}, - [5115] = {.lex_state = 53, .external_lex_state = 2}, - [5116] = {.lex_state = 27, .external_lex_state = 2}, - [5117] = {.lex_state = 120, .external_lex_state = 2}, - [5118] = {.lex_state = 118, .external_lex_state = 2}, - [5119] = {.lex_state = 120, .external_lex_state = 2}, - [5120] = {.lex_state = 4, .external_lex_state = 2}, - [5121] = {.lex_state = 120, .external_lex_state = 2}, - [5122] = {.lex_state = 118, .external_lex_state = 2}, - [5123] = {.lex_state = 4, .external_lex_state = 2}, - [5124] = {.lex_state = 120, .external_lex_state = 2}, - [5125] = {.lex_state = 120, .external_lex_state = 2}, - [5126] = {.lex_state = 4, .external_lex_state = 2}, - [5127] = {.lex_state = 120, .external_lex_state = 2}, - [5128] = {.lex_state = 117, .external_lex_state = 2}, - [5129] = {.lex_state = 117, .external_lex_state = 2}, - [5130] = {.lex_state = 4, .external_lex_state = 2}, - [5131] = {.lex_state = 117, .external_lex_state = 2}, - [5132] = {.lex_state = 115, .external_lex_state = 2}, - [5133] = {.lex_state = 120, .external_lex_state = 2}, - [5134] = {.lex_state = 117, .external_lex_state = 2}, - [5135] = {.lex_state = 120, .external_lex_state = 2}, - [5136] = {.lex_state = 4, .external_lex_state = 2}, - [5137] = {.lex_state = 117, .external_lex_state = 2}, - [5138] = {.lex_state = 4, .external_lex_state = 2}, - [5139] = {.lex_state = 120, .external_lex_state = 2}, - [5140] = {.lex_state = 4, .external_lex_state = 2}, - [5141] = {.lex_state = 120, .external_lex_state = 2}, - [5142] = {.lex_state = 4, .external_lex_state = 2}, - [5143] = {.lex_state = 120, .external_lex_state = 2}, - [5144] = {.lex_state = 117, .external_lex_state = 2}, - [5145] = {.lex_state = 115, .external_lex_state = 2}, - [5146] = {.lex_state = 4, .external_lex_state = 2}, - [5147] = {.lex_state = 117, .external_lex_state = 2}, - [5148] = {.lex_state = 117, .external_lex_state = 2}, - [5149] = {.lex_state = 120, .external_lex_state = 2}, - [5150] = {.lex_state = 117, .external_lex_state = 2}, - [5151] = {.lex_state = 4, .external_lex_state = 2}, - [5152] = {.lex_state = 117, .external_lex_state = 2}, - [5153] = {.lex_state = 115, .external_lex_state = 2}, - [5154] = {.lex_state = 117, .external_lex_state = 2}, - [5155] = {.lex_state = 4, .external_lex_state = 2}, - [5156] = {.lex_state = 117, .external_lex_state = 2}, - [5157] = {.lex_state = 52, .external_lex_state = 2}, - [5158] = {.lex_state = 117, .external_lex_state = 2}, - [5159] = {.lex_state = 117, .external_lex_state = 2}, - [5160] = {.lex_state = 117, .external_lex_state = 2}, - [5161] = {.lex_state = 117, .external_lex_state = 2}, - [5162] = {.lex_state = 124, .external_lex_state = 2}, - [5163] = {.lex_state = 117, .external_lex_state = 2}, - [5164] = {.lex_state = 117, .external_lex_state = 2}, - [5165] = {.lex_state = 117, .external_lex_state = 2}, - [5166] = {.lex_state = 117, .external_lex_state = 2}, - [5167] = {.lex_state = 117, .external_lex_state = 2}, - [5168] = {.lex_state = 117, .external_lex_state = 2}, - [5169] = {.lex_state = 117, .external_lex_state = 2}, - [5170] = {.lex_state = 115, .external_lex_state = 2}, - [5171] = {.lex_state = 115, .external_lex_state = 2}, - [5172] = {.lex_state = 117, .external_lex_state = 2}, - [5173] = {.lex_state = 117, .external_lex_state = 2}, - [5174] = {.lex_state = 115, .external_lex_state = 2}, - [5175] = {.lex_state = 117, .external_lex_state = 2}, - [5176] = {.lex_state = 117, .external_lex_state = 2}, - [5177] = {.lex_state = 117, .external_lex_state = 2}, - [5178] = {.lex_state = 117, .external_lex_state = 2}, - [5179] = {.lex_state = 117, .external_lex_state = 2}, - [5180] = {.lex_state = 117, .external_lex_state = 2}, - [5181] = {.lex_state = 117, .external_lex_state = 2}, - [5182] = {.lex_state = 117, .external_lex_state = 2}, - [5183] = {.lex_state = 117, .external_lex_state = 2}, - [5184] = {.lex_state = 117, .external_lex_state = 2}, - [5185] = {.lex_state = 4, .external_lex_state = 2}, - [5186] = {.lex_state = 117, .external_lex_state = 2}, - [5187] = {.lex_state = 117, .external_lex_state = 2}, - [5188] = {.lex_state = 117, .external_lex_state = 2}, - [5189] = {.lex_state = 4, .external_lex_state = 2}, - [5190] = {.lex_state = 117, .external_lex_state = 2}, - [5191] = {.lex_state = 117, .external_lex_state = 2}, - [5192] = {.lex_state = 117, .external_lex_state = 2}, - [5193] = {.lex_state = 117, .external_lex_state = 2}, - [5194] = {.lex_state = 117, .external_lex_state = 2}, - [5195] = {.lex_state = 117, .external_lex_state = 2}, - [5196] = {.lex_state = 117, .external_lex_state = 2}, - [5197] = {.lex_state = 117, .external_lex_state = 2}, - [5198] = {.lex_state = 117, .external_lex_state = 2}, - [5199] = {.lex_state = 117, .external_lex_state = 2}, - [5200] = {.lex_state = 117, .external_lex_state = 2}, - [5201] = {.lex_state = 4, .external_lex_state = 2}, - [5202] = {.lex_state = 115, .external_lex_state = 2}, - [5203] = {.lex_state = 117, .external_lex_state = 2}, - [5204] = {.lex_state = 117, .external_lex_state = 2}, - [5205] = {.lex_state = 117, .external_lex_state = 2}, - [5206] = {.lex_state = 117, .external_lex_state = 2}, - [5207] = {.lex_state = 115, .external_lex_state = 2}, - [5208] = {.lex_state = 117, .external_lex_state = 2}, - [5209] = {.lex_state = 2, .external_lex_state = 6}, - [5210] = {.lex_state = 120, .external_lex_state = 2}, - [5211] = {.lex_state = 2, .external_lex_state = 6}, - [5212] = {.lex_state = 2, .external_lex_state = 6}, - [5213] = {.lex_state = 2, .external_lex_state = 6}, - [5214] = {.lex_state = 2, .external_lex_state = 6}, - [5215] = {.lex_state = 2, .external_lex_state = 6}, - [5216] = {.lex_state = 2, .external_lex_state = 6}, - [5217] = {.lex_state = 2, .external_lex_state = 6}, - [5218] = {.lex_state = 2, .external_lex_state = 6}, - [5219] = {.lex_state = 2, .external_lex_state = 6}, - [5220] = {.lex_state = 2, .external_lex_state = 6}, - [5221] = {.lex_state = 2, .external_lex_state = 6}, - [5222] = {.lex_state = 2, .external_lex_state = 6}, - [5223] = {.lex_state = 120, .external_lex_state = 2}, - [5224] = {.lex_state = 2, .external_lex_state = 6}, - [5225] = {.lex_state = 2, .external_lex_state = 6}, - [5226] = {.lex_state = 2, .external_lex_state = 6}, - [5227] = {.lex_state = 2, .external_lex_state = 6}, - [5228] = {.lex_state = 4, .external_lex_state = 2}, - [5229] = {.lex_state = 2, .external_lex_state = 6}, - [5230] = {.lex_state = 2, .external_lex_state = 6}, - [5231] = {.lex_state = 2, .external_lex_state = 6}, - [5232] = {.lex_state = 115, .external_lex_state = 2}, - [5233] = {.lex_state = 2, .external_lex_state = 6}, - [5234] = {.lex_state = 2, .external_lex_state = 6}, - [5235] = {.lex_state = 2, .external_lex_state = 6}, - [5236] = {.lex_state = 2, .external_lex_state = 6}, - [5237] = {.lex_state = 2, .external_lex_state = 6}, - [5238] = {.lex_state = 2, .external_lex_state = 6}, - [5239] = {.lex_state = 2, .external_lex_state = 6}, - [5240] = {.lex_state = 2, .external_lex_state = 6}, - [5241] = {.lex_state = 2, .external_lex_state = 6}, - [5242] = {.lex_state = 2, .external_lex_state = 6}, - [5243] = {.lex_state = 2, .external_lex_state = 6}, - [5244] = {.lex_state = 120, .external_lex_state = 2}, - [5245] = {.lex_state = 2, .external_lex_state = 6}, - [5246] = {.lex_state = 2, .external_lex_state = 6}, - [5247] = {.lex_state = 4, .external_lex_state = 2}, - [5248] = {.lex_state = 2, .external_lex_state = 6}, - [5249] = {.lex_state = 2, .external_lex_state = 6}, - [5250] = {.lex_state = 2, .external_lex_state = 6}, - [5251] = {.lex_state = 2, .external_lex_state = 6}, - [5252] = {.lex_state = 2, .external_lex_state = 6}, - [5253] = {.lex_state = 2, .external_lex_state = 6}, - [5254] = {.lex_state = 2, .external_lex_state = 6}, - [5255] = {.lex_state = 2, .external_lex_state = 6}, - [5256] = {.lex_state = 2, .external_lex_state = 6}, - [5257] = {.lex_state = 115, .external_lex_state = 2}, - [5258] = {.lex_state = 2, .external_lex_state = 6}, - [5259] = {.lex_state = 2, .external_lex_state = 6}, - [5260] = {.lex_state = 2, .external_lex_state = 6}, - [5261] = {.lex_state = 2, .external_lex_state = 6}, - [5262] = {.lex_state = 2, .external_lex_state = 6}, - [5263] = {.lex_state = 117, .external_lex_state = 2}, - [5264] = {.lex_state = 2, .external_lex_state = 6}, - [5265] = {.lex_state = 120, .external_lex_state = 2}, - [5266] = {.lex_state = 2, .external_lex_state = 6}, - [5267] = {.lex_state = 2, .external_lex_state = 6}, - [5268] = {.lex_state = 2, .external_lex_state = 6}, - [5269] = {.lex_state = 62, .external_lex_state = 2}, - [5270] = {.lex_state = 62, .external_lex_state = 2}, - [5271] = {.lex_state = 115, .external_lex_state = 2}, - [5272] = {.lex_state = 2, .external_lex_state = 6}, - [5273] = {.lex_state = 2, .external_lex_state = 6}, - [5274] = {.lex_state = 2, .external_lex_state = 6}, - [5275] = {.lex_state = 2, .external_lex_state = 6}, - [5276] = {.lex_state = 120, .external_lex_state = 2}, - [5277] = {.lex_state = 4, .external_lex_state = 2}, - [5278] = {.lex_state = 2, .external_lex_state = 6}, - [5279] = {.lex_state = 2, .external_lex_state = 6}, - [5280] = {.lex_state = 2, .external_lex_state = 6}, - [5281] = {.lex_state = 120, .external_lex_state = 2}, - [5282] = {.lex_state = 120, .external_lex_state = 2}, - [5283] = {.lex_state = 120, .external_lex_state = 2}, - [5284] = {.lex_state = 120, .external_lex_state = 2}, - [5285] = {.lex_state = 2, .external_lex_state = 6}, - [5286] = {.lex_state = 2, .external_lex_state = 6}, - [5287] = {.lex_state = 120, .external_lex_state = 2}, - [5288] = {.lex_state = 120, .external_lex_state = 2}, - [5289] = {.lex_state = 2, .external_lex_state = 6}, - [5290] = {.lex_state = 120, .external_lex_state = 2}, - [5291] = {.lex_state = 2, .external_lex_state = 6}, - [5292] = {.lex_state = 54, .external_lex_state = 2}, - [5293] = {.lex_state = 120, .external_lex_state = 2}, - [5294] = {.lex_state = 2, .external_lex_state = 6}, - [5295] = {.lex_state = 2, .external_lex_state = 6}, - [5296] = {.lex_state = 2, .external_lex_state = 6}, - [5297] = {.lex_state = 120, .external_lex_state = 2}, - [5298] = {.lex_state = 2, .external_lex_state = 6}, - [5299] = {.lex_state = 120, .external_lex_state = 2}, - [5300] = {.lex_state = 120, .external_lex_state = 2}, - [5301] = {.lex_state = 2, .external_lex_state = 6}, - [5302] = {.lex_state = 2, .external_lex_state = 6}, - [5303] = {.lex_state = 120, .external_lex_state = 2}, - [5304] = {.lex_state = 2, .external_lex_state = 6}, - [5305] = {.lex_state = 52, .external_lex_state = 2}, - [5306] = {.lex_state = 117, .external_lex_state = 2}, - [5307] = {.lex_state = 120, .external_lex_state = 2}, - [5308] = {.lex_state = 120, .external_lex_state = 2}, - [5309] = {.lex_state = 120, .external_lex_state = 2}, - [5310] = {.lex_state = 120, .external_lex_state = 2}, - [5311] = {.lex_state = 120, .external_lex_state = 2}, - [5312] = {.lex_state = 2, .external_lex_state = 6}, - [5313] = {.lex_state = 117, .external_lex_state = 2}, - [5314] = {.lex_state = 2, .external_lex_state = 6}, - [5315] = {.lex_state = 4, .external_lex_state = 2}, - [5316] = {.lex_state = 120, .external_lex_state = 2}, - [5317] = {.lex_state = 4, .external_lex_state = 2}, - [5318] = {.lex_state = 2, .external_lex_state = 6}, - [5319] = {.lex_state = 62, .external_lex_state = 2}, - [5320] = {.lex_state = 2, .external_lex_state = 6}, - [5321] = {.lex_state = 120, .external_lex_state = 2}, - [5322] = {.lex_state = 120, .external_lex_state = 2}, - [5323] = {.lex_state = 120, .external_lex_state = 2}, - [5324] = {.lex_state = 120, .external_lex_state = 2}, - [5325] = {.lex_state = 2, .external_lex_state = 6}, - [5326] = {.lex_state = 120, .external_lex_state = 2}, - [5327] = {.lex_state = 2, .external_lex_state = 6}, - [5328] = {.lex_state = 2, .external_lex_state = 6}, - [5329] = {.lex_state = 4, .external_lex_state = 2}, - [5330] = {.lex_state = 2, .external_lex_state = 6}, - [5331] = {.lex_state = 54, .external_lex_state = 2}, - [5332] = {.lex_state = 2, .external_lex_state = 6}, - [5333] = {.lex_state = 120, .external_lex_state = 2}, - [5334] = {.lex_state = 117, .external_lex_state = 2}, - [5335] = {.lex_state = 117, .external_lex_state = 2}, - [5336] = {.lex_state = 4, .external_lex_state = 2}, - [5337] = {.lex_state = 117, .external_lex_state = 2}, - [5338] = {.lex_state = 117, .external_lex_state = 2}, - [5339] = {.lex_state = 117, .external_lex_state = 2}, - [5340] = {.lex_state = 117, .external_lex_state = 2}, - [5341] = {.lex_state = 4, .external_lex_state = 2}, - [5342] = {.lex_state = 117, .external_lex_state = 2}, - [5343] = {.lex_state = 117, .external_lex_state = 2}, - [5344] = {.lex_state = 117, .external_lex_state = 2}, - [5345] = {.lex_state = 117, .external_lex_state = 2}, - [5346] = {.lex_state = 4, .external_lex_state = 2}, - [5347] = {.lex_state = 117, .external_lex_state = 2}, - [5348] = {.lex_state = 117, .external_lex_state = 2}, - [5349] = {.lex_state = 4, .external_lex_state = 2}, - [5350] = {.lex_state = 117, .external_lex_state = 2}, - [5351] = {.lex_state = 117, .external_lex_state = 2}, - [5352] = {.lex_state = 4, .external_lex_state = 2}, - [5353] = {.lex_state = 117, .external_lex_state = 2}, - [5354] = {.lex_state = 117, .external_lex_state = 2}, - [5355] = {.lex_state = 117, .external_lex_state = 2}, - [5356] = {.lex_state = 117, .external_lex_state = 2}, - [5357] = {.lex_state = 117, .external_lex_state = 2}, - [5358] = {.lex_state = 117, .external_lex_state = 2}, - [5359] = {.lex_state = 4, .external_lex_state = 2}, - [5360] = {.lex_state = 117, .external_lex_state = 2}, - [5361] = {.lex_state = 117, .external_lex_state = 2}, - [5362] = {.lex_state = 62, .external_lex_state = 2}, - [5363] = {.lex_state = 4, .external_lex_state = 2}, - [5364] = {.lex_state = 117, .external_lex_state = 2}, - [5365] = {.lex_state = 117, .external_lex_state = 2}, - [5366] = {.lex_state = 117, .external_lex_state = 2}, - [5367] = {.lex_state = 117, .external_lex_state = 2}, - [5368] = {.lex_state = 117, .external_lex_state = 2}, - [5369] = {.lex_state = 117, .external_lex_state = 2}, - [5370] = {.lex_state = 4, .external_lex_state = 2}, - [5371] = {.lex_state = 117, .external_lex_state = 2}, - [5372] = {.lex_state = 54, .external_lex_state = 2}, - [5373] = {.lex_state = 117, .external_lex_state = 2}, - [5374] = {.lex_state = 4, .external_lex_state = 2}, - [5375] = {.lex_state = 4, .external_lex_state = 2}, - [5376] = {.lex_state = 117, .external_lex_state = 2}, - [5377] = {.lex_state = 117, .external_lex_state = 2}, - [5378] = {.lex_state = 4, .external_lex_state = 2}, - [5379] = {.lex_state = 117, .external_lex_state = 2}, - [5380] = {.lex_state = 117, .external_lex_state = 2}, - [5381] = {.lex_state = 117, .external_lex_state = 2}, - [5382] = {.lex_state = 117, .external_lex_state = 2}, - [5383] = {.lex_state = 4, .external_lex_state = 2}, - [5384] = {.lex_state = 4, .external_lex_state = 2}, - [5385] = {.lex_state = 117, .external_lex_state = 2}, - [5386] = {.lex_state = 117, .external_lex_state = 2}, - [5387] = {.lex_state = 117, .external_lex_state = 2}, - [5388] = {.lex_state = 117, .external_lex_state = 2}, - [5389] = {.lex_state = 117, .external_lex_state = 2}, - [5390] = {.lex_state = 117, .external_lex_state = 2}, - [5391] = {.lex_state = 117, .external_lex_state = 2}, - [5392] = {.lex_state = 117, .external_lex_state = 2}, - [5393] = {.lex_state = 117, .external_lex_state = 2}, - [5394] = {.lex_state = 117, .external_lex_state = 2}, - [5395] = {.lex_state = 117, .external_lex_state = 2}, - [5396] = {.lex_state = 117, .external_lex_state = 2}, - [5397] = {.lex_state = 4, .external_lex_state = 2}, - [5398] = {.lex_state = 4, .external_lex_state = 2}, - [5399] = {.lex_state = 2, .external_lex_state = 6}, - [5400] = {.lex_state = 117, .external_lex_state = 2}, - [5401] = {.lex_state = 117, .external_lex_state = 2}, - [5402] = {.lex_state = 124, .external_lex_state = 2}, - [5403] = {.lex_state = 117, .external_lex_state = 2}, - [5404] = {.lex_state = 117, .external_lex_state = 2}, - [5405] = {.lex_state = 117, .external_lex_state = 2}, - [5406] = {.lex_state = 117, .external_lex_state = 2}, - [5407] = {.lex_state = 117, .external_lex_state = 2}, - [5408] = {.lex_state = 117, .external_lex_state = 2}, - [5409] = {.lex_state = 117, .external_lex_state = 2}, - [5410] = {.lex_state = 4, .external_lex_state = 2}, - [5411] = {.lex_state = 117, .external_lex_state = 2}, - [5412] = {.lex_state = 4, .external_lex_state = 2}, - [5413] = {.lex_state = 117, .external_lex_state = 2}, - [5414] = {.lex_state = 62, .external_lex_state = 2}, - [5415] = {.lex_state = 54, .external_lex_state = 2}, - [5416] = {.lex_state = 4, .external_lex_state = 2}, - [5417] = {.lex_state = 4, .external_lex_state = 2}, - [5418] = {.lex_state = 4, .external_lex_state = 2}, - [5419] = {.lex_state = 4, .external_lex_state = 2}, - [5420] = {.lex_state = 117, .external_lex_state = 2}, - [5421] = {.lex_state = 117, .external_lex_state = 2}, - [5422] = {.lex_state = 4, .external_lex_state = 2}, - [5423] = {.lex_state = 62, .external_lex_state = 2}, - [5424] = {.lex_state = 117, .external_lex_state = 2}, - [5425] = {.lex_state = 4, .external_lex_state = 2}, - [5426] = {.lex_state = 117, .external_lex_state = 2}, - [5427] = {.lex_state = 117, .external_lex_state = 2}, - [5428] = {.lex_state = 4, .external_lex_state = 2}, - [5429] = {.lex_state = 4, .external_lex_state = 2}, - [5430] = {.lex_state = 117, .external_lex_state = 2}, - [5431] = {.lex_state = 4, .external_lex_state = 2}, - [5432] = {.lex_state = 117, .external_lex_state = 2}, - [5433] = {.lex_state = 4, .external_lex_state = 2}, - [5434] = {.lex_state = 4, .external_lex_state = 2}, - [5435] = {.lex_state = 4, .external_lex_state = 2}, - [5436] = {.lex_state = 4, .external_lex_state = 2}, - [5437] = {.lex_state = 117, .external_lex_state = 2}, - [5438] = {.lex_state = 124, .external_lex_state = 2}, - [5439] = {.lex_state = 62, .external_lex_state = 2}, - [5440] = {.lex_state = 117, .external_lex_state = 2}, - [5441] = {.lex_state = 4, .external_lex_state = 2}, - [5442] = {.lex_state = 4, .external_lex_state = 2}, - [5443] = {.lex_state = 4, .external_lex_state = 2}, - [5444] = {.lex_state = 4, .external_lex_state = 2}, - [5445] = {.lex_state = 54, .external_lex_state = 2}, - [5446] = {.lex_state = 4, .external_lex_state = 2}, - [5447] = {.lex_state = 4, .external_lex_state = 2}, - [5448] = {.lex_state = 117, .external_lex_state = 2}, - [5449] = {.lex_state = 117, .external_lex_state = 2}, - [5450] = {.lex_state = 4, .external_lex_state = 2}, - [5451] = {.lex_state = 4, .external_lex_state = 2}, - [5452] = {.lex_state = 4, .external_lex_state = 2}, - [5453] = {.lex_state = 117, .external_lex_state = 2}, - [5454] = {.lex_state = 4, .external_lex_state = 2}, - [5455] = {.lex_state = 4, .external_lex_state = 2}, - [5456] = {.lex_state = 117, .external_lex_state = 2}, - [5457] = {.lex_state = 4, .external_lex_state = 2}, - [5458] = {.lex_state = 2, .external_lex_state = 6}, - [5459] = {.lex_state = 4, .external_lex_state = 2}, - [5460] = {.lex_state = 4, .external_lex_state = 2}, - [5461] = {.lex_state = 4, .external_lex_state = 2}, - [5462] = {.lex_state = 4, .external_lex_state = 2}, - [5463] = {.lex_state = 4, .external_lex_state = 2}, - [5464] = {.lex_state = 4, .external_lex_state = 2}, - [5465] = {.lex_state = 4, .external_lex_state = 2}, - [5466] = {.lex_state = 4, .external_lex_state = 2}, - [5467] = {.lex_state = 4, .external_lex_state = 2}, - [5468] = {.lex_state = 4, .external_lex_state = 2}, - [5469] = {.lex_state = 4, .external_lex_state = 2}, - [5470] = {.lex_state = 4, .external_lex_state = 2}, - [5471] = {.lex_state = 4, .external_lex_state = 2}, - [5472] = {.lex_state = 4, .external_lex_state = 2}, - [5473] = {.lex_state = 4, .external_lex_state = 2}, - [5474] = {.lex_state = 4, .external_lex_state = 2}, - [5475] = {.lex_state = 4, .external_lex_state = 2}, - [5476] = {.lex_state = 117, .external_lex_state = 2}, - [5477] = {.lex_state = 62, .external_lex_state = 2}, - [5478] = {.lex_state = 120, .external_lex_state = 2}, - [5479] = {.lex_state = 117, .external_lex_state = 2}, - [5480] = {.lex_state = 117, .external_lex_state = 2}, - [5481] = {.lex_state = 117, .external_lex_state = 2}, - [5482] = {.lex_state = 120, .external_lex_state = 2}, - [5483] = {.lex_state = 62, .external_lex_state = 2}, - [5484] = {.lex_state = 117, .external_lex_state = 2}, - [5485] = {.lex_state = 4, .external_lex_state = 2}, - [5486] = {.lex_state = 117, .external_lex_state = 2}, - [5487] = {.lex_state = 117, .external_lex_state = 2}, - [5488] = {.lex_state = 117, .external_lex_state = 2}, - [5489] = {.lex_state = 120, .external_lex_state = 2}, - [5490] = {.lex_state = 2, .external_lex_state = 6}, - [5491] = {.lex_state = 117, .external_lex_state = 2}, - [5492] = {.lex_state = 117, .external_lex_state = 2}, - [5493] = {.lex_state = 62, .external_lex_state = 2}, - [5494] = {.lex_state = 62, .external_lex_state = 2}, - [5495] = {.lex_state = 120, .external_lex_state = 2}, - [5496] = {.lex_state = 4, .external_lex_state = 2}, - [5497] = {.lex_state = 120, .external_lex_state = 2}, - [5498] = {.lex_state = 120, .external_lex_state = 2}, - [5499] = {.lex_state = 120, .external_lex_state = 2}, - [5500] = {.lex_state = 120, .external_lex_state = 2}, - [5501] = {.lex_state = 120, .external_lex_state = 2}, - [5502] = {.lex_state = 120, .external_lex_state = 2}, - [5503] = {.lex_state = 120, .external_lex_state = 2}, - [5504] = {.lex_state = 120, .external_lex_state = 2}, - [5505] = {.lex_state = 120, .external_lex_state = 2}, - [5506] = {.lex_state = 120, .external_lex_state = 2}, - [5507] = {.lex_state = 120, .external_lex_state = 2}, - [5508] = {.lex_state = 120, .external_lex_state = 2}, - [5509] = {.lex_state = 120, .external_lex_state = 2}, - [5510] = {.lex_state = 120, .external_lex_state = 2}, - [5511] = {.lex_state = 4, .external_lex_state = 2}, - [5512] = {.lex_state = 4, .external_lex_state = 2}, - [5513] = {.lex_state = 62, .external_lex_state = 2}, - [5514] = {.lex_state = 120, .external_lex_state = 2}, - [5515] = {.lex_state = 4, .external_lex_state = 2}, - [5516] = {.lex_state = 4, .external_lex_state = 2}, - [5517] = {.lex_state = 4, .external_lex_state = 2}, - [5518] = {.lex_state = 120, .external_lex_state = 2}, - [5519] = {.lex_state = 4, .external_lex_state = 2}, - [5520] = {.lex_state = 4, .external_lex_state = 2}, - [5521] = {.lex_state = 120, .external_lex_state = 2}, - [5522] = {.lex_state = 4, .external_lex_state = 2}, - [5523] = {.lex_state = 4, .external_lex_state = 2}, - [5524] = {.lex_state = 4, .external_lex_state = 2}, - [5525] = {.lex_state = 4, .external_lex_state = 2}, - [5526] = {.lex_state = 120, .external_lex_state = 2}, - [5527] = {.lex_state = 63, .external_lex_state = 2}, - [5528] = {.lex_state = 63, .external_lex_state = 2}, - [5529] = {.lex_state = 63, .external_lex_state = 2}, - [5530] = {.lex_state = 4, .external_lex_state = 2}, - [5531] = {.lex_state = 4, .external_lex_state = 2}, - [5532] = {.lex_state = 4, .external_lex_state = 2}, - [5533] = {.lex_state = 4, .external_lex_state = 2}, - [5534] = {.lex_state = 4, .external_lex_state = 2}, - [5535] = {.lex_state = 120, .external_lex_state = 2}, - [5536] = {.lex_state = 4, .external_lex_state = 2}, - [5537] = {.lex_state = 4, .external_lex_state = 2}, - [5538] = {.lex_state = 4, .external_lex_state = 2}, - [5539] = {.lex_state = 63, .external_lex_state = 2}, - [5540] = {.lex_state = 4, .external_lex_state = 2}, - [5541] = {.lex_state = 63, .external_lex_state = 2}, - [5542] = {.lex_state = 4, .external_lex_state = 2}, - [5543] = {.lex_state = 4, .external_lex_state = 2}, - [5544] = {.lex_state = 120, .external_lex_state = 2}, - [5545] = {.lex_state = 4, .external_lex_state = 2}, - [5546] = {.lex_state = 63, .external_lex_state = 2}, - [5547] = {.lex_state = 4, .external_lex_state = 2}, - [5548] = {.lex_state = 4, .external_lex_state = 2}, - [5549] = {.lex_state = 4, .external_lex_state = 2}, - [5550] = {.lex_state = 4, .external_lex_state = 2}, - [5551] = {.lex_state = 4, .external_lex_state = 2}, - [5552] = {.lex_state = 63, .external_lex_state = 2}, - [5553] = {.lex_state = 63, .external_lex_state = 2}, - [5554] = {.lex_state = 4, .external_lex_state = 2}, - [5555] = {.lex_state = 4, .external_lex_state = 2}, - [5556] = {.lex_state = 63, .external_lex_state = 2}, - [5557] = {.lex_state = 63, .external_lex_state = 2}, - [5558] = {.lex_state = 120, .external_lex_state = 2}, - [5559] = {.lex_state = 120, .external_lex_state = 2}, - [5560] = {.lex_state = 4, .external_lex_state = 2}, - [5561] = {.lex_state = 115, .external_lex_state = 2}, - [5562] = {.lex_state = 63, .external_lex_state = 2}, - [5563] = {.lex_state = 4, .external_lex_state = 2}, - [5564] = {.lex_state = 4, .external_lex_state = 2}, - [5565] = {.lex_state = 120, .external_lex_state = 2}, - [5566] = {.lex_state = 4, .external_lex_state = 2}, - [5567] = {.lex_state = 115, .external_lex_state = 2}, - [5568] = {.lex_state = 4, .external_lex_state = 2}, - [5569] = {.lex_state = 120, .external_lex_state = 2}, - [5570] = {.lex_state = 115, .external_lex_state = 2}, - [5571] = {.lex_state = 4, .external_lex_state = 2}, - [5572] = {.lex_state = 63, .external_lex_state = 2}, - [5573] = {.lex_state = 4, .external_lex_state = 2}, - [5574] = {.lex_state = 63, .external_lex_state = 2}, - [5575] = {.lex_state = 117, .external_lex_state = 2}, - [5576] = {.lex_state = 117, .external_lex_state = 2}, - [5577] = {.lex_state = 117, .external_lex_state = 2}, - [5578] = {.lex_state = 4, .external_lex_state = 2}, - [5579] = {.lex_state = 120, .external_lex_state = 2}, - [5580] = {.lex_state = 4, .external_lex_state = 2}, - [5581] = {.lex_state = 63, .external_lex_state = 2}, - [5582] = {.lex_state = 120, .external_lex_state = 2}, - [5583] = {.lex_state = 124, .external_lex_state = 2}, - [5584] = {.lex_state = 120, .external_lex_state = 2}, - [5585] = {.lex_state = 115, .external_lex_state = 2}, - [5586] = {.lex_state = 120, .external_lex_state = 2}, - [5587] = {.lex_state = 63, .external_lex_state = 2}, - [5588] = {.lex_state = 4, .external_lex_state = 2}, - [5589] = {.lex_state = 115, .external_lex_state = 2}, - [5590] = {.lex_state = 120, .external_lex_state = 2}, - [5591] = {.lex_state = 85, .external_lex_state = 7}, - [5592] = {.lex_state = 85, .external_lex_state = 7}, - [5593] = {.lex_state = 4, .external_lex_state = 2}, - [5594] = {.lex_state = 117, .external_lex_state = 2}, - [5595] = {.lex_state = 4, .external_lex_state = 2}, - [5596] = {.lex_state = 85, .external_lex_state = 7}, - [5597] = {.lex_state = 85, .external_lex_state = 7}, - [5598] = {.lex_state = 4, .external_lex_state = 2}, - [5599] = {.lex_state = 115, .external_lex_state = 2}, - [5600] = {.lex_state = 115, .external_lex_state = 2}, - [5601] = {.lex_state = 115, .external_lex_state = 2}, - [5602] = {.lex_state = 115, .external_lex_state = 2}, - [5603] = {.lex_state = 115, .external_lex_state = 2}, - [5604] = {.lex_state = 4, .external_lex_state = 2}, - [5605] = {.lex_state = 85, .external_lex_state = 7}, - [5606] = {.lex_state = 117, .external_lex_state = 2}, - [5607] = {.lex_state = 117, .external_lex_state = 2}, - [5608] = {.lex_state = 4, .external_lex_state = 2}, - [5609] = {.lex_state = 85, .external_lex_state = 7}, - [5610] = {.lex_state = 85, .external_lex_state = 7}, - [5611] = {.lex_state = 85, .external_lex_state = 7}, - [5612] = {.lex_state = 85, .external_lex_state = 7}, - [5613] = {.lex_state = 120, .external_lex_state = 2}, - [5614] = {.lex_state = 85, .external_lex_state = 7}, - [5615] = {.lex_state = 4, .external_lex_state = 2}, - [5616] = {.lex_state = 85, .external_lex_state = 7}, - [5617] = {.lex_state = 85, .external_lex_state = 7}, - [5618] = {.lex_state = 85, .external_lex_state = 7}, - [5619] = {.lex_state = 85, .external_lex_state = 7}, - [5620] = {.lex_state = 4, .external_lex_state = 2}, - [5621] = {.lex_state = 85, .external_lex_state = 7}, - [5622] = {.lex_state = 120, .external_lex_state = 2}, - [5623] = {.lex_state = 4, .external_lex_state = 2}, - [5624] = {.lex_state = 85, .external_lex_state = 7}, - [5625] = {.lex_state = 117, .external_lex_state = 2}, - [5626] = {.lex_state = 117, .external_lex_state = 2}, - [5627] = {.lex_state = 4, .external_lex_state = 2}, - [5628] = {.lex_state = 85, .external_lex_state = 7}, - [5629] = {.lex_state = 4, .external_lex_state = 2}, - [5630] = {.lex_state = 4, .external_lex_state = 2}, - [5631] = {.lex_state = 117, .external_lex_state = 2}, - [5632] = {.lex_state = 4, .external_lex_state = 2}, - [5633] = {.lex_state = 115, .external_lex_state = 2}, - [5634] = {.lex_state = 85, .external_lex_state = 7}, - [5635] = {.lex_state = 115, .external_lex_state = 2}, - [5636] = {.lex_state = 85, .external_lex_state = 7}, - [5637] = {.lex_state = 117, .external_lex_state = 2}, - [5638] = {.lex_state = 117, .external_lex_state = 2}, - [5639] = {.lex_state = 4, .external_lex_state = 2}, - [5640] = {.lex_state = 117, .external_lex_state = 2}, - [5641] = {.lex_state = 85, .external_lex_state = 7}, - [5642] = {.lex_state = 117, .external_lex_state = 2}, - [5643] = {.lex_state = 4, .external_lex_state = 2}, - [5644] = {.lex_state = 85, .external_lex_state = 7}, - [5645] = {.lex_state = 117, .external_lex_state = 2}, - [5646] = {.lex_state = 117, .external_lex_state = 2}, - [5647] = {.lex_state = 120, .external_lex_state = 2}, - [5648] = {.lex_state = 85, .external_lex_state = 7}, - [5649] = {.lex_state = 4, .external_lex_state = 2}, - [5650] = {.lex_state = 120, .external_lex_state = 2}, - [5651] = {.lex_state = 115, .external_lex_state = 2}, - [5652] = {.lex_state = 124, .external_lex_state = 2}, - [5653] = {.lex_state = 66, .external_lex_state = 2}, - [5654] = {.lex_state = 117, .external_lex_state = 2}, - [5655] = {.lex_state = 117, .external_lex_state = 2}, - [5656] = {.lex_state = 4, .external_lex_state = 2}, - [5657] = {.lex_state = 115, .external_lex_state = 2}, - [5658] = {.lex_state = 4, .external_lex_state = 2}, - [5659] = {.lex_state = 4, .external_lex_state = 2}, - [5660] = {.lex_state = 115, .external_lex_state = 2}, - [5661] = {.lex_state = 4, .external_lex_state = 2}, - [5662] = {.lex_state = 4, .external_lex_state = 2}, - [5663] = {.lex_state = 120, .external_lex_state = 2}, - [5664] = {.lex_state = 120, .external_lex_state = 2}, - [5665] = {.lex_state = 4, .external_lex_state = 2}, - [5666] = {.lex_state = 117, .external_lex_state = 2}, - [5667] = {.lex_state = 4, .external_lex_state = 2}, - [5668] = {.lex_state = 124, .external_lex_state = 2}, - [5669] = {.lex_state = 4, .external_lex_state = 2}, - [5670] = {.lex_state = 115, .external_lex_state = 2}, - [5671] = {.lex_state = 115, .external_lex_state = 2}, - [5672] = {.lex_state = 120, .external_lex_state = 2}, - [5673] = {.lex_state = 4, .external_lex_state = 2}, - [5674] = {.lex_state = 120, .external_lex_state = 2}, - [5675] = {.lex_state = 117, .external_lex_state = 2}, - [5676] = {.lex_state = 117, .external_lex_state = 2}, - [5677] = {.lex_state = 4, .external_lex_state = 2}, - [5678] = {.lex_state = 4, .external_lex_state = 2}, - [5679] = {.lex_state = 117, .external_lex_state = 2}, - [5680] = {.lex_state = 4, .external_lex_state = 2}, - [5681] = {.lex_state = 4, .external_lex_state = 2}, - [5682] = {.lex_state = 4, .external_lex_state = 2}, - [5683] = {.lex_state = 4, .external_lex_state = 2}, - [5684] = {.lex_state = 4, .external_lex_state = 2}, - [5685] = {.lex_state = 4, .external_lex_state = 2}, - [5686] = {.lex_state = 66, .external_lex_state = 2}, - [5687] = {.lex_state = 120, .external_lex_state = 2}, - [5688] = {.lex_state = 124, .external_lex_state = 2}, - [5689] = {.lex_state = 117, .external_lex_state = 2}, - [5690] = {.lex_state = 4, .external_lex_state = 2}, - [5691] = {.lex_state = 4, .external_lex_state = 2}, - [5692] = {.lex_state = 4, .external_lex_state = 2}, - [5693] = {.lex_state = 4, .external_lex_state = 2}, - [5694] = {.lex_state = 117, .external_lex_state = 2}, - [5695] = {.lex_state = 115, .external_lex_state = 2}, - [5696] = {.lex_state = 120, .external_lex_state = 2}, - [5697] = {.lex_state = 4, .external_lex_state = 2}, - [5698] = {.lex_state = 27, .external_lex_state = 2}, - [5699] = {.lex_state = 66, .external_lex_state = 2}, - [5700] = {.lex_state = 4, .external_lex_state = 2}, - [5701] = {.lex_state = 4, .external_lex_state = 2}, - [5702] = {.lex_state = 117, .external_lex_state = 2}, - [5703] = {.lex_state = 66, .external_lex_state = 2}, - [5704] = {.lex_state = 4, .external_lex_state = 2}, - [5705] = {.lex_state = 4, .external_lex_state = 2}, - [5706] = {.lex_state = 4, .external_lex_state = 2}, - [5707] = {.lex_state = 27, .external_lex_state = 2}, - [5708] = {.lex_state = 4, .external_lex_state = 2}, - [5709] = {.lex_state = 4, .external_lex_state = 2}, - [5710] = {.lex_state = 120, .external_lex_state = 2}, - [5711] = {.lex_state = 4, .external_lex_state = 2}, - [5712] = {.lex_state = 66, .external_lex_state = 2}, - [5713] = {.lex_state = 4, .external_lex_state = 2}, - [5714] = {.lex_state = 27, .external_lex_state = 2}, - [5715] = {.lex_state = 66, .external_lex_state = 2}, - [5716] = {.lex_state = 117, .external_lex_state = 2}, - [5717] = {.lex_state = 66, .external_lex_state = 2}, - [5718] = {.lex_state = 117, .external_lex_state = 2}, - [5719] = {.lex_state = 4, .external_lex_state = 2}, - [5720] = {.lex_state = 66, .external_lex_state = 2}, - [5721] = {.lex_state = 115, .external_lex_state = 2}, - [5722] = {.lex_state = 115, .external_lex_state = 2}, - [5723] = {.lex_state = 4, .external_lex_state = 2}, - [5724] = {.lex_state = 4, .external_lex_state = 2}, - [5725] = {.lex_state = 66, .external_lex_state = 2}, - [5726] = {.lex_state = 66, .external_lex_state = 2}, - [5727] = {.lex_state = 120, .external_lex_state = 2}, - [5728] = {.lex_state = 4, .external_lex_state = 2}, - [5729] = {.lex_state = 27, .external_lex_state = 2}, - [5730] = {.lex_state = 4, .external_lex_state = 2}, - [5731] = {.lex_state = 4, .external_lex_state = 2}, - [5732] = {.lex_state = 117, .external_lex_state = 2}, - [5733] = {.lex_state = 4, .external_lex_state = 2}, - [5734] = {.lex_state = 117, .external_lex_state = 2}, - [5735] = {.lex_state = 117, .external_lex_state = 2}, - [5736] = {.lex_state = 117, .external_lex_state = 2}, - [5737] = {.lex_state = 120, .external_lex_state = 2}, - [5738] = {.lex_state = 4, .external_lex_state = 2}, - [5739] = {.lex_state = 120, .external_lex_state = 2}, - [5740] = {.lex_state = 66, .external_lex_state = 2}, - [5741] = {.lex_state = 27, .external_lex_state = 2}, - [5742] = {.lex_state = 115, .external_lex_state = 2}, - [5743] = {.lex_state = 117, .external_lex_state = 2}, - [5744] = {.lex_state = 4, .external_lex_state = 2}, - [5745] = {.lex_state = 120, .external_lex_state = 2}, - [5746] = {.lex_state = 4, .external_lex_state = 2}, - [5747] = {.lex_state = 117, .external_lex_state = 2}, - [5748] = {.lex_state = 4, .external_lex_state = 2}, - [5749] = {.lex_state = 4, .external_lex_state = 2}, - [5750] = {.lex_state = 115, .external_lex_state = 2}, - [5751] = {.lex_state = 66, .external_lex_state = 2}, - [5752] = {.lex_state = 117, .external_lex_state = 2}, - [5753] = {.lex_state = 117, .external_lex_state = 2}, - [5754] = {.lex_state = 27, .external_lex_state = 2}, - [5755] = {.lex_state = 4, .external_lex_state = 2}, - [5756] = {.lex_state = 4, .external_lex_state = 2}, - [5757] = {.lex_state = 4, .external_lex_state = 2}, - [5758] = {.lex_state = 4, .external_lex_state = 2}, - [5759] = {.lex_state = 4, .external_lex_state = 2}, - [5760] = {.lex_state = 4, .external_lex_state = 2}, - [5761] = {.lex_state = 117, .external_lex_state = 2}, - [5762] = {.lex_state = 27, .external_lex_state = 2}, - [5763] = {.lex_state = 117, .external_lex_state = 2}, - [5764] = {.lex_state = 4, .external_lex_state = 2}, - [5765] = {.lex_state = 117, .external_lex_state = 2}, - [5766] = {.lex_state = 115, .external_lex_state = 2}, - [5767] = {.lex_state = 4, .external_lex_state = 2}, - [5768] = {.lex_state = 4, .external_lex_state = 2}, - [5769] = {.lex_state = 4, .external_lex_state = 2}, - [5770] = {.lex_state = 4, .external_lex_state = 2}, - [5771] = {.lex_state = 4, .external_lex_state = 2}, - [5772] = {.lex_state = 4, .external_lex_state = 2}, - [5773] = {.lex_state = 117, .external_lex_state = 2}, - [5774] = {.lex_state = 27, .external_lex_state = 2}, - [5775] = {.lex_state = 27, .external_lex_state = 2}, - [5776] = {.lex_state = 4, .external_lex_state = 2}, - [5777] = {.lex_state = 4, .external_lex_state = 2}, - [5778] = {.lex_state = 4, .external_lex_state = 2}, - [5779] = {.lex_state = 4, .external_lex_state = 2}, - [5780] = {.lex_state = 4, .external_lex_state = 2}, - [5781] = {.lex_state = 4, .external_lex_state = 2}, - [5782] = {.lex_state = 4, .external_lex_state = 2}, - [5783] = {.lex_state = 115, .external_lex_state = 2}, - [5784] = {.lex_state = 4, .external_lex_state = 2}, - [5785] = {.lex_state = 66, .external_lex_state = 2}, - [5786] = {.lex_state = 4, .external_lex_state = 2}, - [5787] = {.lex_state = 115, .external_lex_state = 2}, - [5788] = {.lex_state = 4, .external_lex_state = 2}, - [5789] = {.lex_state = 4, .external_lex_state = 2}, - [5790] = {.lex_state = 4, .external_lex_state = 2}, - [5791] = {.lex_state = 4, .external_lex_state = 2}, - [5792] = {.lex_state = 4, .external_lex_state = 2}, - [5793] = {.lex_state = 4, .external_lex_state = 2}, - [5794] = {.lex_state = 4, .external_lex_state = 2}, - [5795] = {.lex_state = 117, .external_lex_state = 2}, - [5796] = {.lex_state = 4, .external_lex_state = 2}, - [5797] = {.lex_state = 120, .external_lex_state = 2}, - [5798] = {.lex_state = 4, .external_lex_state = 2}, - [5799] = {.lex_state = 4, .external_lex_state = 2}, - [5800] = {.lex_state = 27, .external_lex_state = 2}, - [5801] = {.lex_state = 117, .external_lex_state = 2}, - [5802] = {.lex_state = 117, .external_lex_state = 2}, - [5803] = {.lex_state = 27, .external_lex_state = 2}, - [5804] = {.lex_state = 117, .external_lex_state = 8}, - [5805] = {.lex_state = 32, .external_lex_state = 2}, - [5806] = {.lex_state = 117, .external_lex_state = 2}, - [5807] = {.lex_state = 117, .external_lex_state = 2}, - [5808] = {.lex_state = 117, .external_lex_state = 2}, - [5809] = {.lex_state = 4, .external_lex_state = 2}, - [5810] = {.lex_state = 117, .external_lex_state = 8}, - [5811] = {.lex_state = 27, .external_lex_state = 2}, - [5812] = {.lex_state = 32, .external_lex_state = 2}, - [5813] = {.lex_state = 117, .external_lex_state = 8}, - [5814] = {.lex_state = 4, .external_lex_state = 2}, - [5815] = {.lex_state = 9, .external_lex_state = 2}, - [5816] = {.lex_state = 9, .external_lex_state = 2}, - [5817] = {.lex_state = 9, .external_lex_state = 2}, - [5818] = {.lex_state = 27, .external_lex_state = 2}, - [5819] = {.lex_state = 117, .external_lex_state = 2}, - [5820] = {.lex_state = 9, .external_lex_state = 2}, - [5821] = {.lex_state = 4, .external_lex_state = 2}, - [5822] = {.lex_state = 9, .external_lex_state = 2}, - [5823] = {.lex_state = 4, .external_lex_state = 2}, - [5824] = {.lex_state = 32, .external_lex_state = 2}, - [5825] = {.lex_state = 27, .external_lex_state = 2}, - [5826] = {.lex_state = 27, .external_lex_state = 2}, - [5827] = {.lex_state = 27, .external_lex_state = 2}, - [5828] = {.lex_state = 27, .external_lex_state = 2}, - [5829] = {.lex_state = 27, .external_lex_state = 2}, - [5830] = {.lex_state = 27, .external_lex_state = 2}, - [5831] = {.lex_state = 27, .external_lex_state = 2}, - [5832] = {.lex_state = 117, .external_lex_state = 8}, - [5833] = {.lex_state = 27, .external_lex_state = 2}, - [5834] = {.lex_state = 117, .external_lex_state = 2}, - [5835] = {.lex_state = 27, .external_lex_state = 2}, - [5836] = {.lex_state = 9, .external_lex_state = 2}, - [5837] = {.lex_state = 27, .external_lex_state = 2}, - [5838] = {.lex_state = 27, .external_lex_state = 2}, - [5839] = {.lex_state = 4, .external_lex_state = 2}, - [5840] = {.lex_state = 9, .external_lex_state = 2}, - [5841] = {.lex_state = 117, .external_lex_state = 2}, - [5842] = {.lex_state = 4, .external_lex_state = 2}, - [5843] = {.lex_state = 115, .external_lex_state = 2}, - [5844] = {.lex_state = 117, .external_lex_state = 2}, - [5845] = {.lex_state = 4, .external_lex_state = 2}, - [5846] = {.lex_state = 27, .external_lex_state = 2}, - [5847] = {.lex_state = 117, .external_lex_state = 2}, - [5848] = {.lex_state = 117, .external_lex_state = 2}, - [5849] = {.lex_state = 117, .external_lex_state = 2}, - [5850] = {.lex_state = 4, .external_lex_state = 2}, - [5851] = {.lex_state = 4, .external_lex_state = 2}, - [5852] = {.lex_state = 117, .external_lex_state = 2}, - [5853] = {.lex_state = 117, .external_lex_state = 2}, - [5854] = {.lex_state = 117, .external_lex_state = 2}, - [5855] = {.lex_state = 117, .external_lex_state = 2}, - [5856] = {.lex_state = 27, .external_lex_state = 2}, - [5857] = {.lex_state = 27, .external_lex_state = 2}, - [5858] = {.lex_state = 27, .external_lex_state = 2}, - [5859] = {.lex_state = 117, .external_lex_state = 8}, - [5860] = {.lex_state = 9, .external_lex_state = 2}, - [5861] = {.lex_state = 117, .external_lex_state = 2}, - [5862] = {.lex_state = 4, .external_lex_state = 2}, - [5863] = {.lex_state = 117, .external_lex_state = 2}, - [5864] = {.lex_state = 117, .external_lex_state = 2}, - [5865] = {.lex_state = 32, .external_lex_state = 2}, - [5866] = {.lex_state = 4, .external_lex_state = 2}, - [5867] = {.lex_state = 4, .external_lex_state = 2}, - [5868] = {.lex_state = 117, .external_lex_state = 2}, - [5869] = {.lex_state = 117, .external_lex_state = 2}, - [5870] = {.lex_state = 117, .external_lex_state = 2}, - [5871] = {.lex_state = 4, .external_lex_state = 2}, - [5872] = {.lex_state = 4, .external_lex_state = 2}, - [5873] = {.lex_state = 117, .external_lex_state = 2}, - [5874] = {.lex_state = 27, .external_lex_state = 2}, - [5875] = {.lex_state = 117, .external_lex_state = 2}, - [5876] = {.lex_state = 27, .external_lex_state = 2}, - [5877] = {.lex_state = 117, .external_lex_state = 2}, - [5878] = {.lex_state = 117, .external_lex_state = 2}, - [5879] = {.lex_state = 4, .external_lex_state = 2}, - [5880] = {.lex_state = 117, .external_lex_state = 2}, - [5881] = {.lex_state = 27, .external_lex_state = 2}, - [5882] = {.lex_state = 117, .external_lex_state = 2}, - [5883] = {.lex_state = 27, .external_lex_state = 2}, - [5884] = {.lex_state = 4, .external_lex_state = 2}, - [5885] = {.lex_state = 27, .external_lex_state = 2}, - [5886] = {.lex_state = 117, .external_lex_state = 2}, - [5887] = {.lex_state = 117, .external_lex_state = 2}, - [5888] = {.lex_state = 27, .external_lex_state = 2}, - [5889] = {.lex_state = 27, .external_lex_state = 2}, - [5890] = {.lex_state = 27, .external_lex_state = 2}, - [5891] = {.lex_state = 117, .external_lex_state = 2}, - [5892] = {.lex_state = 27, .external_lex_state = 2}, - [5893] = {.lex_state = 27, .external_lex_state = 2}, - [5894] = {.lex_state = 117, .external_lex_state = 2}, - [5895] = {.lex_state = 27, .external_lex_state = 2}, - [5896] = {.lex_state = 27, .external_lex_state = 2}, - [5897] = {.lex_state = 4, .external_lex_state = 2}, - [5898] = {.lex_state = 27, .external_lex_state = 2}, - [5899] = {.lex_state = 27, .external_lex_state = 2}, - [5900] = {.lex_state = 117, .external_lex_state = 2}, - [5901] = {.lex_state = 117, .external_lex_state = 2}, - [5902] = {.lex_state = 27, .external_lex_state = 2}, - [5903] = {.lex_state = 9, .external_lex_state = 2}, - [5904] = {.lex_state = 27, .external_lex_state = 2}, - [5905] = {.lex_state = 117, .external_lex_state = 2}, - [5906] = {.lex_state = 9, .external_lex_state = 2}, - [5907] = {.lex_state = 117, .external_lex_state = 2}, - [5908] = {.lex_state = 117, .external_lex_state = 2}, - [5909] = {.lex_state = 4, .external_lex_state = 2}, - [5910] = {.lex_state = 4, .external_lex_state = 2}, - [5911] = {.lex_state = 27, .external_lex_state = 2}, - [5912] = {.lex_state = 27, .external_lex_state = 2}, - [5913] = {.lex_state = 4, .external_lex_state = 2}, - [5914] = {.lex_state = 4, .external_lex_state = 2}, - [5915] = {.lex_state = 117, .external_lex_state = 2}, - [5916] = {.lex_state = 4, .external_lex_state = 2}, - [5917] = {.lex_state = 27, .external_lex_state = 2}, - [5918] = {.lex_state = 117, .external_lex_state = 2}, - [5919] = {.lex_state = 4, .external_lex_state = 2}, - [5920] = {.lex_state = 4, .external_lex_state = 2}, - [5921] = {.lex_state = 27, .external_lex_state = 2}, - [5922] = {.lex_state = 27, .external_lex_state = 2}, - [5923] = {.lex_state = 4, .external_lex_state = 2}, - [5924] = {.lex_state = 27, .external_lex_state = 2}, - [5925] = {.lex_state = 27, .external_lex_state = 2}, - [5926] = {.lex_state = 27, .external_lex_state = 2}, - [5927] = {.lex_state = 117, .external_lex_state = 2}, - [5928] = {.lex_state = 27, .external_lex_state = 2}, - [5929] = {.lex_state = 117, .external_lex_state = 2}, - [5930] = {.lex_state = 117, .external_lex_state = 2}, - [5931] = {.lex_state = 117, .external_lex_state = 2}, - [5932] = {.lex_state = 117, .external_lex_state = 2}, - [5933] = {.lex_state = 4, .external_lex_state = 2}, - [5934] = {.lex_state = 27, .external_lex_state = 2}, - [5935] = {.lex_state = 117, .external_lex_state = 8}, - [5936] = {.lex_state = 27, .external_lex_state = 2}, - [5937] = {.lex_state = 27, .external_lex_state = 2}, - [5938] = {.lex_state = 27, .external_lex_state = 2}, - [5939] = {.lex_state = 4, .external_lex_state = 2}, - [5940] = {.lex_state = 117, .external_lex_state = 2}, - [5941] = {.lex_state = 32, .external_lex_state = 2}, - [5942] = {.lex_state = 27, .external_lex_state = 2}, - [5943] = {.lex_state = 4, .external_lex_state = 2}, - [5944] = {.lex_state = 27, .external_lex_state = 2}, - [5945] = {.lex_state = 27, .external_lex_state = 2}, - [5946] = {.lex_state = 117, .external_lex_state = 2}, - [5947] = {.lex_state = 27, .external_lex_state = 2}, - [5948] = {.lex_state = 117, .external_lex_state = 2}, - [5949] = {.lex_state = 32, .external_lex_state = 2}, - [5950] = {.lex_state = 117, .external_lex_state = 2}, - [5951] = {.lex_state = 27, .external_lex_state = 2}, - [5952] = {.lex_state = 4, .external_lex_state = 2}, - [5953] = {.lex_state = 27, .external_lex_state = 2}, - [5954] = {.lex_state = 27, .external_lex_state = 2}, - [5955] = {.lex_state = 27, .external_lex_state = 2}, - [5956] = {.lex_state = 27, .external_lex_state = 2}, - [5957] = {.lex_state = 27, .external_lex_state = 2}, - [5958] = {.lex_state = 117, .external_lex_state = 8}, - [5959] = {.lex_state = 4, .external_lex_state = 2}, - [5960] = {.lex_state = 4, .external_lex_state = 2}, - [5961] = {.lex_state = 27, .external_lex_state = 2}, - [5962] = {.lex_state = 117, .external_lex_state = 2}, - [5963] = {.lex_state = 4, .external_lex_state = 2}, - [5964] = {.lex_state = 117, .external_lex_state = 2}, - [5965] = {.lex_state = 27, .external_lex_state = 2}, - [5966] = {.lex_state = 27, .external_lex_state = 2}, - [5967] = {.lex_state = 27, .external_lex_state = 2}, - [5968] = {.lex_state = 117, .external_lex_state = 2}, - [5969] = {.lex_state = 27, .external_lex_state = 2}, - [5970] = {.lex_state = 117, .external_lex_state = 2}, - [5971] = {.lex_state = 4, .external_lex_state = 2}, - [5972] = {.lex_state = 4, .external_lex_state = 2}, - [5973] = {.lex_state = 9, .external_lex_state = 2}, - [5974] = {.lex_state = 117, .external_lex_state = 2}, - [5975] = {.lex_state = 9, .external_lex_state = 2}, - [5976] = {.lex_state = 27, .external_lex_state = 2}, - [5977] = {.lex_state = 27, .external_lex_state = 2}, - [5978] = {.lex_state = 27, .external_lex_state = 2}, - [5979] = {.lex_state = 27, .external_lex_state = 2}, - [5980] = {.lex_state = 4, .external_lex_state = 2}, - [5981] = {.lex_state = 27, .external_lex_state = 2}, - [5982] = {.lex_state = 4, .external_lex_state = 2}, - [5983] = {.lex_state = 27, .external_lex_state = 2}, - [5984] = {.lex_state = 27, .external_lex_state = 2}, - [5985] = {.lex_state = 27, .external_lex_state = 2}, - [5986] = {.lex_state = 27, .external_lex_state = 2}, - [5987] = {.lex_state = 27, .external_lex_state = 2}, - [5988] = {.lex_state = 117, .external_lex_state = 2}, - [5989] = {.lex_state = 27, .external_lex_state = 2}, - [5990] = {.lex_state = 27, .external_lex_state = 2}, - [5991] = {.lex_state = 27, .external_lex_state = 2}, - [5992] = {.lex_state = 27, .external_lex_state = 2}, - [5993] = {.lex_state = 117, .external_lex_state = 2}, - [5994] = {.lex_state = 117, .external_lex_state = 2}, - [5995] = {.lex_state = 27, .external_lex_state = 2}, - [5996] = {.lex_state = 27, .external_lex_state = 2}, - [5997] = {.lex_state = 117, .external_lex_state = 8}, - [5998] = {.lex_state = 117, .external_lex_state = 8}, - [5999] = {.lex_state = 4, .external_lex_state = 2}, - [6000] = {.lex_state = 4, .external_lex_state = 2}, - [6001] = {.lex_state = 27, .external_lex_state = 2}, - [6002] = {.lex_state = 4, .external_lex_state = 2}, - [6003] = {.lex_state = 117, .external_lex_state = 2}, - [6004] = {.lex_state = 4, .external_lex_state = 2}, - [6005] = {.lex_state = 117, .external_lex_state = 2}, - [6006] = {.lex_state = 117, .external_lex_state = 2}, - [6007] = {.lex_state = 117, .external_lex_state = 2}, - [6008] = {.lex_state = 4, .external_lex_state = 2}, - [6009] = {.lex_state = 120, .external_lex_state = 2}, - [6010] = {.lex_state = 4, .external_lex_state = 2}, - [6011] = {.lex_state = 4, .external_lex_state = 2}, - [6012] = {.lex_state = 117, .external_lex_state = 2}, - [6013] = {.lex_state = 4, .external_lex_state = 2}, - [6014] = {.lex_state = 4, .external_lex_state = 2}, - [6015] = {.lex_state = 4, .external_lex_state = 2}, - [6016] = {.lex_state = 117, .external_lex_state = 2}, - [6017] = {.lex_state = 117, .external_lex_state = 2}, - [6018] = {.lex_state = 4, .external_lex_state = 2}, - [6019] = {.lex_state = 117, .external_lex_state = 2}, - [6020] = {.lex_state = 117, .external_lex_state = 2}, - [6021] = {.lex_state = 117, .external_lex_state = 2}, - [6022] = {.lex_state = 117, .external_lex_state = 2}, - [6023] = {.lex_state = 4, .external_lex_state = 2}, - [6024] = {.lex_state = 120, .external_lex_state = 2}, - [6025] = {.lex_state = 4, .external_lex_state = 2}, - [6026] = {.lex_state = 4, .external_lex_state = 2}, - [6027] = {.lex_state = 4, .external_lex_state = 2}, - [6028] = {.lex_state = 117, .external_lex_state = 2}, - [6029] = {.lex_state = 4, .external_lex_state = 2}, - [6030] = {.lex_state = 120, .external_lex_state = 2}, - [6031] = {.lex_state = 117, .external_lex_state = 2}, - [6032] = {.lex_state = 117, .external_lex_state = 2}, - [6033] = {.lex_state = 4, .external_lex_state = 2}, - [6034] = {.lex_state = 117, .external_lex_state = 2}, - [6035] = {.lex_state = 117, .external_lex_state = 2}, - [6036] = {.lex_state = 117, .external_lex_state = 2}, - [6037] = {.lex_state = 117, .external_lex_state = 2}, - [6038] = {.lex_state = 4, .external_lex_state = 2}, - [6039] = {.lex_state = 117, .external_lex_state = 2}, - [6040] = {.lex_state = 117, .external_lex_state = 2}, - [6041] = {.lex_state = 117, .external_lex_state = 2}, - [6042] = {.lex_state = 117, .external_lex_state = 2}, - [6043] = {.lex_state = 117, .external_lex_state = 2}, - [6044] = {.lex_state = 4, .external_lex_state = 2}, - [6045] = {.lex_state = 4, .external_lex_state = 2}, - [6046] = {.lex_state = 4, .external_lex_state = 2}, - [6047] = {.lex_state = 4, .external_lex_state = 2}, - [6048] = {.lex_state = 4, .external_lex_state = 2}, - [6049] = {.lex_state = 117, .external_lex_state = 2}, - [6050] = {.lex_state = 29, .external_lex_state = 2}, - [6051] = {.lex_state = 4, .external_lex_state = 2}, - [6052] = {.lex_state = 4, .external_lex_state = 2}, - [6053] = {.lex_state = 120, .external_lex_state = 2}, - [6054] = {.lex_state = 4, .external_lex_state = 2}, - [6055] = {.lex_state = 117, .external_lex_state = 2}, - [6056] = {.lex_state = 4, .external_lex_state = 2}, - [6057] = {.lex_state = 4, .external_lex_state = 2}, - [6058] = {.lex_state = 117, .external_lex_state = 2}, - [6059] = {.lex_state = 4, .external_lex_state = 2}, - [6060] = {.lex_state = 117, .external_lex_state = 2}, - [6061] = {.lex_state = 4, .external_lex_state = 2}, - [6062] = {.lex_state = 117, .external_lex_state = 2}, - [6063] = {.lex_state = 4, .external_lex_state = 2}, - [6064] = {.lex_state = 117, .external_lex_state = 2}, - [6065] = {.lex_state = 117, .external_lex_state = 2}, - [6066] = {.lex_state = 120, .external_lex_state = 2}, - [6067] = {.lex_state = 117, .external_lex_state = 2}, - [6068] = {.lex_state = 4, .external_lex_state = 2}, - [6069] = {.lex_state = 120, .external_lex_state = 2}, - [6070] = {.lex_state = 117, .external_lex_state = 2}, - [6071] = {.lex_state = 29, .external_lex_state = 2}, - [6072] = {.lex_state = 4, .external_lex_state = 2}, - [6073] = {.lex_state = 29, .external_lex_state = 2}, - [6074] = {.lex_state = 117, .external_lex_state = 2}, - [6075] = {.lex_state = 4, .external_lex_state = 2}, - [6076] = {.lex_state = 4, .external_lex_state = 2}, - [6077] = {.lex_state = 117, .external_lex_state = 2}, - [6078] = {.lex_state = 120, .external_lex_state = 2}, - [6079] = {.lex_state = 117, .external_lex_state = 2}, - [6080] = {.lex_state = 117, .external_lex_state = 2}, - [6081] = {.lex_state = 117, .external_lex_state = 2}, - [6082] = {.lex_state = 117, .external_lex_state = 2}, - [6083] = {.lex_state = 117, .external_lex_state = 2}, - [6084] = {.lex_state = 117, .external_lex_state = 2}, - [6085] = {.lex_state = 117, .external_lex_state = 2}, - [6086] = {.lex_state = 117, .external_lex_state = 2}, - [6087] = {.lex_state = 117, .external_lex_state = 2}, - [6088] = {.lex_state = 117, .external_lex_state = 2}, - [6089] = {.lex_state = 4, .external_lex_state = 2}, - [6090] = {.lex_state = 115, .external_lex_state = 2}, - [6091] = {.lex_state = 117, .external_lex_state = 2}, - [6092] = {.lex_state = 4, .external_lex_state = 2}, - [6093] = {.lex_state = 4, .external_lex_state = 2}, - [6094] = {.lex_state = 9, .external_lex_state = 2}, - [6095] = {.lex_state = 117, .external_lex_state = 2}, - [6096] = {.lex_state = 117, .external_lex_state = 2}, - [6097] = {.lex_state = 117, .external_lex_state = 2}, - [6098] = {.lex_state = 29, .external_lex_state = 2}, - [6099] = {.lex_state = 9, .external_lex_state = 2}, - [6100] = {.lex_state = 117, .external_lex_state = 2}, - [6101] = {.lex_state = 117, .external_lex_state = 2}, - [6102] = {.lex_state = 36, .external_lex_state = 2}, - [6103] = {.lex_state = 117, .external_lex_state = 2}, - [6104] = {.lex_state = 30, .external_lex_state = 2}, - [6105] = {.lex_state = 30, .external_lex_state = 2}, - [6106] = {.lex_state = 117, .external_lex_state = 2}, - [6107] = {.lex_state = 117, .external_lex_state = 2}, - [6108] = {.lex_state = 117, .external_lex_state = 2}, - [6109] = {.lex_state = 117, .external_lex_state = 2}, - [6110] = {.lex_state = 117, .external_lex_state = 2}, - [6111] = {.lex_state = 117, .external_lex_state = 2}, - [6112] = {.lex_state = 117, .external_lex_state = 2}, - [6113] = {.lex_state = 117, .external_lex_state = 2}, - [6114] = {.lex_state = 30, .external_lex_state = 2}, - [6115] = {.lex_state = 117, .external_lex_state = 2}, - [6116] = {.lex_state = 117, .external_lex_state = 2}, - [6117] = {.lex_state = 69, .external_lex_state = 8}, - [6118] = {.lex_state = 117, .external_lex_state = 2}, - [6119] = {.lex_state = 117, .external_lex_state = 2}, - [6120] = {.lex_state = 117, .external_lex_state = 2}, - [6121] = {.lex_state = 117, .external_lex_state = 2}, - [6122] = {.lex_state = 32, .external_lex_state = 2}, - [6123] = {.lex_state = 117, .external_lex_state = 2}, - [6124] = {.lex_state = 117, .external_lex_state = 2}, - [6125] = {.lex_state = 117, .external_lex_state = 2}, - [6126] = {.lex_state = 117, .external_lex_state = 2}, - [6127] = {.lex_state = 117, .external_lex_state = 2}, - [6128] = {.lex_state = 117, .external_lex_state = 2}, - [6129] = {.lex_state = 117, .external_lex_state = 2}, - [6130] = {.lex_state = 36, .external_lex_state = 2}, - [6131] = {.lex_state = 117, .external_lex_state = 2}, - [6132] = {.lex_state = 32, .external_lex_state = 2}, - [6133] = {.lex_state = 32, .external_lex_state = 2}, - [6134] = {.lex_state = 117, .external_lex_state = 2}, - [6135] = {.lex_state = 4, .external_lex_state = 2}, - [6136] = {.lex_state = 29, .external_lex_state = 2}, - [6137] = {.lex_state = 8, .external_lex_state = 2}, - [6138] = {.lex_state = 29, .external_lex_state = 2}, - [6139] = {.lex_state = 4, .external_lex_state = 2}, - [6140] = {.lex_state = 29, .external_lex_state = 2}, - [6141] = {.lex_state = 117, .external_lex_state = 2}, - [6142] = {.lex_state = 4, .external_lex_state = 2}, - [6143] = {.lex_state = 8, .external_lex_state = 2}, - [6144] = {.lex_state = 9, .external_lex_state = 2}, - [6145] = {.lex_state = 8, .external_lex_state = 2}, - [6146] = {.lex_state = 117, .external_lex_state = 2}, - [6147] = {.lex_state = 117, .external_lex_state = 2}, - [6148] = {.lex_state = 117, .external_lex_state = 2}, - [6149] = {.lex_state = 117, .external_lex_state = 2}, - [6150] = {.lex_state = 30, .external_lex_state = 2}, - [6151] = {.lex_state = 32, .external_lex_state = 2}, - [6152] = {.lex_state = 117, .external_lex_state = 2}, - [6153] = {.lex_state = 117, .external_lex_state = 2}, - [6154] = {.lex_state = 117, .external_lex_state = 2}, - [6155] = {.lex_state = 117, .external_lex_state = 2}, - [6156] = {.lex_state = 117, .external_lex_state = 2}, - [6157] = {.lex_state = 117, .external_lex_state = 2}, - [6158] = {.lex_state = 36, .external_lex_state = 2}, - [6159] = {.lex_state = 69, .external_lex_state = 8}, - [6160] = {.lex_state = 32, .external_lex_state = 2}, - [6161] = {.lex_state = 36, .external_lex_state = 2}, - [6162] = {.lex_state = 32, .external_lex_state = 2}, - [6163] = {.lex_state = 32, .external_lex_state = 2}, - [6164] = {.lex_state = 117, .external_lex_state = 2}, - [6165] = {.lex_state = 36, .external_lex_state = 2}, - [6166] = {.lex_state = 117, .external_lex_state = 2}, - [6167] = {.lex_state = 4, .external_lex_state = 2}, - [6168] = {.lex_state = 117, .external_lex_state = 2}, - [6169] = {.lex_state = 117, .external_lex_state = 2}, - [6170] = {.lex_state = 117, .external_lex_state = 2}, - [6171] = {.lex_state = 30, .external_lex_state = 2}, - [6172] = {.lex_state = 117, .external_lex_state = 2}, - [6173] = {.lex_state = 117, .external_lex_state = 2}, - [6174] = {.lex_state = 117, .external_lex_state = 2}, - [6175] = {.lex_state = 30, .external_lex_state = 2}, - [6176] = {.lex_state = 9, .external_lex_state = 2}, - [6177] = {.lex_state = 69, .external_lex_state = 8}, - [6178] = {.lex_state = 4, .external_lex_state = 2}, - [6179] = {.lex_state = 117, .external_lex_state = 2}, - [6180] = {.lex_state = 36, .external_lex_state = 2}, - [6181] = {.lex_state = 117, .external_lex_state = 2}, - [6182] = {.lex_state = 117, .external_lex_state = 2}, - [6183] = {.lex_state = 117, .external_lex_state = 2}, - [6184] = {.lex_state = 117, .external_lex_state = 2}, - [6185] = {.lex_state = 117, .external_lex_state = 2}, - [6186] = {.lex_state = 36, .external_lex_state = 2}, - [6187] = {.lex_state = 8, .external_lex_state = 2}, - [6188] = {.lex_state = 9, .external_lex_state = 2}, - [6189] = {.lex_state = 29, .external_lex_state = 2}, - [6190] = {.lex_state = 117, .external_lex_state = 2}, - [6191] = {.lex_state = 117, .external_lex_state = 2}, - [6192] = {.lex_state = 117, .external_lex_state = 2}, - [6193] = {.lex_state = 117, .external_lex_state = 2}, - [6194] = {.lex_state = 29, .external_lex_state = 2}, - [6195] = {.lex_state = 117, .external_lex_state = 2}, - [6196] = {.lex_state = 9, .external_lex_state = 2}, - [6197] = {.lex_state = 29, .external_lex_state = 2}, - [6198] = {.lex_state = 29, .external_lex_state = 2}, - [6199] = {.lex_state = 117, .external_lex_state = 2}, - [6200] = {.lex_state = 29, .external_lex_state = 2}, - [6201] = {.lex_state = 4, .external_lex_state = 2}, - [6202] = {.lex_state = 117, .external_lex_state = 2}, - [6203] = {.lex_state = 8, .external_lex_state = 2}, - [6204] = {.lex_state = 117, .external_lex_state = 2}, - [6205] = {.lex_state = 29, .external_lex_state = 2}, - [6206] = {.lex_state = 36, .external_lex_state = 2}, - [6207] = {.lex_state = 117, .external_lex_state = 2}, - [6208] = {.lex_state = 117, .external_lex_state = 2}, - [6209] = {.lex_state = 117, .external_lex_state = 2}, - [6210] = {.lex_state = 29, .external_lex_state = 2}, - [6211] = {.lex_state = 117, .external_lex_state = 2}, - [6212] = {.lex_state = 117, .external_lex_state = 2}, - [6213] = {.lex_state = 117, .external_lex_state = 2}, - [6214] = {.lex_state = 117, .external_lex_state = 2}, - [6215] = {.lex_state = 117, .external_lex_state = 2}, - [6216] = {.lex_state = 117, .external_lex_state = 2}, - [6217] = {.lex_state = 117, .external_lex_state = 2}, - [6218] = {.lex_state = 117, .external_lex_state = 2}, - [6219] = {.lex_state = 117, .external_lex_state = 2}, - [6220] = {.lex_state = 117, .external_lex_state = 2}, - [6221] = {.lex_state = 32, .external_lex_state = 2}, - [6222] = {.lex_state = 29, .external_lex_state = 2}, - [6223] = {.lex_state = 117, .external_lex_state = 2}, - [6224] = {.lex_state = 117, .external_lex_state = 2}, - [6225] = {.lex_state = 117, .external_lex_state = 2}, - [6226] = {.lex_state = 4, .external_lex_state = 2}, - [6227] = {.lex_state = 36, .external_lex_state = 2}, - [6228] = {.lex_state = 117, .external_lex_state = 2}, - [6229] = {.lex_state = 117, .external_lex_state = 2}, - [6230] = {.lex_state = 117, .external_lex_state = 2}, - [6231] = {.lex_state = 117, .external_lex_state = 2}, - [6232] = {.lex_state = 36, .external_lex_state = 2}, - [6233] = {.lex_state = 117, .external_lex_state = 2}, - [6234] = {.lex_state = 117, .external_lex_state = 2}, - [6235] = {.lex_state = 117, .external_lex_state = 2}, - [6236] = {.lex_state = 36, .external_lex_state = 2}, - [6237] = {.lex_state = 117, .external_lex_state = 2}, - [6238] = {.lex_state = 8, .external_lex_state = 2}, - [6239] = {.lex_state = 117, .external_lex_state = 2}, - [6240] = {.lex_state = 117, .external_lex_state = 2}, - [6241] = {.lex_state = 117, .external_lex_state = 2}, - [6242] = {.lex_state = 117, .external_lex_state = 2}, - [6243] = {.lex_state = 117, .external_lex_state = 2}, - [6244] = {.lex_state = 36, .external_lex_state = 2}, - [6245] = {.lex_state = 30, .external_lex_state = 2}, - [6246] = {.lex_state = 8, .external_lex_state = 2}, - [6247] = {.lex_state = 117, .external_lex_state = 2}, - [6248] = {.lex_state = 8, .external_lex_state = 2}, - [6249] = {.lex_state = 36, .external_lex_state = 2}, - [6250] = {.lex_state = 117, .external_lex_state = 2}, - [6251] = {.lex_state = 30, .external_lex_state = 2}, - [6252] = {.lex_state = 117, .external_lex_state = 2}, - [6253] = {.lex_state = 117, .external_lex_state = 2}, - [6254] = {.lex_state = 117, .external_lex_state = 2}, - [6255] = {.lex_state = 4, .external_lex_state = 2}, - [6256] = {.lex_state = 117, .external_lex_state = 2}, - [6257] = {.lex_state = 4, .external_lex_state = 2}, - [6258] = {.lex_state = 117, .external_lex_state = 2}, - [6259] = {.lex_state = 117, .external_lex_state = 2}, - [6260] = {.lex_state = 117, .external_lex_state = 2}, - [6261] = {.lex_state = 36, .external_lex_state = 2}, - [6262] = {.lex_state = 117, .external_lex_state = 2}, - [6263] = {.lex_state = 117, .external_lex_state = 2}, - [6264] = {.lex_state = 8, .external_lex_state = 2}, - [6265] = {.lex_state = 117, .external_lex_state = 2}, - [6266] = {.lex_state = 117, .external_lex_state = 2}, - [6267] = {.lex_state = 117, .external_lex_state = 2}, - [6268] = {.lex_state = 9, .external_lex_state = 2}, - [6269] = {.lex_state = 117, .external_lex_state = 2}, - [6270] = {.lex_state = 117, .external_lex_state = 2}, - [6271] = {.lex_state = 117, .external_lex_state = 2}, - [6272] = {.lex_state = 117, .external_lex_state = 2}, - [6273] = {.lex_state = 117, .external_lex_state = 2}, - [6274] = {.lex_state = 30, .external_lex_state = 2}, - [6275] = {.lex_state = 117, .external_lex_state = 2}, - [6276] = {.lex_state = 30, .external_lex_state = 2}, - [6277] = {.lex_state = 116, .external_lex_state = 2}, - [6278] = {.lex_state = 117, .external_lex_state = 2}, - [6279] = {.lex_state = 117, .external_lex_state = 2}, - [6280] = {.lex_state = 117, .external_lex_state = 2}, - [6281] = {.lex_state = 30, .external_lex_state = 2}, - [6282] = {.lex_state = 4, .external_lex_state = 2}, - [6283] = {.lex_state = 117, .external_lex_state = 2}, - [6284] = {.lex_state = 117, .external_lex_state = 2}, - [6285] = {.lex_state = 117, .external_lex_state = 2}, - [6286] = {.lex_state = 117, .external_lex_state = 2}, - [6287] = {.lex_state = 9, .external_lex_state = 2}, - [6288] = {.lex_state = 8, .external_lex_state = 2}, - [6289] = {.lex_state = 117, .external_lex_state = 2}, - [6290] = {.lex_state = 117, .external_lex_state = 2}, - [6291] = {.lex_state = 8, .external_lex_state = 2}, - [6292] = {.lex_state = 4, .external_lex_state = 2}, - [6293] = {.lex_state = 117, .external_lex_state = 2}, - [6294] = {.lex_state = 117, .external_lex_state = 2}, - [6295] = {.lex_state = 29, .external_lex_state = 2}, - [6296] = {.lex_state = 8, .external_lex_state = 2}, - [6297] = {.lex_state = 29, .external_lex_state = 2}, - [6298] = {.lex_state = 117, .external_lex_state = 2}, - [6299] = {.lex_state = 117, .external_lex_state = 2}, - [6300] = {.lex_state = 117, .external_lex_state = 2}, - [6301] = {.lex_state = 117, .external_lex_state = 2}, - [6302] = {.lex_state = 117, .external_lex_state = 2}, - [6303] = {.lex_state = 117, .external_lex_state = 2}, - [6304] = {.lex_state = 117, .external_lex_state = 2}, - [6305] = {.lex_state = 9, .external_lex_state = 2}, - [6306] = {.lex_state = 30, .external_lex_state = 2}, - [6307] = {.lex_state = 117, .external_lex_state = 2}, - [6308] = {.lex_state = 30, .external_lex_state = 2}, - [6309] = {.lex_state = 117, .external_lex_state = 2}, - [6310] = {.lex_state = 36, .external_lex_state = 2}, - [6311] = {.lex_state = 29, .external_lex_state = 2}, - [6312] = {.lex_state = 29, .external_lex_state = 2}, - [6313] = {.lex_state = 117, .external_lex_state = 2}, - [6314] = {.lex_state = 117, .external_lex_state = 2}, - [6315] = {.lex_state = 29, .external_lex_state = 2}, - [6316] = {.lex_state = 30, .external_lex_state = 2}, - [6317] = {.lex_state = 30, .external_lex_state = 2}, - [6318] = {.lex_state = 117, .external_lex_state = 2}, - [6319] = {.lex_state = 8, .external_lex_state = 2}, - [6320] = {.lex_state = 29, .external_lex_state = 2}, - [6321] = {.lex_state = 29, .external_lex_state = 2}, - [6322] = {.lex_state = 117, .external_lex_state = 2}, - [6323] = {.lex_state = 29, .external_lex_state = 2}, - [6324] = {.lex_state = 117, .external_lex_state = 2}, - [6325] = {.lex_state = 117, .external_lex_state = 2}, - [6326] = {.lex_state = 117, .external_lex_state = 2}, - [6327] = {.lex_state = 117, .external_lex_state = 2}, - [6328] = {.lex_state = 29, .external_lex_state = 2}, - [6329] = {.lex_state = 117, .external_lex_state = 2}, - [6330] = {.lex_state = 117, .external_lex_state = 2}, - [6331] = {.lex_state = 117, .external_lex_state = 2}, - [6332] = {.lex_state = 36, .external_lex_state = 2}, - [6333] = {.lex_state = 117, .external_lex_state = 2}, - [6334] = {.lex_state = 117, .external_lex_state = 2}, - [6335] = {.lex_state = 4, .external_lex_state = 2}, - [6336] = {.lex_state = 8, .external_lex_state = 2}, - [6337] = {.lex_state = 29, .external_lex_state = 2}, - [6338] = {.lex_state = 9, .external_lex_state = 2}, - [6339] = {.lex_state = 117, .external_lex_state = 2}, - [6340] = {.lex_state = 29, .external_lex_state = 2}, - [6341] = {.lex_state = 29, .external_lex_state = 2}, - [6342] = {.lex_state = 29, .external_lex_state = 2}, - [6343] = {.lex_state = 117, .external_lex_state = 2}, - [6344] = {.lex_state = 117, .external_lex_state = 2}, - [6345] = {.lex_state = 117, .external_lex_state = 2}, - [6346] = {.lex_state = 117, .external_lex_state = 2}, - [6347] = {.lex_state = 117, .external_lex_state = 2}, - [6348] = {.lex_state = 117, .external_lex_state = 2}, - [6349] = {.lex_state = 117, .external_lex_state = 2}, - [6350] = {.lex_state = 117, .external_lex_state = 2}, - [6351] = {.lex_state = 117, .external_lex_state = 2}, - [6352] = {.lex_state = 36, .external_lex_state = 2}, - [6353] = {.lex_state = 117, .external_lex_state = 2}, - [6354] = {.lex_state = 117, .external_lex_state = 2}, - [6355] = {.lex_state = 117, .external_lex_state = 2}, - [6356] = {.lex_state = 117, .external_lex_state = 2}, - [6357] = {.lex_state = 117, .external_lex_state = 2}, - [6358] = {.lex_state = 117, .external_lex_state = 2}, - [6359] = {.lex_state = 36, .external_lex_state = 2}, - [6360] = {.lex_state = 117, .external_lex_state = 2}, - [6361] = {.lex_state = 117, .external_lex_state = 2}, - [6362] = {.lex_state = 117, .external_lex_state = 2}, - [6363] = {.lex_state = 117, .external_lex_state = 2}, - [6364] = {.lex_state = 4, .external_lex_state = 2}, - [6365] = {.lex_state = 117, .external_lex_state = 2}, - [6366] = {.lex_state = 117, .external_lex_state = 2}, - [6367] = {.lex_state = 117, .external_lex_state = 2}, - [6368] = {.lex_state = 117, .external_lex_state = 2}, - [6369] = {.lex_state = 117, .external_lex_state = 2}, - [6370] = {.lex_state = 117, .external_lex_state = 2}, - [6371] = {.lex_state = 29, .external_lex_state = 2}, - [6372] = {.lex_state = 117, .external_lex_state = 2}, - [6373] = {.lex_state = 117, .external_lex_state = 2}, - [6374] = {.lex_state = 20, .external_lex_state = 2}, - [6375] = {.lex_state = 20, .external_lex_state = 2}, - [6376] = {.lex_state = 20, .external_lex_state = 2}, - [6377] = {.lex_state = 117, .external_lex_state = 2}, - [6378] = {.lex_state = 20, .external_lex_state = 2}, - [6379] = {.lex_state = 117, .external_lex_state = 2}, - [6380] = {.lex_state = 117, .external_lex_state = 2}, - [6381] = {.lex_state = 20, .external_lex_state = 2}, - [6382] = {.lex_state = 20, .external_lex_state = 2}, - [6383] = {.lex_state = 117, .external_lex_state = 2}, - [6384] = {.lex_state = 117, .external_lex_state = 2}, - [6385] = {.lex_state = 20, .external_lex_state = 2}, - [6386] = {.lex_state = 117, .external_lex_state = 2}, - [6387] = {.lex_state = 20, .external_lex_state = 2}, - [6388] = {.lex_state = 19, .external_lex_state = 2}, - [6389] = {.lex_state = 117, .external_lex_state = 2}, - [6390] = {.lex_state = 117, .external_lex_state = 2}, - [6391] = {.lex_state = 20, .external_lex_state = 2}, - [6392] = {.lex_state = 117, .external_lex_state = 2}, - [6393] = {.lex_state = 117, .external_lex_state = 2}, - [6394] = {.lex_state = 117, .external_lex_state = 2}, - [6395] = {.lex_state = 4, .external_lex_state = 2}, - [6396] = {.lex_state = 117, .external_lex_state = 2}, - [6397] = {.lex_state = 117, .external_lex_state = 2}, - [6398] = {.lex_state = 20, .external_lex_state = 2}, - [6399] = {.lex_state = 117, .external_lex_state = 2}, - [6400] = {.lex_state = 117, .external_lex_state = 2}, - [6401] = {.lex_state = 117, .external_lex_state = 2}, - [6402] = {.lex_state = 117, .external_lex_state = 2}, - [6403] = {.lex_state = 63, .external_lex_state = 2}, - [6404] = {.lex_state = 117, .external_lex_state = 2}, - [6405] = {.lex_state = 117, .external_lex_state = 2}, - [6406] = {.lex_state = 117, .external_lex_state = 2}, - [6407] = {.lex_state = 117, .external_lex_state = 2}, - [6408] = {.lex_state = 117, .external_lex_state = 2}, - [6409] = {.lex_state = 4, .external_lex_state = 2}, - [6410] = {.lex_state = 20, .external_lex_state = 2}, - [6411] = {.lex_state = 117, .external_lex_state = 2}, - [6412] = {.lex_state = 117, .external_lex_state = 2}, - [6413] = {.lex_state = 117, .external_lex_state = 2}, - [6414] = {.lex_state = 117, .external_lex_state = 2}, - [6415] = {.lex_state = 117, .external_lex_state = 2}, - [6416] = {.lex_state = 117, .external_lex_state = 2}, - [6417] = {.lex_state = 117, .external_lex_state = 2}, - [6418] = {.lex_state = 117, .external_lex_state = 2}, - [6419] = {.lex_state = 20, .external_lex_state = 2}, - [6420] = {.lex_state = 4, .external_lex_state = 2}, - [6421] = {.lex_state = 117, .external_lex_state = 2}, - [6422] = {.lex_state = 117, .external_lex_state = 2}, - [6423] = {.lex_state = 117, .external_lex_state = 2}, - [6424] = {.lex_state = 117, .external_lex_state = 2}, - [6425] = {.lex_state = 29, .external_lex_state = 2}, - [6426] = {.lex_state = 117, .external_lex_state = 2}, - [6427] = {.lex_state = 117, .external_lex_state = 2}, - [6428] = {.lex_state = 20, .external_lex_state = 2}, - [6429] = {.lex_state = 117, .external_lex_state = 2}, - [6430] = {.lex_state = 117, .external_lex_state = 2}, - [6431] = {.lex_state = 4, .external_lex_state = 2}, - [6432] = {.lex_state = 4, .external_lex_state = 2}, - [6433] = {.lex_state = 117, .external_lex_state = 2}, - [6434] = {.lex_state = 20, .external_lex_state = 2}, - [6435] = {.lex_state = 36, .external_lex_state = 2}, - [6436] = {.lex_state = 36, .external_lex_state = 2}, - [6437] = {.lex_state = 36, .external_lex_state = 2}, - [6438] = {.lex_state = 63, .external_lex_state = 2}, - [6439] = {.lex_state = 20, .external_lex_state = 2}, - [6440] = {.lex_state = 36, .external_lex_state = 2}, - [6441] = {.lex_state = 36, .external_lex_state = 2}, - [6442] = {.lex_state = 36, .external_lex_state = 2}, - [6443] = {.lex_state = 117, .external_lex_state = 2}, - [6444] = {.lex_state = 36, .external_lex_state = 2}, - [6445] = {.lex_state = 20, .external_lex_state = 2}, - [6446] = {.lex_state = 36, .external_lex_state = 2}, - [6447] = {.lex_state = 36, .external_lex_state = 2}, - [6448] = {.lex_state = 19, .external_lex_state = 2}, - [6449] = {.lex_state = 36, .external_lex_state = 2}, - [6450] = {.lex_state = 117, .external_lex_state = 2}, - [6451] = {.lex_state = 20, .external_lex_state = 2}, - [6452] = {.lex_state = 36, .external_lex_state = 2}, - [6453] = {.lex_state = 36, .external_lex_state = 2}, - [6454] = {.lex_state = 36, .external_lex_state = 2}, - [6455] = {.lex_state = 36, .external_lex_state = 2}, - [6456] = {.lex_state = 20, .external_lex_state = 2}, - [6457] = {.lex_state = 117, .external_lex_state = 2}, - [6458] = {.lex_state = 20, .external_lex_state = 2}, - [6459] = {.lex_state = 20, .external_lex_state = 2}, - [6460] = {.lex_state = 36, .external_lex_state = 2}, - [6461] = {.lex_state = 117, .external_lex_state = 2}, - [6462] = {.lex_state = 19, .external_lex_state = 2}, - [6463] = {.lex_state = 36, .external_lex_state = 2}, - [6464] = {.lex_state = 117, .external_lex_state = 2}, - [6465] = {.lex_state = 20, .external_lex_state = 2}, - [6466] = {.lex_state = 117, .external_lex_state = 2}, - [6467] = {.lex_state = 36, .external_lex_state = 2}, - [6468] = {.lex_state = 9, .external_lex_state = 2}, - [6469] = {.lex_state = 30, .external_lex_state = 2}, - [6470] = {.lex_state = 36, .external_lex_state = 2}, - [6471] = {.lex_state = 20, .external_lex_state = 2}, - [6472] = {.lex_state = 4, .external_lex_state = 2}, - [6473] = {.lex_state = 117, .external_lex_state = 2}, - [6474] = {.lex_state = 117, .external_lex_state = 2}, - [6475] = {.lex_state = 20, .external_lex_state = 2}, - [6476] = {.lex_state = 117, .external_lex_state = 2}, - [6477] = {.lex_state = 19, .external_lex_state = 2}, - [6478] = {.lex_state = 20, .external_lex_state = 2}, - [6479] = {.lex_state = 117, .external_lex_state = 2}, - [6480] = {.lex_state = 117, .external_lex_state = 2}, - [6481] = {.lex_state = 117, .external_lex_state = 2}, - [6482] = {.lex_state = 117, .external_lex_state = 2}, - [6483] = {.lex_state = 63, .external_lex_state = 2}, - [6484] = {.lex_state = 36, .external_lex_state = 2}, - [6485] = {.lex_state = 36, .external_lex_state = 2}, - [6486] = {.lex_state = 20, .external_lex_state = 2}, - [6487] = {.lex_state = 19, .external_lex_state = 2}, - [6488] = {.lex_state = 36, .external_lex_state = 2}, - [6489] = {.lex_state = 4, .external_lex_state = 2}, - [6490] = {.lex_state = 20, .external_lex_state = 2}, - [6491] = {.lex_state = 20, .external_lex_state = 2}, - [6492] = {.lex_state = 36, .external_lex_state = 2}, - [6493] = {.lex_state = 20, .external_lex_state = 2}, - [6494] = {.lex_state = 20, .external_lex_state = 2}, - [6495] = {.lex_state = 20, .external_lex_state = 2}, - [6496] = {.lex_state = 19, .external_lex_state = 2}, - [6497] = {.lex_state = 36, .external_lex_state = 2}, - [6498] = {.lex_state = 36, .external_lex_state = 2}, - [6499] = {.lex_state = 117, .external_lex_state = 2}, - [6500] = {.lex_state = 4, .external_lex_state = 2}, - [6501] = {.lex_state = 4, .external_lex_state = 2}, - [6502] = {.lex_state = 36, .external_lex_state = 2}, - [6503] = {.lex_state = 117, .external_lex_state = 2}, - [6504] = {.lex_state = 36, .external_lex_state = 2}, - [6505] = {.lex_state = 29, .external_lex_state = 2}, - [6506] = {.lex_state = 29, .external_lex_state = 2}, - [6507] = {.lex_state = 20, .external_lex_state = 2}, - [6508] = {.lex_state = 36, .external_lex_state = 2}, - [6509] = {.lex_state = 36, .external_lex_state = 2}, - [6510] = {.lex_state = 20, .external_lex_state = 2}, - [6511] = {.lex_state = 36, .external_lex_state = 2}, - [6512] = {.lex_state = 36, .external_lex_state = 2}, - [6513] = {.lex_state = 117, .external_lex_state = 2}, - [6514] = {.lex_state = 20, .external_lex_state = 2}, - [6515] = {.lex_state = 116, .external_lex_state = 2}, - [6516] = {.lex_state = 117, .external_lex_state = 2}, - [6517] = {.lex_state = 36, .external_lex_state = 2}, - [6518] = {.lex_state = 117, .external_lex_state = 2}, - [6519] = {.lex_state = 36, .external_lex_state = 2}, - [6520] = {.lex_state = 63, .external_lex_state = 2}, - [6521] = {.lex_state = 120, .external_lex_state = 2}, - [6522] = {.lex_state = 120, .external_lex_state = 2}, - [6523] = {.lex_state = 20, .external_lex_state = 2}, - [6524] = {.lex_state = 4, .external_lex_state = 2}, - [6525] = {.lex_state = 117, .external_lex_state = 2}, - [6526] = {.lex_state = 117, .external_lex_state = 2}, - [6527] = {.lex_state = 117, .external_lex_state = 2}, - [6528] = {.lex_state = 30, .external_lex_state = 2}, - [6529] = {.lex_state = 20, .external_lex_state = 2}, - [6530] = {.lex_state = 4, .external_lex_state = 2}, - [6531] = {.lex_state = 29, .external_lex_state = 2}, - [6532] = {.lex_state = 4, .external_lex_state = 2}, - [6533] = {.lex_state = 117, .external_lex_state = 2}, - [6534] = {.lex_state = 117, .external_lex_state = 2}, - [6535] = {.lex_state = 4, .external_lex_state = 2}, - [6536] = {.lex_state = 4, .external_lex_state = 2}, - [6537] = {.lex_state = 29, .external_lex_state = 2}, - [6538] = {.lex_state = 29, .external_lex_state = 2}, - [6539] = {.lex_state = 20, .external_lex_state = 2}, - [6540] = {.lex_state = 20, .external_lex_state = 2}, - [6541] = {.lex_state = 4, .external_lex_state = 2}, - [6542] = {.lex_state = 20, .external_lex_state = 2}, - [6543] = {.lex_state = 20, .external_lex_state = 2}, - [6544] = {.lex_state = 20, .external_lex_state = 2}, - [6545] = {.lex_state = 19, .external_lex_state = 2}, - [6546] = {.lex_state = 41, .external_lex_state = 2}, - [6547] = {.lex_state = 117, .external_lex_state = 2}, - [6548] = {.lex_state = 20, .external_lex_state = 2}, - [6549] = {.lex_state = 20, .external_lex_state = 2}, - [6550] = {.lex_state = 4, .external_lex_state = 2}, - [6551] = {.lex_state = 29, .external_lex_state = 2}, - [6552] = {.lex_state = 4, .external_lex_state = 2}, - [6553] = {.lex_state = 19, .external_lex_state = 2}, - [6554] = {.lex_state = 36, .external_lex_state = 2}, - [6555] = {.lex_state = 4, .external_lex_state = 2}, - [6556] = {.lex_state = 36, .external_lex_state = 2}, - [6557] = {.lex_state = 117, .external_lex_state = 3}, - [6558] = {.lex_state = 20, .external_lex_state = 2}, - [6559] = {.lex_state = 117, .external_lex_state = 2}, - [6560] = {.lex_state = 20, .external_lex_state = 2}, - [6561] = {.lex_state = 117, .external_lex_state = 2}, - [6562] = {.lex_state = 117, .external_lex_state = 2}, - [6563] = {.lex_state = 4, .external_lex_state = 2}, - [6564] = {.lex_state = 29, .external_lex_state = 2}, - [6565] = {.lex_state = 29, .external_lex_state = 2}, - [6566] = {.lex_state = 63, .external_lex_state = 2}, - [6567] = {.lex_state = 4, .external_lex_state = 2}, - [6568] = {.lex_state = 4, .external_lex_state = 2}, - [6569] = {.lex_state = 36, .external_lex_state = 2}, - [6570] = {.lex_state = 4, .external_lex_state = 2}, - [6571] = {.lex_state = 117, .external_lex_state = 2}, - [6572] = {.lex_state = 4, .external_lex_state = 2}, - [6573] = {.lex_state = 63, .external_lex_state = 2}, - [6574] = {.lex_state = 20, .external_lex_state = 2}, - [6575] = {.lex_state = 117, .external_lex_state = 2}, - [6576] = {.lex_state = 30, .external_lex_state = 2}, - [6577] = {.lex_state = 4, .external_lex_state = 2}, - [6578] = {.lex_state = 20, .external_lex_state = 2}, - [6579] = {.lex_state = 117, .external_lex_state = 2}, - [6580] = {.lex_state = 117, .external_lex_state = 2}, - [6581] = {.lex_state = 63, .external_lex_state = 2}, - [6582] = {.lex_state = 117, .external_lex_state = 2}, - [6583] = {.lex_state = 117, .external_lex_state = 2}, - [6584] = {.lex_state = 20, .external_lex_state = 2}, - [6585] = {.lex_state = 117, .external_lex_state = 2}, - [6586] = {.lex_state = 4, .external_lex_state = 2}, - [6587] = {.lex_state = 117, .external_lex_state = 2}, - [6588] = {.lex_state = 20, .external_lex_state = 2}, - [6589] = {.lex_state = 29, .external_lex_state = 2}, - [6590] = {.lex_state = 4, .external_lex_state = 2}, - [6591] = {.lex_state = 117, .external_lex_state = 2}, - [6592] = {.lex_state = 29, .external_lex_state = 2}, - [6593] = {.lex_state = 117, .external_lex_state = 2}, - [6594] = {.lex_state = 117, .external_lex_state = 2}, - [6595] = {.lex_state = 4, .external_lex_state = 2}, - [6596] = {.lex_state = 4, .external_lex_state = 2}, - [6597] = {.lex_state = 20, .external_lex_state = 2}, - [6598] = {.lex_state = 117, .external_lex_state = 2}, - [6599] = {.lex_state = 117, .external_lex_state = 2}, - [6600] = {.lex_state = 117, .external_lex_state = 2}, - [6601] = {.lex_state = 117, .external_lex_state = 2}, - [6602] = {.lex_state = 4, .external_lex_state = 2}, - [6603] = {.lex_state = 19, .external_lex_state = 2}, - [6604] = {.lex_state = 19, .external_lex_state = 2}, - [6605] = {.lex_state = 20, .external_lex_state = 2}, - [6606] = {.lex_state = 117, .external_lex_state = 2}, - [6607] = {.lex_state = 20, .external_lex_state = 2}, - [6608] = {.lex_state = 20, .external_lex_state = 2}, - [6609] = {.lex_state = 19, .external_lex_state = 2}, - [6610] = {.lex_state = 117, .external_lex_state = 2}, - [6611] = {.lex_state = 20, .external_lex_state = 2}, - [6612] = {.lex_state = 63, .external_lex_state = 2}, - [6613] = {.lex_state = 117, .external_lex_state = 2}, - [6614] = {.lex_state = 117, .external_lex_state = 2}, - [6615] = {.lex_state = 20, .external_lex_state = 2}, - [6616] = {.lex_state = 20, .external_lex_state = 2}, - [6617] = {.lex_state = 120, .external_lex_state = 2}, - [6618] = {.lex_state = 117, .external_lex_state = 2}, - [6619] = {.lex_state = 117, .external_lex_state = 2}, - [6620] = {.lex_state = 20, .external_lex_state = 2}, - [6621] = {.lex_state = 117, .external_lex_state = 2}, - [6622] = {.lex_state = 30, .external_lex_state = 2}, - [6623] = {.lex_state = 117, .external_lex_state = 2}, - [6624] = {.lex_state = 30, .external_lex_state = 2}, - [6625] = {.lex_state = 20, .external_lex_state = 2}, - [6626] = {.lex_state = 117, .external_lex_state = 2}, - [6627] = {.lex_state = 117, .external_lex_state = 2}, - [6628] = {.lex_state = 117, .external_lex_state = 2}, - [6629] = {.lex_state = 20, .external_lex_state = 2}, - [6630] = {.lex_state = 117, .external_lex_state = 2}, - [6631] = {.lex_state = 117, .external_lex_state = 2}, - [6632] = {.lex_state = 20, .external_lex_state = 2}, - [6633] = {.lex_state = 117, .external_lex_state = 3}, - [6634] = {.lex_state = 20, .external_lex_state = 2}, - [6635] = {.lex_state = 20, .external_lex_state = 2}, - [6636] = {.lex_state = 117, .external_lex_state = 2}, - [6637] = {.lex_state = 4, .external_lex_state = 2}, - [6638] = {.lex_state = 20, .external_lex_state = 2}, - [6639] = {.lex_state = 20, .external_lex_state = 2}, - [6640] = {.lex_state = 19, .external_lex_state = 2}, - [6641] = {.lex_state = 20, .external_lex_state = 2}, - [6642] = {.lex_state = 19, .external_lex_state = 2}, - [6643] = {.lex_state = 117, .external_lex_state = 2}, - [6644] = {.lex_state = 117, .external_lex_state = 2}, - [6645] = {.lex_state = 20, .external_lex_state = 2}, - [6646] = {.lex_state = 20, .external_lex_state = 2}, - [6647] = {.lex_state = 20, .external_lex_state = 2}, - [6648] = {.lex_state = 117, .external_lex_state = 2}, - [6649] = {.lex_state = 20, .external_lex_state = 2}, - [6650] = {.lex_state = 20, .external_lex_state = 2}, - [6651] = {.lex_state = 4, .external_lex_state = 2}, - [6652] = {.lex_state = 19, .external_lex_state = 2}, - [6653] = {.lex_state = 20, .external_lex_state = 2}, - [6654] = {.lex_state = 20, .external_lex_state = 2}, - [6655] = {.lex_state = 20, .external_lex_state = 2}, - [6656] = {.lex_state = 117, .external_lex_state = 2}, - [6657] = {.lex_state = 19, .external_lex_state = 2}, - [6658] = {.lex_state = 29, .external_lex_state = 2}, - [6659] = {.lex_state = 4, .external_lex_state = 2}, - [6660] = {.lex_state = 29, .external_lex_state = 2}, - [6661] = {.lex_state = 117, .external_lex_state = 2}, - [6662] = {.lex_state = 29, .external_lex_state = 2}, - [6663] = {.lex_state = 29, .external_lex_state = 2}, - [6664] = {.lex_state = 20, .external_lex_state = 2}, - [6665] = {.lex_state = 4, .external_lex_state = 2}, - [6666] = {.lex_state = 20, .external_lex_state = 2}, - [6667] = {.lex_state = 20, .external_lex_state = 2}, - [6668] = {.lex_state = 20, .external_lex_state = 2}, - [6669] = {.lex_state = 117, .external_lex_state = 2}, - [6670] = {.lex_state = 117, .external_lex_state = 2}, - [6671] = {.lex_state = 63, .external_lex_state = 2}, - [6672] = {.lex_state = 29, .external_lex_state = 2}, - [6673] = {.lex_state = 117, .external_lex_state = 2}, - [6674] = {.lex_state = 4, .external_lex_state = 2}, - [6675] = {.lex_state = 20, .external_lex_state = 2}, - [6676] = {.lex_state = 117, .external_lex_state = 2}, - [6677] = {.lex_state = 4, .external_lex_state = 2}, - [6678] = {.lex_state = 4, .external_lex_state = 2}, - [6679] = {.lex_state = 120, .external_lex_state = 2}, - [6680] = {.lex_state = 29, .external_lex_state = 2}, - [6681] = {.lex_state = 20, .external_lex_state = 2}, - [6682] = {.lex_state = 120, .external_lex_state = 2}, - [6683] = {.lex_state = 29, .external_lex_state = 2}, - [6684] = {.lex_state = 4, .external_lex_state = 2}, - [6685] = {.lex_state = 20, .external_lex_state = 2}, - [6686] = {.lex_state = 4, .external_lex_state = 2}, - [6687] = {.lex_state = 117, .external_lex_state = 2}, - [6688] = {.lex_state = 117, .external_lex_state = 2}, - [6689] = {.lex_state = 117, .external_lex_state = 2}, - [6690] = {.lex_state = 29, .external_lex_state = 2}, - [6691] = {.lex_state = 4, .external_lex_state = 2}, - [6692] = {.lex_state = 19, .external_lex_state = 2}, - [6693] = {.lex_state = 117, .external_lex_state = 2}, - [6694] = {.lex_state = 20, .external_lex_state = 2}, - [6695] = {.lex_state = 117, .external_lex_state = 2}, - [6696] = {.lex_state = 117, .external_lex_state = 2}, - [6697] = {.lex_state = 117, .external_lex_state = 2}, - [6698] = {.lex_state = 36, .external_lex_state = 2}, - [6699] = {.lex_state = 117, .external_lex_state = 2}, - [6700] = {.lex_state = 117, .external_lex_state = 2}, - [6701] = {.lex_state = 117, .external_lex_state = 3}, - [6702] = {.lex_state = 117, .external_lex_state = 3}, - [6703] = {.lex_state = 117, .external_lex_state = 2}, - [6704] = {.lex_state = 20, .external_lex_state = 2}, - [6705] = {.lex_state = 117, .external_lex_state = 2}, - [6706] = {.lex_state = 117, .external_lex_state = 2}, - [6707] = {.lex_state = 117, .external_lex_state = 2}, - [6708] = {.lex_state = 117, .external_lex_state = 2}, - [6709] = {.lex_state = 20, .external_lex_state = 2}, - [6710] = {.lex_state = 117, .external_lex_state = 2}, - [6711] = {.lex_state = 20, .external_lex_state = 2}, - [6712] = {.lex_state = 20, .external_lex_state = 2}, - [6713] = {.lex_state = 117, .external_lex_state = 2}, - [6714] = {.lex_state = 30, .external_lex_state = 2}, - [6715] = {.lex_state = 30, .external_lex_state = 2}, - [6716] = {.lex_state = 36, .external_lex_state = 2}, - [6717] = {.lex_state = 117, .external_lex_state = 2}, - [6718] = {.lex_state = 117, .external_lex_state = 2}, - [6719] = {.lex_state = 117, .external_lex_state = 2}, - [6720] = {.lex_state = 117, .external_lex_state = 2}, - [6721] = {.lex_state = 117, .external_lex_state = 2}, - [6722] = {.lex_state = 117, .external_lex_state = 2}, - [6723] = {.lex_state = 20, .external_lex_state = 2}, - [6724] = {.lex_state = 4, .external_lex_state = 2}, - [6725] = {.lex_state = 117, .external_lex_state = 2}, - [6726] = {.lex_state = 117, .external_lex_state = 2}, - [6727] = {.lex_state = 117, .external_lex_state = 2}, - [6728] = {.lex_state = 20, .external_lex_state = 2}, - [6729] = {.lex_state = 117, .external_lex_state = 2}, - [6730] = {.lex_state = 20, .external_lex_state = 2}, - [6731] = {.lex_state = 20, .external_lex_state = 2}, - [6732] = {.lex_state = 120, .external_lex_state = 2}, - [6733] = {.lex_state = 117, .external_lex_state = 2}, - [6734] = {.lex_state = 20, .external_lex_state = 2}, - [6735] = {.lex_state = 117, .external_lex_state = 2}, - [6736] = {.lex_state = 4, .external_lex_state = 2}, - [6737] = {.lex_state = 20, .external_lex_state = 2}, - [6738] = {.lex_state = 4, .external_lex_state = 2}, - [6739] = {.lex_state = 19, .external_lex_state = 2}, - [6740] = {.lex_state = 20, .external_lex_state = 2}, - [6741] = {.lex_state = 20, .external_lex_state = 2}, - [6742] = {.lex_state = 20, .external_lex_state = 2}, - [6743] = {.lex_state = 4, .external_lex_state = 2}, - [6744] = {.lex_state = 19, .external_lex_state = 2}, - [6745] = {.lex_state = 4, .external_lex_state = 2}, - [6746] = {.lex_state = 19, .external_lex_state = 2}, - [6747] = {.lex_state = 117, .external_lex_state = 2}, - [6748] = {.lex_state = 29, .external_lex_state = 2}, - [6749] = {.lex_state = 117, .external_lex_state = 2}, - [6750] = {.lex_state = 20, .external_lex_state = 2}, - [6751] = {.lex_state = 4, .external_lex_state = 2}, - [6752] = {.lex_state = 120, .external_lex_state = 2}, - [6753] = {.lex_state = 20, .external_lex_state = 2}, - [6754] = {.lex_state = 4, .external_lex_state = 2}, - [6755] = {.lex_state = 117, .external_lex_state = 2}, - [6756] = {.lex_state = 29, .external_lex_state = 2}, - [6757] = {.lex_state = 117, .external_lex_state = 2}, - [6758] = {.lex_state = 117, .external_lex_state = 2}, - [6759] = {.lex_state = 4, .external_lex_state = 2}, - [6760] = {.lex_state = 20, .external_lex_state = 2}, - [6761] = {.lex_state = 29, .external_lex_state = 2}, - [6762] = {.lex_state = 117, .external_lex_state = 2}, - [6763] = {.lex_state = 20, .external_lex_state = 2}, - [6764] = {.lex_state = 20, .external_lex_state = 2}, - [6765] = {.lex_state = 19, .external_lex_state = 2}, - [6766] = {.lex_state = 4, .external_lex_state = 2}, - [6767] = {.lex_state = 4, .external_lex_state = 2}, - [6768] = {.lex_state = 117, .external_lex_state = 2}, - [6769] = {.lex_state = 117, .external_lex_state = 2}, - [6770] = {.lex_state = 29, .external_lex_state = 2}, - [6771] = {.lex_state = 29, .external_lex_state = 2}, - [6772] = {.lex_state = 4, .external_lex_state = 2}, - [6773] = {.lex_state = 117, .external_lex_state = 2}, - [6774] = {.lex_state = 20, .external_lex_state = 2}, - [6775] = {.lex_state = 117, .external_lex_state = 2}, - [6776] = {.lex_state = 117, .external_lex_state = 2}, - [6777] = {.lex_state = 117, .external_lex_state = 2}, - [6778] = {.lex_state = 63, .external_lex_state = 2}, - [6779] = {.lex_state = 117, .external_lex_state = 2}, - [6780] = {.lex_state = 117, .external_lex_state = 2}, - [6781] = {.lex_state = 117, .external_lex_state = 2}, - [6782] = {.lex_state = 4, .external_lex_state = 2}, - [6783] = {.lex_state = 117, .external_lex_state = 2}, - [6784] = {.lex_state = 20, .external_lex_state = 2}, - [6785] = {.lex_state = 20, .external_lex_state = 2}, - [6786] = {.lex_state = 4, .external_lex_state = 2}, - [6787] = {.lex_state = 4, .external_lex_state = 2}, - [6788] = {.lex_state = 4, .external_lex_state = 2}, - [6789] = {.lex_state = 4, .external_lex_state = 2}, - [6790] = {.lex_state = 29, .external_lex_state = 2}, - [6791] = {.lex_state = 29, .external_lex_state = 2}, - [6792] = {.lex_state = 20, .external_lex_state = 2}, - [6793] = {.lex_state = 4, .external_lex_state = 2}, - [6794] = {.lex_state = 117, .external_lex_state = 2}, - [6795] = {.lex_state = 63, .external_lex_state = 2}, - [6796] = {.lex_state = 117, .external_lex_state = 2}, - [6797] = {.lex_state = 63, .external_lex_state = 2}, - [6798] = {.lex_state = 117, .external_lex_state = 2}, - [6799] = {.lex_state = 117, .external_lex_state = 2}, - [6800] = {.lex_state = 29, .external_lex_state = 2}, - [6801] = {.lex_state = 20, .external_lex_state = 2}, - [6802] = {.lex_state = 20, .external_lex_state = 2}, - [6803] = {.lex_state = 117, .external_lex_state = 2}, - [6804] = {.lex_state = 4, .external_lex_state = 2}, - [6805] = {.lex_state = 30, .external_lex_state = 2}, - [6806] = {.lex_state = 117, .external_lex_state = 2}, - [6807] = {.lex_state = 20, .external_lex_state = 2}, - [6808] = {.lex_state = 117, .external_lex_state = 2}, - [6809] = {.lex_state = 4, .external_lex_state = 2}, - [6810] = {.lex_state = 117, .external_lex_state = 2}, - [6811] = {.lex_state = 20, .external_lex_state = 2}, - [6812] = {.lex_state = 117, .external_lex_state = 2}, - [6813] = {.lex_state = 4, .external_lex_state = 2}, - [6814] = {.lex_state = 20, .external_lex_state = 2}, - [6815] = {.lex_state = 20, .external_lex_state = 2}, - [6816] = {.lex_state = 117, .external_lex_state = 2}, - [6817] = {.lex_state = 20, .external_lex_state = 2}, - [6818] = {.lex_state = 20, .external_lex_state = 2}, - [6819] = {.lex_state = 20, .external_lex_state = 2}, - [6820] = {.lex_state = 19, .external_lex_state = 2}, - [6821] = {.lex_state = 20, .external_lex_state = 2}, - [6822] = {.lex_state = 20, .external_lex_state = 2}, - [6823] = {.lex_state = 4, .external_lex_state = 2}, - [6824] = {.lex_state = 4, .external_lex_state = 2}, - [6825] = {.lex_state = 20, .external_lex_state = 2}, - [6826] = {.lex_state = 117, .external_lex_state = 2}, - [6827] = {.lex_state = 20, .external_lex_state = 2}, - [6828] = {.lex_state = 29, .external_lex_state = 2}, - [6829] = {.lex_state = 29, .external_lex_state = 2}, - [6830] = {.lex_state = 29, .external_lex_state = 2}, - [6831] = {.lex_state = 117, .external_lex_state = 3}, - [6832] = {.lex_state = 29, .external_lex_state = 2}, - [6833] = {.lex_state = 69, .external_lex_state = 8}, - [6834] = {.lex_state = 117, .external_lex_state = 2}, - [6835] = {.lex_state = 117, .external_lex_state = 2}, - [6836] = {.lex_state = 4, .external_lex_state = 2}, - [6837] = {.lex_state = 4, .external_lex_state = 2}, - [6838] = {.lex_state = 4, .external_lex_state = 2}, - [6839] = {.lex_state = 20, .external_lex_state = 2}, - [6840] = {.lex_state = 20, .external_lex_state = 2}, - [6841] = {.lex_state = 20, .external_lex_state = 2}, - [6842] = {.lex_state = 19, .external_lex_state = 2}, - [6843] = {.lex_state = 117, .external_lex_state = 2}, - [6844] = {.lex_state = 20, .external_lex_state = 2}, - [6845] = {.lex_state = 20, .external_lex_state = 2}, - [6846] = {.lex_state = 117, .external_lex_state = 2}, - [6847] = {.lex_state = 117, .external_lex_state = 2}, - [6848] = {.lex_state = 117, .external_lex_state = 2}, - [6849] = {.lex_state = 117, .external_lex_state = 2}, - [6850] = {.lex_state = 4, .external_lex_state = 2}, - [6851] = {.lex_state = 4, .external_lex_state = 2}, - [6852] = {.lex_state = 117, .external_lex_state = 2}, - [6853] = {.lex_state = 29, .external_lex_state = 2}, - [6854] = {.lex_state = 29, .external_lex_state = 2}, - [6855] = {.lex_state = 36, .external_lex_state = 2}, - [6856] = {.lex_state = 20, .external_lex_state = 2}, - [6857] = {.lex_state = 4, .external_lex_state = 2}, - [6858] = {.lex_state = 20, .external_lex_state = 2}, - [6859] = {.lex_state = 117, .external_lex_state = 2}, - [6860] = {.lex_state = 4, .external_lex_state = 2}, - [6861] = {.lex_state = 63, .external_lex_state = 2}, - [6862] = {.lex_state = 4, .external_lex_state = 2}, - [6863] = {.lex_state = 117, .external_lex_state = 2}, - [6864] = {.lex_state = 29, .external_lex_state = 2}, - [6865] = {.lex_state = 4, .external_lex_state = 2}, - [6866] = {.lex_state = 117, .external_lex_state = 2}, - [6867] = {.lex_state = 4, .external_lex_state = 2}, - [6868] = {.lex_state = 117, .external_lex_state = 2}, - [6869] = {.lex_state = 120, .external_lex_state = 2}, - [6870] = {.lex_state = 117, .external_lex_state = 2}, - [6871] = {.lex_state = 29, .external_lex_state = 2}, - [6872] = {.lex_state = 29, .external_lex_state = 2}, - [6873] = {.lex_state = 20, .external_lex_state = 2}, - [6874] = {.lex_state = 4, .external_lex_state = 2}, - [6875] = {.lex_state = 29, .external_lex_state = 2}, - [6876] = {.lex_state = 20, .external_lex_state = 2}, - [6877] = {.lex_state = 117, .external_lex_state = 2}, - [6878] = {.lex_state = 4, .external_lex_state = 2}, - [6879] = {.lex_state = 20, .external_lex_state = 2}, - [6880] = {.lex_state = 20, .external_lex_state = 2}, - [6881] = {.lex_state = 20, .external_lex_state = 2}, - [6882] = {.lex_state = 20, .external_lex_state = 2}, - [6883] = {.lex_state = 19, .external_lex_state = 2}, - [6884] = {.lex_state = 117, .external_lex_state = 2}, - [6885] = {.lex_state = 20, .external_lex_state = 2}, - [6886] = {.lex_state = 117, .external_lex_state = 2}, - [6887] = {.lex_state = 117, .external_lex_state = 3}, - [6888] = {.lex_state = 120, .external_lex_state = 2}, - [6889] = {.lex_state = 4, .external_lex_state = 2}, - [6890] = {.lex_state = 20, .external_lex_state = 2}, - [6891] = {.lex_state = 117, .external_lex_state = 2}, - [6892] = {.lex_state = 63, .external_lex_state = 2}, - [6893] = {.lex_state = 63, .external_lex_state = 2}, - [6894] = {.lex_state = 117, .external_lex_state = 2}, - [6895] = {.lex_state = 4, .external_lex_state = 2}, - [6896] = {.lex_state = 117, .external_lex_state = 2}, - [6897] = {.lex_state = 20, .external_lex_state = 2}, - [6898] = {.lex_state = 20, .external_lex_state = 2}, - [6899] = {.lex_state = 117, .external_lex_state = 2}, - [6900] = {.lex_state = 117, .external_lex_state = 2}, - [6901] = {.lex_state = 20, .external_lex_state = 2}, - [6902] = {.lex_state = 4, .external_lex_state = 2}, - [6903] = {.lex_state = 20, .external_lex_state = 2}, - [6904] = {.lex_state = 19, .external_lex_state = 2}, - [6905] = {.lex_state = 4, .external_lex_state = 2}, - [6906] = {.lex_state = 19, .external_lex_state = 2}, - [6907] = {.lex_state = 20, .external_lex_state = 2}, - [6908] = {.lex_state = 4, .external_lex_state = 2}, - [6909] = {.lex_state = 117, .external_lex_state = 2}, - [6910] = {.lex_state = 4, .external_lex_state = 2}, - [6911] = {.lex_state = 20, .external_lex_state = 2}, - [6912] = {.lex_state = 117, .external_lex_state = 2}, - [6913] = {.lex_state = 19, .external_lex_state = 2}, - [6914] = {.lex_state = 117, .external_lex_state = 2}, - [6915] = {.lex_state = 117, .external_lex_state = 2}, - [6916] = {.lex_state = 120, .external_lex_state = 2}, - [6917] = {.lex_state = 20, .external_lex_state = 2}, - [6918] = {.lex_state = 117, .external_lex_state = 2}, - [6919] = {.lex_state = 117, .external_lex_state = 2}, - [6920] = {.lex_state = 117, .external_lex_state = 2}, - [6921] = {.lex_state = 117, .external_lex_state = 2}, - [6922] = {.lex_state = 117, .external_lex_state = 2}, - [6923] = {.lex_state = 30, .external_lex_state = 2}, - [6924] = {.lex_state = 117, .external_lex_state = 2}, - [6925] = {.lex_state = 30, .external_lex_state = 2}, - [6926] = {.lex_state = 117, .external_lex_state = 2}, - [6927] = {.lex_state = 30, .external_lex_state = 2}, - [6928] = {.lex_state = 117, .external_lex_state = 2}, - [6929] = {.lex_state = 117, .external_lex_state = 2}, - [6930] = {.lex_state = 117, .external_lex_state = 2}, - [6931] = {.lex_state = 117, .external_lex_state = 2}, - [6932] = {.lex_state = 117, .external_lex_state = 2}, - [6933] = {.lex_state = 30, .external_lex_state = 2}, - [6934] = {.lex_state = 117, .external_lex_state = 2}, - [6935] = {.lex_state = 30, .external_lex_state = 2}, - [6936] = {.lex_state = 117, .external_lex_state = 2}, - [6937] = {.lex_state = 117, .external_lex_state = 2}, - [6938] = {.lex_state = 117, .external_lex_state = 2}, - [6939] = {.lex_state = 117, .external_lex_state = 2}, - [6940] = {.lex_state = 117, .external_lex_state = 2}, - [6941] = {.lex_state = 117, .external_lex_state = 2}, - [6942] = {.lex_state = 30, .external_lex_state = 2}, - [6943] = {.lex_state = 29, .external_lex_state = 2}, - [6944] = {.lex_state = 117, .external_lex_state = 2}, - [6945] = {.lex_state = 117, .external_lex_state = 2}, - [6946] = {.lex_state = 116, .external_lex_state = 2}, - [6947] = {.lex_state = 32, .external_lex_state = 2}, - [6948] = {.lex_state = 117, .external_lex_state = 2}, - [6949] = {.lex_state = 117, .external_lex_state = 2}, - [6950] = {.lex_state = 117, .external_lex_state = 2}, - [6951] = {.lex_state = 69, .external_lex_state = 8}, - [6952] = {.lex_state = 69, .external_lex_state = 8}, - [6953] = {.lex_state = 117, .external_lex_state = 2}, - [6954] = {.lex_state = 69, .external_lex_state = 8}, - [6955] = {.lex_state = 117, .external_lex_state = 2}, - [6956] = {.lex_state = 69, .external_lex_state = 8}, - [6957] = {.lex_state = 117, .external_lex_state = 2}, - [6958] = {.lex_state = 69, .external_lex_state = 8}, - [6959] = {.lex_state = 117, .external_lex_state = 2}, - [6960] = {.lex_state = 30, .external_lex_state = 2}, - [6961] = {.lex_state = 69, .external_lex_state = 8}, - [6962] = {.lex_state = 69, .external_lex_state = 8}, - [6963] = {.lex_state = 69, .external_lex_state = 8}, - [6964] = {.lex_state = 69, .external_lex_state = 8}, - [6965] = {.lex_state = 69, .external_lex_state = 8}, - [6966] = {.lex_state = 69, .external_lex_state = 8}, - [6967] = {.lex_state = 69, .external_lex_state = 8}, - [6968] = {.lex_state = 117, .external_lex_state = 2}, - [6969] = {.lex_state = 20, .external_lex_state = 2}, - [6970] = {.lex_state = 117, .external_lex_state = 2}, - [6971] = {.lex_state = 69, .external_lex_state = 8}, - [6972] = {.lex_state = 117, .external_lex_state = 2}, - [6973] = {.lex_state = 69, .external_lex_state = 8}, - [6974] = {.lex_state = 117, .external_lex_state = 2}, - [6975] = {.lex_state = 30, .external_lex_state = 2}, - [6976] = {.lex_state = 117, .external_lex_state = 2}, - [6977] = {.lex_state = 117, .external_lex_state = 2}, - [6978] = {.lex_state = 69, .external_lex_state = 8}, - [6979] = {.lex_state = 30, .external_lex_state = 2}, - [6980] = {.lex_state = 117, .external_lex_state = 2}, - [6981] = {.lex_state = 117, .external_lex_state = 2}, - [6982] = {.lex_state = 69, .external_lex_state = 8}, - [6983] = {.lex_state = 117, .external_lex_state = 2}, - [6984] = {.lex_state = 30, .external_lex_state = 2}, - [6985] = {.lex_state = 117, .external_lex_state = 2}, - [6986] = {.lex_state = 117, .external_lex_state = 2}, - [6987] = {.lex_state = 117, .external_lex_state = 2}, - [6988] = {.lex_state = 117, .external_lex_state = 2}, - [6989] = {.lex_state = 117, .external_lex_state = 2}, - [6990] = {.lex_state = 69, .external_lex_state = 8}, - [6991] = {.lex_state = 117, .external_lex_state = 2}, - [6992] = {.lex_state = 117, .external_lex_state = 2}, - [6993] = {.lex_state = 117, .external_lex_state = 2}, - [6994] = {.lex_state = 69, .external_lex_state = 8}, - [6995] = {.lex_state = 117, .external_lex_state = 2}, - [6996] = {.lex_state = 30, .external_lex_state = 2}, - [6997] = {.lex_state = 20, .external_lex_state = 2}, - [6998] = {.lex_state = 30, .external_lex_state = 2}, - [6999] = {.lex_state = 117, .external_lex_state = 2}, - [7000] = {.lex_state = 69, .external_lex_state = 8}, - [7001] = {.lex_state = 20, .external_lex_state = 2}, - [7002] = {.lex_state = 117, .external_lex_state = 2}, - [7003] = {.lex_state = 32, .external_lex_state = 2}, - [7004] = {.lex_state = 69, .external_lex_state = 8}, - [7005] = {.lex_state = 30, .external_lex_state = 2}, - [7006] = {.lex_state = 117, .external_lex_state = 2}, - [7007] = {.lex_state = 117, .external_lex_state = 2}, - [7008] = {.lex_state = 69, .external_lex_state = 8}, - [7009] = {.lex_state = 117, .external_lex_state = 2}, - [7010] = {.lex_state = 117, .external_lex_state = 2}, - [7011] = {.lex_state = 117, .external_lex_state = 2}, - [7012] = {.lex_state = 69, .external_lex_state = 8}, - [7013] = {.lex_state = 30, .external_lex_state = 2}, - [7014] = {.lex_state = 117, .external_lex_state = 2}, - [7015] = {.lex_state = 69, .external_lex_state = 8}, - [7016] = {.lex_state = 117, .external_lex_state = 2}, - [7017] = {.lex_state = 117, .external_lex_state = 2}, - [7018] = {.lex_state = 117, .external_lex_state = 2}, - [7019] = {.lex_state = 117, .external_lex_state = 2}, - [7020] = {.lex_state = 69, .external_lex_state = 8}, - [7021] = {.lex_state = 117, .external_lex_state = 2}, - [7022] = {.lex_state = 117, .external_lex_state = 2}, - [7023] = {.lex_state = 117, .external_lex_state = 2}, - [7024] = {.lex_state = 117, .external_lex_state = 2}, - [7025] = {.lex_state = 117, .external_lex_state = 2}, - [7026] = {.lex_state = 69, .external_lex_state = 8}, - [7027] = {.lex_state = 30, .external_lex_state = 2}, - [7028] = {.lex_state = 30, .external_lex_state = 2}, - [7029] = {.lex_state = 117, .external_lex_state = 2}, - [7030] = {.lex_state = 117, .external_lex_state = 2}, - [7031] = {.lex_state = 30, .external_lex_state = 2}, - [7032] = {.lex_state = 117, .external_lex_state = 2}, - [7033] = {.lex_state = 117, .external_lex_state = 2}, - [7034] = {.lex_state = 117, .external_lex_state = 2}, - [7035] = {.lex_state = 117, .external_lex_state = 2}, - [7036] = {.lex_state = 117, .external_lex_state = 2}, - [7037] = {.lex_state = 117, .external_lex_state = 2}, - [7038] = {.lex_state = 30, .external_lex_state = 2}, - [7039] = {.lex_state = 117, .external_lex_state = 2}, - [7040] = {.lex_state = 117, .external_lex_state = 2}, - [7041] = {.lex_state = 117, .external_lex_state = 2}, - [7042] = {.lex_state = 69, .external_lex_state = 8}, - [7043] = {.lex_state = 117, .external_lex_state = 2}, - [7044] = {.lex_state = 117, .external_lex_state = 2}, - [7045] = {.lex_state = 69, .external_lex_state = 8}, - [7046] = {.lex_state = 117, .external_lex_state = 2}, - [7047] = {.lex_state = 117, .external_lex_state = 2}, - [7048] = {.lex_state = 30, .external_lex_state = 2}, - [7049] = {.lex_state = 117, .external_lex_state = 2}, - [7050] = {.lex_state = 32, .external_lex_state = 2}, - [7051] = {.lex_state = 117, .external_lex_state = 2}, - [7052] = {.lex_state = 117, .external_lex_state = 2}, - [7053] = {.lex_state = 117, .external_lex_state = 2}, - [7054] = {.lex_state = 20, .external_lex_state = 2}, - [7055] = {.lex_state = 30, .external_lex_state = 2}, - [7056] = {.lex_state = 20, .external_lex_state = 2}, - [7057] = {.lex_state = 20, .external_lex_state = 2}, - [7058] = {.lex_state = 20, .external_lex_state = 2}, - [7059] = {.lex_state = 30, .external_lex_state = 2}, - [7060] = {.lex_state = 30, .external_lex_state = 2}, - [7061] = {.lex_state = 117, .external_lex_state = 2}, - [7062] = {.lex_state = 117, .external_lex_state = 2}, - [7063] = {.lex_state = 20, .external_lex_state = 2}, - [7064] = {.lex_state = 117, .external_lex_state = 2}, - [7065] = {.lex_state = 30, .external_lex_state = 2}, - [7066] = {.lex_state = 30, .external_lex_state = 2}, - [7067] = {.lex_state = 30, .external_lex_state = 2}, - [7068] = {.lex_state = 20, .external_lex_state = 2}, - [7069] = {.lex_state = 117, .external_lex_state = 2}, - [7070] = {.lex_state = 117, .external_lex_state = 2}, - [7071] = {.lex_state = 117, .external_lex_state = 2}, - [7072] = {.lex_state = 117, .external_lex_state = 2}, - [7073] = {.lex_state = 117, .external_lex_state = 2}, - [7074] = {.lex_state = 117, .external_lex_state = 2}, - [7075] = {.lex_state = 30, .external_lex_state = 2}, - [7076] = {.lex_state = 20, .external_lex_state = 2}, - [7077] = {.lex_state = 30, .external_lex_state = 2}, - [7078] = {.lex_state = 117, .external_lex_state = 2}, - [7079] = {.lex_state = 117, .external_lex_state = 2}, - [7080] = {.lex_state = 117, .external_lex_state = 2}, - [7081] = {.lex_state = 20, .external_lex_state = 2}, - [7082] = {.lex_state = 117, .external_lex_state = 2}, - [7083] = {.lex_state = 117, .external_lex_state = 2}, - [7084] = {.lex_state = 117, .external_lex_state = 2}, - [7085] = {.lex_state = 117, .external_lex_state = 2}, - [7086] = {.lex_state = 30, .external_lex_state = 2}, - [7087] = {.lex_state = 30, .external_lex_state = 2}, - [7088] = {.lex_state = 117, .external_lex_state = 2}, - [7089] = {.lex_state = 117, .external_lex_state = 2}, - [7090] = {.lex_state = 117, .external_lex_state = 2}, - [7091] = {.lex_state = 117, .external_lex_state = 2}, - [7092] = {.lex_state = 20, .external_lex_state = 2}, - [7093] = {.lex_state = 20, .external_lex_state = 2}, - [7094] = {.lex_state = 30, .external_lex_state = 2}, - [7095] = {.lex_state = 30, .external_lex_state = 2}, - [7096] = {.lex_state = 117, .external_lex_state = 2}, - [7097] = {.lex_state = 117, .external_lex_state = 2}, - [7098] = {.lex_state = 117, .external_lex_state = 2}, - [7099] = {.lex_state = 30, .external_lex_state = 2}, - [7100] = {.lex_state = 20, .external_lex_state = 2}, - [7101] = {.lex_state = 20, .external_lex_state = 2}, - [7102] = {.lex_state = 117, .external_lex_state = 2}, - [7103] = {.lex_state = 30, .external_lex_state = 2}, - [7104] = {.lex_state = 117, .external_lex_state = 2}, - [7105] = {.lex_state = 117, .external_lex_state = 2}, - [7106] = {.lex_state = 30, .external_lex_state = 2}, - [7107] = {.lex_state = 117, .external_lex_state = 2}, - [7108] = {.lex_state = 69, .external_lex_state = 8}, - [7109] = {.lex_state = 117, .external_lex_state = 2}, - [7110] = {.lex_state = 117, .external_lex_state = 2}, - [7111] = {.lex_state = 117, .external_lex_state = 2}, - [7112] = {.lex_state = 30, .external_lex_state = 2}, - [7113] = {.lex_state = 117, .external_lex_state = 2}, - [7114] = {.lex_state = 117, .external_lex_state = 2}, - [7115] = {.lex_state = 117, .external_lex_state = 2}, - [7116] = {.lex_state = 120, .external_lex_state = 2}, - [7117] = {.lex_state = 30, .external_lex_state = 2}, - [7118] = {.lex_state = 117, .external_lex_state = 2}, - [7119] = {.lex_state = 117, .external_lex_state = 2}, - [7120] = {.lex_state = 117, .external_lex_state = 2}, - [7121] = {.lex_state = 117, .external_lex_state = 2}, - [7122] = {.lex_state = 117, .external_lex_state = 2}, - [7123] = {.lex_state = 117, .external_lex_state = 2}, - [7124] = {.lex_state = 117, .external_lex_state = 2}, - [7125] = {.lex_state = 117, .external_lex_state = 2}, - [7126] = {.lex_state = 4, .external_lex_state = 2}, - [7127] = {.lex_state = 20, .external_lex_state = 2}, - [7128] = {.lex_state = 20, .external_lex_state = 2}, - [7129] = {.lex_state = 20, .external_lex_state = 2}, - [7130] = {.lex_state = 117, .external_lex_state = 2}, - [7131] = {.lex_state = 117, .external_lex_state = 2}, - [7132] = {.lex_state = 117, .external_lex_state = 2}, - [7133] = {.lex_state = 117, .external_lex_state = 2}, - [7134] = {.lex_state = 20, .external_lex_state = 2}, - [7135] = {.lex_state = 20, .external_lex_state = 2}, - [7136] = {.lex_state = 20, .external_lex_state = 2}, - [7137] = {.lex_state = 117, .external_lex_state = 2}, - [7138] = {.lex_state = 20, .external_lex_state = 2}, - [7139] = {.lex_state = 29, .external_lex_state = 2}, - [7140] = {.lex_state = 117, .external_lex_state = 2}, - [7141] = {.lex_state = 20, .external_lex_state = 2}, - [7142] = {.lex_state = 20, .external_lex_state = 2}, - [7143] = {.lex_state = 117, .external_lex_state = 2}, - [7144] = {.lex_state = 117, .external_lex_state = 2}, - [7145] = {.lex_state = 20, .external_lex_state = 2}, - [7146] = {.lex_state = 20, .external_lex_state = 2}, - [7147] = {.lex_state = 20, .external_lex_state = 2}, - [7148] = {.lex_state = 20, .external_lex_state = 2}, - [7149] = {.lex_state = 4, .external_lex_state = 2}, - [7150] = {.lex_state = 117, .external_lex_state = 2}, - [7151] = {.lex_state = 20, .external_lex_state = 2}, - [7152] = {.lex_state = 20, .external_lex_state = 2}, - [7153] = {.lex_state = 117, .external_lex_state = 2}, - [7154] = {.lex_state = 30, .external_lex_state = 2}, - [7155] = {.lex_state = 20, .external_lex_state = 2}, - [7156] = {.lex_state = 20, .external_lex_state = 2}, - [7157] = {.lex_state = 20, .external_lex_state = 2}, - [7158] = {.lex_state = 20, .external_lex_state = 2}, - [7159] = {.lex_state = 20, .external_lex_state = 2}, - [7160] = {.lex_state = 117, .external_lex_state = 2}, - [7161] = {.lex_state = 20, .external_lex_state = 2}, - [7162] = {.lex_state = 20, .external_lex_state = 2}, - [7163] = {.lex_state = 20, .external_lex_state = 2}, - [7164] = {.lex_state = 117, .external_lex_state = 2}, - [7165] = {.lex_state = 117, .external_lex_state = 2}, - [7166] = {.lex_state = 117, .external_lex_state = 2}, - [7167] = {.lex_state = 20, .external_lex_state = 2}, - [7168] = {.lex_state = 20, .external_lex_state = 2}, - [7169] = {.lex_state = 20, .external_lex_state = 2}, - [7170] = {.lex_state = 20, .external_lex_state = 2}, - [7171] = {.lex_state = 20, .external_lex_state = 2}, - [7172] = {.lex_state = 30, .external_lex_state = 2}, - [7173] = {.lex_state = 30, .external_lex_state = 2}, - [7174] = {.lex_state = 117, .external_lex_state = 2}, - [7175] = {.lex_state = 117, .external_lex_state = 2}, - [7176] = {.lex_state = 117, .external_lex_state = 2}, - [7177] = {.lex_state = 117, .external_lex_state = 2}, - [7178] = {.lex_state = 117, .external_lex_state = 2}, - [7179] = {.lex_state = 117, .external_lex_state = 2}, - [7180] = {.lex_state = 20, .external_lex_state = 2}, - [7181] = {.lex_state = 20, .external_lex_state = 2}, - [7182] = {.lex_state = 20, .external_lex_state = 2}, - [7183] = {.lex_state = 117, .external_lex_state = 2}, - [7184] = {.lex_state = 117, .external_lex_state = 2}, - [7185] = {.lex_state = 117, .external_lex_state = 2}, - [7186] = {.lex_state = 117, .external_lex_state = 2}, - [7187] = {.lex_state = 30, .external_lex_state = 2}, - [7188] = {.lex_state = 30, .external_lex_state = 2}, - [7189] = {.lex_state = 20, .external_lex_state = 2}, - [7190] = {.lex_state = 20, .external_lex_state = 2}, - [7191] = {.lex_state = 20, .external_lex_state = 2}, - [7192] = {.lex_state = 117, .external_lex_state = 2}, - [7193] = {.lex_state = 117, .external_lex_state = 2}, - [7194] = {.lex_state = 117, .external_lex_state = 2}, - [7195] = {.lex_state = 29, .external_lex_state = 2}, - [7196] = {.lex_state = 30, .external_lex_state = 2}, - [7197] = {.lex_state = 117, .external_lex_state = 2}, - [7198] = {.lex_state = 117, .external_lex_state = 2}, - [7199] = {.lex_state = 30, .external_lex_state = 2}, - [7200] = {.lex_state = 20, .external_lex_state = 2}, - [7201] = {.lex_state = 20, .external_lex_state = 2}, - [7202] = {.lex_state = 20, .external_lex_state = 2}, - [7203] = {.lex_state = 30, .external_lex_state = 2}, - [7204] = {.lex_state = 30, .external_lex_state = 2}, - [7205] = {.lex_state = 117, .external_lex_state = 2}, - [7206] = {.lex_state = 117, .external_lex_state = 2}, - [7207] = {.lex_state = 116, .external_lex_state = 2}, - [7208] = {.lex_state = 117, .external_lex_state = 2}, - [7209] = {.lex_state = 30, .external_lex_state = 2}, - [7210] = {.lex_state = 117, .external_lex_state = 2}, - [7211] = {.lex_state = 30, .external_lex_state = 2}, - [7212] = {.lex_state = 117, .external_lex_state = 2}, - [7213] = {.lex_state = 30, .external_lex_state = 2}, - [7214] = {.lex_state = 117, .external_lex_state = 2}, - [7215] = {.lex_state = 117, .external_lex_state = 2}, - [7216] = {.lex_state = 117, .external_lex_state = 2}, - [7217] = {.lex_state = 117, .external_lex_state = 2}, - [7218] = {.lex_state = 117, .external_lex_state = 2}, - [7219] = {.lex_state = 20, .external_lex_state = 2}, - [7220] = {.lex_state = 20, .external_lex_state = 2}, - [7221] = {.lex_state = 20, .external_lex_state = 2}, - [7222] = {.lex_state = 117, .external_lex_state = 2}, - [7223] = {.lex_state = 117, .external_lex_state = 2}, - [7224] = {.lex_state = 20, .external_lex_state = 2}, - [7225] = {.lex_state = 20, .external_lex_state = 2}, - [7226] = {.lex_state = 116, .external_lex_state = 2}, - [7227] = {.lex_state = 117, .external_lex_state = 2}, - [7228] = {.lex_state = 30, .external_lex_state = 2}, - [7229] = {.lex_state = 117, .external_lex_state = 2}, - [7230] = {.lex_state = 30, .external_lex_state = 2}, - [7231] = {.lex_state = 30, .external_lex_state = 2}, - [7232] = {.lex_state = 29, .external_lex_state = 2}, - [7233] = {.lex_state = 20, .external_lex_state = 2}, - [7234] = {.lex_state = 20, .external_lex_state = 2}, - [7235] = {.lex_state = 20, .external_lex_state = 2}, - [7236] = {.lex_state = 117, .external_lex_state = 2}, - [7237] = {.lex_state = 117, .external_lex_state = 2}, - [7238] = {.lex_state = 30, .external_lex_state = 2}, - [7239] = {.lex_state = 117, .external_lex_state = 2}, - [7240] = {.lex_state = 117, .external_lex_state = 2}, - [7241] = {.lex_state = 117, .external_lex_state = 2}, - [7242] = {.lex_state = 117, .external_lex_state = 2}, - [7243] = {.lex_state = 29, .external_lex_state = 2}, - [7244] = {.lex_state = 20, .external_lex_state = 2}, - [7245] = {.lex_state = 20, .external_lex_state = 2}, - [7246] = {.lex_state = 20, .external_lex_state = 2}, - [7247] = {.lex_state = 30, .external_lex_state = 2}, - [7248] = {.lex_state = 30, .external_lex_state = 2}, - [7249] = {.lex_state = 30, .external_lex_state = 2}, - [7250] = {.lex_state = 20, .external_lex_state = 2}, - [7251] = {.lex_state = 20, .external_lex_state = 2}, - [7252] = {.lex_state = 117, .external_lex_state = 2}, - [7253] = {.lex_state = 30, .external_lex_state = 2}, - [7254] = {.lex_state = 117, .external_lex_state = 2}, - [7255] = {.lex_state = 116, .external_lex_state = 2}, - [7256] = {.lex_state = 117, .external_lex_state = 2}, - [7257] = {.lex_state = 117, .external_lex_state = 2}, - [7258] = {.lex_state = 117, .external_lex_state = 2}, - [7259] = {.lex_state = 30, .external_lex_state = 2}, - [7260] = {.lex_state = 20, .external_lex_state = 2}, - [7261] = {.lex_state = 117, .external_lex_state = 2}, - [7262] = {.lex_state = 20, .external_lex_state = 2}, - [7263] = {.lex_state = 117, .external_lex_state = 2}, - [7264] = {.lex_state = 20, .external_lex_state = 2}, - [7265] = {.lex_state = 117, .external_lex_state = 2}, - [7266] = {.lex_state = 20, .external_lex_state = 2}, - [7267] = {.lex_state = 117, .external_lex_state = 2}, - [7268] = {.lex_state = 20, .external_lex_state = 2}, - [7269] = {.lex_state = 20, .external_lex_state = 2}, - [7270] = {.lex_state = 117, .external_lex_state = 2}, - [7271] = {.lex_state = 117, .external_lex_state = 2}, - [7272] = {.lex_state = 30, .external_lex_state = 2}, - [7273] = {.lex_state = 20, .external_lex_state = 2}, - [7274] = {.lex_state = 117, .external_lex_state = 2}, - [7275] = {.lex_state = 20, .external_lex_state = 2}, - [7276] = {.lex_state = 20, .external_lex_state = 2}, - [7277] = {.lex_state = 20, .external_lex_state = 2}, - [7278] = {.lex_state = 20, .external_lex_state = 2}, - [7279] = {.lex_state = 20, .external_lex_state = 2}, - [7280] = {.lex_state = 20, .external_lex_state = 2}, - [7281] = {.lex_state = 117, .external_lex_state = 2}, - [7282] = {.lex_state = 117, .external_lex_state = 2}, - [7283] = {.lex_state = 30, .external_lex_state = 2}, - [7284] = {.lex_state = 117, .external_lex_state = 2}, - [7285] = {.lex_state = 117, .external_lex_state = 2}, - [7286] = {.lex_state = 117, .external_lex_state = 2}, - [7287] = {.lex_state = 30, .external_lex_state = 2}, - [7288] = {.lex_state = 117, .external_lex_state = 2}, - [7289] = {.lex_state = 117, .external_lex_state = 2}, - [7290] = {.lex_state = 117, .external_lex_state = 2}, - [7291] = {.lex_state = 30, .external_lex_state = 2}, - [7292] = {.lex_state = 117, .external_lex_state = 2}, - [7293] = {.lex_state = 117, .external_lex_state = 2}, - [7294] = {.lex_state = 117, .external_lex_state = 2}, - [7295] = {.lex_state = 117, .external_lex_state = 2}, - [7296] = {.lex_state = 20, .external_lex_state = 2}, - [7297] = {.lex_state = 20, .external_lex_state = 2}, - [7298] = {.lex_state = 20, .external_lex_state = 2}, - [7299] = {.lex_state = 117, .external_lex_state = 2}, - [7300] = {.lex_state = 20, .external_lex_state = 2}, - [7301] = {.lex_state = 117, .external_lex_state = 2}, - [7302] = {.lex_state = 20, .external_lex_state = 2}, - [7303] = {.lex_state = 20, .external_lex_state = 2}, - [7304] = {.lex_state = 117, .external_lex_state = 2}, - [7305] = {.lex_state = 36, .external_lex_state = 2}, - [7306] = {.lex_state = 117, .external_lex_state = 2}, - [7307] = {.lex_state = 117, .external_lex_state = 2}, - [7308] = {.lex_state = 117, .external_lex_state = 2}, - [7309] = {.lex_state = 117, .external_lex_state = 2}, - [7310] = {.lex_state = 30, .external_lex_state = 2}, - [7311] = {.lex_state = 117, .external_lex_state = 2}, - [7312] = {.lex_state = 30, .external_lex_state = 2}, - [7313] = {.lex_state = 117, .external_lex_state = 2}, - [7314] = {.lex_state = 117, .external_lex_state = 2}, - [7315] = {.lex_state = 117, .external_lex_state = 2}, - [7316] = {.lex_state = 117, .external_lex_state = 2}, - [7317] = {.lex_state = 117, .external_lex_state = 2}, - [7318] = {.lex_state = 117, .external_lex_state = 2}, - [7319] = {.lex_state = 20, .external_lex_state = 2}, - [7320] = {.lex_state = 20, .external_lex_state = 2}, - [7321] = {.lex_state = 20, .external_lex_state = 2}, - [7322] = {.lex_state = 117, .external_lex_state = 2}, - [7323] = {.lex_state = 117, .external_lex_state = 2}, - [7324] = {.lex_state = 117, .external_lex_state = 2}, - [7325] = {.lex_state = 20, .external_lex_state = 2}, - [7326] = {.lex_state = 117, .external_lex_state = 2}, - [7327] = {.lex_state = 117, .external_lex_state = 2}, - [7328] = {.lex_state = 4, .external_lex_state = 2}, - [7329] = {.lex_state = 117, .external_lex_state = 2}, - [7330] = {.lex_state = 30, .external_lex_state = 2}, - [7331] = {.lex_state = 4, .external_lex_state = 2}, - [7332] = {.lex_state = 117, .external_lex_state = 2}, - [7333] = {.lex_state = 117, .external_lex_state = 2}, - [7334] = {.lex_state = 117, .external_lex_state = 2}, - [7335] = {.lex_state = 117, .external_lex_state = 2}, - [7336] = {.lex_state = 117, .external_lex_state = 2}, - [7337] = {.lex_state = 117, .external_lex_state = 2}, - [7338] = {.lex_state = 117, .external_lex_state = 2}, - [7339] = {.lex_state = 30, .external_lex_state = 2}, - [7340] = {.lex_state = 117, .external_lex_state = 2}, - [7341] = {.lex_state = 117, .external_lex_state = 2}, - [7342] = {.lex_state = 117, .external_lex_state = 2}, - [7343] = {.lex_state = 117, .external_lex_state = 2}, - [7344] = {.lex_state = 117, .external_lex_state = 2}, - [7345] = {.lex_state = 20, .external_lex_state = 2}, - [7346] = {.lex_state = 117, .external_lex_state = 2}, - [7347] = {.lex_state = 30, .external_lex_state = 2}, - [7348] = {.lex_state = 30, .external_lex_state = 2}, - [7349] = {.lex_state = 117, .external_lex_state = 2}, - [7350] = {.lex_state = 30, .external_lex_state = 2}, - [7351] = {.lex_state = 117, .external_lex_state = 2}, - [7352] = {.lex_state = 117, .external_lex_state = 2}, - [7353] = {.lex_state = 117, .external_lex_state = 2}, - [7354] = {.lex_state = 117, .external_lex_state = 2}, - [7355] = {.lex_state = 117, .external_lex_state = 2}, - [7356] = {.lex_state = 30, .external_lex_state = 2}, - [7357] = {.lex_state = 117, .external_lex_state = 2}, - [7358] = {.lex_state = 32, .external_lex_state = 2}, - [7359] = {.lex_state = 117, .external_lex_state = 2}, - [7360] = {.lex_state = 20, .external_lex_state = 2}, - [7361] = {.lex_state = 30, .external_lex_state = 2}, - [7362] = {.lex_state = 29, .external_lex_state = 2}, - [7363] = {.lex_state = 20, .external_lex_state = 2}, - [7364] = {.lex_state = 117, .external_lex_state = 2}, - [7365] = {.lex_state = 117, .external_lex_state = 2}, - [7366] = {.lex_state = 117, .external_lex_state = 2}, - [7367] = {.lex_state = 30, .external_lex_state = 2}, - [7368] = {.lex_state = 117, .external_lex_state = 2}, - [7369] = {.lex_state = 117, .external_lex_state = 2}, - [7370] = {.lex_state = 117, .external_lex_state = 2}, - [7371] = {.lex_state = 117, .external_lex_state = 2}, - [7372] = {.lex_state = 117, .external_lex_state = 2}, - [7373] = {.lex_state = 117, .external_lex_state = 2}, - [7374] = {.lex_state = 117, .external_lex_state = 2}, - [7375] = {.lex_state = 117, .external_lex_state = 2}, - [7376] = {.lex_state = 30, .external_lex_state = 2}, - [7377] = {.lex_state = 117, .external_lex_state = 3}, - [7378] = {.lex_state = 117, .external_lex_state = 2}, - [7379] = {.lex_state = 117, .external_lex_state = 2}, - [7380] = {.lex_state = 117, .external_lex_state = 2}, - [7381] = {.lex_state = 30, .external_lex_state = 2}, - [7382] = {.lex_state = 117, .external_lex_state = 2}, - [7383] = {.lex_state = 117, .external_lex_state = 2}, - [7384] = {.lex_state = 117, .external_lex_state = 9}, - [7385] = {.lex_state = 117, .external_lex_state = 2}, - [7386] = {.lex_state = 117, .external_lex_state = 2}, - [7387] = {.lex_state = 117, .external_lex_state = 2}, - [7388] = {.lex_state = 117, .external_lex_state = 2}, - [7389] = {.lex_state = 117, .external_lex_state = 2}, - [7390] = {.lex_state = 117, .external_lex_state = 2}, - [7391] = {.lex_state = 30, .external_lex_state = 2}, - [7392] = {.lex_state = 117, .external_lex_state = 2}, - [7393] = {.lex_state = 117, .external_lex_state = 2}, - [7394] = {.lex_state = 117, .external_lex_state = 2}, - [7395] = {.lex_state = 117, .external_lex_state = 2}, - [7396] = {.lex_state = 117, .external_lex_state = 2}, - [7397] = {.lex_state = 117, .external_lex_state = 3}, - [7398] = {.lex_state = 117, .external_lex_state = 2}, - [7399] = {.lex_state = 117, .external_lex_state = 2}, - [7400] = {.lex_state = 117, .external_lex_state = 2}, - [7401] = {.lex_state = 117, .external_lex_state = 2}, - [7402] = {.lex_state = 117, .external_lex_state = 2}, - [7403] = {.lex_state = 117, .external_lex_state = 2}, - [7404] = {.lex_state = 30, .external_lex_state = 2}, - [7405] = {.lex_state = 117, .external_lex_state = 2}, - [7406] = {.lex_state = 117, .external_lex_state = 2}, - [7407] = {.lex_state = 117, .external_lex_state = 2}, - [7408] = {.lex_state = 117, .external_lex_state = 2}, - [7409] = {.lex_state = 117, .external_lex_state = 2}, - [7410] = {.lex_state = 117, .external_lex_state = 2}, - [7411] = {.lex_state = 117, .external_lex_state = 2}, - [7412] = {.lex_state = 117, .external_lex_state = 2}, - [7413] = {.lex_state = 117, .external_lex_state = 2}, - [7414] = {.lex_state = 117, .external_lex_state = 2}, - [7415] = {.lex_state = 117, .external_lex_state = 3}, - [7416] = {.lex_state = 117, .external_lex_state = 2}, - [7417] = {.lex_state = 117, .external_lex_state = 2}, - [7418] = {.lex_state = 117, .external_lex_state = 2}, - [7419] = {.lex_state = 117, .external_lex_state = 2}, - [7420] = {.lex_state = 117, .external_lex_state = 9}, - [7421] = {.lex_state = 117, .external_lex_state = 2}, - [7422] = {.lex_state = 117, .external_lex_state = 2}, - [7423] = {.lex_state = 117, .external_lex_state = 2}, - [7424] = {.lex_state = 117, .external_lex_state = 2}, - [7425] = {.lex_state = 117, .external_lex_state = 2}, - [7426] = {.lex_state = 117, .external_lex_state = 2}, - [7427] = {.lex_state = 117, .external_lex_state = 9}, - [7428] = {.lex_state = 117, .external_lex_state = 2}, - [7429] = {.lex_state = 117, .external_lex_state = 2}, - [7430] = {.lex_state = 117, .external_lex_state = 2}, - [7431] = {.lex_state = 117, .external_lex_state = 2}, - [7432] = {.lex_state = 117, .external_lex_state = 2}, - [7433] = {.lex_state = 117, .external_lex_state = 2}, - [7434] = {.lex_state = 30, .external_lex_state = 2}, - [7435] = {.lex_state = 117, .external_lex_state = 2}, - [7436] = {.lex_state = 117, .external_lex_state = 2}, - [7437] = {.lex_state = 30, .external_lex_state = 2}, - [7438] = {.lex_state = 117, .external_lex_state = 2}, - [7439] = {.lex_state = 117, .external_lex_state = 2}, - [7440] = {.lex_state = 117, .external_lex_state = 2}, - [7441] = {.lex_state = 117, .external_lex_state = 2}, - [7442] = {.lex_state = 117, .external_lex_state = 9}, - [7443] = {.lex_state = 117, .external_lex_state = 2}, - [7444] = {.lex_state = 117, .external_lex_state = 3}, - [7445] = {.lex_state = 117, .external_lex_state = 2}, - [7446] = {.lex_state = 117, .external_lex_state = 2}, - [7447] = {.lex_state = 117, .external_lex_state = 2}, - [7448] = {.lex_state = 117, .external_lex_state = 2}, - [7449] = {.lex_state = 117, .external_lex_state = 2}, - [7450] = {.lex_state = 117, .external_lex_state = 2}, - [7451] = {.lex_state = 117, .external_lex_state = 2}, - [7452] = {.lex_state = 117, .external_lex_state = 2}, - [7453] = {.lex_state = 117, .external_lex_state = 2}, - [7454] = {.lex_state = 117, .external_lex_state = 2}, - [7455] = {.lex_state = 117, .external_lex_state = 2}, - [7456] = {.lex_state = 117, .external_lex_state = 2}, - [7457] = {.lex_state = 117, .external_lex_state = 2}, - [7458] = {.lex_state = 117, .external_lex_state = 2}, - [7459] = {.lex_state = 117, .external_lex_state = 9}, - [7460] = {.lex_state = 117, .external_lex_state = 2}, - [7461] = {.lex_state = 117, .external_lex_state = 2}, - [7462] = {.lex_state = 117, .external_lex_state = 2}, - [7463] = {.lex_state = 117, .external_lex_state = 2}, - [7464] = {.lex_state = 117, .external_lex_state = 2}, - [7465] = {.lex_state = 117, .external_lex_state = 2}, - [7466] = {.lex_state = 117, .external_lex_state = 2}, - [7467] = {.lex_state = 117, .external_lex_state = 2}, - [7468] = {.lex_state = 117, .external_lex_state = 2}, - [7469] = {.lex_state = 117, .external_lex_state = 2}, - [7470] = {.lex_state = 117, .external_lex_state = 2}, - [7471] = {.lex_state = 117, .external_lex_state = 2}, - [7472] = {.lex_state = 117, .external_lex_state = 2}, - [7473] = {.lex_state = 117, .external_lex_state = 2}, - [7474] = {.lex_state = 117, .external_lex_state = 2}, - [7475] = {.lex_state = 117, .external_lex_state = 2}, - [7476] = {.lex_state = 117, .external_lex_state = 2}, - [7477] = {.lex_state = 117, .external_lex_state = 2}, - [7478] = {.lex_state = 14, .external_lex_state = 2}, - [7479] = {.lex_state = 117, .external_lex_state = 2}, - [7480] = {.lex_state = 117, .external_lex_state = 2}, - [7481] = {.lex_state = 117, .external_lex_state = 2}, - [7482] = {.lex_state = 117, .external_lex_state = 2}, - [7483] = {.lex_state = 117, .external_lex_state = 2}, - [7484] = {.lex_state = 117, .external_lex_state = 9}, - [7485] = {.lex_state = 117, .external_lex_state = 2}, - [7486] = {.lex_state = 117, .external_lex_state = 2}, - [7487] = {.lex_state = 117, .external_lex_state = 2}, - [7488] = {.lex_state = 117, .external_lex_state = 2}, - [7489] = {.lex_state = 30, .external_lex_state = 2}, - [7490] = {.lex_state = 117, .external_lex_state = 2}, - [7491] = {.lex_state = 117, .external_lex_state = 2}, - [7492] = {.lex_state = 117, .external_lex_state = 2}, - [7493] = {.lex_state = 117, .external_lex_state = 2}, - [7494] = {.lex_state = 117, .external_lex_state = 2}, - [7495] = {.lex_state = 117, .external_lex_state = 2}, - [7496] = {.lex_state = 117, .external_lex_state = 9}, - [7497] = {.lex_state = 117, .external_lex_state = 2}, - [7498] = {.lex_state = 117, .external_lex_state = 2}, - [7499] = {.lex_state = 30, .external_lex_state = 2}, - [7500] = {.lex_state = 117, .external_lex_state = 2}, - [7501] = {.lex_state = 30, .external_lex_state = 2}, - [7502] = {.lex_state = 117, .external_lex_state = 2}, - [7503] = {.lex_state = 117, .external_lex_state = 2}, - [7504] = {.lex_state = 117, .external_lex_state = 2}, - [7505] = {.lex_state = 117, .external_lex_state = 2}, - [7506] = {.lex_state = 117, .external_lex_state = 2}, - [7507] = {.lex_state = 117, .external_lex_state = 2}, - [7508] = {.lex_state = 117, .external_lex_state = 2}, - [7509] = {.lex_state = 117, .external_lex_state = 2}, - [7510] = {.lex_state = 117, .external_lex_state = 2}, - [7511] = {.lex_state = 117, .external_lex_state = 9}, - [7512] = {.lex_state = 117, .external_lex_state = 2}, - [7513] = {.lex_state = 117, .external_lex_state = 2}, - [7514] = {.lex_state = 117, .external_lex_state = 2}, - [7515] = {.lex_state = 117, .external_lex_state = 2}, - [7516] = {.lex_state = 117, .external_lex_state = 2}, - [7517] = {.lex_state = 117, .external_lex_state = 2}, - [7518] = {.lex_state = 117, .external_lex_state = 2}, - [7519] = {.lex_state = 117, .external_lex_state = 2}, - [7520] = {.lex_state = 117, .external_lex_state = 2}, - [7521] = {.lex_state = 117, .external_lex_state = 2}, - [7522] = {.lex_state = 117, .external_lex_state = 2}, - [7523] = {.lex_state = 117, .external_lex_state = 2}, - [7524] = {.lex_state = 117, .external_lex_state = 2}, - [7525] = {.lex_state = 117, .external_lex_state = 2}, - [7526] = {.lex_state = 117, .external_lex_state = 2}, - [7527] = {.lex_state = 117, .external_lex_state = 2}, - [7528] = {.lex_state = 117, .external_lex_state = 2}, - [7529] = {.lex_state = 117, .external_lex_state = 2}, - [7530] = {.lex_state = 117, .external_lex_state = 2}, - [7531] = {.lex_state = 117, .external_lex_state = 3}, - [7532] = {.lex_state = 117, .external_lex_state = 2}, - [7533] = {.lex_state = 117, .external_lex_state = 2}, - [7534] = {.lex_state = 117, .external_lex_state = 2}, - [7535] = {.lex_state = 117, .external_lex_state = 2}, - [7536] = {.lex_state = 117, .external_lex_state = 2}, - [7537] = {.lex_state = 117, .external_lex_state = 2}, - [7538] = {.lex_state = 117, .external_lex_state = 2}, - [7539] = {.lex_state = 117, .external_lex_state = 3}, - [7540] = {.lex_state = 117, .external_lex_state = 2}, - [7541] = {.lex_state = 117, .external_lex_state = 2}, - [7542] = {.lex_state = 117, .external_lex_state = 2}, - [7543] = {.lex_state = 30, .external_lex_state = 2}, - [7544] = {.lex_state = 117, .external_lex_state = 9}, - [7545] = {.lex_state = 117, .external_lex_state = 2}, - [7546] = {.lex_state = 117, .external_lex_state = 2}, - [7547] = {.lex_state = 117, .external_lex_state = 2}, - [7548] = {.lex_state = 117, .external_lex_state = 2}, - [7549] = {.lex_state = 30, .external_lex_state = 2}, - [7550] = {.lex_state = 117, .external_lex_state = 2}, - [7551] = {.lex_state = 117, .external_lex_state = 2}, - [7552] = {.lex_state = 117, .external_lex_state = 2}, - [7553] = {.lex_state = 117, .external_lex_state = 9}, - [7554] = {.lex_state = 117, .external_lex_state = 2}, - [7555] = {.lex_state = 117, .external_lex_state = 2}, - [7556] = {.lex_state = 117, .external_lex_state = 9}, - [7557] = {.lex_state = 117, .external_lex_state = 2}, - [7558] = {.lex_state = 117, .external_lex_state = 2}, - [7559] = {.lex_state = 117, .external_lex_state = 2}, - [7560] = {.lex_state = 117, .external_lex_state = 2}, - [7561] = {.lex_state = 117, .external_lex_state = 2}, - [7562] = {.lex_state = 117, .external_lex_state = 2}, - [7563] = {.lex_state = 117, .external_lex_state = 2}, - [7564] = {.lex_state = 117, .external_lex_state = 2}, - [7565] = {.lex_state = 117, .external_lex_state = 2}, - [7566] = {.lex_state = 117, .external_lex_state = 2}, - [7567] = {.lex_state = 117, .external_lex_state = 2}, - [7568] = {.lex_state = 117, .external_lex_state = 2}, - [7569] = {.lex_state = 117, .external_lex_state = 9}, - [7570] = {.lex_state = 117, .external_lex_state = 2}, - [7571] = {.lex_state = 117, .external_lex_state = 2}, - [7572] = {.lex_state = 117, .external_lex_state = 2}, - [7573] = {.lex_state = 117, .external_lex_state = 2}, - [7574] = {.lex_state = 117, .external_lex_state = 2}, - [7575] = {.lex_state = 117, .external_lex_state = 2}, - [7576] = {.lex_state = 117, .external_lex_state = 2}, - [7577] = {.lex_state = 117, .external_lex_state = 2}, - [7578] = {.lex_state = 117, .external_lex_state = 2}, - [7579] = {.lex_state = 117, .external_lex_state = 2}, - [7580] = {.lex_state = 117, .external_lex_state = 2}, - [7581] = {.lex_state = 117, .external_lex_state = 2}, - [7582] = {.lex_state = 117, .external_lex_state = 2}, - [7583] = {.lex_state = 117, .external_lex_state = 2}, - [7584] = {.lex_state = 30, .external_lex_state = 2}, - [7585] = {.lex_state = 117, .external_lex_state = 2}, - [7586] = {.lex_state = 117, .external_lex_state = 2}, - [7587] = {.lex_state = 117, .external_lex_state = 2}, - [7588] = {.lex_state = 117, .external_lex_state = 2}, - [7589] = {.lex_state = 117, .external_lex_state = 2}, - [7590] = {.lex_state = 30, .external_lex_state = 2}, - [7591] = {.lex_state = 117, .external_lex_state = 2}, - [7592] = {.lex_state = 117, .external_lex_state = 2}, - [7593] = {.lex_state = 30, .external_lex_state = 2}, - [7594] = {.lex_state = 117, .external_lex_state = 2}, - [7595] = {.lex_state = 30, .external_lex_state = 2}, - [7596] = {.lex_state = 117, .external_lex_state = 9}, - [7597] = {.lex_state = 30, .external_lex_state = 2}, - [7598] = {.lex_state = 117, .external_lex_state = 2}, - [7599] = {.lex_state = 117, .external_lex_state = 2}, - [7600] = {.lex_state = 117, .external_lex_state = 2}, - [7601] = {.lex_state = 117, .external_lex_state = 2}, - [7602] = {.lex_state = 117, .external_lex_state = 2}, - [7603] = {.lex_state = 30, .external_lex_state = 2}, - [7604] = {.lex_state = 117, .external_lex_state = 2}, - [7605] = {.lex_state = 14, .external_lex_state = 2}, - [7606] = {.lex_state = 117, .external_lex_state = 2}, - [7607] = {.lex_state = 117, .external_lex_state = 9}, - [7608] = {.lex_state = 117, .external_lex_state = 9}, - [7609] = {.lex_state = 117, .external_lex_state = 2}, - [7610] = {.lex_state = 117, .external_lex_state = 2}, - [7611] = {.lex_state = 30, .external_lex_state = 2}, - [7612] = {.lex_state = 117, .external_lex_state = 2}, - [7613] = {.lex_state = 30, .external_lex_state = 2}, - [7614] = {.lex_state = 117, .external_lex_state = 2}, - [7615] = {.lex_state = 117, .external_lex_state = 2}, - [7616] = {.lex_state = 117, .external_lex_state = 2}, - [7617] = {.lex_state = 117, .external_lex_state = 2}, - [7618] = {.lex_state = 117, .external_lex_state = 9}, - [7619] = {.lex_state = 117, .external_lex_state = 2}, - [7620] = {.lex_state = 117, .external_lex_state = 2}, - [7621] = {.lex_state = 117, .external_lex_state = 2}, - [7622] = {.lex_state = 117, .external_lex_state = 2}, - [7623] = {.lex_state = 117, .external_lex_state = 2}, - [7624] = {.lex_state = 117, .external_lex_state = 2}, - [7625] = {.lex_state = 117, .external_lex_state = 2}, - [7626] = {.lex_state = 117, .external_lex_state = 2}, - [7627] = {.lex_state = 117, .external_lex_state = 2}, - [7628] = {.lex_state = 117, .external_lex_state = 2}, - [7629] = {.lex_state = 117, .external_lex_state = 2}, - [7630] = {.lex_state = 117, .external_lex_state = 2}, - [7631] = {.lex_state = 30, .external_lex_state = 2}, - [7632] = {.lex_state = 117, .external_lex_state = 2}, - [7633] = {.lex_state = 117, .external_lex_state = 2}, - [7634] = {.lex_state = 117, .external_lex_state = 2}, - [7635] = {.lex_state = 117, .external_lex_state = 2}, - [7636] = {.lex_state = 117, .external_lex_state = 2}, - [7637] = {.lex_state = 117, .external_lex_state = 2}, - [7638] = {.lex_state = 117, .external_lex_state = 2}, - [7639] = {.lex_state = 117, .external_lex_state = 2}, - [7640] = {.lex_state = 117, .external_lex_state = 2}, - [7641] = {.lex_state = 117, .external_lex_state = 9}, - [7642] = {.lex_state = 117, .external_lex_state = 2}, - [7643] = {.lex_state = 30, .external_lex_state = 2}, - [7644] = {.lex_state = 117, .external_lex_state = 2}, - [7645] = {.lex_state = 117, .external_lex_state = 2}, - [7646] = {.lex_state = 117, .external_lex_state = 3}, - [7647] = {.lex_state = 117, .external_lex_state = 2}, - [7648] = {.lex_state = 117, .external_lex_state = 2}, - [7649] = {.lex_state = 117, .external_lex_state = 2}, - [7650] = {.lex_state = 117, .external_lex_state = 2}, - [7651] = {.lex_state = 117, .external_lex_state = 9}, - [7652] = {.lex_state = 117, .external_lex_state = 2}, - [7653] = {.lex_state = 117, .external_lex_state = 9}, - [7654] = {.lex_state = 117, .external_lex_state = 2}, - [7655] = {.lex_state = 117, .external_lex_state = 2}, - [7656] = {.lex_state = 117, .external_lex_state = 2}, - [7657] = {.lex_state = 117, .external_lex_state = 2}, - [7658] = {.lex_state = 117, .external_lex_state = 2}, - [7659] = {.lex_state = 117, .external_lex_state = 2}, - [7660] = {.lex_state = 117, .external_lex_state = 9}, - [7661] = {.lex_state = 117, .external_lex_state = 2}, - [7662] = {.lex_state = 117, .external_lex_state = 9}, - [7663] = {.lex_state = 117, .external_lex_state = 2}, - [7664] = {.lex_state = 117, .external_lex_state = 2}, - [7665] = {.lex_state = 117, .external_lex_state = 2}, - [7666] = {.lex_state = 117, .external_lex_state = 2}, - [7667] = {.lex_state = 117, .external_lex_state = 2}, - [7668] = {.lex_state = 117, .external_lex_state = 2}, - [7669] = {.lex_state = 117, .external_lex_state = 2}, - [7670] = {.lex_state = 117, .external_lex_state = 2}, - [7671] = {.lex_state = 30, .external_lex_state = 2}, - [7672] = {.lex_state = 117, .external_lex_state = 2}, - [7673] = {.lex_state = 30, .external_lex_state = 2}, - [7674] = {.lex_state = 117, .external_lex_state = 2}, - [7675] = {.lex_state = 117, .external_lex_state = 2}, - [7676] = {.lex_state = 117, .external_lex_state = 2}, - [7677] = {.lex_state = 117, .external_lex_state = 2}, - [7678] = {.lex_state = 117, .external_lex_state = 2}, - [7679] = {.lex_state = 117, .external_lex_state = 2}, - [7680] = {.lex_state = 117, .external_lex_state = 2}, - [7681] = {.lex_state = 30, .external_lex_state = 2}, - [7682] = {.lex_state = 117, .external_lex_state = 2}, - [7683] = {.lex_state = 117, .external_lex_state = 2}, - [7684] = {.lex_state = 30, .external_lex_state = 2}, - [7685] = {.lex_state = 117, .external_lex_state = 9}, - [7686] = {.lex_state = 30, .external_lex_state = 2}, - [7687] = {.lex_state = 117, .external_lex_state = 2}, - [7688] = {.lex_state = 117, .external_lex_state = 2}, - [7689] = {.lex_state = 117, .external_lex_state = 2}, - [7690] = {.lex_state = 117, .external_lex_state = 2}, - [7691] = {.lex_state = 117, .external_lex_state = 2}, - [7692] = {.lex_state = 117, .external_lex_state = 2}, - [7693] = {.lex_state = 117, .external_lex_state = 2}, - [7694] = {.lex_state = 117, .external_lex_state = 2}, - [7695] = {.lex_state = 117, .external_lex_state = 2}, - [7696] = {.lex_state = 117, .external_lex_state = 2}, - [7697] = {.lex_state = 117, .external_lex_state = 9}, - [7698] = {.lex_state = 117, .external_lex_state = 2}, - [7699] = {.lex_state = 117, .external_lex_state = 2}, - [7700] = {.lex_state = 117, .external_lex_state = 2}, - [7701] = {.lex_state = 117, .external_lex_state = 2}, - [7702] = {.lex_state = 117, .external_lex_state = 2}, - [7703] = {.lex_state = 29, .external_lex_state = 2}, - [7704] = {.lex_state = 117, .external_lex_state = 2}, - [7705] = {.lex_state = 117, .external_lex_state = 2}, - [7706] = {.lex_state = 117, .external_lex_state = 9}, - [7707] = {.lex_state = 117, .external_lex_state = 2}, - [7708] = {.lex_state = 117, .external_lex_state = 2}, - [7709] = {.lex_state = 117, .external_lex_state = 2}, - [7710] = {.lex_state = 117, .external_lex_state = 2}, - [7711] = {.lex_state = 117, .external_lex_state = 2}, - [7712] = {.lex_state = 117, .external_lex_state = 2}, - [7713] = {.lex_state = 117, .external_lex_state = 2}, - [7714] = {.lex_state = 117, .external_lex_state = 2}, - [7715] = {.lex_state = 117, .external_lex_state = 2}, - [7716] = {.lex_state = 117, .external_lex_state = 2}, - [7717] = {.lex_state = 117, .external_lex_state = 2}, - [7718] = {.lex_state = 117, .external_lex_state = 2}, - [7719] = {.lex_state = 30, .external_lex_state = 2}, - [7720] = {.lex_state = 117, .external_lex_state = 2}, - [7721] = {.lex_state = 117, .external_lex_state = 3}, - [7722] = {.lex_state = 117, .external_lex_state = 2}, - [7723] = {.lex_state = 117, .external_lex_state = 2}, - [7724] = {.lex_state = 117, .external_lex_state = 2}, - [7725] = {.lex_state = 117, .external_lex_state = 2}, - [7726] = {.lex_state = 117, .external_lex_state = 2}, - [7727] = {.lex_state = 117, .external_lex_state = 2}, - [7728] = {.lex_state = 117, .external_lex_state = 2}, - [7729] = {.lex_state = 117, .external_lex_state = 9}, - [7730] = {.lex_state = 117, .external_lex_state = 2}, - [7731] = {.lex_state = 117, .external_lex_state = 2}, - [7732] = {.lex_state = 117, .external_lex_state = 2}, - [7733] = {.lex_state = 117, .external_lex_state = 2}, - [7734] = {.lex_state = 117, .external_lex_state = 2}, - [7735] = {.lex_state = 117, .external_lex_state = 2}, - [7736] = {.lex_state = 117, .external_lex_state = 2}, - [7737] = {.lex_state = 117, .external_lex_state = 2}, - [7738] = {.lex_state = 14, .external_lex_state = 2}, - [7739] = {.lex_state = 14, .external_lex_state = 2}, - [7740] = {.lex_state = 117, .external_lex_state = 2}, - [7741] = {.lex_state = 117, .external_lex_state = 9}, - [7742] = {.lex_state = 117, .external_lex_state = 2}, - [7743] = {.lex_state = 117, .external_lex_state = 2}, - [7744] = {.lex_state = 117, .external_lex_state = 2}, - [7745] = {.lex_state = 117, .external_lex_state = 2}, - [7746] = {.lex_state = 117, .external_lex_state = 2}, - [7747] = {.lex_state = 117, .external_lex_state = 2}, - [7748] = {.lex_state = 117, .external_lex_state = 2}, - [7749] = {.lex_state = 117, .external_lex_state = 9}, - [7750] = {.lex_state = 117, .external_lex_state = 2}, - [7751] = {.lex_state = 117, .external_lex_state = 2}, - [7752] = {.lex_state = 117, .external_lex_state = 2}, - [7753] = {.lex_state = 117, .external_lex_state = 2}, - [7754] = {.lex_state = 117, .external_lex_state = 2}, - [7755] = {.lex_state = 117, .external_lex_state = 2}, - [7756] = {.lex_state = 117, .external_lex_state = 2}, - [7757] = {.lex_state = 117, .external_lex_state = 2}, - [7758] = {.lex_state = 117, .external_lex_state = 2}, - [7759] = {.lex_state = 117, .external_lex_state = 2}, - [7760] = {.lex_state = 30, .external_lex_state = 2}, - [7761] = {.lex_state = 117, .external_lex_state = 2}, - [7762] = {.lex_state = 117, .external_lex_state = 2}, - [7763] = {.lex_state = 117, .external_lex_state = 2}, - [7764] = {.lex_state = 117, .external_lex_state = 2}, - [7765] = {.lex_state = 117, .external_lex_state = 2}, - [7766] = {.lex_state = 117, .external_lex_state = 2}, - [7767] = {.lex_state = 117, .external_lex_state = 2}, - [7768] = {.lex_state = 117, .external_lex_state = 2}, - [7769] = {.lex_state = 117, .external_lex_state = 2}, - [7770] = {.lex_state = 30, .external_lex_state = 2}, - [7771] = {.lex_state = 117, .external_lex_state = 9}, - [7772] = {.lex_state = 117, .external_lex_state = 9}, - [7773] = {.lex_state = 117, .external_lex_state = 2}, - [7774] = {.lex_state = 117, .external_lex_state = 3}, - [7775] = {.lex_state = 117, .external_lex_state = 2}, - [7776] = {.lex_state = 117, .external_lex_state = 2}, - [7777] = {.lex_state = 117, .external_lex_state = 2}, - [7778] = {.lex_state = 117, .external_lex_state = 2}, - [7779] = {.lex_state = 117, .external_lex_state = 2}, - [7780] = {.lex_state = 117, .external_lex_state = 2}, - [7781] = {.lex_state = 117, .external_lex_state = 2}, - [7782] = {.lex_state = 117, .external_lex_state = 2}, - [7783] = {.lex_state = 117, .external_lex_state = 2}, - [7784] = {.lex_state = 117, .external_lex_state = 9}, - [7785] = {.lex_state = 30, .external_lex_state = 2}, - [7786] = {.lex_state = 117, .external_lex_state = 2}, - [7787] = {.lex_state = 117, .external_lex_state = 2}, - [7788] = {.lex_state = 117, .external_lex_state = 2}, - [7789] = {.lex_state = 117, .external_lex_state = 2}, - [7790] = {.lex_state = 117, .external_lex_state = 2}, - [7791] = {.lex_state = 117, .external_lex_state = 2}, - [7792] = {.lex_state = 117, .external_lex_state = 9}, - [7793] = {.lex_state = 117, .external_lex_state = 2}, - [7794] = {.lex_state = 117, .external_lex_state = 2}, - [7795] = {.lex_state = 117, .external_lex_state = 2}, - [7796] = {.lex_state = 117, .external_lex_state = 2}, - [7797] = {.lex_state = 117, .external_lex_state = 2}, - [7798] = {.lex_state = 117, .external_lex_state = 2}, - [7799] = {.lex_state = 30, .external_lex_state = 2}, - [7800] = {.lex_state = 30, .external_lex_state = 2}, - [7801] = {.lex_state = 117, .external_lex_state = 2}, - [7802] = {.lex_state = 117, .external_lex_state = 2}, - [7803] = {.lex_state = 117, .external_lex_state = 2}, - [7804] = {.lex_state = 117, .external_lex_state = 2}, - [7805] = {.lex_state = 117, .external_lex_state = 2}, - [7806] = {.lex_state = 117, .external_lex_state = 2}, - [7807] = {.lex_state = 117, .external_lex_state = 2}, - [7808] = {.lex_state = 117, .external_lex_state = 2}, - [7809] = {.lex_state = 117, .external_lex_state = 2}, - [7810] = {.lex_state = 30, .external_lex_state = 2}, - [7811] = {.lex_state = 30, .external_lex_state = 2}, - [7812] = {.lex_state = 117, .external_lex_state = 2}, - [7813] = {.lex_state = 117, .external_lex_state = 9}, - [7814] = {.lex_state = 30, .external_lex_state = 2}, - [7815] = {.lex_state = 117, .external_lex_state = 2}, - [7816] = {.lex_state = 117, .external_lex_state = 2}, - [7817] = {.lex_state = 117, .external_lex_state = 2}, - [7818] = {.lex_state = 30, .external_lex_state = 2}, - [7819] = {.lex_state = 30, .external_lex_state = 2}, - [7820] = {.lex_state = 30, .external_lex_state = 2}, - [7821] = {.lex_state = 117, .external_lex_state = 2}, - [7822] = {.lex_state = 117, .external_lex_state = 2}, - [7823] = {.lex_state = 117, .external_lex_state = 2}, - [7824] = {.lex_state = 117, .external_lex_state = 9}, - [7825] = {.lex_state = 117, .external_lex_state = 9}, - [7826] = {.lex_state = 117, .external_lex_state = 2}, - [7827] = {.lex_state = 117, .external_lex_state = 2}, - [7828] = {.lex_state = 117, .external_lex_state = 2}, - [7829] = {.lex_state = 117, .external_lex_state = 2}, - [7830] = {.lex_state = 117, .external_lex_state = 2}, - [7831] = {.lex_state = 117, .external_lex_state = 2}, - [7832] = {.lex_state = 117, .external_lex_state = 2}, - [7833] = {.lex_state = 117, .external_lex_state = 9}, - [7834] = {.lex_state = 117, .external_lex_state = 2}, - [7835] = {.lex_state = 117, .external_lex_state = 2}, - [7836] = {.lex_state = 117, .external_lex_state = 2}, - [7837] = {.lex_state = 117, .external_lex_state = 2}, - [7838] = {.lex_state = 30, .external_lex_state = 2}, - [7839] = {.lex_state = 30, .external_lex_state = 2}, - [7840] = {.lex_state = 117, .external_lex_state = 2}, - [7841] = {.lex_state = 117, .external_lex_state = 2}, - [7842] = {.lex_state = 117, .external_lex_state = 2}, - [7843] = {.lex_state = 117, .external_lex_state = 2}, - [7844] = {.lex_state = 117, .external_lex_state = 2}, - [7845] = {.lex_state = 30, .external_lex_state = 2}, - [7846] = {.lex_state = 117, .external_lex_state = 2}, - [7847] = {.lex_state = 117, .external_lex_state = 2}, - [7848] = {.lex_state = 117, .external_lex_state = 2}, - [7849] = {.lex_state = 117, .external_lex_state = 9}, - [7850] = {.lex_state = 117, .external_lex_state = 2}, - [7851] = {.lex_state = 117, .external_lex_state = 2}, - [7852] = {.lex_state = 117, .external_lex_state = 2}, - [7853] = {.lex_state = 117, .external_lex_state = 2}, - [7854] = {.lex_state = 117, .external_lex_state = 2}, - [7855] = {.lex_state = 117, .external_lex_state = 2}, - [7856] = {.lex_state = 117, .external_lex_state = 2}, - [7857] = {.lex_state = 117, .external_lex_state = 2}, - [7858] = {.lex_state = 117, .external_lex_state = 2}, - [7859] = {.lex_state = 117, .external_lex_state = 9}, - [7860] = {.lex_state = 30, .external_lex_state = 2}, - [7861] = {.lex_state = 117, .external_lex_state = 3}, - [7862] = {.lex_state = 117, .external_lex_state = 2}, - [7863] = {.lex_state = 117, .external_lex_state = 2}, - [7864] = {.lex_state = 117, .external_lex_state = 2}, - [7865] = {.lex_state = 117, .external_lex_state = 2}, - [7866] = {.lex_state = 117, .external_lex_state = 2}, - [7867] = {.lex_state = 117, .external_lex_state = 9}, - [7868] = {.lex_state = 117, .external_lex_state = 2}, - [7869] = {.lex_state = 117, .external_lex_state = 2}, - [7870] = {.lex_state = 117, .external_lex_state = 2}, - [7871] = {.lex_state = 117, .external_lex_state = 2}, - [7872] = {.lex_state = 117, .external_lex_state = 3}, - [7873] = {.lex_state = 30, .external_lex_state = 2}, - [7874] = {.lex_state = 30, .external_lex_state = 2}, - [7875] = {.lex_state = 117, .external_lex_state = 2}, - [7876] = {.lex_state = 117, .external_lex_state = 2}, - [7877] = {.lex_state = 117, .external_lex_state = 2}, - [7878] = {.lex_state = 117, .external_lex_state = 2}, - [7879] = {.lex_state = 117, .external_lex_state = 2}, - [7880] = {.lex_state = 117, .external_lex_state = 2}, - [7881] = {.lex_state = 117, .external_lex_state = 3}, - [7882] = {.lex_state = 117, .external_lex_state = 9}, - [7883] = {.lex_state = 117, .external_lex_state = 2}, - [7884] = {.lex_state = 117, .external_lex_state = 2}, - [7885] = {.lex_state = 117, .external_lex_state = 2}, - [7886] = {.lex_state = 117, .external_lex_state = 2}, - [7887] = {.lex_state = 117, .external_lex_state = 2}, - [7888] = {.lex_state = 117, .external_lex_state = 2}, - [7889] = {.lex_state = 117, .external_lex_state = 2}, - [7890] = {.lex_state = 117, .external_lex_state = 2}, - [7891] = {.lex_state = 117, .external_lex_state = 2}, - [7892] = {.lex_state = 117, .external_lex_state = 9}, - [7893] = {.lex_state = 117, .external_lex_state = 2}, - [7894] = {.lex_state = 117, .external_lex_state = 2}, - [7895] = {.lex_state = 117, .external_lex_state = 2}, - [7896] = {.lex_state = 117, .external_lex_state = 2}, - [7897] = {.lex_state = 117, .external_lex_state = 8}, - [7898] = {.lex_state = 117, .external_lex_state = 3}, - [7899] = {.lex_state = 117, .external_lex_state = 2}, - [7900] = {.lex_state = 117, .external_lex_state = 9}, - [7901] = {.lex_state = 117, .external_lex_state = 2}, - [7902] = {.lex_state = 117, .external_lex_state = 2}, - [7903] = {.lex_state = 117, .external_lex_state = 2}, - [7904] = {.lex_state = 117, .external_lex_state = 2}, - [7905] = {.lex_state = 117, .external_lex_state = 2}, - [7906] = {.lex_state = 117, .external_lex_state = 2}, - [7907] = {.lex_state = 117, .external_lex_state = 2}, - [7908] = {.lex_state = 117, .external_lex_state = 2}, - [7909] = {.lex_state = 117, .external_lex_state = 2}, - [7910] = {.lex_state = 117, .external_lex_state = 9}, - [7911] = {.lex_state = 117, .external_lex_state = 2}, - [7912] = {.lex_state = 117, .external_lex_state = 2}, - [7913] = {.lex_state = 117, .external_lex_state = 2}, - [7914] = {.lex_state = 117, .external_lex_state = 2}, - [7915] = {.lex_state = 117, .external_lex_state = 2}, - [7916] = {.lex_state = 117, .external_lex_state = 9}, - [7917] = {.lex_state = 117, .external_lex_state = 2}, - [7918] = {.lex_state = 117, .external_lex_state = 2}, - [7919] = {.lex_state = 30, .external_lex_state = 2}, - [7920] = {.lex_state = 117, .external_lex_state = 9}, - [7921] = {.lex_state = 117, .external_lex_state = 2}, - [7922] = {.lex_state = 117, .external_lex_state = 2}, - [7923] = {.lex_state = 117, .external_lex_state = 2}, - [7924] = {.lex_state = 117, .external_lex_state = 2}, - [7925] = {.lex_state = 117, .external_lex_state = 2}, - [7926] = {.lex_state = 30, .external_lex_state = 2}, - [7927] = {.lex_state = 117, .external_lex_state = 2}, - [7928] = {.lex_state = 117, .external_lex_state = 2}, - [7929] = {.lex_state = 117, .external_lex_state = 9}, - [7930] = {.lex_state = 117, .external_lex_state = 2}, - [7931] = {.lex_state = 30, .external_lex_state = 2}, - [7932] = {.lex_state = 117, .external_lex_state = 2}, - [7933] = {.lex_state = 117, .external_lex_state = 9}, - [7934] = {.lex_state = 117, .external_lex_state = 2}, - [7935] = {.lex_state = 117, .external_lex_state = 9}, - [7936] = {.lex_state = 117, .external_lex_state = 2}, - [7937] = {.lex_state = 117, .external_lex_state = 2}, - [7938] = {.lex_state = 117, .external_lex_state = 2}, - [7939] = {.lex_state = 117, .external_lex_state = 2}, - [7940] = {.lex_state = 117, .external_lex_state = 2}, - [7941] = {.lex_state = 117, .external_lex_state = 2}, - [7942] = {.lex_state = 117, .external_lex_state = 2}, - [7943] = {.lex_state = 117, .external_lex_state = 9}, - [7944] = {.lex_state = 30, .external_lex_state = 2}, - [7945] = {.lex_state = 117, .external_lex_state = 2}, - [7946] = {.lex_state = 117, .external_lex_state = 2}, - [7947] = {.lex_state = 117, .external_lex_state = 9}, - [7948] = {.lex_state = 117, .external_lex_state = 2}, - [7949] = {.lex_state = 117, .external_lex_state = 9}, - [7950] = {.lex_state = 117, .external_lex_state = 2}, - [7951] = {.lex_state = 117, .external_lex_state = 2}, - [7952] = {.lex_state = 117, .external_lex_state = 2}, - [7953] = {.lex_state = 117, .external_lex_state = 3}, - [7954] = {.lex_state = 117, .external_lex_state = 2}, - [7955] = {.lex_state = 117, .external_lex_state = 2}, - [7956] = {.lex_state = 117, .external_lex_state = 2}, - [7957] = {.lex_state = 117, .external_lex_state = 9}, - [7958] = {.lex_state = 117, .external_lex_state = 2}, - [7959] = {.lex_state = 117, .external_lex_state = 2}, - [7960] = {.lex_state = 30, .external_lex_state = 2}, - [7961] = {.lex_state = 117, .external_lex_state = 9}, - [7962] = {.lex_state = 117, .external_lex_state = 2}, - [7963] = {.lex_state = 117, .external_lex_state = 9}, - [7964] = {.lex_state = 117, .external_lex_state = 2}, - [7965] = {.lex_state = 117, .external_lex_state = 2}, - [7966] = {.lex_state = 117, .external_lex_state = 2}, - [7967] = {.lex_state = 117, .external_lex_state = 2}, - [7968] = {.lex_state = 117, .external_lex_state = 2}, - [7969] = {.lex_state = 117, .external_lex_state = 2}, - [7970] = {.lex_state = 117, .external_lex_state = 2}, - [7971] = {.lex_state = 117, .external_lex_state = 9}, - [7972] = {.lex_state = 117, .external_lex_state = 2}, - [7973] = {.lex_state = 117, .external_lex_state = 2}, - [7974] = {.lex_state = 117, .external_lex_state = 2}, - [7975] = {.lex_state = 117, .external_lex_state = 9}, - [7976] = {.lex_state = 117, .external_lex_state = 2}, - [7977] = {.lex_state = 117, .external_lex_state = 9}, - [7978] = {.lex_state = 117, .external_lex_state = 2}, - [7979] = {.lex_state = 117, .external_lex_state = 2}, - [7980] = {.lex_state = 117, .external_lex_state = 2}, - [7981] = {.lex_state = 30, .external_lex_state = 2}, - [7982] = {.lex_state = 117, .external_lex_state = 2}, - [7983] = {.lex_state = 30, .external_lex_state = 2}, - [7984] = {.lex_state = 117, .external_lex_state = 2}, - [7985] = {.lex_state = 117, .external_lex_state = 9}, - [7986] = {.lex_state = 117, .external_lex_state = 2}, - [7987] = {.lex_state = 117, .external_lex_state = 2}, - [7988] = {.lex_state = 30, .external_lex_state = 2}, - [7989] = {.lex_state = 117, .external_lex_state = 9}, - [7990] = {.lex_state = 117, .external_lex_state = 2}, - [7991] = {.lex_state = 117, .external_lex_state = 9}, - [7992] = {.lex_state = 117, .external_lex_state = 2}, - [7993] = {.lex_state = 117, .external_lex_state = 2}, - [7994] = {.lex_state = 117, .external_lex_state = 2}, - [7995] = {.lex_state = 117, .external_lex_state = 2}, - [7996] = {.lex_state = 117, .external_lex_state = 2}, - [7997] = {.lex_state = 117, .external_lex_state = 2}, - [7998] = {.lex_state = 117, .external_lex_state = 2}, - [7999] = {.lex_state = 117, .external_lex_state = 9}, - [8000] = {.lex_state = 117, .external_lex_state = 2}, - [8001] = {.lex_state = 117, .external_lex_state = 2}, - [8002] = {.lex_state = 117, .external_lex_state = 2}, - [8003] = {.lex_state = 117, .external_lex_state = 9}, - [8004] = {.lex_state = 117, .external_lex_state = 2}, - [8005] = {.lex_state = 117, .external_lex_state = 9}, - [8006] = {.lex_state = 117, .external_lex_state = 2}, - [8007] = {.lex_state = 117, .external_lex_state = 2}, - [8008] = {.lex_state = 117, .external_lex_state = 2}, - [8009] = {.lex_state = 117, .external_lex_state = 2}, - [8010] = {.lex_state = 117, .external_lex_state = 2}, - [8011] = {.lex_state = 117, .external_lex_state = 2}, - [8012] = {.lex_state = 117, .external_lex_state = 3}, - [8013] = {.lex_state = 117, .external_lex_state = 9}, - [8014] = {.lex_state = 30, .external_lex_state = 2}, - [8015] = {.lex_state = 117, .external_lex_state = 2}, - [8016] = {.lex_state = 30, .external_lex_state = 2}, - [8017] = {.lex_state = 117, .external_lex_state = 9}, - [8018] = {.lex_state = 117, .external_lex_state = 2}, - [8019] = {.lex_state = 117, .external_lex_state = 9}, - [8020] = {.lex_state = 117, .external_lex_state = 2}, - [8021] = {.lex_state = 117, .external_lex_state = 2}, - [8022] = {.lex_state = 117, .external_lex_state = 2}, - [8023] = {.lex_state = 117, .external_lex_state = 2}, - [8024] = {.lex_state = 117, .external_lex_state = 2}, - [8025] = {.lex_state = 117, .external_lex_state = 9}, - [8026] = {.lex_state = 117, .external_lex_state = 2}, - [8027] = {.lex_state = 117, .external_lex_state = 9}, - [8028] = {.lex_state = 117, .external_lex_state = 2}, - [8029] = {.lex_state = 117, .external_lex_state = 2}, - [8030] = {.lex_state = 117, .external_lex_state = 9}, - [8031] = {.lex_state = 117, .external_lex_state = 2}, - [8032] = {.lex_state = 117, .external_lex_state = 9}, - [8033] = {.lex_state = 117, .external_lex_state = 2}, - [8034] = {.lex_state = 117, .external_lex_state = 2}, - [8035] = {.lex_state = 117, .external_lex_state = 9}, - [8036] = {.lex_state = 30, .external_lex_state = 2}, - [8037] = {.lex_state = 117, .external_lex_state = 9}, - [8038] = {.lex_state = 117, .external_lex_state = 2}, - [8039] = {.lex_state = 117, .external_lex_state = 2}, - [8040] = {.lex_state = 117, .external_lex_state = 9}, - [8041] = {.lex_state = 117, .external_lex_state = 2}, - [8042] = {.lex_state = 117, .external_lex_state = 9}, - [8043] = {.lex_state = 30, .external_lex_state = 2}, - [8044] = {.lex_state = 117, .external_lex_state = 2}, - [8045] = {.lex_state = 117, .external_lex_state = 9}, - [8046] = {.lex_state = 30, .external_lex_state = 2}, - [8047] = {.lex_state = 117, .external_lex_state = 9}, - [8048] = {.lex_state = 30, .external_lex_state = 2}, - [8049] = {.lex_state = 117, .external_lex_state = 2}, - [8050] = {.lex_state = 117, .external_lex_state = 2}, - [8051] = {.lex_state = 117, .external_lex_state = 2}, - [8052] = {.lex_state = 117, .external_lex_state = 2}, - [8053] = {.lex_state = 117, .external_lex_state = 2}, - [8054] = {.lex_state = 117, .external_lex_state = 2}, - [8055] = {.lex_state = 117, .external_lex_state = 2}, - [8056] = {.lex_state = 117, .external_lex_state = 2}, - [8057] = {.lex_state = 117, .external_lex_state = 2}, - [8058] = {.lex_state = 117, .external_lex_state = 2}, - [8059] = {.lex_state = 117, .external_lex_state = 2}, - [8060] = {.lex_state = 117, .external_lex_state = 2}, - [8061] = {.lex_state = 117, .external_lex_state = 2}, - [8062] = {.lex_state = 117, .external_lex_state = 2}, - [8063] = {.lex_state = 117, .external_lex_state = 2}, - [8064] = {.lex_state = 117, .external_lex_state = 2}, - [8065] = {.lex_state = 117, .external_lex_state = 2}, - [8066] = {.lex_state = 117, .external_lex_state = 2}, - [8067] = {.lex_state = 117, .external_lex_state = 2}, - [8068] = {.lex_state = 30, .external_lex_state = 2}, - [8069] = {.lex_state = 117, .external_lex_state = 2}, - [8070] = {.lex_state = 30, .external_lex_state = 2}, - [8071] = {.lex_state = 30, .external_lex_state = 2}, - [8072] = {.lex_state = 117, .external_lex_state = 2}, - [8073] = {.lex_state = 30, .external_lex_state = 2}, - [8074] = {.lex_state = 117, .external_lex_state = 2}, - [8075] = {.lex_state = 117, .external_lex_state = 2}, - [8076] = {.lex_state = 117, .external_lex_state = 2}, - [8077] = {.lex_state = 117, .external_lex_state = 2}, - [8078] = {.lex_state = 117, .external_lex_state = 2}, - [8079] = {.lex_state = 117, .external_lex_state = 2}, - [8080] = {.lex_state = 117, .external_lex_state = 2}, - [8081] = {.lex_state = 117, .external_lex_state = 2}, - [8082] = {.lex_state = 117, .external_lex_state = 2}, - [8083] = {.lex_state = 117, .external_lex_state = 2}, - [8084] = {.lex_state = 117, .external_lex_state = 2}, - [8085] = {.lex_state = 117, .external_lex_state = 2}, - [8086] = {.lex_state = 117, .external_lex_state = 2}, - [8087] = {.lex_state = 117, .external_lex_state = 2}, - [8088] = {.lex_state = 117, .external_lex_state = 2}, - [8089] = {.lex_state = 117, .external_lex_state = 2}, - [8090] = {.lex_state = 117, .external_lex_state = 2}, - [8091] = {.lex_state = 117, .external_lex_state = 2}, - [8092] = {.lex_state = 117, .external_lex_state = 2}, - [8093] = {.lex_state = 117, .external_lex_state = 8}, - [8094] = {.lex_state = 117, .external_lex_state = 2}, - [8095] = {.lex_state = 30, .external_lex_state = 2}, - [8096] = {.lex_state = 117, .external_lex_state = 2}, - [8097] = {.lex_state = 117, .external_lex_state = 2}, - [8098] = {.lex_state = 117, .external_lex_state = 2}, - [8099] = {.lex_state = 117, .external_lex_state = 2}, - [8100] = {.lex_state = 117, .external_lex_state = 2}, - [8101] = {.lex_state = 117, .external_lex_state = 2}, - [8102] = {.lex_state = 117, .external_lex_state = 2}, - [8103] = {.lex_state = 30, .external_lex_state = 2}, - [8104] = {.lex_state = 117, .external_lex_state = 2}, - [8105] = {.lex_state = 117, .external_lex_state = 2}, - [8106] = {.lex_state = 117, .external_lex_state = 8}, - [8107] = {.lex_state = 117, .external_lex_state = 2}, - [8108] = {.lex_state = 117, .external_lex_state = 2}, - [8109] = {.lex_state = 117, .external_lex_state = 2}, - [8110] = {.lex_state = 117, .external_lex_state = 2}, - [8111] = {.lex_state = 117, .external_lex_state = 2}, - [8112] = {.lex_state = 117, .external_lex_state = 2}, - [8113] = {.lex_state = 117, .external_lex_state = 2}, - [8114] = {.lex_state = 117, .external_lex_state = 2}, - [8115] = {.lex_state = 117, .external_lex_state = 2}, - [8116] = {.lex_state = 29, .external_lex_state = 2}, - [8117] = {.lex_state = 117, .external_lex_state = 2}, - [8118] = {.lex_state = 117, .external_lex_state = 2}, - [8119] = {.lex_state = 117, .external_lex_state = 2}, - [8120] = {.lex_state = 117, .external_lex_state = 2}, - [8121] = {.lex_state = 117, .external_lex_state = 2}, - [8122] = {.lex_state = 117, .external_lex_state = 2}, - [8123] = {.lex_state = 117, .external_lex_state = 2}, - [8124] = {.lex_state = 117, .external_lex_state = 2}, - [8125] = {.lex_state = 30, .external_lex_state = 2}, - [8126] = {.lex_state = 117, .external_lex_state = 2}, - [8127] = {.lex_state = 30, .external_lex_state = 2}, - [8128] = {.lex_state = 117, .external_lex_state = 2}, - [8129] = {.lex_state = 117, .external_lex_state = 2}, - [8130] = {.lex_state = 117, .external_lex_state = 2}, - [8131] = {.lex_state = 30, .external_lex_state = 2}, - [8132] = {.lex_state = 117, .external_lex_state = 2}, - [8133] = {.lex_state = 117, .external_lex_state = 8}, - [8134] = {.lex_state = 117, .external_lex_state = 2}, - [8135] = {.lex_state = 117, .external_lex_state = 2}, - [8136] = {.lex_state = 14, .external_lex_state = 2}, - [8137] = {.lex_state = 14, .external_lex_state = 2}, - [8138] = {.lex_state = 14, .external_lex_state = 2}, - [8139] = {.lex_state = 30, .external_lex_state = 2}, - [8140] = {.lex_state = 117, .external_lex_state = 2}, - [8141] = {.lex_state = 30, .external_lex_state = 2}, - [8142] = {.lex_state = 117, .external_lex_state = 2}, - [8143] = {.lex_state = 117, .external_lex_state = 2}, - [8144] = {.lex_state = 117, .external_lex_state = 2}, - [8145] = {.lex_state = 30, .external_lex_state = 2}, - [8146] = {.lex_state = 117, .external_lex_state = 2}, - [8147] = {.lex_state = 117, .external_lex_state = 2}, - [8148] = {.lex_state = 30, .external_lex_state = 2}, - [8149] = {.lex_state = 30, .external_lex_state = 2}, - [8150] = {.lex_state = 117, .external_lex_state = 3}, - [8151] = {.lex_state = 117, .external_lex_state = 2}, - [8152] = {.lex_state = 117, .external_lex_state = 2}, - [8153] = {.lex_state = 117, .external_lex_state = 2}, - [8154] = {.lex_state = 117, .external_lex_state = 2}, - [8155] = {.lex_state = 117, .external_lex_state = 2}, - [8156] = {.lex_state = 117, .external_lex_state = 2}, - [8157] = {.lex_state = 117, .external_lex_state = 2}, - [8158] = {.lex_state = 117, .external_lex_state = 2}, - [8159] = {.lex_state = 117, .external_lex_state = 2}, - [8160] = {.lex_state = 117, .external_lex_state = 2}, - [8161] = {.lex_state = 117, .external_lex_state = 2}, - [8162] = {.lex_state = 117, .external_lex_state = 2}, - [8163] = {.lex_state = 117, .external_lex_state = 2}, - [8164] = {.lex_state = 30, .external_lex_state = 2}, - [8165] = {.lex_state = 117, .external_lex_state = 2}, - [8166] = {.lex_state = 117, .external_lex_state = 2}, - [8167] = {.lex_state = 117, .external_lex_state = 2}, - [8168] = {.lex_state = 117, .external_lex_state = 2}, - [8169] = {.lex_state = 117, .external_lex_state = 2}, - [8170] = {.lex_state = 117, .external_lex_state = 2}, - [8171] = {.lex_state = 117, .external_lex_state = 2}, - [8172] = {.lex_state = 30, .external_lex_state = 2}, - [8173] = {.lex_state = 117, .external_lex_state = 2}, - [8174] = {.lex_state = 117, .external_lex_state = 2}, - [8175] = {.lex_state = 117, .external_lex_state = 2}, - [8176] = {.lex_state = 117, .external_lex_state = 2}, - [8177] = {.lex_state = 117, .external_lex_state = 2}, - [8178] = {.lex_state = 117, .external_lex_state = 2}, - [8179] = {.lex_state = 117, .external_lex_state = 2}, - [8180] = {.lex_state = 30, .external_lex_state = 2}, - [8181] = {.lex_state = 117, .external_lex_state = 2}, - [8182] = {.lex_state = 30, .external_lex_state = 2}, - [8183] = {.lex_state = 117, .external_lex_state = 2}, - [8184] = {.lex_state = 117, .external_lex_state = 2}, - [8185] = {.lex_state = 117, .external_lex_state = 2}, - [8186] = {.lex_state = 117, .external_lex_state = 2}, - [8187] = {.lex_state = 117, .external_lex_state = 2}, - [8188] = {.lex_state = 117, .external_lex_state = 2}, - [8189] = {.lex_state = 117, .external_lex_state = 2}, - [8190] = {.lex_state = 117, .external_lex_state = 2}, - [8191] = {.lex_state = 117, .external_lex_state = 2}, - [8192] = {.lex_state = 30, .external_lex_state = 2}, - [8193] = {.lex_state = 117, .external_lex_state = 2}, - [8194] = {.lex_state = 117, .external_lex_state = 2}, - [8195] = {.lex_state = 117, .external_lex_state = 2}, - [8196] = {.lex_state = 117, .external_lex_state = 2}, - [8197] = {.lex_state = 117, .external_lex_state = 2}, - [8198] = {.lex_state = 117, .external_lex_state = 2}, - [8199] = {.lex_state = 117, .external_lex_state = 2}, - [8200] = {.lex_state = 117, .external_lex_state = 8}, - [8201] = {.lex_state = 117, .external_lex_state = 2}, - [8202] = {.lex_state = 117, .external_lex_state = 2}, - [8203] = {.lex_state = 117, .external_lex_state = 2}, - [8204] = {.lex_state = 117, .external_lex_state = 2}, - [8205] = {.lex_state = 117, .external_lex_state = 2}, - [8206] = {.lex_state = 117, .external_lex_state = 2}, - [8207] = {.lex_state = 117, .external_lex_state = 2}, - [8208] = {.lex_state = 117, .external_lex_state = 2}, - [8209] = {.lex_state = 14, .external_lex_state = 2}, - [8210] = {.lex_state = 117, .external_lex_state = 2}, - [8211] = {.lex_state = 117, .external_lex_state = 2}, - [8212] = {.lex_state = 117, .external_lex_state = 2}, - [8213] = {.lex_state = 117, .external_lex_state = 2}, - [8214] = {.lex_state = 117, .external_lex_state = 2}, - [8215] = {.lex_state = 117, .external_lex_state = 2}, - [8216] = {.lex_state = 117, .external_lex_state = 2}, - [8217] = {.lex_state = 117, .external_lex_state = 2}, - [8218] = {.lex_state = 117, .external_lex_state = 2}, - [8219] = {.lex_state = 117, .external_lex_state = 2}, - [8220] = {.lex_state = 30, .external_lex_state = 2}, - [8221] = {.lex_state = 30, .external_lex_state = 2}, - [8222] = {.lex_state = 117, .external_lex_state = 2}, - [8223] = {.lex_state = 30, .external_lex_state = 2}, - [8224] = {.lex_state = 117, .external_lex_state = 9}, - [8225] = {.lex_state = 117, .external_lex_state = 2}, - [8226] = {.lex_state = 117, .external_lex_state = 2}, - [8227] = {.lex_state = 117, .external_lex_state = 3}, - [8228] = {.lex_state = 117, .external_lex_state = 2}, - [8229] = {.lex_state = 117, .external_lex_state = 2}, - [8230] = {.lex_state = 117, .external_lex_state = 2}, - [8231] = {.lex_state = 117, .external_lex_state = 2}, - [8232] = {.lex_state = 117, .external_lex_state = 2}, - [8233] = {.lex_state = 117, .external_lex_state = 2}, - [8234] = {.lex_state = 117, .external_lex_state = 2}, - [8235] = {.lex_state = 117, .external_lex_state = 2}, - [8236] = {.lex_state = 117, .external_lex_state = 2}, - [8237] = {.lex_state = 117, .external_lex_state = 2}, - [8238] = {.lex_state = 30, .external_lex_state = 2}, - [8239] = {.lex_state = 30, .external_lex_state = 2}, - [8240] = {.lex_state = 117, .external_lex_state = 2}, - [8241] = {.lex_state = 30, .external_lex_state = 2}, - [8242] = {.lex_state = 117, .external_lex_state = 2}, - [8243] = {.lex_state = 117, .external_lex_state = 2}, - [8244] = {.lex_state = 30, .external_lex_state = 2}, - [8245] = {.lex_state = 117, .external_lex_state = 2}, - [8246] = {.lex_state = 30, .external_lex_state = 2}, - [8247] = {.lex_state = 117, .external_lex_state = 2}, - [8248] = {.lex_state = 117, .external_lex_state = 2}, - [8249] = {.lex_state = 117, .external_lex_state = 2}, - [8250] = {.lex_state = 117, .external_lex_state = 2}, - [8251] = {.lex_state = 117, .external_lex_state = 2}, - [8252] = {.lex_state = 117, .external_lex_state = 2}, - [8253] = {.lex_state = 117, .external_lex_state = 2}, - [8254] = {.lex_state = 117, .external_lex_state = 2}, - [8255] = {.lex_state = 117, .external_lex_state = 2}, - [8256] = {.lex_state = 117, .external_lex_state = 2}, - [8257] = {.lex_state = 117, .external_lex_state = 2}, - [8258] = {.lex_state = 117, .external_lex_state = 2}, - [8259] = {.lex_state = 117, .external_lex_state = 2}, - [8260] = {.lex_state = 117, .external_lex_state = 8}, - [8261] = {.lex_state = 117, .external_lex_state = 2}, - [8262] = {.lex_state = 117, .external_lex_state = 8}, - [8263] = {.lex_state = 117, .external_lex_state = 2}, - [8264] = {.lex_state = 117, .external_lex_state = 2}, - [8265] = {.lex_state = 117, .external_lex_state = 2}, - [8266] = {.lex_state = 29, .external_lex_state = 2}, - [8267] = {.lex_state = 122, .external_lex_state = 2}, - [8268] = {.lex_state = 117, .external_lex_state = 2}, - [8269] = {.lex_state = 30, .external_lex_state = 2}, - [8270] = {.lex_state = 117, .external_lex_state = 2}, - [8271] = {.lex_state = 117, .external_lex_state = 2}, - [8272] = {.lex_state = 14, .external_lex_state = 2}, - [8273] = {.lex_state = 14, .external_lex_state = 2}, - [8274] = {.lex_state = 14, .external_lex_state = 2}, - [8275] = {.lex_state = 117, .external_lex_state = 2}, - [8276] = {.lex_state = 117, .external_lex_state = 2}, - [8277] = {.lex_state = 117, .external_lex_state = 2}, - [8278] = {.lex_state = 117, .external_lex_state = 2}, - [8279] = {.lex_state = 117, .external_lex_state = 2}, - [8280] = {.lex_state = 117, .external_lex_state = 2}, - [8281] = {.lex_state = 117, .external_lex_state = 2}, - [8282] = {.lex_state = 30, .external_lex_state = 2}, - [8283] = {.lex_state = 117, .external_lex_state = 2}, - [8284] = {.lex_state = 117, .external_lex_state = 2}, - [8285] = {.lex_state = 30, .external_lex_state = 2}, - [8286] = {.lex_state = 117, .external_lex_state = 2}, - [8287] = {.lex_state = 117, .external_lex_state = 2}, - [8288] = {.lex_state = 30, .external_lex_state = 2}, - [8289] = {.lex_state = 117, .external_lex_state = 8}, - [8290] = {.lex_state = 30, .external_lex_state = 2}, - [8291] = {.lex_state = 117, .external_lex_state = 8}, - [8292] = {.lex_state = 117, .external_lex_state = 2}, - [8293] = {.lex_state = 117, .external_lex_state = 2}, - [8294] = {.lex_state = 117, .external_lex_state = 2}, - [8295] = {.lex_state = 29, .external_lex_state = 2}, - [8296] = {.lex_state = 117, .external_lex_state = 2}, - [8297] = {.lex_state = 117, .external_lex_state = 2}, - [8298] = {.lex_state = 117, .external_lex_state = 2}, - [8299] = {.lex_state = 30, .external_lex_state = 2}, - [8300] = {.lex_state = 14, .external_lex_state = 2}, - [8301] = {.lex_state = 14, .external_lex_state = 2}, - [8302] = {.lex_state = 14, .external_lex_state = 2}, - [8303] = {.lex_state = 117, .external_lex_state = 2}, - [8304] = {.lex_state = 117, .external_lex_state = 2}, - [8305] = {.lex_state = 117, .external_lex_state = 2}, - [8306] = {.lex_state = 117, .external_lex_state = 2}, - [8307] = {.lex_state = 117, .external_lex_state = 2}, - [8308] = {.lex_state = 117, .external_lex_state = 2}, - [8309] = {.lex_state = 117, .external_lex_state = 2}, - [8310] = {.lex_state = 117, .external_lex_state = 2}, - [8311] = {.lex_state = 86, .external_lex_state = 2}, - [8312] = {.lex_state = 117, .external_lex_state = 2}, - [8313] = {.lex_state = 117, .external_lex_state = 2}, - [8314] = {.lex_state = 117, .external_lex_state = 8}, - [8315] = {.lex_state = 117, .external_lex_state = 2}, - [8316] = {.lex_state = 117, .external_lex_state = 8}, - [8317] = {.lex_state = 117, .external_lex_state = 2}, - [8318] = {.lex_state = 117, .external_lex_state = 2}, - [8319] = {.lex_state = 29, .external_lex_state = 2}, - [8320] = {.lex_state = 117, .external_lex_state = 2}, - [8321] = {.lex_state = 117, .external_lex_state = 2}, - [8322] = {.lex_state = 117, .external_lex_state = 2}, - [8323] = {.lex_state = 14, .external_lex_state = 2}, - [8324] = {.lex_state = 14, .external_lex_state = 2}, - [8325] = {.lex_state = 14, .external_lex_state = 2}, - [8326] = {.lex_state = 117, .external_lex_state = 2}, - [8327] = {.lex_state = 117, .external_lex_state = 2}, - [8328] = {.lex_state = 117, .external_lex_state = 2}, - [8329] = {.lex_state = 117, .external_lex_state = 2}, - [8330] = {.lex_state = 117, .external_lex_state = 2}, - [8331] = {.lex_state = 117, .external_lex_state = 2}, - [8332] = {.lex_state = 30, .external_lex_state = 2}, - [8333] = {.lex_state = 117, .external_lex_state = 2}, - [8334] = {.lex_state = 117, .external_lex_state = 2}, - [8335] = {.lex_state = 117, .external_lex_state = 8}, - [8336] = {.lex_state = 29, .external_lex_state = 2}, - [8337] = {.lex_state = 117, .external_lex_state = 2}, - [8338] = {.lex_state = 117, .external_lex_state = 2}, - [8339] = {.lex_state = 117, .external_lex_state = 3}, - [8340] = {.lex_state = 14, .external_lex_state = 2}, - [8341] = {.lex_state = 14, .external_lex_state = 2}, - [8342] = {.lex_state = 14, .external_lex_state = 2}, - [8343] = {.lex_state = 117, .external_lex_state = 2}, - [8344] = {.lex_state = 117, .external_lex_state = 2}, - [8345] = {.lex_state = 117, .external_lex_state = 2}, - [8346] = {.lex_state = 117, .external_lex_state = 3}, - [8347] = {.lex_state = 117, .external_lex_state = 2}, - [8348] = {.lex_state = 117, .external_lex_state = 2}, - [8349] = {.lex_state = 117, .external_lex_state = 2}, - [8350] = {.lex_state = 117, .external_lex_state = 2}, - [8351] = {.lex_state = 117, .external_lex_state = 2}, - [8352] = {.lex_state = 117, .external_lex_state = 8}, - [8353] = {.lex_state = 117, .external_lex_state = 2}, - [8354] = {.lex_state = 117, .external_lex_state = 2}, - [8355] = {.lex_state = 117, .external_lex_state = 2}, - [8356] = {.lex_state = 14, .external_lex_state = 2}, - [8357] = {.lex_state = 14, .external_lex_state = 2}, - [8358] = {.lex_state = 14, .external_lex_state = 2}, - [8359] = {.lex_state = 117, .external_lex_state = 2}, - [8360] = {.lex_state = 117, .external_lex_state = 2}, - [8361] = {.lex_state = 117, .external_lex_state = 2}, - [8362] = {.lex_state = 117, .external_lex_state = 2}, - [8363] = {.lex_state = 117, .external_lex_state = 2}, - [8364] = {.lex_state = 117, .external_lex_state = 2}, - [8365] = {.lex_state = 117, .external_lex_state = 2}, - [8366] = {.lex_state = 117, .external_lex_state = 2}, - [8367] = {.lex_state = 117, .external_lex_state = 2}, - [8368] = {.lex_state = 117, .external_lex_state = 8}, - [8369] = {.lex_state = 117, .external_lex_state = 2}, - [8370] = {.lex_state = 117, .external_lex_state = 2}, - [8371] = {.lex_state = 117, .external_lex_state = 2}, - [8372] = {.lex_state = 14, .external_lex_state = 2}, - [8373] = {.lex_state = 14, .external_lex_state = 2}, - [8374] = {.lex_state = 14, .external_lex_state = 2}, - [8375] = {.lex_state = 30, .external_lex_state = 2}, - [8376] = {.lex_state = 117, .external_lex_state = 2}, - [8377] = {.lex_state = 117, .external_lex_state = 2}, - [8378] = {.lex_state = 30, .external_lex_state = 2}, - [8379] = {.lex_state = 117, .external_lex_state = 2}, - [8380] = {.lex_state = 30, .external_lex_state = 2}, - [8381] = {.lex_state = 117, .external_lex_state = 2}, - [8382] = {.lex_state = 117, .external_lex_state = 2}, - [8383] = {.lex_state = 117, .external_lex_state = 2}, - [8384] = {.lex_state = 117, .external_lex_state = 8}, - [8385] = {.lex_state = 117, .external_lex_state = 2}, - [8386] = {.lex_state = 117, .external_lex_state = 2}, - [8387] = {.lex_state = 117, .external_lex_state = 2}, - [8388] = {.lex_state = 14, .external_lex_state = 2}, - [8389] = {.lex_state = 14, .external_lex_state = 2}, - [8390] = {.lex_state = 14, .external_lex_state = 2}, - [8391] = {.lex_state = 117, .external_lex_state = 2}, - [8392] = {.lex_state = 117, .external_lex_state = 2}, - [8393] = {.lex_state = 117, .external_lex_state = 2}, - [8394] = {.lex_state = 117, .external_lex_state = 2}, - [8395] = {.lex_state = 117, .external_lex_state = 2}, - [8396] = {.lex_state = 117, .external_lex_state = 2}, - [8397] = {.lex_state = 30, .external_lex_state = 2}, - [8398] = {.lex_state = 117, .external_lex_state = 2}, - [8399] = {.lex_state = 117, .external_lex_state = 2}, - [8400] = {.lex_state = 117, .external_lex_state = 8}, - [8401] = {.lex_state = 117, .external_lex_state = 2}, - [8402] = {.lex_state = 117, .external_lex_state = 2}, - [8403] = {.lex_state = 14, .external_lex_state = 2}, - [8404] = {.lex_state = 14, .external_lex_state = 2}, - [8405] = {.lex_state = 14, .external_lex_state = 2}, - [8406] = {.lex_state = 117, .external_lex_state = 2}, - [8407] = {.lex_state = 117, .external_lex_state = 2}, - [8408] = {.lex_state = 117, .external_lex_state = 2}, - [8409] = {.lex_state = 117, .external_lex_state = 2}, - [8410] = {.lex_state = 30, .external_lex_state = 2}, - [8411] = {.lex_state = 117, .external_lex_state = 2}, - [8412] = {.lex_state = 117, .external_lex_state = 2}, - [8413] = {.lex_state = 117, .external_lex_state = 2}, - [8414] = {.lex_state = 117, .external_lex_state = 2}, - [8415] = {.lex_state = 117, .external_lex_state = 8}, - [8416] = {.lex_state = 122, .external_lex_state = 2}, - [8417] = {.lex_state = 117, .external_lex_state = 9}, - [8418] = {.lex_state = 14, .external_lex_state = 2}, - [8419] = {.lex_state = 14, .external_lex_state = 2}, - [8420] = {.lex_state = 14, .external_lex_state = 2}, - [8421] = {.lex_state = 30, .external_lex_state = 2}, - [8422] = {.lex_state = 30, .external_lex_state = 2}, - [8423] = {.lex_state = 117, .external_lex_state = 2}, - [8424] = {.lex_state = 117, .external_lex_state = 2}, - [8425] = {.lex_state = 117, .external_lex_state = 2}, - [8426] = {.lex_state = 117, .external_lex_state = 2}, - [8427] = {.lex_state = 117, .external_lex_state = 2}, - [8428] = {.lex_state = 117, .external_lex_state = 2}, - [8429] = {.lex_state = 117, .external_lex_state = 2}, - [8430] = {.lex_state = 117, .external_lex_state = 8}, - [8431] = {.lex_state = 117, .external_lex_state = 2}, - [8432] = {.lex_state = 117, .external_lex_state = 2}, - [8433] = {.lex_state = 14, .external_lex_state = 2}, - [8434] = {.lex_state = 14, .external_lex_state = 2}, - [8435] = {.lex_state = 14, .external_lex_state = 2}, - [8436] = {.lex_state = 117, .external_lex_state = 2}, - [8437] = {.lex_state = 117, .external_lex_state = 2}, - [8438] = {.lex_state = 30, .external_lex_state = 2}, - [8439] = {.lex_state = 117, .external_lex_state = 2}, - [8440] = {.lex_state = 117, .external_lex_state = 8}, - [8441] = {.lex_state = 117, .external_lex_state = 2}, - [8442] = {.lex_state = 117, .external_lex_state = 2}, - [8443] = {.lex_state = 14, .external_lex_state = 2}, - [8444] = {.lex_state = 14, .external_lex_state = 2}, - [8445] = {.lex_state = 14, .external_lex_state = 2}, - [8446] = {.lex_state = 117, .external_lex_state = 2}, - [8447] = {.lex_state = 117, .external_lex_state = 2}, - [8448] = {.lex_state = 117, .external_lex_state = 2}, - [8449] = {.lex_state = 117, .external_lex_state = 2}, - [8450] = {.lex_state = 117, .external_lex_state = 8}, - [8451] = {.lex_state = 30, .external_lex_state = 2}, - [8452] = {.lex_state = 117, .external_lex_state = 3}, - [8453] = {.lex_state = 14, .external_lex_state = 2}, - [8454] = {.lex_state = 14, .external_lex_state = 2}, - [8455] = {.lex_state = 14, .external_lex_state = 2}, - [8456] = {.lex_state = 117, .external_lex_state = 2}, - [8457] = {.lex_state = 117, .external_lex_state = 2}, - [8458] = {.lex_state = 117, .external_lex_state = 2}, - [8459] = {.lex_state = 117, .external_lex_state = 8}, - [8460] = {.lex_state = 30, .external_lex_state = 2}, - [8461] = {.lex_state = 14, .external_lex_state = 2}, - [8462] = {.lex_state = 14, .external_lex_state = 2}, - [8463] = {.lex_state = 14, .external_lex_state = 2}, - [8464] = {.lex_state = 117, .external_lex_state = 2}, - [8465] = {.lex_state = 117, .external_lex_state = 2}, - [8466] = {.lex_state = 117, .external_lex_state = 8}, - [8467] = {.lex_state = 14, .external_lex_state = 2}, - [8468] = {.lex_state = 14, .external_lex_state = 2}, - [8469] = {.lex_state = 14, .external_lex_state = 2}, - [8470] = {.lex_state = 117, .external_lex_state = 2}, - [8471] = {.lex_state = 117, .external_lex_state = 2}, - [8472] = {.lex_state = 117, .external_lex_state = 8}, - [8473] = {.lex_state = 14, .external_lex_state = 2}, - [8474] = {.lex_state = 14, .external_lex_state = 2}, - [8475] = {.lex_state = 14, .external_lex_state = 2}, - [8476] = {.lex_state = 117, .external_lex_state = 2}, - [8477] = {.lex_state = 117, .external_lex_state = 2}, - [8478] = {.lex_state = 117, .external_lex_state = 8}, - [8479] = {.lex_state = 14, .external_lex_state = 2}, - [8480] = {.lex_state = 14, .external_lex_state = 2}, - [8481] = {.lex_state = 14, .external_lex_state = 2}, - [8482] = {.lex_state = 117, .external_lex_state = 2}, - [8483] = {.lex_state = 117, .external_lex_state = 2}, - [8484] = {.lex_state = 117, .external_lex_state = 8}, - [8485] = {.lex_state = 14, .external_lex_state = 2}, - [8486] = {.lex_state = 14, .external_lex_state = 2}, - [8487] = {.lex_state = 14, .external_lex_state = 2}, - [8488] = {.lex_state = 117, .external_lex_state = 2}, - [8489] = {.lex_state = 117, .external_lex_state = 2}, - [8490] = {.lex_state = 117, .external_lex_state = 8}, - [8491] = {.lex_state = 14, .external_lex_state = 2}, - [8492] = {.lex_state = 14, .external_lex_state = 2}, - [8493] = {.lex_state = 14, .external_lex_state = 2}, - [8494] = {.lex_state = 117, .external_lex_state = 2}, - [8495] = {.lex_state = 117, .external_lex_state = 2}, - [8496] = {.lex_state = 117, .external_lex_state = 8}, - [8497] = {.lex_state = 14, .external_lex_state = 2}, - [8498] = {.lex_state = 14, .external_lex_state = 2}, - [8499] = {.lex_state = 14, .external_lex_state = 2}, - [8500] = {.lex_state = 117, .external_lex_state = 2}, - [8501] = {.lex_state = 117, .external_lex_state = 2}, - [8502] = {.lex_state = 117, .external_lex_state = 8}, - [8503] = {.lex_state = 14, .external_lex_state = 2}, - [8504] = {.lex_state = 14, .external_lex_state = 2}, - [8505] = {.lex_state = 14, .external_lex_state = 2}, - [8506] = {.lex_state = 117, .external_lex_state = 2}, - [8507] = {.lex_state = 117, .external_lex_state = 8}, - [8508] = {.lex_state = 117, .external_lex_state = 2}, - [8509] = {.lex_state = 117, .external_lex_state = 8}, - [8510] = {.lex_state = 30, .external_lex_state = 2}, - [8511] = {.lex_state = 117, .external_lex_state = 8}, - [8512] = {.lex_state = 117, .external_lex_state = 2}, - [8513] = {.lex_state = 117, .external_lex_state = 8}, - [8514] = {.lex_state = 117, .external_lex_state = 2}, - [8515] = {.lex_state = 117, .external_lex_state = 8}, - [8516] = {.lex_state = 30, .external_lex_state = 2}, - [8517] = {.lex_state = 117, .external_lex_state = 2}, - [8518] = {.lex_state = 117, .external_lex_state = 2}, - [8519] = {.lex_state = 117, .external_lex_state = 2}, - [8520] = {.lex_state = 117, .external_lex_state = 2}, - [8521] = {.lex_state = 122, .external_lex_state = 2}, - [8522] = {.lex_state = 117, .external_lex_state = 2}, - [8523] = {.lex_state = 117, .external_lex_state = 2}, - [8524] = {.lex_state = 117, .external_lex_state = 2}, - [8525] = {.lex_state = 86, .external_lex_state = 2}, - [8526] = {.lex_state = 117, .external_lex_state = 2}, - [8527] = {.lex_state = 122, .external_lex_state = 2}, - [8528] = {.lex_state = 117, .external_lex_state = 2}, - [8529] = {.lex_state = 117, .external_lex_state = 2}, - [8530] = {.lex_state = 117, .external_lex_state = 2}, - [8531] = {.lex_state = 117, .external_lex_state = 2}, - [8532] = {.lex_state = 30, .external_lex_state = 2}, - [8533] = {.lex_state = 117, .external_lex_state = 2}, - [8534] = {.lex_state = 117, .external_lex_state = 2}, - [8535] = {.lex_state = 117, .external_lex_state = 2}, - [8536] = {.lex_state = 117, .external_lex_state = 2}, - [8537] = {.lex_state = 117, .external_lex_state = 2}, - [8538] = {.lex_state = 117, .external_lex_state = 2}, - [8539] = {.lex_state = 117, .external_lex_state = 2}, - [8540] = {.lex_state = 117, .external_lex_state = 2}, - [8541] = {.lex_state = 117, .external_lex_state = 2}, - [8542] = {.lex_state = 117, .external_lex_state = 2}, - [8543] = {.lex_state = 117, .external_lex_state = 2}, - [8544] = {.lex_state = 117, .external_lex_state = 2}, - [8545] = {.lex_state = 30, .external_lex_state = 2}, - [8546] = {.lex_state = 117, .external_lex_state = 2}, - [8547] = {.lex_state = 117, .external_lex_state = 2}, - [8548] = {.lex_state = 117, .external_lex_state = 2}, - [8549] = {.lex_state = 117, .external_lex_state = 2}, - [8550] = {.lex_state = 117, .external_lex_state = 2}, - [8551] = {.lex_state = 86, .external_lex_state = 2}, - [8552] = {.lex_state = 117, .external_lex_state = 2}, - [8553] = {.lex_state = 117, .external_lex_state = 2}, - [8554] = {.lex_state = 117, .external_lex_state = 2}, - [8555] = {.lex_state = 117, .external_lex_state = 3}, - [8556] = {.lex_state = 86, .external_lex_state = 2}, - [8557] = {.lex_state = 14, .external_lex_state = 2}, - [8558] = {.lex_state = 117, .external_lex_state = 2}, - [8559] = {.lex_state = 117, .external_lex_state = 9}, - [8560] = {.lex_state = 86, .external_lex_state = 2}, - [8561] = {.lex_state = 117, .external_lex_state = 2}, - [8562] = {.lex_state = 86, .external_lex_state = 2}, - [8563] = {.lex_state = 117, .external_lex_state = 2}, - [8564] = {.lex_state = 86, .external_lex_state = 2}, - [8565] = {.lex_state = 117, .external_lex_state = 2}, - [8566] = {.lex_state = 86, .external_lex_state = 2}, - [8567] = {.lex_state = 117, .external_lex_state = 2}, - [8568] = {.lex_state = 86, .external_lex_state = 2}, - [8569] = {.lex_state = 117, .external_lex_state = 2}, - [8570] = {.lex_state = 86, .external_lex_state = 2}, - [8571] = {.lex_state = 117, .external_lex_state = 2}, - [8572] = {.lex_state = 86, .external_lex_state = 2}, - [8573] = {.lex_state = 117, .external_lex_state = 2}, - [8574] = {.lex_state = 86, .external_lex_state = 2}, - [8575] = {.lex_state = 117, .external_lex_state = 2}, - [8576] = {.lex_state = 86, .external_lex_state = 2}, - [8577] = {.lex_state = 117, .external_lex_state = 2}, - [8578] = {.lex_state = 86, .external_lex_state = 2}, - [8579] = {.lex_state = 117, .external_lex_state = 2}, - [8580] = {.lex_state = 86, .external_lex_state = 2}, - [8581] = {.lex_state = 117, .external_lex_state = 2}, - [8582] = {.lex_state = 86, .external_lex_state = 2}, - [8583] = {.lex_state = 117, .external_lex_state = 2}, - [8584] = {.lex_state = 86, .external_lex_state = 2}, - [8585] = {.lex_state = 117, .external_lex_state = 2}, - [8586] = {.lex_state = 86, .external_lex_state = 2}, - [8587] = {.lex_state = 117, .external_lex_state = 2}, - [8588] = {.lex_state = 86, .external_lex_state = 2}, - [8589] = {.lex_state = 117, .external_lex_state = 2}, - [8590] = {.lex_state = 86, .external_lex_state = 2}, - [8591] = {.lex_state = 117, .external_lex_state = 2}, - [8592] = {.lex_state = 86, .external_lex_state = 2}, - [8593] = {.lex_state = 117, .external_lex_state = 2}, - [8594] = {.lex_state = 86, .external_lex_state = 2}, - [8595] = {.lex_state = 117, .external_lex_state = 2}, - [8596] = {.lex_state = 117, .external_lex_state = 2}, - [8597] = {.lex_state = 117, .external_lex_state = 2}, - [8598] = {.lex_state = 117, .external_lex_state = 2}, - [8599] = {.lex_state = 117, .external_lex_state = 2}, - [8600] = {.lex_state = 117, .external_lex_state = 2}, - [8601] = {.lex_state = 117, .external_lex_state = 2}, - [8602] = {.lex_state = 117, .external_lex_state = 2}, - [8603] = {.lex_state = 30, .external_lex_state = 2}, - [8604] = {.lex_state = 117, .external_lex_state = 2}, - [8605] = {.lex_state = 117, .external_lex_state = 3}, - [8606] = {.lex_state = 117, .external_lex_state = 2}, - [8607] = {.lex_state = 117, .external_lex_state = 2}, - [8608] = {.lex_state = 30, .external_lex_state = 2}, - [8609] = {.lex_state = 30, .external_lex_state = 2}, - [8610] = {.lex_state = 117, .external_lex_state = 2}, - [8611] = {.lex_state = 117, .external_lex_state = 2}, - [8612] = {.lex_state = 117, .external_lex_state = 2}, - [8613] = {.lex_state = 30, .external_lex_state = 2}, - [8614] = {.lex_state = 117, .external_lex_state = 2}, - [8615] = {.lex_state = 30, .external_lex_state = 2}, - [8616] = {.lex_state = 30, .external_lex_state = 2}, - [8617] = {.lex_state = 30, .external_lex_state = 2}, - [8618] = {.lex_state = 30, .external_lex_state = 2}, - [8619] = {.lex_state = 30, .external_lex_state = 2}, - [8620] = {.lex_state = 117, .external_lex_state = 2}, - [8621] = {.lex_state = 117, .external_lex_state = 3}, - [8622] = {.lex_state = 117, .external_lex_state = 2}, - [8623] = {.lex_state = 117, .external_lex_state = 2}, - [8624] = {.lex_state = 117, .external_lex_state = 2}, - [8625] = {.lex_state = 117, .external_lex_state = 2}, - [8626] = {.lex_state = 117, .external_lex_state = 2}, - [8627] = {.lex_state = 117, .external_lex_state = 2}, - [8628] = {.lex_state = 117, .external_lex_state = 2}, - [8629] = {.lex_state = 117, .external_lex_state = 2}, - [8630] = {(TSStateId)(-1)}, - [8631] = {(TSStateId)(-1)}, -}; - -enum { - ts_external_token_comment = 0, - ts_external_token__left_quoted_string_delimiter = 1, - ts_external_token__right_quoted_string_delimiter = 2, - ts_external_token_DQUOTE = 3, - ts_external_token_line_number_directive = 4, - ts_external_token__null = 5, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_comment] = sym_comment, - [ts_external_token__left_quoted_string_delimiter] = sym__left_quoted_string_delimiter, - [ts_external_token__right_quoted_string_delimiter] = sym__right_quoted_string_delimiter, - [ts_external_token_DQUOTE] = anon_sym_DQUOTE, - [ts_external_token_line_number_directive] = sym_line_number_directive, - [ts_external_token__null] = sym__null, -}; - -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [2] = { - [ts_external_token_comment] = true, - [ts_external_token_line_number_directive] = true, - }, - [3] = { - [ts_external_token_comment] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - }, - [4] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - }, - [5] = { - [ts_external_token_comment] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [6] = { - [ts_external_token_comment] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [7] = { - [ts_external_token_comment] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [8] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - }, - [9] = { - [ts_external_token_comment] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [sym_attribute] = STATE(0), - [ts_builtin_sym_end] = ACTIONS(1), - [sym__identifier] = ACTIONS(1), - [sym_shebang] = ACTIONS(1), - [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_rec] = ACTIONS(1), - [anon_sym_and] = ACTIONS(1), - [anon_sym_COLON_GT] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_external] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_nonrec] = ACTIONS(1), - [anon_sym_private] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_COLON_EQ] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_of] = ACTIONS(1), - [anon_sym_COLON2] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_mutable] = ACTIONS(1), - [anon_sym_constraint] = ACTIONS(1), - [anon_sym_exception] = ACTIONS(1), - [anon_sym_module] = ACTIONS(1), - [anon_sym_open] = ACTIONS(1), - [anon_sym_include] = ACTIONS(1), - [anon_sym_class] = ACTIONS(1), - [anon_sym_virtual] = ACTIONS(1), - [anon_sym_val] = ACTIONS(1), - [anon_sym_sig] = ACTIONS(1), - [anon_sym_end] = ACTIONS(1), - [anon_sym_with] = ACTIONS(1), - [anon_sym_functor] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_object] = ACTIONS(1), - [anon_sym_inherit] = ACTIONS(1), - [anon_sym_method] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_fun] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_initializer] = ACTIONS(1), - [anon_sym_LBRACK_GT] = ACTIONS(1), - [anon_sym_LBRACK_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym_LBRACK_PIPE] = ACTIONS(1), - [anon_sym_PIPE_RBRACK] = ACTIONS(1), - [anon_sym_LT_DASH] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_then] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_done] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_to] = ACTIONS(1), - [anon_sym_downto] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_when] = ACTIONS(1), - [anon_sym_function] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), - [anon_sym_assert] = ACTIONS(1), - [anon_sym_lazy] = ACTIONS(1), - [anon_sym_new] = ACTIONS(1), - [anon_sym_LBRACE_LT] = ACTIONS(1), - [anon_sym_begin] = ACTIONS(1), - [sym_ocamlyacc_value] = ACTIONS(1), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [aux_sym_number_token1] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_LBRACK_AT2] = ACTIONS(1), - [anon_sym_LBRACK_AT_AT2] = ACTIONS(1), - [anon_sym_LBRACK_AT_AT_AT2] = ACTIONS(1), - [aux_sym_string_content_token2] = ACTIONS(1), - [aux_sym_string_content_token3] = ACTIONS(1), - [aux_sym_escape_sequence_token1] = ACTIONS(1), - [aux_sym_escape_sequence_token2] = ACTIONS(1), - [aux_sym_escape_sequence_token3] = ACTIONS(1), - [aux_sym_escape_sequence_token4] = ACTIONS(1), - [sym_pretty_printing_indication] = ACTIONS(1), - [anon_sym_PLUS_DOT] = ACTIONS(1), - [anon_sym_DASH_DOT] = ACTIONS(1), - [sym_hash_operator] = ACTIONS(1), - [aux_sym__pow_operator_token1] = ACTIONS(1), - [anon_sym_lsl] = ACTIONS(1), - [anon_sym_lsr] = ACTIONS(1), - [anon_sym_asr] = ACTIONS(1), - [anon_sym_mod] = ACTIONS(1), - [anon_sym_land] = ACTIONS(1), - [anon_sym_lor] = ACTIONS(1), - [anon_sym_lxor] = ACTIONS(1), - [sym__concat_operator] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_or] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [sym_let_operator] = ACTIONS(1), - [sym_and_operator] = ACTIONS(1), - [sym_match_operator] = ACTIONS(1), - [sym__capitalized_identifier] = ACTIONS(1), - [aux_sym_directive_token1] = ACTIONS(1), - [aux_sym_type_variable_token1] = ACTIONS(1), - [aux_sym_tag_token1] = ACTIONS(1), - [aux_sym_attribute_id_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(5), - [sym__left_quoted_string_delimiter] = ACTIONS(1), - [sym__right_quoted_string_delimiter] = ACTIONS(1), - [sym_line_number_directive] = ACTIONS(5), - [sym__null] = ACTIONS(1), - }, - [1] = { - [sym_compilation_unit] = STATE(8540), - [sym__signature] = STATE(8539), - [sym_external] = STATE(5129), - [sym_type_definition] = STATE(5129), - [sym_exception_definition] = STATE(5129), - [sym_module_definition] = STATE(5129), - [sym_module_type_definition] = STATE(5129), - [sym_open_module] = STATE(5129), - [sym_class_definition] = STATE(5129), - [sym_class_type_definition] = STATE(5129), - [sym__signature_item] = STATE(5128), - [sym__signature_item_ext] = STATE(5137), - [sym_value_specification] = STATE(5129), - [sym_include_module_type] = STATE(5129), - [sym_attribute] = STATE(1), - [sym_floating_attribute] = STATE(5129), - [sym__item_extension] = STATE(5128), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [aux_sym__structure_repeat1] = STATE(3921), - [aux_sym__signature_repeat1] = STATE(3914), - [ts_builtin_sym_end] = ACTIONS(7), - [anon_sym_SEMI_SEMI] = ACTIONS(9), - [anon_sym_external] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_exception] = ACTIONS(15), - [anon_sym_module] = ACTIONS(17), - [anon_sym_open] = ACTIONS(19), - [anon_sym_include] = ACTIONS(21), - [anon_sym_class] = ACTIONS(23), - [anon_sym_val] = ACTIONS(25), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [2] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2415), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(2), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__attribute] = STATE(461), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(37), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [3] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(3), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__attribute] = STATE(730), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(105), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [4] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(4), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__attribute] = STATE(574), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(39), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [5] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(5), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8318), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(181), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [6] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(6), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7990), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(201), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [7] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(7), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8362), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(203), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [8] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(8), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8348), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(205), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [9] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(9), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8600), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(207), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [10] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(10), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8448), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(209), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [11] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(11), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8606), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(211), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [12] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(12), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7443), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(213), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [13] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(13), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7866), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(215), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [14] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(14), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8217), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(217), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [15] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(15), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8591), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(219), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [16] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(16), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7507), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(221), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [17] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(17), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7854), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [18] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(18), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8413), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(225), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [19] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(19), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7769), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(227), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [20] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(20), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7720), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(229), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [21] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(21), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7642), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(231), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [22] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(22), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7493), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [23] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(23), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7508), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(235), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [24] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(24), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7560), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(237), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [25] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(25), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8203), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(239), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [26] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(26), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7535), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(241), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [27] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(27), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7786), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(243), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [28] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(28), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7403), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(245), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [29] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(29), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(8202), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(247), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [30] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(30), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7394), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(249), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [31] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(31), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7974), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(251), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [32] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(32), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7899), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(253), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [33] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(33), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7853), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [34] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(34), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7987), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(257), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [35] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(35), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7458), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(259), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [36] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(36), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7917), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(261), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [37] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(37), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7368), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(263), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [38] = { - [sym__structure] = STATE(8331), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(38), - [sym_floating_attribute] = STATE(5113), - [sym_attribute_payload] = STATE(7465), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(265), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_COLON2] = ACTIONS(183), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [39] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2622), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(39), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__attribute] = STATE(707), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_COLON_GT] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_end] = ACTIONS(39), - [anon_sym_with] = ACTIONS(39), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_then] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(35), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [40] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2622), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(40), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__attribute] = STATE(631), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_constraint] = ACTIONS(39), - [anon_sym_val] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(39), - [anon_sym_method] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_initializer] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [41] = { - [sym__structure] = STATE(8237), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(41), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(349), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [42] = { - [sym__structure] = STATE(7428), - [sym_expression_item] = STATE(3382), - [sym_toplevel_directive] = STATE(3382), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3382), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(42), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(48), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(351), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [43] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2622), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(43), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(758), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_constraint] = ACTIONS(39), - [anon_sym_val] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(39), - [anon_sym_method] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_initializer] = ACTIONS(39), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [44] = { - [sym_expression_item] = STATE(5082), - [sym_toplevel_directive] = STATE(5082), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(5082), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(44), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(2208), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(413), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(415), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [45] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2785), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(45), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(571), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_COLON_GT] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(39), - [anon_sym_DASH_GT] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_end] = ACTIONS(39), - [anon_sym_with] = ACTIONS(39), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_then] = ACTIONS(39), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(35), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [46] = { - [sym_expression_item] = STATE(5082), - [sym_toplevel_directive] = STATE(5082), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(5082), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(46), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(2208), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(437), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(439), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [47] = { - [sym_expression_item] = STATE(5082), - [sym_toplevel_directive] = STATE(5082), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(5082), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(47), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(2208), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(441), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(443), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [48] = { - [sym_expression_item] = STATE(3433), - [sym_toplevel_directive] = STATE(3433), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(3433), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(48), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(2208), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(445), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_end] = ACTIONS(447), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [49] = { - [sym_expression_item] = STATE(5082), - [sym_toplevel_directive] = STATE(5082), - [sym__structure_item] = STATE(5109), - [sym__structure_item_ext] = STATE(5082), - [sym_value_definition] = STATE(5054), - [sym_external] = STATE(5113), - [sym_type_definition] = STATE(5113), - [sym_exception_definition] = STATE(5113), - [sym_module_definition] = STATE(5113), - [sym_module_type_definition] = STATE(5113), - [sym_open_module] = STATE(5113), - [sym_include_module] = STATE(5113), - [sym_class_definition] = STATE(5113), - [sym_class_type_definition] = STATE(5113), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4917), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(49), - [sym_floating_attribute] = STATE(5113), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__item_extension] = STATE(5109), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_directive] = STATE(3244), - [sym_tag] = STATE(1496), - [aux_sym__structure_repeat1] = STATE(2208), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(171), - [anon_sym_let] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(177), - [anon_sym_type] = ACTIONS(179), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(185), - [anon_sym_module] = ACTIONS(187), - [anon_sym_open] = ACTIONS(189), - [anon_sym_include] = ACTIONS(191), - [anon_sym_class] = ACTIONS(193), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(197), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(199), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [50] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6240), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(50), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8031), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(449), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(457), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(463), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(465), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(481), - [sym_and_operator] = ACTIONS(465), - [sym_match_operator] = ACTIONS(483), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [51] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6239), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(51), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7409), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(489), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(491), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(493), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(495), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(497), - [sym_and_operator] = ACTIONS(495), - [sym_match_operator] = ACTIONS(499), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [52] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6152), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(52), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7731), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(501), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(505), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(507), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(509), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(511), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(513), - [sym_and_operator] = ACTIONS(511), - [sym_match_operator] = ACTIONS(515), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [53] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6247), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(53), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7486), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(517), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(521), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(523), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(525), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(527), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(529), - [sym_and_operator] = ACTIONS(527), - [sym_match_operator] = ACTIONS(531), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [54] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6134), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(54), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7791), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(533), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(537), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(539), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(541), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(543), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(545), - [sym_and_operator] = ACTIONS(543), - [sym_match_operator] = ACTIONS(547), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [55] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6148), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(55), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8265), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(549), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(553), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(557), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(559), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(561), - [sym_and_operator] = ACTIONS(559), - [sym_match_operator] = ACTIONS(563), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [56] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7717), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(56), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7398), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(565), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(569), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(571), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(573), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(575), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(577), - [sym_and_operator] = ACTIONS(575), - [sym_match_operator] = ACTIONS(579), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [57] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8251), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(57), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8307), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(587), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(589), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(591), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(593), - [sym_and_operator] = ACTIONS(591), - [sym_match_operator] = ACTIONS(595), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [58] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6353), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(58), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8287), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(597), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(601), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(603), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(605), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(607), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(609), - [sym_and_operator] = ACTIONS(607), - [sym_match_operator] = ACTIONS(611), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [59] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8110), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(59), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7731), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(503), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(505), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(615), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(509), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(511), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(513), - [sym_and_operator] = ACTIONS(511), - [sym_match_operator] = ACTIONS(515), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [60] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6252), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(60), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7654), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(617), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(621), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(623), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(625), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(627), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(629), - [sym_and_operator] = ACTIONS(627), - [sym_match_operator] = ACTIONS(631), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [61] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8501), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(61), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7654), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(621), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(625), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(627), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(629), - [sym_and_operator] = ACTIONS(627), - [sym_match_operator] = ACTIONS(631), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [62] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6346), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(62), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7559), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(637), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(641), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(643), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(645), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(647), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(649), - [sym_and_operator] = ACTIONS(647), - [sym_match_operator] = ACTIONS(651), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [63] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8579), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(63), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7559), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(653), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(639), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(641), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(655), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(645), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(647), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(649), - [sym_and_operator] = ACTIONS(647), - [sym_match_operator] = ACTIONS(651), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [64] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7594), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(64), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8530), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(657), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(661), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(663), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(665), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(667), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(669), - [sym_and_operator] = ACTIONS(667), - [sym_match_operator] = ACTIONS(671), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [65] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6309), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(65), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7452), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(673), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(677), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(679), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(681), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(683), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(685), - [sym_and_operator] = ACTIONS(683), - [sym_match_operator] = ACTIONS(687), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [66] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8387), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(66), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7452), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(675), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(677), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(691), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(681), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(683), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(685), - [sym_and_operator] = ACTIONS(683), - [sym_match_operator] = ACTIONS(687), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [67] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8441), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(67), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8031), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(455), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(457), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(695), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(463), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(465), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(481), - [sym_and_operator] = ACTIONS(465), - [sym_match_operator] = ACTIONS(483), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [68] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6356), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(68), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8307), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(589), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(591), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(593), - [sym_and_operator] = ACTIONS(591), - [sym_match_operator] = ACTIONS(595), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [69] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8098), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(69), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7409), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(487), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(489), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(703), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(493), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(495), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(497), - [sym_and_operator] = ACTIONS(495), - [sym_match_operator] = ACTIONS(499), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [70] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7691), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(70), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8265), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(553), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(707), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(557), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(559), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(561), - [sym_and_operator] = ACTIONS(559), - [sym_match_operator] = ACTIONS(563), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [71] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8251), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(71), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8275), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(581), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(587), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(711), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(713), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(715), - [sym_and_operator] = ACTIONS(713), - [sym_match_operator] = ACTIONS(717), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [72] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8062), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(72), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7486), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(519), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(521), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(721), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(525), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(527), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(529), - [sym_and_operator] = ACTIONS(527), - [sym_match_operator] = ACTIONS(531), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [73] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6119), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(73), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7398), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(567), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(569), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(725), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(573), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(575), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(577), - [sym_and_operator] = ACTIONS(575), - [sym_match_operator] = ACTIONS(579), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [74] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6173), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(74), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7885), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(731), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(735), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(737), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(739), - [sym_and_operator] = ACTIONS(737), - [sym_match_operator] = ACTIONS(741), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [75] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7690), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(75), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7791), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(743), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(535), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(537), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(745), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(541), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(543), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(545), - [sym_and_operator] = ACTIONS(543), - [sym_match_operator] = ACTIONS(547), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [76] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8198), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(76), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8287), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(747), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(599), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(601), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(749), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(605), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(607), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(609), - [sym_and_operator] = ACTIONS(607), - [sym_match_operator] = ACTIONS(611), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [77] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8398), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(77), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(7885), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(751), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(731), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(753), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(735), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(737), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(739), - [sym_and_operator] = ACTIONS(737), - [sym_match_operator] = ACTIONS(741), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [78] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6356), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(78), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8275), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(755), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(711), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(713), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(715), - [sym_and_operator] = ACTIONS(713), - [sym_match_operator] = ACTIONS(717), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [79] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6270), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(79), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym_infix_operator] = STATE(8530), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(757), - [anon_sym_PLUS] = ACTIONS(451), - [anon_sym_DASH] = ACTIONS(451), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(659), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_module] = ACTIONS(661), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_COLON_COLON] = ACTIONS(759), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(665), - [anon_sym_PLUS_DOT] = ACTIONS(451), - [anon_sym_DASH_DOT] = ACTIONS(451), - [sym_hash_operator] = ACTIONS(667), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(669), - [sym_and_operator] = ACTIONS(667), - [sym_match_operator] = ACTIONS(671), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [80] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3664), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(80), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__attribute] = STATE(504), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [81] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3664), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(81), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__attribute] = STATE(744), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(39), - [anon_sym_for] = ACTIONS(783), - [anon_sym_to] = ACTIONS(39), - [anon_sym_downto] = ACTIONS(39), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [82] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2785), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(82), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__attribute] = STATE(470), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [83] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2622), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(83), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__attribute] = STATE(495), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(287), - [anon_sym_do] = ACTIONS(39), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [84] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2785), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(84), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(450), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_PIPE] = ACTIONS(39), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(35), - [anon_sym_if] = ACTIONS(903), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [85] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2785), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(85), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(688), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_COLON_EQ] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(35), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_AMP] = ACTIONS(39), - [anon_sym_COLON_COLON] = ACTIONS(35), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_else] = ACTIONS(39), - [anon_sym_while] = ACTIONS(373), - [anon_sym_do] = ACTIONS(39), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(85), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(43), - [anon_sym_DASH_DOT] = ACTIONS(43), - [aux_sym__pow_operator_token1] = ACTIONS(35), - [anon_sym_lsl] = ACTIONS(39), - [anon_sym_lsr] = ACTIONS(39), - [anon_sym_asr] = ACTIONS(39), - [aux_sym__mult_operator_token1] = ACTIONS(39), - [anon_sym_mod] = ACTIONS(39), - [anon_sym_land] = ACTIONS(39), - [anon_sym_lor] = ACTIONS(39), - [anon_sym_lxor] = ACTIONS(39), - [aux_sym__add_operator_token1] = ACTIONS(39), - [sym__concat_operator] = ACTIONS(35), - [sym__rel_operator] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [86] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(86), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [87] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(87), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [88] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(88), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [89] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(89), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_let] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_exception] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_include] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_end] = ACTIONS(961), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(961), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(959), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(959), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(959), - [sym_and_operator] = ACTIONS(959), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(961), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [90] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(90), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_let] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_exception] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_open] = ACTIONS(971), - [anon_sym_include] = ACTIONS(971), - [anon_sym_class] = ACTIONS(971), - [anon_sym_end] = ACTIONS(971), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(969), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(969), - [sym_and_operator] = ACTIONS(969), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(971), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [91] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(91), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_exception] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_open] = ACTIONS(975), - [anon_sym_include] = ACTIONS(975), - [anon_sym_class] = ACTIONS(975), - [anon_sym_end] = ACTIONS(975), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(973), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_let_operator] = ACTIONS(973), - [sym_and_operator] = ACTIONS(973), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(975), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [92] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(92), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(977), - [anon_sym_let] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(979), - [anon_sym_type] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_exception] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_open] = ACTIONS(979), - [anon_sym_include] = ACTIONS(979), - [anon_sym_class] = ACTIONS(979), - [anon_sym_end] = ACTIONS(979), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(977), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(977), - [sym_and_operator] = ACTIONS(977), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(979), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [93] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(93), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [94] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(94), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [95] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(95), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [96] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(96), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_let] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(983), - [anon_sym_type] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_exception] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_open] = ACTIONS(983), - [anon_sym_include] = ACTIONS(983), - [anon_sym_class] = ACTIONS(983), - [anon_sym_end] = ACTIONS(983), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(983), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(981), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym_let_operator] = ACTIONS(981), - [sym_and_operator] = ACTIONS(981), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(983), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [97] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(97), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [98] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(98), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_let] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(987), - [anon_sym_type] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_exception] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_open] = ACTIONS(987), - [anon_sym_include] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_end] = ACTIONS(987), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(987), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(985), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(985), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(985), - [sym_and_operator] = ACTIONS(985), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(987), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [99] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2415), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(99), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__attribute] = STATE(778), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(37), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [100] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(100), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [101] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(101), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(991), - [anon_sym_let] = ACTIONS(993), - [anon_sym_and] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_exception] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_open] = ACTIONS(993), - [anon_sym_include] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_end] = ACTIONS(993), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(993), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(991), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(991), - [sym_and_operator] = ACTIONS(991), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(993), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [102] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(102), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [103] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(103), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_let] = ACTIONS(983), - [anon_sym_and] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(983), - [anon_sym_type] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_exception] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_open] = ACTIONS(983), - [anon_sym_include] = ACTIONS(983), - [anon_sym_class] = ACTIONS(983), - [anon_sym_end] = ACTIONS(983), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(983), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(981), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym_let_operator] = ACTIONS(981), - [sym_and_operator] = ACTIONS(981), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(983), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [104] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(104), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_let] = ACTIONS(987), - [anon_sym_and] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(987), - [anon_sym_type] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_exception] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_open] = ACTIONS(987), - [anon_sym_include] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_end] = ACTIONS(987), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(987), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(985), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(985), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(985), - [sym_and_operator] = ACTIONS(985), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(987), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [105] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(105), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(991), - [anon_sym_let] = ACTIONS(993), - [anon_sym_and] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_exception] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_open] = ACTIONS(993), - [anon_sym_include] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_end] = ACTIONS(993), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(993), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(991), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(991), - [sym_and_operator] = ACTIONS(991), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(993), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [106] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(106), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_and] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_exception] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_open] = ACTIONS(975), - [anon_sym_include] = ACTIONS(975), - [anon_sym_class] = ACTIONS(975), - [anon_sym_end] = ACTIONS(975), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(973), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_let_operator] = ACTIONS(973), - [sym_and_operator] = ACTIONS(973), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(975), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [107] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(107), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [108] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(108), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [109] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(109), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [110] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(110), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [111] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(111), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [112] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(112), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [113] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(113), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [114] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(114), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [115] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(115), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__attribute] = STATE(654), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(105), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [116] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(116), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(977), - [anon_sym_let] = ACTIONS(979), - [anon_sym_and] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(979), - [anon_sym_type] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_exception] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_open] = ACTIONS(979), - [anon_sym_include] = ACTIONS(979), - [anon_sym_class] = ACTIONS(979), - [anon_sym_end] = ACTIONS(979), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(977), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(977), - [sym_and_operator] = ACTIONS(977), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(979), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [117] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(117), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_let] = ACTIONS(971), - [anon_sym_and] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_exception] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_open] = ACTIONS(971), - [anon_sym_include] = ACTIONS(971), - [anon_sym_class] = ACTIONS(971), - [anon_sym_end] = ACTIONS(971), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(969), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(969), - [sym_and_operator] = ACTIONS(969), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(971), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [118] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(118), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_let] = ACTIONS(961), - [anon_sym_and] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_exception] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_include] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_end] = ACTIONS(961), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(961), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(959), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(959), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(959), - [sym_and_operator] = ACTIONS(959), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(961), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [119] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(119), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1009), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [120] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(120), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(1002), - [sym__mult_operator] = STATE(1007), - [sym__add_operator] = STATE(1012), - [sym__and_operator] = STATE(1014), - [sym__or_operator] = STATE(1022), - [sym__assign_operator] = STATE(1055), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(963), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1011), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(955), - [sym__rel_operator] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [121] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(121), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(1021), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [122] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(122), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(985), - [anon_sym_let] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(987), - [anon_sym_type] = ACTIONS(987), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(987), - [anon_sym_exception] = ACTIONS(987), - [anon_sym_module] = ACTIONS(987), - [anon_sym_open] = ACTIONS(987), - [anon_sym_include] = ACTIONS(987), - [anon_sym_class] = ACTIONS(987), - [anon_sym_end] = ACTIONS(987), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(987), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(985), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(985), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(985), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(987), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [123] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(123), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(977), - [anon_sym_let] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(979), - [anon_sym_type] = ACTIONS(979), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(979), - [anon_sym_exception] = ACTIONS(979), - [anon_sym_module] = ACTIONS(979), - [anon_sym_open] = ACTIONS(979), - [anon_sym_include] = ACTIONS(979), - [anon_sym_class] = ACTIONS(979), - [anon_sym_end] = ACTIONS(979), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(977), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(977), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(979), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [124] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(124), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__pow_operator] = STATE(940), - [sym__mult_operator] = STATE(939), - [sym__add_operator] = STATE(937), - [sym__and_operator] = STATE(934), - [sym__or_operator] = STATE(933), - [sym__assign_operator] = STATE(931), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(150), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(1001), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1033), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(51), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1003), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1005), - [sym__rel_operator] = ACTIONS(1007), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [125] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(125), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(981), - [anon_sym_let] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(983), - [anon_sym_type] = ACTIONS(983), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(983), - [anon_sym_exception] = ACTIONS(983), - [anon_sym_module] = ACTIONS(983), - [anon_sym_open] = ACTIONS(983), - [anon_sym_include] = ACTIONS(983), - [anon_sym_class] = ACTIONS(983), - [anon_sym_end] = ACTIONS(983), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(983), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(981), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym_let_operator] = ACTIONS(981), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(983), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [126] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(126), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [127] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(127), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__attribute] = STATE(761), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_SEMI_SEMI] = ACTIONS(35), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(39), - [anon_sym_type] = ACTIONS(39), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_exception] = ACTIONS(39), - [anon_sym_module] = ACTIONS(39), - [anon_sym_open] = ACTIONS(39), - [anon_sym_include] = ACTIONS(39), - [anon_sym_class] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(35), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [128] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(128), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [129] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(129), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [130] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(130), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(969), - [anon_sym_let] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(971), - [anon_sym_type] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_exception] = ACTIONS(971), - [anon_sym_module] = ACTIONS(971), - [anon_sym_open] = ACTIONS(971), - [anon_sym_include] = ACTIONS(971), - [anon_sym_class] = ACTIONS(971), - [anon_sym_end] = ACTIONS(971), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(969), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(969), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(971), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [131] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(131), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [132] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(132), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(973), - [anon_sym_let] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(975), - [anon_sym_type] = ACTIONS(975), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(975), - [anon_sym_exception] = ACTIONS(975), - [anon_sym_module] = ACTIONS(975), - [anon_sym_open] = ACTIONS(975), - [anon_sym_include] = ACTIONS(975), - [anon_sym_class] = ACTIONS(975), - [anon_sym_end] = ACTIONS(975), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(973), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_let_operator] = ACTIONS(973), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(975), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [133] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(133), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [134] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(134), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [135] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(135), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [136] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(136), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(931), - [anon_sym_let] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(933), - [anon_sym_type] = ACTIONS(933), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(933), - [anon_sym_exception] = ACTIONS(933), - [anon_sym_module] = ACTIONS(933), - [anon_sym_open] = ACTIONS(933), - [anon_sym_include] = ACTIONS(933), - [anon_sym_class] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_let_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(933), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [137] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(137), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(959), - [anon_sym_let] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(961), - [anon_sym_type] = ACTIONS(961), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(961), - [anon_sym_exception] = ACTIONS(961), - [anon_sym_module] = ACTIONS(961), - [anon_sym_open] = ACTIONS(961), - [anon_sym_include] = ACTIONS(961), - [anon_sym_class] = ACTIONS(961), - [anon_sym_end] = ACTIONS(961), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(961), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(959), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(959), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(959), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(961), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [138] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(138), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(991), - [anon_sym_let] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(993), - [anon_sym_type] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_exception] = ACTIONS(993), - [anon_sym_module] = ACTIONS(993), - [anon_sym_open] = ACTIONS(993), - [anon_sym_include] = ACTIONS(993), - [anon_sym_class] = ACTIONS(993), - [anon_sym_end] = ACTIONS(993), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(993), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(991), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(991), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(993), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [139] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(139), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__pow_operator] = STATE(909), - [sym__mult_operator] = STATE(917), - [sym__add_operator] = STATE(920), - [sym__and_operator] = STATE(921), - [sym__or_operator] = STATE(922), - [sym__assign_operator] = STATE(923), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(995), - [anon_sym_let] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_COMMA] = ACTIONS(1017), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(1035), - [anon_sym_exception] = ACTIONS(997), - [anon_sym_module] = ACTIONS(997), - [anon_sym_open] = ACTIONS(997), - [anon_sym_include] = ACTIONS(997), - [anon_sym_class] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1025), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1029), - [sym__rel_operator] = ACTIONS(1031), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_let_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(997), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [140] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(140), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(144), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_constraint] = ACTIONS(1043), - [anon_sym_val] = ACTIONS(1043), - [anon_sym_end] = ACTIONS(1043), - [anon_sym_with] = ACTIONS(1043), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(1043), - [anon_sym_method] = ACTIONS(1043), - [anon_sym_initializer] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1039), - [anon_sym_then] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(1039), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1043), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1039), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1039), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1039), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [141] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(141), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(147), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_and] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(1043), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_exception] = ACTIONS(1043), - [anon_sym_module] = ACTIONS(1043), - [anon_sym_open] = ACTIONS(1043), - [anon_sym_include] = ACTIONS(1043), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_end] = ACTIONS(1043), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1043), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1039), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1039), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1039), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym_let_operator] = ACTIONS(1039), - [sym_and_operator] = ACTIONS(1039), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(1043), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [142] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(142), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(166), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(1039), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(1039), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(1043), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(1043), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_RBRACE] = ACTIONS(1039), - [anon_sym_constraint] = ACTIONS(1043), - [anon_sym_val] = ACTIONS(1043), - [anon_sym_end] = ACTIONS(1043), - [anon_sym_with] = ACTIONS(1043), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(1043), - [anon_sym_method] = ACTIONS(1043), - [anon_sym_initializer] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(1043), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(1039), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1043), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1039), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1039), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1039), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [143] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(143), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(146), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(1063), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_constraint] = ACTIONS(1063), - [anon_sym_val] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_with] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(1063), - [anon_sym_method] = ACTIONS(1063), - [anon_sym_initializer] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1061), - [anon_sym_then] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(1061), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [144] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(144), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(146), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(1063), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_constraint] = ACTIONS(1063), - [anon_sym_val] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_with] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(1063), - [anon_sym_method] = ACTIONS(1063), - [anon_sym_initializer] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1061), - [anon_sym_then] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(1061), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [145] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(145), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(564), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_constraint] = ACTIONS(39), - [anon_sym_val] = ACTIONS(39), - [anon_sym_end] = ACTIONS(39), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(39), - [anon_sym_method] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_initializer] = ACTIONS(39), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(39), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(35), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [146] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(146), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(146), - [sym__identifier] = ACTIONS(1065), - [anon_sym_COLON_GT] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1070), - [anon_sym_QMARK] = ACTIONS(1070), - [anon_sym_LPAREN] = ACTIONS(1073), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1078), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1081), - [anon_sym_false] = ACTIONS(1081), - [anon_sym_COLON2] = ACTIONS(1076), - [anon_sym_DASH_GT] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1084), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_constraint] = ACTIONS(1076), - [anon_sym_val] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_with] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(1087), - [anon_sym_inherit] = ACTIONS(1076), - [anon_sym_method] = ACTIONS(1076), - [anon_sym_initializer] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1090), - [anon_sym_PIPE_RBRACK] = ACTIONS(1068), - [anon_sym_then] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1093), - [anon_sym_LBRACE_LT] = ACTIONS(1096), - [anon_sym_GT_RBRACE] = ACTIONS(1068), - [anon_sym_begin] = ACTIONS(1099), - [sym_ocamlyacc_value] = ACTIONS(1102), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1105), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1108), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(1111), - [anon_sym_SQUOTE] = ACTIONS(1114), - [anon_sym_DQUOTE] = ACTIONS(1117), - [sym_prefix_operator] = ACTIONS(1120), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym__capitalized_identifier] = ACTIONS(1123), - [aux_sym_tag_token1] = ACTIONS(1126), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [147] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(147), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(148), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_exception] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_open] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1063), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_let_operator] = ACTIONS(1061), - [sym_and_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(1061), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [148] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(148), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(148), - [sym__identifier] = ACTIONS(1129), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_and] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1132), - [anon_sym_QMARK] = ACTIONS(1132), - [anon_sym_LPAREN] = ACTIONS(1135), - [anon_sym_external] = ACTIONS(1076), - [anon_sym_type] = ACTIONS(1076), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1138), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1141), - [anon_sym_false] = ACTIONS(1141), - [anon_sym_LBRACE] = ACTIONS(1144), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_exception] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_open] = ACTIONS(1076), - [anon_sym_include] = ACTIONS(1076), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(1147), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1150), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1153), - [anon_sym_LBRACE_LT] = ACTIONS(1156), - [anon_sym_begin] = ACTIONS(1159), - [sym_ocamlyacc_value] = ACTIONS(1162), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1168), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(1171), - [anon_sym_SQUOTE] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(1177), - [sym_prefix_operator] = ACTIONS(1180), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym_let_operator] = ACTIONS(1068), - [sym_and_operator] = ACTIONS(1068), - [sym__capitalized_identifier] = ACTIONS(1183), - [aux_sym_directive_token1] = ACTIONS(1068), - [aux_sym_tag_token1] = ACTIONS(1186), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [149] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(149), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(219), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(1039), - [anon_sym_let] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(1043), - [anon_sym_type] = ACTIONS(1043), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(1039), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(1043), - [anon_sym_exception] = ACTIONS(1043), - [anon_sym_module] = ACTIONS(1043), - [anon_sym_open] = ACTIONS(1043), - [anon_sym_include] = ACTIONS(1043), - [anon_sym_class] = ACTIONS(1043), - [anon_sym_end] = ACTIONS(1043), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1043), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1039), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1039), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1039), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym_let_operator] = ACTIONS(1039), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(1043), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [150] = { - [sym__simple_expression] = STATE(1288), - [sym_typed_expression] = STATE(1395), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym__argument] = STATE(1428), - [sym_labeled_argument] = STATE(1423), - [sym_prefix_expression] = STATE(1395), - [sym_hash_expression] = STATE(1395), - [sym_field_get_expression] = STATE(1395), - [sym_array_get_expression] = STATE(1395), - [sym_string_get_expression] = STATE(1395), - [sym_bigarray_get_expression] = STATE(1395), - [sym_coercion_expression] = STATE(1395), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(150), - [sym__extension] = STATE(1288), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym__label] = STATE(1416), - [sym_tag] = STATE(1395), - [aux_sym_class_application_repeat1] = STATE(148), - [sym__identifier] = ACTIONS(929), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(935), - [anon_sym_QMARK] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_external] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_exception] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_open] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1063), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(51), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(81), - [anon_sym_LBRACE_PERCENT] = ACTIONS(83), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_let_operator] = ACTIONS(1061), - [sym_and_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_directive_token1] = ACTIONS(1061), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [151] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(151), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_constraint] = ACTIONS(975), - [anon_sym_val] = ACTIONS(975), - [anon_sym_end] = ACTIONS(975), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(975), - [anon_sym_method] = ACTIONS(975), - [anon_sym_initializer] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(973), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [152] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(152), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [153] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(153), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_end] = ACTIONS(983), - [anon_sym_with] = ACTIONS(983), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(983), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(981), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [154] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(154), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_end] = ACTIONS(971), - [anon_sym_with] = ACTIONS(971), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [155] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(155), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [156] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(156), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [157] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(157), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_end] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(959), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [158] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(158), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(173), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(1063), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_constraint] = ACTIONS(1063), - [anon_sym_val] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_with] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(1063), - [anon_sym_method] = ACTIONS(1063), - [anon_sym_initializer] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(1061), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [159] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(159), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [160] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(160), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_constraint] = ACTIONS(961), - [anon_sym_val] = ACTIONS(961), - [anon_sym_end] = ACTIONS(961), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(961), - [anon_sym_method] = ACTIONS(961), - [anon_sym_initializer] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(961), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(959), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(959), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [161] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(161), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1205), - [anon_sym_constraint] = ACTIONS(997), - [anon_sym_val] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(997), - [anon_sym_method] = ACTIONS(997), - [anon_sym_initializer] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [162] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(162), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(440), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_COLON_GT] = ACTIONS(35), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(35), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(35), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(39), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_RBRACE] = ACTIONS(35), - [anon_sym_end] = ACTIONS(39), - [anon_sym_with] = ACTIONS(39), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_then] = ACTIONS(39), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [163] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(163), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_constraint] = ACTIONS(983), - [anon_sym_val] = ACTIONS(983), - [anon_sym_end] = ACTIONS(983), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(983), - [anon_sym_method] = ACTIONS(983), - [anon_sym_initializer] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(983), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(981), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [164] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(164), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_constraint] = ACTIONS(987), - [anon_sym_val] = ACTIONS(987), - [anon_sym_end] = ACTIONS(987), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(987), - [anon_sym_method] = ACTIONS(987), - [anon_sym_initializer] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(987), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(985), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(985), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [165] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(165), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_constraint] = ACTIONS(993), - [anon_sym_val] = ACTIONS(993), - [anon_sym_end] = ACTIONS(993), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(993), - [anon_sym_method] = ACTIONS(993), - [anon_sym_initializer] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(993), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(991), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [166] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(166), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(173), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(1061), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(1063), - [anon_sym_DASH_GT] = ACTIONS(1063), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_RBRACE] = ACTIONS(1061), - [anon_sym_constraint] = ACTIONS(1063), - [anon_sym_val] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_with] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(1063), - [anon_sym_method] = ACTIONS(1063), - [anon_sym_initializer] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(1063), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(1061), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [167] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(167), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [168] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(168), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1207), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_end] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(995), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [169] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(169), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(973), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_end] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(973), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [170] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(170), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [171] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(171), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [172] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(172), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [173] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(173), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(173), - [sym__identifier] = ACTIONS(1209), - [anon_sym_COLON_GT] = ACTIONS(1068), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_RPAREN] = ACTIONS(1068), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_COLON2] = ACTIONS(1076), - [anon_sym_DASH_GT] = ACTIONS(1076), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_RBRACE] = ACTIONS(1068), - [anon_sym_constraint] = ACTIONS(1076), - [anon_sym_val] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_with] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_inherit] = ACTIONS(1076), - [anon_sym_method] = ACTIONS(1076), - [anon_sym_initializer] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1230), - [anon_sym_then] = ACTIONS(1076), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1233), - [anon_sym_LBRACE_LT] = ACTIONS(1236), - [anon_sym_GT_RBRACE] = ACTIONS(1068), - [anon_sym_begin] = ACTIONS(1239), - [sym_ocamlyacc_value] = ACTIONS(1242), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1245), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1248), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_prefix_operator] = ACTIONS(1260), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym__capitalized_identifier] = ACTIONS(1263), - [aux_sym_tag_token1] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [174] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(174), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(977), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_end] = ACTIONS(979), - [anon_sym_with] = ACTIONS(979), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(977), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [175] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(175), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_end] = ACTIONS(993), - [anon_sym_with] = ACTIONS(993), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(993), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(991), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [176] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(176), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_end] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [177] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(177), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(1191), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [178] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(178), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [179] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(179), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [180] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(180), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1193), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1195), - [sym__rel_operator] = ACTIONS(1197), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [181] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(181), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [182] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(182), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [183] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(183), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [184] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(184), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(981), - [sym__mult_operator] = STATE(1004), - [sym__add_operator] = STATE(951), - [sym__and_operator] = STATE(1071), - [sym__or_operator] = STATE(1078), - [sym__assign_operator] = STATE(1062), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [185] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(185), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_constraint] = ACTIONS(979), - [anon_sym_val] = ACTIONS(979), - [anon_sym_end] = ACTIONS(979), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(979), - [anon_sym_method] = ACTIONS(979), - [anon_sym_initializer] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(977), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [186] = { - [sym__simple_expression] = STATE(1400), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(186), - [sym__extension] = STATE(1400), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(976), - [sym__mult_operator] = STATE(980), - [sym__add_operator] = STATE(983), - [sym__and_operator] = STATE(984), - [sym__or_operator] = STATE(985), - [sym__assign_operator] = STATE(986), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(1477), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(158), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1201), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_constraint] = ACTIONS(971), - [anon_sym_val] = ACTIONS(971), - [anon_sym_end] = ACTIONS(971), - [anon_sym_object] = ACTIONS(279), - [anon_sym_inherit] = ACTIONS(971), - [anon_sym_method] = ACTIONS(971), - [anon_sym_initializer] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1189), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(969), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1199), - [sym__rel_operator] = ACTIONS(1203), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [187] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(187), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(991), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(991), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_RBRACE] = ACTIONS(991), - [anon_sym_end] = ACTIONS(993), - [anon_sym_with] = ACTIONS(993), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(993), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(991), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [188] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(188), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [189] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(189), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [190] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(190), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [191] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(191), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [192] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(192), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(977), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(977), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(977), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(979), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(979), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_RBRACE] = ACTIONS(977), - [anon_sym_end] = ACTIONS(979), - [anon_sym_with] = ACTIONS(979), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(979), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(977), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [193] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(193), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(985), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(985), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(985), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(987), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(987), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_RBRACE] = ACTIONS(985), - [anon_sym_end] = ACTIONS(987), - [anon_sym_with] = ACTIONS(987), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(987), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [194] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(194), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1281), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_end] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(997), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(995), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [195] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(195), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(973), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(973), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(973), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(975), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(975), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_RBRACE] = ACTIONS(973), - [anon_sym_end] = ACTIONS(975), - [anon_sym_with] = ACTIONS(975), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(975), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(973), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [196] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(196), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(969), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(969), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(969), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(971), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_RBRACE] = ACTIONS(969), - [anon_sym_end] = ACTIONS(971), - [anon_sym_with] = ACTIONS(971), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(971), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(969), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [197] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(197), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [198] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(198), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [199] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(199), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1285), - [anon_sym_constraint] = ACTIONS(997), - [anon_sym_val] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(997), - [anon_sym_method] = ACTIONS(997), - [anon_sym_initializer] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [200] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(200), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_constraint] = ACTIONS(961), - [anon_sym_val] = ACTIONS(961), - [anon_sym_end] = ACTIONS(961), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(961), - [anon_sym_method] = ACTIONS(961), - [anon_sym_initializer] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(961), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(959), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(959), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [201] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(201), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_constraint] = ACTIONS(971), - [anon_sym_val] = ACTIONS(971), - [anon_sym_end] = ACTIONS(971), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(971), - [anon_sym_method] = ACTIONS(971), - [anon_sym_initializer] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(969), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [202] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(202), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_constraint] = ACTIONS(979), - [anon_sym_val] = ACTIONS(979), - [anon_sym_end] = ACTIONS(979), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(979), - [anon_sym_method] = ACTIONS(979), - [anon_sym_initializer] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(977), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [203] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(203), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [204] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(204), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [205] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(205), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [206] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(206), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [207] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(207), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_constraint] = ACTIONS(983), - [anon_sym_val] = ACTIONS(983), - [anon_sym_end] = ACTIONS(983), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(983), - [anon_sym_method] = ACTIONS(983), - [anon_sym_initializer] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(983), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(981), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [208] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(208), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_constraint] = ACTIONS(987), - [anon_sym_val] = ACTIONS(987), - [anon_sym_end] = ACTIONS(987), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(987), - [anon_sym_method] = ACTIONS(987), - [anon_sym_initializer] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(987), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(985), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(985), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [209] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(209), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [210] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(210), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [211] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(211), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [212] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(212), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [213] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(213), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(981), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(981), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(981), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(983), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(983), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_RBRACE] = ACTIONS(981), - [anon_sym_end] = ACTIONS(983), - [anon_sym_with] = ACTIONS(983), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(983), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(981), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [214] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(214), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(931), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(931), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(931), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(933), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(933), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_end] = ACTIONS(933), - [anon_sym_with] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(933), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(931), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [215] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(215), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_constraint] = ACTIONS(933), - [anon_sym_val] = ACTIONS(933), - [anon_sym_end] = ACTIONS(933), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(933), - [anon_sym_method] = ACTIONS(933), - [anon_sym_initializer] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(933), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(931), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(931), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [216] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(216), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_constraint] = ACTIONS(993), - [anon_sym_val] = ACTIONS(993), - [anon_sym_end] = ACTIONS(993), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(993), - [anon_sym_method] = ACTIONS(993), - [anon_sym_initializer] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(993), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(991), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [217] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(217), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(959), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(961), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(961), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_end] = ACTIONS(961), - [anon_sym_with] = ACTIONS(961), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(961), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(959), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [218] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(218), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_constraint] = ACTIONS(975), - [anon_sym_val] = ACTIONS(975), - [anon_sym_end] = ACTIONS(975), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(975), - [anon_sym_method] = ACTIONS(975), - [anon_sym_initializer] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(973), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [219] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(219), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(220), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_exception] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_open] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1063), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_let_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(1061), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [220] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(220), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(220), - [sym__identifier] = ACTIONS(1289), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1295), - [anon_sym_external] = ACTIONS(1076), - [anon_sym_type] = ACTIONS(1076), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(1301), - [anon_sym_false] = ACTIONS(1301), - [anon_sym_LBRACE] = ACTIONS(1304), - [anon_sym_SEMI] = ACTIONS(1076), - [anon_sym_exception] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_open] = ACTIONS(1076), - [anon_sym_include] = ACTIONS(1076), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(1307), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1310), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1313), - [anon_sym_LBRACE_LT] = ACTIONS(1316), - [anon_sym_begin] = ACTIONS(1319), - [sym_ocamlyacc_value] = ACTIONS(1322), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1328), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(1331), - [anon_sym_SQUOTE] = ACTIONS(1334), - [anon_sym_DQUOTE] = ACTIONS(1337), - [sym_prefix_operator] = ACTIONS(1340), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym_let_operator] = ACTIONS(1068), - [sym__capitalized_identifier] = ACTIONS(1343), - [aux_sym_directive_token1] = ACTIONS(1068), - [aux_sym_tag_token1] = ACTIONS(1346), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [221] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(221), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1035), - [sym__mult_operator] = STATE(1034), - [sym__add_operator] = STATE(1033), - [sym__and_operator] = STATE(1031), - [sym__or_operator] = STATE(1029), - [sym__assign_operator] = STATE(1028), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1283), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1349), - [anon_sym_constraint] = ACTIONS(997), - [anon_sym_val] = ACTIONS(997), - [anon_sym_end] = ACTIONS(997), - [anon_sym_object] = ACTIONS(365), - [anon_sym_inherit] = ACTIONS(997), - [anon_sym_method] = ACTIONS(997), - [anon_sym_initializer] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(395), - [anon_sym_LBRACE_PERCENT] = ACTIONS(397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(995), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(995), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1277), - [sym__rel_operator] = ACTIONS(1287), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [222] = { - [sym__simple_expression] = STATE(1432), - [sym_typed_expression] = STATE(1496), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym__argument] = STATE(1515), - [sym_labeled_argument] = STATE(1514), - [sym_prefix_expression] = STATE(1496), - [sym_hash_expression] = STATE(1496), - [sym_field_get_expression] = STATE(1496), - [sym_array_get_expression] = STATE(1496), - [sym_string_get_expression] = STATE(1496), - [sym_bigarray_get_expression] = STATE(1496), - [sym_coercion_expression] = STATE(1496), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(222), - [sym__extension] = STATE(1432), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym__label] = STATE(1513), - [sym_tag] = STATE(1496), - [aux_sym_class_application_repeat1] = STATE(220), - [sym__identifier] = ACTIONS(1013), - [anon_sym_SEMI_SEMI] = ACTIONS(1061), - [anon_sym_let] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_external] = ACTIONS(1063), - [anon_sym_type] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_RBRACK] = ACTIONS(1061), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_SEMI] = ACTIONS(1063), - [anon_sym_exception] = ACTIONS(1063), - [anon_sym_module] = ACTIONS(1063), - [anon_sym_open] = ACTIONS(1063), - [anon_sym_include] = ACTIONS(1063), - [anon_sym_class] = ACTIONS(1063), - [anon_sym_end] = ACTIONS(1063), - [anon_sym_object] = ACTIONS(131), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(155), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1061), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_let_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_directive_token1] = ACTIONS(1061), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [223] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(223), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(995), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(995), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(995), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1351), - [anon_sym_RBRACE] = ACTIONS(995), - [anon_sym_end] = ACTIONS(997), - [anon_sym_with] = ACTIONS(997), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_then] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [224] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2785), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(224), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__attribute] = STATE(590), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_and] = ACTIONS(39), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(39), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(35), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_and_operator] = ACTIONS(35), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [225] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2415), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(225), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__attribute] = STATE(759), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(39), - [anon_sym_for] = ACTIONS(783), - [anon_sym_to] = ACTIONS(39), - [anon_sym_downto] = ACTIONS(39), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [226] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(226), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_and_operator] = ACTIONS(973), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [227] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(227), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym_and_operator] = ACTIONS(981), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [228] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(228), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(985), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [229] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(229), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(991), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [230] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(230), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [231] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(231), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(959), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [232] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(232), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [233] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(233), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(969), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [234] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(234), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [235] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(235), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [236] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(236), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [237] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(237), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(977), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [238] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(238), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1371), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [239] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(239), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [240] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(240), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [241] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(241), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(901), - [sym__mult_operator] = STATE(906), - [sym__add_operator] = STATE(907), - [sym__and_operator] = STATE(908), - [sym__or_operator] = STATE(910), - [sym__assign_operator] = STATE(911), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1361), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1367), - [sym__rel_operator] = ACTIONS(1369), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [242] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(242), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [243] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(243), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(961), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(961), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(959), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(959), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [244] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8155), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(244), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(415), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1381), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [245] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7528), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(245), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(490), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1383), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [246] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7455), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(246), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(678), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1385), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [247] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(247), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [248] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(248), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(971), - [anon_sym_done] = ACTIONS(971), - [anon_sym_to] = ACTIONS(971), - [anon_sym_downto] = ACTIONS(971), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [249] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(249), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [250] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(250), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(975), - [anon_sym_done] = ACTIONS(975), - [anon_sym_to] = ACTIONS(975), - [anon_sym_downto] = ACTIONS(975), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [251] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(251), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1405), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(997), - [anon_sym_done] = ACTIONS(997), - [anon_sym_to] = ACTIONS(997), - [anon_sym_downto] = ACTIONS(997), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [252] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8548), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(252), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(702), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1407), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [253] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(253), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(993), - [anon_sym_done] = ACTIONS(993), - [anon_sym_to] = ACTIONS(993), - [anon_sym_downto] = ACTIONS(993), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [254] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(254), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(971), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(971), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(969), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [255] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(255), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [256] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(256), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [257] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(257), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(979), - [anon_sym_done] = ACTIONS(979), - [anon_sym_to] = ACTIONS(979), - [anon_sym_downto] = ACTIONS(979), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [258] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(258), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [259] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(259), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(987), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(987), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(985), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(985), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [260] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8620), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(260), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(587), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1409), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [261] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(261), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [262] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8465), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(262), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(565), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1411), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [263] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(263), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(993), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(993), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(991), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(991), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [264] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7418), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(264), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(429), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1413), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [265] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(265), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(987), - [anon_sym_done] = ACTIONS(987), - [anon_sym_to] = ACTIONS(987), - [anon_sym_downto] = ACTIONS(987), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [266] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7884), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(266), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(446), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1415), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [267] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8240), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(267), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(538), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1417), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [268] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8623), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(268), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(750), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1419), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [269] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(269), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(983), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(983), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym_and_operator] = ACTIONS(981), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [270] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1714), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(270), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(655), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_do] = ACTIONS(39), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [271] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8330), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(271), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(610), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1421), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [272] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(272), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1423), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [273] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3873), - [sym__sequence_expression] = STATE(8545), - [sym__sequence_expression_ext] = STATE(8149), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(8510), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(273), - [sym__extension] = STATE(783), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(715), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DASH_GT] = ACTIONS(35), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [274] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8333), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(274), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(733), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1425), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [275] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8623), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(275), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(750), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1427), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [276] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(276), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(975), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym_and_operator] = ACTIONS(973), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [277] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(277), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(979), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(979), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(977), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [278] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(278), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [279] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(279), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [280] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(280), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [281] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(281), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [282] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(282), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(961), - [anon_sym_done] = ACTIONS(961), - [anon_sym_to] = ACTIONS(961), - [anon_sym_downto] = ACTIONS(961), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [283] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(283), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [284] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(284), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [285] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(285), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [286] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(286), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(983), - [anon_sym_done] = ACTIONS(983), - [anon_sym_to] = ACTIONS(983), - [anon_sym_downto] = ACTIONS(983), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [287] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7801), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(287), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(651), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1429), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [288] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(288), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(933), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(933), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(931), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym_and_operator] = ACTIONS(931), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [289] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(289), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(933), - [anon_sym_done] = ACTIONS(933), - [anon_sym_to] = ACTIONS(933), - [anon_sym_downto] = ACTIONS(933), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [290] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7942), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(290), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(638), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_end] = ACTIONS(1431), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [291] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7634), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(291), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(458), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [292] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2630), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2630), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(292), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [293] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7471), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(293), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(755), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [294] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2646), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2646), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(294), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [295] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7587), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(295), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(474), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [296] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7532), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(296), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(586), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [297] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2630), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2630), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(297), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [298] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8161), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(298), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(407), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [299] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7588), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(299), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(475), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [300] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2616), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2616), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(300), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [301] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7533), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(301), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(411), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [302] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6920), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(302), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(439), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [303] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7472), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(303), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(732), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [304] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3683), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_refutation_case] = STATE(3683), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(304), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [305] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7346), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(305), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(414), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [306] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8163), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(306), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(457), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [307] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7205), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(307), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(728), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [308] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(4133), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_refutation_case] = STATE(4133), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(308), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [309] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2646), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2646), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(309), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [310] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(4150), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_refutation_case] = STATE(4150), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(310), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [311] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7177), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(311), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(448), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [312] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7723), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(312), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(647), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [313] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7722), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(313), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(643), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [314] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7411), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(314), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(426), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [315] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6921), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(315), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(746), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [316] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7212), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(316), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(734), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [317] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2613), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2613), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(317), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [318] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7410), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(318), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(434), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [319] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7351), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(319), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(465), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [320] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7140), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(320), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(685), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [321] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7018), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(321), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(736), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [322] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7175), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(322), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(551), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [323] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2616), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2616), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(323), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [324] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7210), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(324), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(729), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [325] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7074), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(325), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(469), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [326] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7072), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(326), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(477), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [327] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3683), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_refutation_case] = STATE(3683), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(327), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [328] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2613), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2613), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(328), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [329] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2646), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2646), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(329), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [330] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7807), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(330), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(720), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [331] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7806), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(331), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(714), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [332] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3695), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_refutation_case] = STATE(3695), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(332), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [333] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2613), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2613), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(333), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [334] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6918), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(334), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(579), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [335] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7308), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(335), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(488), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [336] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7165), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(336), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(497), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [337] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2616), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_refutation_case] = STATE(2616), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(337), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1443), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [338] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7696), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(338), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(517), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [339] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3695), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_refutation_case] = STATE(3695), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(339), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1445), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [340] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7635), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(340), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(505), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [341] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2630), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_refutation_case] = STATE(2630), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(341), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_DOT] = ACTIONS(1433), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [342] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7766), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(342), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(405), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [343] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7712), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(343), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(519), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [344] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7679), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(344), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(618), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [345] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7972), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(345), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(480), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [346] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7678), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(346), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(606), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [347] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7047), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(347), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(679), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [348] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(348), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__pow_operator] = STATE(970), - [sym__mult_operator] = STATE(965), - [sym__add_operator] = STATE(961), - [sym__and_operator] = STATE(960), - [sym__or_operator] = STATE(959), - [sym__assign_operator] = STATE(958), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1086), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(997), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1377), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1449), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1373), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(995), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1375), - [sym__rel_operator] = ACTIONS(1379), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym_and_operator] = ACTIONS(995), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [349] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7765), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(349), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(701), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [350] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(350), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__attribute] = STATE(481), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [anon_sym_PERCENT] = ACTIONS(989), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [351] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(351), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [352] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(352), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [353] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(353), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1465), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [354] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(354), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [355] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(355), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [356] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(356), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(981), - [anon_sym_else] = ACTIONS(983), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [357] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(357), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(985), - [anon_sym_else] = ACTIONS(987), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [358] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(358), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(991), - [anon_sym_else] = ACTIONS(993), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [359] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(359), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(973), - [anon_sym_else] = ACTIONS(975), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [360] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(360), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [361] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(361), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [362] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(362), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [363] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(363), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1471), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [364] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(364), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__pow_operator] = STATE(1067), - [sym__mult_operator] = STATE(1068), - [sym__add_operator] = STATE(1069), - [sym__and_operator] = STATE(1070), - [sym__or_operator] = STATE(1072), - [sym__assign_operator] = STATE(1075), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1090), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1401), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1473), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1395), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_done] = ACTIONS(997), - [anon_sym_to] = ACTIONS(997), - [anon_sym_downto] = ACTIONS(997), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1399), - [sym__rel_operator] = ACTIONS(1403), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [365] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(365), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [366] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(366), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [367] = { - [sym__module_typed] = STATE(7178), - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(367), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(1475), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1477), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [368] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(368), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1481), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [369] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7716), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(369), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(1483), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [370] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(8049), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(370), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(1485), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [371] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(371), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1487), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [372] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(372), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1489), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [373] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(373), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [374] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(374), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [375] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(375), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(931), - [anon_sym_else] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [376] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(376), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1491), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [377] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(377), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1493), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [378] = { - [sym__module_typed] = STATE(7332), - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(378), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_COLON_GT] = ACTIONS(1495), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1497), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(1479), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [379] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(379), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [380] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(380), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(977), - [anon_sym_else] = ACTIONS(979), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [381] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(381), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1499), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [382] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(382), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(969), - [anon_sym_else] = ACTIONS(971), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [383] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(383), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(961), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(959), - [anon_sym_else] = ACTIONS(961), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [384] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(384), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1501), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [385] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(385), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1503), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [386] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(386), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1505), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [387] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(387), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(979), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [388] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(388), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [389] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(389), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1507), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [390] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(390), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [391] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(391), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [392] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(392), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1509), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [393] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(393), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [394] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7614), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(394), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(1511), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [395] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(395), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [396] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(396), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_PIPE] = ACTIONS(933), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [397] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(397), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_PIPE] = ACTIONS(975), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [398] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(398), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(993), - [anon_sym_do] = ACTIONS(993), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [399] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(399), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(987), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [400] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(400), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1513), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(995), - [anon_sym_else] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [401] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(8277), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(401), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_done] = ACTIONS(1515), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [402] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(402), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_PIPE] = ACTIONS(983), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(983), - [anon_sym_do] = ACTIONS(983), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [403] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(403), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(1517), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [404] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(404), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__pow_operator] = STATE(1025), - [sym__mult_operator] = STATE(1049), - [sym__add_operator] = STATE(1059), - [sym__and_operator] = STATE(1060), - [sym__or_operator] = STATE(949), - [sym__assign_operator] = STATE(885), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1096), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1469), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1519), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1459), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1461), - [sym__rel_operator] = ACTIONS(1463), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [405] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7776), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(405), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [406] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7722), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(406), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [407] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7581), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(407), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [408] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7022), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(408), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [409] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7282), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(409), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [410] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7288), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(410), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [411] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7548), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(411), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [412] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(412), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [413] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7023), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(413), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [414] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6959), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(414), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [415] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7568), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(415), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [416] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(416), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6456), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1521), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [417] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(5973), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(417), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [418] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(418), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6462), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1527), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [419] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7032), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(419), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [420] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(420), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6746), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1529), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1531), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [421] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7034), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(421), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [422] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(422), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6734), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1533), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [423] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3649), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(423), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [424] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3637), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(424), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [425] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4425), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(425), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [426] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7423), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(426), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [427] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2662), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(427), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [428] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7639), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(428), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [429] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7371), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(429), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [430] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3746), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(430), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [431] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7638), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(431), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [432] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(432), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6539), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1537), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1539), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [433] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(433), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6545), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1541), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1543), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [434] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7422), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(434), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [435] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3731), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(435), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [436] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7701), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(436), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [437] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7410), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(437), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [438] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3715), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(438), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [439] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7124), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(439), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [440] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(440), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [441] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4620), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(441), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [442] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7637), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(442), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [443] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7704), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(443), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [444] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2555), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(444), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [445] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7705), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(445), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [446] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7789), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(446), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [447] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(5860), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(447), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [448] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7214), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(448), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [449] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2581), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(449), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [450] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2783), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(450), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [451] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2552), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(451), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [452] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4601), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(452), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [453] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2574), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(453), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [454] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(454), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6388), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1545), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1547), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [455] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(455), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6385), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1549), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1551), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [456] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(5840), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(456), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [457] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7586), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(457), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [458] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7644), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(458), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [459] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7558), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(459), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [460] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7562), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(460), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [461] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2501), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(461), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [462] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2546), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(462), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [463] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7565), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(463), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [464] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3724), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(464), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [465] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7337), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(465), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [466] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2668), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(466), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [467] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7587), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(467), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [468] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3649), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(468), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [469] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7285), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(469), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [470] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2783), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(470), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [471] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3637), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(471), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [472] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3700), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(472), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [473] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3746), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(473), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [474] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7599), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(474), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [475] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7600), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(475), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [476] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(476), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6820), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1555), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [477] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7281), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(477), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [478] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(478), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6692), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1557), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1559), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [479] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2546), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(479), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [480] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8284), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(480), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [481] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8264), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(481), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [482] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2635), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(482), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [483] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2621), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(483), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [484] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7634), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(484), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [485] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2592), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(485), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [486] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3731), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(486), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [487] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2546), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(487), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [488] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7216), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(488), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [489] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2664), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(489), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [490] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7842), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(490), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [491] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2663), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(491), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [492] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2661), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(492), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [493] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2642), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(493), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [494] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(494), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6901), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1561), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1563), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [495] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2643), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(495), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [496] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2641), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(496), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [497] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6974), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(497), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [498] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3732), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2617), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(498), - [sym__extension] = STATE(404), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [499] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(499), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [500] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8163), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(500), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [501] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8053), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(501), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [502] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3715), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(502), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [503] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7726), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(503), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [504] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3610), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(504), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [505] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7645), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(505), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [506] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5391), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(506), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [507] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7742), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(507), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [508] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7747), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(508), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [509] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(4569), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(509), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [510] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8054), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(510), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [511] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2574), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(511), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [512] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8057), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(512), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [513] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(513), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6667), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [514] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2552), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(514), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [515] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4569), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(515), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [516] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8109), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(516), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [517] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7615), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(517), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [518] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(5816), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(518), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [519] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7623), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(519), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [520] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8113), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(520), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [521] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8126), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(521), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [522] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8067), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(522), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [523] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8185), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(523), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [524] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6977), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(524), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [525] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8072), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(525), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [526] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8079), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(526), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [527] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8327), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(527), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [528] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8350), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(528), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [529] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7016), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(529), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [530] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8379), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(530), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [531] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8100), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(531), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [532] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5420), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(532), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [533] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(533), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6616), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [534] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8101), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(534), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [535] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8102), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(535), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [536] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2581), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(536), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [537] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(537), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6842), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1573), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [538] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8157), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(538), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [539] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7712), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(539), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [540] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5400), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(540), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [541] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(541), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6634), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1577), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1579), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [542] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2546), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(542), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [543] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8364), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(543), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [544] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8365), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(544), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [545] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8367), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(545), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [546] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(546), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6642), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1581), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1583), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [547] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5368), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(547), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [548] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(548), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6640), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1585), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1587), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [549] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8392), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(549), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [550] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8393), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(550), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [551] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7114), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(551), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [552] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8395), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(552), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [553] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5367), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(553), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [554] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(554), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6477), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1591), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [555] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2574), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(555), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [556] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2552), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(556), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [557] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3700), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(557), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [558] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2581), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(558), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [559] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2555), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(559), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [560] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5348), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(560), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [561] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2555), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(561), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [562] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5339), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(562), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [563] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(563), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(981), - [anon_sym_PLUS] = ACTIONS(983), - [anon_sym_DASH] = ACTIONS(983), - [anon_sym_COLON_EQ] = ACTIONS(981), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(981), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(983), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(981), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(983), - [anon_sym_do] = ACTIONS(983), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(983), - [anon_sym_DASH_DOT] = ACTIONS(983), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(981), - [anon_sym_lsl] = ACTIONS(983), - [anon_sym_lsr] = ACTIONS(983), - [anon_sym_asr] = ACTIONS(983), - [aux_sym__mult_operator_token1] = ACTIONS(983), - [anon_sym_mod] = ACTIONS(983), - [anon_sym_land] = ACTIONS(983), - [anon_sym_lor] = ACTIONS(983), - [anon_sym_lxor] = ACTIONS(983), - [aux_sym__add_operator_token1] = ACTIONS(983), - [sym__concat_operator] = ACTIONS(981), - [sym__rel_operator] = ACTIONS(983), - [anon_sym_AMP_AMP] = ACTIONS(983), - [anon_sym_or] = ACTIONS(983), - [anon_sym_PIPE_PIPE] = ACTIONS(983), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [564] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(564), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [565] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8414), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(565), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [566] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7678), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(566), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [567] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2574), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(567), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [568] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5343), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(568), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [569] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8567), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(569), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [570] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8569), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(570), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [571] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2922), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2783), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(571), - [sym__extension] = STATE(194), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [572] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5345), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(572), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [573] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8571), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(573), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [574] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(574), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [575] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8583), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(575), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [576] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2617), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(576), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [577] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(577), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [578] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2552), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(578), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [579] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7078), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(579), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [580] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2581), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(580), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [581] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5358), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(581), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [582] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2555), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(582), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [583] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8585), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(583), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [584] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8587), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(584), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [585] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2592), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(585), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [586] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7547), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(586), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [587] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(587), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [588] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(588), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6493), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1593), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [589] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(4425), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(589), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [590] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2783), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(590), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [591] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2662), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(591), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [592] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2641), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(592), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [593] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8437), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(593), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [594] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2632), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(594), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [595] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2633), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(595), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [596] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(596), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [597] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3541), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(5820), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(597), - [sym__extension] = STATE(348), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [598] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8538), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(598), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [599] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3675), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2592), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(599), - [sym__extension] = STATE(400), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [600] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8536), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(600), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [601] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8534), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(601), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [602] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(602), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6668), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1599), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [603] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8489), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(603), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [604] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8483), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(604), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [605] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2659), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(605), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [606] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7688), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(606), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [607] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6985), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(607), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [608] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8477), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(608), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [609] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5366), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(609), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [610] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8406), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(610), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [611] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5373), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(611), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [612] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5380), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(612), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [613] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5392), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(613), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [614] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(614), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [615] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3285), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3700), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(615), - [sym__extension] = STATE(238), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [616] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5396), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(616), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [617] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5406), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(617), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [618] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7689), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(618), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [619] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(619), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6825), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1601), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1603), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [620] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8225), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(620), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [621] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3649), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(621), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [622] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(622), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(985), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(987), - [anon_sym_do] = ACTIONS(987), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [623] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(623), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6913), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1613), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1615), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [624] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3715), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(624), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [625] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2632), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(625), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [626] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2633), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(626), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [627] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2635), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(627), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [628] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(4620), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(628), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [629] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(4511), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(629), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [630] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3731), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(630), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [631] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2643), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(631), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [632] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8201), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(632), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [633] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8351), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(633), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [634] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8190), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(634), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [635] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2617), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(635), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [636] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(636), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6603), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1617), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1619), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [637] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3746), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(637), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [638] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8052), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(638), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [639] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8087), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(639), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [640] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2642), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(640), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [641] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2661), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(641), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [642] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8086), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(642), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [643] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7732), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(643), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [644] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8060), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(644), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [645] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2663), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(645), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [646] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8309), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(646), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [647] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7733), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(647), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [648] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2664), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(648), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [649] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7532), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(649), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [650] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7347), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(650), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [651] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8026), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(651), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [652] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7029), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(652), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [653] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(653), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(991), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(991), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(991), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(993), - [anon_sym_do] = ACTIONS(993), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [654] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(654), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [655] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(655), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [656] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2660), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(656), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [657] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2621), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(657), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [658] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3873), - [sym__sequence_expression] = STATE(8545), - [sym__sequence_expression_ext] = STATE(7347), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(8510), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(658), - [sym__extension] = STATE(783), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [659] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5449), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(659), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [660] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(660), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(973), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(973), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(973), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(975), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(975), - [anon_sym_do] = ACTIONS(975), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(973), - [sym__rel_operator] = ACTIONS(975), - [anon_sym_AMP_AMP] = ACTIONS(975), - [anon_sym_or] = ACTIONS(975), - [anon_sym_PIPE_PIPE] = ACTIONS(975), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [661] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3507), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(3724), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(661), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [662] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5432), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(662), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [663] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2641), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(663), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [664] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(664), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [665] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7555), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(665), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [666] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(666), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1621), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(997), - [anon_sym_do] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [667] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7577), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(667), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [668] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2660), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(668), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [669] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7580), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(669), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [670] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5337), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(670), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [671] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7797), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(671), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [672] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7803), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(672), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [673] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(673), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [674] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(674), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6448), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1623), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1625), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [675] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7804), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(675), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [676] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(676), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [677] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5394), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(677), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [678] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7891), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(678), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [679] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7069), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(679), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [680] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2662), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(680), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [681] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(681), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6881), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1627), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1629), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [682] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2660), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(682), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [683] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(683), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(933), - [anon_sym_mod] = ACTIONS(933), - [anon_sym_land] = ACTIONS(933), - [anon_sym_lor] = ACTIONS(933), - [anon_sym_lxor] = ACTIONS(933), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [684] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(684), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(933), - [anon_sym_DASH] = ACTIONS(933), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(933), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(933), - [anon_sym_DASH_DOT] = ACTIONS(933), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(933), - [sym__concat_operator] = ACTIONS(931), - [sym__rel_operator] = ACTIONS(933), - [anon_sym_AMP_AMP] = ACTIONS(933), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [685] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6986), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(685), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [686] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(4601), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(686), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [687] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2668), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(687), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [688] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2783), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(688), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [689] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2381), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(4511), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(689), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [690] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(690), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(933), - [anon_sym_PIPE_PIPE] = ACTIONS(933), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [691] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3724), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(691), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [692] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8214), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(692), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [693] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8216), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(693), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [694] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8219), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(694), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [695] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(695), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(931), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(931), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [696] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8424), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(696), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [697] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7765), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(697), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [698] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8436), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(698), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [699] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8456), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(699), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [700] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3637), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(700), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [701] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7364), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(701), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [702] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8625), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(702), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [703] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7471), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(703), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [704] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8156), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(704), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [705] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(705), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6883), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1631), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1633), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [706] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(706), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(931), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(933), - [anon_sym_do] = ACTIONS(933), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [707] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2643), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(707), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [708] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7079), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(708), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [709] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7806), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(709), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [710] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8105), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(710), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [711] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8482), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(711), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [712] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8476), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(712), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [713] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8376), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(713), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [714] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7816), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(714), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [715] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3873), - [sym__sequence_expression] = STATE(8545), - [sym__sequence_expression_ext] = STATE(8422), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(8510), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(715), - [sym__extension] = STATE(783), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [716] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8432), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(716), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [717] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(717), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6419), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1635), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1637), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [718] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7097), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(718), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [719] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(719), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(977), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(979), - [anon_sym_do] = ACTIONS(979), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [720] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7817), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(720), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [721] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(721), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [aux_sym_list_expression_repeat1] = STATE(6827), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1639), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1641), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [722] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2632), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(722), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [723] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2659), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(723), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [724] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8431), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(724), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [725] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7084), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(725), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [726] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2633), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(726), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [727] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8428), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(727), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [728] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7046), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(728), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [729] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7102), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(729), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [730] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2209), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(730), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [731] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2635), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(731), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [732] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7488), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(732), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [733] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8385), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(733), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [734] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7174), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(734), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [735] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7270), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(735), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [736] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7121), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(736), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [737] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8075), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(737), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [738] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2642), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(738), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [739] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5365), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(739), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [740] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2661), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(740), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [741] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2188), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2659), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(741), - [sym__extension] = STATE(102), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [742] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8124), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(742), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [743] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(743), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(961), - [anon_sym_do] = ACTIONS(961), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [744] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3484), - [sym__sequence_expression] = STATE(3709), - [sym__sequence_expression_ext] = STATE(3610), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(3721), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(744), - [sym__extension] = STATE(251), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [745] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(745), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(969), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_else] = ACTIONS(971), - [anon_sym_do] = ACTIONS(971), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [746] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(6972), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(746), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [747] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8112), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(747), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [748] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8097), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(748), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [749] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8090), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(749), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [750] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8425), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(750), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [751] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3855), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7083), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(751), - [sym__extension] = STATE(782), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [752] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2663), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(752), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [753] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8252), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(753), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [754] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8235), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(754), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [755] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7487), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(755), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [756] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(7105), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(756), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [757] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8236), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(757), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [758] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2942), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2643), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(758), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [759] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3634), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2501), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(759), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [760] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8169), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(760), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [761] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2553), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(1741), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(761), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [762] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3800), - [sym__sequence_expression] = STATE(2799), - [sym__sequence_expression_ext] = STATE(2592), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(2798), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(762), - [sym__extension] = STATE(666), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [763] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8259), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(763), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [764] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2802), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2668), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(764), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [765] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8258), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(765), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [766] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7669), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(766), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [767] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7694), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(767), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [768] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(7699), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(768), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [769] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8167), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(769), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [770] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8166), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(770), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [771] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8165), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(771), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [772] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2440), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(2621), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(772), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [773] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8256), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(773), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [774] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3071), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(5405), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(774), - [sym__extension] = STATE(221), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [775] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8178), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(775), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [776] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2774), - [sym__sequence_expression] = STATE(2628), - [sym__sequence_expression_ext] = STATE(2664), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_sequence_expression] = STATE(2631), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(776), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [777] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8177), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(777), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [778] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2268), - [sym__sequence_expression] = STATE(2468), - [sym__sequence_expression_ext] = STATE(2501), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_sequence_expression] = STATE(2464), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(778), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [779] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3204), - [sym__sequence_expression] = STATE(1731), - [sym__sequence_expression_ext] = STATE(8174), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_sequence_expression] = STATE(1713), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(779), - [sym__extension] = STATE(223), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [780] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(780), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [781] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(781), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(1040), - [sym__mult_operator] = STATE(1039), - [sym__add_operator] = STATE(1038), - [sym__and_operator] = STATE(1037), - [sym__or_operator] = STATE(1036), - [sym__assign_operator] = STATE(1032), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1451), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1453), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1645), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1455), - [sym__rel_operator] = ACTIONS(1457), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [782] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(782), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(938), - [sym__mult_operator] = STATE(935), - [sym__add_operator] = STATE(925), - [sym__and_operator] = STATE(918), - [sym__or_operator] = STATE(884), - [sym__assign_operator] = STATE(882), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1605), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1647), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1607), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_do] = ACTIONS(997), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1609), - [sym__rel_operator] = ACTIONS(1611), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [783] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(783), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(997), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1649), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [784] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(784), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1651), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_GT_RBRACE] = ACTIONS(1651), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [785] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(785), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1645), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1645), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [786] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(786), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__pow_operator] = STATE(915), - [sym__mult_operator] = STATE(902), - [sym__add_operator] = STATE(903), - [sym__and_operator] = STATE(904), - [sym__or_operator] = STATE(905), - [sym__assign_operator] = STATE(932), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(143), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_COMMA] = ACTIONS(1279), - [anon_sym_PLUS] = ACTIONS(947), - [anon_sym_DASH] = ACTIONS(947), - [anon_sym_COLON_EQ] = ACTIONS(965), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_SEMI] = ACTIONS(1653), - [anon_sym_RBRACE] = ACTIONS(1653), - [anon_sym_object] = ACTIONS(365), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(1269), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(947), - [anon_sym_DASH_DOT] = ACTIONS(947), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(943), - [anon_sym_lsl] = ACTIONS(945), - [anon_sym_lsr] = ACTIONS(945), - [anon_sym_asr] = ACTIONS(945), - [aux_sym__mult_operator_token1] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_land] = ACTIONS(953), - [anon_sym_lor] = ACTIONS(953), - [anon_sym_lxor] = ACTIONS(953), - [aux_sym__add_operator_token1] = ACTIONS(947), - [sym__concat_operator] = ACTIONS(1271), - [sym__rel_operator] = ACTIONS(1273), - [anon_sym_AMP_AMP] = ACTIONS(949), - [anon_sym_or] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [787] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3798), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(787), - [sym__extension] = STATE(548), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1655), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [788] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3785), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(788), - [sym__extension] = STATE(420), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [789] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3808), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(789), - [sym__extension] = STATE(717), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1659), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [790] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(790), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1661), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [791] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(791), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1663), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [792] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3825), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(792), - [sym__extension] = STATE(721), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [793] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(793), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [794] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3811), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(794), - [sym__extension] = STATE(537), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1669), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [795] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(795), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1671), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [796] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(796), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1673), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [797] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(797), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1675), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [798] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(798), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1677), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [799] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3795), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(799), - [sym__extension] = STATE(533), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1679), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [800] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(800), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [801] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3771), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(801), - [sym__extension] = STATE(588), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1683), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [802] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(802), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1685), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [803] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3813), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(803), - [sym__extension] = STATE(554), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1687), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [804] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(804), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1689), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [805] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(805), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1691), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [806] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3775), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(806), - [sym__extension] = STATE(674), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [807] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(807), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1695), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [808] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(808), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1697), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [809] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(809), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1699), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [810] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(810), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1701), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [811] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(811), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1703), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [812] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3786), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(812), - [sym__extension] = STATE(705), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1705), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [813] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(813), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1707), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [814] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3817), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(814), - [sym__extension] = STATE(681), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [815] = { - [sym__abstract_type] = STATE(7566), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5781), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(815), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8307), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(591), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(591), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(591), - [sym_and_operator] = ACTIONS(591), - [sym_match_operator] = ACTIONS(591), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [816] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(816), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1753), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [817] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(817), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1755), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [818] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(818), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1757), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [819] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(819), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1087), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(1043), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_DOT] = ACTIONS(1357), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(1043), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1359), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1039), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1363), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym_and_operator] = ACTIONS(1039), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [820] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(820), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [821] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(821), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1761), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [822] = { - [sym__abstract_type] = STATE(8604), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5778), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(822), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8140), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1771), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1771), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1771), - [sym_and_operator] = ACTIONS(1771), - [sym_match_operator] = ACTIONS(1771), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [823] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(823), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1773), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [824] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3796), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(824), - [sym__extension] = STATE(636), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1775), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [825] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3818), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(825), - [sym__extension] = STATE(422), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1777), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [826] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(826), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1779), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [827] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(827), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1781), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [828] = { - [sym__abstract_type] = STATE(7736), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5723), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(828), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8547), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1791), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1791), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1791), - [sym_and_operator] = ACTIONS(1791), - [sym_match_operator] = ACTIONS(1791), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [829] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3819), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(829), - [sym__extension] = STATE(541), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1793), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [830] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(830), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1795), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [831] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(831), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1797), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [832] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(832), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1799), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [833] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(833), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1801), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [834] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(834), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1803), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [835] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3815), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(835), - [sym__extension] = STATE(455), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1805), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [836] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3794), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(836), - [sym__extension] = STATE(623), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1807), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [837] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(837), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1809), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [838] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(838), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1811), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [839] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3803), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(839), - [sym__extension] = STATE(602), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1813), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [840] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(840), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [841] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(841), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [842] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(842), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1819), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [843] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3772), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(843), - [sym__extension] = STATE(494), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [844] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(844), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1823), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [845] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(845), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1825), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [846] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(846), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1827), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [847] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3810), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(847), - [sym__extension] = STATE(478), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1829), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [848] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3821), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(848), - [sym__extension] = STATE(454), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1831), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [849] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(849), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [850] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3773), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(850), - [sym__extension] = STATE(619), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1835), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [851] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(851), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1837), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [852] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(852), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1839), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [853] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3802), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(853), - [sym__extension] = STATE(476), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1841), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [854] = { - [sym__abstract_type] = STATE(7566), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5697), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(854), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8023), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1849), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1849), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1849), - [sym_and_operator] = ACTIONS(1849), - [sym_match_operator] = ACTIONS(1849), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [855] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(855), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1851), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [856] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(856), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1853), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [857] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(857), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1855), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [858] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(858), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1857), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [859] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(859), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1859), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [860] = { - [sym__abstract_type] = STATE(7566), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5682), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(860), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(7886), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_type] = ACTIONS(1715), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1867), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1867), - [sym_and_operator] = ACTIONS(1867), - [sym_match_operator] = ACTIONS(1867), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [861] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3823), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(861), - [sym__extension] = STATE(433), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1869), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [862] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3789), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(862), - [sym__extension] = STATE(546), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1871), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [863] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3828), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(863), - [sym__extension] = STATE(432), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [864] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3799), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(864), - [sym__extension] = STATE(513), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1875), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [865] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(865), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1877), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [866] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(866), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1879), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [867] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(867), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1881), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [868] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(868), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1883), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [869] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(869), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1885), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [870] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(870), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1887), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [871] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3804), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(871), - [sym__extension] = STATE(418), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1889), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [872] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3769), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(872), - [sym__extension] = STATE(416), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1891), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [873] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(873), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1893), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [874] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(874), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_RBRACK] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [875] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(875), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1897), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [876] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(876), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_PIPE_RBRACK] = ACTIONS(1899), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [877] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2822), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(877), - [sym__extension] = STATE(217), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [878] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3478), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(878), - [sym__extension] = STATE(277), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [879] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2837), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(879), - [sym__extension] = STATE(198), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [880] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2931), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(880), - [sym__extension] = STATE(197), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [881] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2839), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(881), - [sym__extension] = STATE(195), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [882] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3824), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(882), - [sym__extension] = STATE(706), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [883] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2840), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(883), - [sym__extension] = STATE(187), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [884] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3783), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(884), - [sym__extension] = STATE(695), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [885] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3765), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(885), - [sym__extension] = STATE(388), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [886] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2394), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(886), - [sym__extension] = STATE(132), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [887] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2387), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(887), - [sym__extension] = STATE(138), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [888] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3341), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(888), - [sym__extension] = STATE(227), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [889] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3405), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(889), - [sym__extension] = STATE(228), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [890] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2474), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(890), - [sym__extension] = STATE(125), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [891] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3758), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(891), - [sym__extension] = STATE(387), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [892] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2773), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(892), - [sym__extension] = STATE(169), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [893] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2405), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(893), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [894] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2841), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(894), - [sym__extension] = STATE(193), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [895] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3404), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(895), - [sym__extension] = STATE(229), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [896] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2407), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(896), - [sym__extension] = STATE(131), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [897] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3402), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(897), - [sym__extension] = STATE(226), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [898] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3401), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(898), - [sym__extension] = STATE(235), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [899] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3400), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(899), - [sym__extension] = STATE(236), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [900] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2230), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(900), - [sym__extension] = STATE(118), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [901] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3418), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(901), - [sym__extension] = STATE(234), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [902] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2836), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(902), - [sym__extension] = STATE(210), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [903] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2835), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(903), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [904] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2831), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(904), - [sym__extension] = STATE(189), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [905] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2830), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(905), - [sym__extension] = STATE(190), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [906] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3456), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(906), - [sym__extension] = STATE(230), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [907] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3463), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(907), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [908] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3398), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(908), - [sym__extension] = STATE(232), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [909] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2409), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(909), - [sym__extension] = STATE(136), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [910] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3394), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(910), - [sym__extension] = STATE(241), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [911] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3393), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(911), - [sym__extension] = STATE(240), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [912] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3640), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(912), - [sym__extension] = STATE(367), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [913] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3392), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(913), - [sym__extension] = STATE(237), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [914] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3477), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(914), - [sym__extension] = STATE(243), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [915] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2826), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(915), - [sym__extension] = STATE(205), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [916] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2778), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(916), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [917] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2411), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(917), - [sym__extension] = STATE(133), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [918] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3793), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(918), - [sym__extension] = STATE(690), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [919] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3391), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(919), - [sym__extension] = STATE(233), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [920] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2404), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(920), - [sym__extension] = STATE(126), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [921] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2417), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(921), - [sym__extension] = STATE(128), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [922] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2420), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(922), - [sym__extension] = STATE(129), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [923] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2422), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(923), - [sym__extension] = STATE(135), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [924] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2197), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(924), - [sym__extension] = STATE(89), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [925] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3768), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(925), - [sym__extension] = STATE(684), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [926] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2423), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(926), - [sym__extension] = STATE(123), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [927] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3475), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(927), - [sym__extension] = STATE(254), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [928] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2231), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(928), - [sym__extension] = STATE(117), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [929] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2173), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(929), - [sym__extension] = STATE(96), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [930] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2232), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(930), - [sym__extension] = STATE(116), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [931] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2207), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(931), - [sym__extension] = STATE(114), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [932] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2829), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(932), - [sym__extension] = STATE(191), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [933] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2220), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(933), - [sym__extension] = STATE(113), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [934] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2228), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(934), - [sym__extension] = STATE(112), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [935] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3788), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(935), - [sym__extension] = STATE(683), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [936] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3701), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(936), - [sym__extension] = STATE(374), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [937] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2211), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(937), - [sym__extension] = STATE(111), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [938] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3791), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(938), - [sym__extension] = STATE(676), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [939] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2212), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(939), - [sym__extension] = STATE(110), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [940] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2214), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(940), - [sym__extension] = STATE(109), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [941] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2828), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(941), - [sym__extension] = STATE(192), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [942] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3792), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(942), - [sym__extension] = STATE(673), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [943] = { - [sym_value_definition] = STATE(7570), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3390), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1783), - [sym_array_get_expression] = STATE(1783), - [sym_string_get_expression] = STATE(1783), - [sym_bigarray_get_expression] = STATE(1783), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(943), - [sym__extension] = STATE(231), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(888), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(761), - [anon_sym_let] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(775), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(779), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [944] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3676), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(944), - [sym__extension] = STATE(355), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [945] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2229), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(945), - [sym__extension] = STATE(108), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [946] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2223), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(946), - [sym__extension] = STATE(107), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [947] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2222), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(947), - [sym__extension] = STATE(106), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [948] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2221), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(948), - [sym__extension] = STATE(105), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [949] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3737), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(949), - [sym__extension] = STATE(352), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [950] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2380), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(950), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [951] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2793), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(951), - [sym__extension] = STATE(183), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [952] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2227), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(952), - [sym__extension] = STATE(104), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [953] = { - [sym_value_definition] = STATE(8543), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2217), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1333), - [sym_array_get_expression] = STATE(1333), - [sym_string_get_expression] = STATE(1333), - [sym_bigarray_get_expression] = STATE(1333), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(953), - [sym__extension] = STATE(103), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(953), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(109), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(111), - [anon_sym_function] = ACTIONS(113), - [anon_sym_try] = ACTIONS(115), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(117), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [954] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2825), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(954), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [955] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3906), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(955), - [sym__extension] = STATE(785), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [956] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3806), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(956), - [sym__extension] = STATE(664), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [957] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2832), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(957), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [958] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3483), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(958), - [sym__extension] = STATE(279), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [959] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3485), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(959), - [sym__extension] = STATE(280), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [960] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3486), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(960), - [sym__extension] = STATE(281), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [961] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3500), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(961), - [sym__extension] = STATE(283), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [962] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3596), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(962), - [sym__extension] = STATE(383), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [963] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2777), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(963), - [sym__extension] = STATE(156), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [964] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2781), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(964), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [965] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3508), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(965), - [sym__extension] = STATE(285), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [966] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2782), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(966), - [sym__extension] = STATE(155), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [967] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2804), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(967), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [968] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2805), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(968), - [sym__extension] = STATE(165), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [969] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2807), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(969), - [sym__extension] = STATE(151), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [970] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3509), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(970), - [sym__extension] = STATE(288), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [971] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3487), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(971), - [sym__extension] = STATE(242), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [972] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2770), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(972), - [sym__extension] = STATE(170), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [973] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3488), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(973), - [sym__extension] = STATE(278), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [974] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3490), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(974), - [sym__extension] = STATE(276), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [975] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2808), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(975), - [sym__extension] = STATE(159), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [976] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2780), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(976), - [sym__extension] = STATE(152), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [977] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2795), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(977), - [sym__extension] = STATE(157), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [978] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2191), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(978), - [sym__extension] = STATE(98), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [979] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3482), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(979), - [sym__extension] = STATE(282), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [980] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2776), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(980), - [sym__extension] = STATE(171), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [981] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2791), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(981), - [sym__extension] = STATE(167), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [982] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3704), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(982), - [sym__extension] = STATE(396), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [983] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2775), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(983), - [sym__extension] = STATE(172), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [984] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2811), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(984), - [sym__extension] = STATE(178), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [985] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2812), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(985), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [986] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2817), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(986), - [sym__extension] = STATE(182), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [987] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3492), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(987), - [sym__extension] = STATE(263), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [988] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2815), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(988), - [sym__extension] = STATE(185), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [989] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2771), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(989), - [sym__extension] = STATE(186), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [990] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(990), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1091), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_DOT] = ACTIONS(1391), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1393), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_done] = ACTIONS(1043), - [anon_sym_to] = ACTIONS(1043), - [anon_sym_downto] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1397), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [991] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3870), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(991), - [sym__extension] = STATE(780), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [992] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2195), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(992), - [sym__extension] = STATE(101), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [993] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3691), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(993), - [sym__extension] = STATE(378), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [994] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3470), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(994), - [sym__extension] = STATE(286), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [995] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2170), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(995), - [sym__extension] = STATE(91), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [996] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2168), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(996), - [sym__extension] = STATE(93), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [997] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2167), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(997), - [sym__extension] = STATE(97), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [998] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3816), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(998), - [sym__extension] = STATE(660), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [999] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3674), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(999), - [sym__extension] = STATE(402), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1000] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2881), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1000), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1001] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3497), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1001), - [sym__extension] = STATE(248), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1002] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2184), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1002), - [sym__extension] = STATE(87), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1003] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3697), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1003), - [sym__extension] = STATE(399), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1004] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2792), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1004), - [sym__extension] = STATE(184), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1005] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3779), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1005), - [sym__extension] = STATE(653), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1006] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3814), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1006), - [sym__extension] = STATE(622), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1007] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2176), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1007), - [sym__extension] = STATE(86), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1008] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3719), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1008), - [sym__extension] = STATE(382), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1009] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3493), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(1009), - [sym__extension] = STATE(259), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1010] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3607), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1010), - [sym__extension] = STATE(398), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1011] = { - [sym_value_definition] = STATE(8050), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2818), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1543), - [sym_array_get_expression] = STATE(1543), - [sym_string_get_expression] = STATE(1543), - [sym_bigarray_get_expression] = STATE(1543), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1011), - [sym__extension] = STATE(160), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(964), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(329), - [anon_sym_let] = ACTIONS(331), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(333), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(335), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(337), - [anon_sym_function] = ACTIONS(339), - [anon_sym_try] = ACTIONS(341), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(347), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1012] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2175), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1012), - [sym__extension] = STATE(94), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1013] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3679), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1013), - [sym__extension] = STATE(397), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1014] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2166), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1014), - [sym__extension] = STATE(88), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1015] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2779), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1015), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1016] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2460), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(1016), - [sym__extension] = STATE(130), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1017] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2794), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1017), - [sym__extension] = STATE(154), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1018] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3774), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1018), - [sym__extension] = STATE(745), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1019] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3706), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1019), - [sym__extension] = STATE(395), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1020] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2838), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1020), - [sym__extension] = STATE(201), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1021] = { - [sym_value_definition] = STATE(7457), - [sym__simple_expression] = STATE(819), - [sym__expression] = STATE(3499), - [sym_typed_expression] = STATE(1869), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(1869), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(1869), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(2002), - [sym_array_get_expression] = STATE(2002), - [sym_string_get_expression] = STATE(2002), - [sym_bigarray_get_expression] = STATE(2002), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(1869), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(1021), - [sym__extension] = STATE(269), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym_sign_operator] = STATE(1021), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym_tag] = STATE(1869), - [sym__identifier] = ACTIONS(873), - [anon_sym_let] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_object] = ACTIONS(773), - [anon_sym_fun] = ACTIONS(877), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_if] = ACTIONS(879), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(785), - [anon_sym_function] = ACTIONS(787), - [anon_sym_try] = ACTIONS(789), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(815), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1022] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2165), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1022), - [sym__extension] = STATE(100), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1023] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3722), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1023), - [sym__extension] = STATE(380), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1024] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3787), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1024), - [sym__extension] = STATE(719), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1025] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3656), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1025), - [sym__extension] = STATE(379), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1026] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3784), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1026), - [sym__extension] = STATE(743), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1027] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2842), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1027), - [sym__extension] = STATE(202), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1028] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2844), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1028), - [sym__extension] = STATE(203), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1029] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2845), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1029), - [sym__extension] = STATE(204), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1030] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3489), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1030), - [sym__extension] = STATE(265), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1031] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2848), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1031), - [sym__extension] = STATE(206), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1032] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3727), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1032), - [sym__extension] = STATE(351), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1033] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2928), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1033), - [sym__extension] = STATE(209), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1034] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2850), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1034), - [sym__extension] = STATE(211), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1035] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2851), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1035), - [sym__extension] = STATE(212), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1036] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3736), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1036), - [sym__extension] = STATE(375), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1037] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3738), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1037), - [sym__extension] = STATE(373), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1038] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3744), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1038), - [sym__extension] = STATE(366), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1039] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3748), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1039), - [sym__extension] = STATE(365), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1040] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3751), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1040), - [sym__extension] = STATE(362), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1041] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2852), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1041), - [sym__extension] = STATE(188), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1042] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2853), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1042), - [sym__extension] = STATE(215), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1043] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3756), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1043), - [sym__extension] = STATE(361), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1044] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2854), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1044), - [sym__extension] = STATE(218), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1045] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2855), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1045), - [sym__extension] = STATE(216), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1046] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2857), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1046), - [sym__extension] = STATE(208), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1047] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3757), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1047), - [sym__extension] = STATE(360), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1048] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3759), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1048), - [sym__extension] = STATE(359), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1049] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3645), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1049), - [sym__extension] = STATE(393), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1050] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3908), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1050), - [sym__extension] = STATE(786), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1051] = { - [sym_value_definition] = STATE(7925), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(2879), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1556), - [sym_array_get_expression] = STATE(1556), - [sym_string_get_expression] = STATE(1556), - [sym_bigarray_get_expression] = STATE(1556), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1051), - [sym__extension] = STATE(207), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1051), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(367), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(371), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(377), - [anon_sym_function] = ACTIONS(379), - [anon_sym_try] = ACTIONS(381), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(407), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1052] = { - [sym_value_definition] = STATE(8531), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3797), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2192), - [sym_array_get_expression] = STATE(2192), - [sym_string_get_expression] = STATE(2192), - [sym_bigarray_get_expression] = STATE(2192), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1052), - [sym__extension] = STATE(563), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1052), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(913), - [anon_sym_let] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(917), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(919), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(921), - [anon_sym_function] = ACTIONS(923), - [anon_sym_try] = ACTIONS(925), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(927), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1053] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3761), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1053), - [sym__extension] = STATE(358), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1054] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3762), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1054), - [sym__extension] = STATE(357), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1055] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2180), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1055), - [sym__extension] = STATE(95), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1056] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3745), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1056), - [sym__extension] = STATE(356), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1057] = { - [sym_value_definition] = STATE(8088), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3834), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(2159), - [sym_array_get_expression] = STATE(2159), - [sym_string_get_expression] = STATE(2159), - [sym_bigarray_get_expression] = STATE(2159), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1057), - [sym__extension] = STATE(781), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1056), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(897), - [anon_sym_let] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(901), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(903), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(905), - [anon_sym_function] = ACTIONS(907), - [anon_sym_try] = ACTIONS(909), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(911), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1058] = { - [sym_value_definition] = STATE(8188), - [sym__simple_expression] = STATE(140), - [sym__expression] = STATE(3865), - [sym_typed_expression] = STATE(1177), - [sym_product_expression] = STATE(2601), - [sym_cons_expression] = STATE(2601), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym_application_expression] = STATE(2601), - [sym_prefix_expression] = STATE(1177), - [sym_sign_expression] = STATE(2601), - [sym_hash_expression] = STATE(1177), - [sym_infix_expression] = STATE(2601), - [sym_field_get_expression] = STATE(1557), - [sym_array_get_expression] = STATE(1557), - [sym_string_get_expression] = STATE(1557), - [sym_bigarray_get_expression] = STATE(1557), - [sym_set_expression] = STATE(2601), - [sym_if_expression] = STATE(2601), - [sym_while_expression] = STATE(2601), - [sym_for_expression] = STATE(2601), - [sym_match_expression] = STATE(2601), - [sym_function_expression] = STATE(2601), - [sym_fun_expression] = STATE(2601), - [sym_try_expression] = STATE(2601), - [sym_let_expression] = STATE(2601), - [sym_coercion_expression] = STATE(1177), - [sym_assert_expression] = STATE(2601), - [sym_lazy_expression] = STATE(2601), - [sym_let_module_expression] = STATE(2601), - [sym_let_open_expression] = STATE(2601), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_let_exception_expression] = STATE(2601), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1058), - [sym__extension] = STATE(784), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym_sign_operator] = STATE(1000), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym_tag] = STATE(1177), - [sym__identifier] = ACTIONS(417), - [anon_sym_let] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_fun] = ACTIONS(421), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_if] = ACTIONS(423), - [anon_sym_while] = ACTIONS(373), - [anon_sym_for] = ACTIONS(375), - [anon_sym_match] = ACTIONS(425), - [anon_sym_function] = ACTIONS(427), - [anon_sym_try] = ACTIONS(429), - [anon_sym_assert] = ACTIONS(383), - [anon_sym_lazy] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(435), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1059] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3643), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1059), - [sym__extension] = STATE(391), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1060] = { - [sym_value_definition] = STATE(8320), - [sym__simple_expression] = STATE(1085), - [sym__expression] = STATE(3728), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(2155), - [sym_array_get_expression] = STATE(2155), - [sym_string_get_expression] = STATE(2155), - [sym_bigarray_get_expression] = STATE(2155), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1060), - [sym__extension] = STATE(390), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(999), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(881), - [anon_sym_let] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(885), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(887), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(889), - [anon_sym_function] = ACTIONS(891), - [anon_sym_try] = ACTIONS(893), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(895), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1061] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2790), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1061), - [sym__extension] = STATE(174), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1062] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2789), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1062), - [sym__extension] = STATE(177), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1063] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3503), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1063), - [sym__extension] = STATE(253), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1064] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3505), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1064), - [sym__extension] = STATE(250), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1065] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3468), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1065), - [sym__extension] = STATE(249), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1066] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3504), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1066), - [sym__extension] = STATE(247), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1067] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3506), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1067), - [sym__extension] = STATE(289), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1068] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3496), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1068), - [sym__extension] = STATE(284), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1069] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3495), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1069), - [sym__extension] = STATE(255), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1070] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3481), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1070), - [sym__extension] = STATE(256), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1071] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2787), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1071), - [sym__extension] = STATE(180), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1072] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3471), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1072), - [sym__extension] = STATE(261), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1073] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2181), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1073), - [sym__extension] = STATE(90), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1074] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2786), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1074), - [sym__extension] = STATE(153), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1075] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3472), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1075), - [sym__extension] = STATE(258), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1076] = { - [sym_value_definition] = STATE(7497), - [sym__simple_expression] = STATE(149), - [sym__expression] = STATE(2432), - [sym_typed_expression] = STATE(1496), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1496), - [sym_array_expression] = STATE(1496), - [sym_record_expression] = STATE(1496), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1496), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1496), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1413), - [sym_array_get_expression] = STATE(1413), - [sym_string_get_expression] = STATE(1413), - [sym_bigarray_get_expression] = STATE(1413), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1496), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1496), - [sym_package_expression] = STATE(1496), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1496), - [sym_object_copy_expression] = STATE(1496), - [sym_method_invocation] = STATE(1496), - [sym_object_expression] = STATE(1496), - [sym_parenthesized_expression] = STATE(1496), - [sym_attribute] = STATE(1076), - [sym__extension] = STATE(137), - [sym_extension] = STATE(1473), - [sym_quoted_extension] = STATE(1473), - [sym__constant] = STATE(1496), - [sym_number] = STATE(1454), - [sym_character] = STATE(1454), - [sym_string] = STATE(1454), - [sym_quoted_string] = STATE(1454), - [sym_boolean] = STATE(1454), - [sym_unit] = STATE(1454), - [sym_sign_operator] = STATE(890), - [sym__value_name] = STATE(1446), - [sym_parenthesized_operator] = STATE(1478), - [sym_value_path] = STATE(1496), - [sym_module_path] = STATE(8317), - [sym_constructor_path] = STATE(1496), - [sym_tag] = STATE(1496), - [sym__identifier] = ACTIONS(119), - [anon_sym_let] = ACTIONS(121), - [anon_sym_LPAREN] = ACTIONS(123), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(125), - [anon_sym_true] = ACTIONS(127), - [anon_sym_false] = ACTIONS(127), - [anon_sym_LBRACE] = ACTIONS(129), - [anon_sym_object] = ACTIONS(131), - [anon_sym_fun] = ACTIONS(133), - [anon_sym_LBRACK_PIPE] = ACTIONS(135), - [anon_sym_if] = ACTIONS(137), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(139), - [anon_sym_function] = ACTIONS(141), - [anon_sym_try] = ACTIONS(143), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(145), - [anon_sym_LBRACE_LT] = ACTIONS(147), - [anon_sym_begin] = ACTIONS(149), - [sym_ocamlyacc_value] = ACTIONS(151), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1439), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1441), - [aux_sym_number_token1] = ACTIONS(157), - [anon_sym_SQUOTE] = ACTIONS(159), - [anon_sym_DQUOTE] = ACTIONS(161), - [sym_prefix_operator] = ACTIONS(163), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(165), - [sym__capitalized_identifier] = ACTIONS(167), - [aux_sym_tag_token1] = ACTIONS(169), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1077] = { - [sym_value_definition] = STATE(8612), - [sym__simple_expression] = STATE(141), - [sym__expression] = STATE(2185), - [sym_typed_expression] = STATE(1395), - [sym_product_expression] = STATE(2640), - [sym_cons_expression] = STATE(2640), - [sym_list_expression] = STATE(1395), - [sym_array_expression] = STATE(1395), - [sym_record_expression] = STATE(1395), - [sym_application_expression] = STATE(2640), - [sym_prefix_expression] = STATE(1395), - [sym_sign_expression] = STATE(2640), - [sym_hash_expression] = STATE(1395), - [sym_infix_expression] = STATE(2640), - [sym_field_get_expression] = STATE(1172), - [sym_array_get_expression] = STATE(1172), - [sym_string_get_expression] = STATE(1172), - [sym_bigarray_get_expression] = STATE(1172), - [sym_set_expression] = STATE(2640), - [sym_if_expression] = STATE(2640), - [sym_while_expression] = STATE(2640), - [sym_for_expression] = STATE(2640), - [sym_match_expression] = STATE(2640), - [sym_function_expression] = STATE(2640), - [sym_fun_expression] = STATE(2640), - [sym_try_expression] = STATE(2640), - [sym_let_expression] = STATE(2640), - [sym_coercion_expression] = STATE(1395), - [sym_assert_expression] = STATE(2640), - [sym_lazy_expression] = STATE(2640), - [sym_let_module_expression] = STATE(2640), - [sym_let_open_expression] = STATE(2640), - [sym_local_open_expression] = STATE(1395), - [sym_package_expression] = STATE(1395), - [sym_let_exception_expression] = STATE(2640), - [sym_new_expression] = STATE(1395), - [sym_object_copy_expression] = STATE(1395), - [sym_method_invocation] = STATE(1395), - [sym_object_expression] = STATE(1395), - [sym_parenthesized_expression] = STATE(1395), - [sym_attribute] = STATE(1077), - [sym__extension] = STATE(92), - [sym_extension] = STATE(1392), - [sym_quoted_extension] = STATE(1392), - [sym__constant] = STATE(1395), - [sym_number] = STATE(1360), - [sym_character] = STATE(1360), - [sym_string] = STATE(1360), - [sym_quoted_string] = STATE(1360), - [sym_boolean] = STATE(1360), - [sym_unit] = STATE(1360), - [sym_sign_operator] = STATE(929), - [sym__value_name] = STATE(1256), - [sym_parenthesized_operator] = STATE(1296), - [sym_value_path] = STATE(1395), - [sym_module_path] = STATE(7461), - [sym_constructor_path] = STATE(1395), - [sym_tag] = STATE(1395), - [sym__identifier] = ACTIONS(33), - [anon_sym_let] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(41), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(45), - [anon_sym_true] = ACTIONS(47), - [anon_sym_false] = ACTIONS(47), - [anon_sym_LBRACE] = ACTIONS(49), - [anon_sym_object] = ACTIONS(51), - [anon_sym_fun] = ACTIONS(53), - [anon_sym_LBRACK_PIPE] = ACTIONS(55), - [anon_sym_if] = ACTIONS(57), - [anon_sym_while] = ACTIONS(59), - [anon_sym_for] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_function] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_assert] = ACTIONS(69), - [anon_sym_lazy] = ACTIONS(71), - [anon_sym_new] = ACTIONS(73), - [anon_sym_LBRACE_LT] = ACTIONS(75), - [anon_sym_begin] = ACTIONS(77), - [sym_ocamlyacc_value] = ACTIONS(79), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1437), - [aux_sym_number_token1] = ACTIONS(87), - [anon_sym_SQUOTE] = ACTIONS(89), - [anon_sym_DQUOTE] = ACTIONS(91), - [sym_prefix_operator] = ACTIONS(93), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(97), - [sym__capitalized_identifier] = ACTIONS(99), - [aux_sym_tag_token1] = ACTIONS(101), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1078] = { - [sym_value_definition] = STATE(7915), - [sym__simple_expression] = STATE(142), - [sym__expression] = STATE(2788), - [sym_typed_expression] = STATE(1356), - [sym_product_expression] = STATE(2605), - [sym_cons_expression] = STATE(2605), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym_application_expression] = STATE(2605), - [sym_prefix_expression] = STATE(1356), - [sym_sign_expression] = STATE(2605), - [sym_hash_expression] = STATE(1356), - [sym_infix_expression] = STATE(2605), - [sym_field_get_expression] = STATE(1539), - [sym_array_get_expression] = STATE(1539), - [sym_string_get_expression] = STATE(1539), - [sym_bigarray_get_expression] = STATE(1539), - [sym_set_expression] = STATE(2605), - [sym_if_expression] = STATE(2605), - [sym_while_expression] = STATE(2605), - [sym_for_expression] = STATE(2605), - [sym_match_expression] = STATE(2605), - [sym_function_expression] = STATE(2605), - [sym_fun_expression] = STATE(2605), - [sym_try_expression] = STATE(2605), - [sym_let_expression] = STATE(2605), - [sym_coercion_expression] = STATE(1356), - [sym_assert_expression] = STATE(2605), - [sym_lazy_expression] = STATE(2605), - [sym_let_module_expression] = STATE(2605), - [sym_let_open_expression] = STATE(2605), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_let_exception_expression] = STATE(2605), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1078), - [sym__extension] = STATE(179), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym_sign_operator] = STATE(1074), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym_tag] = STATE(1356), - [sym__identifier] = ACTIONS(267), - [anon_sym_let] = ACTIONS(269), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_object] = ACTIONS(279), - [anon_sym_fun] = ACTIONS(281), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_if] = ACTIONS(285), - [anon_sym_while] = ACTIONS(287), - [anon_sym_for] = ACTIONS(289), - [anon_sym_match] = ACTIONS(291), - [anon_sym_function] = ACTIONS(293), - [anon_sym_try] = ACTIONS(295), - [anon_sym_assert] = ACTIONS(297), - [anon_sym_lazy] = ACTIONS(299), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(323), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1079] = { - [sym_value_definition] = STATE(7941), - [sym__simple_expression] = STATE(990), - [sym__expression] = STATE(3476), - [sym_typed_expression] = STATE(2132), - [sym_product_expression] = STATE(3726), - [sym_cons_expression] = STATE(3726), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym_application_expression] = STATE(3726), - [sym_prefix_expression] = STATE(2132), - [sym_sign_expression] = STATE(3726), - [sym_hash_expression] = STATE(2132), - [sym_infix_expression] = STATE(3726), - [sym_field_get_expression] = STATE(1899), - [sym_array_get_expression] = STATE(1899), - [sym_string_get_expression] = STATE(1899), - [sym_bigarray_get_expression] = STATE(1899), - [sym_set_expression] = STATE(3726), - [sym_if_expression] = STATE(3726), - [sym_while_expression] = STATE(3726), - [sym_for_expression] = STATE(3726), - [sym_match_expression] = STATE(3726), - [sym_function_expression] = STATE(3726), - [sym_fun_expression] = STATE(3726), - [sym_try_expression] = STATE(3726), - [sym_let_expression] = STATE(3726), - [sym_coercion_expression] = STATE(2132), - [sym_assert_expression] = STATE(3726), - [sym_lazy_expression] = STATE(3726), - [sym_let_module_expression] = STATE(3726), - [sym_let_open_expression] = STATE(3726), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_let_exception_expression] = STATE(3726), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1079), - [sym__extension] = STATE(257), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym_sign_operator] = STATE(994), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym_tag] = STATE(2132), - [sym__identifier] = ACTIONS(821), - [anon_sym_let] = ACTIONS(823), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_PLUS] = ACTIONS(43), - [anon_sym_DASH] = ACTIONS(43), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_object] = ACTIONS(833), - [anon_sym_fun] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_if] = ACTIONS(839), - [anon_sym_while] = ACTIONS(781), - [anon_sym_for] = ACTIONS(783), - [anon_sym_match] = ACTIONS(841), - [anon_sym_function] = ACTIONS(843), - [anon_sym_try] = ACTIONS(845), - [anon_sym_assert] = ACTIONS(791), - [anon_sym_lazy] = ACTIONS(793), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(195), - [anon_sym_DASH_DOT] = ACTIONS(195), - [sym_let_operator] = ACTIONS(95), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1080] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5697), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1080), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8023), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1849), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1849), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1849), - [sym_and_operator] = ACTIONS(1849), - [sym_match_operator] = ACTIONS(1849), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1081] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5781), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1081), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8307), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(591), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(591), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(591), - [sym_and_operator] = ACTIONS(591), - [sym_match_operator] = ACTIONS(591), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1082] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5615), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1082), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8547), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1783), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1785), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1787), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1789), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1791), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1791), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1791), - [sym_and_operator] = ACTIONS(1791), - [sym_match_operator] = ACTIONS(1791), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1083] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5643), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1083), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(7886), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1867), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1867), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1867), - [sym_and_operator] = ACTIONS(1867), - [sym_match_operator] = ACTIONS(1867), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1084] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5608), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1084), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8140), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1767), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1769), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1771), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1771), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1771), - [sym_and_operator] = ACTIONS(1771), - [sym_match_operator] = ACTIONS(1771), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1085] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1085), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1097), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1039), - [anon_sym_PLUS] = ACTIONS(1043), - [anon_sym_DASH] = ACTIONS(1043), - [anon_sym_COLON_EQ] = ACTIONS(1039), - [anon_sym_PIPE] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1039), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(1043), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(1039), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(1043), - [anon_sym_do] = ACTIONS(1043), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1043), - [anon_sym_DASH_DOT] = ACTIONS(1043), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(1039), - [anon_sym_lsl] = ACTIONS(1043), - [anon_sym_lsr] = ACTIONS(1043), - [anon_sym_asr] = ACTIONS(1043), - [aux_sym__mult_operator_token1] = ACTIONS(1043), - [anon_sym_mod] = ACTIONS(1043), - [anon_sym_land] = ACTIONS(1043), - [anon_sym_lor] = ACTIONS(1043), - [anon_sym_lxor] = ACTIONS(1043), - [aux_sym__add_operator_token1] = ACTIONS(1043), - [sym__concat_operator] = ACTIONS(1039), - [sym__rel_operator] = ACTIONS(1043), - [anon_sym_AMP_AMP] = ACTIONS(1043), - [anon_sym_or] = ACTIONS(1043), - [anon_sym_PIPE_PIPE] = ACTIONS(1043), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1086] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(1086), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1088), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_and_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1087] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(1087), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1088), - [sym__identifier] = ACTIONS(1353), - [anon_sym_and] = ACTIONS(1063), - [anon_sym_TILDE] = ACTIONS(1355), - [anon_sym_QMARK] = ACTIONS(1355), - [anon_sym_LPAREN] = ACTIONS(765), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(767), - [anon_sym_true] = ACTIONS(769), - [anon_sym_false] = ACTIONS(769), - [anon_sym_LBRACE] = ACTIONS(771), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(773), - [anon_sym_in] = ACTIONS(1063), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(777), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(795), - [anon_sym_LBRACE_LT] = ACTIONS(797), - [anon_sym_begin] = ACTIONS(799), - [sym_ocamlyacc_value] = ACTIONS(801), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(805), - [aux_sym_number_token1] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_DQUOTE] = ACTIONS(811), - [sym_prefix_operator] = ACTIONS(813), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym_and_operator] = ACTIONS(1061), - [sym__capitalized_identifier] = ACTIONS(817), - [aux_sym_tag_token1] = ACTIONS(819), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1088] = { - [sym__simple_expression] = STATE(1873), - [sym_typed_expression] = STATE(1869), - [sym_list_expression] = STATE(1869), - [sym_array_expression] = STATE(1869), - [sym_record_expression] = STATE(1869), - [sym__argument] = STATE(2196), - [sym_labeled_argument] = STATE(2200), - [sym_prefix_expression] = STATE(1869), - [sym_hash_expression] = STATE(1869), - [sym_field_get_expression] = STATE(1869), - [sym_array_get_expression] = STATE(1869), - [sym_string_get_expression] = STATE(1869), - [sym_bigarray_get_expression] = STATE(1869), - [sym_coercion_expression] = STATE(1869), - [sym_local_open_expression] = STATE(1869), - [sym_package_expression] = STATE(1869), - [sym_new_expression] = STATE(1869), - [sym_object_copy_expression] = STATE(1869), - [sym_method_invocation] = STATE(1869), - [sym_object_expression] = STATE(1869), - [sym_parenthesized_expression] = STATE(1869), - [sym_attribute] = STATE(1088), - [sym__extension] = STATE(1873), - [sym_extension] = STATE(1988), - [sym_quoted_extension] = STATE(1988), - [sym__constant] = STATE(1869), - [sym_number] = STATE(1984), - [sym_character] = STATE(1984), - [sym_string] = STATE(1984), - [sym_quoted_string] = STATE(1984), - [sym_boolean] = STATE(1984), - [sym_unit] = STATE(1984), - [sym__value_name] = STATE(2020), - [sym_parenthesized_operator] = STATE(1881), - [sym_value_path] = STATE(1869), - [sym_module_path] = STATE(7630), - [sym_constructor_path] = STATE(1869), - [sym__label] = STATE(2150), - [sym_tag] = STATE(1869), - [aux_sym_class_application_repeat1] = STATE(1088), - [sym__identifier] = ACTIONS(1901), - [anon_sym_and] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(1904), - [anon_sym_QMARK] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1907), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1913), - [anon_sym_false] = ACTIONS(1913), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1919), - [anon_sym_in] = ACTIONS(1076), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1922), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1925), - [anon_sym_LBRACE_LT] = ACTIONS(1928), - [anon_sym_begin] = ACTIONS(1931), - [sym_ocamlyacc_value] = ACTIONS(1934), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1937), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1940), - [aux_sym_number_token1] = ACTIONS(1943), - [anon_sym_SQUOTE] = ACTIONS(1946), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym_prefix_operator] = ACTIONS(1952), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym_and_operator] = ACTIONS(1068), - [sym__capitalized_identifier] = ACTIONS(1955), - [aux_sym_tag_token1] = ACTIONS(1958), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1089] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1089), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1089), - [sym__identifier] = ACTIONS(1961), - [anon_sym_TILDE] = ACTIONS(1964), - [anon_sym_QMARK] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1973), - [anon_sym_false] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1976), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1979), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_done] = ACTIONS(1076), - [anon_sym_to] = ACTIONS(1076), - [anon_sym_downto] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1985), - [anon_sym_LBRACE_LT] = ACTIONS(1988), - [anon_sym_begin] = ACTIONS(1991), - [sym_ocamlyacc_value] = ACTIONS(1994), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1997), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2000), - [aux_sym_number_token1] = ACTIONS(2003), - [anon_sym_SQUOTE] = ACTIONS(2006), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym_prefix_operator] = ACTIONS(2012), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym__capitalized_identifier] = ACTIONS(2015), - [aux_sym_tag_token1] = ACTIONS(2018), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1090] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1090), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1089), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_done] = ACTIONS(1063), - [anon_sym_to] = ACTIONS(1063), - [anon_sym_downto] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1091] = { - [sym__simple_expression] = STATE(2139), - [sym_typed_expression] = STATE(2132), - [sym_list_expression] = STATE(2132), - [sym_array_expression] = STATE(2132), - [sym_record_expression] = STATE(2132), - [sym__argument] = STATE(2216), - [sym_labeled_argument] = STATE(2215), - [sym_prefix_expression] = STATE(2132), - [sym_hash_expression] = STATE(2132), - [sym_field_get_expression] = STATE(2132), - [sym_array_get_expression] = STATE(2132), - [sym_string_get_expression] = STATE(2132), - [sym_bigarray_get_expression] = STATE(2132), - [sym_coercion_expression] = STATE(2132), - [sym_local_open_expression] = STATE(2132), - [sym_package_expression] = STATE(2132), - [sym_new_expression] = STATE(2132), - [sym_object_copy_expression] = STATE(2132), - [sym_method_invocation] = STATE(2132), - [sym_object_expression] = STATE(2132), - [sym_parenthesized_expression] = STATE(2132), - [sym_attribute] = STATE(1091), - [sym__extension] = STATE(2139), - [sym_extension] = STATE(2074), - [sym_quoted_extension] = STATE(2074), - [sym__constant] = STATE(2132), - [sym_number] = STATE(2141), - [sym_character] = STATE(2141), - [sym_string] = STATE(2141), - [sym_quoted_string] = STATE(2141), - [sym_boolean] = STATE(2141), - [sym_unit] = STATE(2141), - [sym__value_name] = STATE(2066), - [sym_parenthesized_operator] = STATE(2091), - [sym_value_path] = STATE(2132), - [sym_module_path] = STATE(7583), - [sym_constructor_path] = STATE(2132), - [sym__label] = STATE(2187), - [sym_tag] = STATE(2132), - [aux_sym_class_application_repeat1] = STATE(1089), - [sym__identifier] = ACTIONS(1387), - [anon_sym_TILDE] = ACTIONS(1389), - [anon_sym_QMARK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(825), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(827), - [anon_sym_true] = ACTIONS(829), - [anon_sym_false] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(833), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(837), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_done] = ACTIONS(1063), - [anon_sym_to] = ACTIONS(1063), - [anon_sym_downto] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(847), - [anon_sym_LBRACE_LT] = ACTIONS(849), - [anon_sym_begin] = ACTIONS(851), - [sym_ocamlyacc_value] = ACTIONS(853), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(857), - [aux_sym_number_token1] = ACTIONS(859), - [anon_sym_SQUOTE] = ACTIONS(861), - [anon_sym_DQUOTE] = ACTIONS(863), - [sym_prefix_operator] = ACTIONS(865), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(869), - [aux_sym_tag_token1] = ACTIONS(871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1092] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5769), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1092), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8307), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(4612), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1612), - [sym_tag] = STATE(1611), - [sym__identifier] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(697), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(1727), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(1731), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(2031), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(591), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(591), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(591), - [sym_and_operator] = ACTIONS(591), - [sym_match_operator] = ACTIONS(591), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1093] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5705), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1093), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(8023), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(4612), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1612), - [sym_tag] = STATE(1611), - [sym__identifier] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(1845), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(1847), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(461), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(2031), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(1849), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(1849), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(1849), - [sym_and_operator] = ACTIONS(1849), - [sym_match_operator] = ACTIONS(1849), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1094] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5748), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1094), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(7998), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(4612), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1612), - [sym_tag] = STATE(1611), - [sym__identifier] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2033), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(2035), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2037), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(2039), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(2031), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(2041), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(2041), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(2041), - [sym_and_operator] = ACTIONS(2041), - [sym_match_operator] = ACTIONS(2041), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1095] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5709), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1095), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym_infix_operator] = STATE(7379), - [sym__pow_operator] = STATE(8294), - [sym__mult_operator] = STATE(8294), - [sym__add_operator] = STATE(8294), - [sym__and_operator] = STATE(8294), - [sym__or_operator] = STATE(8294), - [sym__assign_operator] = STATE(8294), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(4612), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1612), - [sym_tag] = STATE(1611), - [sym__identifier] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_RPAREN] = ACTIONS(2043), - [anon_sym_PLUS] = ACTIONS(1717), - [anon_sym_DASH] = ACTIONS(1717), - [anon_sym_COLON_EQ] = ACTIONS(453), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_DOT] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_module] = ACTIONS(2047), - [anon_sym_AMP] = ACTIONS(459), - [anon_sym_POUND] = ACTIONS(1729), - [anon_sym_COLON_COLON] = ACTIONS(2049), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(2031), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym_prefix_operator] = ACTIONS(2051), - [anon_sym_PLUS_DOT] = ACTIONS(473), - [anon_sym_DASH_DOT] = ACTIONS(473), - [sym_hash_operator] = ACTIONS(2051), - [aux_sym__pow_operator_token1] = ACTIONS(467), - [anon_sym_lsl] = ACTIONS(469), - [anon_sym_lsr] = ACTIONS(469), - [anon_sym_asr] = ACTIONS(469), - [aux_sym__mult_operator_token1] = ACTIONS(471), - [anon_sym_mod] = ACTIONS(471), - [anon_sym_land] = ACTIONS(471), - [anon_sym_lor] = ACTIONS(471), - [anon_sym_lxor] = ACTIONS(471), - [aux_sym__add_operator_token1] = ACTIONS(473), - [sym__concat_operator] = ACTIONS(475), - [sym__rel_operator] = ACTIONS(477), - [anon_sym_AMP_AMP] = ACTIONS(459), - [anon_sym_or] = ACTIONS(479), - [anon_sym_PIPE_PIPE] = ACTIONS(479), - [sym_let_operator] = ACTIONS(2051), - [sym_and_operator] = ACTIONS(2051), - [sym_match_operator] = ACTIONS(2051), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1096] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1096), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1098), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1097] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1097), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1098), - [sym__identifier] = ACTIONS(1051), - [anon_sym_TILDE] = ACTIONS(1053), - [anon_sym_QMARK] = ACTIONS(1053), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_COMMA] = ACTIONS(1061), - [anon_sym_PLUS] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1063), - [anon_sym_COLON_EQ] = ACTIONS(1061), - [anon_sym_PIPE] = ACTIONS(1063), - [anon_sym_LBRACK] = ACTIONS(273), - [anon_sym_true] = ACTIONS(275), - [anon_sym_false] = ACTIONS(275), - [anon_sym_LBRACE] = ACTIONS(277), - [anon_sym_SEMI] = ACTIONS(1061), - [anon_sym_object] = ACTIONS(279), - [anon_sym_AMP] = ACTIONS(1063), - [anon_sym_COLON_COLON] = ACTIONS(1061), - [anon_sym_LBRACK_PIPE] = ACTIONS(283), - [anon_sym_else] = ACTIONS(1063), - [anon_sym_do] = ACTIONS(1063), - [anon_sym_new] = ACTIONS(301), - [anon_sym_LBRACE_LT] = ACTIONS(303), - [anon_sym_begin] = ACTIONS(305), - [sym_ocamlyacc_value] = ACTIONS(307), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(311), - [anon_sym_LBRACE_PERCENT] = ACTIONS(313), - [aux_sym_number_token1] = ACTIONS(315), - [anon_sym_SQUOTE] = ACTIONS(317), - [anon_sym_DQUOTE] = ACTIONS(319), - [sym_prefix_operator] = ACTIONS(321), - [anon_sym_PLUS_DOT] = ACTIONS(1063), - [anon_sym_DASH_DOT] = ACTIONS(1063), - [aux_sym__pow_operator_token1] = ACTIONS(1061), - [anon_sym_lsl] = ACTIONS(1063), - [anon_sym_lsr] = ACTIONS(1063), - [anon_sym_asr] = ACTIONS(1063), - [aux_sym__mult_operator_token1] = ACTIONS(1063), - [anon_sym_mod] = ACTIONS(1063), - [anon_sym_land] = ACTIONS(1063), - [anon_sym_lor] = ACTIONS(1063), - [anon_sym_lxor] = ACTIONS(1063), - [aux_sym__add_operator_token1] = ACTIONS(1063), - [sym__concat_operator] = ACTIONS(1061), - [sym__rel_operator] = ACTIONS(1063), - [anon_sym_AMP_AMP] = ACTIONS(1063), - [anon_sym_or] = ACTIONS(1063), - [anon_sym_PIPE_PIPE] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(325), - [aux_sym_tag_token1] = ACTIONS(327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1098] = { - [sym__simple_expression] = STATE(2202), - [sym_typed_expression] = STATE(1356), - [sym_list_expression] = STATE(1356), - [sym_array_expression] = STATE(1356), - [sym_record_expression] = STATE(1356), - [sym__argument] = STATE(1467), - [sym_labeled_argument] = STATE(1463), - [sym_prefix_expression] = STATE(1356), - [sym_hash_expression] = STATE(1356), - [sym_field_get_expression] = STATE(1356), - [sym_array_get_expression] = STATE(1356), - [sym_string_get_expression] = STATE(1356), - [sym_bigarray_get_expression] = STATE(1356), - [sym_coercion_expression] = STATE(1356), - [sym_local_open_expression] = STATE(1356), - [sym_package_expression] = STATE(1356), - [sym_new_expression] = STATE(1356), - [sym_object_copy_expression] = STATE(1356), - [sym_method_invocation] = STATE(1356), - [sym_object_expression] = STATE(1356), - [sym_parenthesized_expression] = STATE(1356), - [sym_attribute] = STATE(1098), - [sym__extension] = STATE(2202), - [sym_extension] = STATE(1344), - [sym_quoted_extension] = STATE(1344), - [sym__constant] = STATE(1356), - [sym_number] = STATE(1391), - [sym_character] = STATE(1391), - [sym_string] = STATE(1391), - [sym_quoted_string] = STATE(1391), - [sym_boolean] = STATE(1391), - [sym_unit] = STATE(1391), - [sym__value_name] = STATE(1393), - [sym_parenthesized_operator] = STATE(1295), - [sym_value_path] = STATE(1356), - [sym_module_path] = STATE(7674), - [sym_constructor_path] = STATE(1356), - [sym__label] = STATE(2344), - [sym_tag] = STATE(1356), - [aux_sym_class_application_repeat1] = STATE(1098), - [sym__identifier] = ACTIONS(1209), - [anon_sym_TILDE] = ACTIONS(1212), - [anon_sym_QMARK] = ACTIONS(1212), - [anon_sym_LPAREN] = ACTIONS(1215), - [anon_sym_COMMA] = ACTIONS(1068), - [anon_sym_PLUS] = ACTIONS(1076), - [anon_sym_DASH] = ACTIONS(1076), - [anon_sym_COLON_EQ] = ACTIONS(1068), - [anon_sym_PIPE] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(1218), - [anon_sym_true] = ACTIONS(1221), - [anon_sym_false] = ACTIONS(1221), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_SEMI] = ACTIONS(1068), - [anon_sym_object] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1076), - [anon_sym_COLON_COLON] = ACTIONS(1068), - [anon_sym_LBRACK_PIPE] = ACTIONS(1230), - [anon_sym_else] = ACTIONS(1076), - [anon_sym_do] = ACTIONS(1076), - [anon_sym_new] = ACTIONS(1233), - [anon_sym_LBRACE_LT] = ACTIONS(1236), - [anon_sym_begin] = ACTIONS(1239), - [sym_ocamlyacc_value] = ACTIONS(1242), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2053), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2056), - [aux_sym_number_token1] = ACTIONS(1251), - [anon_sym_SQUOTE] = ACTIONS(1254), - [anon_sym_DQUOTE] = ACTIONS(1257), - [sym_prefix_operator] = ACTIONS(1260), - [anon_sym_PLUS_DOT] = ACTIONS(1076), - [anon_sym_DASH_DOT] = ACTIONS(1076), - [aux_sym__pow_operator_token1] = ACTIONS(1068), - [anon_sym_lsl] = ACTIONS(1076), - [anon_sym_lsr] = ACTIONS(1076), - [anon_sym_asr] = ACTIONS(1076), - [aux_sym__mult_operator_token1] = ACTIONS(1076), - [anon_sym_mod] = ACTIONS(1076), - [anon_sym_land] = ACTIONS(1076), - [anon_sym_lor] = ACTIONS(1076), - [anon_sym_lxor] = ACTIONS(1076), - [aux_sym__add_operator_token1] = ACTIONS(1076), - [sym__concat_operator] = ACTIONS(1068), - [sym__rel_operator] = ACTIONS(1076), - [anon_sym_AMP_AMP] = ACTIONS(1076), - [anon_sym_or] = ACTIONS(1076), - [anon_sym_PIPE_PIPE] = ACTIONS(1076), - [sym__capitalized_identifier] = ACTIONS(1263), - [aux_sym_tag_token1] = ACTIONS(1266), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1099] = { - [sym__binding_pattern] = STATE(2562), - [sym__binding_pattern_ext] = STATE(2582), - [sym_alias_binding_pattern] = STATE(2556), - [sym_typed_binding_pattern] = STATE(2556), - [sym_or_binding_pattern] = STATE(2556), - [sym_constructor_binding_pattern] = STATE(2556), - [sym_tag_binding_pattern] = STATE(2556), - [sym_polymorphic_variant_pattern] = STATE(2556), - [sym_tuple_binding_pattern] = STATE(2556), - [sym_record_binding_pattern] = STATE(2522), - [sym_list_binding_pattern] = STATE(2554), - [sym_cons_binding_pattern] = STATE(2556), - [sym_array_binding_pattern] = STATE(2550), - [sym_range_pattern] = STATE(2556), - [sym_lazy_binding_pattern] = STATE(2556), - [sym_local_open_binding_pattern] = STATE(2556), - [sym_package_pattern] = STATE(2556), - [sym_parenthesized_binding_pattern] = STATE(2556), - [sym_attribute] = STATE(1099), - [sym__extension] = STATE(2562), - [sym_extension] = STATE(2566), - [sym_quoted_extension] = STATE(2566), - [sym__constant] = STATE(2508), - [sym__signed_constant] = STATE(2518), - [sym_number] = STATE(2519), - [sym_signed_number] = STATE(2508), - [sym_character] = STATE(2519), - [sym_string] = STATE(2519), - [sym_quoted_string] = STATE(2519), - [sym_boolean] = STATE(2519), - [sym_unit] = STATE(2519), - [sym__value_name] = STATE(2556), - [sym_parenthesized_operator] = STATE(2535), - [sym_module_path] = STATE(8194), - [sym_constructor_path] = STATE(1099), - [sym_tag] = STATE(1100), - [sym__identifier] = ACTIONS(2059), - [anon_sym_SEMI_SEMI] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_and] = ACTIONS(2063), - [anon_sym_COLON_GT] = ACTIONS(2061), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_external] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_COLON2] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_exception] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_open] = ACTIONS(2063), - [anon_sym_include] = ACTIONS(2063), - [anon_sym_class] = ACTIONS(2063), - [anon_sym_end] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(2077), - [anon_sym_lazy] = ACTIONS(2079), - [anon_sym_begin] = ACTIONS(2081), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2083), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2061), - [aux_sym_number_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym_let_operator] = ACTIONS(2061), - [sym_and_operator] = ACTIONS(2061), - [sym__capitalized_identifier] = ACTIONS(2093), - [aux_sym_directive_token1] = ACTIONS(2063), - [aux_sym_tag_token1] = ACTIONS(2095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1100] = { - [sym__binding_pattern] = STATE(2562), - [sym__binding_pattern_ext] = STATE(2549), - [sym_alias_binding_pattern] = STATE(2556), - [sym_typed_binding_pattern] = STATE(2556), - [sym_or_binding_pattern] = STATE(2556), - [sym_constructor_binding_pattern] = STATE(2556), - [sym_tag_binding_pattern] = STATE(2556), - [sym_polymorphic_variant_pattern] = STATE(2556), - [sym_tuple_binding_pattern] = STATE(2556), - [sym_record_binding_pattern] = STATE(2522), - [sym_list_binding_pattern] = STATE(2554), - [sym_cons_binding_pattern] = STATE(2556), - [sym_array_binding_pattern] = STATE(2550), - [sym_range_pattern] = STATE(2556), - [sym_lazy_binding_pattern] = STATE(2556), - [sym_local_open_binding_pattern] = STATE(2556), - [sym_package_pattern] = STATE(2556), - [sym_parenthesized_binding_pattern] = STATE(2556), - [sym_attribute] = STATE(1100), - [sym__extension] = STATE(2562), - [sym_extension] = STATE(2566), - [sym_quoted_extension] = STATE(2566), - [sym__constant] = STATE(2508), - [sym__signed_constant] = STATE(2518), - [sym_number] = STATE(2519), - [sym_signed_number] = STATE(2508), - [sym_character] = STATE(2519), - [sym_string] = STATE(2519), - [sym_quoted_string] = STATE(2519), - [sym_boolean] = STATE(2519), - [sym_unit] = STATE(2519), - [sym__value_name] = STATE(2556), - [sym_parenthesized_operator] = STATE(2535), - [sym_module_path] = STATE(8194), - [sym_constructor_path] = STATE(1099), - [sym_tag] = STATE(1100), - [sym__identifier] = ACTIONS(2059), - [anon_sym_SEMI_SEMI] = ACTIONS(2061), - [anon_sym_let] = ACTIONS(2063), - [anon_sym_and] = ACTIONS(2063), - [anon_sym_COLON_GT] = ACTIONS(2061), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_external] = ACTIONS(2063), - [anon_sym_type] = ACTIONS(2063), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_COLON2] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_exception] = ACTIONS(2063), - [anon_sym_module] = ACTIONS(2063), - [anon_sym_open] = ACTIONS(2063), - [anon_sym_include] = ACTIONS(2063), - [anon_sym_class] = ACTIONS(2063), - [anon_sym_end] = ACTIONS(2063), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(2077), - [anon_sym_lazy] = ACTIONS(2079), - [anon_sym_begin] = ACTIONS(2081), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2063), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2083), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2061), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2061), - [aux_sym_number_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym_let_operator] = ACTIONS(2061), - [sym_and_operator] = ACTIONS(2061), - [sym__capitalized_identifier] = ACTIONS(2093), - [aux_sym_directive_token1] = ACTIONS(2063), - [aux_sym_tag_token1] = ACTIONS(2095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1101] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(7230), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1101), - [sym_item_attribute] = STATE(4866), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(4458), - [aux_sym_let_binding_repeat1] = STATE(1799), - [sym__identifier] = ACTIONS(2097), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_and] = ACTIONS(2101), - [anon_sym_COLON_GT] = ACTIONS(2103), - [anon_sym_EQ] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_external] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_exception] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_open] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_end] = ACTIONS(2101), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_COLON_COLON] = ACTIONS(2129), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2135), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2099), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym_let_operator] = ACTIONS(2099), - [sym_and_operator] = ACTIONS(2099), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_directive_token1] = ACTIONS(2101), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1102] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(7059), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1102), - [sym_item_attribute] = STATE(4866), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(4458), - [aux_sym_let_binding_repeat1] = STATE(1796), - [sym__identifier] = ACTIONS(2097), - [anon_sym_SEMI_SEMI] = ACTIONS(2099), - [anon_sym_let] = ACTIONS(2101), - [anon_sym_and] = ACTIONS(2101), - [anon_sym_COLON_GT] = ACTIONS(2147), - [anon_sym_EQ] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_external] = ACTIONS(2101), - [anon_sym_type] = ACTIONS(2101), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(2115), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_RBRACK] = ACTIONS(2099), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_exception] = ACTIONS(2101), - [anon_sym_module] = ACTIONS(2101), - [anon_sym_open] = ACTIONS(2101), - [anon_sym_include] = ACTIONS(2101), - [anon_sym_class] = ACTIONS(2101), - [anon_sym_end] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(2125), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_COLON_COLON] = ACTIONS(2129), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2135), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2099), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym_let_operator] = ACTIONS(2099), - [sym_and_operator] = ACTIONS(2099), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_directive_token1] = ACTIONS(2101), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1103] = { - [sym__simple_expression] = STATE(2720), - [sym_typed_expression] = STATE(2760), - [sym_list_expression] = STATE(2760), - [sym_array_expression] = STATE(2760), - [sym_record_expression] = STATE(2760), - [sym__argument] = STATE(3016), - [sym_labeled_argument] = STATE(3014), - [sym_prefix_expression] = STATE(2760), - [sym_hash_expression] = STATE(2760), - [sym_field_get_expression] = STATE(2760), - [sym_array_get_expression] = STATE(2760), - [sym_string_get_expression] = STATE(2760), - [sym_bigarray_get_expression] = STATE(2760), - [sym_coercion_expression] = STATE(2760), - [sym_local_open_expression] = STATE(2760), - [sym_package_expression] = STATE(2760), - [sym_new_expression] = STATE(2760), - [sym_object_copy_expression] = STATE(2760), - [sym_method_invocation] = STATE(2760), - [sym_object_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_attribute] = STATE(1103), - [sym__extension] = STATE(2720), - [sym_extension] = STATE(2688), - [sym_quoted_extension] = STATE(2688), - [sym__constant] = STATE(2760), - [sym_number] = STATE(2736), - [sym_character] = STATE(2736), - [sym_string] = STATE(2736), - [sym_quoted_string] = STATE(2736), - [sym_boolean] = STATE(2736), - [sym_unit] = STATE(2736), - [sym__value_name] = STATE(2703), - [sym_parenthesized_operator] = STATE(2689), - [sym_value_path] = STATE(2760), - [sym_module_path] = STATE(7718), - [sym_constructor_path] = STATE(2760), - [sym__label] = STATE(2834), - [sym_tag] = STATE(2760), - [aux_sym_class_application_repeat1] = STATE(1104), - [sym__identifier] = ACTIONS(2151), - [anon_sym_SEMI_SEMI] = ACTIONS(2153), - [anon_sym_let] = ACTIONS(2155), - [anon_sym_and] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_external] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_exception] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_open] = ACTIONS(2155), - [anon_sym_include] = ACTIONS(2155), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_end] = ACTIONS(2155), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_LBRACK_PIPE] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2171), - [anon_sym_LBRACE_LT] = ACTIONS(2173), - [anon_sym_begin] = ACTIONS(2175), - [sym_ocamlyacc_value] = ACTIONS(2177), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2155), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2153), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2179), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2153), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2153), - [aux_sym_number_token1] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym_prefix_operator] = ACTIONS(2189), - [sym_let_operator] = ACTIONS(2153), - [sym__capitalized_identifier] = ACTIONS(2191), - [aux_sym_directive_token1] = ACTIONS(2153), - [aux_sym_tag_token1] = ACTIONS(2193), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1104] = { - [sym__simple_expression] = STATE(2720), - [sym_typed_expression] = STATE(2760), - [sym_list_expression] = STATE(2760), - [sym_array_expression] = STATE(2760), - [sym_record_expression] = STATE(2760), - [sym__argument] = STATE(3016), - [sym_labeled_argument] = STATE(3014), - [sym_prefix_expression] = STATE(2760), - [sym_hash_expression] = STATE(2760), - [sym_field_get_expression] = STATE(2760), - [sym_array_get_expression] = STATE(2760), - [sym_string_get_expression] = STATE(2760), - [sym_bigarray_get_expression] = STATE(2760), - [sym_coercion_expression] = STATE(2760), - [sym_local_open_expression] = STATE(2760), - [sym_package_expression] = STATE(2760), - [sym_new_expression] = STATE(2760), - [sym_object_copy_expression] = STATE(2760), - [sym_method_invocation] = STATE(2760), - [sym_object_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_attribute] = STATE(1104), - [sym__extension] = STATE(2720), - [sym_extension] = STATE(2688), - [sym_quoted_extension] = STATE(2688), - [sym__constant] = STATE(2760), - [sym_number] = STATE(2736), - [sym_character] = STATE(2736), - [sym_string] = STATE(2736), - [sym_quoted_string] = STATE(2736), - [sym_boolean] = STATE(2736), - [sym_unit] = STATE(2736), - [sym__value_name] = STATE(2703), - [sym_parenthesized_operator] = STATE(2689), - [sym_value_path] = STATE(2760), - [sym_module_path] = STATE(7718), - [sym_constructor_path] = STATE(2760), - [sym__label] = STATE(2834), - [sym_tag] = STATE(2760), - [aux_sym_class_application_repeat1] = STATE(1105), - [sym__identifier] = ACTIONS(2151), - [anon_sym_SEMI_SEMI] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2197), - [anon_sym_and] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2157), - [anon_sym_QMARK] = ACTIONS(2157), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_external] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2163), - [anon_sym_false] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_exception] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_open] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_end] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_LBRACK_PIPE] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2171), - [anon_sym_LBRACE_LT] = ACTIONS(2173), - [anon_sym_begin] = ACTIONS(2175), - [sym_ocamlyacc_value] = ACTIONS(2177), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2179), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2195), - [aux_sym_number_token1] = ACTIONS(2183), - [anon_sym_SQUOTE] = ACTIONS(2185), - [anon_sym_DQUOTE] = ACTIONS(2187), - [sym_prefix_operator] = ACTIONS(2189), - [sym_let_operator] = ACTIONS(2195), - [sym__capitalized_identifier] = ACTIONS(2191), - [aux_sym_directive_token1] = ACTIONS(2195), - [aux_sym_tag_token1] = ACTIONS(2193), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1105] = { - [sym__simple_expression] = STATE(2720), - [sym_typed_expression] = STATE(2760), - [sym_list_expression] = STATE(2760), - [sym_array_expression] = STATE(2760), - [sym_record_expression] = STATE(2760), - [sym__argument] = STATE(3016), - [sym_labeled_argument] = STATE(3014), - [sym_prefix_expression] = STATE(2760), - [sym_hash_expression] = STATE(2760), - [sym_field_get_expression] = STATE(2760), - [sym_array_get_expression] = STATE(2760), - [sym_string_get_expression] = STATE(2760), - [sym_bigarray_get_expression] = STATE(2760), - [sym_coercion_expression] = STATE(2760), - [sym_local_open_expression] = STATE(2760), - [sym_package_expression] = STATE(2760), - [sym_new_expression] = STATE(2760), - [sym_object_copy_expression] = STATE(2760), - [sym_method_invocation] = STATE(2760), - [sym_object_expression] = STATE(2760), - [sym_parenthesized_expression] = STATE(2760), - [sym_attribute] = STATE(1105), - [sym__extension] = STATE(2720), - [sym_extension] = STATE(2688), - [sym_quoted_extension] = STATE(2688), - [sym__constant] = STATE(2760), - [sym_number] = STATE(2736), - [sym_character] = STATE(2736), - [sym_string] = STATE(2736), - [sym_quoted_string] = STATE(2736), - [sym_boolean] = STATE(2736), - [sym_unit] = STATE(2736), - [sym__value_name] = STATE(2703), - [sym_parenthesized_operator] = STATE(2689), - [sym_value_path] = STATE(2760), - [sym_module_path] = STATE(7718), - [sym_constructor_path] = STATE(2760), - [sym__label] = STATE(2834), - [sym_tag] = STATE(2760), - [aux_sym_class_application_repeat1] = STATE(1105), - [sym__identifier] = ACTIONS(2199), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_let] = ACTIONS(1076), - [anon_sym_and] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_QMARK] = ACTIONS(2202), - [anon_sym_LPAREN] = ACTIONS(2205), - [anon_sym_external] = ACTIONS(1076), - [anon_sym_type] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(2211), - [anon_sym_false] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_exception] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_open] = ACTIONS(1076), - [anon_sym_include] = ACTIONS(1076), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(2217), - [anon_sym_LBRACK_PIPE] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2223), - [anon_sym_LBRACE_LT] = ACTIONS(2226), - [anon_sym_begin] = ACTIONS(2229), - [sym_ocamlyacc_value] = ACTIONS(2232), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2235), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2238), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(2241), - [anon_sym_SQUOTE] = ACTIONS(2244), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym_prefix_operator] = ACTIONS(2250), - [sym_let_operator] = ACTIONS(1068), - [sym__capitalized_identifier] = ACTIONS(2253), - [aux_sym_directive_token1] = ACTIONS(1068), - [aux_sym_tag_token1] = ACTIONS(2256), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1106] = { - [sym__simple_expression] = STATE(2827), - [sym_typed_expression] = STATE(2846), - [sym_list_expression] = STATE(2846), - [sym_array_expression] = STATE(2846), - [sym_record_expression] = STATE(2846), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2846), - [sym_hash_expression] = STATE(2846), - [sym_field_get_expression] = STATE(2846), - [sym_array_get_expression] = STATE(2846), - [sym_string_get_expression] = STATE(2846), - [sym_bigarray_get_expression] = STATE(2846), - [sym_coercion_expression] = STATE(2846), - [sym_local_open_expression] = STATE(2846), - [sym_package_expression] = STATE(2846), - [sym_new_expression] = STATE(2846), - [sym_object_copy_expression] = STATE(2846), - [sym_method_invocation] = STATE(2846), - [sym_object_expression] = STATE(2846), - [sym_parenthesized_expression] = STATE(2846), - [sym_attribute] = STATE(1106), - [sym__extension] = STATE(2827), - [sym_extension] = STATE(2919), - [sym_quoted_extension] = STATE(2919), - [sym__constant] = STATE(2846), - [sym_number] = STATE(2889), - [sym_character] = STATE(2889), - [sym_string] = STATE(2889), - [sym_quoted_string] = STATE(2889), - [sym_boolean] = STATE(2889), - [sym_unit] = STATE(2889), - [sym__value_name] = STATE(2916), - [sym_parenthesized_operator] = STATE(2939), - [sym_value_path] = STATE(2846), - [sym_module_path] = STATE(7802), - [sym_constructor_path] = STATE(2846), - [sym__label] = STATE(3153), - [sym_tag] = STATE(2846), - [aux_sym_class_application_repeat1] = STATE(1106), - [sym__identifier] = ACTIONS(2259), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_and] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_QMARK] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_external] = ACTIONS(1076), - [anon_sym_type] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(2268), - [anon_sym_RBRACK] = ACTIONS(1068), - [anon_sym_true] = ACTIONS(2271), - [anon_sym_false] = ACTIONS(2271), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_exception] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_open] = ACTIONS(1076), - [anon_sym_include] = ACTIONS(1076), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_val] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(2277), - [anon_sym_LBRACK_PIPE] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2283), - [anon_sym_LBRACE_LT] = ACTIONS(2286), - [anon_sym_begin] = ACTIONS(2289), - [sym_ocamlyacc_value] = ACTIONS(2292), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2295), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2298), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(2301), - [anon_sym_SQUOTE] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2307), - [sym_prefix_operator] = ACTIONS(2310), - [sym__capitalized_identifier] = ACTIONS(2313), - [aux_sym_tag_token1] = ACTIONS(2316), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1107] = { - [sym__simple_expression] = STATE(2827), - [sym_typed_expression] = STATE(2846), - [sym_list_expression] = STATE(2846), - [sym_array_expression] = STATE(2846), - [sym_record_expression] = STATE(2846), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2846), - [sym_hash_expression] = STATE(2846), - [sym_field_get_expression] = STATE(2846), - [sym_array_get_expression] = STATE(2846), - [sym_string_get_expression] = STATE(2846), - [sym_bigarray_get_expression] = STATE(2846), - [sym_coercion_expression] = STATE(2846), - [sym_local_open_expression] = STATE(2846), - [sym_package_expression] = STATE(2846), - [sym_new_expression] = STATE(2846), - [sym_object_copy_expression] = STATE(2846), - [sym_method_invocation] = STATE(2846), - [sym_object_expression] = STATE(2846), - [sym_parenthesized_expression] = STATE(2846), - [sym_attribute] = STATE(1107), - [sym__extension] = STATE(2827), - [sym_extension] = STATE(2919), - [sym_quoted_extension] = STATE(2919), - [sym__constant] = STATE(2846), - [sym_number] = STATE(2889), - [sym_character] = STATE(2889), - [sym_string] = STATE(2889), - [sym_quoted_string] = STATE(2889), - [sym_boolean] = STATE(2889), - [sym_unit] = STATE(2889), - [sym__value_name] = STATE(2916), - [sym_parenthesized_operator] = STATE(2939), - [sym_value_path] = STATE(2846), - [sym_module_path] = STATE(7802), - [sym_constructor_path] = STATE(2846), - [sym__label] = STATE(3153), - [sym_tag] = STATE(2846), - [aux_sym_class_application_repeat1] = STATE(1108), - [sym__identifier] = ACTIONS(2319), - [anon_sym_SEMI_SEMI] = ACTIONS(2153), - [anon_sym_and] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_external] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_RBRACK] = ACTIONS(2153), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_exception] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_open] = ACTIONS(2155), - [anon_sym_include] = ACTIONS(2155), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_val] = ACTIONS(2155), - [anon_sym_end] = ACTIONS(2155), - [anon_sym_object] = ACTIONS(2331), - [anon_sym_LBRACK_PIPE] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_LBRACE_LT] = ACTIONS(2337), - [anon_sym_begin] = ACTIONS(2339), - [sym_ocamlyacc_value] = ACTIONS(2341), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2155), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2153), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2153), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2153), - [aux_sym_number_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_prefix_operator] = ACTIONS(2353), - [sym__capitalized_identifier] = ACTIONS(2355), - [aux_sym_tag_token1] = ACTIONS(2357), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1108] = { - [sym__simple_expression] = STATE(2827), - [sym_typed_expression] = STATE(2846), - [sym_list_expression] = STATE(2846), - [sym_array_expression] = STATE(2846), - [sym_record_expression] = STATE(2846), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2846), - [sym_hash_expression] = STATE(2846), - [sym_field_get_expression] = STATE(2846), - [sym_array_get_expression] = STATE(2846), - [sym_string_get_expression] = STATE(2846), - [sym_bigarray_get_expression] = STATE(2846), - [sym_coercion_expression] = STATE(2846), - [sym_local_open_expression] = STATE(2846), - [sym_package_expression] = STATE(2846), - [sym_new_expression] = STATE(2846), - [sym_object_copy_expression] = STATE(2846), - [sym_method_invocation] = STATE(2846), - [sym_object_expression] = STATE(2846), - [sym_parenthesized_expression] = STATE(2846), - [sym_attribute] = STATE(1108), - [sym__extension] = STATE(2827), - [sym_extension] = STATE(2919), - [sym_quoted_extension] = STATE(2919), - [sym__constant] = STATE(2846), - [sym_number] = STATE(2889), - [sym_character] = STATE(2889), - [sym_string] = STATE(2889), - [sym_quoted_string] = STATE(2889), - [sym_boolean] = STATE(2889), - [sym_unit] = STATE(2889), - [sym__value_name] = STATE(2916), - [sym_parenthesized_operator] = STATE(2939), - [sym_value_path] = STATE(2846), - [sym_module_path] = STATE(7802), - [sym_constructor_path] = STATE(2846), - [sym__label] = STATE(3153), - [sym_tag] = STATE(2846), - [aux_sym_class_application_repeat1] = STATE(1106), - [sym__identifier] = ACTIONS(2319), - [anon_sym_SEMI_SEMI] = ACTIONS(2195), - [anon_sym_and] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2323), - [anon_sym_external] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2325), - [anon_sym_RBRACK] = ACTIONS(2195), - [anon_sym_true] = ACTIONS(2327), - [anon_sym_false] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_exception] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_open] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_val] = ACTIONS(2197), - [anon_sym_end] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2331), - [anon_sym_LBRACK_PIPE] = ACTIONS(2333), - [anon_sym_new] = ACTIONS(2335), - [anon_sym_LBRACE_LT] = ACTIONS(2337), - [anon_sym_begin] = ACTIONS(2339), - [sym_ocamlyacc_value] = ACTIONS(2341), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2343), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2195), - [aux_sym_number_token1] = ACTIONS(2347), - [anon_sym_SQUOTE] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym_prefix_operator] = ACTIONS(2353), - [sym__capitalized_identifier] = ACTIONS(2355), - [aux_sym_tag_token1] = ACTIONS(2357), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1109] = { - [sym__simple_expression] = STATE(3025), - [sym_typed_expression] = STATE(2982), - [sym_list_expression] = STATE(2982), - [sym_array_expression] = STATE(2982), - [sym_record_expression] = STATE(2982), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2982), - [sym_hash_expression] = STATE(2982), - [sym_field_get_expression] = STATE(2982), - [sym_array_get_expression] = STATE(2982), - [sym_string_get_expression] = STATE(2982), - [sym_bigarray_get_expression] = STATE(2982), - [sym_coercion_expression] = STATE(2982), - [sym_local_open_expression] = STATE(2982), - [sym_package_expression] = STATE(2982), - [sym_new_expression] = STATE(2982), - [sym_object_copy_expression] = STATE(2982), - [sym_method_invocation] = STATE(2982), - [sym_object_expression] = STATE(2982), - [sym_parenthesized_expression] = STATE(2982), - [sym_attribute] = STATE(1109), - [sym__extension] = STATE(3025), - [sym_extension] = STATE(3072), - [sym_quoted_extension] = STATE(3072), - [sym__constant] = STATE(2982), - [sym_number] = STATE(2981), - [sym_character] = STATE(2981), - [sym_string] = STATE(2981), - [sym_quoted_string] = STATE(2981), - [sym_boolean] = STATE(2981), - [sym_unit] = STATE(2981), - [sym__value_name] = STATE(2951), - [sym_parenthesized_operator] = STATE(3041), - [sym_value_path] = STATE(2982), - [sym_module_path] = STATE(7396), - [sym_constructor_path] = STATE(2982), - [sym__label] = STATE(3202), - [sym_tag] = STATE(2982), - [aux_sym_class_application_repeat1] = STATE(1110), - [ts_builtin_sym_end] = ACTIONS(2153), - [sym__identifier] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2153), - [anon_sym_and] = ACTIONS(2155), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_external] = ACTIONS(2155), - [anon_sym_type] = ACTIONS(2155), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_exception] = ACTIONS(2155), - [anon_sym_module] = ACTIONS(2155), - [anon_sym_open] = ACTIONS(2155), - [anon_sym_include] = ACTIONS(2155), - [anon_sym_class] = ACTIONS(2155), - [anon_sym_val] = ACTIONS(2155), - [anon_sym_object] = ACTIONS(2369), - [anon_sym_LBRACK_PIPE] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_LBRACE_LT] = ACTIONS(2375), - [anon_sym_begin] = ACTIONS(2377), - [sym_ocamlyacc_value] = ACTIONS(2379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2155), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2153), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2383), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2153), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2153), - [aux_sym_number_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_prefix_operator] = ACTIONS(2391), - [sym__capitalized_identifier] = ACTIONS(2393), - [aux_sym_tag_token1] = ACTIONS(2395), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1110] = { - [sym__simple_expression] = STATE(3025), - [sym_typed_expression] = STATE(2982), - [sym_list_expression] = STATE(2982), - [sym_array_expression] = STATE(2982), - [sym_record_expression] = STATE(2982), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2982), - [sym_hash_expression] = STATE(2982), - [sym_field_get_expression] = STATE(2982), - [sym_array_get_expression] = STATE(2982), - [sym_string_get_expression] = STATE(2982), - [sym_bigarray_get_expression] = STATE(2982), - [sym_coercion_expression] = STATE(2982), - [sym_local_open_expression] = STATE(2982), - [sym_package_expression] = STATE(2982), - [sym_new_expression] = STATE(2982), - [sym_object_copy_expression] = STATE(2982), - [sym_method_invocation] = STATE(2982), - [sym_object_expression] = STATE(2982), - [sym_parenthesized_expression] = STATE(2982), - [sym_attribute] = STATE(1110), - [sym__extension] = STATE(3025), - [sym_extension] = STATE(3072), - [sym_quoted_extension] = STATE(3072), - [sym__constant] = STATE(2982), - [sym_number] = STATE(2981), - [sym_character] = STATE(2981), - [sym_string] = STATE(2981), - [sym_quoted_string] = STATE(2981), - [sym_boolean] = STATE(2981), - [sym_unit] = STATE(2981), - [sym__value_name] = STATE(2951), - [sym_parenthesized_operator] = STATE(3041), - [sym_value_path] = STATE(2982), - [sym_module_path] = STATE(7396), - [sym_constructor_path] = STATE(2982), - [sym__label] = STATE(3202), - [sym_tag] = STATE(2982), - [aux_sym_class_application_repeat1] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(2195), - [sym__identifier] = ACTIONS(2359), - [anon_sym_SEMI_SEMI] = ACTIONS(2195), - [anon_sym_and] = ACTIONS(2197), - [anon_sym_TILDE] = ACTIONS(2321), - [anon_sym_QMARK] = ACTIONS(2321), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_external] = ACTIONS(2197), - [anon_sym_type] = ACTIONS(2197), - [anon_sym_LBRACK] = ACTIONS(2363), - [anon_sym_true] = ACTIONS(2365), - [anon_sym_false] = ACTIONS(2365), - [anon_sym_LBRACE] = ACTIONS(2367), - [anon_sym_exception] = ACTIONS(2197), - [anon_sym_module] = ACTIONS(2197), - [anon_sym_open] = ACTIONS(2197), - [anon_sym_include] = ACTIONS(2197), - [anon_sym_class] = ACTIONS(2197), - [anon_sym_val] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2369), - [anon_sym_LBRACK_PIPE] = ACTIONS(2371), - [anon_sym_new] = ACTIONS(2373), - [anon_sym_LBRACE_LT] = ACTIONS(2375), - [anon_sym_begin] = ACTIONS(2377), - [sym_ocamlyacc_value] = ACTIONS(2379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2383), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2195), - [aux_sym_number_token1] = ACTIONS(2385), - [anon_sym_SQUOTE] = ACTIONS(2387), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym_prefix_operator] = ACTIONS(2391), - [sym__capitalized_identifier] = ACTIONS(2393), - [aux_sym_tag_token1] = ACTIONS(2395), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1111] = { - [sym__simple_expression] = STATE(3025), - [sym_typed_expression] = STATE(2982), - [sym_list_expression] = STATE(2982), - [sym_array_expression] = STATE(2982), - [sym_record_expression] = STATE(2982), - [sym__argument] = STATE(3182), - [sym_labeled_argument] = STATE(3181), - [sym_prefix_expression] = STATE(2982), - [sym_hash_expression] = STATE(2982), - [sym_field_get_expression] = STATE(2982), - [sym_array_get_expression] = STATE(2982), - [sym_string_get_expression] = STATE(2982), - [sym_bigarray_get_expression] = STATE(2982), - [sym_coercion_expression] = STATE(2982), - [sym_local_open_expression] = STATE(2982), - [sym_package_expression] = STATE(2982), - [sym_new_expression] = STATE(2982), - [sym_object_copy_expression] = STATE(2982), - [sym_method_invocation] = STATE(2982), - [sym_object_expression] = STATE(2982), - [sym_parenthesized_expression] = STATE(2982), - [sym_attribute] = STATE(1111), - [sym__extension] = STATE(3025), - [sym_extension] = STATE(3072), - [sym_quoted_extension] = STATE(3072), - [sym__constant] = STATE(2982), - [sym_number] = STATE(2981), - [sym_character] = STATE(2981), - [sym_string] = STATE(2981), - [sym_quoted_string] = STATE(2981), - [sym_boolean] = STATE(2981), - [sym_unit] = STATE(2981), - [sym__value_name] = STATE(2951), - [sym_parenthesized_operator] = STATE(3041), - [sym_value_path] = STATE(2982), - [sym_module_path] = STATE(7396), - [sym_constructor_path] = STATE(2982), - [sym__label] = STATE(3202), - [sym_tag] = STATE(2982), - [aux_sym_class_application_repeat1] = STATE(1111), - [ts_builtin_sym_end] = ACTIONS(1068), - [sym__identifier] = ACTIONS(2397), - [anon_sym_SEMI_SEMI] = ACTIONS(1068), - [anon_sym_and] = ACTIONS(1076), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_QMARK] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_external] = ACTIONS(1076), - [anon_sym_type] = ACTIONS(1076), - [anon_sym_LBRACK] = ACTIONS(2403), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_exception] = ACTIONS(1076), - [anon_sym_module] = ACTIONS(1076), - [anon_sym_open] = ACTIONS(1076), - [anon_sym_include] = ACTIONS(1076), - [anon_sym_class] = ACTIONS(1076), - [anon_sym_val] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(2412), - [anon_sym_LBRACK_PIPE] = ACTIONS(2415), - [anon_sym_new] = ACTIONS(2418), - [anon_sym_LBRACE_LT] = ACTIONS(2421), - [anon_sym_begin] = ACTIONS(2424), - [sym_ocamlyacc_value] = ACTIONS(2427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2430), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2442), - [sym_prefix_operator] = ACTIONS(2445), - [sym__capitalized_identifier] = ACTIONS(2448), - [aux_sym_tag_token1] = ACTIONS(2451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1112] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4667), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1112), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4613), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2456), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_and] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2460), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_open] = ACTIONS(2458), - [anon_sym_include] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_end] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2456), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2456), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2456), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2456), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2458), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1113] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4692), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1113), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4509), - [aux_sym_let_binding_repeat1] = STATE(1121), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2500), - [anon_sym_and] = ACTIONS(2500), - [anon_sym_EQ] = ACTIONS(2502), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_open] = ACTIONS(2500), - [anon_sym_include] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_end] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2498), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2498), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2498), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2498), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2500), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1114] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4750), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1114), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4603), - [aux_sym_let_binding_repeat1] = STATE(1112), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2504), - [anon_sym_let] = ACTIONS(2506), - [anon_sym_and] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2508), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2504), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_open] = ACTIONS(2506), - [anon_sym_include] = ACTIONS(2506), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_end] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2504), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2504), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2504), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2504), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2506), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1115] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4681), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1115), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4491), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2510), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_and] = ACTIONS(2512), - [anon_sym_EQ] = ACTIONS(2514), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_open] = ACTIONS(2512), - [anon_sym_include] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_end] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2510), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2510), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2510), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2510), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2512), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1116] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4666), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1116), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4621), - [aux_sym_let_binding_repeat1] = STATE(1119), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2516), - [anon_sym_let] = ACTIONS(2518), - [anon_sym_and] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2520), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_include] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2516), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2516), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2516), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2516), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2518), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1117] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4677), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1117), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4597), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2522), - [anon_sym_let] = ACTIONS(2524), - [anon_sym_and] = ACTIONS(2524), - [anon_sym_EQ] = ACTIONS(2526), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_open] = ACTIONS(2524), - [anon_sym_include] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_end] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2522), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2522), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2522), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2522), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2524), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1118] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4678), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1118), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4558), - [aux_sym_let_binding_repeat1] = STATE(1117), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2530), - [anon_sym_and] = ACTIONS(2530), - [anon_sym_EQ] = ACTIONS(2532), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_open] = ACTIONS(2530), - [anon_sym_include] = ACTIONS(2530), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_end] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2528), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2528), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2528), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2528), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2530), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1119] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4664), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1119), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4568), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2534), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_and] = ACTIONS(2536), - [anon_sym_EQ] = ACTIONS(2538), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2536), - [anon_sym_module] = ACTIONS(2536), - [anon_sym_open] = ACTIONS(2536), - [anon_sym_include] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2536), - [anon_sym_end] = ACTIONS(2536), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2534), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2534), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2534), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2534), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2536), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1120] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4686), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1120), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4508), - [aux_sym_let_binding_repeat1] = STATE(1115), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2542), - [anon_sym_and] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2544), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2540), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_open] = ACTIONS(2542), - [anon_sym_include] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_end] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2540), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2540), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2540), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2540), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2542), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1121] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__class_typed] = STATE(4685), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1121), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_expression_item_repeat1] = STATE(4471), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2454), - [anon_sym_SEMI_SEMI] = ACTIONS(2546), - [anon_sym_let] = ACTIONS(2548), - [anon_sym_and] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2550), - [anon_sym_TILDE] = ACTIONS(2462), - [anon_sym_QMARK] = ACTIONS(2462), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_external] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2466), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_RBRACK] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_COLON2] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_exception] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2548), - [anon_sym_open] = ACTIONS(2548), - [anon_sym_include] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_end] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_LBRACK_PIPE] = ACTIONS(2478), - [anon_sym_begin] = ACTIONS(2480), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2546), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2484), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2486), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2546), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2546), - [aux_sym_number_token1] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_DQUOTE] = ACTIONS(2492), - [sym_let_operator] = ACTIONS(2546), - [sym__capitalized_identifier] = ACTIONS(2494), - [aux_sym_directive_token1] = ACTIONS(2548), - [aux_sym_tag_token1] = ACTIONS(2496), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1122] = { - [sym_attribute] = STATE(1122), - [sym__identifier] = ACTIONS(2552), - [anon_sym_COLON_GT] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_RPAREN] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_COLON_EQ] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_COLON2] = ACTIONS(2552), - [anon_sym_DOT] = ACTIONS(2554), - [anon_sym_DASH_GT] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_constraint] = ACTIONS(2552), - [anon_sym_val] = ACTIONS(2552), - [anon_sym_end] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - [anon_sym_object] = ACTIONS(2552), - [anon_sym_inherit] = ACTIONS(2552), - [anon_sym_method] = ACTIONS(2552), - [anon_sym_initializer] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_PIPE] = ACTIONS(2554), - [anon_sym_PIPE_RBRACK] = ACTIONS(2554), - [anon_sym_LT_DASH] = ACTIONS(2552), - [anon_sym_then] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_do] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_LBRACE_LT] = ACTIONS(2554), - [anon_sym_GT_RBRACE] = ACTIONS(2554), - [anon_sym_begin] = ACTIONS(2552), - [sym_ocamlyacc_value] = ACTIONS(2554), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2552), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2554), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2554), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2554), - [aux_sym_number_token1] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_prefix_operator] = ACTIONS(2554), - [anon_sym_PLUS_DOT] = ACTIONS(2552), - [anon_sym_DASH_DOT] = ACTIONS(2552), - [sym_hash_operator] = ACTIONS(2554), - [aux_sym__pow_operator_token1] = ACTIONS(2554), - [anon_sym_lsl] = ACTIONS(2552), - [anon_sym_lsr] = ACTIONS(2552), - [anon_sym_asr] = ACTIONS(2552), - [aux_sym__mult_operator_token1] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_land] = ACTIONS(2552), - [anon_sym_lor] = ACTIONS(2552), - [anon_sym_lxor] = ACTIONS(2552), - [aux_sym__add_operator_token1] = ACTIONS(2552), - [sym__concat_operator] = ACTIONS(2554), - [sym__rel_operator] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_or] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [sym__capitalized_identifier] = ACTIONS(2554), - [aux_sym_tag_token1] = ACTIONS(2554), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1123] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4918), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1123), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4613), - [aux_sym_let_binding_repeat1] = STATE(1262), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2456), - [anon_sym_and] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_open] = ACTIONS(2458), - [anon_sym_include] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_val] = ACTIONS(2458), - [anon_sym_end] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2456), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2456), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2456), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1124] = { - [sym_attribute] = STATE(1124), - [sym__identifier] = ACTIONS(2594), - [anon_sym_COLON_GT] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_COMMA] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_COLON_EQ] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2594), - [anon_sym_false] = ACTIONS(2594), - [anon_sym_COLON2] = ACTIONS(2594), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_DASH_GT] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_constraint] = ACTIONS(2594), - [anon_sym_val] = ACTIONS(2594), - [anon_sym_end] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_inherit] = ACTIONS(2594), - [anon_sym_method] = ACTIONS(2594), - [anon_sym_initializer] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_PIPE] = ACTIONS(2596), - [anon_sym_PIPE_RBRACK] = ACTIONS(2596), - [anon_sym_LT_DASH] = ACTIONS(2594), - [anon_sym_then] = ACTIONS(2594), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_LBRACE_LT] = ACTIONS(2596), - [anon_sym_GT_RBRACE] = ACTIONS(2596), - [anon_sym_begin] = ACTIONS(2594), - [sym_ocamlyacc_value] = ACTIONS(2596), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2594), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2596), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2596), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2596), - [aux_sym_number_token1] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_prefix_operator] = ACTIONS(2596), - [anon_sym_PLUS_DOT] = ACTIONS(2594), - [anon_sym_DASH_DOT] = ACTIONS(2594), - [sym_hash_operator] = ACTIONS(2596), - [aux_sym__pow_operator_token1] = ACTIONS(2596), - [anon_sym_lsl] = ACTIONS(2594), - [anon_sym_lsr] = ACTIONS(2594), - [anon_sym_asr] = ACTIONS(2594), - [aux_sym__mult_operator_token1] = ACTIONS(2594), - [anon_sym_mod] = ACTIONS(2594), - [anon_sym_land] = ACTIONS(2594), - [anon_sym_lor] = ACTIONS(2594), - [anon_sym_lxor] = ACTIONS(2594), - [aux_sym__add_operator_token1] = ACTIONS(2594), - [sym__concat_operator] = ACTIONS(2596), - [sym__rel_operator] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_or] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [sym__capitalized_identifier] = ACTIONS(2596), - [aux_sym_tag_token1] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1125] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4934), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1125), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4621), - [aux_sym_let_binding_repeat1] = STATE(1140), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2516), - [anon_sym_and] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2598), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_include] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_val] = ACTIONS(2518), - [anon_sym_end] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2516), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2516), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2516), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1126] = { - [sym_attribute] = STATE(1126), - [sym__identifier] = ACTIONS(2600), - [anon_sym_COLON_GT] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_COLON_EQ] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_COLON2] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_DASH_GT] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_constraint] = ACTIONS(2600), - [anon_sym_val] = ACTIONS(2600), - [anon_sym_end] = ACTIONS(2600), - [anon_sym_with] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [anon_sym_inherit] = ACTIONS(2600), - [anon_sym_method] = ACTIONS(2600), - [anon_sym_initializer] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_LBRACK_PIPE] = ACTIONS(2602), - [anon_sym_PIPE_RBRACK] = ACTIONS(2602), - [anon_sym_LT_DASH] = ACTIONS(2600), - [anon_sym_then] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_LBRACE_LT] = ACTIONS(2602), - [anon_sym_GT_RBRACE] = ACTIONS(2602), - [anon_sym_begin] = ACTIONS(2600), - [sym_ocamlyacc_value] = ACTIONS(2602), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2600), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2602), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2602), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2602), - [aux_sym_number_token1] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_DQUOTE] = ACTIONS(2602), - [sym_prefix_operator] = ACTIONS(2602), - [anon_sym_PLUS_DOT] = ACTIONS(2600), - [anon_sym_DASH_DOT] = ACTIONS(2600), - [sym_hash_operator] = ACTIONS(2602), - [aux_sym__pow_operator_token1] = ACTIONS(2602), - [anon_sym_lsl] = ACTIONS(2600), - [anon_sym_lsr] = ACTIONS(2600), - [anon_sym_asr] = ACTIONS(2600), - [aux_sym__mult_operator_token1] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_land] = ACTIONS(2600), - [anon_sym_lor] = ACTIONS(2600), - [anon_sym_lxor] = ACTIONS(2600), - [aux_sym__add_operator_token1] = ACTIONS(2600), - [sym__concat_operator] = ACTIONS(2602), - [sym__rel_operator] = ACTIONS(2600), - [anon_sym_AMP_AMP] = ACTIONS(2600), - [anon_sym_or] = ACTIONS(2600), - [anon_sym_PIPE_PIPE] = ACTIONS(2600), - [sym__capitalized_identifier] = ACTIONS(2602), - [aux_sym_tag_token1] = ACTIONS(2602), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1127] = { - [sym_attribute] = STATE(1127), - [sym__identifier] = ACTIONS(2604), - [anon_sym_COLON_GT] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_COLON_EQ] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_COLON2] = ACTIONS(2604), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_DASH_GT] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_constraint] = ACTIONS(2604), - [anon_sym_val] = ACTIONS(2604), - [anon_sym_end] = ACTIONS(2604), - [anon_sym_with] = ACTIONS(2604), - [anon_sym_object] = ACTIONS(2604), - [anon_sym_inherit] = ACTIONS(2604), - [anon_sym_method] = ACTIONS(2604), - [anon_sym_initializer] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_PIPE] = ACTIONS(2606), - [anon_sym_PIPE_RBRACK] = ACTIONS(2606), - [anon_sym_LT_DASH] = ACTIONS(2604), - [anon_sym_then] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_do] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_LBRACE_LT] = ACTIONS(2606), - [anon_sym_GT_RBRACE] = ACTIONS(2606), - [anon_sym_begin] = ACTIONS(2604), - [sym_ocamlyacc_value] = ACTIONS(2606), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2604), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2606), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2606), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2606), - [aux_sym_number_token1] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym_prefix_operator] = ACTIONS(2606), - [anon_sym_PLUS_DOT] = ACTIONS(2604), - [anon_sym_DASH_DOT] = ACTIONS(2604), - [sym_hash_operator] = ACTIONS(2606), - [aux_sym__pow_operator_token1] = ACTIONS(2606), - [anon_sym_lsl] = ACTIONS(2604), - [anon_sym_lsr] = ACTIONS(2604), - [anon_sym_asr] = ACTIONS(2604), - [aux_sym__mult_operator_token1] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_land] = ACTIONS(2604), - [anon_sym_lor] = ACTIONS(2604), - [anon_sym_lxor] = ACTIONS(2604), - [aux_sym__add_operator_token1] = ACTIONS(2604), - [sym__concat_operator] = ACTIONS(2606), - [sym__rel_operator] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_or] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [sym__capitalized_identifier] = ACTIONS(2606), - [aux_sym_tag_token1] = ACTIONS(2606), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1128] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4953), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1128), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4509), - [aux_sym_let_binding_repeat1] = STATE(1130), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2498), - [anon_sym_and] = ACTIONS(2500), - [anon_sym_EQ] = ACTIONS(2608), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2498), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_open] = ACTIONS(2500), - [anon_sym_include] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_val] = ACTIONS(2500), - [anon_sym_end] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2498), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2498), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2498), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1129] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4951), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1129), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4508), - [aux_sym_let_binding_repeat1] = STATE(1139), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2540), - [anon_sym_and] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2610), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2540), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_open] = ACTIONS(2542), - [anon_sym_include] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_val] = ACTIONS(2542), - [anon_sym_end] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2540), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2540), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2540), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1130] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4949), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1130), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4471), - [aux_sym_let_binding_repeat1] = STATE(1262), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2546), - [anon_sym_and] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2612), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2548), - [anon_sym_open] = ACTIONS(2548), - [anon_sym_include] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_val] = ACTIONS(2548), - [anon_sym_end] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2546), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2546), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2546), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1131] = { - [sym_attribute] = STATE(1131), - [sym__identifier] = ACTIONS(2614), - [anon_sym_COLON_GT] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_RPAREN] = ACTIONS(2616), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_COLON_EQ] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_RBRACK] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_COLON2] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_DASH_GT] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_constraint] = ACTIONS(2614), - [anon_sym_val] = ACTIONS(2614), - [anon_sym_end] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [anon_sym_inherit] = ACTIONS(2614), - [anon_sym_method] = ACTIONS(2614), - [anon_sym_initializer] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_PIPE] = ACTIONS(2616), - [anon_sym_PIPE_RBRACK] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2614), - [anon_sym_then] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_LBRACE_LT] = ACTIONS(2616), - [anon_sym_GT_RBRACE] = ACTIONS(2616), - [anon_sym_begin] = ACTIONS(2614), - [sym_ocamlyacc_value] = ACTIONS(2616), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2614), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2616), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2616), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2616), - [aux_sym_number_token1] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_prefix_operator] = ACTIONS(2616), - [anon_sym_PLUS_DOT] = ACTIONS(2614), - [anon_sym_DASH_DOT] = ACTIONS(2614), - [sym_hash_operator] = ACTIONS(2616), - [aux_sym__pow_operator_token1] = ACTIONS(2616), - [anon_sym_lsl] = ACTIONS(2614), - [anon_sym_lsr] = ACTIONS(2614), - [anon_sym_asr] = ACTIONS(2614), - [aux_sym__mult_operator_token1] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_land] = ACTIONS(2614), - [anon_sym_lor] = ACTIONS(2614), - [anon_sym_lxor] = ACTIONS(2614), - [aux_sym__add_operator_token1] = ACTIONS(2614), - [sym__concat_operator] = ACTIONS(2616), - [sym__rel_operator] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_or] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [sym__capitalized_identifier] = ACTIONS(2616), - [aux_sym_tag_token1] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1132] = { - [sym_attribute] = STATE(1132), - [sym__identifier] = ACTIONS(2618), - [anon_sym_COLON_GT] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_COLON_EQ] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_COLON2] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_constraint] = ACTIONS(2618), - [anon_sym_val] = ACTIONS(2618), - [anon_sym_end] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_inherit] = ACTIONS(2618), - [anon_sym_method] = ACTIONS(2618), - [anon_sym_initializer] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2620), - [anon_sym_PIPE_RBRACK] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2618), - [anon_sym_then] = ACTIONS(2618), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_do] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_LBRACE_LT] = ACTIONS(2620), - [anon_sym_GT_RBRACE] = ACTIONS(2620), - [anon_sym_begin] = ACTIONS(2618), - [sym_ocamlyacc_value] = ACTIONS(2620), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2618), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2620), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2620), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2620), - [aux_sym_number_token1] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [sym_prefix_operator] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2618), - [anon_sym_DASH_DOT] = ACTIONS(2618), - [sym_hash_operator] = ACTIONS(2620), - [aux_sym__pow_operator_token1] = ACTIONS(2620), - [anon_sym_lsl] = ACTIONS(2618), - [anon_sym_lsr] = ACTIONS(2618), - [anon_sym_asr] = ACTIONS(2618), - [aux_sym__mult_operator_token1] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_land] = ACTIONS(2618), - [anon_sym_lor] = ACTIONS(2618), - [anon_sym_lxor] = ACTIONS(2618), - [aux_sym__add_operator_token1] = ACTIONS(2618), - [sym__concat_operator] = ACTIONS(2620), - [sym__rel_operator] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_or] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [sym__capitalized_identifier] = ACTIONS(2620), - [aux_sym_tag_token1] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1133] = { - [sym_attribute] = STATE(1133), - [sym__identifier] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_RPAREN] = ACTIONS(2624), - [anon_sym_COMMA] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_COLON2] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_constraint] = ACTIONS(2622), - [anon_sym_val] = ACTIONS(2622), - [anon_sym_end] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_inherit] = ACTIONS(2622), - [anon_sym_method] = ACTIONS(2622), - [anon_sym_initializer] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_PIPE] = ACTIONS(2624), - [anon_sym_PIPE_RBRACK] = ACTIONS(2624), - [anon_sym_LT_DASH] = ACTIONS(2622), - [anon_sym_then] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_LBRACE_LT] = ACTIONS(2624), - [anon_sym_GT_RBRACE] = ACTIONS(2624), - [anon_sym_begin] = ACTIONS(2622), - [sym_ocamlyacc_value] = ACTIONS(2624), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2622), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2624), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2624), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2624), - [aux_sym_number_token1] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_prefix_operator] = ACTIONS(2624), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [sym_hash_operator] = ACTIONS(2624), - [aux_sym__pow_operator_token1] = ACTIONS(2624), - [anon_sym_lsl] = ACTIONS(2622), - [anon_sym_lsr] = ACTIONS(2622), - [anon_sym_asr] = ACTIONS(2622), - [aux_sym__mult_operator_token1] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_land] = ACTIONS(2622), - [anon_sym_lor] = ACTIONS(2622), - [anon_sym_lxor] = ACTIONS(2622), - [aux_sym__add_operator_token1] = ACTIONS(2622), - [sym__concat_operator] = ACTIONS(2624), - [sym__rel_operator] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [sym__capitalized_identifier] = ACTIONS(2624), - [aux_sym_tag_token1] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1134] = { - [sym_attribute] = STATE(1134), - [sym__identifier] = ACTIONS(2626), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_RPAREN] = ACTIONS(2628), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_COLON2] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_constraint] = ACTIONS(2626), - [anon_sym_val] = ACTIONS(2626), - [anon_sym_end] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_inherit] = ACTIONS(2626), - [anon_sym_method] = ACTIONS(2626), - [anon_sym_initializer] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_PIPE_RBRACK] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_then] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_LBRACE_LT] = ACTIONS(2628), - [anon_sym_GT_RBRACE] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [sym_ocamlyacc_value] = ACTIONS(2628), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2626), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2628), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2628), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2628), - [aux_sym_number_token1] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_prefix_operator] = ACTIONS(2628), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [sym_hash_operator] = ACTIONS(2628), - [aux_sym__pow_operator_token1] = ACTIONS(2628), - [anon_sym_lsl] = ACTIONS(2626), - [anon_sym_lsr] = ACTIONS(2626), - [anon_sym_asr] = ACTIONS(2626), - [aux_sym__mult_operator_token1] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_land] = ACTIONS(2626), - [anon_sym_lor] = ACTIONS(2626), - [anon_sym_lxor] = ACTIONS(2626), - [aux_sym__add_operator_token1] = ACTIONS(2626), - [sym__concat_operator] = ACTIONS(2628), - [sym__rel_operator] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [sym__capitalized_identifier] = ACTIONS(2628), - [aux_sym_tag_token1] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1135] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4894), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1135), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4597), - [aux_sym_let_binding_repeat1] = STATE(1262), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2522), - [anon_sym_and] = ACTIONS(2524), - [anon_sym_EQ] = ACTIONS(2630), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2522), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_open] = ACTIONS(2524), - [anon_sym_include] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_val] = ACTIONS(2524), - [anon_sym_end] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2522), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2522), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2522), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1136] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4900), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1136), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4603), - [aux_sym_let_binding_repeat1] = STATE(1123), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2504), - [anon_sym_and] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2632), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2504), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_open] = ACTIONS(2506), - [anon_sym_include] = ACTIONS(2506), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_val] = ACTIONS(2506), - [anon_sym_end] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2504), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2504), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2504), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1137] = { - [sym_attribute] = STATE(1137), - [sym__identifier] = ACTIONS(2634), - [anon_sym_COLON_GT] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_COLON_EQ] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_COLON2] = ACTIONS(2634), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_DASH_GT] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_constraint] = ACTIONS(2634), - [anon_sym_val] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_inherit] = ACTIONS(2634), - [anon_sym_method] = ACTIONS(2634), - [anon_sym_initializer] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_PIPE] = ACTIONS(2636), - [anon_sym_PIPE_RBRACK] = ACTIONS(2636), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_then] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_LBRACE_LT] = ACTIONS(2636), - [anon_sym_GT_RBRACE] = ACTIONS(2636), - [anon_sym_begin] = ACTIONS(2634), - [sym_ocamlyacc_value] = ACTIONS(2636), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2634), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2636), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2636), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2636), - [aux_sym_number_token1] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_prefix_operator] = ACTIONS(2636), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [sym_hash_operator] = ACTIONS(2636), - [aux_sym__pow_operator_token1] = ACTIONS(2636), - [anon_sym_lsl] = ACTIONS(2634), - [anon_sym_lsr] = ACTIONS(2634), - [anon_sym_asr] = ACTIONS(2634), - [aux_sym__mult_operator_token1] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_land] = ACTIONS(2634), - [anon_sym_lor] = ACTIONS(2634), - [anon_sym_lxor] = ACTIONS(2634), - [aux_sym__add_operator_token1] = ACTIONS(2634), - [sym__concat_operator] = ACTIONS(2636), - [sym__rel_operator] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [sym__capitalized_identifier] = ACTIONS(2636), - [aux_sym_tag_token1] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1138] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4882), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1138), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4558), - [aux_sym_let_binding_repeat1] = STATE(1135), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2528), - [anon_sym_and] = ACTIONS(2530), - [anon_sym_EQ] = ACTIONS(2638), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2528), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_open] = ACTIONS(2530), - [anon_sym_include] = ACTIONS(2530), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_val] = ACTIONS(2530), - [anon_sym_end] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2528), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2528), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2528), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1139] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4911), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1139), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4491), - [aux_sym_let_binding_repeat1] = STATE(1262), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2510), - [anon_sym_and] = ACTIONS(2512), - [anon_sym_EQ] = ACTIONS(2640), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2510), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_open] = ACTIONS(2512), - [anon_sym_include] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_val] = ACTIONS(2512), - [anon_sym_end] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2510), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2510), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2510), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1140] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4938), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1140), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4568), - [aux_sym_let_binding_repeat1] = STATE(1262), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2534), - [anon_sym_and] = ACTIONS(2536), - [anon_sym_EQ] = ACTIONS(2642), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_RBRACK] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2536), - [anon_sym_module] = ACTIONS(2536), - [anon_sym_open] = ACTIONS(2536), - [anon_sym_include] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2536), - [anon_sym_val] = ACTIONS(2536), - [anon_sym_end] = ACTIONS(2536), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2534), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2534), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2534), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1141] = { - [sym_attribute] = STATE(1141), - [sym__identifier] = ACTIONS(2644), - [anon_sym_COLON_GT] = ACTIONS(2646), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_QMARK] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_RPAREN] = ACTIONS(2646), - [anon_sym_COMMA] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_COLON_EQ] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_COLON2] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DASH_GT] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_constraint] = ACTIONS(2644), - [anon_sym_val] = ACTIONS(2644), - [anon_sym_end] = ACTIONS(2644), - [anon_sym_with] = ACTIONS(2644), - [anon_sym_object] = ACTIONS(2644), - [anon_sym_inherit] = ACTIONS(2644), - [anon_sym_method] = ACTIONS(2644), - [anon_sym_initializer] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_LBRACK_PIPE] = ACTIONS(2646), - [anon_sym_PIPE_RBRACK] = ACTIONS(2646), - [anon_sym_then] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_LBRACE_LT] = ACTIONS(2646), - [anon_sym_GT_RBRACE] = ACTIONS(2646), - [anon_sym_begin] = ACTIONS(2644), - [sym_ocamlyacc_value] = ACTIONS(2646), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2644), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2646), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2646), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2646), - [aux_sym_number_token1] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2646), - [sym_prefix_operator] = ACTIONS(2646), - [anon_sym_PLUS_DOT] = ACTIONS(2644), - [anon_sym_DASH_DOT] = ACTIONS(2644), - [sym_hash_operator] = ACTIONS(2646), - [aux_sym__pow_operator_token1] = ACTIONS(2646), - [anon_sym_lsl] = ACTIONS(2644), - [anon_sym_lsr] = ACTIONS(2644), - [anon_sym_asr] = ACTIONS(2644), - [aux_sym__mult_operator_token1] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_land] = ACTIONS(2644), - [anon_sym_lor] = ACTIONS(2644), - [anon_sym_lxor] = ACTIONS(2644), - [aux_sym__add_operator_token1] = ACTIONS(2644), - [sym__concat_operator] = ACTIONS(2646), - [sym__rel_operator] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_or] = ACTIONS(2644), - [anon_sym_PIPE_PIPE] = ACTIONS(2644), - [sym__capitalized_identifier] = ACTIONS(2646), - [aux_sym_tag_token1] = ACTIONS(2646), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1142] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4994), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1142), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4597), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2522), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2522), - [anon_sym_and] = ACTIONS(2524), - [anon_sym_EQ] = ACTIONS(2648), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2524), - [anon_sym_type] = ACTIONS(2524), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2524), - [anon_sym_module] = ACTIONS(2524), - [anon_sym_open] = ACTIONS(2524), - [anon_sym_include] = ACTIONS(2524), - [anon_sym_class] = ACTIONS(2524), - [anon_sym_val] = ACTIONS(2524), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2522), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2522), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2522), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1143] = { - [sym_attribute] = STATE(1143), - [sym__identifier] = ACTIONS(2650), - [anon_sym_COLON_GT] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2652), - [anon_sym_COMMA] = ACTIONS(2652), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_COLON_EQ] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_RBRACK] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_COLON2] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(2652), - [anon_sym_DASH_GT] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_constraint] = ACTIONS(2650), - [anon_sym_val] = ACTIONS(2650), - [anon_sym_end] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_inherit] = ACTIONS(2650), - [anon_sym_method] = ACTIONS(2650), - [anon_sym_initializer] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2652), - [anon_sym_LBRACK_PIPE] = ACTIONS(2652), - [anon_sym_PIPE_RBRACK] = ACTIONS(2652), - [anon_sym_then] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_LBRACE_LT] = ACTIONS(2652), - [anon_sym_GT_RBRACE] = ACTIONS(2652), - [anon_sym_begin] = ACTIONS(2650), - [sym_ocamlyacc_value] = ACTIONS(2652), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2650), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2652), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2652), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2652), - [aux_sym_number_token1] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [sym_prefix_operator] = ACTIONS(2652), - [anon_sym_PLUS_DOT] = ACTIONS(2650), - [anon_sym_DASH_DOT] = ACTIONS(2650), - [sym_hash_operator] = ACTIONS(2652), - [aux_sym__pow_operator_token1] = ACTIONS(2652), - [anon_sym_lsl] = ACTIONS(2650), - [anon_sym_lsr] = ACTIONS(2650), - [anon_sym_asr] = ACTIONS(2650), - [aux_sym__mult_operator_token1] = ACTIONS(2650), - [anon_sym_mod] = ACTIONS(2650), - [anon_sym_land] = ACTIONS(2650), - [anon_sym_lor] = ACTIONS(2650), - [anon_sym_lxor] = ACTIONS(2650), - [aux_sym__add_operator_token1] = ACTIONS(2650), - [sym__concat_operator] = ACTIONS(2652), - [sym__rel_operator] = ACTIONS(2650), - [anon_sym_AMP_AMP] = ACTIONS(2650), - [anon_sym_or] = ACTIONS(2650), - [anon_sym_PIPE_PIPE] = ACTIONS(2650), - [sym__capitalized_identifier] = ACTIONS(2652), - [aux_sym_tag_token1] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1144] = { - [sym_attribute] = STATE(1144), - [sym__identifier] = ACTIONS(2654), - [anon_sym_COLON_GT] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2654), - [anon_sym_QMARK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_COMMA] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_COLON_EQ] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [anon_sym_COLON2] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2656), - [anon_sym_DASH_GT] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_constraint] = ACTIONS(2654), - [anon_sym_val] = ACTIONS(2654), - [anon_sym_end] = ACTIONS(2654), - [anon_sym_with] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), - [anon_sym_inherit] = ACTIONS(2654), - [anon_sym_method] = ACTIONS(2654), - [anon_sym_initializer] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_PIPE] = ACTIONS(2656), - [anon_sym_PIPE_RBRACK] = ACTIONS(2656), - [anon_sym_then] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_LBRACE_LT] = ACTIONS(2656), - [anon_sym_GT_RBRACE] = ACTIONS(2656), - [anon_sym_begin] = ACTIONS(2654), - [sym_ocamlyacc_value] = ACTIONS(2656), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2654), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2656), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2656), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2656), - [aux_sym_number_token1] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym_prefix_operator] = ACTIONS(2656), - [anon_sym_PLUS_DOT] = ACTIONS(2654), - [anon_sym_DASH_DOT] = ACTIONS(2654), - [sym_hash_operator] = ACTIONS(2656), - [aux_sym__pow_operator_token1] = ACTIONS(2656), - [anon_sym_lsl] = ACTIONS(2654), - [anon_sym_lsr] = ACTIONS(2654), - [anon_sym_asr] = ACTIONS(2654), - [aux_sym__mult_operator_token1] = ACTIONS(2654), - [anon_sym_mod] = ACTIONS(2654), - [anon_sym_land] = ACTIONS(2654), - [anon_sym_lor] = ACTIONS(2654), - [anon_sym_lxor] = ACTIONS(2654), - [aux_sym__add_operator_token1] = ACTIONS(2654), - [sym__concat_operator] = ACTIONS(2656), - [sym__rel_operator] = ACTIONS(2654), - [anon_sym_AMP_AMP] = ACTIONS(2654), - [anon_sym_or] = ACTIONS(2654), - [anon_sym_PIPE_PIPE] = ACTIONS(2654), - [sym__capitalized_identifier] = ACTIONS(2656), - [aux_sym_tag_token1] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1145] = { - [sym_attribute] = STATE(1145), - [sym__identifier] = ACTIONS(2658), - [anon_sym_COLON_GT] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_COLON_EQ] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_COLON2] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_constraint] = ACTIONS(2658), - [anon_sym_val] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_with] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_inherit] = ACTIONS(2658), - [anon_sym_method] = ACTIONS(2658), - [anon_sym_initializer] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2660), - [anon_sym_PIPE_RBRACK] = ACTIONS(2660), - [anon_sym_then] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_LBRACE_LT] = ACTIONS(2660), - [anon_sym_GT_RBRACE] = ACTIONS(2660), - [anon_sym_begin] = ACTIONS(2658), - [sym_ocamlyacc_value] = ACTIONS(2660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2660), - [aux_sym_number_token1] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [sym_prefix_operator] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2658), - [anon_sym_DASH_DOT] = ACTIONS(2658), - [sym_hash_operator] = ACTIONS(2660), - [aux_sym__pow_operator_token1] = ACTIONS(2660), - [anon_sym_lsl] = ACTIONS(2658), - [anon_sym_lsr] = ACTIONS(2658), - [anon_sym_asr] = ACTIONS(2658), - [aux_sym__mult_operator_token1] = ACTIONS(2658), - [anon_sym_mod] = ACTIONS(2658), - [anon_sym_land] = ACTIONS(2658), - [anon_sym_lor] = ACTIONS(2658), - [anon_sym_lxor] = ACTIONS(2658), - [aux_sym__add_operator_token1] = ACTIONS(2658), - [sym__concat_operator] = ACTIONS(2660), - [sym__rel_operator] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [sym__capitalized_identifier] = ACTIONS(2660), - [aux_sym_tag_token1] = ACTIONS(2660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1146] = { - [sym_attribute] = STATE(1146), - [sym__identifier] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_QMARK] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_RPAREN] = ACTIONS(2664), - [anon_sym_COMMA] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_RBRACK] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_COLON2] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2664), - [anon_sym_DASH_GT] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_constraint] = ACTIONS(2662), - [anon_sym_val] = ACTIONS(2662), - [anon_sym_end] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_object] = ACTIONS(2662), - [anon_sym_inherit] = ACTIONS(2662), - [anon_sym_method] = ACTIONS(2662), - [anon_sym_initializer] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_PIPE] = ACTIONS(2664), - [anon_sym_PIPE_RBRACK] = ACTIONS(2664), - [anon_sym_then] = ACTIONS(2662), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_LBRACE_LT] = ACTIONS(2664), - [anon_sym_GT_RBRACE] = ACTIONS(2664), - [anon_sym_begin] = ACTIONS(2662), - [sym_ocamlyacc_value] = ACTIONS(2664), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2662), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2664), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2664), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2664), - [aux_sym_number_token1] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_prefix_operator] = ACTIONS(2664), - [anon_sym_PLUS_DOT] = ACTIONS(2662), - [anon_sym_DASH_DOT] = ACTIONS(2662), - [sym_hash_operator] = ACTIONS(2664), - [aux_sym__pow_operator_token1] = ACTIONS(2664), - [anon_sym_lsl] = ACTIONS(2662), - [anon_sym_lsr] = ACTIONS(2662), - [anon_sym_asr] = ACTIONS(2662), - [aux_sym__mult_operator_token1] = ACTIONS(2662), - [anon_sym_mod] = ACTIONS(2662), - [anon_sym_land] = ACTIONS(2662), - [anon_sym_lor] = ACTIONS(2662), - [anon_sym_lxor] = ACTIONS(2662), - [aux_sym__add_operator_token1] = ACTIONS(2662), - [sym__concat_operator] = ACTIONS(2664), - [sym__rel_operator] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [sym__capitalized_identifier] = ACTIONS(2664), - [aux_sym_tag_token1] = ACTIONS(2664), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1147] = { - [sym_attribute] = STATE(1147), - [sym__identifier] = ACTIONS(2666), - [anon_sym_COLON_GT] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_QMARK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_RPAREN] = ACTIONS(2668), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_COLON_EQ] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_RBRACK] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_constraint] = ACTIONS(2666), - [anon_sym_val] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_with] = ACTIONS(2666), - [anon_sym_object] = ACTIONS(2666), - [anon_sym_inherit] = ACTIONS(2666), - [anon_sym_method] = ACTIONS(2666), - [anon_sym_initializer] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_PIPE] = ACTIONS(2668), - [anon_sym_PIPE_RBRACK] = ACTIONS(2668), - [anon_sym_then] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_do] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_LBRACE_LT] = ACTIONS(2668), - [anon_sym_GT_RBRACE] = ACTIONS(2668), - [anon_sym_begin] = ACTIONS(2666), - [sym_ocamlyacc_value] = ACTIONS(2668), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2666), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2668), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2668), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2668), - [aux_sym_number_token1] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_prefix_operator] = ACTIONS(2668), - [anon_sym_PLUS_DOT] = ACTIONS(2666), - [anon_sym_DASH_DOT] = ACTIONS(2666), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(2668), - [anon_sym_lsl] = ACTIONS(2666), - [anon_sym_lsr] = ACTIONS(2666), - [anon_sym_asr] = ACTIONS(2666), - [aux_sym__mult_operator_token1] = ACTIONS(2666), - [anon_sym_mod] = ACTIONS(2666), - [anon_sym_land] = ACTIONS(2666), - [anon_sym_lor] = ACTIONS(2666), - [anon_sym_lxor] = ACTIONS(2666), - [aux_sym__add_operator_token1] = ACTIONS(2666), - [sym__concat_operator] = ACTIONS(2668), - [sym__rel_operator] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [sym__capitalized_identifier] = ACTIONS(2668), - [aux_sym_tag_token1] = ACTIONS(2668), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1148] = { - [sym_attribute] = STATE(1148), - [sym__identifier] = ACTIONS(2618), - [anon_sym_SEMI_SEMI] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_and] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_external] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_COMMA] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_COLON_EQ] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_exception] = ACTIONS(2618), - [anon_sym_module] = ACTIONS(2618), - [anon_sym_open] = ACTIONS(2618), - [anon_sym_include] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_end] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_in] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2618), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_LBRACE_LT] = ACTIONS(2620), - [anon_sym_begin] = ACTIONS(2618), - [sym_ocamlyacc_value] = ACTIONS(2620), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2618), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2620), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2620), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2620), - [aux_sym_number_token1] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [sym_prefix_operator] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2618), - [anon_sym_DASH_DOT] = ACTIONS(2618), - [sym_hash_operator] = ACTIONS(2620), - [aux_sym__pow_operator_token1] = ACTIONS(2620), - [anon_sym_lsl] = ACTIONS(2618), - [anon_sym_lsr] = ACTIONS(2618), - [anon_sym_asr] = ACTIONS(2618), - [aux_sym__mult_operator_token1] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_land] = ACTIONS(2618), - [anon_sym_lor] = ACTIONS(2618), - [anon_sym_lxor] = ACTIONS(2618), - [aux_sym__add_operator_token1] = ACTIONS(2618), - [sym__concat_operator] = ACTIONS(2620), - [sym__rel_operator] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_or] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [sym_let_operator] = ACTIONS(2620), - [sym_and_operator] = ACTIONS(2620), - [sym__capitalized_identifier] = ACTIONS(2620), - [aux_sym_directive_token1] = ACTIONS(2618), - [aux_sym_tag_token1] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1149] = { - [sym_attribute] = STATE(1149), - [sym__identifier] = ACTIONS(2600), - [anon_sym_SEMI_SEMI] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_and] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_external] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_COLON_EQ] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_exception] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_open] = ACTIONS(2600), - [anon_sym_include] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2600), - [anon_sym_end] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [anon_sym_in] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_LBRACK_PIPE] = ACTIONS(2602), - [anon_sym_LT_DASH] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_LBRACE_LT] = ACTIONS(2602), - [anon_sym_begin] = ACTIONS(2600), - [sym_ocamlyacc_value] = ACTIONS(2602), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2600), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2602), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2602), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2602), - [aux_sym_number_token1] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_DQUOTE] = ACTIONS(2602), - [sym_prefix_operator] = ACTIONS(2602), - [anon_sym_PLUS_DOT] = ACTIONS(2600), - [anon_sym_DASH_DOT] = ACTIONS(2600), - [sym_hash_operator] = ACTIONS(2602), - [aux_sym__pow_operator_token1] = ACTIONS(2602), - [anon_sym_lsl] = ACTIONS(2600), - [anon_sym_lsr] = ACTIONS(2600), - [anon_sym_asr] = ACTIONS(2600), - [aux_sym__mult_operator_token1] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_land] = ACTIONS(2600), - [anon_sym_lor] = ACTIONS(2600), - [anon_sym_lxor] = ACTIONS(2600), - [aux_sym__add_operator_token1] = ACTIONS(2600), - [sym__concat_operator] = ACTIONS(2602), - [sym__rel_operator] = ACTIONS(2600), - [anon_sym_AMP_AMP] = ACTIONS(2600), - [anon_sym_or] = ACTIONS(2600), - [anon_sym_PIPE_PIPE] = ACTIONS(2600), - [sym_let_operator] = ACTIONS(2602), - [sym_and_operator] = ACTIONS(2602), - [sym__capitalized_identifier] = ACTIONS(2602), - [aux_sym_directive_token1] = ACTIONS(2600), - [aux_sym_tag_token1] = ACTIONS(2602), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1150] = { - [sym_attribute] = STATE(1150), - [sym__identifier] = ACTIONS(2670), - [anon_sym_COLON_GT] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_RPAREN] = ACTIONS(2672), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_COLON_EQ] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2670), - [anon_sym_false] = ACTIONS(2670), - [anon_sym_COLON2] = ACTIONS(2670), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_DASH_GT] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_constraint] = ACTIONS(2670), - [anon_sym_val] = ACTIONS(2670), - [anon_sym_end] = ACTIONS(2670), - [anon_sym_with] = ACTIONS(2670), - [anon_sym_object] = ACTIONS(2670), - [anon_sym_inherit] = ACTIONS(2670), - [anon_sym_method] = ACTIONS(2670), - [anon_sym_initializer] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_PIPE] = ACTIONS(2672), - [anon_sym_PIPE_RBRACK] = ACTIONS(2672), - [anon_sym_then] = ACTIONS(2670), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_LBRACE_LT] = ACTIONS(2672), - [anon_sym_GT_RBRACE] = ACTIONS(2672), - [anon_sym_begin] = ACTIONS(2670), - [sym_ocamlyacc_value] = ACTIONS(2672), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2670), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2672), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2672), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2672), - [aux_sym_number_token1] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_prefix_operator] = ACTIONS(2672), - [anon_sym_PLUS_DOT] = ACTIONS(2670), - [anon_sym_DASH_DOT] = ACTIONS(2670), - [sym_hash_operator] = ACTIONS(2672), - [aux_sym__pow_operator_token1] = ACTIONS(2672), - [anon_sym_lsl] = ACTIONS(2670), - [anon_sym_lsr] = ACTIONS(2670), - [anon_sym_asr] = ACTIONS(2670), - [aux_sym__mult_operator_token1] = ACTIONS(2670), - [anon_sym_mod] = ACTIONS(2670), - [anon_sym_land] = ACTIONS(2670), - [anon_sym_lor] = ACTIONS(2670), - [anon_sym_lxor] = ACTIONS(2670), - [aux_sym__add_operator_token1] = ACTIONS(2670), - [sym__concat_operator] = ACTIONS(2672), - [sym__rel_operator] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_or] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [sym__capitalized_identifier] = ACTIONS(2672), - [aux_sym_tag_token1] = ACTIONS(2672), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1151] = { - [sym_attribute] = STATE(1151), - [sym__identifier] = ACTIONS(2674), - [anon_sym_COLON_GT] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_COLON_EQ] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_COLON2] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_DASH_GT] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_constraint] = ACTIONS(2674), - [anon_sym_val] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_object] = ACTIONS(2674), - [anon_sym_inherit] = ACTIONS(2674), - [anon_sym_method] = ACTIONS(2674), - [anon_sym_initializer] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_PIPE] = ACTIONS(2676), - [anon_sym_PIPE_RBRACK] = ACTIONS(2676), - [anon_sym_then] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_LBRACE_LT] = ACTIONS(2676), - [anon_sym_GT_RBRACE] = ACTIONS(2676), - [anon_sym_begin] = ACTIONS(2674), - [sym_ocamlyacc_value] = ACTIONS(2676), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2674), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2676), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2676), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2676), - [aux_sym_number_token1] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_prefix_operator] = ACTIONS(2676), - [anon_sym_PLUS_DOT] = ACTIONS(2674), - [anon_sym_DASH_DOT] = ACTIONS(2674), - [sym_hash_operator] = ACTIONS(2676), - [aux_sym__pow_operator_token1] = ACTIONS(2676), - [anon_sym_lsl] = ACTIONS(2674), - [anon_sym_lsr] = ACTIONS(2674), - [anon_sym_asr] = ACTIONS(2674), - [aux_sym__mult_operator_token1] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_land] = ACTIONS(2674), - [anon_sym_lor] = ACTIONS(2674), - [anon_sym_lxor] = ACTIONS(2674), - [aux_sym__add_operator_token1] = ACTIONS(2674), - [sym__concat_operator] = ACTIONS(2676), - [sym__rel_operator] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [sym__capitalized_identifier] = ACTIONS(2676), - [aux_sym_tag_token1] = ACTIONS(2676), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1152] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4982), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1152), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4508), - [aux_sym_let_binding_repeat1] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(2540), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2540), - [anon_sym_and] = ACTIONS(2542), - [anon_sym_EQ] = ACTIONS(2678), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2542), - [anon_sym_type] = ACTIONS(2542), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2542), - [anon_sym_module] = ACTIONS(2542), - [anon_sym_open] = ACTIONS(2542), - [anon_sym_include] = ACTIONS(2542), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_val] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2540), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2540), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2540), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1153] = { - [sym_attribute] = STATE(1153), - [sym__identifier] = ACTIONS(2680), - [anon_sym_COLON_GT] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_RPAREN] = ACTIONS(2682), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_COLON_EQ] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_COLON2] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_DASH_GT] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_constraint] = ACTIONS(2680), - [anon_sym_val] = ACTIONS(2680), - [anon_sym_end] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_inherit] = ACTIONS(2680), - [anon_sym_method] = ACTIONS(2680), - [anon_sym_initializer] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_LBRACK_PIPE] = ACTIONS(2682), - [anon_sym_PIPE_RBRACK] = ACTIONS(2682), - [anon_sym_then] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_LBRACE_LT] = ACTIONS(2682), - [anon_sym_GT_RBRACE] = ACTIONS(2682), - [anon_sym_begin] = ACTIONS(2680), - [sym_ocamlyacc_value] = ACTIONS(2682), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2680), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2682), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2682), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2682), - [aux_sym_number_token1] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [sym_prefix_operator] = ACTIONS(2682), - [anon_sym_PLUS_DOT] = ACTIONS(2680), - [anon_sym_DASH_DOT] = ACTIONS(2680), - [sym_hash_operator] = ACTIONS(2682), - [aux_sym__pow_operator_token1] = ACTIONS(2682), - [anon_sym_lsl] = ACTIONS(2680), - [anon_sym_lsr] = ACTIONS(2680), - [anon_sym_asr] = ACTIONS(2680), - [aux_sym__mult_operator_token1] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_land] = ACTIONS(2680), - [anon_sym_lor] = ACTIONS(2680), - [anon_sym_lxor] = ACTIONS(2680), - [aux_sym__add_operator_token1] = ACTIONS(2680), - [sym__concat_operator] = ACTIONS(2682), - [sym__rel_operator] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [sym__capitalized_identifier] = ACTIONS(2682), - [aux_sym_tag_token1] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1154] = { - [sym_attribute] = STATE(1154), - [sym__identifier] = ACTIONS(2684), - [anon_sym_COLON_GT] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_RPAREN] = ACTIONS(2686), - [anon_sym_COMMA] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_COLON_EQ] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_COLON2] = ACTIONS(2684), - [anon_sym_DOT] = ACTIONS(2686), - [anon_sym_DASH_GT] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_constraint] = ACTIONS(2684), - [anon_sym_val] = ACTIONS(2684), - [anon_sym_end] = ACTIONS(2684), - [anon_sym_with] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), - [anon_sym_inherit] = ACTIONS(2684), - [anon_sym_method] = ACTIONS(2684), - [anon_sym_initializer] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_LBRACK_PIPE] = ACTIONS(2686), - [anon_sym_PIPE_RBRACK] = ACTIONS(2686), - [anon_sym_then] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_LBRACE_LT] = ACTIONS(2686), - [anon_sym_GT_RBRACE] = ACTIONS(2686), - [anon_sym_begin] = ACTIONS(2684), - [sym_ocamlyacc_value] = ACTIONS(2686), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2684), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2686), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2686), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2686), - [aux_sym_number_token1] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [sym_prefix_operator] = ACTIONS(2686), - [anon_sym_PLUS_DOT] = ACTIONS(2684), - [anon_sym_DASH_DOT] = ACTIONS(2684), - [sym_hash_operator] = ACTIONS(2686), - [aux_sym__pow_operator_token1] = ACTIONS(2686), - [anon_sym_lsl] = ACTIONS(2684), - [anon_sym_lsr] = ACTIONS(2684), - [anon_sym_asr] = ACTIONS(2684), - [aux_sym__mult_operator_token1] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_land] = ACTIONS(2684), - [anon_sym_lor] = ACTIONS(2684), - [anon_sym_lxor] = ACTIONS(2684), - [aux_sym__add_operator_token1] = ACTIONS(2684), - [sym__concat_operator] = ACTIONS(2686), - [sym__rel_operator] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [sym__capitalized_identifier] = ACTIONS(2686), - [aux_sym_tag_token1] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1155] = { - [sym_attribute] = STATE(1155), - [sym__identifier] = ACTIONS(2688), - [anon_sym_COLON_GT] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_COMMA] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_COLON_EQ] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_COLON2] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_DASH_GT] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_constraint] = ACTIONS(2688), - [anon_sym_val] = ACTIONS(2688), - [anon_sym_end] = ACTIONS(2688), - [anon_sym_with] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), - [anon_sym_inherit] = ACTIONS(2688), - [anon_sym_method] = ACTIONS(2688), - [anon_sym_initializer] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_PIPE] = ACTIONS(2690), - [anon_sym_PIPE_RBRACK] = ACTIONS(2690), - [anon_sym_then] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_LBRACE_LT] = ACTIONS(2690), - [anon_sym_GT_RBRACE] = ACTIONS(2690), - [anon_sym_begin] = ACTIONS(2688), - [sym_ocamlyacc_value] = ACTIONS(2690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2688), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2690), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2690), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2690), - [aux_sym_number_token1] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym_prefix_operator] = ACTIONS(2690), - [anon_sym_PLUS_DOT] = ACTIONS(2688), - [anon_sym_DASH_DOT] = ACTIONS(2688), - [sym_hash_operator] = ACTIONS(2690), - [aux_sym__pow_operator_token1] = ACTIONS(2690), - [anon_sym_lsl] = ACTIONS(2688), - [anon_sym_lsr] = ACTIONS(2688), - [anon_sym_asr] = ACTIONS(2688), - [aux_sym__mult_operator_token1] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_land] = ACTIONS(2688), - [anon_sym_lor] = ACTIONS(2688), - [anon_sym_lxor] = ACTIONS(2688), - [aux_sym__add_operator_token1] = ACTIONS(2688), - [sym__concat_operator] = ACTIONS(2690), - [sym__rel_operator] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [sym__capitalized_identifier] = ACTIONS(2690), - [aux_sym_tag_token1] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1156] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(5028), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1156), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4509), - [aux_sym_let_binding_repeat1] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(2498), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2498), - [anon_sym_and] = ACTIONS(2500), - [anon_sym_EQ] = ACTIONS(2692), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2500), - [anon_sym_type] = ACTIONS(2500), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2500), - [anon_sym_module] = ACTIONS(2500), - [anon_sym_open] = ACTIONS(2500), - [anon_sym_include] = ACTIONS(2500), - [anon_sym_class] = ACTIONS(2500), - [anon_sym_val] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2498), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2498), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2498), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1157] = { - [sym__simple_expression] = STATE(3407), - [sym_typed_expression] = STATE(3454), - [sym_list_expression] = STATE(3454), - [sym_array_expression] = STATE(3454), - [sym_record_expression] = STATE(3454), - [sym__argument] = STATE(3632), - [sym_labeled_argument] = STATE(3613), - [sym_prefix_expression] = STATE(3454), - [sym_hash_expression] = STATE(3454), - [sym_field_get_expression] = STATE(3454), - [sym_array_get_expression] = STATE(3454), - [sym_string_get_expression] = STATE(3454), - [sym_bigarray_get_expression] = STATE(3454), - [sym_coercion_expression] = STATE(3454), - [sym_local_open_expression] = STATE(3454), - [sym_package_expression] = STATE(3454), - [sym_new_expression] = STATE(3454), - [sym_object_copy_expression] = STATE(3454), - [sym_method_invocation] = STATE(3454), - [sym_object_expression] = STATE(3454), - [sym_parenthesized_expression] = STATE(3454), - [sym_attribute] = STATE(1157), - [sym__extension] = STATE(3407), - [sym_extension] = STATE(3427), - [sym_quoted_extension] = STATE(3427), - [sym__constant] = STATE(3454), - [sym_number] = STATE(3386), - [sym_character] = STATE(3386), - [sym_string] = STATE(3386), - [sym_quoted_string] = STATE(3386), - [sym_boolean] = STATE(3386), - [sym_unit] = STATE(3386), - [sym__value_name] = STATE(3337), - [sym_parenthesized_operator] = STATE(3432), - [sym_value_path] = STATE(3454), - [sym_module_path] = STATE(7525), - [sym_constructor_path] = STATE(3454), - [sym__label] = STATE(3515), - [sym_tag] = STATE(3454), - [aux_sym_class_application_repeat1] = STATE(1234), - [sym__identifier] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_constraint] = ACTIONS(2197), - [anon_sym_val] = ACTIONS(2197), - [anon_sym_end] = ACTIONS(2197), - [anon_sym_object] = ACTIONS(2706), - [anon_sym_inherit] = ACTIONS(2197), - [anon_sym_method] = ACTIONS(2197), - [anon_sym_as] = ACTIONS(2197), - [anon_sym_initializer] = ACTIONS(2197), - [anon_sym_LBRACK_PIPE] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_LBRACE_LT] = ACTIONS(2712), - [anon_sym_begin] = ACTIONS(2714), - [sym_ocamlyacc_value] = ACTIONS(2716), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2718), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2720), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2195), - [aux_sym_number_token1] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_prefix_operator] = ACTIONS(2728), - [sym__capitalized_identifier] = ACTIONS(2730), - [aux_sym_tag_token1] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1158] = { - [sym_attribute] = STATE(1158), - [sym__identifier] = ACTIONS(2734), - [anon_sym_COLON_GT] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_COLON2] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DASH_GT] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_constraint] = ACTIONS(2734), - [anon_sym_val] = ACTIONS(2734), - [anon_sym_end] = ACTIONS(2734), - [anon_sym_with] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_inherit] = ACTIONS(2734), - [anon_sym_method] = ACTIONS(2734), - [anon_sym_initializer] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_PIPE] = ACTIONS(2736), - [anon_sym_PIPE_RBRACK] = ACTIONS(2736), - [anon_sym_then] = ACTIONS(2734), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_LBRACE_LT] = ACTIONS(2736), - [anon_sym_GT_RBRACE] = ACTIONS(2736), - [anon_sym_begin] = ACTIONS(2734), - [sym_ocamlyacc_value] = ACTIONS(2736), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2734), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2736), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2736), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2736), - [aux_sym_number_token1] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_prefix_operator] = ACTIONS(2736), - [anon_sym_PLUS_DOT] = ACTIONS(2734), - [anon_sym_DASH_DOT] = ACTIONS(2734), - [sym_hash_operator] = ACTIONS(2736), - [aux_sym__pow_operator_token1] = ACTIONS(2736), - [anon_sym_lsl] = ACTIONS(2734), - [anon_sym_lsr] = ACTIONS(2734), - [anon_sym_asr] = ACTIONS(2734), - [aux_sym__mult_operator_token1] = ACTIONS(2734), - [anon_sym_mod] = ACTIONS(2734), - [anon_sym_land] = ACTIONS(2734), - [anon_sym_lor] = ACTIONS(2734), - [anon_sym_lxor] = ACTIONS(2734), - [aux_sym__add_operator_token1] = ACTIONS(2734), - [sym__concat_operator] = ACTIONS(2736), - [sym__rel_operator] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [sym__capitalized_identifier] = ACTIONS(2736), - [aux_sym_tag_token1] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1159] = { - [sym_attribute] = STATE(1159), - [sym__identifier] = ACTIONS(2738), - [anon_sym_COLON_GT] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_COLON2] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_DASH_GT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_constraint] = ACTIONS(2738), - [anon_sym_val] = ACTIONS(2738), - [anon_sym_end] = ACTIONS(2738), - [anon_sym_with] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_inherit] = ACTIONS(2738), - [anon_sym_method] = ACTIONS(2738), - [anon_sym_initializer] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_PIPE] = ACTIONS(2740), - [anon_sym_PIPE_RBRACK] = ACTIONS(2740), - [anon_sym_then] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_LBRACE_LT] = ACTIONS(2740), - [anon_sym_GT_RBRACE] = ACTIONS(2740), - [anon_sym_begin] = ACTIONS(2738), - [sym_ocamlyacc_value] = ACTIONS(2740), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2738), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2740), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2740), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2740), - [aux_sym_number_token1] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_prefix_operator] = ACTIONS(2740), - [anon_sym_PLUS_DOT] = ACTIONS(2738), - [anon_sym_DASH_DOT] = ACTIONS(2738), - [sym_hash_operator] = ACTIONS(2740), - [aux_sym__pow_operator_token1] = ACTIONS(2740), - [anon_sym_lsl] = ACTIONS(2738), - [anon_sym_lsr] = ACTIONS(2738), - [anon_sym_asr] = ACTIONS(2738), - [aux_sym__mult_operator_token1] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_land] = ACTIONS(2738), - [anon_sym_lor] = ACTIONS(2738), - [anon_sym_lxor] = ACTIONS(2738), - [aux_sym__add_operator_token1] = ACTIONS(2738), - [sym__concat_operator] = ACTIONS(2740), - [sym__rel_operator] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [sym__capitalized_identifier] = ACTIONS(2740), - [aux_sym_tag_token1] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1160] = { - [sym_attribute] = STATE(1160), - [sym__identifier] = ACTIONS(2742), - [anon_sym_COLON_GT] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_QMARK] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_COLON_EQ] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_COLON2] = ACTIONS(2742), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_DASH_GT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_constraint] = ACTIONS(2742), - [anon_sym_val] = ACTIONS(2742), - [anon_sym_end] = ACTIONS(2742), - [anon_sym_with] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_inherit] = ACTIONS(2742), - [anon_sym_method] = ACTIONS(2742), - [anon_sym_initializer] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_PIPE] = ACTIONS(2744), - [anon_sym_PIPE_RBRACK] = ACTIONS(2744), - [anon_sym_then] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_LBRACE_LT] = ACTIONS(2744), - [anon_sym_GT_RBRACE] = ACTIONS(2744), - [anon_sym_begin] = ACTIONS(2742), - [sym_ocamlyacc_value] = ACTIONS(2744), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2742), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2744), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2744), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2744), - [aux_sym_number_token1] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_prefix_operator] = ACTIONS(2744), - [anon_sym_PLUS_DOT] = ACTIONS(2742), - [anon_sym_DASH_DOT] = ACTIONS(2742), - [sym_hash_operator] = ACTIONS(2744), - [aux_sym__pow_operator_token1] = ACTIONS(2744), - [anon_sym_lsl] = ACTIONS(2742), - [anon_sym_lsr] = ACTIONS(2742), - [anon_sym_asr] = ACTIONS(2742), - [aux_sym__mult_operator_token1] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_land] = ACTIONS(2742), - [anon_sym_lor] = ACTIONS(2742), - [anon_sym_lxor] = ACTIONS(2742), - [aux_sym__add_operator_token1] = ACTIONS(2742), - [sym__concat_operator] = ACTIONS(2744), - [sym__rel_operator] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_or] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [sym__capitalized_identifier] = ACTIONS(2744), - [aux_sym_tag_token1] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1161] = { - [sym__parameter] = STATE(2964), - [sym_parameter] = STATE(2967), - [sym__parenthesized_abstract_type] = STATE(2967), - [sym__simple_pattern] = STATE(2976), - [sym__simple_pattern_ext] = STATE(2988), - [sym_typed_pattern] = STATE(2954), - [sym_polymorphic_variant_pattern] = STATE(2954), - [sym_record_pattern] = STATE(2954), - [sym_list_pattern] = STATE(2954), - [sym_array_pattern] = STATE(2954), - [sym_local_open_pattern] = STATE(2954), - [sym_package_pattern] = STATE(2954), - [sym_parenthesized_pattern] = STATE(2954), - [sym_attribute] = STATE(1161), - [sym__extension] = STATE(2976), - [sym_extension] = STATE(3043), - [sym_quoted_extension] = STATE(3043), - [sym__constant] = STATE(2958), - [sym__signed_constant] = STATE(2954), - [sym_number] = STATE(3013), - [sym_signed_number] = STATE(2958), - [sym_character] = STATE(3013), - [sym_string] = STATE(3013), - [sym_quoted_string] = STATE(3013), - [sym_boolean] = STATE(3013), - [sym_unit] = STATE(3013), - [sym__value_pattern] = STATE(2954), - [sym_parenthesized_operator] = STATE(2956), - [sym_module_path] = STATE(7464), - [sym_constructor_path] = STATE(2954), - [sym__label] = STATE(8557), - [sym_tag] = STATE(2954), - [aux_sym_let_binding_repeat1] = STATE(1161), - [sym__identifier] = ACTIONS(2746), - [anon_sym_SEMI_SEMI] = ACTIONS(2749), - [anon_sym_let] = ACTIONS(2751), - [anon_sym_and] = ACTIONS(2751), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(2753), - [anon_sym_QMARK] = ACTIONS(2753), - [anon_sym_LPAREN] = ACTIONS(2756), - [anon_sym_external] = ACTIONS(2751), - [anon_sym_type] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2759), - [anon_sym_DASH] = ACTIONS(2759), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_RBRACK] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(2765), - [anon_sym_false] = ACTIONS(2765), - [anon_sym_COLON2] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_exception] = ACTIONS(2751), - [anon_sym_module] = ACTIONS(2751), - [anon_sym_open] = ACTIONS(2751), - [anon_sym_include] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_end] = ACTIONS(2751), - [anon_sym_POUND] = ACTIONS(2771), - [anon_sym_LBRACK_PIPE] = ACTIONS(2774), - [anon_sym_begin] = ACTIONS(2777), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2751), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2749), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2780), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2783), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2749), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2749), - [aux_sym_number_token1] = ACTIONS(2786), - [anon_sym_SQUOTE] = ACTIONS(2789), - [anon_sym_DQUOTE] = ACTIONS(2792), - [sym_let_operator] = ACTIONS(2749), - [sym__capitalized_identifier] = ACTIONS(2795), - [aux_sym_directive_token1] = ACTIONS(2751), - [aux_sym_tag_token1] = ACTIONS(2798), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1162] = { - [sym_attribute] = STATE(1162), - [sym__identifier] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_and] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_external] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_exception] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_include] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(2805), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym_let_operator] = ACTIONS(2803), - [sym_and_operator] = ACTIONS(2803), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_directive_token1] = ACTIONS(2801), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1163] = { - [sym_attribute] = STATE(1163), - [sym__identifier] = ACTIONS(2807), - [anon_sym_COLON_GT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_QMARK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_COLON_EQ] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_RBRACK] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_COLON2] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_DASH_GT] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_constraint] = ACTIONS(2807), - [anon_sym_val] = ACTIONS(2807), - [anon_sym_end] = ACTIONS(2807), - [anon_sym_with] = ACTIONS(2807), - [anon_sym_object] = ACTIONS(2807), - [anon_sym_inherit] = ACTIONS(2807), - [anon_sym_method] = ACTIONS(2807), - [anon_sym_initializer] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_PIPE] = ACTIONS(2809), - [anon_sym_PIPE_RBRACK] = ACTIONS(2809), - [anon_sym_then] = ACTIONS(2807), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_do] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_LBRACE_LT] = ACTIONS(2809), - [anon_sym_GT_RBRACE] = ACTIONS(2809), - [anon_sym_begin] = ACTIONS(2807), - [sym_ocamlyacc_value] = ACTIONS(2809), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2807), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2809), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2809), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2809), - [aux_sym_number_token1] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_prefix_operator] = ACTIONS(2809), - [anon_sym_PLUS_DOT] = ACTIONS(2807), - [anon_sym_DASH_DOT] = ACTIONS(2807), - [sym_hash_operator] = ACTIONS(2809), - [aux_sym__pow_operator_token1] = ACTIONS(2809), - [anon_sym_lsl] = ACTIONS(2807), - [anon_sym_lsr] = ACTIONS(2807), - [anon_sym_asr] = ACTIONS(2807), - [aux_sym__mult_operator_token1] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_land] = ACTIONS(2807), - [anon_sym_lor] = ACTIONS(2807), - [anon_sym_lxor] = ACTIONS(2807), - [aux_sym__add_operator_token1] = ACTIONS(2807), - [sym__concat_operator] = ACTIONS(2809), - [sym__rel_operator] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_PIPE_PIPE] = ACTIONS(2807), - [sym__capitalized_identifier] = ACTIONS(2809), - [aux_sym_tag_token1] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1164] = { - [sym_attribute] = STATE(1164), - [sym__identifier] = ACTIONS(2811), - [anon_sym_COLON_GT] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_QMARK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_COLON2] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_DASH_GT] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_constraint] = ACTIONS(2811), - [anon_sym_val] = ACTIONS(2811), - [anon_sym_end] = ACTIONS(2811), - [anon_sym_with] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_inherit] = ACTIONS(2811), - [anon_sym_method] = ACTIONS(2811), - [anon_sym_initializer] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_PIPE] = ACTIONS(2813), - [anon_sym_PIPE_RBRACK] = ACTIONS(2813), - [anon_sym_then] = ACTIONS(2811), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_LBRACE_LT] = ACTIONS(2813), - [anon_sym_GT_RBRACE] = ACTIONS(2813), - [anon_sym_begin] = ACTIONS(2811), - [sym_ocamlyacc_value] = ACTIONS(2813), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2811), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2813), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2813), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2813), - [aux_sym_number_token1] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_prefix_operator] = ACTIONS(2813), - [anon_sym_PLUS_DOT] = ACTIONS(2811), - [anon_sym_DASH_DOT] = ACTIONS(2811), - [sym_hash_operator] = ACTIONS(2813), - [aux_sym__pow_operator_token1] = ACTIONS(2813), - [anon_sym_lsl] = ACTIONS(2811), - [anon_sym_lsr] = ACTIONS(2811), - [anon_sym_asr] = ACTIONS(2811), - [aux_sym__mult_operator_token1] = ACTIONS(2811), - [anon_sym_mod] = ACTIONS(2811), - [anon_sym_land] = ACTIONS(2811), - [anon_sym_lor] = ACTIONS(2811), - [anon_sym_lxor] = ACTIONS(2811), - [aux_sym__add_operator_token1] = ACTIONS(2811), - [sym__concat_operator] = ACTIONS(2813), - [sym__rel_operator] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_or] = ACTIONS(2811), - [anon_sym_PIPE_PIPE] = ACTIONS(2811), - [sym__capitalized_identifier] = ACTIONS(2813), - [aux_sym_tag_token1] = ACTIONS(2813), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1165] = { - [sym_attribute] = STATE(1165), - [sym__identifier] = ACTIONS(2815), - [anon_sym_COLON_GT] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_COLON2] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_DASH_GT] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_constraint] = ACTIONS(2815), - [anon_sym_val] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_with] = ACTIONS(2815), - [anon_sym_object] = ACTIONS(2815), - [anon_sym_inherit] = ACTIONS(2815), - [anon_sym_method] = ACTIONS(2815), - [anon_sym_initializer] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_PIPE] = ACTIONS(2817), - [anon_sym_PIPE_RBRACK] = ACTIONS(2817), - [anon_sym_then] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_LBRACE_LT] = ACTIONS(2817), - [anon_sym_GT_RBRACE] = ACTIONS(2817), - [anon_sym_begin] = ACTIONS(2815), - [sym_ocamlyacc_value] = ACTIONS(2817), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2815), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2817), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2817), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2817), - [aux_sym_number_token1] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_prefix_operator] = ACTIONS(2817), - [anon_sym_PLUS_DOT] = ACTIONS(2815), - [anon_sym_DASH_DOT] = ACTIONS(2815), - [sym_hash_operator] = ACTIONS(2817), - [aux_sym__pow_operator_token1] = ACTIONS(2817), - [anon_sym_lsl] = ACTIONS(2815), - [anon_sym_lsr] = ACTIONS(2815), - [anon_sym_asr] = ACTIONS(2815), - [aux_sym__mult_operator_token1] = ACTIONS(2815), - [anon_sym_mod] = ACTIONS(2815), - [anon_sym_land] = ACTIONS(2815), - [anon_sym_lor] = ACTIONS(2815), - [anon_sym_lxor] = ACTIONS(2815), - [aux_sym__add_operator_token1] = ACTIONS(2815), - [sym__concat_operator] = ACTIONS(2817), - [sym__rel_operator] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [sym__capitalized_identifier] = ACTIONS(2817), - [aux_sym_tag_token1] = ACTIONS(2817), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1166] = { - [sym_attribute] = STATE(1166), - [sym__identifier] = ACTIONS(2819), - [anon_sym_COLON_GT] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(2821), - [anon_sym_COMMA] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_COLON_EQ] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_RBRACK] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [anon_sym_COLON2] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_DASH_GT] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_constraint] = ACTIONS(2819), - [anon_sym_val] = ACTIONS(2819), - [anon_sym_end] = ACTIONS(2819), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_object] = ACTIONS(2819), - [anon_sym_inherit] = ACTIONS(2819), - [anon_sym_method] = ACTIONS(2819), - [anon_sym_initializer] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_PIPE] = ACTIONS(2821), - [anon_sym_PIPE_RBRACK] = ACTIONS(2821), - [anon_sym_then] = ACTIONS(2819), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_LBRACE_LT] = ACTIONS(2821), - [anon_sym_GT_RBRACE] = ACTIONS(2821), - [anon_sym_begin] = ACTIONS(2819), - [sym_ocamlyacc_value] = ACTIONS(2821), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2819), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2821), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2821), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2821), - [aux_sym_number_token1] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_prefix_operator] = ACTIONS(2821), - [anon_sym_PLUS_DOT] = ACTIONS(2819), - [anon_sym_DASH_DOT] = ACTIONS(2819), - [sym_hash_operator] = ACTIONS(2821), - [aux_sym__pow_operator_token1] = ACTIONS(2821), - [anon_sym_lsl] = ACTIONS(2819), - [anon_sym_lsr] = ACTIONS(2819), - [anon_sym_asr] = ACTIONS(2819), - [aux_sym__mult_operator_token1] = ACTIONS(2819), - [anon_sym_mod] = ACTIONS(2819), - [anon_sym_land] = ACTIONS(2819), - [anon_sym_lor] = ACTIONS(2819), - [anon_sym_lxor] = ACTIONS(2819), - [aux_sym__add_operator_token1] = ACTIONS(2819), - [sym__concat_operator] = ACTIONS(2821), - [sym__rel_operator] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [sym__capitalized_identifier] = ACTIONS(2821), - [aux_sym_tag_token1] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1167] = { - [sym_attribute] = STATE(1167), - [sym__identifier] = ACTIONS(2823), - [anon_sym_COLON_GT] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_RPAREN] = ACTIONS(2825), - [anon_sym_COMMA] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_COLON_EQ] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [anon_sym_COLON2] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_constraint] = ACTIONS(2823), - [anon_sym_val] = ACTIONS(2823), - [anon_sym_end] = ACTIONS(2823), - [anon_sym_with] = ACTIONS(2823), - [anon_sym_object] = ACTIONS(2823), - [anon_sym_inherit] = ACTIONS(2823), - [anon_sym_method] = ACTIONS(2823), - [anon_sym_initializer] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_PIPE] = ACTIONS(2825), - [anon_sym_PIPE_RBRACK] = ACTIONS(2825), - [anon_sym_then] = ACTIONS(2823), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_LBRACE_LT] = ACTIONS(2825), - [anon_sym_GT_RBRACE] = ACTIONS(2825), - [anon_sym_begin] = ACTIONS(2823), - [sym_ocamlyacc_value] = ACTIONS(2825), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2823), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2825), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2825), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2825), - [aux_sym_number_token1] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_prefix_operator] = ACTIONS(2825), - [anon_sym_PLUS_DOT] = ACTIONS(2823), - [anon_sym_DASH_DOT] = ACTIONS(2823), - [sym_hash_operator] = ACTIONS(2825), - [aux_sym__pow_operator_token1] = ACTIONS(2825), - [anon_sym_lsl] = ACTIONS(2823), - [anon_sym_lsr] = ACTIONS(2823), - [anon_sym_asr] = ACTIONS(2823), - [aux_sym__mult_operator_token1] = ACTIONS(2823), - [anon_sym_mod] = ACTIONS(2823), - [anon_sym_land] = ACTIONS(2823), - [anon_sym_lor] = ACTIONS(2823), - [anon_sym_lxor] = ACTIONS(2823), - [aux_sym__add_operator_token1] = ACTIONS(2823), - [sym__concat_operator] = ACTIONS(2825), - [sym__rel_operator] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [sym__capitalized_identifier] = ACTIONS(2825), - [aux_sym_tag_token1] = ACTIONS(2825), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1168] = { - [sym_attribute] = STATE(1168), - [sym__identifier] = ACTIONS(2827), - [anon_sym_COLON_GT] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_RPAREN] = ACTIONS(2829), - [anon_sym_COMMA] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [anon_sym_COLON2] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2829), - [anon_sym_DASH_GT] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_constraint] = ACTIONS(2827), - [anon_sym_val] = ACTIONS(2827), - [anon_sym_end] = ACTIONS(2827), - [anon_sym_with] = ACTIONS(2827), - [anon_sym_object] = ACTIONS(2827), - [anon_sym_inherit] = ACTIONS(2827), - [anon_sym_method] = ACTIONS(2827), - [anon_sym_initializer] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_PIPE] = ACTIONS(2829), - [anon_sym_PIPE_RBRACK] = ACTIONS(2829), - [anon_sym_then] = ACTIONS(2827), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_LBRACE_LT] = ACTIONS(2829), - [anon_sym_GT_RBRACE] = ACTIONS(2829), - [anon_sym_begin] = ACTIONS(2827), - [sym_ocamlyacc_value] = ACTIONS(2829), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2827), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2829), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2829), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2829), - [aux_sym_number_token1] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_prefix_operator] = ACTIONS(2829), - [anon_sym_PLUS_DOT] = ACTIONS(2827), - [anon_sym_DASH_DOT] = ACTIONS(2827), - [sym_hash_operator] = ACTIONS(2829), - [aux_sym__pow_operator_token1] = ACTIONS(2829), - [anon_sym_lsl] = ACTIONS(2827), - [anon_sym_lsr] = ACTIONS(2827), - [anon_sym_asr] = ACTIONS(2827), - [aux_sym__mult_operator_token1] = ACTIONS(2827), - [anon_sym_mod] = ACTIONS(2827), - [anon_sym_land] = ACTIONS(2827), - [anon_sym_lor] = ACTIONS(2827), - [anon_sym_lxor] = ACTIONS(2827), - [aux_sym__add_operator_token1] = ACTIONS(2827), - [sym__concat_operator] = ACTIONS(2829), - [sym__rel_operator] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [sym__capitalized_identifier] = ACTIONS(2829), - [aux_sym_tag_token1] = ACTIONS(2829), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1169] = { - [sym_attribute] = STATE(1169), - [sym__identifier] = ACTIONS(2594), - [anon_sym_COLON_GT] = ACTIONS(2596), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_RPAREN] = ACTIONS(2596), - [anon_sym_COMMA] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_COLON_EQ] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2594), - [anon_sym_false] = ACTIONS(2594), - [anon_sym_COLON2] = ACTIONS(2594), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_DASH_GT] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2596), - [anon_sym_RBRACE] = ACTIONS(2596), - [anon_sym_constraint] = ACTIONS(2594), - [anon_sym_val] = ACTIONS(2594), - [anon_sym_end] = ACTIONS(2594), - [anon_sym_with] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_inherit] = ACTIONS(2594), - [anon_sym_method] = ACTIONS(2594), - [anon_sym_initializer] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_PIPE] = ACTIONS(2596), - [anon_sym_LT_DASH] = ACTIONS(2594), - [anon_sym_then] = ACTIONS(2594), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_do] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_LBRACE_LT] = ACTIONS(2596), - [anon_sym_GT_RBRACE] = ACTIONS(2596), - [anon_sym_begin] = ACTIONS(2594), - [sym_ocamlyacc_value] = ACTIONS(2596), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2594), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2596), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2596), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2596), - [aux_sym_number_token1] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_prefix_operator] = ACTIONS(2596), - [anon_sym_PLUS_DOT] = ACTIONS(2594), - [anon_sym_DASH_DOT] = ACTIONS(2594), - [sym_hash_operator] = ACTIONS(2596), - [aux_sym__pow_operator_token1] = ACTIONS(2596), - [anon_sym_lsl] = ACTIONS(2594), - [anon_sym_lsr] = ACTIONS(2594), - [anon_sym_asr] = ACTIONS(2594), - [aux_sym__mult_operator_token1] = ACTIONS(2594), - [anon_sym_mod] = ACTIONS(2594), - [anon_sym_land] = ACTIONS(2594), - [anon_sym_lor] = ACTIONS(2594), - [anon_sym_lxor] = ACTIONS(2594), - [aux_sym__add_operator_token1] = ACTIONS(2594), - [sym__concat_operator] = ACTIONS(2596), - [sym__rel_operator] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_or] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [sym__capitalized_identifier] = ACTIONS(2596), - [aux_sym_tag_token1] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1170] = { - [sym_attribute] = STATE(1170), - [sym__identifier] = ACTIONS(2831), - [anon_sym_COLON_GT] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_COMMA] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [anon_sym_COLON2] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_DASH_GT] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_constraint] = ACTIONS(2831), - [anon_sym_val] = ACTIONS(2831), - [anon_sym_end] = ACTIONS(2831), - [anon_sym_with] = ACTIONS(2831), - [anon_sym_object] = ACTIONS(2831), - [anon_sym_inherit] = ACTIONS(2831), - [anon_sym_method] = ACTIONS(2831), - [anon_sym_initializer] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_PIPE] = ACTIONS(2833), - [anon_sym_PIPE_RBRACK] = ACTIONS(2833), - [anon_sym_then] = ACTIONS(2831), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_LBRACE_LT] = ACTIONS(2833), - [anon_sym_GT_RBRACE] = ACTIONS(2833), - [anon_sym_begin] = ACTIONS(2831), - [sym_ocamlyacc_value] = ACTIONS(2833), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2831), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2833), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2833), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2833), - [aux_sym_number_token1] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_prefix_operator] = ACTIONS(2833), - [anon_sym_PLUS_DOT] = ACTIONS(2831), - [anon_sym_DASH_DOT] = ACTIONS(2831), - [sym_hash_operator] = ACTIONS(2833), - [aux_sym__pow_operator_token1] = ACTIONS(2833), - [anon_sym_lsl] = ACTIONS(2831), - [anon_sym_lsr] = ACTIONS(2831), - [anon_sym_asr] = ACTIONS(2831), - [aux_sym__mult_operator_token1] = ACTIONS(2831), - [anon_sym_mod] = ACTIONS(2831), - [anon_sym_land] = ACTIONS(2831), - [anon_sym_lor] = ACTIONS(2831), - [anon_sym_lxor] = ACTIONS(2831), - [aux_sym__add_operator_token1] = ACTIONS(2831), - [sym__concat_operator] = ACTIONS(2833), - [sym__rel_operator] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [sym__capitalized_identifier] = ACTIONS(2833), - [aux_sym_tag_token1] = ACTIONS(2833), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1171] = { - [sym_attribute] = STATE(1171), - [sym__identifier] = ACTIONS(2604), - [anon_sym_COLON_GT] = ACTIONS(2606), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_COLON_EQ] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_COLON2] = ACTIONS(2604), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_DASH_GT] = ACTIONS(2604), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_constraint] = ACTIONS(2604), - [anon_sym_val] = ACTIONS(2604), - [anon_sym_end] = ACTIONS(2604), - [anon_sym_with] = ACTIONS(2604), - [anon_sym_object] = ACTIONS(2604), - [anon_sym_inherit] = ACTIONS(2604), - [anon_sym_method] = ACTIONS(2604), - [anon_sym_initializer] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_PIPE] = ACTIONS(2606), - [anon_sym_LT_DASH] = ACTIONS(2604), - [anon_sym_then] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_do] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_LBRACE_LT] = ACTIONS(2606), - [anon_sym_GT_RBRACE] = ACTIONS(2606), - [anon_sym_begin] = ACTIONS(2604), - [sym_ocamlyacc_value] = ACTIONS(2606), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2604), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2606), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2606), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2606), - [aux_sym_number_token1] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym_prefix_operator] = ACTIONS(2606), - [anon_sym_PLUS_DOT] = ACTIONS(2604), - [anon_sym_DASH_DOT] = ACTIONS(2604), - [sym_hash_operator] = ACTIONS(2606), - [aux_sym__pow_operator_token1] = ACTIONS(2606), - [anon_sym_lsl] = ACTIONS(2604), - [anon_sym_lsr] = ACTIONS(2604), - [anon_sym_asr] = ACTIONS(2604), - [aux_sym__mult_operator_token1] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_land] = ACTIONS(2604), - [anon_sym_lor] = ACTIONS(2604), - [anon_sym_lxor] = ACTIONS(2604), - [aux_sym__add_operator_token1] = ACTIONS(2604), - [sym__concat_operator] = ACTIONS(2606), - [sym__rel_operator] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_or] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [sym__capitalized_identifier] = ACTIONS(2606), - [aux_sym_tag_token1] = ACTIONS(2606), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1172] = { - [sym_attribute] = STATE(1172), - [sym__identifier] = ACTIONS(2835), - [anon_sym_SEMI_SEMI] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_and] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_external] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_exception] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_open] = ACTIONS(2835), - [anon_sym_include] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_in] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(2839), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym_let_operator] = ACTIONS(2837), - [sym_and_operator] = ACTIONS(2837), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_directive_token1] = ACTIONS(2835), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1173] = { - [sym_attribute] = STATE(1173), - [sym__identifier] = ACTIONS(2841), - [anon_sym_COLON_GT] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_COLON_EQ] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_COLON2] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_DASH_GT] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_constraint] = ACTIONS(2841), - [anon_sym_val] = ACTIONS(2841), - [anon_sym_end] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_inherit] = ACTIONS(2841), - [anon_sym_method] = ACTIONS(2841), - [anon_sym_initializer] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_PIPE] = ACTIONS(2843), - [anon_sym_PIPE_RBRACK] = ACTIONS(2843), - [anon_sym_then] = ACTIONS(2841), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_LBRACE_LT] = ACTIONS(2843), - [anon_sym_GT_RBRACE] = ACTIONS(2843), - [anon_sym_begin] = ACTIONS(2841), - [sym_ocamlyacc_value] = ACTIONS(2843), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2841), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2843), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2843), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2843), - [aux_sym_number_token1] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_prefix_operator] = ACTIONS(2843), - [anon_sym_PLUS_DOT] = ACTIONS(2841), - [anon_sym_DASH_DOT] = ACTIONS(2841), - [sym_hash_operator] = ACTIONS(2843), - [aux_sym__pow_operator_token1] = ACTIONS(2843), - [anon_sym_lsl] = ACTIONS(2841), - [anon_sym_lsr] = ACTIONS(2841), - [anon_sym_asr] = ACTIONS(2841), - [aux_sym__mult_operator_token1] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_land] = ACTIONS(2841), - [anon_sym_lor] = ACTIONS(2841), - [anon_sym_lxor] = ACTIONS(2841), - [aux_sym__add_operator_token1] = ACTIONS(2841), - [sym__concat_operator] = ACTIONS(2843), - [sym__rel_operator] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [sym__capitalized_identifier] = ACTIONS(2843), - [aux_sym_tag_token1] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1174] = { - [sym_attribute] = STATE(1174), - [sym__identifier] = ACTIONS(2552), - [anon_sym_SEMI_SEMI] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2552), - [anon_sym_and] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_external] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_COMMA] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_COLON_EQ] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_DOT] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_exception] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_open] = ACTIONS(2552), - [anon_sym_include] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2552), - [anon_sym_end] = ACTIONS(2552), - [anon_sym_object] = ACTIONS(2552), - [anon_sym_in] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_PIPE] = ACTIONS(2554), - [anon_sym_LT_DASH] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_LBRACE_LT] = ACTIONS(2554), - [anon_sym_begin] = ACTIONS(2552), - [sym_ocamlyacc_value] = ACTIONS(2554), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2552), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2554), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2554), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2554), - [aux_sym_number_token1] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_prefix_operator] = ACTIONS(2554), - [anon_sym_PLUS_DOT] = ACTIONS(2552), - [anon_sym_DASH_DOT] = ACTIONS(2552), - [sym_hash_operator] = ACTIONS(2554), - [aux_sym__pow_operator_token1] = ACTIONS(2554), - [anon_sym_lsl] = ACTIONS(2552), - [anon_sym_lsr] = ACTIONS(2552), - [anon_sym_asr] = ACTIONS(2552), - [aux_sym__mult_operator_token1] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_land] = ACTIONS(2552), - [anon_sym_lor] = ACTIONS(2552), - [anon_sym_lxor] = ACTIONS(2552), - [aux_sym__add_operator_token1] = ACTIONS(2552), - [sym__concat_operator] = ACTIONS(2554), - [sym__rel_operator] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_or] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [sym_let_operator] = ACTIONS(2554), - [sym_and_operator] = ACTIONS(2554), - [sym__capitalized_identifier] = ACTIONS(2554), - [aux_sym_directive_token1] = ACTIONS(2552), - [aux_sym_tag_token1] = ACTIONS(2554), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1175] = { - [sym_attribute] = STATE(1175), - [sym__identifier] = ACTIONS(2626), - [anon_sym_COLON_GT] = ACTIONS(2628), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_RPAREN] = ACTIONS(2628), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_COLON2] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_DASH_GT] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2628), - [anon_sym_RBRACE] = ACTIONS(2628), - [anon_sym_constraint] = ACTIONS(2626), - [anon_sym_val] = ACTIONS(2626), - [anon_sym_end] = ACTIONS(2626), - [anon_sym_with] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_inherit] = ACTIONS(2626), - [anon_sym_method] = ACTIONS(2626), - [anon_sym_initializer] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_then] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_do] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_LBRACE_LT] = ACTIONS(2628), - [anon_sym_GT_RBRACE] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [sym_ocamlyacc_value] = ACTIONS(2628), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2626), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2628), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2628), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2628), - [aux_sym_number_token1] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_prefix_operator] = ACTIONS(2628), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [sym_hash_operator] = ACTIONS(2628), - [aux_sym__pow_operator_token1] = ACTIONS(2628), - [anon_sym_lsl] = ACTIONS(2626), - [anon_sym_lsr] = ACTIONS(2626), - [anon_sym_asr] = ACTIONS(2626), - [aux_sym__mult_operator_token1] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_land] = ACTIONS(2626), - [anon_sym_lor] = ACTIONS(2626), - [anon_sym_lxor] = ACTIONS(2626), - [aux_sym__add_operator_token1] = ACTIONS(2626), - [sym__concat_operator] = ACTIONS(2628), - [sym__rel_operator] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [sym__capitalized_identifier] = ACTIONS(2628), - [aux_sym_tag_token1] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1176] = { - [sym_attribute] = STATE(1176), - [sym__identifier] = ACTIONS(2845), - [anon_sym_COLON_GT] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_COLON_EQ] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_COLON2] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_DASH_GT] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_constraint] = ACTIONS(2845), - [anon_sym_val] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_with] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_inherit] = ACTIONS(2845), - [anon_sym_method] = ACTIONS(2845), - [anon_sym_initializer] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_PIPE] = ACTIONS(2847), - [anon_sym_PIPE_RBRACK] = ACTIONS(2847), - [anon_sym_then] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_LBRACE_LT] = ACTIONS(2847), - [anon_sym_GT_RBRACE] = ACTIONS(2847), - [anon_sym_begin] = ACTIONS(2845), - [sym_ocamlyacc_value] = ACTIONS(2847), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2845), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2847), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2847), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2847), - [aux_sym_number_token1] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_prefix_operator] = ACTIONS(2847), - [anon_sym_PLUS_DOT] = ACTIONS(2845), - [anon_sym_DASH_DOT] = ACTIONS(2845), - [sym_hash_operator] = ACTIONS(2847), - [aux_sym__pow_operator_token1] = ACTIONS(2847), - [anon_sym_lsl] = ACTIONS(2845), - [anon_sym_lsr] = ACTIONS(2845), - [anon_sym_asr] = ACTIONS(2845), - [aux_sym__mult_operator_token1] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_land] = ACTIONS(2845), - [anon_sym_lor] = ACTIONS(2845), - [anon_sym_lxor] = ACTIONS(2845), - [aux_sym__add_operator_token1] = ACTIONS(2845), - [sym__concat_operator] = ACTIONS(2847), - [sym__rel_operator] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [sym__capitalized_identifier] = ACTIONS(2847), - [aux_sym_tag_token1] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1177] = { - [sym_attribute] = STATE(1177), - [sym__identifier] = ACTIONS(2835), - [anon_sym_COLON_GT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_COLON2] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_DASH_GT] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_constraint] = ACTIONS(2835), - [anon_sym_val] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_with] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_inherit] = ACTIONS(2835), - [anon_sym_method] = ACTIONS(2835), - [anon_sym_initializer] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_PIPE_RBRACK] = ACTIONS(2837), - [anon_sym_then] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_GT_RBRACE] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1178] = { - [sym_attribute] = STATE(1178), - [sym__identifier] = ACTIONS(2851), - [anon_sym_COLON_GT] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_COLON_EQ] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [anon_sym_COLON2] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_constraint] = ACTIONS(2851), - [anon_sym_val] = ACTIONS(2851), - [anon_sym_end] = ACTIONS(2851), - [anon_sym_with] = ACTIONS(2851), - [anon_sym_object] = ACTIONS(2851), - [anon_sym_inherit] = ACTIONS(2851), - [anon_sym_method] = ACTIONS(2851), - [anon_sym_initializer] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_PIPE] = ACTIONS(2853), - [anon_sym_PIPE_RBRACK] = ACTIONS(2853), - [anon_sym_then] = ACTIONS(2851), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_do] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_LBRACE_LT] = ACTIONS(2853), - [anon_sym_GT_RBRACE] = ACTIONS(2853), - [anon_sym_begin] = ACTIONS(2851), - [sym_ocamlyacc_value] = ACTIONS(2853), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2851), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2853), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2853), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2853), - [aux_sym_number_token1] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_prefix_operator] = ACTIONS(2853), - [anon_sym_PLUS_DOT] = ACTIONS(2851), - [anon_sym_DASH_DOT] = ACTIONS(2851), - [sym_hash_operator] = ACTIONS(2853), - [aux_sym__pow_operator_token1] = ACTIONS(2853), - [anon_sym_lsl] = ACTIONS(2851), - [anon_sym_lsr] = ACTIONS(2851), - [anon_sym_asr] = ACTIONS(2851), - [aux_sym__mult_operator_token1] = ACTIONS(2851), - [anon_sym_mod] = ACTIONS(2851), - [anon_sym_land] = ACTIONS(2851), - [anon_sym_lor] = ACTIONS(2851), - [anon_sym_lxor] = ACTIONS(2851), - [aux_sym__add_operator_token1] = ACTIONS(2851), - [sym__concat_operator] = ACTIONS(2853), - [sym__rel_operator] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [sym__capitalized_identifier] = ACTIONS(2853), - [aux_sym_tag_token1] = ACTIONS(2853), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1179] = { - [sym_attribute] = STATE(1179), - [sym__identifier] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_and] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_external] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_COLON_EQ] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_exception] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_include] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_in] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_PIPE] = ACTIONS(2636), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_LBRACE_LT] = ACTIONS(2636), - [anon_sym_begin] = ACTIONS(2634), - [sym_ocamlyacc_value] = ACTIONS(2636), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2634), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2636), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2636), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2636), - [aux_sym_number_token1] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_prefix_operator] = ACTIONS(2636), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [sym_hash_operator] = ACTIONS(2636), - [aux_sym__pow_operator_token1] = ACTIONS(2636), - [anon_sym_lsl] = ACTIONS(2634), - [anon_sym_lsr] = ACTIONS(2634), - [anon_sym_asr] = ACTIONS(2634), - [aux_sym__mult_operator_token1] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_land] = ACTIONS(2634), - [anon_sym_lor] = ACTIONS(2634), - [anon_sym_lxor] = ACTIONS(2634), - [aux_sym__add_operator_token1] = ACTIONS(2634), - [sym__concat_operator] = ACTIONS(2636), - [sym__rel_operator] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [sym_let_operator] = ACTIONS(2636), - [sym_and_operator] = ACTIONS(2636), - [sym__capitalized_identifier] = ACTIONS(2636), - [aux_sym_directive_token1] = ACTIONS(2634), - [aux_sym_tag_token1] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1180] = { - [sym_attribute] = STATE(1180), - [sym__identifier] = ACTIONS(2855), - [anon_sym_COLON_GT] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [anon_sym_COLON2] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_constraint] = ACTIONS(2855), - [anon_sym_val] = ACTIONS(2855), - [anon_sym_end] = ACTIONS(2855), - [anon_sym_with] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_inherit] = ACTIONS(2855), - [anon_sym_method] = ACTIONS(2855), - [anon_sym_initializer] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_PIPE] = ACTIONS(2857), - [anon_sym_PIPE_RBRACK] = ACTIONS(2857), - [anon_sym_then] = ACTIONS(2855), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_LBRACE_LT] = ACTIONS(2857), - [anon_sym_GT_RBRACE] = ACTIONS(2857), - [anon_sym_begin] = ACTIONS(2855), - [sym_ocamlyacc_value] = ACTIONS(2857), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2855), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2857), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2857), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2857), - [aux_sym_number_token1] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_prefix_operator] = ACTIONS(2857), - [anon_sym_PLUS_DOT] = ACTIONS(2855), - [anon_sym_DASH_DOT] = ACTIONS(2855), - [sym_hash_operator] = ACTIONS(2857), - [aux_sym__pow_operator_token1] = ACTIONS(2857), - [anon_sym_lsl] = ACTIONS(2855), - [anon_sym_lsr] = ACTIONS(2855), - [anon_sym_asr] = ACTIONS(2855), - [aux_sym__mult_operator_token1] = ACTIONS(2855), - [anon_sym_mod] = ACTIONS(2855), - [anon_sym_land] = ACTIONS(2855), - [anon_sym_lor] = ACTIONS(2855), - [anon_sym_lxor] = ACTIONS(2855), - [aux_sym__add_operator_token1] = ACTIONS(2855), - [sym__concat_operator] = ACTIONS(2857), - [sym__rel_operator] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [sym__capitalized_identifier] = ACTIONS(2857), - [aux_sym_tag_token1] = ACTIONS(2857), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1181] = { - [sym_attribute] = STATE(1181), - [sym__identifier] = ACTIONS(2614), - [anon_sym_COLON_GT] = ACTIONS(2616), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_RPAREN] = ACTIONS(2616), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_COLON_EQ] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_RBRACK] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_COLON2] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_DASH_GT] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2616), - [anon_sym_RBRACE] = ACTIONS(2616), - [anon_sym_constraint] = ACTIONS(2614), - [anon_sym_val] = ACTIONS(2614), - [anon_sym_end] = ACTIONS(2614), - [anon_sym_with] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [anon_sym_inherit] = ACTIONS(2614), - [anon_sym_method] = ACTIONS(2614), - [anon_sym_initializer] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_PIPE] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2614), - [anon_sym_then] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_do] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_LBRACE_LT] = ACTIONS(2616), - [anon_sym_GT_RBRACE] = ACTIONS(2616), - [anon_sym_begin] = ACTIONS(2614), - [sym_ocamlyacc_value] = ACTIONS(2616), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2614), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2616), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2616), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2616), - [aux_sym_number_token1] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_prefix_operator] = ACTIONS(2616), - [anon_sym_PLUS_DOT] = ACTIONS(2614), - [anon_sym_DASH_DOT] = ACTIONS(2614), - [sym_hash_operator] = ACTIONS(2616), - [aux_sym__pow_operator_token1] = ACTIONS(2616), - [anon_sym_lsl] = ACTIONS(2614), - [anon_sym_lsr] = ACTIONS(2614), - [anon_sym_asr] = ACTIONS(2614), - [aux_sym__mult_operator_token1] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_land] = ACTIONS(2614), - [anon_sym_lor] = ACTIONS(2614), - [anon_sym_lxor] = ACTIONS(2614), - [aux_sym__add_operator_token1] = ACTIONS(2614), - [sym__concat_operator] = ACTIONS(2616), - [sym__rel_operator] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_or] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [sym__capitalized_identifier] = ACTIONS(2616), - [aux_sym_tag_token1] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1182] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(5025), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1182), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4471), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2546), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2546), - [anon_sym_and] = ACTIONS(2548), - [anon_sym_EQ] = ACTIONS(2859), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2548), - [anon_sym_open] = ACTIONS(2548), - [anon_sym_include] = ACTIONS(2548), - [anon_sym_class] = ACTIONS(2548), - [anon_sym_val] = ACTIONS(2548), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2546), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2546), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2546), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1183] = { - [sym_attribute] = STATE(1183), - [sym__identifier] = ACTIONS(2861), - [anon_sym_COLON_GT] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_COLON_EQ] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_COLON2] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_DASH_GT] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_constraint] = ACTIONS(2861), - [anon_sym_val] = ACTIONS(2861), - [anon_sym_end] = ACTIONS(2861), - [anon_sym_with] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_inherit] = ACTIONS(2861), - [anon_sym_method] = ACTIONS(2861), - [anon_sym_initializer] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_LBRACK_PIPE] = ACTIONS(2863), - [anon_sym_PIPE_RBRACK] = ACTIONS(2863), - [anon_sym_then] = ACTIONS(2861), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_do] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_LBRACE_LT] = ACTIONS(2863), - [anon_sym_GT_RBRACE] = ACTIONS(2863), - [anon_sym_begin] = ACTIONS(2861), - [sym_ocamlyacc_value] = ACTIONS(2863), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2861), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2863), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2863), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2863), - [aux_sym_number_token1] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_prefix_operator] = ACTIONS(2863), - [anon_sym_PLUS_DOT] = ACTIONS(2861), - [anon_sym_DASH_DOT] = ACTIONS(2861), - [sym_hash_operator] = ACTIONS(2863), - [aux_sym__pow_operator_token1] = ACTIONS(2863), - [anon_sym_lsl] = ACTIONS(2861), - [anon_sym_lsr] = ACTIONS(2861), - [anon_sym_asr] = ACTIONS(2861), - [aux_sym__mult_operator_token1] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_land] = ACTIONS(2861), - [anon_sym_lor] = ACTIONS(2861), - [anon_sym_lxor] = ACTIONS(2861), - [aux_sym__add_operator_token1] = ACTIONS(2861), - [sym__concat_operator] = ACTIONS(2863), - [sym__rel_operator] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [sym__capitalized_identifier] = ACTIONS(2863), - [aux_sym_tag_token1] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1184] = { - [sym_attribute] = STATE(1184), - [sym__identifier] = ACTIONS(2634), - [anon_sym_COLON_GT] = ACTIONS(2636), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_RPAREN] = ACTIONS(2636), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_COLON_EQ] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_COLON2] = ACTIONS(2634), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_DASH_GT] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2636), - [anon_sym_RBRACE] = ACTIONS(2636), - [anon_sym_constraint] = ACTIONS(2634), - [anon_sym_val] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_with] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_inherit] = ACTIONS(2634), - [anon_sym_method] = ACTIONS(2634), - [anon_sym_initializer] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_PIPE] = ACTIONS(2636), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_then] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_do] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_LBRACE_LT] = ACTIONS(2636), - [anon_sym_GT_RBRACE] = ACTIONS(2636), - [anon_sym_begin] = ACTIONS(2634), - [sym_ocamlyacc_value] = ACTIONS(2636), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2634), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2636), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2636), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2636), - [aux_sym_number_token1] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_prefix_operator] = ACTIONS(2636), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [sym_hash_operator] = ACTIONS(2636), - [aux_sym__pow_operator_token1] = ACTIONS(2636), - [anon_sym_lsl] = ACTIONS(2634), - [anon_sym_lsr] = ACTIONS(2634), - [anon_sym_asr] = ACTIONS(2634), - [aux_sym__mult_operator_token1] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_land] = ACTIONS(2634), - [anon_sym_lor] = ACTIONS(2634), - [anon_sym_lxor] = ACTIONS(2634), - [aux_sym__add_operator_token1] = ACTIONS(2634), - [sym__concat_operator] = ACTIONS(2636), - [sym__rel_operator] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [sym__capitalized_identifier] = ACTIONS(2636), - [aux_sym_tag_token1] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1185] = { - [sym_attribute] = STATE(1185), - [sym__identifier] = ACTIONS(2618), - [anon_sym_COLON_GT] = ACTIONS(2620), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_RPAREN] = ACTIONS(2620), - [anon_sym_COMMA] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_COLON_EQ] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_COLON2] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_DASH_GT] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2620), - [anon_sym_RBRACE] = ACTIONS(2620), - [anon_sym_constraint] = ACTIONS(2618), - [anon_sym_val] = ACTIONS(2618), - [anon_sym_end] = ACTIONS(2618), - [anon_sym_with] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_inherit] = ACTIONS(2618), - [anon_sym_method] = ACTIONS(2618), - [anon_sym_initializer] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2618), - [anon_sym_then] = ACTIONS(2618), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_do] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_LBRACE_LT] = ACTIONS(2620), - [anon_sym_GT_RBRACE] = ACTIONS(2620), - [anon_sym_begin] = ACTIONS(2618), - [sym_ocamlyacc_value] = ACTIONS(2620), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2618), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2620), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2620), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2620), - [aux_sym_number_token1] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [sym_prefix_operator] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2618), - [anon_sym_DASH_DOT] = ACTIONS(2618), - [sym_hash_operator] = ACTIONS(2620), - [aux_sym__pow_operator_token1] = ACTIONS(2620), - [anon_sym_lsl] = ACTIONS(2618), - [anon_sym_lsr] = ACTIONS(2618), - [anon_sym_asr] = ACTIONS(2618), - [aux_sym__mult_operator_token1] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_land] = ACTIONS(2618), - [anon_sym_lor] = ACTIONS(2618), - [anon_sym_lxor] = ACTIONS(2618), - [aux_sym__add_operator_token1] = ACTIONS(2618), - [sym__concat_operator] = ACTIONS(2620), - [sym__rel_operator] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_or] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [sym__capitalized_identifier] = ACTIONS(2620), - [aux_sym_tag_token1] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1186] = { - [sym_attribute] = STATE(1186), - [sym__identifier] = ACTIONS(2865), - [anon_sym_COLON_GT] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_COLON2] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_constraint] = ACTIONS(2865), - [anon_sym_val] = ACTIONS(2865), - [anon_sym_end] = ACTIONS(2865), - [anon_sym_with] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_inherit] = ACTIONS(2865), - [anon_sym_method] = ACTIONS(2865), - [anon_sym_initializer] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_LBRACK_PIPE] = ACTIONS(2867), - [anon_sym_PIPE_RBRACK] = ACTIONS(2867), - [anon_sym_then] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_do] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_LBRACE_LT] = ACTIONS(2867), - [anon_sym_GT_RBRACE] = ACTIONS(2867), - [anon_sym_begin] = ACTIONS(2865), - [sym_ocamlyacc_value] = ACTIONS(2867), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2865), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2867), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2867), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2867), - [aux_sym_number_token1] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [sym_prefix_operator] = ACTIONS(2867), - [anon_sym_PLUS_DOT] = ACTIONS(2865), - [anon_sym_DASH_DOT] = ACTIONS(2865), - [sym_hash_operator] = ACTIONS(2867), - [aux_sym__pow_operator_token1] = ACTIONS(2867), - [anon_sym_lsl] = ACTIONS(2865), - [anon_sym_lsr] = ACTIONS(2865), - [anon_sym_asr] = ACTIONS(2865), - [aux_sym__mult_operator_token1] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_land] = ACTIONS(2865), - [anon_sym_lor] = ACTIONS(2865), - [anon_sym_lxor] = ACTIONS(2865), - [aux_sym__add_operator_token1] = ACTIONS(2865), - [sym__concat_operator] = ACTIONS(2867), - [sym__rel_operator] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [sym__capitalized_identifier] = ACTIONS(2867), - [aux_sym_tag_token1] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1187] = { - [sym_attribute] = STATE(1187), - [sym__identifier] = ACTIONS(2869), - [anon_sym_COLON_GT] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_COLON2] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_DASH_GT] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_constraint] = ACTIONS(2869), - [anon_sym_val] = ACTIONS(2869), - [anon_sym_end] = ACTIONS(2869), - [anon_sym_with] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_inherit] = ACTIONS(2869), - [anon_sym_method] = ACTIONS(2869), - [anon_sym_initializer] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_PIPE] = ACTIONS(2871), - [anon_sym_PIPE_RBRACK] = ACTIONS(2871), - [anon_sym_then] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_LBRACE_LT] = ACTIONS(2871), - [anon_sym_GT_RBRACE] = ACTIONS(2871), - [anon_sym_begin] = ACTIONS(2869), - [sym_ocamlyacc_value] = ACTIONS(2871), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2869), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2871), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2871), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2871), - [aux_sym_number_token1] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_prefix_operator] = ACTIONS(2871), - [anon_sym_PLUS_DOT] = ACTIONS(2869), - [anon_sym_DASH_DOT] = ACTIONS(2869), - [sym_hash_operator] = ACTIONS(2871), - [aux_sym__pow_operator_token1] = ACTIONS(2871), - [anon_sym_lsl] = ACTIONS(2869), - [anon_sym_lsr] = ACTIONS(2869), - [anon_sym_asr] = ACTIONS(2869), - [aux_sym__mult_operator_token1] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_land] = ACTIONS(2869), - [anon_sym_lor] = ACTIONS(2869), - [anon_sym_lxor] = ACTIONS(2869), - [aux_sym__add_operator_token1] = ACTIONS(2869), - [sym__concat_operator] = ACTIONS(2871), - [sym__rel_operator] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [sym__capitalized_identifier] = ACTIONS(2871), - [aux_sym_tag_token1] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1188] = { - [sym_attribute] = STATE(1188), - [sym__identifier] = ACTIONS(2873), - [anon_sym_COLON_GT] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_COLON_EQ] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_COLON2] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_DASH_GT] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_constraint] = ACTIONS(2873), - [anon_sym_val] = ACTIONS(2873), - [anon_sym_end] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_inherit] = ACTIONS(2873), - [anon_sym_method] = ACTIONS(2873), - [anon_sym_initializer] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_PIPE] = ACTIONS(2875), - [anon_sym_PIPE_RBRACK] = ACTIONS(2875), - [anon_sym_then] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_LBRACE_LT] = ACTIONS(2875), - [anon_sym_GT_RBRACE] = ACTIONS(2875), - [anon_sym_begin] = ACTIONS(2873), - [sym_ocamlyacc_value] = ACTIONS(2875), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2873), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2875), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2875), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2875), - [aux_sym_number_token1] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_prefix_operator] = ACTIONS(2875), - [anon_sym_PLUS_DOT] = ACTIONS(2873), - [anon_sym_DASH_DOT] = ACTIONS(2873), - [sym_hash_operator] = ACTIONS(2875), - [aux_sym__pow_operator_token1] = ACTIONS(2875), - [anon_sym_lsl] = ACTIONS(2873), - [anon_sym_lsr] = ACTIONS(2873), - [anon_sym_asr] = ACTIONS(2873), - [aux_sym__mult_operator_token1] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_land] = ACTIONS(2873), - [anon_sym_lor] = ACTIONS(2873), - [anon_sym_lxor] = ACTIONS(2873), - [aux_sym__add_operator_token1] = ACTIONS(2873), - [sym__concat_operator] = ACTIONS(2875), - [sym__rel_operator] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym__capitalized_identifier] = ACTIONS(2875), - [aux_sym_tag_token1] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1189] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(5016), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1189), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4558), - [aux_sym_let_binding_repeat1] = STATE(1142), - [ts_builtin_sym_end] = ACTIONS(2528), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2528), - [anon_sym_and] = ACTIONS(2530), - [anon_sym_EQ] = ACTIONS(2877), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2530), - [anon_sym_module] = ACTIONS(2530), - [anon_sym_open] = ACTIONS(2530), - [anon_sym_include] = ACTIONS(2530), - [anon_sym_class] = ACTIONS(2530), - [anon_sym_val] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2528), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2528), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2528), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1190] = { - [sym_attribute] = STATE(1190), - [sym__identifier] = ACTIONS(2879), - [anon_sym_COLON_GT] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_COLON_EQ] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [anon_sym_COLON2] = ACTIONS(2879), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_DASH_GT] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_constraint] = ACTIONS(2879), - [anon_sym_val] = ACTIONS(2879), - [anon_sym_end] = ACTIONS(2879), - [anon_sym_with] = ACTIONS(2879), - [anon_sym_object] = ACTIONS(2879), - [anon_sym_inherit] = ACTIONS(2879), - [anon_sym_method] = ACTIONS(2879), - [anon_sym_initializer] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_PIPE] = ACTIONS(2881), - [anon_sym_PIPE_RBRACK] = ACTIONS(2881), - [anon_sym_then] = ACTIONS(2879), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_LBRACE_LT] = ACTIONS(2881), - [anon_sym_GT_RBRACE] = ACTIONS(2881), - [anon_sym_begin] = ACTIONS(2879), - [sym_ocamlyacc_value] = ACTIONS(2881), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2879), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2881), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2881), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2881), - [aux_sym_number_token1] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_prefix_operator] = ACTIONS(2881), - [anon_sym_PLUS_DOT] = ACTIONS(2879), - [anon_sym_DASH_DOT] = ACTIONS(2879), - [sym_hash_operator] = ACTIONS(2881), - [aux_sym__pow_operator_token1] = ACTIONS(2881), - [anon_sym_lsl] = ACTIONS(2879), - [anon_sym_lsr] = ACTIONS(2879), - [anon_sym_asr] = ACTIONS(2879), - [aux_sym__mult_operator_token1] = ACTIONS(2879), - [anon_sym_mod] = ACTIONS(2879), - [anon_sym_land] = ACTIONS(2879), - [anon_sym_lor] = ACTIONS(2879), - [anon_sym_lxor] = ACTIONS(2879), - [aux_sym__add_operator_token1] = ACTIONS(2879), - [sym__concat_operator] = ACTIONS(2881), - [sym__rel_operator] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_or] = ACTIONS(2879), - [anon_sym_PIPE_PIPE] = ACTIONS(2879), - [sym__capitalized_identifier] = ACTIONS(2881), - [aux_sym_tag_token1] = ACTIONS(2881), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1191] = { - [sym_attribute] = STATE(1191), - [sym__identifier] = ACTIONS(2883), - [anon_sym_COLON_GT] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [anon_sym_COLON2] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_DASH_GT] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_constraint] = ACTIONS(2883), - [anon_sym_val] = ACTIONS(2883), - [anon_sym_end] = ACTIONS(2883), - [anon_sym_with] = ACTIONS(2883), - [anon_sym_object] = ACTIONS(2883), - [anon_sym_inherit] = ACTIONS(2883), - [anon_sym_method] = ACTIONS(2883), - [anon_sym_initializer] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_PIPE] = ACTIONS(2885), - [anon_sym_PIPE_RBRACK] = ACTIONS(2885), - [anon_sym_then] = ACTIONS(2883), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_do] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_LBRACE_LT] = ACTIONS(2885), - [anon_sym_GT_RBRACE] = ACTIONS(2885), - [anon_sym_begin] = ACTIONS(2883), - [sym_ocamlyacc_value] = ACTIONS(2885), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2883), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2885), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2885), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2885), - [aux_sym_number_token1] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_prefix_operator] = ACTIONS(2885), - [anon_sym_PLUS_DOT] = ACTIONS(2883), - [anon_sym_DASH_DOT] = ACTIONS(2883), - [sym_hash_operator] = ACTIONS(2885), - [aux_sym__pow_operator_token1] = ACTIONS(2885), - [anon_sym_lsl] = ACTIONS(2883), - [anon_sym_lsr] = ACTIONS(2883), - [anon_sym_asr] = ACTIONS(2883), - [aux_sym__mult_operator_token1] = ACTIONS(2883), - [anon_sym_mod] = ACTIONS(2883), - [anon_sym_land] = ACTIONS(2883), - [anon_sym_lor] = ACTIONS(2883), - [anon_sym_lxor] = ACTIONS(2883), - [aux_sym__add_operator_token1] = ACTIONS(2883), - [sym__concat_operator] = ACTIONS(2885), - [sym__rel_operator] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__capitalized_identifier] = ACTIONS(2885), - [aux_sym_tag_token1] = ACTIONS(2885), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1192] = { - [sym_attribute] = STATE(1192), - [sym__identifier] = ACTIONS(2887), - [anon_sym_COLON_GT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_COLON2] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2889), - [anon_sym_DASH_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_constraint] = ACTIONS(2887), - [anon_sym_val] = ACTIONS(2887), - [anon_sym_end] = ACTIONS(2887), - [anon_sym_with] = ACTIONS(2887), - [anon_sym_object] = ACTIONS(2887), - [anon_sym_inherit] = ACTIONS(2887), - [anon_sym_method] = ACTIONS(2887), - [anon_sym_initializer] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_PIPE] = ACTIONS(2889), - [anon_sym_PIPE_RBRACK] = ACTIONS(2889), - [anon_sym_then] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_LBRACE_LT] = ACTIONS(2889), - [anon_sym_GT_RBRACE] = ACTIONS(2889), - [anon_sym_begin] = ACTIONS(2887), - [sym_ocamlyacc_value] = ACTIONS(2889), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2887), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2889), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2889), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2889), - [aux_sym_number_token1] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_prefix_operator] = ACTIONS(2889), - [anon_sym_PLUS_DOT] = ACTIONS(2887), - [anon_sym_DASH_DOT] = ACTIONS(2887), - [sym_hash_operator] = ACTIONS(2889), - [aux_sym__pow_operator_token1] = ACTIONS(2889), - [anon_sym_lsl] = ACTIONS(2887), - [anon_sym_lsr] = ACTIONS(2887), - [anon_sym_asr] = ACTIONS(2887), - [aux_sym__mult_operator_token1] = ACTIONS(2887), - [anon_sym_mod] = ACTIONS(2887), - [anon_sym_land] = ACTIONS(2887), - [anon_sym_lor] = ACTIONS(2887), - [anon_sym_lxor] = ACTIONS(2887), - [aux_sym__add_operator_token1] = ACTIONS(2887), - [sym__concat_operator] = ACTIONS(2889), - [sym__rel_operator] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [sym__capitalized_identifier] = ACTIONS(2889), - [aux_sym_tag_token1] = ACTIONS(2889), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1193] = { - [sym_attribute] = STATE(1193), - [sym__identifier] = ACTIONS(2891), - [anon_sym_COLON_GT] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_RPAREN] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [anon_sym_COLON2] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_DASH_GT] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_constraint] = ACTIONS(2891), - [anon_sym_val] = ACTIONS(2891), - [anon_sym_end] = ACTIONS(2891), - [anon_sym_with] = ACTIONS(2891), - [anon_sym_object] = ACTIONS(2891), - [anon_sym_inherit] = ACTIONS(2891), - [anon_sym_method] = ACTIONS(2891), - [anon_sym_initializer] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_PIPE] = ACTIONS(2893), - [anon_sym_PIPE_RBRACK] = ACTIONS(2893), - [anon_sym_then] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_LBRACE_LT] = ACTIONS(2893), - [anon_sym_GT_RBRACE] = ACTIONS(2893), - [anon_sym_begin] = ACTIONS(2891), - [sym_ocamlyacc_value] = ACTIONS(2893), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2891), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2893), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2893), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2893), - [aux_sym_number_token1] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_prefix_operator] = ACTIONS(2893), - [anon_sym_PLUS_DOT] = ACTIONS(2891), - [anon_sym_DASH_DOT] = ACTIONS(2891), - [sym_hash_operator] = ACTIONS(2893), - [aux_sym__pow_operator_token1] = ACTIONS(2893), - [anon_sym_lsl] = ACTIONS(2891), - [anon_sym_lsr] = ACTIONS(2891), - [anon_sym_asr] = ACTIONS(2891), - [aux_sym__mult_operator_token1] = ACTIONS(2891), - [anon_sym_mod] = ACTIONS(2891), - [anon_sym_land] = ACTIONS(2891), - [anon_sym_lor] = ACTIONS(2891), - [anon_sym_lxor] = ACTIONS(2891), - [aux_sym__add_operator_token1] = ACTIONS(2891), - [sym__concat_operator] = ACTIONS(2893), - [sym__rel_operator] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [sym__capitalized_identifier] = ACTIONS(2893), - [aux_sym_tag_token1] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1194] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4998), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1194), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4491), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2510), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2510), - [anon_sym_and] = ACTIONS(2512), - [anon_sym_EQ] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2512), - [anon_sym_type] = ACTIONS(2512), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2512), - [anon_sym_module] = ACTIONS(2512), - [anon_sym_open] = ACTIONS(2512), - [anon_sym_include] = ACTIONS(2512), - [anon_sym_class] = ACTIONS(2512), - [anon_sym_val] = ACTIONS(2512), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2510), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2510), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2510), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1195] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(5033), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1195), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4603), - [aux_sym_let_binding_repeat1] = STATE(1228), - [ts_builtin_sym_end] = ACTIONS(2504), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2504), - [anon_sym_and] = ACTIONS(2506), - [anon_sym_EQ] = ACTIONS(2897), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2506), - [anon_sym_module] = ACTIONS(2506), - [anon_sym_open] = ACTIONS(2506), - [anon_sym_include] = ACTIONS(2506), - [anon_sym_class] = ACTIONS(2506), - [anon_sym_val] = ACTIONS(2506), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2504), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2504), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2504), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1196] = { - [sym_attribute] = STATE(1196), - [sym__identifier] = ACTIONS(2899), - [anon_sym_COLON_GT] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_COLON2] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_DASH_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_constraint] = ACTIONS(2899), - [anon_sym_val] = ACTIONS(2899), - [anon_sym_end] = ACTIONS(2899), - [anon_sym_with] = ACTIONS(2899), - [anon_sym_object] = ACTIONS(2899), - [anon_sym_inherit] = ACTIONS(2899), - [anon_sym_method] = ACTIONS(2899), - [anon_sym_initializer] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_PIPE] = ACTIONS(2901), - [anon_sym_PIPE_RBRACK] = ACTIONS(2901), - [anon_sym_then] = ACTIONS(2899), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_do] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_LBRACE_LT] = ACTIONS(2901), - [anon_sym_GT_RBRACE] = ACTIONS(2901), - [anon_sym_begin] = ACTIONS(2899), - [sym_ocamlyacc_value] = ACTIONS(2901), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2899), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2901), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2901), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2901), - [aux_sym_number_token1] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_prefix_operator] = ACTIONS(2901), - [anon_sym_PLUS_DOT] = ACTIONS(2899), - [anon_sym_DASH_DOT] = ACTIONS(2899), - [sym_hash_operator] = ACTIONS(2901), - [aux_sym__pow_operator_token1] = ACTIONS(2901), - [anon_sym_lsl] = ACTIONS(2899), - [anon_sym_lsr] = ACTIONS(2899), - [anon_sym_asr] = ACTIONS(2899), - [aux_sym__mult_operator_token1] = ACTIONS(2899), - [anon_sym_mod] = ACTIONS(2899), - [anon_sym_land] = ACTIONS(2899), - [anon_sym_lor] = ACTIONS(2899), - [anon_sym_lxor] = ACTIONS(2899), - [aux_sym__add_operator_token1] = ACTIONS(2899), - [sym__concat_operator] = ACTIONS(2901), - [sym__rel_operator] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__capitalized_identifier] = ACTIONS(2901), - [aux_sym_tag_token1] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1197] = { - [sym_attribute] = STATE(1197), - [sym__identifier] = ACTIONS(2552), - [anon_sym_COLON_GT] = ACTIONS(2554), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_RPAREN] = ACTIONS(2554), - [anon_sym_COMMA] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_COLON_EQ] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_COLON2] = ACTIONS(2552), - [anon_sym_DOT] = ACTIONS(2554), - [anon_sym_DASH_GT] = ACTIONS(2552), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_constraint] = ACTIONS(2552), - [anon_sym_val] = ACTIONS(2552), - [anon_sym_end] = ACTIONS(2552), - [anon_sym_with] = ACTIONS(2552), - [anon_sym_object] = ACTIONS(2552), - [anon_sym_inherit] = ACTIONS(2552), - [anon_sym_method] = ACTIONS(2552), - [anon_sym_initializer] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_PIPE] = ACTIONS(2554), - [anon_sym_LT_DASH] = ACTIONS(2552), - [anon_sym_then] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_do] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_LBRACE_LT] = ACTIONS(2554), - [anon_sym_GT_RBRACE] = ACTIONS(2554), - [anon_sym_begin] = ACTIONS(2552), - [sym_ocamlyacc_value] = ACTIONS(2554), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2552), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2554), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2554), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2554), - [aux_sym_number_token1] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_prefix_operator] = ACTIONS(2554), - [anon_sym_PLUS_DOT] = ACTIONS(2552), - [anon_sym_DASH_DOT] = ACTIONS(2552), - [sym_hash_operator] = ACTIONS(2554), - [aux_sym__pow_operator_token1] = ACTIONS(2554), - [anon_sym_lsl] = ACTIONS(2552), - [anon_sym_lsr] = ACTIONS(2552), - [anon_sym_asr] = ACTIONS(2552), - [aux_sym__mult_operator_token1] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_land] = ACTIONS(2552), - [anon_sym_lor] = ACTIONS(2552), - [anon_sym_lxor] = ACTIONS(2552), - [aux_sym__add_operator_token1] = ACTIONS(2552), - [sym__concat_operator] = ACTIONS(2554), - [sym__rel_operator] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_or] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [sym__capitalized_identifier] = ACTIONS(2554), - [aux_sym_tag_token1] = ACTIONS(2554), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1198] = { - [sym_attribute] = STATE(1198), - [sym__identifier] = ACTIONS(2903), - [anon_sym_COLON_GT] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [anon_sym_COLON2] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_DASH_GT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_constraint] = ACTIONS(2903), - [anon_sym_val] = ACTIONS(2903), - [anon_sym_end] = ACTIONS(2903), - [anon_sym_with] = ACTIONS(2903), - [anon_sym_object] = ACTIONS(2903), - [anon_sym_inherit] = ACTIONS(2903), - [anon_sym_method] = ACTIONS(2903), - [anon_sym_initializer] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_PIPE] = ACTIONS(2905), - [anon_sym_PIPE_RBRACK] = ACTIONS(2905), - [anon_sym_then] = ACTIONS(2903), - [anon_sym_else] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_LBRACE_LT] = ACTIONS(2905), - [anon_sym_GT_RBRACE] = ACTIONS(2905), - [anon_sym_begin] = ACTIONS(2903), - [sym_ocamlyacc_value] = ACTIONS(2905), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2903), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2905), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2905), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2905), - [aux_sym_number_token1] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_prefix_operator] = ACTIONS(2905), - [anon_sym_PLUS_DOT] = ACTIONS(2903), - [anon_sym_DASH_DOT] = ACTIONS(2903), - [sym_hash_operator] = ACTIONS(2905), - [aux_sym__pow_operator_token1] = ACTIONS(2905), - [anon_sym_lsl] = ACTIONS(2903), - [anon_sym_lsr] = ACTIONS(2903), - [anon_sym_asr] = ACTIONS(2903), - [aux_sym__mult_operator_token1] = ACTIONS(2903), - [anon_sym_mod] = ACTIONS(2903), - [anon_sym_land] = ACTIONS(2903), - [anon_sym_lor] = ACTIONS(2903), - [anon_sym_lxor] = ACTIONS(2903), - [aux_sym__add_operator_token1] = ACTIONS(2903), - [sym__concat_operator] = ACTIONS(2905), - [sym__rel_operator] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym__capitalized_identifier] = ACTIONS(2905), - [aux_sym_tag_token1] = ACTIONS(2905), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1199] = { - [sym_attribute] = STATE(1199), - [sym__identifier] = ACTIONS(2907), - [anon_sym_COLON_GT] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [anon_sym_COLON2] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_constraint] = ACTIONS(2907), - [anon_sym_val] = ACTIONS(2907), - [anon_sym_end] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [anon_sym_object] = ACTIONS(2907), - [anon_sym_inherit] = ACTIONS(2907), - [anon_sym_method] = ACTIONS(2907), - [anon_sym_initializer] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_PIPE] = ACTIONS(2909), - [anon_sym_PIPE_RBRACK] = ACTIONS(2909), - [anon_sym_then] = ACTIONS(2907), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_do] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_LBRACE_LT] = ACTIONS(2909), - [anon_sym_GT_RBRACE] = ACTIONS(2909), - [anon_sym_begin] = ACTIONS(2907), - [sym_ocamlyacc_value] = ACTIONS(2909), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2907), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2909), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2909), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2909), - [aux_sym_number_token1] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_prefix_operator] = ACTIONS(2909), - [anon_sym_PLUS_DOT] = ACTIONS(2907), - [anon_sym_DASH_DOT] = ACTIONS(2907), - [sym_hash_operator] = ACTIONS(2909), - [aux_sym__pow_operator_token1] = ACTIONS(2909), - [anon_sym_lsl] = ACTIONS(2907), - [anon_sym_lsr] = ACTIONS(2907), - [anon_sym_asr] = ACTIONS(2907), - [aux_sym__mult_operator_token1] = ACTIONS(2907), - [anon_sym_mod] = ACTIONS(2907), - [anon_sym_land] = ACTIONS(2907), - [anon_sym_lor] = ACTIONS(2907), - [anon_sym_lxor] = ACTIONS(2907), - [aux_sym__add_operator_token1] = ACTIONS(2907), - [sym__concat_operator] = ACTIONS(2909), - [sym__rel_operator] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [sym__capitalized_identifier] = ACTIONS(2909), - [aux_sym_tag_token1] = ACTIONS(2909), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1200] = { - [sym_attribute] = STATE(1200), - [sym__identifier] = ACTIONS(2911), - [anon_sym_COLON_GT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [anon_sym_COLON2] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_constraint] = ACTIONS(2911), - [anon_sym_val] = ACTIONS(2911), - [anon_sym_end] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_inherit] = ACTIONS(2911), - [anon_sym_method] = ACTIONS(2911), - [anon_sym_initializer] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_PIPE] = ACTIONS(2913), - [anon_sym_PIPE_RBRACK] = ACTIONS(2913), - [anon_sym_then] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_LBRACE_LT] = ACTIONS(2913), - [anon_sym_GT_RBRACE] = ACTIONS(2913), - [anon_sym_begin] = ACTIONS(2911), - [sym_ocamlyacc_value] = ACTIONS(2913), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2911), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2913), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2913), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2913), - [aux_sym_number_token1] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_prefix_operator] = ACTIONS(2913), - [anon_sym_PLUS_DOT] = ACTIONS(2911), - [anon_sym_DASH_DOT] = ACTIONS(2911), - [sym_hash_operator] = ACTIONS(2913), - [aux_sym__pow_operator_token1] = ACTIONS(2913), - [anon_sym_lsl] = ACTIONS(2911), - [anon_sym_lsr] = ACTIONS(2911), - [anon_sym_asr] = ACTIONS(2911), - [aux_sym__mult_operator_token1] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_land] = ACTIONS(2911), - [anon_sym_lor] = ACTIONS(2911), - [anon_sym_lxor] = ACTIONS(2911), - [aux_sym__add_operator_token1] = ACTIONS(2911), - [sym__concat_operator] = ACTIONS(2913), - [sym__rel_operator] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [sym__capitalized_identifier] = ACTIONS(2913), - [aux_sym_tag_token1] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1201] = { - [sym_attribute] = STATE(1201), - [sym__identifier] = ACTIONS(2915), - [anon_sym_COLON_GT] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [anon_sym_COLON2] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_constraint] = ACTIONS(2915), - [anon_sym_val] = ACTIONS(2915), - [anon_sym_end] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_inherit] = ACTIONS(2915), - [anon_sym_method] = ACTIONS(2915), - [anon_sym_initializer] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2917), - [anon_sym_PIPE_RBRACK] = ACTIONS(2917), - [anon_sym_then] = ACTIONS(2915), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_LBRACE_LT] = ACTIONS(2917), - [anon_sym_GT_RBRACE] = ACTIONS(2917), - [anon_sym_begin] = ACTIONS(2915), - [sym_ocamlyacc_value] = ACTIONS(2917), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2915), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2917), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2917), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2917), - [aux_sym_number_token1] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_prefix_operator] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2915), - [anon_sym_DASH_DOT] = ACTIONS(2915), - [sym_hash_operator] = ACTIONS(2917), - [aux_sym__pow_operator_token1] = ACTIONS(2917), - [anon_sym_lsl] = ACTIONS(2915), - [anon_sym_lsr] = ACTIONS(2915), - [anon_sym_asr] = ACTIONS(2915), - [aux_sym__mult_operator_token1] = ACTIONS(2915), - [anon_sym_mod] = ACTIONS(2915), - [anon_sym_land] = ACTIONS(2915), - [anon_sym_lor] = ACTIONS(2915), - [anon_sym_lxor] = ACTIONS(2915), - [aux_sym__add_operator_token1] = ACTIONS(2915), - [sym__concat_operator] = ACTIONS(2917), - [sym__rel_operator] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [sym__capitalized_identifier] = ACTIONS(2917), - [aux_sym_tag_token1] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1202] = { - [sym_attribute] = STATE(1202), - [sym__identifier] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [anon_sym_COLON2] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_constraint] = ACTIONS(2919), - [anon_sym_val] = ACTIONS(2919), - [anon_sym_end] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_inherit] = ACTIONS(2919), - [anon_sym_method] = ACTIONS(2919), - [anon_sym_initializer] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_PIPE] = ACTIONS(2921), - [anon_sym_PIPE_RBRACK] = ACTIONS(2921), - [anon_sym_then] = ACTIONS(2919), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_LBRACE_LT] = ACTIONS(2921), - [anon_sym_GT_RBRACE] = ACTIONS(2921), - [anon_sym_begin] = ACTIONS(2919), - [sym_ocamlyacc_value] = ACTIONS(2921), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2919), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2921), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2921), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2921), - [aux_sym_number_token1] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_prefix_operator] = ACTIONS(2921), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [sym_hash_operator] = ACTIONS(2921), - [aux_sym__pow_operator_token1] = ACTIONS(2921), - [anon_sym_lsl] = ACTIONS(2919), - [anon_sym_lsr] = ACTIONS(2919), - [anon_sym_asr] = ACTIONS(2919), - [aux_sym__mult_operator_token1] = ACTIONS(2919), - [anon_sym_mod] = ACTIONS(2919), - [anon_sym_land] = ACTIONS(2919), - [anon_sym_lor] = ACTIONS(2919), - [anon_sym_lxor] = ACTIONS(2919), - [aux_sym__add_operator_token1] = ACTIONS(2919), - [sym__concat_operator] = ACTIONS(2921), - [sym__rel_operator] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym__capitalized_identifier] = ACTIONS(2921), - [aux_sym_tag_token1] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1203] = { - [sym_attribute] = STATE(1203), - [sym__identifier] = ACTIONS(2923), - [anon_sym_COLON_GT] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_COLON2] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_DASH_GT] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_constraint] = ACTIONS(2923), - [anon_sym_val] = ACTIONS(2923), - [anon_sym_end] = ACTIONS(2923), - [anon_sym_with] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_inherit] = ACTIONS(2923), - [anon_sym_method] = ACTIONS(2923), - [anon_sym_initializer] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_PIPE] = ACTIONS(2925), - [anon_sym_PIPE_RBRACK] = ACTIONS(2925), - [anon_sym_then] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_LBRACE_LT] = ACTIONS(2925), - [anon_sym_GT_RBRACE] = ACTIONS(2925), - [anon_sym_begin] = ACTIONS(2923), - [sym_ocamlyacc_value] = ACTIONS(2925), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2923), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2925), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2925), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2925), - [aux_sym_number_token1] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_prefix_operator] = ACTIONS(2925), - [anon_sym_PLUS_DOT] = ACTIONS(2923), - [anon_sym_DASH_DOT] = ACTIONS(2923), - [sym_hash_operator] = ACTIONS(2925), - [aux_sym__pow_operator_token1] = ACTIONS(2925), - [anon_sym_lsl] = ACTIONS(2923), - [anon_sym_lsr] = ACTIONS(2923), - [anon_sym_asr] = ACTIONS(2923), - [aux_sym__mult_operator_token1] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2923), - [anon_sym_land] = ACTIONS(2923), - [anon_sym_lor] = ACTIONS(2923), - [anon_sym_lxor] = ACTIONS(2923), - [aux_sym__add_operator_token1] = ACTIONS(2923), - [sym__concat_operator] = ACTIONS(2925), - [sym__rel_operator] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [sym__capitalized_identifier] = ACTIONS(2925), - [aux_sym_tag_token1] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1204] = { - [sym_attribute] = STATE(1204), - [sym__identifier] = ACTIONS(2927), - [anon_sym_COLON_GT] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [anon_sym_COLON2] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_constraint] = ACTIONS(2927), - [anon_sym_val] = ACTIONS(2927), - [anon_sym_end] = ACTIONS(2927), - [anon_sym_with] = ACTIONS(2927), - [anon_sym_object] = ACTIONS(2927), - [anon_sym_inherit] = ACTIONS(2927), - [anon_sym_method] = ACTIONS(2927), - [anon_sym_initializer] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_PIPE] = ACTIONS(2929), - [anon_sym_PIPE_RBRACK] = ACTIONS(2929), - [anon_sym_then] = ACTIONS(2927), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_do] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_LBRACE_LT] = ACTIONS(2929), - [anon_sym_GT_RBRACE] = ACTIONS(2929), - [anon_sym_begin] = ACTIONS(2927), - [sym_ocamlyacc_value] = ACTIONS(2929), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2927), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2929), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2929), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2929), - [aux_sym_number_token1] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_prefix_operator] = ACTIONS(2929), - [anon_sym_PLUS_DOT] = ACTIONS(2927), - [anon_sym_DASH_DOT] = ACTIONS(2927), - [sym_hash_operator] = ACTIONS(2929), - [aux_sym__pow_operator_token1] = ACTIONS(2929), - [anon_sym_lsl] = ACTIONS(2927), - [anon_sym_lsr] = ACTIONS(2927), - [anon_sym_asr] = ACTIONS(2927), - [aux_sym__mult_operator_token1] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2927), - [anon_sym_land] = ACTIONS(2927), - [anon_sym_lor] = ACTIONS(2927), - [anon_sym_lxor] = ACTIONS(2927), - [aux_sym__add_operator_token1] = ACTIONS(2927), - [sym__concat_operator] = ACTIONS(2929), - [sym__rel_operator] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [sym__capitalized_identifier] = ACTIONS(2929), - [aux_sym_tag_token1] = ACTIONS(2929), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1205] = { - [sym_attribute] = STATE(1205), - [sym__identifier] = ACTIONS(2931), - [anon_sym_COLON_GT] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_RPAREN] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [anon_sym_COLON2] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2933), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_constraint] = ACTIONS(2931), - [anon_sym_val] = ACTIONS(2931), - [anon_sym_end] = ACTIONS(2931), - [anon_sym_with] = ACTIONS(2931), - [anon_sym_object] = ACTIONS(2931), - [anon_sym_inherit] = ACTIONS(2931), - [anon_sym_method] = ACTIONS(2931), - [anon_sym_initializer] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_PIPE] = ACTIONS(2933), - [anon_sym_PIPE_RBRACK] = ACTIONS(2933), - [anon_sym_then] = ACTIONS(2931), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_do] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_LBRACE_LT] = ACTIONS(2933), - [anon_sym_GT_RBRACE] = ACTIONS(2933), - [anon_sym_begin] = ACTIONS(2931), - [sym_ocamlyacc_value] = ACTIONS(2933), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2931), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2933), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2933), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2933), - [aux_sym_number_token1] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_prefix_operator] = ACTIONS(2933), - [anon_sym_PLUS_DOT] = ACTIONS(2931), - [anon_sym_DASH_DOT] = ACTIONS(2931), - [sym_hash_operator] = ACTIONS(2933), - [aux_sym__pow_operator_token1] = ACTIONS(2933), - [anon_sym_lsl] = ACTIONS(2931), - [anon_sym_lsr] = ACTIONS(2931), - [anon_sym_asr] = ACTIONS(2931), - [aux_sym__mult_operator_token1] = ACTIONS(2931), - [anon_sym_mod] = ACTIONS(2931), - [anon_sym_land] = ACTIONS(2931), - [anon_sym_lor] = ACTIONS(2931), - [anon_sym_lxor] = ACTIONS(2931), - [aux_sym__add_operator_token1] = ACTIONS(2931), - [sym__concat_operator] = ACTIONS(2933), - [sym__rel_operator] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [sym__capitalized_identifier] = ACTIONS(2933), - [aux_sym_tag_token1] = ACTIONS(2933), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1206] = { - [sym_attribute] = STATE(1206), - [sym__identifier] = ACTIONS(2594), - [anon_sym_SEMI_SEMI] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_and] = ACTIONS(2594), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_external] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_COMMA] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_COLON_EQ] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2594), - [anon_sym_false] = ACTIONS(2594), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2594), - [anon_sym_exception] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_open] = ACTIONS(2594), - [anon_sym_include] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_end] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_in] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_PIPE] = ACTIONS(2596), - [anon_sym_LT_DASH] = ACTIONS(2594), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_LBRACE_LT] = ACTIONS(2596), - [anon_sym_begin] = ACTIONS(2594), - [sym_ocamlyacc_value] = ACTIONS(2596), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2594), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2596), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2596), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2596), - [aux_sym_number_token1] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_prefix_operator] = ACTIONS(2596), - [anon_sym_PLUS_DOT] = ACTIONS(2594), - [anon_sym_DASH_DOT] = ACTIONS(2594), - [sym_hash_operator] = ACTIONS(2596), - [aux_sym__pow_operator_token1] = ACTIONS(2596), - [anon_sym_lsl] = ACTIONS(2594), - [anon_sym_lsr] = ACTIONS(2594), - [anon_sym_asr] = ACTIONS(2594), - [aux_sym__mult_operator_token1] = ACTIONS(2594), - [anon_sym_mod] = ACTIONS(2594), - [anon_sym_land] = ACTIONS(2594), - [anon_sym_lor] = ACTIONS(2594), - [anon_sym_lxor] = ACTIONS(2594), - [aux_sym__add_operator_token1] = ACTIONS(2594), - [sym__concat_operator] = ACTIONS(2596), - [sym__rel_operator] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_or] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [sym_let_operator] = ACTIONS(2596), - [sym_and_operator] = ACTIONS(2596), - [sym__capitalized_identifier] = ACTIONS(2596), - [aux_sym_directive_token1] = ACTIONS(2594), - [aux_sym_tag_token1] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1207] = { - [sym_attribute] = STATE(1207), - [sym__identifier] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_COLON2] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2937), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_constraint] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [anon_sym_end] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_object] = ACTIONS(2935), - [anon_sym_inherit] = ACTIONS(2935), - [anon_sym_method] = ACTIONS(2935), - [anon_sym_initializer] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_PIPE_RBRACK] = ACTIONS(2937), - [anon_sym_then] = ACTIONS(2935), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_LBRACE_LT] = ACTIONS(2937), - [anon_sym_GT_RBRACE] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [sym_ocamlyacc_value] = ACTIONS(2937), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2935), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2937), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2937), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2937), - [aux_sym_number_token1] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_prefix_operator] = ACTIONS(2937), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [sym_hash_operator] = ACTIONS(2937), - [aux_sym__pow_operator_token1] = ACTIONS(2937), - [anon_sym_lsl] = ACTIONS(2935), - [anon_sym_lsr] = ACTIONS(2935), - [anon_sym_asr] = ACTIONS(2935), - [aux_sym__mult_operator_token1] = ACTIONS(2935), - [anon_sym_mod] = ACTIONS(2935), - [anon_sym_land] = ACTIONS(2935), - [anon_sym_lor] = ACTIONS(2935), - [anon_sym_lxor] = ACTIONS(2935), - [aux_sym__add_operator_token1] = ACTIONS(2935), - [sym__concat_operator] = ACTIONS(2937), - [sym__rel_operator] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [sym__capitalized_identifier] = ACTIONS(2937), - [aux_sym_tag_token1] = ACTIONS(2937), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1208] = { - [sym_attribute] = STATE(1208), - [sym__identifier] = ACTIONS(2939), - [anon_sym_COLON_GT] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [anon_sym_COLON2] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_constraint] = ACTIONS(2939), - [anon_sym_val] = ACTIONS(2939), - [anon_sym_end] = ACTIONS(2939), - [anon_sym_with] = ACTIONS(2939), - [anon_sym_object] = ACTIONS(2939), - [anon_sym_inherit] = ACTIONS(2939), - [anon_sym_method] = ACTIONS(2939), - [anon_sym_initializer] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2941), - [anon_sym_PIPE_RBRACK] = ACTIONS(2941), - [anon_sym_then] = ACTIONS(2939), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_do] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_LBRACE_LT] = ACTIONS(2941), - [anon_sym_GT_RBRACE] = ACTIONS(2941), - [anon_sym_begin] = ACTIONS(2939), - [sym_ocamlyacc_value] = ACTIONS(2941), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2939), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2941), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2941), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2941), - [aux_sym_number_token1] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_prefix_operator] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2939), - [anon_sym_DASH_DOT] = ACTIONS(2939), - [sym_hash_operator] = ACTIONS(2941), - [aux_sym__pow_operator_token1] = ACTIONS(2941), - [anon_sym_lsl] = ACTIONS(2939), - [anon_sym_lsr] = ACTIONS(2939), - [anon_sym_asr] = ACTIONS(2939), - [aux_sym__mult_operator_token1] = ACTIONS(2939), - [anon_sym_mod] = ACTIONS(2939), - [anon_sym_land] = ACTIONS(2939), - [anon_sym_lor] = ACTIONS(2939), - [anon_sym_lxor] = ACTIONS(2939), - [aux_sym__add_operator_token1] = ACTIONS(2939), - [sym__concat_operator] = ACTIONS(2941), - [sym__rel_operator] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [sym__capitalized_identifier] = ACTIONS(2941), - [aux_sym_tag_token1] = ACTIONS(2941), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1209] = { - [sym_attribute] = STATE(1209), - [sym__identifier] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_COLON2] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_constraint] = ACTIONS(2943), - [anon_sym_val] = ACTIONS(2943), - [anon_sym_end] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2943), - [anon_sym_object] = ACTIONS(2943), - [anon_sym_inherit] = ACTIONS(2943), - [anon_sym_method] = ACTIONS(2943), - [anon_sym_initializer] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2945), - [anon_sym_PIPE_RBRACK] = ACTIONS(2945), - [anon_sym_then] = ACTIONS(2943), - [anon_sym_else] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_LBRACE_LT] = ACTIONS(2945), - [anon_sym_GT_RBRACE] = ACTIONS(2945), - [anon_sym_begin] = ACTIONS(2943), - [sym_ocamlyacc_value] = ACTIONS(2945), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2943), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2945), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2945), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2945), - [aux_sym_number_token1] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_prefix_operator] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [sym_hash_operator] = ACTIONS(2945), - [aux_sym__pow_operator_token1] = ACTIONS(2945), - [anon_sym_lsl] = ACTIONS(2943), - [anon_sym_lsr] = ACTIONS(2943), - [anon_sym_asr] = ACTIONS(2943), - [aux_sym__mult_operator_token1] = ACTIONS(2943), - [anon_sym_mod] = ACTIONS(2943), - [anon_sym_land] = ACTIONS(2943), - [anon_sym_lor] = ACTIONS(2943), - [anon_sym_lxor] = ACTIONS(2943), - [aux_sym__add_operator_token1] = ACTIONS(2943), - [sym__concat_operator] = ACTIONS(2945), - [sym__rel_operator] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [sym__capitalized_identifier] = ACTIONS(2945), - [aux_sym_tag_token1] = ACTIONS(2945), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1210] = { - [sym_attribute] = STATE(1210), - [sym__identifier] = ACTIONS(2626), - [anon_sym_SEMI_SEMI] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_and] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_external] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_exception] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_include] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_end] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_in] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_LBRACE_LT] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [sym_ocamlyacc_value] = ACTIONS(2628), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2626), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2628), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2628), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2628), - [aux_sym_number_token1] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_prefix_operator] = ACTIONS(2628), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [sym_hash_operator] = ACTIONS(2628), - [aux_sym__pow_operator_token1] = ACTIONS(2628), - [anon_sym_lsl] = ACTIONS(2626), - [anon_sym_lsr] = ACTIONS(2626), - [anon_sym_asr] = ACTIONS(2626), - [aux_sym__mult_operator_token1] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_land] = ACTIONS(2626), - [anon_sym_lor] = ACTIONS(2626), - [anon_sym_lxor] = ACTIONS(2626), - [aux_sym__add_operator_token1] = ACTIONS(2626), - [sym__concat_operator] = ACTIONS(2628), - [sym__rel_operator] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [sym_let_operator] = ACTIONS(2628), - [sym_and_operator] = ACTIONS(2628), - [sym__capitalized_identifier] = ACTIONS(2628), - [aux_sym_directive_token1] = ACTIONS(2626), - [aux_sym_tag_token1] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1211] = { - [sym_attribute] = STATE(1211), - [sym__identifier] = ACTIONS(2947), - [anon_sym_COLON_GT] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [anon_sym_COLON2] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2949), - [anon_sym_DASH_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_constraint] = ACTIONS(2947), - [anon_sym_val] = ACTIONS(2947), - [anon_sym_end] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2947), - [anon_sym_object] = ACTIONS(2947), - [anon_sym_inherit] = ACTIONS(2947), - [anon_sym_method] = ACTIONS(2947), - [anon_sym_initializer] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_PIPE] = ACTIONS(2949), - [anon_sym_PIPE_RBRACK] = ACTIONS(2949), - [anon_sym_then] = ACTIONS(2947), - [anon_sym_else] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_LBRACE_LT] = ACTIONS(2949), - [anon_sym_GT_RBRACE] = ACTIONS(2949), - [anon_sym_begin] = ACTIONS(2947), - [sym_ocamlyacc_value] = ACTIONS(2949), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2947), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2949), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2949), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2949), - [aux_sym_number_token1] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_prefix_operator] = ACTIONS(2949), - [anon_sym_PLUS_DOT] = ACTIONS(2947), - [anon_sym_DASH_DOT] = ACTIONS(2947), - [sym_hash_operator] = ACTIONS(2949), - [aux_sym__pow_operator_token1] = ACTIONS(2949), - [anon_sym_lsl] = ACTIONS(2947), - [anon_sym_lsr] = ACTIONS(2947), - [anon_sym_asr] = ACTIONS(2947), - [aux_sym__mult_operator_token1] = ACTIONS(2947), - [anon_sym_mod] = ACTIONS(2947), - [anon_sym_land] = ACTIONS(2947), - [anon_sym_lor] = ACTIONS(2947), - [anon_sym_lxor] = ACTIONS(2947), - [aux_sym__add_operator_token1] = ACTIONS(2947), - [sym__concat_operator] = ACTIONS(2949), - [sym__rel_operator] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [sym__capitalized_identifier] = ACTIONS(2949), - [aux_sym_tag_token1] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1212] = { - [sym_attribute] = STATE(1212), - [sym__identifier] = ACTIONS(2951), - [anon_sym_COLON_GT] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_COLON2] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_constraint] = ACTIONS(2951), - [anon_sym_val] = ACTIONS(2951), - [anon_sym_end] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_inherit] = ACTIONS(2951), - [anon_sym_method] = ACTIONS(2951), - [anon_sym_initializer] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2953), - [anon_sym_PIPE_RBRACK] = ACTIONS(2953), - [anon_sym_then] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_LBRACE_LT] = ACTIONS(2953), - [anon_sym_GT_RBRACE] = ACTIONS(2953), - [anon_sym_begin] = ACTIONS(2951), - [sym_ocamlyacc_value] = ACTIONS(2953), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2951), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2953), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2953), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2953), - [aux_sym_number_token1] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_prefix_operator] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2951), - [anon_sym_DASH_DOT] = ACTIONS(2951), - [sym_hash_operator] = ACTIONS(2953), - [aux_sym__pow_operator_token1] = ACTIONS(2953), - [anon_sym_lsl] = ACTIONS(2951), - [anon_sym_lsr] = ACTIONS(2951), - [anon_sym_asr] = ACTIONS(2951), - [aux_sym__mult_operator_token1] = ACTIONS(2951), - [anon_sym_mod] = ACTIONS(2951), - [anon_sym_land] = ACTIONS(2951), - [anon_sym_lor] = ACTIONS(2951), - [anon_sym_lxor] = ACTIONS(2951), - [aux_sym__add_operator_token1] = ACTIONS(2951), - [sym__concat_operator] = ACTIONS(2953), - [sym__rel_operator] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [sym__capitalized_identifier] = ACTIONS(2953), - [aux_sym_tag_token1] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1213] = { - [sym_attribute] = STATE(1213), - [sym__identifier] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2604), - [anon_sym_and] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_external] = ACTIONS(2604), - [anon_sym_type] = ACTIONS(2604), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_COLON_EQ] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_exception] = ACTIONS(2604), - [anon_sym_module] = ACTIONS(2604), - [anon_sym_open] = ACTIONS(2604), - [anon_sym_include] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2604), - [anon_sym_end] = ACTIONS(2604), - [anon_sym_object] = ACTIONS(2604), - [anon_sym_in] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_PIPE] = ACTIONS(2606), - [anon_sym_LT_DASH] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_LBRACE_LT] = ACTIONS(2606), - [anon_sym_begin] = ACTIONS(2604), - [sym_ocamlyacc_value] = ACTIONS(2606), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2604), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2606), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2606), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2606), - [aux_sym_number_token1] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym_prefix_operator] = ACTIONS(2606), - [anon_sym_PLUS_DOT] = ACTIONS(2604), - [anon_sym_DASH_DOT] = ACTIONS(2604), - [sym_hash_operator] = ACTIONS(2606), - [aux_sym__pow_operator_token1] = ACTIONS(2606), - [anon_sym_lsl] = ACTIONS(2604), - [anon_sym_lsr] = ACTIONS(2604), - [anon_sym_asr] = ACTIONS(2604), - [aux_sym__mult_operator_token1] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_land] = ACTIONS(2604), - [anon_sym_lor] = ACTIONS(2604), - [anon_sym_lxor] = ACTIONS(2604), - [aux_sym__add_operator_token1] = ACTIONS(2604), - [sym__concat_operator] = ACTIONS(2606), - [sym__rel_operator] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_or] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [sym_let_operator] = ACTIONS(2606), - [sym_and_operator] = ACTIONS(2606), - [sym__capitalized_identifier] = ACTIONS(2606), - [aux_sym_directive_token1] = ACTIONS(2604), - [aux_sym_tag_token1] = ACTIONS(2606), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1214] = { - [sym_attribute] = STATE(1214), - [sym__identifier] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_and] = ACTIONS(2614), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_external] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_COLON_EQ] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_RBRACK] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_exception] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_open] = ACTIONS(2614), - [anon_sym_include] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_end] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [anon_sym_in] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_PIPE] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_LBRACE_LT] = ACTIONS(2616), - [anon_sym_begin] = ACTIONS(2614), - [sym_ocamlyacc_value] = ACTIONS(2616), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2614), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2616), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2616), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2616), - [aux_sym_number_token1] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_prefix_operator] = ACTIONS(2616), - [anon_sym_PLUS_DOT] = ACTIONS(2614), - [anon_sym_DASH_DOT] = ACTIONS(2614), - [sym_hash_operator] = ACTIONS(2616), - [aux_sym__pow_operator_token1] = ACTIONS(2616), - [anon_sym_lsl] = ACTIONS(2614), - [anon_sym_lsr] = ACTIONS(2614), - [anon_sym_asr] = ACTIONS(2614), - [aux_sym__mult_operator_token1] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_land] = ACTIONS(2614), - [anon_sym_lor] = ACTIONS(2614), - [anon_sym_lxor] = ACTIONS(2614), - [aux_sym__add_operator_token1] = ACTIONS(2614), - [sym__concat_operator] = ACTIONS(2616), - [sym__rel_operator] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_or] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [sym_let_operator] = ACTIONS(2616), - [sym_and_operator] = ACTIONS(2616), - [sym__capitalized_identifier] = ACTIONS(2616), - [aux_sym_directive_token1] = ACTIONS(2614), - [aux_sym_tag_token1] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1215] = { - [sym_attribute] = STATE(1215), - [sym__identifier] = ACTIONS(2955), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [anon_sym_COLON2] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_constraint] = ACTIONS(2955), - [anon_sym_val] = ACTIONS(2955), - [anon_sym_end] = ACTIONS(2955), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_inherit] = ACTIONS(2955), - [anon_sym_method] = ACTIONS(2955), - [anon_sym_initializer] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_PIPE_RBRACK] = ACTIONS(2957), - [anon_sym_then] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_LBRACE_LT] = ACTIONS(2957), - [anon_sym_GT_RBRACE] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2955), - [sym_ocamlyacc_value] = ACTIONS(2957), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2955), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2957), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2957), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2957), - [aux_sym_number_token1] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_prefix_operator] = ACTIONS(2957), - [anon_sym_PLUS_DOT] = ACTIONS(2955), - [anon_sym_DASH_DOT] = ACTIONS(2955), - [sym_hash_operator] = ACTIONS(2957), - [aux_sym__pow_operator_token1] = ACTIONS(2957), - [anon_sym_lsl] = ACTIONS(2955), - [anon_sym_lsr] = ACTIONS(2955), - [anon_sym_asr] = ACTIONS(2955), - [aux_sym__mult_operator_token1] = ACTIONS(2955), - [anon_sym_mod] = ACTIONS(2955), - [anon_sym_land] = ACTIONS(2955), - [anon_sym_lor] = ACTIONS(2955), - [anon_sym_lxor] = ACTIONS(2955), - [aux_sym__add_operator_token1] = ACTIONS(2955), - [sym__concat_operator] = ACTIONS(2957), - [sym__rel_operator] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [sym__capitalized_identifier] = ACTIONS(2957), - [aux_sym_tag_token1] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1216] = { - [sym_attribute] = STATE(1216), - [sym__identifier] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_COLON2] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_constraint] = ACTIONS(2959), - [anon_sym_val] = ACTIONS(2959), - [anon_sym_end] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_inherit] = ACTIONS(2959), - [anon_sym_method] = ACTIONS(2959), - [anon_sym_initializer] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2961), - [anon_sym_LBRACK_PIPE] = ACTIONS(2961), - [anon_sym_PIPE_RBRACK] = ACTIONS(2961), - [anon_sym_then] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_LBRACE_LT] = ACTIONS(2961), - [anon_sym_GT_RBRACE] = ACTIONS(2961), - [anon_sym_begin] = ACTIONS(2959), - [sym_ocamlyacc_value] = ACTIONS(2961), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2959), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2961), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2961), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2961), - [aux_sym_number_token1] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_prefix_operator] = ACTIONS(2961), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [sym_hash_operator] = ACTIONS(2961), - [aux_sym__pow_operator_token1] = ACTIONS(2961), - [anon_sym_lsl] = ACTIONS(2959), - [anon_sym_lsr] = ACTIONS(2959), - [anon_sym_asr] = ACTIONS(2959), - [aux_sym__mult_operator_token1] = ACTIONS(2959), - [anon_sym_mod] = ACTIONS(2959), - [anon_sym_land] = ACTIONS(2959), - [anon_sym_lor] = ACTIONS(2959), - [anon_sym_lxor] = ACTIONS(2959), - [aux_sym__add_operator_token1] = ACTIONS(2959), - [sym__concat_operator] = ACTIONS(2961), - [sym__rel_operator] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__capitalized_identifier] = ACTIONS(2961), - [aux_sym_tag_token1] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1217] = { - [sym_attribute] = STATE(1217), - [sym__identifier] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_true] = ACTIONS(2963), - [anon_sym_false] = ACTIONS(2963), - [anon_sym_COLON2] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_DASH_GT] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_constraint] = ACTIONS(2963), - [anon_sym_val] = ACTIONS(2963), - [anon_sym_end] = ACTIONS(2963), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_inherit] = ACTIONS(2963), - [anon_sym_method] = ACTIONS(2963), - [anon_sym_initializer] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_PIPE_RBRACK] = ACTIONS(2965), - [anon_sym_then] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_LBRACE_LT] = ACTIONS(2965), - [anon_sym_GT_RBRACE] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [sym_ocamlyacc_value] = ACTIONS(2965), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2963), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2965), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2965), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2965), - [aux_sym_number_token1] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym_prefix_operator] = ACTIONS(2965), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [sym_hash_operator] = ACTIONS(2965), - [aux_sym__pow_operator_token1] = ACTIONS(2965), - [anon_sym_lsl] = ACTIONS(2963), - [anon_sym_lsr] = ACTIONS(2963), - [anon_sym_asr] = ACTIONS(2963), - [aux_sym__mult_operator_token1] = ACTIONS(2963), - [anon_sym_mod] = ACTIONS(2963), - [anon_sym_land] = ACTIONS(2963), - [anon_sym_lor] = ACTIONS(2963), - [anon_sym_lxor] = ACTIONS(2963), - [aux_sym__add_operator_token1] = ACTIONS(2963), - [sym__concat_operator] = ACTIONS(2965), - [sym__rel_operator] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [sym__capitalized_identifier] = ACTIONS(2965), - [aux_sym_tag_token1] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1218] = { - [sym_attribute] = STATE(1218), - [sym__identifier] = ACTIONS(2967), - [anon_sym_COLON_GT] = ACTIONS(2969), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_true] = ACTIONS(2967), - [anon_sym_false] = ACTIONS(2967), - [anon_sym_COLON2] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2969), - [anon_sym_DASH_GT] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_constraint] = ACTIONS(2967), - [anon_sym_val] = ACTIONS(2967), - [anon_sym_end] = ACTIONS(2967), - [anon_sym_with] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_inherit] = ACTIONS(2967), - [anon_sym_method] = ACTIONS(2967), - [anon_sym_initializer] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(2969), - [anon_sym_LBRACK_PIPE] = ACTIONS(2969), - [anon_sym_PIPE_RBRACK] = ACTIONS(2969), - [anon_sym_then] = ACTIONS(2967), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_do] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_LBRACE_LT] = ACTIONS(2969), - [anon_sym_GT_RBRACE] = ACTIONS(2969), - [anon_sym_begin] = ACTIONS(2967), - [sym_ocamlyacc_value] = ACTIONS(2969), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2967), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2969), - [aux_sym_number_token1] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym_prefix_operator] = ACTIONS(2969), - [anon_sym_PLUS_DOT] = ACTIONS(2967), - [anon_sym_DASH_DOT] = ACTIONS(2967), - [sym_hash_operator] = ACTIONS(2969), - [aux_sym__pow_operator_token1] = ACTIONS(2969), - [anon_sym_lsl] = ACTIONS(2967), - [anon_sym_lsr] = ACTIONS(2967), - [anon_sym_asr] = ACTIONS(2967), - [aux_sym__mult_operator_token1] = ACTIONS(2967), - [anon_sym_mod] = ACTIONS(2967), - [anon_sym_land] = ACTIONS(2967), - [anon_sym_lor] = ACTIONS(2967), - [anon_sym_lxor] = ACTIONS(2967), - [aux_sym__add_operator_token1] = ACTIONS(2967), - [sym__concat_operator] = ACTIONS(2969), - [sym__rel_operator] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [sym__capitalized_identifier] = ACTIONS(2969), - [aux_sym_tag_token1] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1219] = { - [sym_attribute] = STATE(1219), - [sym__identifier] = ACTIONS(2971), - [anon_sym_COLON_GT] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [anon_sym_COLON2] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_constraint] = ACTIONS(2971), - [anon_sym_val] = ACTIONS(2971), - [anon_sym_end] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2971), - [anon_sym_object] = ACTIONS(2971), - [anon_sym_inherit] = ACTIONS(2971), - [anon_sym_method] = ACTIONS(2971), - [anon_sym_initializer] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2973), - [anon_sym_PIPE_RBRACK] = ACTIONS(2973), - [anon_sym_then] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2971), - [anon_sym_do] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2971), - [anon_sym_LBRACE_LT] = ACTIONS(2973), - [anon_sym_GT_RBRACE] = ACTIONS(2973), - [anon_sym_begin] = ACTIONS(2971), - [sym_ocamlyacc_value] = ACTIONS(2973), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2973), - [aux_sym_number_token1] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [sym_prefix_operator] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [sym_hash_operator] = ACTIONS(2973), - [aux_sym__pow_operator_token1] = ACTIONS(2973), - [anon_sym_lsl] = ACTIONS(2971), - [anon_sym_lsr] = ACTIONS(2971), - [anon_sym_asr] = ACTIONS(2971), - [aux_sym__mult_operator_token1] = ACTIONS(2971), - [anon_sym_mod] = ACTIONS(2971), - [anon_sym_land] = ACTIONS(2971), - [anon_sym_lor] = ACTIONS(2971), - [anon_sym_lxor] = ACTIONS(2971), - [aux_sym__add_operator_token1] = ACTIONS(2971), - [sym__concat_operator] = ACTIONS(2973), - [sym__rel_operator] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__capitalized_identifier] = ACTIONS(2973), - [aux_sym_tag_token1] = ACTIONS(2973), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1220] = { - [sym_attribute] = STATE(1220), - [sym__identifier] = ACTIONS(2975), - [anon_sym_COLON_GT] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2975), - [anon_sym_false] = ACTIONS(2975), - [anon_sym_COLON2] = ACTIONS(2975), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_constraint] = ACTIONS(2975), - [anon_sym_val] = ACTIONS(2975), - [anon_sym_end] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2975), - [anon_sym_object] = ACTIONS(2975), - [anon_sym_inherit] = ACTIONS(2975), - [anon_sym_method] = ACTIONS(2975), - [anon_sym_initializer] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_POUND] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2977), - [anon_sym_PIPE_RBRACK] = ACTIONS(2977), - [anon_sym_then] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_do] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2975), - [anon_sym_LBRACE_LT] = ACTIONS(2977), - [anon_sym_GT_RBRACE] = ACTIONS(2977), - [anon_sym_begin] = ACTIONS(2975), - [sym_ocamlyacc_value] = ACTIONS(2977), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2977), - [aux_sym_number_token1] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_prefix_operator] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [sym_hash_operator] = ACTIONS(2977), - [aux_sym__pow_operator_token1] = ACTIONS(2977), - [anon_sym_lsl] = ACTIONS(2975), - [anon_sym_lsr] = ACTIONS(2975), - [anon_sym_asr] = ACTIONS(2975), - [aux_sym__mult_operator_token1] = ACTIONS(2975), - [anon_sym_mod] = ACTIONS(2975), - [anon_sym_land] = ACTIONS(2975), - [anon_sym_lor] = ACTIONS(2975), - [anon_sym_lxor] = ACTIONS(2975), - [aux_sym__add_operator_token1] = ACTIONS(2975), - [sym__concat_operator] = ACTIONS(2977), - [sym__rel_operator] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [sym__capitalized_identifier] = ACTIONS(2977), - [aux_sym_tag_token1] = ACTIONS(2977), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1221] = { - [sym_attribute] = STATE(1221), - [sym__identifier] = ACTIONS(2979), - [anon_sym_COLON_GT] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [anon_sym_COLON2] = ACTIONS(2979), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_constraint] = ACTIONS(2979), - [anon_sym_val] = ACTIONS(2979), - [anon_sym_end] = ACTIONS(2979), - [anon_sym_with] = ACTIONS(2979), - [anon_sym_object] = ACTIONS(2979), - [anon_sym_inherit] = ACTIONS(2979), - [anon_sym_method] = ACTIONS(2979), - [anon_sym_initializer] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_COLON_COLON] = ACTIONS(2981), - [anon_sym_LBRACK_PIPE] = ACTIONS(2981), - [anon_sym_PIPE_RBRACK] = ACTIONS(2981), - [anon_sym_then] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_do] = ACTIONS(2979), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_LBRACE_LT] = ACTIONS(2981), - [anon_sym_GT_RBRACE] = ACTIONS(2981), - [anon_sym_begin] = ACTIONS(2979), - [sym_ocamlyacc_value] = ACTIONS(2981), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2981), - [aux_sym_number_token1] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym_prefix_operator] = ACTIONS(2981), - [anon_sym_PLUS_DOT] = ACTIONS(2979), - [anon_sym_DASH_DOT] = ACTIONS(2979), - [sym_hash_operator] = ACTIONS(2981), - [aux_sym__pow_operator_token1] = ACTIONS(2981), - [anon_sym_lsl] = ACTIONS(2979), - [anon_sym_lsr] = ACTIONS(2979), - [anon_sym_asr] = ACTIONS(2979), - [aux_sym__mult_operator_token1] = ACTIONS(2979), - [anon_sym_mod] = ACTIONS(2979), - [anon_sym_land] = ACTIONS(2979), - [anon_sym_lor] = ACTIONS(2979), - [anon_sym_lxor] = ACTIONS(2979), - [aux_sym__add_operator_token1] = ACTIONS(2979), - [sym__concat_operator] = ACTIONS(2981), - [sym__rel_operator] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__capitalized_identifier] = ACTIONS(2981), - [aux_sym_tag_token1] = ACTIONS(2981), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1222] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4995), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1222), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4568), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2534), - [anon_sym_and] = ACTIONS(2536), - [anon_sym_EQ] = ACTIONS(2983), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2536), - [anon_sym_module] = ACTIONS(2536), - [anon_sym_open] = ACTIONS(2536), - [anon_sym_include] = ACTIONS(2536), - [anon_sym_class] = ACTIONS(2536), - [anon_sym_val] = ACTIONS(2536), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2534), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2534), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2534), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1223] = { - [sym_attribute] = STATE(1223), - [sym__identifier] = ACTIONS(2985), - [anon_sym_COLON_GT] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_COLON2] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_constraint] = ACTIONS(2985), - [anon_sym_val] = ACTIONS(2985), - [anon_sym_end] = ACTIONS(2985), - [anon_sym_with] = ACTIONS(2985), - [anon_sym_object] = ACTIONS(2985), - [anon_sym_inherit] = ACTIONS(2985), - [anon_sym_method] = ACTIONS(2985), - [anon_sym_initializer] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_PIPE] = ACTIONS(2987), - [anon_sym_PIPE_RBRACK] = ACTIONS(2987), - [anon_sym_then] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_LBRACE_LT] = ACTIONS(2987), - [anon_sym_GT_RBRACE] = ACTIONS(2987), - [anon_sym_begin] = ACTIONS(2985), - [sym_ocamlyacc_value] = ACTIONS(2987), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2985), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2987), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2987), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2987), - [aux_sym_number_token1] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_prefix_operator] = ACTIONS(2987), - [anon_sym_PLUS_DOT] = ACTIONS(2985), - [anon_sym_DASH_DOT] = ACTIONS(2985), - [sym_hash_operator] = ACTIONS(2987), - [aux_sym__pow_operator_token1] = ACTIONS(2987), - [anon_sym_lsl] = ACTIONS(2985), - [anon_sym_lsr] = ACTIONS(2985), - [anon_sym_asr] = ACTIONS(2985), - [aux_sym__mult_operator_token1] = ACTIONS(2985), - [anon_sym_mod] = ACTIONS(2985), - [anon_sym_land] = ACTIONS(2985), - [anon_sym_lor] = ACTIONS(2985), - [anon_sym_lxor] = ACTIONS(2985), - [aux_sym__add_operator_token1] = ACTIONS(2985), - [sym__concat_operator] = ACTIONS(2987), - [sym__rel_operator] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [sym__capitalized_identifier] = ACTIONS(2987), - [aux_sym_tag_token1] = ACTIONS(2987), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1224] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4970), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1224), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4621), - [aux_sym_let_binding_repeat1] = STATE(1222), - [ts_builtin_sym_end] = ACTIONS(2516), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2516), - [anon_sym_and] = ACTIONS(2518), - [anon_sym_EQ] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2518), - [anon_sym_type] = ACTIONS(2518), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2518), - [anon_sym_module] = ACTIONS(2518), - [anon_sym_open] = ACTIONS(2518), - [anon_sym_include] = ACTIONS(2518), - [anon_sym_class] = ACTIONS(2518), - [anon_sym_val] = ACTIONS(2518), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2516), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2516), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2516), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1225] = { - [sym_attribute] = STATE(1225), - [sym__identifier] = ACTIONS(2600), - [anon_sym_COLON_GT] = ACTIONS(2602), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_RPAREN] = ACTIONS(2602), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_COLON_EQ] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_COLON2] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_DASH_GT] = ACTIONS(2600), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_constraint] = ACTIONS(2600), - [anon_sym_val] = ACTIONS(2600), - [anon_sym_end] = ACTIONS(2600), - [anon_sym_with] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [anon_sym_inherit] = ACTIONS(2600), - [anon_sym_method] = ACTIONS(2600), - [anon_sym_initializer] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_LBRACK_PIPE] = ACTIONS(2602), - [anon_sym_LT_DASH] = ACTIONS(2600), - [anon_sym_then] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_do] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_LBRACE_LT] = ACTIONS(2602), - [anon_sym_GT_RBRACE] = ACTIONS(2602), - [anon_sym_begin] = ACTIONS(2600), - [sym_ocamlyacc_value] = ACTIONS(2602), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2600), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2602), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2602), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2602), - [aux_sym_number_token1] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_DQUOTE] = ACTIONS(2602), - [sym_prefix_operator] = ACTIONS(2602), - [anon_sym_PLUS_DOT] = ACTIONS(2600), - [anon_sym_DASH_DOT] = ACTIONS(2600), - [sym_hash_operator] = ACTIONS(2602), - [aux_sym__pow_operator_token1] = ACTIONS(2602), - [anon_sym_lsl] = ACTIONS(2600), - [anon_sym_lsr] = ACTIONS(2600), - [anon_sym_asr] = ACTIONS(2600), - [aux_sym__mult_operator_token1] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_land] = ACTIONS(2600), - [anon_sym_lor] = ACTIONS(2600), - [anon_sym_lxor] = ACTIONS(2600), - [aux_sym__add_operator_token1] = ACTIONS(2600), - [sym__concat_operator] = ACTIONS(2602), - [sym__rel_operator] = ACTIONS(2600), - [anon_sym_AMP_AMP] = ACTIONS(2600), - [anon_sym_or] = ACTIONS(2600), - [anon_sym_PIPE_PIPE] = ACTIONS(2600), - [sym__capitalized_identifier] = ACTIONS(2602), - [aux_sym_tag_token1] = ACTIONS(2602), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1226] = { - [sym_attribute] = STATE(1226), - [sym__identifier] = ACTIONS(2991), - [anon_sym_COLON_GT] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2991), - [anon_sym_false] = ACTIONS(2991), - [anon_sym_COLON2] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_constraint] = ACTIONS(2991), - [anon_sym_val] = ACTIONS(2991), - [anon_sym_end] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [anon_sym_object] = ACTIONS(2991), - [anon_sym_inherit] = ACTIONS(2991), - [anon_sym_method] = ACTIONS(2991), - [anon_sym_initializer] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_PIPE] = ACTIONS(2993), - [anon_sym_PIPE_RBRACK] = ACTIONS(2993), - [anon_sym_then] = ACTIONS(2991), - [anon_sym_else] = ACTIONS(2991), - [anon_sym_do] = ACTIONS(2991), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_LBRACE_LT] = ACTIONS(2993), - [anon_sym_GT_RBRACE] = ACTIONS(2993), - [anon_sym_begin] = ACTIONS(2991), - [sym_ocamlyacc_value] = ACTIONS(2993), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2991), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2993), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2993), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2993), - [aux_sym_number_token1] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_prefix_operator] = ACTIONS(2993), - [anon_sym_PLUS_DOT] = ACTIONS(2991), - [anon_sym_DASH_DOT] = ACTIONS(2991), - [sym_hash_operator] = ACTIONS(2993), - [aux_sym__pow_operator_token1] = ACTIONS(2993), - [anon_sym_lsl] = ACTIONS(2991), - [anon_sym_lsr] = ACTIONS(2991), - [anon_sym_asr] = ACTIONS(2991), - [aux_sym__mult_operator_token1] = ACTIONS(2991), - [anon_sym_mod] = ACTIONS(2991), - [anon_sym_land] = ACTIONS(2991), - [anon_sym_lor] = ACTIONS(2991), - [anon_sym_lxor] = ACTIONS(2991), - [aux_sym__add_operator_token1] = ACTIONS(2991), - [sym__concat_operator] = ACTIONS(2993), - [sym__rel_operator] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [sym__capitalized_identifier] = ACTIONS(2993), - [aux_sym_tag_token1] = ACTIONS(2993), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1227] = { - [sym_attribute] = STATE(1227), - [sym__identifier] = ACTIONS(2801), - [anon_sym_COLON_GT] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_COLON2] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_constraint] = ACTIONS(2801), - [anon_sym_val] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_inherit] = ACTIONS(2801), - [anon_sym_method] = ACTIONS(2801), - [anon_sym_initializer] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_PIPE_RBRACK] = ACTIONS(2803), - [anon_sym_then] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_GT_RBRACE] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1228] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__class_typed] = STATE(4967), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1228), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_expression_item_repeat1] = STATE(4613), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2456), - [sym__identifier] = ACTIONS(2556), - [anon_sym_SEMI_SEMI] = ACTIONS(2456), - [anon_sym_and] = ACTIONS(2458), - [anon_sym_EQ] = ACTIONS(2995), - [anon_sym_TILDE] = ACTIONS(2560), - [anon_sym_QMARK] = ACTIONS(2560), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_external] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_PLUS] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2564), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_COLON2] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_exception] = ACTIONS(2458), - [anon_sym_module] = ACTIONS(2458), - [anon_sym_open] = ACTIONS(2458), - [anon_sym_include] = ACTIONS(2458), - [anon_sym_class] = ACTIONS(2458), - [anon_sym_val] = ACTIONS(2458), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_LBRACK_PIPE] = ACTIONS(2576), - [anon_sym_begin] = ACTIONS(2578), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2456), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2580), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2582), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2456), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2456), - [aux_sym_number_token1] = ACTIONS(2584), - [anon_sym_SQUOTE] = ACTIONS(2586), - [anon_sym_DQUOTE] = ACTIONS(2588), - [sym__capitalized_identifier] = ACTIONS(2590), - [aux_sym_tag_token1] = ACTIONS(2592), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1229] = { - [sym_attribute] = STATE(1229), - [sym__identifier] = ACTIONS(2997), - [anon_sym_COLON_GT] = ACTIONS(2999), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [anon_sym_COLON2] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_constraint] = ACTIONS(2997), - [anon_sym_val] = ACTIONS(2997), - [anon_sym_end] = ACTIONS(2997), - [anon_sym_with] = ACTIONS(2997), - [anon_sym_object] = ACTIONS(2997), - [anon_sym_inherit] = ACTIONS(2997), - [anon_sym_method] = ACTIONS(2997), - [anon_sym_initializer] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK_PIPE] = ACTIONS(2999), - [anon_sym_PIPE_RBRACK] = ACTIONS(2999), - [anon_sym_then] = ACTIONS(2997), - [anon_sym_else] = ACTIONS(2997), - [anon_sym_do] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2997), - [anon_sym_LBRACE_LT] = ACTIONS(2999), - [anon_sym_GT_RBRACE] = ACTIONS(2999), - [anon_sym_begin] = ACTIONS(2997), - [sym_ocamlyacc_value] = ACTIONS(2999), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2999), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2999), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2999), - [aux_sym_number_token1] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym_prefix_operator] = ACTIONS(2999), - [anon_sym_PLUS_DOT] = ACTIONS(2997), - [anon_sym_DASH_DOT] = ACTIONS(2997), - [sym_hash_operator] = ACTIONS(2999), - [aux_sym__pow_operator_token1] = ACTIONS(2999), - [anon_sym_lsl] = ACTIONS(2997), - [anon_sym_lsr] = ACTIONS(2997), - [anon_sym_asr] = ACTIONS(2997), - [aux_sym__mult_operator_token1] = ACTIONS(2997), - [anon_sym_mod] = ACTIONS(2997), - [anon_sym_land] = ACTIONS(2997), - [anon_sym_lor] = ACTIONS(2997), - [anon_sym_lxor] = ACTIONS(2997), - [aux_sym__add_operator_token1] = ACTIONS(2997), - [sym__concat_operator] = ACTIONS(2999), - [sym__rel_operator] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [sym__capitalized_identifier] = ACTIONS(2999), - [aux_sym_tag_token1] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1230] = { - [sym_attribute] = STATE(1230), - [sym__identifier] = ACTIONS(3001), - [anon_sym_COLON_GT] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_COLON2] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_constraint] = ACTIONS(3001), - [anon_sym_val] = ACTIONS(3001), - [anon_sym_end] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3001), - [anon_sym_object] = ACTIONS(3001), - [anon_sym_inherit] = ACTIONS(3001), - [anon_sym_method] = ACTIONS(3001), - [anon_sym_initializer] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3003), - [anon_sym_PIPE_RBRACK] = ACTIONS(3003), - [anon_sym_then] = ACTIONS(3001), - [anon_sym_else] = ACTIONS(3001), - [anon_sym_do] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_LBRACE_LT] = ACTIONS(3003), - [anon_sym_GT_RBRACE] = ACTIONS(3003), - [anon_sym_begin] = ACTIONS(3001), - [sym_ocamlyacc_value] = ACTIONS(3003), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3001), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3003), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3003), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3003), - [aux_sym_number_token1] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [sym_prefix_operator] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3001), - [anon_sym_DASH_DOT] = ACTIONS(3001), - [sym_hash_operator] = ACTIONS(3003), - [aux_sym__pow_operator_token1] = ACTIONS(3003), - [anon_sym_lsl] = ACTIONS(3001), - [anon_sym_lsr] = ACTIONS(3001), - [anon_sym_asr] = ACTIONS(3001), - [aux_sym__mult_operator_token1] = ACTIONS(3001), - [anon_sym_mod] = ACTIONS(3001), - [anon_sym_land] = ACTIONS(3001), - [anon_sym_lor] = ACTIONS(3001), - [anon_sym_lxor] = ACTIONS(3001), - [aux_sym__add_operator_token1] = ACTIONS(3001), - [sym__concat_operator] = ACTIONS(3003), - [sym__rel_operator] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [sym__capitalized_identifier] = ACTIONS(3003), - [aux_sym_tag_token1] = ACTIONS(3003), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1231] = { - [sym__simple_expression] = STATE(3407), - [sym_typed_expression] = STATE(3454), - [sym_list_expression] = STATE(3454), - [sym_array_expression] = STATE(3454), - [sym_record_expression] = STATE(3454), - [sym__argument] = STATE(3632), - [sym_labeled_argument] = STATE(3613), - [sym_prefix_expression] = STATE(3454), - [sym_hash_expression] = STATE(3454), - [sym_field_get_expression] = STATE(3454), - [sym_array_get_expression] = STATE(3454), - [sym_string_get_expression] = STATE(3454), - [sym_bigarray_get_expression] = STATE(3454), - [sym_coercion_expression] = STATE(3454), - [sym_local_open_expression] = STATE(3454), - [sym_package_expression] = STATE(3454), - [sym_new_expression] = STATE(3454), - [sym_object_copy_expression] = STATE(3454), - [sym_method_invocation] = STATE(3454), - [sym_object_expression] = STATE(3454), - [sym_parenthesized_expression] = STATE(3454), - [sym_attribute] = STATE(1231), - [sym__extension] = STATE(3407), - [sym_extension] = STATE(3427), - [sym_quoted_extension] = STATE(3427), - [sym__constant] = STATE(3454), - [sym_number] = STATE(3386), - [sym_character] = STATE(3386), - [sym_string] = STATE(3386), - [sym_quoted_string] = STATE(3386), - [sym_boolean] = STATE(3386), - [sym_unit] = STATE(3386), - [sym__value_name] = STATE(3337), - [sym_parenthesized_operator] = STATE(3432), - [sym_value_path] = STATE(3454), - [sym_module_path] = STATE(7525), - [sym_constructor_path] = STATE(3454), - [sym__label] = STATE(3515), - [sym_tag] = STATE(3454), - [aux_sym_class_application_repeat1] = STATE(1157), - [sym__identifier] = ACTIONS(2694), - [anon_sym_TILDE] = ACTIONS(2696), - [anon_sym_QMARK] = ACTIONS(2696), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2700), - [anon_sym_true] = ACTIONS(2702), - [anon_sym_false] = ACTIONS(2702), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_constraint] = ACTIONS(2155), - [anon_sym_val] = ACTIONS(2155), - [anon_sym_end] = ACTIONS(2155), - [anon_sym_object] = ACTIONS(2706), - [anon_sym_inherit] = ACTIONS(2155), - [anon_sym_method] = ACTIONS(2155), - [anon_sym_as] = ACTIONS(2155), - [anon_sym_initializer] = ACTIONS(2155), - [anon_sym_LBRACK_PIPE] = ACTIONS(2708), - [anon_sym_new] = ACTIONS(2710), - [anon_sym_LBRACE_LT] = ACTIONS(2712), - [anon_sym_begin] = ACTIONS(2714), - [sym_ocamlyacc_value] = ACTIONS(2716), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2155), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2153), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2718), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2720), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2153), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2153), - [aux_sym_number_token1] = ACTIONS(2722), - [anon_sym_SQUOTE] = ACTIONS(2724), - [anon_sym_DQUOTE] = ACTIONS(2726), - [sym_prefix_operator] = ACTIONS(2728), - [sym__capitalized_identifier] = ACTIONS(2730), - [aux_sym_tag_token1] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1232] = { - [sym_attribute] = STATE(1232), - [sym__identifier] = ACTIONS(2622), - [anon_sym_COLON_GT] = ACTIONS(2624), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_RPAREN] = ACTIONS(2624), - [anon_sym_COMMA] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_COLON2] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_DASH_GT] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2624), - [anon_sym_RBRACE] = ACTIONS(2624), - [anon_sym_constraint] = ACTIONS(2622), - [anon_sym_val] = ACTIONS(2622), - [anon_sym_end] = ACTIONS(2622), - [anon_sym_with] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_inherit] = ACTIONS(2622), - [anon_sym_method] = ACTIONS(2622), - [anon_sym_initializer] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_PIPE] = ACTIONS(2624), - [anon_sym_LT_DASH] = ACTIONS(2622), - [anon_sym_then] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_do] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_LBRACE_LT] = ACTIONS(2624), - [anon_sym_GT_RBRACE] = ACTIONS(2624), - [anon_sym_begin] = ACTIONS(2622), - [sym_ocamlyacc_value] = ACTIONS(2624), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2622), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2624), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2624), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2624), - [aux_sym_number_token1] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_prefix_operator] = ACTIONS(2624), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [sym_hash_operator] = ACTIONS(2624), - [aux_sym__pow_operator_token1] = ACTIONS(2624), - [anon_sym_lsl] = ACTIONS(2622), - [anon_sym_lsr] = ACTIONS(2622), - [anon_sym_asr] = ACTIONS(2622), - [aux_sym__mult_operator_token1] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_land] = ACTIONS(2622), - [anon_sym_lor] = ACTIONS(2622), - [anon_sym_lxor] = ACTIONS(2622), - [aux_sym__add_operator_token1] = ACTIONS(2622), - [sym__concat_operator] = ACTIONS(2624), - [sym__rel_operator] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [sym__capitalized_identifier] = ACTIONS(2624), - [aux_sym_tag_token1] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1233] = { - [sym_attribute] = STATE(1233), - [sym__identifier] = ACTIONS(3005), - [anon_sym_COLON_GT] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_COLON2] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_constraint] = ACTIONS(3005), - [anon_sym_val] = ACTIONS(3005), - [anon_sym_end] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_inherit] = ACTIONS(3005), - [anon_sym_method] = ACTIONS(3005), - [anon_sym_initializer] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3007), - [anon_sym_PIPE_RBRACK] = ACTIONS(3007), - [anon_sym_then] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_do] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_LBRACE_LT] = ACTIONS(3007), - [anon_sym_GT_RBRACE] = ACTIONS(3007), - [anon_sym_begin] = ACTIONS(3005), - [sym_ocamlyacc_value] = ACTIONS(3007), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3005), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3007), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3007), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3007), - [aux_sym_number_token1] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [sym_prefix_operator] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [sym_hash_operator] = ACTIONS(3007), - [aux_sym__pow_operator_token1] = ACTIONS(3007), - [anon_sym_lsl] = ACTIONS(3005), - [anon_sym_lsr] = ACTIONS(3005), - [anon_sym_asr] = ACTIONS(3005), - [aux_sym__mult_operator_token1] = ACTIONS(3005), - [anon_sym_mod] = ACTIONS(3005), - [anon_sym_land] = ACTIONS(3005), - [anon_sym_lor] = ACTIONS(3005), - [anon_sym_lxor] = ACTIONS(3005), - [aux_sym__add_operator_token1] = ACTIONS(3005), - [sym__concat_operator] = ACTIONS(3007), - [sym__rel_operator] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [sym__capitalized_identifier] = ACTIONS(3007), - [aux_sym_tag_token1] = ACTIONS(3007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1234] = { - [sym__simple_expression] = STATE(3407), - [sym_typed_expression] = STATE(3454), - [sym_list_expression] = STATE(3454), - [sym_array_expression] = STATE(3454), - [sym_record_expression] = STATE(3454), - [sym__argument] = STATE(3632), - [sym_labeled_argument] = STATE(3613), - [sym_prefix_expression] = STATE(3454), - [sym_hash_expression] = STATE(3454), - [sym_field_get_expression] = STATE(3454), - [sym_array_get_expression] = STATE(3454), - [sym_string_get_expression] = STATE(3454), - [sym_bigarray_get_expression] = STATE(3454), - [sym_coercion_expression] = STATE(3454), - [sym_local_open_expression] = STATE(3454), - [sym_package_expression] = STATE(3454), - [sym_new_expression] = STATE(3454), - [sym_object_copy_expression] = STATE(3454), - [sym_method_invocation] = STATE(3454), - [sym_object_expression] = STATE(3454), - [sym_parenthesized_expression] = STATE(3454), - [sym_attribute] = STATE(1234), - [sym__extension] = STATE(3407), - [sym_extension] = STATE(3427), - [sym_quoted_extension] = STATE(3427), - [sym__constant] = STATE(3454), - [sym_number] = STATE(3386), - [sym_character] = STATE(3386), - [sym_string] = STATE(3386), - [sym_quoted_string] = STATE(3386), - [sym_boolean] = STATE(3386), - [sym_unit] = STATE(3386), - [sym__value_name] = STATE(3337), - [sym_parenthesized_operator] = STATE(3432), - [sym_value_path] = STATE(3454), - [sym_module_path] = STATE(7525), - [sym_constructor_path] = STATE(3454), - [sym__label] = STATE(3515), - [sym_tag] = STATE(3454), - [aux_sym_class_application_repeat1] = STATE(1234), - [sym__identifier] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3012), - [anon_sym_QMARK] = ACTIONS(3012), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_true] = ACTIONS(3021), - [anon_sym_false] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3024), - [anon_sym_constraint] = ACTIONS(1076), - [anon_sym_val] = ACTIONS(1076), - [anon_sym_end] = ACTIONS(1076), - [anon_sym_object] = ACTIONS(3027), - [anon_sym_inherit] = ACTIONS(1076), - [anon_sym_method] = ACTIONS(1076), - [anon_sym_as] = ACTIONS(1076), - [anon_sym_initializer] = ACTIONS(1076), - [anon_sym_LBRACK_PIPE] = ACTIONS(3030), - [anon_sym_new] = ACTIONS(3033), - [anon_sym_LBRACE_LT] = ACTIONS(3036), - [anon_sym_begin] = ACTIONS(3039), - [sym_ocamlyacc_value] = ACTIONS(3042), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1076), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1068), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3045), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3048), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1068), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1068), - [aux_sym_number_token1] = ACTIONS(3051), - [anon_sym_SQUOTE] = ACTIONS(3054), - [anon_sym_DQUOTE] = ACTIONS(3057), - [sym_prefix_operator] = ACTIONS(3060), - [sym__capitalized_identifier] = ACTIONS(3063), - [aux_sym_tag_token1] = ACTIONS(3066), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1235] = { - [sym_attribute] = STATE(1235), - [sym__identifier] = ACTIONS(3069), - [anon_sym_COLON_GT] = ACTIONS(3071), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_COLON2] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_DASH_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_constraint] = ACTIONS(3069), - [anon_sym_val] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_with] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_inherit] = ACTIONS(3069), - [anon_sym_method] = ACTIONS(3069), - [anon_sym_initializer] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_RBRACK] = ACTIONS(3071), - [anon_sym_then] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_do] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_GT_RBRACE] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1236] = { - [sym_attribute] = STATE(1236), - [sym__identifier] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_true] = ACTIONS(3073), - [anon_sym_false] = ACTIONS(3073), - [anon_sym_COLON2] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_DASH_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_constraint] = ACTIONS(3073), - [anon_sym_val] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), - [anon_sym_inherit] = ACTIONS(3073), - [anon_sym_method] = ACTIONS(3073), - [anon_sym_initializer] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_PIPE_RBRACK] = ACTIONS(3075), - [anon_sym_then] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_LBRACE_LT] = ACTIONS(3075), - [anon_sym_GT_RBRACE] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [sym_ocamlyacc_value] = ACTIONS(3075), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3073), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3075), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3075), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3075), - [aux_sym_number_token1] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_prefix_operator] = ACTIONS(3075), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [sym_hash_operator] = ACTIONS(3075), - [aux_sym__pow_operator_token1] = ACTIONS(3075), - [anon_sym_lsl] = ACTIONS(3073), - [anon_sym_lsr] = ACTIONS(3073), - [anon_sym_asr] = ACTIONS(3073), - [aux_sym__mult_operator_token1] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3073), - [anon_sym_land] = ACTIONS(3073), - [anon_sym_lor] = ACTIONS(3073), - [anon_sym_lxor] = ACTIONS(3073), - [aux_sym__add_operator_token1] = ACTIONS(3073), - [sym__concat_operator] = ACTIONS(3075), - [sym__rel_operator] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [sym__capitalized_identifier] = ACTIONS(3075), - [aux_sym_tag_token1] = ACTIONS(3075), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1237] = { - [sym_attribute] = STATE(1237), - [sym__identifier] = ACTIONS(2622), - [anon_sym_SEMI_SEMI] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_and] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_external] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_exception] = ACTIONS(2622), - [anon_sym_module] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_include] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_end] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_in] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_PIPE] = ACTIONS(2624), - [anon_sym_LT_DASH] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_LBRACE_LT] = ACTIONS(2624), - [anon_sym_begin] = ACTIONS(2622), - [sym_ocamlyacc_value] = ACTIONS(2624), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2622), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2624), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2624), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2624), - [aux_sym_number_token1] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_prefix_operator] = ACTIONS(2624), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [sym_hash_operator] = ACTIONS(2624), - [aux_sym__pow_operator_token1] = ACTIONS(2624), - [anon_sym_lsl] = ACTIONS(2622), - [anon_sym_lsr] = ACTIONS(2622), - [anon_sym_asr] = ACTIONS(2622), - [aux_sym__mult_operator_token1] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_land] = ACTIONS(2622), - [anon_sym_lor] = ACTIONS(2622), - [anon_sym_lxor] = ACTIONS(2622), - [aux_sym__add_operator_token1] = ACTIONS(2622), - [sym__concat_operator] = ACTIONS(2624), - [sym__rel_operator] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [sym_let_operator] = ACTIONS(2624), - [sym_and_operator] = ACTIONS(2624), - [sym__capitalized_identifier] = ACTIONS(2624), - [aux_sym_directive_token1] = ACTIONS(2622), - [aux_sym_tag_token1] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1238] = { - [sym_attribute] = STATE(1238), - [sym__identifier] = ACTIONS(3077), - [anon_sym_COLON_GT] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_true] = ACTIONS(3077), - [anon_sym_false] = ACTIONS(3077), - [anon_sym_COLON2] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_DASH_GT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_constraint] = ACTIONS(3077), - [anon_sym_val] = ACTIONS(3077), - [anon_sym_end] = ACTIONS(3077), - [anon_sym_with] = ACTIONS(3077), - [anon_sym_object] = ACTIONS(3077), - [anon_sym_inherit] = ACTIONS(3077), - [anon_sym_method] = ACTIONS(3077), - [anon_sym_initializer] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3079), - [anon_sym_PIPE_RBRACK] = ACTIONS(3079), - [anon_sym_then] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_LBRACE_LT] = ACTIONS(3079), - [anon_sym_GT_RBRACE] = ACTIONS(3079), - [anon_sym_begin] = ACTIONS(3077), - [sym_ocamlyacc_value] = ACTIONS(3079), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3077), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3079), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3079), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3079), - [aux_sym_number_token1] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_prefix_operator] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3077), - [anon_sym_DASH_DOT] = ACTIONS(3077), - [sym_hash_operator] = ACTIONS(3079), - [aux_sym__pow_operator_token1] = ACTIONS(3079), - [anon_sym_lsl] = ACTIONS(3077), - [anon_sym_lsr] = ACTIONS(3077), - [anon_sym_asr] = ACTIONS(3077), - [aux_sym__mult_operator_token1] = ACTIONS(3077), - [anon_sym_mod] = ACTIONS(3077), - [anon_sym_land] = ACTIONS(3077), - [anon_sym_lor] = ACTIONS(3077), - [anon_sym_lxor] = ACTIONS(3077), - [aux_sym__add_operator_token1] = ACTIONS(3077), - [sym__concat_operator] = ACTIONS(3079), - [sym__rel_operator] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [sym__capitalized_identifier] = ACTIONS(3079), - [aux_sym_tag_token1] = ACTIONS(3079), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1239] = { - [sym_attribute] = STATE(1239), - [sym__identifier] = ACTIONS(3081), - [anon_sym_COLON_GT] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_COLON2] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_constraint] = ACTIONS(3081), - [anon_sym_val] = ACTIONS(3081), - [anon_sym_end] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_inherit] = ACTIONS(3081), - [anon_sym_method] = ACTIONS(3081), - [anon_sym_initializer] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3083), - [anon_sym_PIPE_RBRACK] = ACTIONS(3083), - [anon_sym_then] = ACTIONS(3081), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_do] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_LBRACE_LT] = ACTIONS(3083), - [anon_sym_GT_RBRACE] = ACTIONS(3083), - [anon_sym_begin] = ACTIONS(3081), - [sym_ocamlyacc_value] = ACTIONS(3083), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3081), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3083), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3083), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3083), - [aux_sym_number_token1] = ACTIONS(3083), - [anon_sym_SQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_prefix_operator] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3081), - [anon_sym_DASH_DOT] = ACTIONS(3081), - [sym_hash_operator] = ACTIONS(3083), - [aux_sym__pow_operator_token1] = ACTIONS(3083), - [anon_sym_lsl] = ACTIONS(3081), - [anon_sym_lsr] = ACTIONS(3081), - [anon_sym_asr] = ACTIONS(3081), - [aux_sym__mult_operator_token1] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3081), - [anon_sym_land] = ACTIONS(3081), - [anon_sym_lor] = ACTIONS(3081), - [anon_sym_lxor] = ACTIONS(3081), - [aux_sym__add_operator_token1] = ACTIONS(3081), - [sym__concat_operator] = ACTIONS(3083), - [sym__rel_operator] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [sym__capitalized_identifier] = ACTIONS(3083), - [aux_sym_tag_token1] = ACTIONS(3083), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1240] = { - [sym_attribute] = STATE(1240), - [sym__identifier] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_DASH_GT] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_constraint] = ACTIONS(3085), - [anon_sym_val] = ACTIONS(3085), - [anon_sym_end] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_inherit] = ACTIONS(3085), - [anon_sym_method] = ACTIONS(3085), - [anon_sym_initializer] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3087), - [anon_sym_PIPE_RBRACK] = ACTIONS(3087), - [anon_sym_then] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_do] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_LBRACE_LT] = ACTIONS(3087), - [anon_sym_GT_RBRACE] = ACTIONS(3087), - [anon_sym_begin] = ACTIONS(3085), - [sym_ocamlyacc_value] = ACTIONS(3087), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3085), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3087), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3087), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3087), - [aux_sym_number_token1] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym_prefix_operator] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3085), - [anon_sym_DASH_DOT] = ACTIONS(3085), - [sym_hash_operator] = ACTIONS(3087), - [aux_sym__pow_operator_token1] = ACTIONS(3087), - [anon_sym_lsl] = ACTIONS(3085), - [anon_sym_lsr] = ACTIONS(3085), - [anon_sym_asr] = ACTIONS(3085), - [aux_sym__mult_operator_token1] = ACTIONS(3085), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_land] = ACTIONS(3085), - [anon_sym_lor] = ACTIONS(3085), - [anon_sym_lxor] = ACTIONS(3085), - [aux_sym__add_operator_token1] = ACTIONS(3085), - [sym__concat_operator] = ACTIONS(3087), - [sym__rel_operator] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__capitalized_identifier] = ACTIONS(3087), - [aux_sym_tag_token1] = ACTIONS(3087), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1241] = { - [sym_attribute] = STATE(1241), - [sym__identifier] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_COLON2] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_DASH_GT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_constraint] = ACTIONS(3089), - [anon_sym_val] = ACTIONS(3089), - [anon_sym_end] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_inherit] = ACTIONS(3089), - [anon_sym_method] = ACTIONS(3089), - [anon_sym_initializer] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3091), - [anon_sym_PIPE_RBRACK] = ACTIONS(3091), - [anon_sym_then] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_LBRACE_LT] = ACTIONS(3091), - [anon_sym_GT_RBRACE] = ACTIONS(3091), - [anon_sym_begin] = ACTIONS(3089), - [sym_ocamlyacc_value] = ACTIONS(3091), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3089), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3091), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3091), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3091), - [aux_sym_number_token1] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_prefix_operator] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3089), - [anon_sym_DASH_DOT] = ACTIONS(3089), - [sym_hash_operator] = ACTIONS(3091), - [aux_sym__pow_operator_token1] = ACTIONS(3091), - [anon_sym_lsl] = ACTIONS(3089), - [anon_sym_lsr] = ACTIONS(3089), - [anon_sym_asr] = ACTIONS(3089), - [aux_sym__mult_operator_token1] = ACTIONS(3089), - [anon_sym_mod] = ACTIONS(3089), - [anon_sym_land] = ACTIONS(3089), - [anon_sym_lor] = ACTIONS(3089), - [anon_sym_lxor] = ACTIONS(3089), - [aux_sym__add_operator_token1] = ACTIONS(3089), - [sym__concat_operator] = ACTIONS(3091), - [sym__rel_operator] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [sym__capitalized_identifier] = ACTIONS(3091), - [aux_sym_tag_token1] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1242] = { - [sym_attribute] = STATE(1242), - [sym__identifier] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_true] = ACTIONS(3093), - [anon_sym_false] = ACTIONS(3093), - [anon_sym_COLON2] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_constraint] = ACTIONS(3093), - [anon_sym_val] = ACTIONS(3093), - [anon_sym_end] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_object] = ACTIONS(3093), - [anon_sym_inherit] = ACTIONS(3093), - [anon_sym_method] = ACTIONS(3093), - [anon_sym_initializer] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_PIPE_RBRACK] = ACTIONS(3095), - [anon_sym_then] = ACTIONS(3093), - [anon_sym_else] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_LBRACE_LT] = ACTIONS(3095), - [anon_sym_GT_RBRACE] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [sym_ocamlyacc_value] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3093), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3095), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3095), - [aux_sym_number_token1] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_prefix_operator] = ACTIONS(3095), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [sym_hash_operator] = ACTIONS(3095), - [aux_sym__pow_operator_token1] = ACTIONS(3095), - [anon_sym_lsl] = ACTIONS(3093), - [anon_sym_lsr] = ACTIONS(3093), - [anon_sym_asr] = ACTIONS(3093), - [aux_sym__mult_operator_token1] = ACTIONS(3093), - [anon_sym_mod] = ACTIONS(3093), - [anon_sym_land] = ACTIONS(3093), - [anon_sym_lor] = ACTIONS(3093), - [anon_sym_lxor] = ACTIONS(3093), - [aux_sym__add_operator_token1] = ACTIONS(3093), - [sym__concat_operator] = ACTIONS(3095), - [sym__rel_operator] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [sym__capitalized_identifier] = ACTIONS(3095), - [aux_sym_tag_token1] = ACTIONS(3095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1243] = { - [sym_attribute] = STATE(1243), - [sym__identifier] = ACTIONS(3097), - [anon_sym_COLON_GT] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_COLON2] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_constraint] = ACTIONS(3097), - [anon_sym_val] = ACTIONS(3097), - [anon_sym_end] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_inherit] = ACTIONS(3097), - [anon_sym_method] = ACTIONS(3097), - [anon_sym_initializer] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3099), - [anon_sym_PIPE_RBRACK] = ACTIONS(3099), - [anon_sym_then] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_LBRACE_LT] = ACTIONS(3099), - [anon_sym_GT_RBRACE] = ACTIONS(3099), - [anon_sym_begin] = ACTIONS(3097), - [sym_ocamlyacc_value] = ACTIONS(3099), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3099), - [aux_sym_number_token1] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_prefix_operator] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [sym_hash_operator] = ACTIONS(3099), - [aux_sym__pow_operator_token1] = ACTIONS(3099), - [anon_sym_lsl] = ACTIONS(3097), - [anon_sym_lsr] = ACTIONS(3097), - [anon_sym_asr] = ACTIONS(3097), - [aux_sym__mult_operator_token1] = ACTIONS(3097), - [anon_sym_mod] = ACTIONS(3097), - [anon_sym_land] = ACTIONS(3097), - [anon_sym_lor] = ACTIONS(3097), - [anon_sym_lxor] = ACTIONS(3097), - [aux_sym__add_operator_token1] = ACTIONS(3097), - [sym__concat_operator] = ACTIONS(3099), - [sym__rel_operator] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [sym__capitalized_identifier] = ACTIONS(3099), - [aux_sym_tag_token1] = ACTIONS(3099), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1244] = { - [sym_attribute] = STATE(1244), - [sym__identifier] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_COLON2] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_constraint] = ACTIONS(3101), - [anon_sym_val] = ACTIONS(3101), - [anon_sym_end] = ACTIONS(3101), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_inherit] = ACTIONS(3101), - [anon_sym_method] = ACTIONS(3101), - [anon_sym_initializer] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_PIPE_RBRACK] = ACTIONS(3103), - [anon_sym_then] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_LBRACE_LT] = ACTIONS(3103), - [anon_sym_GT_RBRACE] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [sym_ocamlyacc_value] = ACTIONS(3103), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3101), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3103), - [aux_sym_number_token1] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_prefix_operator] = ACTIONS(3103), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [sym_hash_operator] = ACTIONS(3103), - [aux_sym__pow_operator_token1] = ACTIONS(3103), - [anon_sym_lsl] = ACTIONS(3101), - [anon_sym_lsr] = ACTIONS(3101), - [anon_sym_asr] = ACTIONS(3101), - [aux_sym__mult_operator_token1] = ACTIONS(3101), - [anon_sym_mod] = ACTIONS(3101), - [anon_sym_land] = ACTIONS(3101), - [anon_sym_lor] = ACTIONS(3101), - [anon_sym_lxor] = ACTIONS(3101), - [aux_sym__add_operator_token1] = ACTIONS(3101), - [sym__concat_operator] = ACTIONS(3103), - [sym__rel_operator] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [sym__capitalized_identifier] = ACTIONS(3103), - [aux_sym_tag_token1] = ACTIONS(3103), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1245] = { - [sym_attribute] = STATE(1245), - [sym__identifier] = ACTIONS(3105), - [anon_sym_COLON_GT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_COLON2] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_constraint] = ACTIONS(3105), - [anon_sym_val] = ACTIONS(3105), - [anon_sym_end] = ACTIONS(3105), - [anon_sym_with] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_inherit] = ACTIONS(3105), - [anon_sym_method] = ACTIONS(3105), - [anon_sym_initializer] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_PIPE] = ACTIONS(3107), - [anon_sym_PIPE_RBRACK] = ACTIONS(3107), - [anon_sym_then] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_LBRACE_LT] = ACTIONS(3107), - [anon_sym_GT_RBRACE] = ACTIONS(3107), - [anon_sym_begin] = ACTIONS(3105), - [sym_ocamlyacc_value] = ACTIONS(3107), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3105), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3107), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3107), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3107), - [aux_sym_number_token1] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_prefix_operator] = ACTIONS(3107), - [anon_sym_PLUS_DOT] = ACTIONS(3105), - [anon_sym_DASH_DOT] = ACTIONS(3105), - [sym_hash_operator] = ACTIONS(3107), - [aux_sym__pow_operator_token1] = ACTIONS(3107), - [anon_sym_lsl] = ACTIONS(3105), - [anon_sym_lsr] = ACTIONS(3105), - [anon_sym_asr] = ACTIONS(3105), - [aux_sym__mult_operator_token1] = ACTIONS(3105), - [anon_sym_mod] = ACTIONS(3105), - [anon_sym_land] = ACTIONS(3105), - [anon_sym_lor] = ACTIONS(3105), - [anon_sym_lxor] = ACTIONS(3105), - [aux_sym__add_operator_token1] = ACTIONS(3105), - [sym__concat_operator] = ACTIONS(3107), - [sym__rel_operator] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3107), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1246] = { - [sym_attribute] = STATE(1246), - [sym__identifier] = ACTIONS(3109), - [anon_sym_COLON_GT] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_COLON2] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(1045), - [anon_sym_DASH_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_constraint] = ACTIONS(3109), - [anon_sym_val] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_with] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_inherit] = ACTIONS(3109), - [anon_sym_method] = ACTIONS(3109), - [anon_sym_initializer] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(1047), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_RBRACK] = ACTIONS(3111), - [anon_sym_then] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_GT_RBRACE] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [sym_hash_operator] = ACTIONS(1049), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1247] = { - [sym_attribute] = STATE(1247), - [sym__identifier] = ACTIONS(3113), - [anon_sym_COLON_GT] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_true] = ACTIONS(3113), - [anon_sym_false] = ACTIONS(3113), - [anon_sym_COLON2] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_constraint] = ACTIONS(3113), - [anon_sym_val] = ACTIONS(3113), - [anon_sym_end] = ACTIONS(3113), - [anon_sym_with] = ACTIONS(3113), - [anon_sym_object] = ACTIONS(3113), - [anon_sym_inherit] = ACTIONS(3113), - [anon_sym_method] = ACTIONS(3113), - [anon_sym_initializer] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_PIPE] = ACTIONS(3115), - [anon_sym_PIPE_RBRACK] = ACTIONS(3115), - [anon_sym_then] = ACTIONS(3113), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_do] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_LBRACE_LT] = ACTIONS(3115), - [anon_sym_GT_RBRACE] = ACTIONS(3115), - [anon_sym_begin] = ACTIONS(3113), - [sym_ocamlyacc_value] = ACTIONS(3115), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3113), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3115), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3115), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3115), - [aux_sym_number_token1] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_prefix_operator] = ACTIONS(3115), - [anon_sym_PLUS_DOT] = ACTIONS(3113), - [anon_sym_DASH_DOT] = ACTIONS(3113), - [sym_hash_operator] = ACTIONS(3115), - [aux_sym__pow_operator_token1] = ACTIONS(3115), - [anon_sym_lsl] = ACTIONS(3113), - [anon_sym_lsr] = ACTIONS(3113), - [anon_sym_asr] = ACTIONS(3113), - [aux_sym__mult_operator_token1] = ACTIONS(3113), - [anon_sym_mod] = ACTIONS(3113), - [anon_sym_land] = ACTIONS(3113), - [anon_sym_lor] = ACTIONS(3113), - [anon_sym_lxor] = ACTIONS(3113), - [aux_sym__add_operator_token1] = ACTIONS(3113), - [sym__concat_operator] = ACTIONS(3115), - [sym__rel_operator] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [sym__capitalized_identifier] = ACTIONS(3115), - [aux_sym_tag_token1] = ACTIONS(3115), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1248] = { - [sym_attribute] = STATE(1248), - [sym__identifier] = ACTIONS(3117), - [anon_sym_COLON_GT] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_COLON2] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_constraint] = ACTIONS(3117), - [anon_sym_val] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_with] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_inherit] = ACTIONS(3117), - [anon_sym_method] = ACTIONS(3117), - [anon_sym_initializer] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_PIPE_RBRACK] = ACTIONS(3119), - [anon_sym_then] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_GT_RBRACE] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1249] = { - [sym_attribute] = STATE(1249), - [sym__identifier] = ACTIONS(2951), - [anon_sym_COLON_GT] = ACTIONS(2953), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_RPAREN] = ACTIONS(2953), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_COLON2] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_DASH_GT] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2953), - [anon_sym_RBRACE] = ACTIONS(2953), - [anon_sym_constraint] = ACTIONS(2951), - [anon_sym_val] = ACTIONS(2951), - [anon_sym_end] = ACTIONS(2951), - [anon_sym_with] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_inherit] = ACTIONS(2951), - [anon_sym_method] = ACTIONS(2951), - [anon_sym_initializer] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2953), - [anon_sym_then] = ACTIONS(2951), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_do] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_LBRACE_LT] = ACTIONS(2953), - [anon_sym_GT_RBRACE] = ACTIONS(2953), - [anon_sym_begin] = ACTIONS(2951), - [sym_ocamlyacc_value] = ACTIONS(2953), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2951), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2953), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2953), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2953), - [aux_sym_number_token1] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_prefix_operator] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2951), - [anon_sym_DASH_DOT] = ACTIONS(2951), - [sym_hash_operator] = ACTIONS(2953), - [aux_sym__pow_operator_token1] = ACTIONS(2953), - [anon_sym_lsl] = ACTIONS(2951), - [anon_sym_lsr] = ACTIONS(2951), - [anon_sym_asr] = ACTIONS(2951), - [aux_sym__mult_operator_token1] = ACTIONS(2951), - [anon_sym_mod] = ACTIONS(2951), - [anon_sym_land] = ACTIONS(2951), - [anon_sym_lor] = ACTIONS(2951), - [anon_sym_lxor] = ACTIONS(2951), - [aux_sym__add_operator_token1] = ACTIONS(2951), - [sym__concat_operator] = ACTIONS(2953), - [sym__rel_operator] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [sym__capitalized_identifier] = ACTIONS(2953), - [aux_sym_tag_token1] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1250] = { - [sym_attribute] = STATE(1250), - [sym__identifier] = ACTIONS(2738), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_and] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_external] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_exception] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_open] = ACTIONS(2738), - [anon_sym_include] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_end] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_PIPE] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_LBRACE_LT] = ACTIONS(2740), - [anon_sym_begin] = ACTIONS(2738), - [sym_ocamlyacc_value] = ACTIONS(2740), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2738), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2740), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2740), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2740), - [aux_sym_number_token1] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_prefix_operator] = ACTIONS(2740), - [anon_sym_PLUS_DOT] = ACTIONS(2738), - [anon_sym_DASH_DOT] = ACTIONS(2738), - [sym_hash_operator] = ACTIONS(2740), - [aux_sym__pow_operator_token1] = ACTIONS(2740), - [anon_sym_lsl] = ACTIONS(2738), - [anon_sym_lsr] = ACTIONS(2738), - [anon_sym_asr] = ACTIONS(2738), - [aux_sym__mult_operator_token1] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_land] = ACTIONS(2738), - [anon_sym_lor] = ACTIONS(2738), - [anon_sym_lxor] = ACTIONS(2738), - [aux_sym__add_operator_token1] = ACTIONS(2738), - [sym__concat_operator] = ACTIONS(2740), - [sym__rel_operator] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [sym_let_operator] = ACTIONS(2740), - [sym_and_operator] = ACTIONS(2740), - [sym__capitalized_identifier] = ACTIONS(2740), - [aux_sym_directive_token1] = ACTIONS(2738), - [aux_sym_tag_token1] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1251] = { - [sym_attribute] = STATE(1251), - [sym__identifier] = ACTIONS(2903), - [anon_sym_COLON_GT] = ACTIONS(2905), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_RPAREN] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [anon_sym_COLON2] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_DASH_GT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2905), - [anon_sym_RBRACE] = ACTIONS(2905), - [anon_sym_constraint] = ACTIONS(2903), - [anon_sym_val] = ACTIONS(2903), - [anon_sym_end] = ACTIONS(2903), - [anon_sym_with] = ACTIONS(2903), - [anon_sym_object] = ACTIONS(2903), - [anon_sym_inherit] = ACTIONS(2903), - [anon_sym_method] = ACTIONS(2903), - [anon_sym_initializer] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_PIPE] = ACTIONS(2905), - [anon_sym_then] = ACTIONS(2903), - [anon_sym_else] = ACTIONS(2903), - [anon_sym_do] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_LBRACE_LT] = ACTIONS(2905), - [anon_sym_GT_RBRACE] = ACTIONS(2905), - [anon_sym_begin] = ACTIONS(2903), - [sym_ocamlyacc_value] = ACTIONS(2905), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2903), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2905), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2905), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2905), - [aux_sym_number_token1] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_prefix_operator] = ACTIONS(2905), - [anon_sym_PLUS_DOT] = ACTIONS(2903), - [anon_sym_DASH_DOT] = ACTIONS(2903), - [sym_hash_operator] = ACTIONS(2905), - [aux_sym__pow_operator_token1] = ACTIONS(2905), - [anon_sym_lsl] = ACTIONS(2903), - [anon_sym_lsr] = ACTIONS(2903), - [anon_sym_asr] = ACTIONS(2903), - [aux_sym__mult_operator_token1] = ACTIONS(2903), - [anon_sym_mod] = ACTIONS(2903), - [anon_sym_land] = ACTIONS(2903), - [anon_sym_lor] = ACTIONS(2903), - [anon_sym_lxor] = ACTIONS(2903), - [aux_sym__add_operator_token1] = ACTIONS(2903), - [sym__concat_operator] = ACTIONS(2905), - [sym__rel_operator] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym__capitalized_identifier] = ACTIONS(2905), - [aux_sym_tag_token1] = ACTIONS(2905), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1252] = { - [sym_attribute] = STATE(1252), - [sym__identifier] = ACTIONS(2674), - [anon_sym_COLON_GT] = ACTIONS(2676), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_RPAREN] = ACTIONS(2676), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_COLON_EQ] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_COLON2] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_DASH_GT] = ACTIONS(2674), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2676), - [anon_sym_RBRACE] = ACTIONS(2676), - [anon_sym_constraint] = ACTIONS(2674), - [anon_sym_val] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), - [anon_sym_with] = ACTIONS(2674), - [anon_sym_object] = ACTIONS(2674), - [anon_sym_inherit] = ACTIONS(2674), - [anon_sym_method] = ACTIONS(2674), - [anon_sym_initializer] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_PIPE] = ACTIONS(2676), - [anon_sym_then] = ACTIONS(2674), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_do] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_LBRACE_LT] = ACTIONS(2676), - [anon_sym_GT_RBRACE] = ACTIONS(2676), - [anon_sym_begin] = ACTIONS(2674), - [sym_ocamlyacc_value] = ACTIONS(2676), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2674), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2676), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2676), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2676), - [aux_sym_number_token1] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_prefix_operator] = ACTIONS(2676), - [anon_sym_PLUS_DOT] = ACTIONS(2674), - [anon_sym_DASH_DOT] = ACTIONS(2674), - [sym_hash_operator] = ACTIONS(2676), - [aux_sym__pow_operator_token1] = ACTIONS(2676), - [anon_sym_lsl] = ACTIONS(2674), - [anon_sym_lsr] = ACTIONS(2674), - [anon_sym_asr] = ACTIONS(2674), - [aux_sym__mult_operator_token1] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_land] = ACTIONS(2674), - [anon_sym_lor] = ACTIONS(2674), - [anon_sym_lxor] = ACTIONS(2674), - [aux_sym__add_operator_token1] = ACTIONS(2674), - [sym__concat_operator] = ACTIONS(2676), - [sym__rel_operator] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [sym__capitalized_identifier] = ACTIONS(2676), - [aux_sym_tag_token1] = ACTIONS(2676), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1253] = { - [sym_attribute] = STATE(1253), - [sym__identifier] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2975), - [anon_sym_and] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_external] = ACTIONS(2975), - [anon_sym_type] = ACTIONS(2975), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2975), - [anon_sym_false] = ACTIONS(2975), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_exception] = ACTIONS(2975), - [anon_sym_module] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2975), - [anon_sym_include] = ACTIONS(2975), - [anon_sym_class] = ACTIONS(2975), - [anon_sym_end] = ACTIONS(2975), - [anon_sym_object] = ACTIONS(2975), - [anon_sym_in] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_POUND] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2975), - [anon_sym_LBRACE_LT] = ACTIONS(2977), - [anon_sym_begin] = ACTIONS(2975), - [sym_ocamlyacc_value] = ACTIONS(2977), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2977), - [aux_sym_number_token1] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_prefix_operator] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [sym_hash_operator] = ACTIONS(2977), - [aux_sym__pow_operator_token1] = ACTIONS(2977), - [anon_sym_lsl] = ACTIONS(2975), - [anon_sym_lsr] = ACTIONS(2975), - [anon_sym_asr] = ACTIONS(2975), - [aux_sym__mult_operator_token1] = ACTIONS(2975), - [anon_sym_mod] = ACTIONS(2975), - [anon_sym_land] = ACTIONS(2975), - [anon_sym_lor] = ACTIONS(2975), - [anon_sym_lxor] = ACTIONS(2975), - [aux_sym__add_operator_token1] = ACTIONS(2975), - [sym__concat_operator] = ACTIONS(2977), - [sym__rel_operator] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [sym_let_operator] = ACTIONS(2977), - [sym_and_operator] = ACTIONS(2977), - [sym__capitalized_identifier] = ACTIONS(2977), - [aux_sym_directive_token1] = ACTIONS(2975), - [aux_sym_tag_token1] = ACTIONS(2977), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1254] = { - [sym_attribute] = STATE(1254), - [sym__identifier] = ACTIONS(2815), - [anon_sym_COLON_GT] = ACTIONS(2817), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_RPAREN] = ACTIONS(2817), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_COLON2] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_DASH_GT] = ACTIONS(2815), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2817), - [anon_sym_RBRACE] = ACTIONS(2817), - [anon_sym_constraint] = ACTIONS(2815), - [anon_sym_val] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_with] = ACTIONS(2815), - [anon_sym_object] = ACTIONS(2815), - [anon_sym_inherit] = ACTIONS(2815), - [anon_sym_method] = ACTIONS(2815), - [anon_sym_initializer] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_PIPE] = ACTIONS(2817), - [anon_sym_then] = ACTIONS(2815), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_do] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_LBRACE_LT] = ACTIONS(2817), - [anon_sym_GT_RBRACE] = ACTIONS(2817), - [anon_sym_begin] = ACTIONS(2815), - [sym_ocamlyacc_value] = ACTIONS(2817), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2815), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2817), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2817), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2817), - [aux_sym_number_token1] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_prefix_operator] = ACTIONS(2817), - [anon_sym_PLUS_DOT] = ACTIONS(2815), - [anon_sym_DASH_DOT] = ACTIONS(2815), - [sym_hash_operator] = ACTIONS(2817), - [aux_sym__pow_operator_token1] = ACTIONS(2817), - [anon_sym_lsl] = ACTIONS(2815), - [anon_sym_lsr] = ACTIONS(2815), - [anon_sym_asr] = ACTIONS(2815), - [aux_sym__mult_operator_token1] = ACTIONS(2815), - [anon_sym_mod] = ACTIONS(2815), - [anon_sym_land] = ACTIONS(2815), - [anon_sym_lor] = ACTIONS(2815), - [anon_sym_lxor] = ACTIONS(2815), - [aux_sym__add_operator_token1] = ACTIONS(2815), - [sym__concat_operator] = ACTIONS(2817), - [sym__rel_operator] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [sym__capitalized_identifier] = ACTIONS(2817), - [aux_sym_tag_token1] = ACTIONS(2817), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1255] = { - [sym_attribute] = STATE(1255), - [sym__identifier] = ACTIONS(2845), - [anon_sym_SEMI_SEMI] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_and] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_external] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_COLON_EQ] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym_exception] = ACTIONS(2845), - [anon_sym_module] = ACTIONS(2845), - [anon_sym_open] = ACTIONS(2845), - [anon_sym_include] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_in] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_PIPE] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_LBRACE_LT] = ACTIONS(2847), - [anon_sym_begin] = ACTIONS(2845), - [sym_ocamlyacc_value] = ACTIONS(2847), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2845), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2847), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2847), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2847), - [aux_sym_number_token1] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_prefix_operator] = ACTIONS(2847), - [anon_sym_PLUS_DOT] = ACTIONS(2845), - [anon_sym_DASH_DOT] = ACTIONS(2845), - [sym_hash_operator] = ACTIONS(2847), - [aux_sym__pow_operator_token1] = ACTIONS(2847), - [anon_sym_lsl] = ACTIONS(2845), - [anon_sym_lsr] = ACTIONS(2845), - [anon_sym_asr] = ACTIONS(2845), - [aux_sym__mult_operator_token1] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_land] = ACTIONS(2845), - [anon_sym_lor] = ACTIONS(2845), - [anon_sym_lxor] = ACTIONS(2845), - [aux_sym__add_operator_token1] = ACTIONS(2845), - [sym__concat_operator] = ACTIONS(2847), - [sym__rel_operator] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [sym_let_operator] = ACTIONS(2847), - [sym_and_operator] = ACTIONS(2847), - [sym__capitalized_identifier] = ACTIONS(2847), - [aux_sym_directive_token1] = ACTIONS(2845), - [aux_sym_tag_token1] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1256] = { - [sym_attribute] = STATE(1256), - [sym__identifier] = ACTIONS(2923), - [anon_sym_SEMI_SEMI] = ACTIONS(2925), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_and] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_external] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_exception] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_open] = ACTIONS(2923), - [anon_sym_include] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_end] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_PIPE] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_LBRACE_LT] = ACTIONS(2925), - [anon_sym_begin] = ACTIONS(2923), - [sym_ocamlyacc_value] = ACTIONS(2925), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2923), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2925), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2925), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2925), - [aux_sym_number_token1] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_prefix_operator] = ACTIONS(2925), - [anon_sym_PLUS_DOT] = ACTIONS(2923), - [anon_sym_DASH_DOT] = ACTIONS(2923), - [sym_hash_operator] = ACTIONS(2925), - [aux_sym__pow_operator_token1] = ACTIONS(2925), - [anon_sym_lsl] = ACTIONS(2923), - [anon_sym_lsr] = ACTIONS(2923), - [anon_sym_asr] = ACTIONS(2923), - [aux_sym__mult_operator_token1] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2923), - [anon_sym_land] = ACTIONS(2923), - [anon_sym_lor] = ACTIONS(2923), - [anon_sym_lxor] = ACTIONS(2923), - [aux_sym__add_operator_token1] = ACTIONS(2923), - [sym__concat_operator] = ACTIONS(2925), - [sym__rel_operator] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [sym_let_operator] = ACTIONS(2925), - [sym_and_operator] = ACTIONS(2925), - [sym__capitalized_identifier] = ACTIONS(2925), - [aux_sym_directive_token1] = ACTIONS(2923), - [aux_sym_tag_token1] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1257] = { - [sym_attribute] = STATE(1257), - [sym__identifier] = ACTIONS(3089), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_and] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_external] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(3089), - [anon_sym_module] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_include] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_end] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_LBRACE_LT] = ACTIONS(3091), - [anon_sym_begin] = ACTIONS(3089), - [sym_ocamlyacc_value] = ACTIONS(3091), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3089), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3091), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3091), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3091), - [aux_sym_number_token1] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_prefix_operator] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3089), - [anon_sym_DASH_DOT] = ACTIONS(3089), - [sym_hash_operator] = ACTIONS(3091), - [aux_sym__pow_operator_token1] = ACTIONS(3091), - [anon_sym_lsl] = ACTIONS(3089), - [anon_sym_lsr] = ACTIONS(3089), - [anon_sym_asr] = ACTIONS(3089), - [aux_sym__mult_operator_token1] = ACTIONS(3089), - [anon_sym_mod] = ACTIONS(3089), - [anon_sym_land] = ACTIONS(3089), - [anon_sym_lor] = ACTIONS(3089), - [anon_sym_lxor] = ACTIONS(3089), - [aux_sym__add_operator_token1] = ACTIONS(3089), - [sym__concat_operator] = ACTIONS(3091), - [sym__rel_operator] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [sym_let_operator] = ACTIONS(3091), - [sym_and_operator] = ACTIONS(3091), - [sym__capitalized_identifier] = ACTIONS(3091), - [aux_sym_directive_token1] = ACTIONS(3089), - [aux_sym_tag_token1] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1258] = { - [sym_attribute] = STATE(1258), - [sym__identifier] = ACTIONS(2907), - [anon_sym_COLON_GT] = ACTIONS(2909), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_RPAREN] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [anon_sym_COLON2] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_DASH_GT] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2909), - [anon_sym_RBRACE] = ACTIONS(2909), - [anon_sym_constraint] = ACTIONS(2907), - [anon_sym_val] = ACTIONS(2907), - [anon_sym_end] = ACTIONS(2907), - [anon_sym_with] = ACTIONS(2907), - [anon_sym_object] = ACTIONS(2907), - [anon_sym_inherit] = ACTIONS(2907), - [anon_sym_method] = ACTIONS(2907), - [anon_sym_initializer] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_PIPE] = ACTIONS(2909), - [anon_sym_then] = ACTIONS(2907), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_do] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_LBRACE_LT] = ACTIONS(2909), - [anon_sym_GT_RBRACE] = ACTIONS(2909), - [anon_sym_begin] = ACTIONS(2907), - [sym_ocamlyacc_value] = ACTIONS(2909), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2907), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2909), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2909), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2909), - [aux_sym_number_token1] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_prefix_operator] = ACTIONS(2909), - [anon_sym_PLUS_DOT] = ACTIONS(2907), - [anon_sym_DASH_DOT] = ACTIONS(2907), - [sym_hash_operator] = ACTIONS(2909), - [aux_sym__pow_operator_token1] = ACTIONS(2909), - [anon_sym_lsl] = ACTIONS(2907), - [anon_sym_lsr] = ACTIONS(2907), - [anon_sym_asr] = ACTIONS(2907), - [aux_sym__mult_operator_token1] = ACTIONS(2907), - [anon_sym_mod] = ACTIONS(2907), - [anon_sym_land] = ACTIONS(2907), - [anon_sym_lor] = ACTIONS(2907), - [anon_sym_lxor] = ACTIONS(2907), - [aux_sym__add_operator_token1] = ACTIONS(2907), - [sym__concat_operator] = ACTIONS(2909), - [sym__rel_operator] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [sym__capitalized_identifier] = ACTIONS(2909), - [aux_sym_tag_token1] = ACTIONS(2909), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1259] = { - [sym_attribute] = STATE(1259), - [sym__identifier] = ACTIONS(2927), - [anon_sym_COLON_GT] = ACTIONS(2929), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_RPAREN] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [anon_sym_COLON2] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_DASH_GT] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2929), - [anon_sym_RBRACE] = ACTIONS(2929), - [anon_sym_constraint] = ACTIONS(2927), - [anon_sym_val] = ACTIONS(2927), - [anon_sym_end] = ACTIONS(2927), - [anon_sym_with] = ACTIONS(2927), - [anon_sym_object] = ACTIONS(2927), - [anon_sym_inherit] = ACTIONS(2927), - [anon_sym_method] = ACTIONS(2927), - [anon_sym_initializer] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_PIPE] = ACTIONS(2929), - [anon_sym_then] = ACTIONS(2927), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_do] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_LBRACE_LT] = ACTIONS(2929), - [anon_sym_GT_RBRACE] = ACTIONS(2929), - [anon_sym_begin] = ACTIONS(2927), - [sym_ocamlyacc_value] = ACTIONS(2929), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2927), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2929), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2929), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2929), - [aux_sym_number_token1] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_prefix_operator] = ACTIONS(2929), - [anon_sym_PLUS_DOT] = ACTIONS(2927), - [anon_sym_DASH_DOT] = ACTIONS(2927), - [sym_hash_operator] = ACTIONS(2929), - [aux_sym__pow_operator_token1] = ACTIONS(2929), - [anon_sym_lsl] = ACTIONS(2927), - [anon_sym_lsr] = ACTIONS(2927), - [anon_sym_asr] = ACTIONS(2927), - [aux_sym__mult_operator_token1] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2927), - [anon_sym_land] = ACTIONS(2927), - [anon_sym_lor] = ACTIONS(2927), - [anon_sym_lxor] = ACTIONS(2927), - [aux_sym__add_operator_token1] = ACTIONS(2927), - [sym__concat_operator] = ACTIONS(2929), - [sym__rel_operator] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [sym__capitalized_identifier] = ACTIONS(2929), - [aux_sym_tag_token1] = ACTIONS(2929), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1260] = { - [sym_attribute] = STATE(1260), - [sym__identifier] = ACTIONS(2959), - [anon_sym_COLON_GT] = ACTIONS(2961), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_RPAREN] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_COLON2] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_DASH_GT] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2961), - [anon_sym_RBRACE] = ACTIONS(2961), - [anon_sym_constraint] = ACTIONS(2959), - [anon_sym_val] = ACTIONS(2959), - [anon_sym_end] = ACTIONS(2959), - [anon_sym_with] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_inherit] = ACTIONS(2959), - [anon_sym_method] = ACTIONS(2959), - [anon_sym_initializer] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2961), - [anon_sym_LBRACK_PIPE] = ACTIONS(2961), - [anon_sym_then] = ACTIONS(2959), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_do] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_LBRACE_LT] = ACTIONS(2961), - [anon_sym_GT_RBRACE] = ACTIONS(2961), - [anon_sym_begin] = ACTIONS(2959), - [sym_ocamlyacc_value] = ACTIONS(2961), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2959), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2961), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2961), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2961), - [aux_sym_number_token1] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_prefix_operator] = ACTIONS(2961), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [sym_hash_operator] = ACTIONS(2961), - [aux_sym__pow_operator_token1] = ACTIONS(2961), - [anon_sym_lsl] = ACTIONS(2959), - [anon_sym_lsr] = ACTIONS(2959), - [anon_sym_asr] = ACTIONS(2959), - [aux_sym__mult_operator_token1] = ACTIONS(2959), - [anon_sym_mod] = ACTIONS(2959), - [anon_sym_land] = ACTIONS(2959), - [anon_sym_lor] = ACTIONS(2959), - [anon_sym_lxor] = ACTIONS(2959), - [aux_sym__add_operator_token1] = ACTIONS(2959), - [sym__concat_operator] = ACTIONS(2961), - [sym__rel_operator] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym__capitalized_identifier] = ACTIONS(2961), - [aux_sym_tag_token1] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1261] = { - [sym_attribute] = STATE(1261), - [sym__identifier] = ACTIONS(2985), - [anon_sym_COLON_GT] = ACTIONS(2987), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_RPAREN] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_COLON2] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_DASH_GT] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2987), - [anon_sym_RBRACE] = ACTIONS(2987), - [anon_sym_constraint] = ACTIONS(2985), - [anon_sym_val] = ACTIONS(2985), - [anon_sym_end] = ACTIONS(2985), - [anon_sym_with] = ACTIONS(2985), - [anon_sym_object] = ACTIONS(2985), - [anon_sym_inherit] = ACTIONS(2985), - [anon_sym_method] = ACTIONS(2985), - [anon_sym_initializer] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_PIPE] = ACTIONS(2987), - [anon_sym_then] = ACTIONS(2985), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_do] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_LBRACE_LT] = ACTIONS(2987), - [anon_sym_GT_RBRACE] = ACTIONS(2987), - [anon_sym_begin] = ACTIONS(2985), - [sym_ocamlyacc_value] = ACTIONS(2987), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2985), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2987), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2987), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2987), - [aux_sym_number_token1] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_prefix_operator] = ACTIONS(2987), - [anon_sym_PLUS_DOT] = ACTIONS(2985), - [anon_sym_DASH_DOT] = ACTIONS(2985), - [sym_hash_operator] = ACTIONS(2987), - [aux_sym__pow_operator_token1] = ACTIONS(2987), - [anon_sym_lsl] = ACTIONS(2985), - [anon_sym_lsr] = ACTIONS(2985), - [anon_sym_asr] = ACTIONS(2985), - [aux_sym__mult_operator_token1] = ACTIONS(2985), - [anon_sym_mod] = ACTIONS(2985), - [anon_sym_land] = ACTIONS(2985), - [anon_sym_lor] = ACTIONS(2985), - [anon_sym_lxor] = ACTIONS(2985), - [aux_sym__add_operator_token1] = ACTIONS(2985), - [sym__concat_operator] = ACTIONS(2987), - [sym__rel_operator] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [sym__capitalized_identifier] = ACTIONS(2987), - [aux_sym_tag_token1] = ACTIONS(2987), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1262] = { - [sym__parameter] = STATE(3131), - [sym_parameter] = STATE(3137), - [sym__parenthesized_abstract_type] = STATE(3137), - [sym__simple_pattern] = STATE(3139), - [sym__simple_pattern_ext] = STATE(3142), - [sym_typed_pattern] = STATE(3143), - [sym_polymorphic_variant_pattern] = STATE(3143), - [sym_record_pattern] = STATE(3143), - [sym_list_pattern] = STATE(3143), - [sym_array_pattern] = STATE(3143), - [sym_local_open_pattern] = STATE(3143), - [sym_package_pattern] = STATE(3143), - [sym_parenthesized_pattern] = STATE(3143), - [sym_attribute] = STATE(1262), - [sym__extension] = STATE(3139), - [sym_extension] = STATE(3128), - [sym_quoted_extension] = STATE(3128), - [sym__constant] = STATE(3146), - [sym__signed_constant] = STATE(3143), - [sym_number] = STATE(3170), - [sym_signed_number] = STATE(3146), - [sym_character] = STATE(3170), - [sym_string] = STATE(3170), - [sym_quoted_string] = STATE(3170), - [sym_boolean] = STATE(3170), - [sym_unit] = STATE(3170), - [sym__value_pattern] = STATE(3143), - [sym_parenthesized_operator] = STATE(3147), - [sym_module_path] = STATE(8158), - [sym_constructor_path] = STATE(3143), - [sym__label] = STATE(8209), - [sym_tag] = STATE(3143), - [aux_sym_let_binding_repeat1] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(2749), - [sym__identifier] = ACTIONS(3123), - [anon_sym_SEMI_SEMI] = ACTIONS(2749), - [anon_sym_and] = ACTIONS(2751), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_QMARK] = ACTIONS(3126), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(2751), - [anon_sym_type] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(2749), - [anon_sym_true] = ACTIONS(3138), - [anon_sym_false] = ACTIONS(3138), - [anon_sym_COLON2] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_exception] = ACTIONS(2751), - [anon_sym_module] = ACTIONS(2751), - [anon_sym_open] = ACTIONS(2751), - [anon_sym_include] = ACTIONS(2751), - [anon_sym_class] = ACTIONS(2751), - [anon_sym_val] = ACTIONS(2751), - [anon_sym_end] = ACTIONS(2751), - [anon_sym_POUND] = ACTIONS(3144), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3150), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2751), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2749), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3153), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3156), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2749), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2749), - [aux_sym_number_token1] = ACTIONS(3159), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3165), - [sym__capitalized_identifier] = ACTIONS(3168), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1263] = { - [sym_attribute] = STATE(1263), - [sym__identifier] = ACTIONS(2831), - [anon_sym_SEMI_SEMI] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2831), - [anon_sym_and] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_external] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_exception] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2831), - [anon_sym_open] = ACTIONS(2831), - [anon_sym_include] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2831), - [anon_sym_end] = ACTIONS(2831), - [anon_sym_object] = ACTIONS(2831), - [anon_sym_in] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_PIPE] = ACTIONS(2833), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_LBRACE_LT] = ACTIONS(2833), - [anon_sym_begin] = ACTIONS(2831), - [sym_ocamlyacc_value] = ACTIONS(2833), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2831), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2833), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2833), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2833), - [aux_sym_number_token1] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_prefix_operator] = ACTIONS(2833), - [anon_sym_PLUS_DOT] = ACTIONS(2831), - [anon_sym_DASH_DOT] = ACTIONS(2831), - [sym_hash_operator] = ACTIONS(2833), - [aux_sym__pow_operator_token1] = ACTIONS(2833), - [anon_sym_lsl] = ACTIONS(2831), - [anon_sym_lsr] = ACTIONS(2831), - [anon_sym_asr] = ACTIONS(2831), - [aux_sym__mult_operator_token1] = ACTIONS(2831), - [anon_sym_mod] = ACTIONS(2831), - [anon_sym_land] = ACTIONS(2831), - [anon_sym_lor] = ACTIONS(2831), - [anon_sym_lxor] = ACTIONS(2831), - [aux_sym__add_operator_token1] = ACTIONS(2831), - [sym__concat_operator] = ACTIONS(2833), - [sym__rel_operator] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [sym_let_operator] = ACTIONS(2833), - [sym_and_operator] = ACTIONS(2833), - [sym__capitalized_identifier] = ACTIONS(2833), - [aux_sym_directive_token1] = ACTIONS(2831), - [aux_sym_tag_token1] = ACTIONS(2833), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1264] = { - [sym_attribute] = STATE(1264), - [sym__identifier] = ACTIONS(2891), - [anon_sym_COLON_GT] = ACTIONS(2893), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_RPAREN] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [anon_sym_COLON2] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_DASH_GT] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2893), - [anon_sym_RBRACE] = ACTIONS(2893), - [anon_sym_constraint] = ACTIONS(2891), - [anon_sym_val] = ACTIONS(2891), - [anon_sym_end] = ACTIONS(2891), - [anon_sym_with] = ACTIONS(2891), - [anon_sym_object] = ACTIONS(2891), - [anon_sym_inherit] = ACTIONS(2891), - [anon_sym_method] = ACTIONS(2891), - [anon_sym_initializer] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_PIPE] = ACTIONS(2893), - [anon_sym_then] = ACTIONS(2891), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_do] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_LBRACE_LT] = ACTIONS(2893), - [anon_sym_GT_RBRACE] = ACTIONS(2893), - [anon_sym_begin] = ACTIONS(2891), - [sym_ocamlyacc_value] = ACTIONS(2893), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2891), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2893), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2893), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2893), - [aux_sym_number_token1] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_prefix_operator] = ACTIONS(2893), - [anon_sym_PLUS_DOT] = ACTIONS(2891), - [anon_sym_DASH_DOT] = ACTIONS(2891), - [sym_hash_operator] = ACTIONS(2893), - [aux_sym__pow_operator_token1] = ACTIONS(2893), - [anon_sym_lsl] = ACTIONS(2891), - [anon_sym_lsr] = ACTIONS(2891), - [anon_sym_asr] = ACTIONS(2891), - [aux_sym__mult_operator_token1] = ACTIONS(2891), - [anon_sym_mod] = ACTIONS(2891), - [anon_sym_land] = ACTIONS(2891), - [anon_sym_lor] = ACTIONS(2891), - [anon_sym_lxor] = ACTIONS(2891), - [aux_sym__add_operator_token1] = ACTIONS(2891), - [sym__concat_operator] = ACTIONS(2893), - [sym__rel_operator] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [sym__capitalized_identifier] = ACTIONS(2893), - [aux_sym_tag_token1] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1265] = { - [sym_attribute] = STATE(1265), - [sym__identifier] = ACTIONS(2823), - [anon_sym_COLON_GT] = ACTIONS(2825), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_RPAREN] = ACTIONS(2825), - [anon_sym_COMMA] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_COLON_EQ] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [anon_sym_COLON2] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(2823), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2825), - [anon_sym_RBRACE] = ACTIONS(2825), - [anon_sym_constraint] = ACTIONS(2823), - [anon_sym_val] = ACTIONS(2823), - [anon_sym_end] = ACTIONS(2823), - [anon_sym_with] = ACTIONS(2823), - [anon_sym_object] = ACTIONS(2823), - [anon_sym_inherit] = ACTIONS(2823), - [anon_sym_method] = ACTIONS(2823), - [anon_sym_initializer] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_PIPE] = ACTIONS(2825), - [anon_sym_then] = ACTIONS(2823), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_do] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_LBRACE_LT] = ACTIONS(2825), - [anon_sym_GT_RBRACE] = ACTIONS(2825), - [anon_sym_begin] = ACTIONS(2823), - [sym_ocamlyacc_value] = ACTIONS(2825), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2823), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2825), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2825), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2825), - [aux_sym_number_token1] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_prefix_operator] = ACTIONS(2825), - [anon_sym_PLUS_DOT] = ACTIONS(2823), - [anon_sym_DASH_DOT] = ACTIONS(2823), - [sym_hash_operator] = ACTIONS(2825), - [aux_sym__pow_operator_token1] = ACTIONS(2825), - [anon_sym_lsl] = ACTIONS(2823), - [anon_sym_lsr] = ACTIONS(2823), - [anon_sym_asr] = ACTIONS(2823), - [aux_sym__mult_operator_token1] = ACTIONS(2823), - [anon_sym_mod] = ACTIONS(2823), - [anon_sym_land] = ACTIONS(2823), - [anon_sym_lor] = ACTIONS(2823), - [anon_sym_lxor] = ACTIONS(2823), - [aux_sym__add_operator_token1] = ACTIONS(2823), - [sym__concat_operator] = ACTIONS(2825), - [sym__rel_operator] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [sym__capitalized_identifier] = ACTIONS(2825), - [aux_sym_tag_token1] = ACTIONS(2825), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1266] = { - [sym_attribute] = STATE(1266), - [sym__identifier] = ACTIONS(2827), - [anon_sym_COLON_GT] = ACTIONS(2829), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_RPAREN] = ACTIONS(2829), - [anon_sym_COMMA] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [anon_sym_COLON2] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2829), - [anon_sym_DASH_GT] = ACTIONS(2827), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2829), - [anon_sym_RBRACE] = ACTIONS(2829), - [anon_sym_constraint] = ACTIONS(2827), - [anon_sym_val] = ACTIONS(2827), - [anon_sym_end] = ACTIONS(2827), - [anon_sym_with] = ACTIONS(2827), - [anon_sym_object] = ACTIONS(2827), - [anon_sym_inherit] = ACTIONS(2827), - [anon_sym_method] = ACTIONS(2827), - [anon_sym_initializer] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_PIPE] = ACTIONS(2829), - [anon_sym_then] = ACTIONS(2827), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_do] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_LBRACE_LT] = ACTIONS(2829), - [anon_sym_GT_RBRACE] = ACTIONS(2829), - [anon_sym_begin] = ACTIONS(2827), - [sym_ocamlyacc_value] = ACTIONS(2829), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2827), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2829), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2829), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2829), - [aux_sym_number_token1] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_prefix_operator] = ACTIONS(2829), - [anon_sym_PLUS_DOT] = ACTIONS(2827), - [anon_sym_DASH_DOT] = ACTIONS(2827), - [sym_hash_operator] = ACTIONS(2829), - [aux_sym__pow_operator_token1] = ACTIONS(2829), - [anon_sym_lsl] = ACTIONS(2827), - [anon_sym_lsr] = ACTIONS(2827), - [anon_sym_asr] = ACTIONS(2827), - [aux_sym__mult_operator_token1] = ACTIONS(2827), - [anon_sym_mod] = ACTIONS(2827), - [anon_sym_land] = ACTIONS(2827), - [anon_sym_lor] = ACTIONS(2827), - [anon_sym_lxor] = ACTIONS(2827), - [aux_sym__add_operator_token1] = ACTIONS(2827), - [sym__concat_operator] = ACTIONS(2829), - [sym__rel_operator] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [sym__capitalized_identifier] = ACTIONS(2829), - [aux_sym_tag_token1] = ACTIONS(2829), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1267] = { - [sym_attribute] = STATE(1267), - [sym__identifier] = ACTIONS(2869), - [anon_sym_SEMI_SEMI] = ACTIONS(2871), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_and] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_external] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_exception] = ACTIONS(2869), - [anon_sym_module] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_include] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_end] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_in] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_PIPE] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_LBRACE_LT] = ACTIONS(2871), - [anon_sym_begin] = ACTIONS(2869), - [sym_ocamlyacc_value] = ACTIONS(2871), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2869), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2871), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2871), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2871), - [aux_sym_number_token1] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_prefix_operator] = ACTIONS(2871), - [anon_sym_PLUS_DOT] = ACTIONS(2869), - [anon_sym_DASH_DOT] = ACTIONS(2869), - [sym_hash_operator] = ACTIONS(2871), - [aux_sym__pow_operator_token1] = ACTIONS(2871), - [anon_sym_lsl] = ACTIONS(2869), - [anon_sym_lsr] = ACTIONS(2869), - [anon_sym_asr] = ACTIONS(2869), - [aux_sym__mult_operator_token1] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_land] = ACTIONS(2869), - [anon_sym_lor] = ACTIONS(2869), - [anon_sym_lxor] = ACTIONS(2869), - [aux_sym__add_operator_token1] = ACTIONS(2869), - [sym__concat_operator] = ACTIONS(2871), - [sym__rel_operator] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [sym_let_operator] = ACTIONS(2871), - [sym_and_operator] = ACTIONS(2871), - [sym__capitalized_identifier] = ACTIONS(2871), - [aux_sym_directive_token1] = ACTIONS(2869), - [aux_sym_tag_token1] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1268] = { - [sym_attribute] = STATE(1268), - [sym__identifier] = ACTIONS(2861), - [anon_sym_COLON_GT] = ACTIONS(2863), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_RPAREN] = ACTIONS(2863), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_COLON_EQ] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_COLON2] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_DASH_GT] = ACTIONS(2861), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2863), - [anon_sym_RBRACE] = ACTIONS(2863), - [anon_sym_constraint] = ACTIONS(2861), - [anon_sym_val] = ACTIONS(2861), - [anon_sym_end] = ACTIONS(2861), - [anon_sym_with] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_inherit] = ACTIONS(2861), - [anon_sym_method] = ACTIONS(2861), - [anon_sym_initializer] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_LBRACK_PIPE] = ACTIONS(2863), - [anon_sym_then] = ACTIONS(2861), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_do] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_LBRACE_LT] = ACTIONS(2863), - [anon_sym_GT_RBRACE] = ACTIONS(2863), - [anon_sym_begin] = ACTIONS(2861), - [sym_ocamlyacc_value] = ACTIONS(2863), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2861), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2863), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2863), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2863), - [aux_sym_number_token1] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_prefix_operator] = ACTIONS(2863), - [anon_sym_PLUS_DOT] = ACTIONS(2861), - [anon_sym_DASH_DOT] = ACTIONS(2861), - [sym_hash_operator] = ACTIONS(2863), - [aux_sym__pow_operator_token1] = ACTIONS(2863), - [anon_sym_lsl] = ACTIONS(2861), - [anon_sym_lsr] = ACTIONS(2861), - [anon_sym_asr] = ACTIONS(2861), - [aux_sym__mult_operator_token1] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_land] = ACTIONS(2861), - [anon_sym_lor] = ACTIONS(2861), - [anon_sym_lxor] = ACTIONS(2861), - [aux_sym__add_operator_token1] = ACTIONS(2861), - [sym__concat_operator] = ACTIONS(2863), - [sym__rel_operator] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [sym__capitalized_identifier] = ACTIONS(2863), - [aux_sym_tag_token1] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1269] = { - [sym_attribute] = STATE(1269), - [sym__identifier] = ACTIONS(2883), - [anon_sym_COLON_GT] = ACTIONS(2885), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_RPAREN] = ACTIONS(2885), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [anon_sym_COLON2] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_DASH_GT] = ACTIONS(2883), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2885), - [anon_sym_RBRACE] = ACTIONS(2885), - [anon_sym_constraint] = ACTIONS(2883), - [anon_sym_val] = ACTIONS(2883), - [anon_sym_end] = ACTIONS(2883), - [anon_sym_with] = ACTIONS(2883), - [anon_sym_object] = ACTIONS(2883), - [anon_sym_inherit] = ACTIONS(2883), - [anon_sym_method] = ACTIONS(2883), - [anon_sym_initializer] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_PIPE] = ACTIONS(2885), - [anon_sym_then] = ACTIONS(2883), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_do] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_LBRACE_LT] = ACTIONS(2885), - [anon_sym_GT_RBRACE] = ACTIONS(2885), - [anon_sym_begin] = ACTIONS(2883), - [sym_ocamlyacc_value] = ACTIONS(2885), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2883), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2885), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2885), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2885), - [aux_sym_number_token1] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_prefix_operator] = ACTIONS(2885), - [anon_sym_PLUS_DOT] = ACTIONS(2883), - [anon_sym_DASH_DOT] = ACTIONS(2883), - [sym_hash_operator] = ACTIONS(2885), - [aux_sym__pow_operator_token1] = ACTIONS(2885), - [anon_sym_lsl] = ACTIONS(2883), - [anon_sym_lsr] = ACTIONS(2883), - [anon_sym_asr] = ACTIONS(2883), - [aux_sym__mult_operator_token1] = ACTIONS(2883), - [anon_sym_mod] = ACTIONS(2883), - [anon_sym_land] = ACTIONS(2883), - [anon_sym_lor] = ACTIONS(2883), - [anon_sym_lxor] = ACTIONS(2883), - [aux_sym__add_operator_token1] = ACTIONS(2883), - [sym__concat_operator] = ACTIONS(2885), - [sym__rel_operator] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym__capitalized_identifier] = ACTIONS(2885), - [aux_sym_tag_token1] = ACTIONS(2885), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1270] = { - [sym_attribute] = STATE(1270), - [sym__identifier] = ACTIONS(2919), - [anon_sym_COLON_GT] = ACTIONS(2921), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [anon_sym_COLON2] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_DASH_GT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2921), - [anon_sym_RBRACE] = ACTIONS(2921), - [anon_sym_constraint] = ACTIONS(2919), - [anon_sym_val] = ACTIONS(2919), - [anon_sym_end] = ACTIONS(2919), - [anon_sym_with] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_inherit] = ACTIONS(2919), - [anon_sym_method] = ACTIONS(2919), - [anon_sym_initializer] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_PIPE] = ACTIONS(2921), - [anon_sym_then] = ACTIONS(2919), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_do] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_LBRACE_LT] = ACTIONS(2921), - [anon_sym_GT_RBRACE] = ACTIONS(2921), - [anon_sym_begin] = ACTIONS(2919), - [sym_ocamlyacc_value] = ACTIONS(2921), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2919), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2921), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2921), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2921), - [aux_sym_number_token1] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_prefix_operator] = ACTIONS(2921), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [sym_hash_operator] = ACTIONS(2921), - [aux_sym__pow_operator_token1] = ACTIONS(2921), - [anon_sym_lsl] = ACTIONS(2919), - [anon_sym_lsr] = ACTIONS(2919), - [anon_sym_asr] = ACTIONS(2919), - [aux_sym__mult_operator_token1] = ACTIONS(2919), - [anon_sym_mod] = ACTIONS(2919), - [anon_sym_land] = ACTIONS(2919), - [anon_sym_lor] = ACTIONS(2919), - [anon_sym_lxor] = ACTIONS(2919), - [aux_sym__add_operator_token1] = ACTIONS(2919), - [sym__concat_operator] = ACTIONS(2921), - [sym__rel_operator] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym__capitalized_identifier] = ACTIONS(2921), - [aux_sym_tag_token1] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1271] = { - [sym_attribute] = STATE(1271), - [sym__identifier] = ACTIONS(2891), - [anon_sym_SEMI_SEMI] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_and] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_external] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_exception] = ACTIONS(2891), - [anon_sym_module] = ACTIONS(2891), - [anon_sym_open] = ACTIONS(2891), - [anon_sym_include] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_end] = ACTIONS(2891), - [anon_sym_object] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_PIPE] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_LBRACE_LT] = ACTIONS(2893), - [anon_sym_begin] = ACTIONS(2891), - [sym_ocamlyacc_value] = ACTIONS(2893), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2891), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2893), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2893), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2893), - [aux_sym_number_token1] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_prefix_operator] = ACTIONS(2893), - [anon_sym_PLUS_DOT] = ACTIONS(2891), - [anon_sym_DASH_DOT] = ACTIONS(2891), - [sym_hash_operator] = ACTIONS(2893), - [aux_sym__pow_operator_token1] = ACTIONS(2893), - [anon_sym_lsl] = ACTIONS(2891), - [anon_sym_lsr] = ACTIONS(2891), - [anon_sym_asr] = ACTIONS(2891), - [aux_sym__mult_operator_token1] = ACTIONS(2891), - [anon_sym_mod] = ACTIONS(2891), - [anon_sym_land] = ACTIONS(2891), - [anon_sym_lor] = ACTIONS(2891), - [anon_sym_lxor] = ACTIONS(2891), - [aux_sym__add_operator_token1] = ACTIONS(2891), - [sym__concat_operator] = ACTIONS(2893), - [sym__rel_operator] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [sym_let_operator] = ACTIONS(2893), - [sym_and_operator] = ACTIONS(2893), - [sym__capitalized_identifier] = ACTIONS(2893), - [aux_sym_directive_token1] = ACTIONS(2891), - [aux_sym_tag_token1] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1272] = { - [sym_attribute] = STATE(1272), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_and] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym_and_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1273] = { - [sym_attribute] = STATE(1273), - [sym__identifier] = ACTIONS(3101), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_and] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_external] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_exception] = ACTIONS(3101), - [anon_sym_module] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_include] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_end] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_LBRACE_LT] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [sym_ocamlyacc_value] = ACTIONS(3103), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3101), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3103), - [aux_sym_number_token1] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_prefix_operator] = ACTIONS(3103), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [sym_hash_operator] = ACTIONS(3103), - [aux_sym__pow_operator_token1] = ACTIONS(3103), - [anon_sym_lsl] = ACTIONS(3101), - [anon_sym_lsr] = ACTIONS(3101), - [anon_sym_asr] = ACTIONS(3101), - [aux_sym__mult_operator_token1] = ACTIONS(3101), - [anon_sym_mod] = ACTIONS(3101), - [anon_sym_land] = ACTIONS(3101), - [anon_sym_lor] = ACTIONS(3101), - [anon_sym_lxor] = ACTIONS(3101), - [aux_sym__add_operator_token1] = ACTIONS(3101), - [sym__concat_operator] = ACTIONS(3103), - [sym__rel_operator] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [sym_let_operator] = ACTIONS(3103), - [sym_and_operator] = ACTIONS(3103), - [sym__capitalized_identifier] = ACTIONS(3103), - [aux_sym_directive_token1] = ACTIONS(3101), - [aux_sym_tag_token1] = ACTIONS(3103), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1274] = { - [sym_attribute] = STATE(1274), - [sym__identifier] = ACTIONS(2662), - [anon_sym_COLON_GT] = ACTIONS(2664), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_QMARK] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_RPAREN] = ACTIONS(2664), - [anon_sym_COMMA] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_RBRACK] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_COLON2] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2664), - [anon_sym_DASH_GT] = ACTIONS(2662), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2664), - [anon_sym_RBRACE] = ACTIONS(2664), - [anon_sym_constraint] = ACTIONS(2662), - [anon_sym_val] = ACTIONS(2662), - [anon_sym_end] = ACTIONS(2662), - [anon_sym_with] = ACTIONS(2662), - [anon_sym_object] = ACTIONS(2662), - [anon_sym_inherit] = ACTIONS(2662), - [anon_sym_method] = ACTIONS(2662), - [anon_sym_initializer] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_PIPE] = ACTIONS(2664), - [anon_sym_then] = ACTIONS(2662), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_do] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_LBRACE_LT] = ACTIONS(2664), - [anon_sym_GT_RBRACE] = ACTIONS(2664), - [anon_sym_begin] = ACTIONS(2662), - [sym_ocamlyacc_value] = ACTIONS(2664), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2662), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2664), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2664), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2664), - [aux_sym_number_token1] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_prefix_operator] = ACTIONS(2664), - [anon_sym_PLUS_DOT] = ACTIONS(2662), - [anon_sym_DASH_DOT] = ACTIONS(2662), - [sym_hash_operator] = ACTIONS(2664), - [aux_sym__pow_operator_token1] = ACTIONS(2664), - [anon_sym_lsl] = ACTIONS(2662), - [anon_sym_lsr] = ACTIONS(2662), - [anon_sym_asr] = ACTIONS(2662), - [aux_sym__mult_operator_token1] = ACTIONS(2662), - [anon_sym_mod] = ACTIONS(2662), - [anon_sym_land] = ACTIONS(2662), - [anon_sym_lor] = ACTIONS(2662), - [anon_sym_lxor] = ACTIONS(2662), - [aux_sym__add_operator_token1] = ACTIONS(2662), - [sym__concat_operator] = ACTIONS(2664), - [sym__rel_operator] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [sym__capitalized_identifier] = ACTIONS(2664), - [aux_sym_tag_token1] = ACTIONS(2664), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1275] = { - [sym_attribute] = STATE(1275), - [sym__identifier] = ACTIONS(2644), - [anon_sym_SEMI_SEMI] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_and] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_QMARK] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_external] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_COMMA] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_COLON_EQ] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_exception] = ACTIONS(2644), - [anon_sym_module] = ACTIONS(2644), - [anon_sym_open] = ACTIONS(2644), - [anon_sym_include] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_end] = ACTIONS(2644), - [anon_sym_object] = ACTIONS(2644), - [anon_sym_in] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_LBRACK_PIPE] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_LBRACE_LT] = ACTIONS(2646), - [anon_sym_begin] = ACTIONS(2644), - [sym_ocamlyacc_value] = ACTIONS(2646), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2644), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2646), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2646), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2646), - [aux_sym_number_token1] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2646), - [sym_prefix_operator] = ACTIONS(2646), - [anon_sym_PLUS_DOT] = ACTIONS(2644), - [anon_sym_DASH_DOT] = ACTIONS(2644), - [sym_hash_operator] = ACTIONS(2646), - [aux_sym__pow_operator_token1] = ACTIONS(2646), - [anon_sym_lsl] = ACTIONS(2644), - [anon_sym_lsr] = ACTIONS(2644), - [anon_sym_asr] = ACTIONS(2644), - [aux_sym__mult_operator_token1] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_land] = ACTIONS(2644), - [anon_sym_lor] = ACTIONS(2644), - [anon_sym_lxor] = ACTIONS(2644), - [aux_sym__add_operator_token1] = ACTIONS(2644), - [sym__concat_operator] = ACTIONS(2646), - [sym__rel_operator] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_or] = ACTIONS(2644), - [anon_sym_PIPE_PIPE] = ACTIONS(2644), - [sym_let_operator] = ACTIONS(2646), - [sym_and_operator] = ACTIONS(2646), - [sym__capitalized_identifier] = ACTIONS(2646), - [aux_sym_directive_token1] = ACTIONS(2644), - [aux_sym_tag_token1] = ACTIONS(2646), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1276] = { - [sym_attribute] = STATE(1276), - [sym__identifier] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2981), - [anon_sym_let] = ACTIONS(2979), - [anon_sym_and] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_external] = ACTIONS(2979), - [anon_sym_type] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_exception] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(2979), - [anon_sym_open] = ACTIONS(2979), - [anon_sym_include] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_end] = ACTIONS(2979), - [anon_sym_object] = ACTIONS(2979), - [anon_sym_in] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_COLON_COLON] = ACTIONS(2981), - [anon_sym_LBRACK_PIPE] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_LBRACE_LT] = ACTIONS(2981), - [anon_sym_begin] = ACTIONS(2979), - [sym_ocamlyacc_value] = ACTIONS(2981), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2981), - [aux_sym_number_token1] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym_prefix_operator] = ACTIONS(2981), - [anon_sym_PLUS_DOT] = ACTIONS(2979), - [anon_sym_DASH_DOT] = ACTIONS(2979), - [sym_hash_operator] = ACTIONS(2981), - [aux_sym__pow_operator_token1] = ACTIONS(2981), - [anon_sym_lsl] = ACTIONS(2979), - [anon_sym_lsr] = ACTIONS(2979), - [anon_sym_asr] = ACTIONS(2979), - [aux_sym__mult_operator_token1] = ACTIONS(2979), - [anon_sym_mod] = ACTIONS(2979), - [anon_sym_land] = ACTIONS(2979), - [anon_sym_lor] = ACTIONS(2979), - [anon_sym_lxor] = ACTIONS(2979), - [aux_sym__add_operator_token1] = ACTIONS(2979), - [sym__concat_operator] = ACTIONS(2981), - [sym__rel_operator] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym_let_operator] = ACTIONS(2981), - [sym_and_operator] = ACTIONS(2981), - [sym__capitalized_identifier] = ACTIONS(2981), - [aux_sym_directive_token1] = ACTIONS(2979), - [aux_sym_tag_token1] = ACTIONS(2981), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1277] = { - [sym_attribute] = STATE(1277), - [sym__identifier] = ACTIONS(3105), - [anon_sym_COLON_GT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_RPAREN] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_COLON2] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_DASH_GT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_constraint] = ACTIONS(3105), - [anon_sym_val] = ACTIONS(3105), - [anon_sym_end] = ACTIONS(3105), - [anon_sym_with] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_inherit] = ACTIONS(3105), - [anon_sym_method] = ACTIONS(3105), - [anon_sym_initializer] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_PIPE] = ACTIONS(3107), - [anon_sym_then] = ACTIONS(3105), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_do] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_LBRACE_LT] = ACTIONS(3107), - [anon_sym_GT_RBRACE] = ACTIONS(3107), - [anon_sym_begin] = ACTIONS(3105), - [sym_ocamlyacc_value] = ACTIONS(3107), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3105), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3107), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3107), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3107), - [aux_sym_number_token1] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_prefix_operator] = ACTIONS(3107), - [anon_sym_PLUS_DOT] = ACTIONS(3105), - [anon_sym_DASH_DOT] = ACTIONS(3105), - [sym_hash_operator] = ACTIONS(3107), - [aux_sym__pow_operator_token1] = ACTIONS(3107), - [anon_sym_lsl] = ACTIONS(3105), - [anon_sym_lsr] = ACTIONS(3105), - [anon_sym_asr] = ACTIONS(3105), - [aux_sym__mult_operator_token1] = ACTIONS(3105), - [anon_sym_mod] = ACTIONS(3105), - [anon_sym_land] = ACTIONS(3105), - [anon_sym_lor] = ACTIONS(3105), - [anon_sym_lxor] = ACTIONS(3105), - [aux_sym__add_operator_token1] = ACTIONS(3105), - [sym__concat_operator] = ACTIONS(3107), - [sym__rel_operator] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3107), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1278] = { - [sym_attribute] = STATE(1278), - [sym__identifier] = ACTIONS(3113), - [anon_sym_COLON_GT] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_RPAREN] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_true] = ACTIONS(3113), - [anon_sym_false] = ACTIONS(3113), - [anon_sym_COLON2] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_DASH_GT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3115), - [anon_sym_RBRACE] = ACTIONS(3115), - [anon_sym_constraint] = ACTIONS(3113), - [anon_sym_val] = ACTIONS(3113), - [anon_sym_end] = ACTIONS(3113), - [anon_sym_with] = ACTIONS(3113), - [anon_sym_object] = ACTIONS(3113), - [anon_sym_inherit] = ACTIONS(3113), - [anon_sym_method] = ACTIONS(3113), - [anon_sym_initializer] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_PIPE] = ACTIONS(3115), - [anon_sym_then] = ACTIONS(3113), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_do] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_LBRACE_LT] = ACTIONS(3115), - [anon_sym_GT_RBRACE] = ACTIONS(3115), - [anon_sym_begin] = ACTIONS(3113), - [sym_ocamlyacc_value] = ACTIONS(3115), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3113), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3115), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3115), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3115), - [aux_sym_number_token1] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_prefix_operator] = ACTIONS(3115), - [anon_sym_PLUS_DOT] = ACTIONS(3113), - [anon_sym_DASH_DOT] = ACTIONS(3113), - [sym_hash_operator] = ACTIONS(3115), - [aux_sym__pow_operator_token1] = ACTIONS(3115), - [anon_sym_lsl] = ACTIONS(3113), - [anon_sym_lsr] = ACTIONS(3113), - [anon_sym_asr] = ACTIONS(3113), - [aux_sym__mult_operator_token1] = ACTIONS(3113), - [anon_sym_mod] = ACTIONS(3113), - [anon_sym_land] = ACTIONS(3113), - [anon_sym_lor] = ACTIONS(3113), - [anon_sym_lxor] = ACTIONS(3113), - [aux_sym__add_operator_token1] = ACTIONS(3113), - [sym__concat_operator] = ACTIONS(3115), - [sym__rel_operator] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [sym__capitalized_identifier] = ACTIONS(3115), - [aux_sym_tag_token1] = ACTIONS(3115), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1279] = { - [sym_attribute] = STATE(1279), - [sym__identifier] = ACTIONS(2971), - [anon_sym_COLON_GT] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_RPAREN] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [anon_sym_COLON2] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_DASH_GT] = ACTIONS(2971), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2973), - [anon_sym_RBRACE] = ACTIONS(2973), - [anon_sym_constraint] = ACTIONS(2971), - [anon_sym_val] = ACTIONS(2971), - [anon_sym_end] = ACTIONS(2971), - [anon_sym_with] = ACTIONS(2971), - [anon_sym_object] = ACTIONS(2971), - [anon_sym_inherit] = ACTIONS(2971), - [anon_sym_method] = ACTIONS(2971), - [anon_sym_initializer] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2973), - [anon_sym_then] = ACTIONS(2971), - [anon_sym_else] = ACTIONS(2971), - [anon_sym_do] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2971), - [anon_sym_LBRACE_LT] = ACTIONS(2973), - [anon_sym_GT_RBRACE] = ACTIONS(2973), - [anon_sym_begin] = ACTIONS(2971), - [sym_ocamlyacc_value] = ACTIONS(2973), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2973), - [aux_sym_number_token1] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [sym_prefix_operator] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [sym_hash_operator] = ACTIONS(2973), - [aux_sym__pow_operator_token1] = ACTIONS(2973), - [anon_sym_lsl] = ACTIONS(2971), - [anon_sym_lsr] = ACTIONS(2971), - [anon_sym_asr] = ACTIONS(2971), - [aux_sym__mult_operator_token1] = ACTIONS(2971), - [anon_sym_mod] = ACTIONS(2971), - [anon_sym_land] = ACTIONS(2971), - [anon_sym_lor] = ACTIONS(2971), - [anon_sym_lxor] = ACTIONS(2971), - [aux_sym__add_operator_token1] = ACTIONS(2971), - [sym__concat_operator] = ACTIONS(2973), - [sym__rel_operator] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__capitalized_identifier] = ACTIONS(2973), - [aux_sym_tag_token1] = ACTIONS(2973), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1280] = { - [sym_attribute] = STATE(1280), - [sym__identifier] = ACTIONS(2943), - [anon_sym_COLON_GT] = ACTIONS(2945), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_RPAREN] = ACTIONS(2945), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_COLON2] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_DASH_GT] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2945), - [anon_sym_RBRACE] = ACTIONS(2945), - [anon_sym_constraint] = ACTIONS(2943), - [anon_sym_val] = ACTIONS(2943), - [anon_sym_end] = ACTIONS(2943), - [anon_sym_with] = ACTIONS(2943), - [anon_sym_object] = ACTIONS(2943), - [anon_sym_inherit] = ACTIONS(2943), - [anon_sym_method] = ACTIONS(2943), - [anon_sym_initializer] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2945), - [anon_sym_then] = ACTIONS(2943), - [anon_sym_else] = ACTIONS(2943), - [anon_sym_do] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_LBRACE_LT] = ACTIONS(2945), - [anon_sym_GT_RBRACE] = ACTIONS(2945), - [anon_sym_begin] = ACTIONS(2943), - [sym_ocamlyacc_value] = ACTIONS(2945), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2943), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2945), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2945), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2945), - [aux_sym_number_token1] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_prefix_operator] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [sym_hash_operator] = ACTIONS(2945), - [aux_sym__pow_operator_token1] = ACTIONS(2945), - [anon_sym_lsl] = ACTIONS(2943), - [anon_sym_lsr] = ACTIONS(2943), - [anon_sym_asr] = ACTIONS(2943), - [aux_sym__mult_operator_token1] = ACTIONS(2943), - [anon_sym_mod] = ACTIONS(2943), - [anon_sym_land] = ACTIONS(2943), - [anon_sym_lor] = ACTIONS(2943), - [anon_sym_lxor] = ACTIONS(2943), - [aux_sym__add_operator_token1] = ACTIONS(2943), - [sym__concat_operator] = ACTIONS(2945), - [sym__rel_operator] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [sym__capitalized_identifier] = ACTIONS(2945), - [aux_sym_tag_token1] = ACTIONS(2945), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1281] = { - [sym_attribute] = STATE(1281), - [sym__identifier] = ACTIONS(2997), - [anon_sym_COLON_GT] = ACTIONS(2999), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_RPAREN] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [anon_sym_COLON2] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_DASH_GT] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2999), - [anon_sym_RBRACE] = ACTIONS(2999), - [anon_sym_constraint] = ACTIONS(2997), - [anon_sym_val] = ACTIONS(2997), - [anon_sym_end] = ACTIONS(2997), - [anon_sym_with] = ACTIONS(2997), - [anon_sym_object] = ACTIONS(2997), - [anon_sym_inherit] = ACTIONS(2997), - [anon_sym_method] = ACTIONS(2997), - [anon_sym_initializer] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK_PIPE] = ACTIONS(2999), - [anon_sym_then] = ACTIONS(2997), - [anon_sym_else] = ACTIONS(2997), - [anon_sym_do] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2997), - [anon_sym_LBRACE_LT] = ACTIONS(2999), - [anon_sym_GT_RBRACE] = ACTIONS(2999), - [anon_sym_begin] = ACTIONS(2997), - [sym_ocamlyacc_value] = ACTIONS(2999), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2999), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2999), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2999), - [aux_sym_number_token1] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym_prefix_operator] = ACTIONS(2999), - [anon_sym_PLUS_DOT] = ACTIONS(2997), - [anon_sym_DASH_DOT] = ACTIONS(2997), - [sym_hash_operator] = ACTIONS(2999), - [aux_sym__pow_operator_token1] = ACTIONS(2999), - [anon_sym_lsl] = ACTIONS(2997), - [anon_sym_lsr] = ACTIONS(2997), - [anon_sym_asr] = ACTIONS(2997), - [aux_sym__mult_operator_token1] = ACTIONS(2997), - [anon_sym_mod] = ACTIONS(2997), - [anon_sym_land] = ACTIONS(2997), - [anon_sym_lor] = ACTIONS(2997), - [anon_sym_lxor] = ACTIONS(2997), - [aux_sym__add_operator_token1] = ACTIONS(2997), - [sym__concat_operator] = ACTIONS(2999), - [sym__rel_operator] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [sym__capitalized_identifier] = ACTIONS(2999), - [aux_sym_tag_token1] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1282] = { - [sym_attribute] = STATE(1282), - [sym__identifier] = ACTIONS(2865), - [anon_sym_COLON_GT] = ACTIONS(2867), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_RPAREN] = ACTIONS(2867), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_COLON2] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_DASH_GT] = ACTIONS(2865), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2867), - [anon_sym_RBRACE] = ACTIONS(2867), - [anon_sym_constraint] = ACTIONS(2865), - [anon_sym_val] = ACTIONS(2865), - [anon_sym_end] = ACTIONS(2865), - [anon_sym_with] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_inherit] = ACTIONS(2865), - [anon_sym_method] = ACTIONS(2865), - [anon_sym_initializer] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_LBRACK_PIPE] = ACTIONS(2867), - [anon_sym_then] = ACTIONS(2865), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_do] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_LBRACE_LT] = ACTIONS(2867), - [anon_sym_GT_RBRACE] = ACTIONS(2867), - [anon_sym_begin] = ACTIONS(2865), - [sym_ocamlyacc_value] = ACTIONS(2867), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2865), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2867), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2867), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2867), - [aux_sym_number_token1] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [sym_prefix_operator] = ACTIONS(2867), - [anon_sym_PLUS_DOT] = ACTIONS(2865), - [anon_sym_DASH_DOT] = ACTIONS(2865), - [sym_hash_operator] = ACTIONS(2867), - [aux_sym__pow_operator_token1] = ACTIONS(2867), - [anon_sym_lsl] = ACTIONS(2865), - [anon_sym_lsr] = ACTIONS(2865), - [anon_sym_asr] = ACTIONS(2865), - [aux_sym__mult_operator_token1] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_land] = ACTIONS(2865), - [anon_sym_lor] = ACTIONS(2865), - [anon_sym_lxor] = ACTIONS(2865), - [aux_sym__add_operator_token1] = ACTIONS(2865), - [sym__concat_operator] = ACTIONS(2867), - [sym__rel_operator] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [sym__capitalized_identifier] = ACTIONS(2867), - [aux_sym_tag_token1] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1283] = { - [sym_attribute] = STATE(1283), - [sym__identifier] = ACTIONS(3113), - [anon_sym_SEMI_SEMI] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3113), - [anon_sym_and] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_external] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_true] = ACTIONS(3113), - [anon_sym_false] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_exception] = ACTIONS(3113), - [anon_sym_module] = ACTIONS(3113), - [anon_sym_open] = ACTIONS(3113), - [anon_sym_include] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_end] = ACTIONS(3113), - [anon_sym_object] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_PIPE] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_LBRACE_LT] = ACTIONS(3115), - [anon_sym_begin] = ACTIONS(3113), - [sym_ocamlyacc_value] = ACTIONS(3115), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3113), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3115), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3115), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3115), - [aux_sym_number_token1] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_prefix_operator] = ACTIONS(3115), - [anon_sym_PLUS_DOT] = ACTIONS(3113), - [anon_sym_DASH_DOT] = ACTIONS(3113), - [sym_hash_operator] = ACTIONS(3115), - [aux_sym__pow_operator_token1] = ACTIONS(3115), - [anon_sym_lsl] = ACTIONS(3113), - [anon_sym_lsr] = ACTIONS(3113), - [anon_sym_asr] = ACTIONS(3113), - [aux_sym__mult_operator_token1] = ACTIONS(3113), - [anon_sym_mod] = ACTIONS(3113), - [anon_sym_land] = ACTIONS(3113), - [anon_sym_lor] = ACTIONS(3113), - [anon_sym_lxor] = ACTIONS(3113), - [aux_sym__add_operator_token1] = ACTIONS(3113), - [sym__concat_operator] = ACTIONS(3115), - [sym__rel_operator] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [sym_let_operator] = ACTIONS(3115), - [sym_and_operator] = ACTIONS(3115), - [sym__capitalized_identifier] = ACTIONS(3115), - [aux_sym_directive_token1] = ACTIONS(3113), - [aux_sym_tag_token1] = ACTIONS(3115), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1284] = { - [sym_attribute] = STATE(1284), - [sym__identifier] = ACTIONS(3001), - [anon_sym_COLON_GT] = ACTIONS(3003), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_RPAREN] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_COLON2] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_DASH_GT] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(3003), - [anon_sym_RBRACE] = ACTIONS(3003), - [anon_sym_constraint] = ACTIONS(3001), - [anon_sym_val] = ACTIONS(3001), - [anon_sym_end] = ACTIONS(3001), - [anon_sym_with] = ACTIONS(3001), - [anon_sym_object] = ACTIONS(3001), - [anon_sym_inherit] = ACTIONS(3001), - [anon_sym_method] = ACTIONS(3001), - [anon_sym_initializer] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3003), - [anon_sym_then] = ACTIONS(3001), - [anon_sym_else] = ACTIONS(3001), - [anon_sym_do] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_LBRACE_LT] = ACTIONS(3003), - [anon_sym_GT_RBRACE] = ACTIONS(3003), - [anon_sym_begin] = ACTIONS(3001), - [sym_ocamlyacc_value] = ACTIONS(3003), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3001), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3003), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3003), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3003), - [aux_sym_number_token1] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [sym_prefix_operator] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3001), - [anon_sym_DASH_DOT] = ACTIONS(3001), - [sym_hash_operator] = ACTIONS(3003), - [aux_sym__pow_operator_token1] = ACTIONS(3003), - [anon_sym_lsl] = ACTIONS(3001), - [anon_sym_lsr] = ACTIONS(3001), - [anon_sym_asr] = ACTIONS(3001), - [aux_sym__mult_operator_token1] = ACTIONS(3001), - [anon_sym_mod] = ACTIONS(3001), - [anon_sym_land] = ACTIONS(3001), - [anon_sym_lor] = ACTIONS(3001), - [anon_sym_lxor] = ACTIONS(3001), - [aux_sym__add_operator_token1] = ACTIONS(3001), - [sym__concat_operator] = ACTIONS(3003), - [sym__rel_operator] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [sym__capitalized_identifier] = ACTIONS(3003), - [aux_sym_tag_token1] = ACTIONS(3003), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1285] = { - [sym_attribute] = STATE(1285), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_and] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym_and_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1286] = { - [sym_attribute] = STATE(1286), - [sym__identifier] = ACTIONS(2931), - [anon_sym_SEMI_SEMI] = ACTIONS(2933), - [anon_sym_let] = ACTIONS(2931), - [anon_sym_and] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_external] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_exception] = ACTIONS(2931), - [anon_sym_module] = ACTIONS(2931), - [anon_sym_open] = ACTIONS(2931), - [anon_sym_include] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_end] = ACTIONS(2931), - [anon_sym_object] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_PIPE] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_LBRACE_LT] = ACTIONS(2933), - [anon_sym_begin] = ACTIONS(2931), - [sym_ocamlyacc_value] = ACTIONS(2933), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2931), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2933), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2933), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2933), - [aux_sym_number_token1] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_prefix_operator] = ACTIONS(2933), - [anon_sym_PLUS_DOT] = ACTIONS(2931), - [anon_sym_DASH_DOT] = ACTIONS(2931), - [sym_hash_operator] = ACTIONS(2933), - [aux_sym__pow_operator_token1] = ACTIONS(2933), - [anon_sym_lsl] = ACTIONS(2931), - [anon_sym_lsr] = ACTIONS(2931), - [anon_sym_asr] = ACTIONS(2931), - [aux_sym__mult_operator_token1] = ACTIONS(2931), - [anon_sym_mod] = ACTIONS(2931), - [anon_sym_land] = ACTIONS(2931), - [anon_sym_lor] = ACTIONS(2931), - [anon_sym_lxor] = ACTIONS(2931), - [aux_sym__add_operator_token1] = ACTIONS(2931), - [sym__concat_operator] = ACTIONS(2933), - [sym__rel_operator] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [sym_let_operator] = ACTIONS(2933), - [sym_and_operator] = ACTIONS(2933), - [sym__capitalized_identifier] = ACTIONS(2933), - [aux_sym_directive_token1] = ACTIONS(2931), - [aux_sym_tag_token1] = ACTIONS(2933), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1287] = { - [sym_attribute] = STATE(1287), - [sym__identifier] = ACTIONS(2955), - [anon_sym_COLON_GT] = ACTIONS(2957), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_RPAREN] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [anon_sym_COLON2] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_DASH_GT] = ACTIONS(2955), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2957), - [anon_sym_RBRACE] = ACTIONS(2957), - [anon_sym_constraint] = ACTIONS(2955), - [anon_sym_val] = ACTIONS(2955), - [anon_sym_end] = ACTIONS(2955), - [anon_sym_with] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_inherit] = ACTIONS(2955), - [anon_sym_method] = ACTIONS(2955), - [anon_sym_initializer] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_then] = ACTIONS(2955), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_do] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_LBRACE_LT] = ACTIONS(2957), - [anon_sym_GT_RBRACE] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2955), - [sym_ocamlyacc_value] = ACTIONS(2957), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2955), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2957), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2957), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2957), - [aux_sym_number_token1] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_prefix_operator] = ACTIONS(2957), - [anon_sym_PLUS_DOT] = ACTIONS(2955), - [anon_sym_DASH_DOT] = ACTIONS(2955), - [sym_hash_operator] = ACTIONS(2957), - [aux_sym__pow_operator_token1] = ACTIONS(2957), - [anon_sym_lsl] = ACTIONS(2955), - [anon_sym_lsr] = ACTIONS(2955), - [anon_sym_asr] = ACTIONS(2955), - [aux_sym__mult_operator_token1] = ACTIONS(2955), - [anon_sym_mod] = ACTIONS(2955), - [anon_sym_land] = ACTIONS(2955), - [anon_sym_lor] = ACTIONS(2955), - [anon_sym_lxor] = ACTIONS(2955), - [aux_sym__add_operator_token1] = ACTIONS(2955), - [sym__concat_operator] = ACTIONS(2957), - [sym__rel_operator] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [sym__capitalized_identifier] = ACTIONS(2957), - [aux_sym_tag_token1] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1288] = { - [sym_attribute] = STATE(1288), - [sym__identifier] = ACTIONS(3109), - [anon_sym_SEMI_SEMI] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_and] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_external] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_exception] = ACTIONS(3109), - [anon_sym_module] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_include] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym_let_operator] = ACTIONS(3111), - [sym_and_operator] = ACTIONS(3111), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_directive_token1] = ACTIONS(3109), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1289] = { - [sym_attribute] = STATE(1289), - [sym__identifier] = ACTIONS(2963), - [anon_sym_COLON_GT] = ACTIONS(2965), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_RPAREN] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_true] = ACTIONS(2963), - [anon_sym_false] = ACTIONS(2963), - [anon_sym_COLON2] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_DASH_GT] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2965), - [anon_sym_RBRACE] = ACTIONS(2965), - [anon_sym_constraint] = ACTIONS(2963), - [anon_sym_val] = ACTIONS(2963), - [anon_sym_end] = ACTIONS(2963), - [anon_sym_with] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_inherit] = ACTIONS(2963), - [anon_sym_method] = ACTIONS(2963), - [anon_sym_initializer] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_then] = ACTIONS(2963), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_do] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_LBRACE_LT] = ACTIONS(2965), - [anon_sym_GT_RBRACE] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [sym_ocamlyacc_value] = ACTIONS(2965), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2963), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2965), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2965), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2965), - [aux_sym_number_token1] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym_prefix_operator] = ACTIONS(2965), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [sym_hash_operator] = ACTIONS(2965), - [aux_sym__pow_operator_token1] = ACTIONS(2965), - [anon_sym_lsl] = ACTIONS(2963), - [anon_sym_lsr] = ACTIONS(2963), - [anon_sym_asr] = ACTIONS(2963), - [aux_sym__mult_operator_token1] = ACTIONS(2963), - [anon_sym_mod] = ACTIONS(2963), - [anon_sym_land] = ACTIONS(2963), - [anon_sym_lor] = ACTIONS(2963), - [anon_sym_lxor] = ACTIONS(2963), - [aux_sym__add_operator_token1] = ACTIONS(2963), - [sym__concat_operator] = ACTIONS(2965), - [sym__rel_operator] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [sym__capitalized_identifier] = ACTIONS(2965), - [aux_sym_tag_token1] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1290] = { - [sym_attribute] = STATE(1290), - [sym__identifier] = ACTIONS(2807), - [anon_sym_SEMI_SEMI] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2807), - [anon_sym_and] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_QMARK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_external] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2807), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_COLON_EQ] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_RBRACK] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_exception] = ACTIONS(2807), - [anon_sym_module] = ACTIONS(2807), - [anon_sym_open] = ACTIONS(2807), - [anon_sym_include] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_end] = ACTIONS(2807), - [anon_sym_object] = ACTIONS(2807), - [anon_sym_in] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_PIPE] = ACTIONS(2809), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_LBRACE_LT] = ACTIONS(2809), - [anon_sym_begin] = ACTIONS(2807), - [sym_ocamlyacc_value] = ACTIONS(2809), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2807), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2809), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2809), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2809), - [aux_sym_number_token1] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_prefix_operator] = ACTIONS(2809), - [anon_sym_PLUS_DOT] = ACTIONS(2807), - [anon_sym_DASH_DOT] = ACTIONS(2807), - [sym_hash_operator] = ACTIONS(2809), - [aux_sym__pow_operator_token1] = ACTIONS(2809), - [anon_sym_lsl] = ACTIONS(2807), - [anon_sym_lsr] = ACTIONS(2807), - [anon_sym_asr] = ACTIONS(2807), - [aux_sym__mult_operator_token1] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_land] = ACTIONS(2807), - [anon_sym_lor] = ACTIONS(2807), - [anon_sym_lxor] = ACTIONS(2807), - [aux_sym__add_operator_token1] = ACTIONS(2807), - [sym__concat_operator] = ACTIONS(2809), - [sym__rel_operator] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_PIPE_PIPE] = ACTIONS(2807), - [sym_let_operator] = ACTIONS(2809), - [sym_and_operator] = ACTIONS(2809), - [sym__capitalized_identifier] = ACTIONS(2809), - [aux_sym_directive_token1] = ACTIONS(2807), - [aux_sym_tag_token1] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1291] = { - [sym_attribute] = STATE(1291), - [sym__identifier] = ACTIONS(2915), - [anon_sym_SEMI_SEMI] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_and] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_external] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_exception] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_open] = ACTIONS(2915), - [anon_sym_include] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_end] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_LBRACE_LT] = ACTIONS(2917), - [anon_sym_begin] = ACTIONS(2915), - [sym_ocamlyacc_value] = ACTIONS(2917), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2915), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2917), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2917), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2917), - [aux_sym_number_token1] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_prefix_operator] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2915), - [anon_sym_DASH_DOT] = ACTIONS(2915), - [sym_hash_operator] = ACTIONS(2917), - [aux_sym__pow_operator_token1] = ACTIONS(2917), - [anon_sym_lsl] = ACTIONS(2915), - [anon_sym_lsr] = ACTIONS(2915), - [anon_sym_asr] = ACTIONS(2915), - [aux_sym__mult_operator_token1] = ACTIONS(2915), - [anon_sym_mod] = ACTIONS(2915), - [anon_sym_land] = ACTIONS(2915), - [anon_sym_lor] = ACTIONS(2915), - [anon_sym_lxor] = ACTIONS(2915), - [aux_sym__add_operator_token1] = ACTIONS(2915), - [sym__concat_operator] = ACTIONS(2917), - [sym__rel_operator] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [sym_let_operator] = ACTIONS(2917), - [sym_and_operator] = ACTIONS(2917), - [sym__capitalized_identifier] = ACTIONS(2917), - [aux_sym_directive_token1] = ACTIONS(2915), - [aux_sym_tag_token1] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1292] = { - [sym_attribute] = STATE(1292), - [sym__identifier] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_and] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_external] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_exception] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_include] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_end] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_LBRACE_LT] = ACTIONS(3087), - [anon_sym_begin] = ACTIONS(3085), - [sym_ocamlyacc_value] = ACTIONS(3087), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3085), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3087), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3087), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3087), - [aux_sym_number_token1] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym_prefix_operator] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3085), - [anon_sym_DASH_DOT] = ACTIONS(3085), - [sym_hash_operator] = ACTIONS(3087), - [aux_sym__pow_operator_token1] = ACTIONS(3087), - [anon_sym_lsl] = ACTIONS(3085), - [anon_sym_lsr] = ACTIONS(3085), - [anon_sym_asr] = ACTIONS(3085), - [aux_sym__mult_operator_token1] = ACTIONS(3085), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_land] = ACTIONS(3085), - [anon_sym_lor] = ACTIONS(3085), - [anon_sym_lxor] = ACTIONS(3085), - [aux_sym__add_operator_token1] = ACTIONS(3085), - [sym__concat_operator] = ACTIONS(3087), - [sym__rel_operator] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym_let_operator] = ACTIONS(3087), - [sym_and_operator] = ACTIONS(3087), - [sym__capitalized_identifier] = ACTIONS(3087), - [aux_sym_directive_token1] = ACTIONS(3085), - [aux_sym_tag_token1] = ACTIONS(3087), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1293] = { - [sym_attribute] = STATE(1293), - [sym__identifier] = ACTIONS(2947), - [anon_sym_SEMI_SEMI] = ACTIONS(2949), - [anon_sym_let] = ACTIONS(2947), - [anon_sym_and] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_external] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_exception] = ACTIONS(2947), - [anon_sym_module] = ACTIONS(2947), - [anon_sym_open] = ACTIONS(2947), - [anon_sym_include] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_end] = ACTIONS(2947), - [anon_sym_object] = ACTIONS(2947), - [anon_sym_in] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_PIPE] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_LBRACE_LT] = ACTIONS(2949), - [anon_sym_begin] = ACTIONS(2947), - [sym_ocamlyacc_value] = ACTIONS(2949), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2947), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2949), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2949), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2949), - [aux_sym_number_token1] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_prefix_operator] = ACTIONS(2949), - [anon_sym_PLUS_DOT] = ACTIONS(2947), - [anon_sym_DASH_DOT] = ACTIONS(2947), - [sym_hash_operator] = ACTIONS(2949), - [aux_sym__pow_operator_token1] = ACTIONS(2949), - [anon_sym_lsl] = ACTIONS(2947), - [anon_sym_lsr] = ACTIONS(2947), - [anon_sym_asr] = ACTIONS(2947), - [aux_sym__mult_operator_token1] = ACTIONS(2947), - [anon_sym_mod] = ACTIONS(2947), - [anon_sym_land] = ACTIONS(2947), - [anon_sym_lor] = ACTIONS(2947), - [anon_sym_lxor] = ACTIONS(2947), - [aux_sym__add_operator_token1] = ACTIONS(2947), - [sym__concat_operator] = ACTIONS(2949), - [sym__rel_operator] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [sym_let_operator] = ACTIONS(2949), - [sym_and_operator] = ACTIONS(2949), - [sym__capitalized_identifier] = ACTIONS(2949), - [aux_sym_directive_token1] = ACTIONS(2947), - [aux_sym_tag_token1] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1294] = { - [sym_attribute] = STATE(1294), - [sym__identifier] = ACTIONS(2801), - [anon_sym_COLON_GT] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_COLON2] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_constraint] = ACTIONS(2801), - [anon_sym_val] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_inherit] = ACTIONS(2801), - [anon_sym_method] = ACTIONS(2801), - [anon_sym_initializer] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_then] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_do] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_GT_RBRACE] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1295] = { - [sym_attribute] = STATE(1295), - [sym__identifier] = ACTIONS(2851), - [anon_sym_COLON_GT] = ACTIONS(2853), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_RPAREN] = ACTIONS(2853), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_COLON_EQ] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [anon_sym_COLON2] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_DASH_GT] = ACTIONS(2851), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2853), - [anon_sym_RBRACE] = ACTIONS(2853), - [anon_sym_constraint] = ACTIONS(2851), - [anon_sym_val] = ACTIONS(2851), - [anon_sym_end] = ACTIONS(2851), - [anon_sym_with] = ACTIONS(2851), - [anon_sym_object] = ACTIONS(2851), - [anon_sym_inherit] = ACTIONS(2851), - [anon_sym_method] = ACTIONS(2851), - [anon_sym_initializer] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_PIPE] = ACTIONS(2853), - [anon_sym_then] = ACTIONS(2851), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_do] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_LBRACE_LT] = ACTIONS(2853), - [anon_sym_GT_RBRACE] = ACTIONS(2853), - [anon_sym_begin] = ACTIONS(2851), - [sym_ocamlyacc_value] = ACTIONS(2853), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2851), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2853), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2853), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2853), - [aux_sym_number_token1] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_prefix_operator] = ACTIONS(2853), - [anon_sym_PLUS_DOT] = ACTIONS(2851), - [anon_sym_DASH_DOT] = ACTIONS(2851), - [sym_hash_operator] = ACTIONS(2853), - [aux_sym__pow_operator_token1] = ACTIONS(2853), - [anon_sym_lsl] = ACTIONS(2851), - [anon_sym_lsr] = ACTIONS(2851), - [anon_sym_asr] = ACTIONS(2851), - [aux_sym__mult_operator_token1] = ACTIONS(2851), - [anon_sym_mod] = ACTIONS(2851), - [anon_sym_land] = ACTIONS(2851), - [anon_sym_lor] = ACTIONS(2851), - [anon_sym_lxor] = ACTIONS(2851), - [aux_sym__add_operator_token1] = ACTIONS(2851), - [sym__concat_operator] = ACTIONS(2853), - [sym__rel_operator] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [sym__capitalized_identifier] = ACTIONS(2853), - [aux_sym_tag_token1] = ACTIONS(2853), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1296] = { - [sym_attribute] = STATE(1296), - [sym__identifier] = ACTIONS(2851), - [anon_sym_SEMI_SEMI] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2851), - [anon_sym_and] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_external] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_COLON_EQ] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_exception] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2851), - [anon_sym_open] = ACTIONS(2851), - [anon_sym_include] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_end] = ACTIONS(2851), - [anon_sym_object] = ACTIONS(2851), - [anon_sym_in] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_PIPE] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_LBRACE_LT] = ACTIONS(2853), - [anon_sym_begin] = ACTIONS(2851), - [sym_ocamlyacc_value] = ACTIONS(2853), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2851), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2853), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2853), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2853), - [aux_sym_number_token1] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_prefix_operator] = ACTIONS(2853), - [anon_sym_PLUS_DOT] = ACTIONS(2851), - [anon_sym_DASH_DOT] = ACTIONS(2851), - [sym_hash_operator] = ACTIONS(2853), - [aux_sym__pow_operator_token1] = ACTIONS(2853), - [anon_sym_lsl] = ACTIONS(2851), - [anon_sym_lsr] = ACTIONS(2851), - [anon_sym_asr] = ACTIONS(2851), - [aux_sym__mult_operator_token1] = ACTIONS(2851), - [anon_sym_mod] = ACTIONS(2851), - [anon_sym_land] = ACTIONS(2851), - [anon_sym_lor] = ACTIONS(2851), - [anon_sym_lxor] = ACTIONS(2851), - [aux_sym__add_operator_token1] = ACTIONS(2851), - [sym__concat_operator] = ACTIONS(2853), - [sym__rel_operator] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [sym_let_operator] = ACTIONS(2853), - [sym_and_operator] = ACTIONS(2853), - [sym__capitalized_identifier] = ACTIONS(2853), - [aux_sym_directive_token1] = ACTIONS(2851), - [aux_sym_tag_token1] = ACTIONS(2853), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1297] = { - [sym_attribute] = STATE(1297), - [sym__identifier] = ACTIONS(2963), - [anon_sym_SEMI_SEMI] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_and] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_external] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_true] = ACTIONS(2963), - [anon_sym_false] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_exception] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_include] = ACTIONS(2963), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_end] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_LBRACE_LT] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [sym_ocamlyacc_value] = ACTIONS(2965), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2963), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2965), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2965), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2965), - [aux_sym_number_token1] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym_prefix_operator] = ACTIONS(2965), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [sym_hash_operator] = ACTIONS(2965), - [aux_sym__pow_operator_token1] = ACTIONS(2965), - [anon_sym_lsl] = ACTIONS(2963), - [anon_sym_lsr] = ACTIONS(2963), - [anon_sym_asr] = ACTIONS(2963), - [aux_sym__mult_operator_token1] = ACTIONS(2963), - [anon_sym_mod] = ACTIONS(2963), - [anon_sym_land] = ACTIONS(2963), - [anon_sym_lor] = ACTIONS(2963), - [anon_sym_lxor] = ACTIONS(2963), - [aux_sym__add_operator_token1] = ACTIONS(2963), - [sym__concat_operator] = ACTIONS(2965), - [sym__rel_operator] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [sym_let_operator] = ACTIONS(2965), - [sym_and_operator] = ACTIONS(2965), - [sym__capitalized_identifier] = ACTIONS(2965), - [aux_sym_directive_token1] = ACTIONS(2963), - [aux_sym_tag_token1] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1298] = { - [sym_attribute] = STATE(1298), - [sym__identifier] = ACTIONS(2955), - [anon_sym_SEMI_SEMI] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_and] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_external] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_exception] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_open] = ACTIONS(2955), - [anon_sym_include] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_end] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_in] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_LBRACE_LT] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2955), - [sym_ocamlyacc_value] = ACTIONS(2957), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2955), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2957), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2957), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2957), - [aux_sym_number_token1] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_prefix_operator] = ACTIONS(2957), - [anon_sym_PLUS_DOT] = ACTIONS(2955), - [anon_sym_DASH_DOT] = ACTIONS(2955), - [sym_hash_operator] = ACTIONS(2957), - [aux_sym__pow_operator_token1] = ACTIONS(2957), - [anon_sym_lsl] = ACTIONS(2955), - [anon_sym_lsr] = ACTIONS(2955), - [anon_sym_asr] = ACTIONS(2955), - [aux_sym__mult_operator_token1] = ACTIONS(2955), - [anon_sym_mod] = ACTIONS(2955), - [anon_sym_land] = ACTIONS(2955), - [anon_sym_lor] = ACTIONS(2955), - [anon_sym_lxor] = ACTIONS(2955), - [aux_sym__add_operator_token1] = ACTIONS(2955), - [sym__concat_operator] = ACTIONS(2957), - [sym__rel_operator] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [sym_let_operator] = ACTIONS(2957), - [sym_and_operator] = ACTIONS(2957), - [sym__capitalized_identifier] = ACTIONS(2957), - [aux_sym_directive_token1] = ACTIONS(2955), - [aux_sym_tag_token1] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1299] = { - [sym_attribute] = STATE(1299), - [sym__identifier] = ACTIONS(3089), - [anon_sym_COLON_GT] = ACTIONS(3091), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_RPAREN] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_COLON2] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_DASH_GT] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_RBRACE] = ACTIONS(3091), - [anon_sym_constraint] = ACTIONS(3089), - [anon_sym_val] = ACTIONS(3089), - [anon_sym_end] = ACTIONS(3089), - [anon_sym_with] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_inherit] = ACTIONS(3089), - [anon_sym_method] = ACTIONS(3089), - [anon_sym_initializer] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3091), - [anon_sym_then] = ACTIONS(3089), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_do] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_LBRACE_LT] = ACTIONS(3091), - [anon_sym_GT_RBRACE] = ACTIONS(3091), - [anon_sym_begin] = ACTIONS(3089), - [sym_ocamlyacc_value] = ACTIONS(3091), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3089), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3091), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3091), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3091), - [aux_sym_number_token1] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_prefix_operator] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3089), - [anon_sym_DASH_DOT] = ACTIONS(3089), - [sym_hash_operator] = ACTIONS(3091), - [aux_sym__pow_operator_token1] = ACTIONS(3091), - [anon_sym_lsl] = ACTIONS(3089), - [anon_sym_lsr] = ACTIONS(3089), - [anon_sym_asr] = ACTIONS(3089), - [aux_sym__mult_operator_token1] = ACTIONS(3089), - [anon_sym_mod] = ACTIONS(3089), - [anon_sym_land] = ACTIONS(3089), - [anon_sym_lor] = ACTIONS(3089), - [anon_sym_lxor] = ACTIONS(3089), - [aux_sym__add_operator_token1] = ACTIONS(3089), - [sym__concat_operator] = ACTIONS(3091), - [sym__rel_operator] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [sym__capitalized_identifier] = ACTIONS(3091), - [aux_sym_tag_token1] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1300] = { - [sym_attribute] = STATE(1300), - [sym__identifier] = ACTIONS(2975), - [anon_sym_COLON_GT] = ACTIONS(2977), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2975), - [anon_sym_false] = ACTIONS(2975), - [anon_sym_COLON2] = ACTIONS(2975), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_DASH_GT] = ACTIONS(2975), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_constraint] = ACTIONS(2975), - [anon_sym_val] = ACTIONS(2975), - [anon_sym_end] = ACTIONS(2975), - [anon_sym_with] = ACTIONS(2975), - [anon_sym_object] = ACTIONS(2975), - [anon_sym_inherit] = ACTIONS(2975), - [anon_sym_method] = ACTIONS(2975), - [anon_sym_initializer] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_POUND] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2977), - [anon_sym_then] = ACTIONS(2975), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_do] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2975), - [anon_sym_LBRACE_LT] = ACTIONS(2977), - [anon_sym_GT_RBRACE] = ACTIONS(2977), - [anon_sym_begin] = ACTIONS(2975), - [sym_ocamlyacc_value] = ACTIONS(2977), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2977), - [aux_sym_number_token1] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_prefix_operator] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [sym_hash_operator] = ACTIONS(2977), - [aux_sym__pow_operator_token1] = ACTIONS(2977), - [anon_sym_lsl] = ACTIONS(2975), - [anon_sym_lsr] = ACTIONS(2975), - [anon_sym_asr] = ACTIONS(2975), - [aux_sym__mult_operator_token1] = ACTIONS(2975), - [anon_sym_mod] = ACTIONS(2975), - [anon_sym_land] = ACTIONS(2975), - [anon_sym_lor] = ACTIONS(2975), - [anon_sym_lxor] = ACTIONS(2975), - [aux_sym__add_operator_token1] = ACTIONS(2975), - [sym__concat_operator] = ACTIONS(2977), - [sym__rel_operator] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [sym__capitalized_identifier] = ACTIONS(2977), - [aux_sym_tag_token1] = ACTIONS(2977), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1301] = { - [sym_attribute] = STATE(1301), - [sym__identifier] = ACTIONS(2815), - [anon_sym_SEMI_SEMI] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2815), - [anon_sym_and] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_external] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_exception] = ACTIONS(2815), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_open] = ACTIONS(2815), - [anon_sym_include] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_object] = ACTIONS(2815), - [anon_sym_in] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_PIPE] = ACTIONS(2817), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_LBRACE_LT] = ACTIONS(2817), - [anon_sym_begin] = ACTIONS(2815), - [sym_ocamlyacc_value] = ACTIONS(2817), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2815), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2817), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2817), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2817), - [aux_sym_number_token1] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_prefix_operator] = ACTIONS(2817), - [anon_sym_PLUS_DOT] = ACTIONS(2815), - [anon_sym_DASH_DOT] = ACTIONS(2815), - [sym_hash_operator] = ACTIONS(2817), - [aux_sym__pow_operator_token1] = ACTIONS(2817), - [anon_sym_lsl] = ACTIONS(2815), - [anon_sym_lsr] = ACTIONS(2815), - [anon_sym_asr] = ACTIONS(2815), - [aux_sym__mult_operator_token1] = ACTIONS(2815), - [anon_sym_mod] = ACTIONS(2815), - [anon_sym_land] = ACTIONS(2815), - [anon_sym_lor] = ACTIONS(2815), - [anon_sym_lxor] = ACTIONS(2815), - [aux_sym__add_operator_token1] = ACTIONS(2815), - [sym__concat_operator] = ACTIONS(2817), - [sym__rel_operator] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [sym_let_operator] = ACTIONS(2817), - [sym_and_operator] = ACTIONS(2817), - [sym__capitalized_identifier] = ACTIONS(2817), - [aux_sym_directive_token1] = ACTIONS(2815), - [aux_sym_tag_token1] = ACTIONS(2817), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1302] = { - [sym_attribute] = STATE(1302), - [sym__identifier] = ACTIONS(2979), - [anon_sym_COLON_GT] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_RPAREN] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [anon_sym_COLON2] = ACTIONS(2979), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_DASH_GT] = ACTIONS(2979), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_constraint] = ACTIONS(2979), - [anon_sym_val] = ACTIONS(2979), - [anon_sym_end] = ACTIONS(2979), - [anon_sym_with] = ACTIONS(2979), - [anon_sym_object] = ACTIONS(2979), - [anon_sym_inherit] = ACTIONS(2979), - [anon_sym_method] = ACTIONS(2979), - [anon_sym_initializer] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_COLON_COLON] = ACTIONS(2981), - [anon_sym_LBRACK_PIPE] = ACTIONS(2981), - [anon_sym_then] = ACTIONS(2979), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_do] = ACTIONS(2979), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_LBRACE_LT] = ACTIONS(2981), - [anon_sym_GT_RBRACE] = ACTIONS(2981), - [anon_sym_begin] = ACTIONS(2979), - [sym_ocamlyacc_value] = ACTIONS(2981), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2981), - [aux_sym_number_token1] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym_prefix_operator] = ACTIONS(2981), - [anon_sym_PLUS_DOT] = ACTIONS(2979), - [anon_sym_DASH_DOT] = ACTIONS(2979), - [sym_hash_operator] = ACTIONS(2981), - [aux_sym__pow_operator_token1] = ACTIONS(2981), - [anon_sym_lsl] = ACTIONS(2979), - [anon_sym_lsr] = ACTIONS(2979), - [anon_sym_asr] = ACTIONS(2979), - [aux_sym__mult_operator_token1] = ACTIONS(2979), - [anon_sym_mod] = ACTIONS(2979), - [anon_sym_land] = ACTIONS(2979), - [anon_sym_lor] = ACTIONS(2979), - [anon_sym_lxor] = ACTIONS(2979), - [aux_sym__add_operator_token1] = ACTIONS(2979), - [sym__concat_operator] = ACTIONS(2981), - [sym__rel_operator] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__capitalized_identifier] = ACTIONS(2981), - [aux_sym_tag_token1] = ACTIONS(2981), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1303] = { - [sym_attribute] = STATE(1303), - [sym__identifier] = ACTIONS(2991), - [anon_sym_COLON_GT] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_RPAREN] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2991), - [anon_sym_false] = ACTIONS(2991), - [anon_sym_COLON2] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_DASH_GT] = ACTIONS(2991), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_constraint] = ACTIONS(2991), - [anon_sym_val] = ACTIONS(2991), - [anon_sym_end] = ACTIONS(2991), - [anon_sym_with] = ACTIONS(2991), - [anon_sym_object] = ACTIONS(2991), - [anon_sym_inherit] = ACTIONS(2991), - [anon_sym_method] = ACTIONS(2991), - [anon_sym_initializer] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_PIPE] = ACTIONS(2993), - [anon_sym_then] = ACTIONS(2991), - [anon_sym_else] = ACTIONS(2991), - [anon_sym_do] = ACTIONS(2991), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_LBRACE_LT] = ACTIONS(2993), - [anon_sym_GT_RBRACE] = ACTIONS(2993), - [anon_sym_begin] = ACTIONS(2991), - [sym_ocamlyacc_value] = ACTIONS(2993), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2991), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2993), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2993), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2993), - [aux_sym_number_token1] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_prefix_operator] = ACTIONS(2993), - [anon_sym_PLUS_DOT] = ACTIONS(2991), - [anon_sym_DASH_DOT] = ACTIONS(2991), - [sym_hash_operator] = ACTIONS(2993), - [aux_sym__pow_operator_token1] = ACTIONS(2993), - [anon_sym_lsl] = ACTIONS(2991), - [anon_sym_lsr] = ACTIONS(2991), - [anon_sym_asr] = ACTIONS(2991), - [aux_sym__mult_operator_token1] = ACTIONS(2991), - [anon_sym_mod] = ACTIONS(2991), - [anon_sym_land] = ACTIONS(2991), - [anon_sym_lor] = ACTIONS(2991), - [anon_sym_lxor] = ACTIONS(2991), - [aux_sym__add_operator_token1] = ACTIONS(2991), - [sym__concat_operator] = ACTIONS(2993), - [sym__rel_operator] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [sym__capitalized_identifier] = ACTIONS(2993), - [aux_sym_tag_token1] = ACTIONS(2993), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1304] = { - [sym_attribute] = STATE(1304), - [sym__identifier] = ACTIONS(2845), - [anon_sym_COLON_GT] = ACTIONS(2847), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_RPAREN] = ACTIONS(2847), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_COLON_EQ] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_COLON2] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_DASH_GT] = ACTIONS(2845), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2847), - [anon_sym_RBRACE] = ACTIONS(2847), - [anon_sym_constraint] = ACTIONS(2845), - [anon_sym_val] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_with] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_inherit] = ACTIONS(2845), - [anon_sym_method] = ACTIONS(2845), - [anon_sym_initializer] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_PIPE] = ACTIONS(2847), - [anon_sym_then] = ACTIONS(2845), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_do] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_LBRACE_LT] = ACTIONS(2847), - [anon_sym_GT_RBRACE] = ACTIONS(2847), - [anon_sym_begin] = ACTIONS(2845), - [sym_ocamlyacc_value] = ACTIONS(2847), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2845), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2847), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2847), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2847), - [aux_sym_number_token1] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_prefix_operator] = ACTIONS(2847), - [anon_sym_PLUS_DOT] = ACTIONS(2845), - [anon_sym_DASH_DOT] = ACTIONS(2845), - [sym_hash_operator] = ACTIONS(2847), - [aux_sym__pow_operator_token1] = ACTIONS(2847), - [anon_sym_lsl] = ACTIONS(2845), - [anon_sym_lsr] = ACTIONS(2845), - [anon_sym_asr] = ACTIONS(2845), - [aux_sym__mult_operator_token1] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_land] = ACTIONS(2845), - [anon_sym_lor] = ACTIONS(2845), - [anon_sym_lxor] = ACTIONS(2845), - [aux_sym__add_operator_token1] = ACTIONS(2845), - [sym__concat_operator] = ACTIONS(2847), - [sym__rel_operator] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [sym__capitalized_identifier] = ACTIONS(2847), - [aux_sym_tag_token1] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1305] = { - [sym_attribute] = STATE(1305), - [sym__identifier] = ACTIONS(2991), - [anon_sym_SEMI_SEMI] = ACTIONS(2993), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_and] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_external] = ACTIONS(2991), - [anon_sym_type] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2991), - [anon_sym_false] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_exception] = ACTIONS(2991), - [anon_sym_module] = ACTIONS(2991), - [anon_sym_open] = ACTIONS(2991), - [anon_sym_include] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2991), - [anon_sym_end] = ACTIONS(2991), - [anon_sym_object] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_PIPE] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2991), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_LBRACE_LT] = ACTIONS(2993), - [anon_sym_begin] = ACTIONS(2991), - [sym_ocamlyacc_value] = ACTIONS(2993), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2991), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2993), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2993), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2993), - [aux_sym_number_token1] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_prefix_operator] = ACTIONS(2993), - [anon_sym_PLUS_DOT] = ACTIONS(2991), - [anon_sym_DASH_DOT] = ACTIONS(2991), - [sym_hash_operator] = ACTIONS(2993), - [aux_sym__pow_operator_token1] = ACTIONS(2993), - [anon_sym_lsl] = ACTIONS(2991), - [anon_sym_lsr] = ACTIONS(2991), - [anon_sym_asr] = ACTIONS(2991), - [aux_sym__mult_operator_token1] = ACTIONS(2991), - [anon_sym_mod] = ACTIONS(2991), - [anon_sym_land] = ACTIONS(2991), - [anon_sym_lor] = ACTIONS(2991), - [anon_sym_lxor] = ACTIONS(2991), - [aux_sym__add_operator_token1] = ACTIONS(2991), - [sym__concat_operator] = ACTIONS(2993), - [sym__rel_operator] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [sym_let_operator] = ACTIONS(2993), - [sym_and_operator] = ACTIONS(2993), - [sym__capitalized_identifier] = ACTIONS(2993), - [aux_sym_directive_token1] = ACTIONS(2991), - [aux_sym_tag_token1] = ACTIONS(2993), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1306] = { - [sym_attribute] = STATE(1306), - [sym__identifier] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_and] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_external] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_exception] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_include] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_in] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym_let_operator] = ACTIONS(2803), - [sym_and_operator] = ACTIONS(2803), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_directive_token1] = ACTIONS(2801), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1307] = { - [sym_attribute] = STATE(1307), - [sym__identifier] = ACTIONS(2967), - [anon_sym_SEMI_SEMI] = ACTIONS(2969), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_and] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_external] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_true] = ACTIONS(2967), - [anon_sym_false] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_exception] = ACTIONS(2967), - [anon_sym_module] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_include] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_end] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(2969), - [anon_sym_LBRACK_PIPE] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_LBRACE_LT] = ACTIONS(2969), - [anon_sym_begin] = ACTIONS(2967), - [sym_ocamlyacc_value] = ACTIONS(2969), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2967), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2969), - [aux_sym_number_token1] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym_prefix_operator] = ACTIONS(2969), - [anon_sym_PLUS_DOT] = ACTIONS(2967), - [anon_sym_DASH_DOT] = ACTIONS(2967), - [sym_hash_operator] = ACTIONS(2969), - [aux_sym__pow_operator_token1] = ACTIONS(2969), - [anon_sym_lsl] = ACTIONS(2967), - [anon_sym_lsr] = ACTIONS(2967), - [anon_sym_asr] = ACTIONS(2967), - [aux_sym__mult_operator_token1] = ACTIONS(2967), - [anon_sym_mod] = ACTIONS(2967), - [anon_sym_land] = ACTIONS(2967), - [anon_sym_lor] = ACTIONS(2967), - [anon_sym_lxor] = ACTIONS(2967), - [aux_sym__add_operator_token1] = ACTIONS(2967), - [sym__concat_operator] = ACTIONS(2969), - [sym__rel_operator] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [sym_let_operator] = ACTIONS(2969), - [sym_and_operator] = ACTIONS(2969), - [sym__capitalized_identifier] = ACTIONS(2969), - [aux_sym_directive_token1] = ACTIONS(2967), - [aux_sym_tag_token1] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1308] = { - [sym_attribute] = STATE(1308), - [sym__identifier] = ACTIONS(2943), - [anon_sym_SEMI_SEMI] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2943), - [anon_sym_and] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_external] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_exception] = ACTIONS(2943), - [anon_sym_module] = ACTIONS(2943), - [anon_sym_open] = ACTIONS(2943), - [anon_sym_include] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_end] = ACTIONS(2943), - [anon_sym_object] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_LBRACE_LT] = ACTIONS(2945), - [anon_sym_begin] = ACTIONS(2943), - [sym_ocamlyacc_value] = ACTIONS(2945), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2943), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2945), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2945), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2945), - [aux_sym_number_token1] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_prefix_operator] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [sym_hash_operator] = ACTIONS(2945), - [aux_sym__pow_operator_token1] = ACTIONS(2945), - [anon_sym_lsl] = ACTIONS(2943), - [anon_sym_lsr] = ACTIONS(2943), - [anon_sym_asr] = ACTIONS(2943), - [aux_sym__mult_operator_token1] = ACTIONS(2943), - [anon_sym_mod] = ACTIONS(2943), - [anon_sym_land] = ACTIONS(2943), - [anon_sym_lor] = ACTIONS(2943), - [anon_sym_lxor] = ACTIONS(2943), - [aux_sym__add_operator_token1] = ACTIONS(2943), - [sym__concat_operator] = ACTIONS(2945), - [sym__rel_operator] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [sym_let_operator] = ACTIONS(2945), - [sym_and_operator] = ACTIONS(2945), - [sym__capitalized_identifier] = ACTIONS(2945), - [aux_sym_directive_token1] = ACTIONS(2943), - [aux_sym_tag_token1] = ACTIONS(2945), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1309] = { - [sym_attribute] = STATE(1309), - [sym__identifier] = ACTIONS(2967), - [anon_sym_COLON_GT] = ACTIONS(2969), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_true] = ACTIONS(2967), - [anon_sym_false] = ACTIONS(2967), - [anon_sym_COLON2] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2969), - [anon_sym_DASH_GT] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_constraint] = ACTIONS(2967), - [anon_sym_val] = ACTIONS(2967), - [anon_sym_end] = ACTIONS(2967), - [anon_sym_with] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_inherit] = ACTIONS(2967), - [anon_sym_method] = ACTIONS(2967), - [anon_sym_initializer] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(2969), - [anon_sym_LBRACK_PIPE] = ACTIONS(2969), - [anon_sym_then] = ACTIONS(2967), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_do] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_LBRACE_LT] = ACTIONS(2969), - [anon_sym_GT_RBRACE] = ACTIONS(2969), - [anon_sym_begin] = ACTIONS(2967), - [sym_ocamlyacc_value] = ACTIONS(2969), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2967), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2969), - [aux_sym_number_token1] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym_prefix_operator] = ACTIONS(2969), - [anon_sym_PLUS_DOT] = ACTIONS(2967), - [anon_sym_DASH_DOT] = ACTIONS(2967), - [sym_hash_operator] = ACTIONS(2969), - [aux_sym__pow_operator_token1] = ACTIONS(2969), - [anon_sym_lsl] = ACTIONS(2967), - [anon_sym_lsr] = ACTIONS(2967), - [anon_sym_asr] = ACTIONS(2967), - [aux_sym__mult_operator_token1] = ACTIONS(2967), - [anon_sym_mod] = ACTIONS(2967), - [anon_sym_land] = ACTIONS(2967), - [anon_sym_lor] = ACTIONS(2967), - [anon_sym_lxor] = ACTIONS(2967), - [aux_sym__add_operator_token1] = ACTIONS(2967), - [sym__concat_operator] = ACTIONS(2969), - [sym__rel_operator] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [sym__capitalized_identifier] = ACTIONS(2969), - [aux_sym_tag_token1] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1310] = { - [sym_attribute] = STATE(1310), - [sym__identifier] = ACTIONS(2879), - [anon_sym_COLON_GT] = ACTIONS(2881), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_RPAREN] = ACTIONS(2881), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_COLON_EQ] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [anon_sym_COLON2] = ACTIONS(2879), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_DASH_GT] = ACTIONS(2879), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2881), - [anon_sym_RBRACE] = ACTIONS(2881), - [anon_sym_constraint] = ACTIONS(2879), - [anon_sym_val] = ACTIONS(2879), - [anon_sym_end] = ACTIONS(2879), - [anon_sym_with] = ACTIONS(2879), - [anon_sym_object] = ACTIONS(2879), - [anon_sym_inherit] = ACTIONS(2879), - [anon_sym_method] = ACTIONS(2879), - [anon_sym_initializer] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_PIPE] = ACTIONS(2881), - [anon_sym_then] = ACTIONS(2879), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_do] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_LBRACE_LT] = ACTIONS(2881), - [anon_sym_GT_RBRACE] = ACTIONS(2881), - [anon_sym_begin] = ACTIONS(2879), - [sym_ocamlyacc_value] = ACTIONS(2881), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2879), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2881), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2881), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2881), - [aux_sym_number_token1] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_prefix_operator] = ACTIONS(2881), - [anon_sym_PLUS_DOT] = ACTIONS(2879), - [anon_sym_DASH_DOT] = ACTIONS(2879), - [sym_hash_operator] = ACTIONS(2881), - [aux_sym__pow_operator_token1] = ACTIONS(2881), - [anon_sym_lsl] = ACTIONS(2879), - [anon_sym_lsr] = ACTIONS(2879), - [anon_sym_asr] = ACTIONS(2879), - [aux_sym__mult_operator_token1] = ACTIONS(2879), - [anon_sym_mod] = ACTIONS(2879), - [anon_sym_land] = ACTIONS(2879), - [anon_sym_lor] = ACTIONS(2879), - [anon_sym_lxor] = ACTIONS(2879), - [aux_sym__add_operator_token1] = ACTIONS(2879), - [sym__concat_operator] = ACTIONS(2881), - [sym__rel_operator] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_or] = ACTIONS(2879), - [anon_sym_PIPE_PIPE] = ACTIONS(2879), - [sym__capitalized_identifier] = ACTIONS(2881), - [aux_sym_tag_token1] = ACTIONS(2881), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1311] = { - [sym_attribute] = STATE(1311), - [sym__identifier] = ACTIONS(2869), - [anon_sym_COLON_GT] = ACTIONS(2871), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_RPAREN] = ACTIONS(2871), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_COLON2] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_DASH_GT] = ACTIONS(2869), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2871), - [anon_sym_RBRACE] = ACTIONS(2871), - [anon_sym_constraint] = ACTIONS(2869), - [anon_sym_val] = ACTIONS(2869), - [anon_sym_end] = ACTIONS(2869), - [anon_sym_with] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_inherit] = ACTIONS(2869), - [anon_sym_method] = ACTIONS(2869), - [anon_sym_initializer] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_PIPE] = ACTIONS(2871), - [anon_sym_then] = ACTIONS(2869), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_do] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_LBRACE_LT] = ACTIONS(2871), - [anon_sym_GT_RBRACE] = ACTIONS(2871), - [anon_sym_begin] = ACTIONS(2869), - [sym_ocamlyacc_value] = ACTIONS(2871), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2869), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2871), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2871), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2871), - [aux_sym_number_token1] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_prefix_operator] = ACTIONS(2871), - [anon_sym_PLUS_DOT] = ACTIONS(2869), - [anon_sym_DASH_DOT] = ACTIONS(2869), - [sym_hash_operator] = ACTIONS(2871), - [aux_sym__pow_operator_token1] = ACTIONS(2871), - [anon_sym_lsl] = ACTIONS(2869), - [anon_sym_lsr] = ACTIONS(2869), - [anon_sym_asr] = ACTIONS(2869), - [aux_sym__mult_operator_token1] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_land] = ACTIONS(2869), - [anon_sym_lor] = ACTIONS(2869), - [anon_sym_lxor] = ACTIONS(2869), - [aux_sym__add_operator_token1] = ACTIONS(2869), - [sym__concat_operator] = ACTIONS(2871), - [sym__rel_operator] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [sym__capitalized_identifier] = ACTIONS(2871), - [aux_sym_tag_token1] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1312] = { - [sym_attribute] = STATE(1312), - [sym__identifier] = ACTIONS(2879), - [anon_sym_SEMI_SEMI] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2879), - [anon_sym_and] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_external] = ACTIONS(2879), - [anon_sym_type] = ACTIONS(2879), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_COLON_EQ] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_exception] = ACTIONS(2879), - [anon_sym_module] = ACTIONS(2879), - [anon_sym_open] = ACTIONS(2879), - [anon_sym_include] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_end] = ACTIONS(2879), - [anon_sym_object] = ACTIONS(2879), - [anon_sym_in] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_PIPE] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_LBRACE_LT] = ACTIONS(2881), - [anon_sym_begin] = ACTIONS(2879), - [sym_ocamlyacc_value] = ACTIONS(2881), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2879), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2881), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2881), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2881), - [aux_sym_number_token1] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_prefix_operator] = ACTIONS(2881), - [anon_sym_PLUS_DOT] = ACTIONS(2879), - [anon_sym_DASH_DOT] = ACTIONS(2879), - [sym_hash_operator] = ACTIONS(2881), - [aux_sym__pow_operator_token1] = ACTIONS(2881), - [anon_sym_lsl] = ACTIONS(2879), - [anon_sym_lsr] = ACTIONS(2879), - [anon_sym_asr] = ACTIONS(2879), - [aux_sym__mult_operator_token1] = ACTIONS(2879), - [anon_sym_mod] = ACTIONS(2879), - [anon_sym_land] = ACTIONS(2879), - [anon_sym_lor] = ACTIONS(2879), - [anon_sym_lxor] = ACTIONS(2879), - [aux_sym__add_operator_token1] = ACTIONS(2879), - [sym__concat_operator] = ACTIONS(2881), - [sym__rel_operator] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_or] = ACTIONS(2879), - [anon_sym_PIPE_PIPE] = ACTIONS(2879), - [sym_let_operator] = ACTIONS(2881), - [sym_and_operator] = ACTIONS(2881), - [sym__capitalized_identifier] = ACTIONS(2881), - [aux_sym_directive_token1] = ACTIONS(2879), - [aux_sym_tag_token1] = ACTIONS(2881), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1313] = { - [sym_attribute] = STATE(1313), - [sym__identifier] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2899), - [anon_sym_and] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_external] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_exception] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(2899), - [anon_sym_open] = ACTIONS(2899), - [anon_sym_include] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2899), - [anon_sym_end] = ACTIONS(2899), - [anon_sym_object] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_PIPE] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_LBRACE_LT] = ACTIONS(2901), - [anon_sym_begin] = ACTIONS(2899), - [sym_ocamlyacc_value] = ACTIONS(2901), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2899), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2901), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2901), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2901), - [aux_sym_number_token1] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_prefix_operator] = ACTIONS(2901), - [anon_sym_PLUS_DOT] = ACTIONS(2899), - [anon_sym_DASH_DOT] = ACTIONS(2899), - [sym_hash_operator] = ACTIONS(2901), - [aux_sym__pow_operator_token1] = ACTIONS(2901), - [anon_sym_lsl] = ACTIONS(2899), - [anon_sym_lsr] = ACTIONS(2899), - [anon_sym_asr] = ACTIONS(2899), - [aux_sym__mult_operator_token1] = ACTIONS(2899), - [anon_sym_mod] = ACTIONS(2899), - [anon_sym_land] = ACTIONS(2899), - [anon_sym_lor] = ACTIONS(2899), - [anon_sym_lxor] = ACTIONS(2899), - [aux_sym__add_operator_token1] = ACTIONS(2899), - [sym__concat_operator] = ACTIONS(2901), - [sym__rel_operator] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym_let_operator] = ACTIONS(2901), - [sym_and_operator] = ACTIONS(2901), - [sym__capitalized_identifier] = ACTIONS(2901), - [aux_sym_directive_token1] = ACTIONS(2899), - [aux_sym_tag_token1] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1314] = { - [sym_attribute] = STATE(1314), - [sym__identifier] = ACTIONS(2841), - [anon_sym_COLON_GT] = ACTIONS(2843), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_RPAREN] = ACTIONS(2843), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_COLON_EQ] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_COLON2] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_DASH_GT] = ACTIONS(2841), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2843), - [anon_sym_RBRACE] = ACTIONS(2843), - [anon_sym_constraint] = ACTIONS(2841), - [anon_sym_val] = ACTIONS(2841), - [anon_sym_end] = ACTIONS(2841), - [anon_sym_with] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_inherit] = ACTIONS(2841), - [anon_sym_method] = ACTIONS(2841), - [anon_sym_initializer] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_PIPE] = ACTIONS(2843), - [anon_sym_then] = ACTIONS(2841), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_do] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_LBRACE_LT] = ACTIONS(2843), - [anon_sym_GT_RBRACE] = ACTIONS(2843), - [anon_sym_begin] = ACTIONS(2841), - [sym_ocamlyacc_value] = ACTIONS(2843), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2841), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2843), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2843), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2843), - [aux_sym_number_token1] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_prefix_operator] = ACTIONS(2843), - [anon_sym_PLUS_DOT] = ACTIONS(2841), - [anon_sym_DASH_DOT] = ACTIONS(2841), - [sym_hash_operator] = ACTIONS(2843), - [aux_sym__pow_operator_token1] = ACTIONS(2843), - [anon_sym_lsl] = ACTIONS(2841), - [anon_sym_lsr] = ACTIONS(2841), - [anon_sym_asr] = ACTIONS(2841), - [aux_sym__mult_operator_token1] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_land] = ACTIONS(2841), - [anon_sym_lor] = ACTIONS(2841), - [anon_sym_lxor] = ACTIONS(2841), - [aux_sym__add_operator_token1] = ACTIONS(2841), - [sym__concat_operator] = ACTIONS(2843), - [sym__rel_operator] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [sym__capitalized_identifier] = ACTIONS(2843), - [aux_sym_tag_token1] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1315] = { - [sym_attribute] = STATE(1315), - [sym__identifier] = ACTIONS(2919), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_and] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_external] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_exception] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2919), - [anon_sym_include] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_end] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_PIPE] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_LBRACE_LT] = ACTIONS(2921), - [anon_sym_begin] = ACTIONS(2919), - [sym_ocamlyacc_value] = ACTIONS(2921), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2919), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2921), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2921), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2921), - [aux_sym_number_token1] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_prefix_operator] = ACTIONS(2921), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [sym_hash_operator] = ACTIONS(2921), - [aux_sym__pow_operator_token1] = ACTIONS(2921), - [anon_sym_lsl] = ACTIONS(2919), - [anon_sym_lsr] = ACTIONS(2919), - [anon_sym_asr] = ACTIONS(2919), - [aux_sym__mult_operator_token1] = ACTIONS(2919), - [anon_sym_mod] = ACTIONS(2919), - [anon_sym_land] = ACTIONS(2919), - [anon_sym_lor] = ACTIONS(2919), - [anon_sym_lxor] = ACTIONS(2919), - [aux_sym__add_operator_token1] = ACTIONS(2919), - [sym__concat_operator] = ACTIONS(2921), - [sym__rel_operator] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym_let_operator] = ACTIONS(2921), - [sym_and_operator] = ACTIONS(2921), - [sym__capitalized_identifier] = ACTIONS(2921), - [aux_sym_directive_token1] = ACTIONS(2919), - [aux_sym_tag_token1] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1316] = { - [sym_attribute] = STATE(1316), - [sym__identifier] = ACTIONS(2911), - [anon_sym_SEMI_SEMI] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_and] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_external] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_exception] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_open] = ACTIONS(2911), - [anon_sym_include] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_end] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_PIPE] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_LBRACE_LT] = ACTIONS(2913), - [anon_sym_begin] = ACTIONS(2911), - [sym_ocamlyacc_value] = ACTIONS(2913), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2911), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2913), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2913), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2913), - [aux_sym_number_token1] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_prefix_operator] = ACTIONS(2913), - [anon_sym_PLUS_DOT] = ACTIONS(2911), - [anon_sym_DASH_DOT] = ACTIONS(2911), - [sym_hash_operator] = ACTIONS(2913), - [aux_sym__pow_operator_token1] = ACTIONS(2913), - [anon_sym_lsl] = ACTIONS(2911), - [anon_sym_lsr] = ACTIONS(2911), - [anon_sym_asr] = ACTIONS(2911), - [aux_sym__mult_operator_token1] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_land] = ACTIONS(2911), - [anon_sym_lor] = ACTIONS(2911), - [anon_sym_lxor] = ACTIONS(2911), - [aux_sym__add_operator_token1] = ACTIONS(2911), - [sym__concat_operator] = ACTIONS(2913), - [sym__rel_operator] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [sym_let_operator] = ACTIONS(2913), - [sym_and_operator] = ACTIONS(2913), - [sym__capitalized_identifier] = ACTIONS(2913), - [aux_sym_directive_token1] = ACTIONS(2911), - [aux_sym_tag_token1] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1317] = { - [sym_attribute] = STATE(1317), - [sym__identifier] = ACTIONS(3117), - [anon_sym_COLON_GT] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_COLON2] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_constraint] = ACTIONS(3117), - [anon_sym_val] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_with] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_inherit] = ACTIONS(3117), - [anon_sym_method] = ACTIONS(3117), - [anon_sym_initializer] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_then] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_GT_RBRACE] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1318] = { - [sym_attribute] = STATE(1318), - [sym__identifier] = ACTIONS(2680), - [anon_sym_COLON_GT] = ACTIONS(2682), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_RPAREN] = ACTIONS(2682), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_COLON_EQ] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_COLON2] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_DASH_GT] = ACTIONS(2680), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2682), - [anon_sym_RBRACE] = ACTIONS(2682), - [anon_sym_constraint] = ACTIONS(2680), - [anon_sym_val] = ACTIONS(2680), - [anon_sym_end] = ACTIONS(2680), - [anon_sym_with] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_inherit] = ACTIONS(2680), - [anon_sym_method] = ACTIONS(2680), - [anon_sym_initializer] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_LBRACK_PIPE] = ACTIONS(2682), - [anon_sym_then] = ACTIONS(2680), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_do] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_LBRACE_LT] = ACTIONS(2682), - [anon_sym_GT_RBRACE] = ACTIONS(2682), - [anon_sym_begin] = ACTIONS(2680), - [sym_ocamlyacc_value] = ACTIONS(2682), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2680), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2682), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2682), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2682), - [aux_sym_number_token1] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [sym_prefix_operator] = ACTIONS(2682), - [anon_sym_PLUS_DOT] = ACTIONS(2680), - [anon_sym_DASH_DOT] = ACTIONS(2680), - [sym_hash_operator] = ACTIONS(2682), - [aux_sym__pow_operator_token1] = ACTIONS(2682), - [anon_sym_lsl] = ACTIONS(2680), - [anon_sym_lsr] = ACTIONS(2680), - [anon_sym_asr] = ACTIONS(2680), - [aux_sym__mult_operator_token1] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_land] = ACTIONS(2680), - [anon_sym_lor] = ACTIONS(2680), - [anon_sym_lxor] = ACTIONS(2680), - [aux_sym__add_operator_token1] = ACTIONS(2680), - [sym__concat_operator] = ACTIONS(2682), - [sym__rel_operator] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [sym__capitalized_identifier] = ACTIONS(2682), - [aux_sym_tag_token1] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1319] = { - [sym_attribute] = STATE(1319), - [sym__identifier] = ACTIONS(2841), - [anon_sym_SEMI_SEMI] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_and] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_external] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_COLON_EQ] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_exception] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_open] = ACTIONS(2841), - [anon_sym_include] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_end] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_in] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_PIPE] = ACTIONS(2843), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_LBRACE_LT] = ACTIONS(2843), - [anon_sym_begin] = ACTIONS(2841), - [sym_ocamlyacc_value] = ACTIONS(2843), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2841), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2843), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2843), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2843), - [aux_sym_number_token1] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_prefix_operator] = ACTIONS(2843), - [anon_sym_PLUS_DOT] = ACTIONS(2841), - [anon_sym_DASH_DOT] = ACTIONS(2841), - [sym_hash_operator] = ACTIONS(2843), - [aux_sym__pow_operator_token1] = ACTIONS(2843), - [anon_sym_lsl] = ACTIONS(2841), - [anon_sym_lsr] = ACTIONS(2841), - [anon_sym_asr] = ACTIONS(2841), - [aux_sym__mult_operator_token1] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_land] = ACTIONS(2841), - [anon_sym_lor] = ACTIONS(2841), - [anon_sym_lxor] = ACTIONS(2841), - [aux_sym__add_operator_token1] = ACTIONS(2841), - [sym__concat_operator] = ACTIONS(2843), - [sym__rel_operator] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [sym_let_operator] = ACTIONS(2843), - [sym_and_operator] = ACTIONS(2843), - [sym__capitalized_identifier] = ACTIONS(2843), - [aux_sym_directive_token1] = ACTIONS(2841), - [aux_sym_tag_token1] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1320] = { - [sym_attribute] = STATE(1320), - [sym__identifier] = ACTIONS(2911), - [anon_sym_COLON_GT] = ACTIONS(2913), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_RPAREN] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [anon_sym_COLON2] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_DASH_GT] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2913), - [anon_sym_RBRACE] = ACTIONS(2913), - [anon_sym_constraint] = ACTIONS(2911), - [anon_sym_val] = ACTIONS(2911), - [anon_sym_end] = ACTIONS(2911), - [anon_sym_with] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_inherit] = ACTIONS(2911), - [anon_sym_method] = ACTIONS(2911), - [anon_sym_initializer] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_PIPE] = ACTIONS(2913), - [anon_sym_then] = ACTIONS(2911), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_do] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_LBRACE_LT] = ACTIONS(2913), - [anon_sym_GT_RBRACE] = ACTIONS(2913), - [anon_sym_begin] = ACTIONS(2911), - [sym_ocamlyacc_value] = ACTIONS(2913), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2911), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2913), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2913), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2913), - [aux_sym_number_token1] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_prefix_operator] = ACTIONS(2913), - [anon_sym_PLUS_DOT] = ACTIONS(2911), - [anon_sym_DASH_DOT] = ACTIONS(2911), - [sym_hash_operator] = ACTIONS(2913), - [aux_sym__pow_operator_token1] = ACTIONS(2913), - [anon_sym_lsl] = ACTIONS(2911), - [anon_sym_lsr] = ACTIONS(2911), - [anon_sym_asr] = ACTIONS(2911), - [aux_sym__mult_operator_token1] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_land] = ACTIONS(2911), - [anon_sym_lor] = ACTIONS(2911), - [anon_sym_lxor] = ACTIONS(2911), - [aux_sym__add_operator_token1] = ACTIONS(2911), - [sym__concat_operator] = ACTIONS(2913), - [sym__rel_operator] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [sym__capitalized_identifier] = ACTIONS(2913), - [aux_sym_tag_token1] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1321] = { - [sym_attribute] = STATE(1321), - [sym__identifier] = ACTIONS(3001), - [anon_sym_SEMI_SEMI] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3001), - [anon_sym_and] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_exception] = ACTIONS(3001), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_open] = ACTIONS(3001), - [anon_sym_include] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3001), - [anon_sym_end] = ACTIONS(3001), - [anon_sym_object] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_LBRACE_LT] = ACTIONS(3003), - [anon_sym_begin] = ACTIONS(3001), - [sym_ocamlyacc_value] = ACTIONS(3003), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3001), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3003), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3003), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3003), - [aux_sym_number_token1] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [sym_prefix_operator] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3001), - [anon_sym_DASH_DOT] = ACTIONS(3001), - [sym_hash_operator] = ACTIONS(3003), - [aux_sym__pow_operator_token1] = ACTIONS(3003), - [anon_sym_lsl] = ACTIONS(3001), - [anon_sym_lsr] = ACTIONS(3001), - [anon_sym_asr] = ACTIONS(3001), - [aux_sym__mult_operator_token1] = ACTIONS(3001), - [anon_sym_mod] = ACTIONS(3001), - [anon_sym_land] = ACTIONS(3001), - [anon_sym_lor] = ACTIONS(3001), - [anon_sym_lxor] = ACTIONS(3001), - [aux_sym__add_operator_token1] = ACTIONS(3001), - [sym__concat_operator] = ACTIONS(3003), - [sym__rel_operator] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [sym_let_operator] = ACTIONS(3003), - [sym_and_operator] = ACTIONS(3003), - [sym__capitalized_identifier] = ACTIONS(3003), - [aux_sym_directive_token1] = ACTIONS(3001), - [aux_sym_tag_token1] = ACTIONS(3003), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1322] = { - [sym_attribute] = STATE(1322), - [sym__identifier] = ACTIONS(2684), - [anon_sym_COLON_GT] = ACTIONS(2686), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_RPAREN] = ACTIONS(2686), - [anon_sym_COMMA] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_COLON_EQ] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_COLON2] = ACTIONS(2684), - [anon_sym_DOT] = ACTIONS(2686), - [anon_sym_DASH_GT] = ACTIONS(2684), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2686), - [anon_sym_RBRACE] = ACTIONS(2686), - [anon_sym_constraint] = ACTIONS(2684), - [anon_sym_val] = ACTIONS(2684), - [anon_sym_end] = ACTIONS(2684), - [anon_sym_with] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), - [anon_sym_inherit] = ACTIONS(2684), - [anon_sym_method] = ACTIONS(2684), - [anon_sym_initializer] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_LBRACK_PIPE] = ACTIONS(2686), - [anon_sym_then] = ACTIONS(2684), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_do] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_LBRACE_LT] = ACTIONS(2686), - [anon_sym_GT_RBRACE] = ACTIONS(2686), - [anon_sym_begin] = ACTIONS(2684), - [sym_ocamlyacc_value] = ACTIONS(2686), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2684), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2686), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2686), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2686), - [aux_sym_number_token1] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [sym_prefix_operator] = ACTIONS(2686), - [anon_sym_PLUS_DOT] = ACTIONS(2684), - [anon_sym_DASH_DOT] = ACTIONS(2684), - [sym_hash_operator] = ACTIONS(2686), - [aux_sym__pow_operator_token1] = ACTIONS(2686), - [anon_sym_lsl] = ACTIONS(2684), - [anon_sym_lsr] = ACTIONS(2684), - [anon_sym_asr] = ACTIONS(2684), - [aux_sym__mult_operator_token1] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_land] = ACTIONS(2684), - [anon_sym_lor] = ACTIONS(2684), - [anon_sym_lxor] = ACTIONS(2684), - [aux_sym__add_operator_token1] = ACTIONS(2684), - [sym__concat_operator] = ACTIONS(2686), - [sym__rel_operator] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [sym__capitalized_identifier] = ACTIONS(2686), - [aux_sym_tag_token1] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1323] = { - [sym_attribute] = STATE(1323), - [sym__identifier] = ACTIONS(2997), - [anon_sym_SEMI_SEMI] = ACTIONS(2999), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_and] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_exception] = ACTIONS(2997), - [anon_sym_module] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_include] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_end] = ACTIONS(2997), - [anon_sym_object] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK_PIPE] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2997), - [anon_sym_LBRACE_LT] = ACTIONS(2999), - [anon_sym_begin] = ACTIONS(2997), - [sym_ocamlyacc_value] = ACTIONS(2999), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2999), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2999), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2999), - [aux_sym_number_token1] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym_prefix_operator] = ACTIONS(2999), - [anon_sym_PLUS_DOT] = ACTIONS(2997), - [anon_sym_DASH_DOT] = ACTIONS(2997), - [sym_hash_operator] = ACTIONS(2999), - [aux_sym__pow_operator_token1] = ACTIONS(2999), - [anon_sym_lsl] = ACTIONS(2997), - [anon_sym_lsr] = ACTIONS(2997), - [anon_sym_asr] = ACTIONS(2997), - [aux_sym__mult_operator_token1] = ACTIONS(2997), - [anon_sym_mod] = ACTIONS(2997), - [anon_sym_land] = ACTIONS(2997), - [anon_sym_lor] = ACTIONS(2997), - [anon_sym_lxor] = ACTIONS(2997), - [aux_sym__add_operator_token1] = ACTIONS(2997), - [sym__concat_operator] = ACTIONS(2999), - [sym__rel_operator] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [sym_let_operator] = ACTIONS(2999), - [sym_and_operator] = ACTIONS(2999), - [sym__capitalized_identifier] = ACTIONS(2999), - [aux_sym_directive_token1] = ACTIONS(2997), - [aux_sym_tag_token1] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1324] = { - [sym_attribute] = STATE(1324), - [sym__identifier] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_and] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_external] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_exception] = ACTIONS(2971), - [anon_sym_module] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2971), - [anon_sym_include] = ACTIONS(2971), - [anon_sym_class] = ACTIONS(2971), - [anon_sym_end] = ACTIONS(2971), - [anon_sym_object] = ACTIONS(2971), - [anon_sym_in] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2971), - [anon_sym_LBRACE_LT] = ACTIONS(2973), - [anon_sym_begin] = ACTIONS(2971), - [sym_ocamlyacc_value] = ACTIONS(2973), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2973), - [aux_sym_number_token1] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [sym_prefix_operator] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [sym_hash_operator] = ACTIONS(2973), - [aux_sym__pow_operator_token1] = ACTIONS(2973), - [anon_sym_lsl] = ACTIONS(2971), - [anon_sym_lsr] = ACTIONS(2971), - [anon_sym_asr] = ACTIONS(2971), - [aux_sym__mult_operator_token1] = ACTIONS(2971), - [anon_sym_mod] = ACTIONS(2971), - [anon_sym_land] = ACTIONS(2971), - [anon_sym_lor] = ACTIONS(2971), - [anon_sym_lxor] = ACTIONS(2971), - [aux_sym__add_operator_token1] = ACTIONS(2971), - [sym__concat_operator] = ACTIONS(2973), - [sym__rel_operator] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym_let_operator] = ACTIONS(2973), - [sym_and_operator] = ACTIONS(2973), - [sym__capitalized_identifier] = ACTIONS(2973), - [aux_sym_directive_token1] = ACTIONS(2971), - [aux_sym_tag_token1] = ACTIONS(2973), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1325] = { - [sym_attribute] = STATE(1325), - [sym__identifier] = ACTIONS(3101), - [anon_sym_COLON_GT] = ACTIONS(3103), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_RPAREN] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_COLON2] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_DASH_GT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3103), - [anon_sym_RBRACE] = ACTIONS(3103), - [anon_sym_constraint] = ACTIONS(3101), - [anon_sym_val] = ACTIONS(3101), - [anon_sym_end] = ACTIONS(3101), - [anon_sym_with] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_inherit] = ACTIONS(3101), - [anon_sym_method] = ACTIONS(3101), - [anon_sym_initializer] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_then] = ACTIONS(3101), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_do] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_LBRACE_LT] = ACTIONS(3103), - [anon_sym_GT_RBRACE] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [sym_ocamlyacc_value] = ACTIONS(3103), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3101), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3103), - [aux_sym_number_token1] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_prefix_operator] = ACTIONS(3103), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [sym_hash_operator] = ACTIONS(3103), - [aux_sym__pow_operator_token1] = ACTIONS(3103), - [anon_sym_lsl] = ACTIONS(3101), - [anon_sym_lsr] = ACTIONS(3101), - [anon_sym_asr] = ACTIONS(3101), - [aux_sym__mult_operator_token1] = ACTIONS(3101), - [anon_sym_mod] = ACTIONS(3101), - [anon_sym_land] = ACTIONS(3101), - [anon_sym_lor] = ACTIONS(3101), - [anon_sym_lxor] = ACTIONS(3101), - [aux_sym__add_operator_token1] = ACTIONS(3101), - [sym__concat_operator] = ACTIONS(3103), - [sym__rel_operator] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [sym__capitalized_identifier] = ACTIONS(3103), - [aux_sym_tag_token1] = ACTIONS(3103), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1326] = { - [sym_attribute] = STATE(1326), - [sym__identifier] = ACTIONS(2670), - [anon_sym_COLON_GT] = ACTIONS(2672), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_RPAREN] = ACTIONS(2672), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_COLON_EQ] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2670), - [anon_sym_false] = ACTIONS(2670), - [anon_sym_COLON2] = ACTIONS(2670), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_DASH_GT] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2672), - [anon_sym_RBRACE] = ACTIONS(2672), - [anon_sym_constraint] = ACTIONS(2670), - [anon_sym_val] = ACTIONS(2670), - [anon_sym_end] = ACTIONS(2670), - [anon_sym_with] = ACTIONS(2670), - [anon_sym_object] = ACTIONS(2670), - [anon_sym_inherit] = ACTIONS(2670), - [anon_sym_method] = ACTIONS(2670), - [anon_sym_initializer] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_PIPE] = ACTIONS(2672), - [anon_sym_then] = ACTIONS(2670), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_do] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_LBRACE_LT] = ACTIONS(2672), - [anon_sym_GT_RBRACE] = ACTIONS(2672), - [anon_sym_begin] = ACTIONS(2670), - [sym_ocamlyacc_value] = ACTIONS(2672), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2670), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2672), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2672), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2672), - [aux_sym_number_token1] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_prefix_operator] = ACTIONS(2672), - [anon_sym_PLUS_DOT] = ACTIONS(2670), - [anon_sym_DASH_DOT] = ACTIONS(2670), - [sym_hash_operator] = ACTIONS(2672), - [aux_sym__pow_operator_token1] = ACTIONS(2672), - [anon_sym_lsl] = ACTIONS(2670), - [anon_sym_lsr] = ACTIONS(2670), - [anon_sym_asr] = ACTIONS(2670), - [aux_sym__mult_operator_token1] = ACTIONS(2670), - [anon_sym_mod] = ACTIONS(2670), - [anon_sym_land] = ACTIONS(2670), - [anon_sym_lor] = ACTIONS(2670), - [anon_sym_lxor] = ACTIONS(2670), - [aux_sym__add_operator_token1] = ACTIONS(2670), - [sym__concat_operator] = ACTIONS(2672), - [sym__rel_operator] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_or] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [sym__capitalized_identifier] = ACTIONS(2672), - [aux_sym_tag_token1] = ACTIONS(2672), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1327] = { - [sym_attribute] = STATE(1327), - [sym__identifier] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2883), - [anon_sym_and] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_external] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_exception] = ACTIONS(2883), - [anon_sym_module] = ACTIONS(2883), - [anon_sym_open] = ACTIONS(2883), - [anon_sym_include] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_end] = ACTIONS(2883), - [anon_sym_object] = ACTIONS(2883), - [anon_sym_in] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_PIPE] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_LBRACE_LT] = ACTIONS(2885), - [anon_sym_begin] = ACTIONS(2883), - [sym_ocamlyacc_value] = ACTIONS(2885), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2883), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2885), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2885), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2885), - [aux_sym_number_token1] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_prefix_operator] = ACTIONS(2885), - [anon_sym_PLUS_DOT] = ACTIONS(2883), - [anon_sym_DASH_DOT] = ACTIONS(2883), - [sym_hash_operator] = ACTIONS(2885), - [aux_sym__pow_operator_token1] = ACTIONS(2885), - [anon_sym_lsl] = ACTIONS(2883), - [anon_sym_lsr] = ACTIONS(2883), - [anon_sym_asr] = ACTIONS(2883), - [aux_sym__mult_operator_token1] = ACTIONS(2883), - [anon_sym_mod] = ACTIONS(2883), - [anon_sym_land] = ACTIONS(2883), - [anon_sym_lor] = ACTIONS(2883), - [anon_sym_lxor] = ACTIONS(2883), - [aux_sym__add_operator_token1] = ACTIONS(2883), - [sym__concat_operator] = ACTIONS(2885), - [sym__rel_operator] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym_let_operator] = ACTIONS(2885), - [sym_and_operator] = ACTIONS(2885), - [sym__capitalized_identifier] = ACTIONS(2885), - [aux_sym_directive_token1] = ACTIONS(2883), - [aux_sym_tag_token1] = ACTIONS(2885), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1328] = { - [sym_attribute] = STATE(1328), - [sym__identifier] = ACTIONS(3085), - [anon_sym_COLON_GT] = ACTIONS(3087), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_RPAREN] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_DASH_GT] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_RBRACE] = ACTIONS(3087), - [anon_sym_constraint] = ACTIONS(3085), - [anon_sym_val] = ACTIONS(3085), - [anon_sym_end] = ACTIONS(3085), - [anon_sym_with] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_inherit] = ACTIONS(3085), - [anon_sym_method] = ACTIONS(3085), - [anon_sym_initializer] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3087), - [anon_sym_then] = ACTIONS(3085), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_do] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_LBRACE_LT] = ACTIONS(3087), - [anon_sym_GT_RBRACE] = ACTIONS(3087), - [anon_sym_begin] = ACTIONS(3085), - [sym_ocamlyacc_value] = ACTIONS(3087), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3085), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3087), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3087), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3087), - [aux_sym_number_token1] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym_prefix_operator] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3085), - [anon_sym_DASH_DOT] = ACTIONS(3085), - [sym_hash_operator] = ACTIONS(3087), - [aux_sym__pow_operator_token1] = ACTIONS(3087), - [anon_sym_lsl] = ACTIONS(3085), - [anon_sym_lsr] = ACTIONS(3085), - [anon_sym_asr] = ACTIONS(3085), - [aux_sym__mult_operator_token1] = ACTIONS(3085), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_land] = ACTIONS(3085), - [anon_sym_lor] = ACTIONS(3085), - [anon_sym_lxor] = ACTIONS(3085), - [aux_sym__add_operator_token1] = ACTIONS(3085), - [sym__concat_operator] = ACTIONS(3087), - [sym__rel_operator] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym__capitalized_identifier] = ACTIONS(3087), - [aux_sym_tag_token1] = ACTIONS(3087), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1329] = { - [sym_attribute] = STATE(1329), - [sym__identifier] = ACTIONS(2654), - [anon_sym_COLON_GT] = ACTIONS(2656), - [anon_sym_TILDE] = ACTIONS(2654), - [anon_sym_QMARK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_RPAREN] = ACTIONS(2656), - [anon_sym_COMMA] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_COLON_EQ] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [anon_sym_COLON2] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2656), - [anon_sym_DASH_GT] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2656), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_constraint] = ACTIONS(2654), - [anon_sym_val] = ACTIONS(2654), - [anon_sym_end] = ACTIONS(2654), - [anon_sym_with] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), - [anon_sym_inherit] = ACTIONS(2654), - [anon_sym_method] = ACTIONS(2654), - [anon_sym_initializer] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_PIPE] = ACTIONS(2656), - [anon_sym_then] = ACTIONS(2654), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_do] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_LBRACE_LT] = ACTIONS(2656), - [anon_sym_GT_RBRACE] = ACTIONS(2656), - [anon_sym_begin] = ACTIONS(2654), - [sym_ocamlyacc_value] = ACTIONS(2656), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2654), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2656), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2656), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2656), - [aux_sym_number_token1] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym_prefix_operator] = ACTIONS(2656), - [anon_sym_PLUS_DOT] = ACTIONS(2654), - [anon_sym_DASH_DOT] = ACTIONS(2654), - [sym_hash_operator] = ACTIONS(2656), - [aux_sym__pow_operator_token1] = ACTIONS(2656), - [anon_sym_lsl] = ACTIONS(2654), - [anon_sym_lsr] = ACTIONS(2654), - [anon_sym_asr] = ACTIONS(2654), - [aux_sym__mult_operator_token1] = ACTIONS(2654), - [anon_sym_mod] = ACTIONS(2654), - [anon_sym_land] = ACTIONS(2654), - [anon_sym_lor] = ACTIONS(2654), - [anon_sym_lxor] = ACTIONS(2654), - [aux_sym__add_operator_token1] = ACTIONS(2654), - [sym__concat_operator] = ACTIONS(2656), - [sym__rel_operator] = ACTIONS(2654), - [anon_sym_AMP_AMP] = ACTIONS(2654), - [anon_sym_or] = ACTIONS(2654), - [anon_sym_PIPE_PIPE] = ACTIONS(2654), - [sym__capitalized_identifier] = ACTIONS(2656), - [aux_sym_tag_token1] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1330] = { - [sym_attribute] = STATE(1330), - [sym__identifier] = ACTIONS(2861), - [anon_sym_SEMI_SEMI] = ACTIONS(2863), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_and] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_external] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_COLON_EQ] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym_exception] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(2861), - [anon_sym_open] = ACTIONS(2861), - [anon_sym_include] = ACTIONS(2861), - [anon_sym_class] = ACTIONS(2861), - [anon_sym_end] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_in] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_LBRACK_PIPE] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_LBRACE_LT] = ACTIONS(2863), - [anon_sym_begin] = ACTIONS(2861), - [sym_ocamlyacc_value] = ACTIONS(2863), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2861), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2863), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2863), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2863), - [aux_sym_number_token1] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_prefix_operator] = ACTIONS(2863), - [anon_sym_PLUS_DOT] = ACTIONS(2861), - [anon_sym_DASH_DOT] = ACTIONS(2861), - [sym_hash_operator] = ACTIONS(2863), - [aux_sym__pow_operator_token1] = ACTIONS(2863), - [anon_sym_lsl] = ACTIONS(2861), - [anon_sym_lsr] = ACTIONS(2861), - [anon_sym_asr] = ACTIONS(2861), - [aux_sym__mult_operator_token1] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_land] = ACTIONS(2861), - [anon_sym_lor] = ACTIONS(2861), - [anon_sym_lxor] = ACTIONS(2861), - [aux_sym__add_operator_token1] = ACTIONS(2861), - [sym__concat_operator] = ACTIONS(2863), - [sym__rel_operator] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [sym_let_operator] = ACTIONS(2863), - [sym_and_operator] = ACTIONS(2863), - [sym__capitalized_identifier] = ACTIONS(2863), - [aux_sym_directive_token1] = ACTIONS(2861), - [aux_sym_tag_token1] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1331] = { - [sym_attribute] = STATE(1331), - [sym__identifier] = ACTIONS(2915), - [anon_sym_COLON_GT] = ACTIONS(2917), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_RPAREN] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [anon_sym_COLON2] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_DASH_GT] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2917), - [anon_sym_RBRACE] = ACTIONS(2917), - [anon_sym_constraint] = ACTIONS(2915), - [anon_sym_val] = ACTIONS(2915), - [anon_sym_end] = ACTIONS(2915), - [anon_sym_with] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_inherit] = ACTIONS(2915), - [anon_sym_method] = ACTIONS(2915), - [anon_sym_initializer] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2917), - [anon_sym_then] = ACTIONS(2915), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_do] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_LBRACE_LT] = ACTIONS(2917), - [anon_sym_GT_RBRACE] = ACTIONS(2917), - [anon_sym_begin] = ACTIONS(2915), - [sym_ocamlyacc_value] = ACTIONS(2917), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2915), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2917), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2917), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2917), - [aux_sym_number_token1] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_prefix_operator] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2915), - [anon_sym_DASH_DOT] = ACTIONS(2915), - [sym_hash_operator] = ACTIONS(2917), - [aux_sym__pow_operator_token1] = ACTIONS(2917), - [anon_sym_lsl] = ACTIONS(2915), - [anon_sym_lsr] = ACTIONS(2915), - [anon_sym_asr] = ACTIONS(2915), - [aux_sym__mult_operator_token1] = ACTIONS(2915), - [anon_sym_mod] = ACTIONS(2915), - [anon_sym_land] = ACTIONS(2915), - [anon_sym_lor] = ACTIONS(2915), - [anon_sym_lxor] = ACTIONS(2915), - [aux_sym__add_operator_token1] = ACTIONS(2915), - [sym__concat_operator] = ACTIONS(2917), - [sym__rel_operator] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [sym__capitalized_identifier] = ACTIONS(2917), - [aux_sym_tag_token1] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1332] = { - [sym_attribute] = STATE(1332), - [sym__identifier] = ACTIONS(2855), - [anon_sym_COLON_GT] = ACTIONS(2857), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_RPAREN] = ACTIONS(2857), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [anon_sym_COLON2] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_DASH_GT] = ACTIONS(2855), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2857), - [anon_sym_RBRACE] = ACTIONS(2857), - [anon_sym_constraint] = ACTIONS(2855), - [anon_sym_val] = ACTIONS(2855), - [anon_sym_end] = ACTIONS(2855), - [anon_sym_with] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_inherit] = ACTIONS(2855), - [anon_sym_method] = ACTIONS(2855), - [anon_sym_initializer] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_PIPE] = ACTIONS(2857), - [anon_sym_then] = ACTIONS(2855), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_do] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_LBRACE_LT] = ACTIONS(2857), - [anon_sym_GT_RBRACE] = ACTIONS(2857), - [anon_sym_begin] = ACTIONS(2855), - [sym_ocamlyacc_value] = ACTIONS(2857), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2855), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2857), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2857), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2857), - [aux_sym_number_token1] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_prefix_operator] = ACTIONS(2857), - [anon_sym_PLUS_DOT] = ACTIONS(2855), - [anon_sym_DASH_DOT] = ACTIONS(2855), - [sym_hash_operator] = ACTIONS(2857), - [aux_sym__pow_operator_token1] = ACTIONS(2857), - [anon_sym_lsl] = ACTIONS(2855), - [anon_sym_lsr] = ACTIONS(2855), - [anon_sym_asr] = ACTIONS(2855), - [aux_sym__mult_operator_token1] = ACTIONS(2855), - [anon_sym_mod] = ACTIONS(2855), - [anon_sym_land] = ACTIONS(2855), - [anon_sym_lor] = ACTIONS(2855), - [anon_sym_lxor] = ACTIONS(2855), - [aux_sym__add_operator_token1] = ACTIONS(2855), - [sym__concat_operator] = ACTIONS(2857), - [sym__rel_operator] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [sym__capitalized_identifier] = ACTIONS(2857), - [aux_sym_tag_token1] = ACTIONS(2857), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1333] = { - [sym_attribute] = STATE(1333), - [sym__identifier] = ACTIONS(2835), - [anon_sym_SEMI_SEMI] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_and] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_external] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_exception] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_open] = ACTIONS(2835), - [anon_sym_include] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym_let_operator] = ACTIONS(2837), - [sym_and_operator] = ACTIONS(2837), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_directive_token1] = ACTIONS(2835), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1334] = { - [sym_attribute] = STATE(1334), - [sym__identifier] = ACTIONS(2680), - [anon_sym_SEMI_SEMI] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_and] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_external] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_COLON_EQ] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_exception] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_include] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_end] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_in] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_LBRACK_PIPE] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_LBRACE_LT] = ACTIONS(2682), - [anon_sym_begin] = ACTIONS(2680), - [sym_ocamlyacc_value] = ACTIONS(2682), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2680), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2682), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2682), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2682), - [aux_sym_number_token1] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [sym_prefix_operator] = ACTIONS(2682), - [anon_sym_PLUS_DOT] = ACTIONS(2680), - [anon_sym_DASH_DOT] = ACTIONS(2680), - [sym_hash_operator] = ACTIONS(2682), - [aux_sym__pow_operator_token1] = ACTIONS(2682), - [anon_sym_lsl] = ACTIONS(2680), - [anon_sym_lsr] = ACTIONS(2680), - [anon_sym_asr] = ACTIONS(2680), - [aux_sym__mult_operator_token1] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_land] = ACTIONS(2680), - [anon_sym_lor] = ACTIONS(2680), - [anon_sym_lxor] = ACTIONS(2680), - [aux_sym__add_operator_token1] = ACTIONS(2680), - [sym__concat_operator] = ACTIONS(2682), - [sym__rel_operator] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [sym_let_operator] = ACTIONS(2682), - [sym_and_operator] = ACTIONS(2682), - [sym__capitalized_identifier] = ACTIONS(2682), - [aux_sym_directive_token1] = ACTIONS(2680), - [aux_sym_tag_token1] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1335] = { - [sym_attribute] = STATE(1335), - [sym__identifier] = ACTIONS(2811), - [anon_sym_SEMI_SEMI] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2811), - [anon_sym_and] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_QMARK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_external] = ACTIONS(2811), - [anon_sym_type] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_exception] = ACTIONS(2811), - [anon_sym_module] = ACTIONS(2811), - [anon_sym_open] = ACTIONS(2811), - [anon_sym_include] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_end] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_in] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_PIPE] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_LBRACE_LT] = ACTIONS(2813), - [anon_sym_begin] = ACTIONS(2811), - [sym_ocamlyacc_value] = ACTIONS(2813), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2811), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2813), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2813), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2813), - [aux_sym_number_token1] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_prefix_operator] = ACTIONS(2813), - [anon_sym_PLUS_DOT] = ACTIONS(2811), - [anon_sym_DASH_DOT] = ACTIONS(2811), - [sym_hash_operator] = ACTIONS(2813), - [aux_sym__pow_operator_token1] = ACTIONS(2813), - [anon_sym_lsl] = ACTIONS(2811), - [anon_sym_lsr] = ACTIONS(2811), - [anon_sym_asr] = ACTIONS(2811), - [aux_sym__mult_operator_token1] = ACTIONS(2811), - [anon_sym_mod] = ACTIONS(2811), - [anon_sym_land] = ACTIONS(2811), - [anon_sym_lor] = ACTIONS(2811), - [anon_sym_lxor] = ACTIONS(2811), - [aux_sym__add_operator_token1] = ACTIONS(2811), - [sym__concat_operator] = ACTIONS(2813), - [sym__rel_operator] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_or] = ACTIONS(2811), - [anon_sym_PIPE_PIPE] = ACTIONS(2811), - [sym_let_operator] = ACTIONS(2813), - [sym_and_operator] = ACTIONS(2813), - [sym__capitalized_identifier] = ACTIONS(2813), - [aux_sym_directive_token1] = ACTIONS(2811), - [aux_sym_tag_token1] = ACTIONS(2813), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1336] = { - [sym_attribute] = STATE(1336), - [sym__identifier] = ACTIONS(2662), - [anon_sym_SEMI_SEMI] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_and] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_QMARK] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_external] = ACTIONS(2662), - [anon_sym_type] = ACTIONS(2662), - [anon_sym_COMMA] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_RBRACK] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_exception] = ACTIONS(2662), - [anon_sym_module] = ACTIONS(2662), - [anon_sym_open] = ACTIONS(2662), - [anon_sym_include] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_end] = ACTIONS(2662), - [anon_sym_object] = ACTIONS(2662), - [anon_sym_in] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_PIPE] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_LBRACE_LT] = ACTIONS(2664), - [anon_sym_begin] = ACTIONS(2662), - [sym_ocamlyacc_value] = ACTIONS(2664), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2662), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2664), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2664), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2664), - [aux_sym_number_token1] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_prefix_operator] = ACTIONS(2664), - [anon_sym_PLUS_DOT] = ACTIONS(2662), - [anon_sym_DASH_DOT] = ACTIONS(2662), - [sym_hash_operator] = ACTIONS(2664), - [aux_sym__pow_operator_token1] = ACTIONS(2664), - [anon_sym_lsl] = ACTIONS(2662), - [anon_sym_lsr] = ACTIONS(2662), - [anon_sym_asr] = ACTIONS(2662), - [aux_sym__mult_operator_token1] = ACTIONS(2662), - [anon_sym_mod] = ACTIONS(2662), - [anon_sym_land] = ACTIONS(2662), - [anon_sym_lor] = ACTIONS(2662), - [anon_sym_lxor] = ACTIONS(2662), - [aux_sym__add_operator_token1] = ACTIONS(2662), - [sym__concat_operator] = ACTIONS(2664), - [sym__rel_operator] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [sym_let_operator] = ACTIONS(2664), - [sym_and_operator] = ACTIONS(2664), - [sym__capitalized_identifier] = ACTIONS(2664), - [aux_sym_directive_token1] = ACTIONS(2662), - [aux_sym_tag_token1] = ACTIONS(2664), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1337] = { - [sym_attribute] = STATE(1337), - [sym__identifier] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_and] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_external] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_exception] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_include] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym_let_operator] = ACTIONS(2803), - [sym_and_operator] = ACTIONS(2803), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_directive_token1] = ACTIONS(2801), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1338] = { - [sym_attribute] = STATE(1338), - [sym__identifier] = ACTIONS(2658), - [anon_sym_COLON_GT] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_RPAREN] = ACTIONS(2660), - [anon_sym_COMMA] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_COLON_EQ] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_COLON2] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_DASH_GT] = ACTIONS(2658), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2660), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_constraint] = ACTIONS(2658), - [anon_sym_val] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_with] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_inherit] = ACTIONS(2658), - [anon_sym_method] = ACTIONS(2658), - [anon_sym_initializer] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2660), - [anon_sym_then] = ACTIONS(2658), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_do] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_LBRACE_LT] = ACTIONS(2660), - [anon_sym_GT_RBRACE] = ACTIONS(2660), - [anon_sym_begin] = ACTIONS(2658), - [sym_ocamlyacc_value] = ACTIONS(2660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2660), - [aux_sym_number_token1] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [sym_prefix_operator] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2658), - [anon_sym_DASH_DOT] = ACTIONS(2658), - [sym_hash_operator] = ACTIONS(2660), - [aux_sym__pow_operator_token1] = ACTIONS(2660), - [anon_sym_lsl] = ACTIONS(2658), - [anon_sym_lsr] = ACTIONS(2658), - [anon_sym_asr] = ACTIONS(2658), - [aux_sym__mult_operator_token1] = ACTIONS(2658), - [anon_sym_mod] = ACTIONS(2658), - [anon_sym_land] = ACTIONS(2658), - [anon_sym_lor] = ACTIONS(2658), - [anon_sym_lxor] = ACTIONS(2658), - [aux_sym__add_operator_token1] = ACTIONS(2658), - [sym__concat_operator] = ACTIONS(2660), - [sym__rel_operator] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [sym__capitalized_identifier] = ACTIONS(2660), - [aux_sym_tag_token1] = ACTIONS(2660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1339] = { - [sym_attribute] = STATE(1339), - [sym__identifier] = ACTIONS(3081), - [anon_sym_SEMI_SEMI] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_and] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_external] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_exception] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_open] = ACTIONS(3081), - [anon_sym_include] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3081), - [anon_sym_end] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_LBRACE_LT] = ACTIONS(3083), - [anon_sym_begin] = ACTIONS(3081), - [sym_ocamlyacc_value] = ACTIONS(3083), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3081), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3083), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3083), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3083), - [aux_sym_number_token1] = ACTIONS(3083), - [anon_sym_SQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_prefix_operator] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3081), - [anon_sym_DASH_DOT] = ACTIONS(3081), - [sym_hash_operator] = ACTIONS(3083), - [aux_sym__pow_operator_token1] = ACTIONS(3083), - [anon_sym_lsl] = ACTIONS(3081), - [anon_sym_lsr] = ACTIONS(3081), - [anon_sym_asr] = ACTIONS(3081), - [aux_sym__mult_operator_token1] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3081), - [anon_sym_land] = ACTIONS(3081), - [anon_sym_lor] = ACTIONS(3081), - [anon_sym_lxor] = ACTIONS(3081), - [aux_sym__add_operator_token1] = ACTIONS(3081), - [sym__concat_operator] = ACTIONS(3083), - [sym__rel_operator] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [sym_let_operator] = ACTIONS(3083), - [sym_and_operator] = ACTIONS(3083), - [sym__capitalized_identifier] = ACTIONS(3083), - [aux_sym_directive_token1] = ACTIONS(3081), - [aux_sym_tag_token1] = ACTIONS(3083), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1340] = { - [sym_attribute] = STATE(1340), - [sym__identifier] = ACTIONS(2666), - [anon_sym_SEMI_SEMI] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_and] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_QMARK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_external] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_COLON_EQ] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_RBRACK] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_exception] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_open] = ACTIONS(2666), - [anon_sym_include] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_object] = ACTIONS(2666), - [anon_sym_in] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(939), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_PIPE] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_LBRACE_LT] = ACTIONS(2668), - [anon_sym_begin] = ACTIONS(2666), - [sym_ocamlyacc_value] = ACTIONS(2668), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2666), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2668), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2668), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2668), - [aux_sym_number_token1] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_prefix_operator] = ACTIONS(2668), - [anon_sym_PLUS_DOT] = ACTIONS(2666), - [anon_sym_DASH_DOT] = ACTIONS(2666), - [sym_hash_operator] = ACTIONS(941), - [aux_sym__pow_operator_token1] = ACTIONS(2668), - [anon_sym_lsl] = ACTIONS(2666), - [anon_sym_lsr] = ACTIONS(2666), - [anon_sym_asr] = ACTIONS(2666), - [aux_sym__mult_operator_token1] = ACTIONS(2666), - [anon_sym_mod] = ACTIONS(2666), - [anon_sym_land] = ACTIONS(2666), - [anon_sym_lor] = ACTIONS(2666), - [anon_sym_lxor] = ACTIONS(2666), - [aux_sym__add_operator_token1] = ACTIONS(2666), - [sym__concat_operator] = ACTIONS(2668), - [sym__rel_operator] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [sym_let_operator] = ACTIONS(2668), - [sym_and_operator] = ACTIONS(2668), - [sym__capitalized_identifier] = ACTIONS(2668), - [aux_sym_directive_token1] = ACTIONS(2666), - [aux_sym_tag_token1] = ACTIONS(2668), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1341] = { - [sym_attribute] = STATE(1341), - [sym__identifier] = ACTIONS(2899), - [anon_sym_COLON_GT] = ACTIONS(2901), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_RPAREN] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_COLON2] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_DASH_GT] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2901), - [anon_sym_RBRACE] = ACTIONS(2901), - [anon_sym_constraint] = ACTIONS(2899), - [anon_sym_val] = ACTIONS(2899), - [anon_sym_end] = ACTIONS(2899), - [anon_sym_with] = ACTIONS(2899), - [anon_sym_object] = ACTIONS(2899), - [anon_sym_inherit] = ACTIONS(2899), - [anon_sym_method] = ACTIONS(2899), - [anon_sym_initializer] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_PIPE] = ACTIONS(2901), - [anon_sym_then] = ACTIONS(2899), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_do] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_LBRACE_LT] = ACTIONS(2901), - [anon_sym_GT_RBRACE] = ACTIONS(2901), - [anon_sym_begin] = ACTIONS(2899), - [sym_ocamlyacc_value] = ACTIONS(2901), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2899), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2901), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2901), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2901), - [aux_sym_number_token1] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_prefix_operator] = ACTIONS(2901), - [anon_sym_PLUS_DOT] = ACTIONS(2899), - [anon_sym_DASH_DOT] = ACTIONS(2899), - [sym_hash_operator] = ACTIONS(2901), - [aux_sym__pow_operator_token1] = ACTIONS(2901), - [anon_sym_lsl] = ACTIONS(2899), - [anon_sym_lsr] = ACTIONS(2899), - [anon_sym_asr] = ACTIONS(2899), - [aux_sym__mult_operator_token1] = ACTIONS(2899), - [anon_sym_mod] = ACTIONS(2899), - [anon_sym_land] = ACTIONS(2899), - [anon_sym_lor] = ACTIONS(2899), - [anon_sym_lxor] = ACTIONS(2899), - [aux_sym__add_operator_token1] = ACTIONS(2899), - [sym__concat_operator] = ACTIONS(2901), - [sym__rel_operator] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym__capitalized_identifier] = ACTIONS(2901), - [aux_sym_tag_token1] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1342] = { - [sym_attribute] = STATE(1342), - [sym__identifier] = ACTIONS(2650), - [anon_sym_COLON_GT] = ACTIONS(2652), - [anon_sym_TILDE] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_RPAREN] = ACTIONS(2652), - [anon_sym_COMMA] = ACTIONS(2652), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_COLON_EQ] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_RBRACK] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_COLON2] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(2652), - [anon_sym_DASH_GT] = ACTIONS(2650), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2652), - [anon_sym_RBRACE] = ACTIONS(2652), - [anon_sym_constraint] = ACTIONS(2650), - [anon_sym_val] = ACTIONS(2650), - [anon_sym_end] = ACTIONS(2650), - [anon_sym_with] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_inherit] = ACTIONS(2650), - [anon_sym_method] = ACTIONS(2650), - [anon_sym_initializer] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2652), - [anon_sym_LBRACK_PIPE] = ACTIONS(2652), - [anon_sym_then] = ACTIONS(2650), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_do] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_LBRACE_LT] = ACTIONS(2652), - [anon_sym_GT_RBRACE] = ACTIONS(2652), - [anon_sym_begin] = ACTIONS(2650), - [sym_ocamlyacc_value] = ACTIONS(2652), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2650), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2652), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2652), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2652), - [aux_sym_number_token1] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [sym_prefix_operator] = ACTIONS(2652), - [anon_sym_PLUS_DOT] = ACTIONS(2650), - [anon_sym_DASH_DOT] = ACTIONS(2650), - [sym_hash_operator] = ACTIONS(2652), - [aux_sym__pow_operator_token1] = ACTIONS(2652), - [anon_sym_lsl] = ACTIONS(2650), - [anon_sym_lsr] = ACTIONS(2650), - [anon_sym_asr] = ACTIONS(2650), - [aux_sym__mult_operator_token1] = ACTIONS(2650), - [anon_sym_mod] = ACTIONS(2650), - [anon_sym_land] = ACTIONS(2650), - [anon_sym_lor] = ACTIONS(2650), - [anon_sym_lxor] = ACTIONS(2650), - [aux_sym__add_operator_token1] = ACTIONS(2650), - [sym__concat_operator] = ACTIONS(2652), - [sym__rel_operator] = ACTIONS(2650), - [anon_sym_AMP_AMP] = ACTIONS(2650), - [anon_sym_or] = ACTIONS(2650), - [anon_sym_PIPE_PIPE] = ACTIONS(2650), - [sym__capitalized_identifier] = ACTIONS(2652), - [aux_sym_tag_token1] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1343] = { - [sym_attribute] = STATE(1343), - [sym__identifier] = ACTIONS(2670), - [anon_sym_SEMI_SEMI] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2670), - [anon_sym_and] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_external] = ACTIONS(2670), - [anon_sym_type] = ACTIONS(2670), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_COLON_EQ] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2670), - [anon_sym_false] = ACTIONS(2670), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_exception] = ACTIONS(2670), - [anon_sym_module] = ACTIONS(2670), - [anon_sym_open] = ACTIONS(2670), - [anon_sym_include] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_end] = ACTIONS(2670), - [anon_sym_object] = ACTIONS(2670), - [anon_sym_in] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_PIPE] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_LBRACE_LT] = ACTIONS(2672), - [anon_sym_begin] = ACTIONS(2670), - [sym_ocamlyacc_value] = ACTIONS(2672), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2670), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2672), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2672), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2672), - [aux_sym_number_token1] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_prefix_operator] = ACTIONS(2672), - [anon_sym_PLUS_DOT] = ACTIONS(2670), - [anon_sym_DASH_DOT] = ACTIONS(2670), - [sym_hash_operator] = ACTIONS(2672), - [aux_sym__pow_operator_token1] = ACTIONS(2672), - [anon_sym_lsl] = ACTIONS(2670), - [anon_sym_lsr] = ACTIONS(2670), - [anon_sym_asr] = ACTIONS(2670), - [aux_sym__mult_operator_token1] = ACTIONS(2670), - [anon_sym_mod] = ACTIONS(2670), - [anon_sym_land] = ACTIONS(2670), - [anon_sym_lor] = ACTIONS(2670), - [anon_sym_lxor] = ACTIONS(2670), - [aux_sym__add_operator_token1] = ACTIONS(2670), - [sym__concat_operator] = ACTIONS(2672), - [sym__rel_operator] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_or] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [sym_let_operator] = ACTIONS(2672), - [sym_and_operator] = ACTIONS(2672), - [sym__capitalized_identifier] = ACTIONS(2672), - [aux_sym_directive_token1] = ACTIONS(2670), - [aux_sym_tag_token1] = ACTIONS(2672), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1344] = { - [sym_attribute] = STATE(1344), - [sym__identifier] = ACTIONS(3077), - [anon_sym_COLON_GT] = ACTIONS(3079), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_RPAREN] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_true] = ACTIONS(3077), - [anon_sym_false] = ACTIONS(3077), - [anon_sym_COLON2] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_DASH_GT] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3079), - [anon_sym_RBRACE] = ACTIONS(3079), - [anon_sym_constraint] = ACTIONS(3077), - [anon_sym_val] = ACTIONS(3077), - [anon_sym_end] = ACTIONS(3077), - [anon_sym_with] = ACTIONS(3077), - [anon_sym_object] = ACTIONS(3077), - [anon_sym_inherit] = ACTIONS(3077), - [anon_sym_method] = ACTIONS(3077), - [anon_sym_initializer] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3079), - [anon_sym_then] = ACTIONS(3077), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_do] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_LBRACE_LT] = ACTIONS(3079), - [anon_sym_GT_RBRACE] = ACTIONS(3079), - [anon_sym_begin] = ACTIONS(3077), - [sym_ocamlyacc_value] = ACTIONS(3079), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3077), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3079), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3079), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3079), - [aux_sym_number_token1] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_prefix_operator] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3077), - [anon_sym_DASH_DOT] = ACTIONS(3077), - [sym_hash_operator] = ACTIONS(3079), - [aux_sym__pow_operator_token1] = ACTIONS(3079), - [anon_sym_lsl] = ACTIONS(3077), - [anon_sym_lsr] = ACTIONS(3077), - [anon_sym_asr] = ACTIONS(3077), - [aux_sym__mult_operator_token1] = ACTIONS(3077), - [anon_sym_mod] = ACTIONS(3077), - [anon_sym_land] = ACTIONS(3077), - [anon_sym_lor] = ACTIONS(3077), - [anon_sym_lxor] = ACTIONS(3077), - [aux_sym__add_operator_token1] = ACTIONS(3077), - [sym__concat_operator] = ACTIONS(3079), - [sym__rel_operator] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [sym__capitalized_identifier] = ACTIONS(3079), - [aux_sym_tag_token1] = ACTIONS(3079), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1345] = { - [sym_attribute] = STATE(1345), - [sym__identifier] = ACTIONS(3073), - [anon_sym_COLON_GT] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_RPAREN] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_true] = ACTIONS(3073), - [anon_sym_false] = ACTIONS(3073), - [anon_sym_COLON2] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_DASH_GT] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3075), - [anon_sym_RBRACE] = ACTIONS(3075), - [anon_sym_constraint] = ACTIONS(3073), - [anon_sym_val] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_with] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), - [anon_sym_inherit] = ACTIONS(3073), - [anon_sym_method] = ACTIONS(3073), - [anon_sym_initializer] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_then] = ACTIONS(3073), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_do] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_LBRACE_LT] = ACTIONS(3075), - [anon_sym_GT_RBRACE] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [sym_ocamlyacc_value] = ACTIONS(3075), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3073), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3075), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3075), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3075), - [aux_sym_number_token1] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_prefix_operator] = ACTIONS(3075), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [sym_hash_operator] = ACTIONS(3075), - [aux_sym__pow_operator_token1] = ACTIONS(3075), - [anon_sym_lsl] = ACTIONS(3073), - [anon_sym_lsr] = ACTIONS(3073), - [anon_sym_asr] = ACTIONS(3073), - [aux_sym__mult_operator_token1] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3073), - [anon_sym_land] = ACTIONS(3073), - [anon_sym_lor] = ACTIONS(3073), - [anon_sym_lxor] = ACTIONS(3073), - [aux_sym__add_operator_token1] = ACTIONS(3073), - [sym__concat_operator] = ACTIONS(3075), - [sym__rel_operator] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [sym__capitalized_identifier] = ACTIONS(3075), - [aux_sym_tag_token1] = ACTIONS(3075), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1346] = { - [sym_attribute] = STATE(1346), - [sym__identifier] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3097), - [anon_sym_and] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_external] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_exception] = ACTIONS(3097), - [anon_sym_module] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_include] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_end] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_LBRACE_LT] = ACTIONS(3099), - [anon_sym_begin] = ACTIONS(3097), - [sym_ocamlyacc_value] = ACTIONS(3099), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3099), - [aux_sym_number_token1] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_prefix_operator] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [sym_hash_operator] = ACTIONS(3099), - [aux_sym__pow_operator_token1] = ACTIONS(3099), - [anon_sym_lsl] = ACTIONS(3097), - [anon_sym_lsr] = ACTIONS(3097), - [anon_sym_asr] = ACTIONS(3097), - [aux_sym__mult_operator_token1] = ACTIONS(3097), - [anon_sym_mod] = ACTIONS(3097), - [anon_sym_land] = ACTIONS(3097), - [anon_sym_lor] = ACTIONS(3097), - [anon_sym_lxor] = ACTIONS(3097), - [aux_sym__add_operator_token1] = ACTIONS(3097), - [sym__concat_operator] = ACTIONS(3099), - [sym__rel_operator] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [sym_let_operator] = ACTIONS(3099), - [sym_and_operator] = ACTIONS(3099), - [sym__capitalized_identifier] = ACTIONS(3099), - [aux_sym_directive_token1] = ACTIONS(3097), - [aux_sym_tag_token1] = ACTIONS(3099), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1347] = { - [sym_attribute] = STATE(1347), - [sym__identifier] = ACTIONS(2827), - [anon_sym_SEMI_SEMI] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2827), - [anon_sym_and] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_external] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_exception] = ACTIONS(2827), - [anon_sym_module] = ACTIONS(2827), - [anon_sym_open] = ACTIONS(2827), - [anon_sym_include] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_end] = ACTIONS(2827), - [anon_sym_object] = ACTIONS(2827), - [anon_sym_in] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_PIPE] = ACTIONS(2829), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_LBRACE_LT] = ACTIONS(2829), - [anon_sym_begin] = ACTIONS(2827), - [sym_ocamlyacc_value] = ACTIONS(2829), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2827), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2829), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2829), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2829), - [aux_sym_number_token1] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_prefix_operator] = ACTIONS(2829), - [anon_sym_PLUS_DOT] = ACTIONS(2827), - [anon_sym_DASH_DOT] = ACTIONS(2827), - [sym_hash_operator] = ACTIONS(2829), - [aux_sym__pow_operator_token1] = ACTIONS(2829), - [anon_sym_lsl] = ACTIONS(2827), - [anon_sym_lsr] = ACTIONS(2827), - [anon_sym_asr] = ACTIONS(2827), - [aux_sym__mult_operator_token1] = ACTIONS(2827), - [anon_sym_mod] = ACTIONS(2827), - [anon_sym_land] = ACTIONS(2827), - [anon_sym_lor] = ACTIONS(2827), - [anon_sym_lxor] = ACTIONS(2827), - [aux_sym__add_operator_token1] = ACTIONS(2827), - [sym__concat_operator] = ACTIONS(2829), - [sym__rel_operator] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [sym_let_operator] = ACTIONS(2829), - [sym_and_operator] = ACTIONS(2829), - [sym__capitalized_identifier] = ACTIONS(2829), - [aux_sym_directive_token1] = ACTIONS(2827), - [aux_sym_tag_token1] = ACTIONS(2829), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1348] = { - [sym_attribute] = STATE(1348), - [sym__identifier] = ACTIONS(2823), - [anon_sym_SEMI_SEMI] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2823), - [anon_sym_and] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_external] = ACTIONS(2823), - [anon_sym_type] = ACTIONS(2823), - [anon_sym_COMMA] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_COLON_EQ] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_exception] = ACTIONS(2823), - [anon_sym_module] = ACTIONS(2823), - [anon_sym_open] = ACTIONS(2823), - [anon_sym_include] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2823), - [anon_sym_end] = ACTIONS(2823), - [anon_sym_object] = ACTIONS(2823), - [anon_sym_in] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_PIPE] = ACTIONS(2825), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_LBRACE_LT] = ACTIONS(2825), - [anon_sym_begin] = ACTIONS(2823), - [sym_ocamlyacc_value] = ACTIONS(2825), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2823), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2825), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2825), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2825), - [aux_sym_number_token1] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_prefix_operator] = ACTIONS(2825), - [anon_sym_PLUS_DOT] = ACTIONS(2823), - [anon_sym_DASH_DOT] = ACTIONS(2823), - [sym_hash_operator] = ACTIONS(2825), - [aux_sym__pow_operator_token1] = ACTIONS(2825), - [anon_sym_lsl] = ACTIONS(2823), - [anon_sym_lsr] = ACTIONS(2823), - [anon_sym_asr] = ACTIONS(2823), - [aux_sym__mult_operator_token1] = ACTIONS(2823), - [anon_sym_mod] = ACTIONS(2823), - [anon_sym_land] = ACTIONS(2823), - [anon_sym_lor] = ACTIONS(2823), - [anon_sym_lxor] = ACTIONS(2823), - [aux_sym__add_operator_token1] = ACTIONS(2823), - [sym__concat_operator] = ACTIONS(2825), - [sym__rel_operator] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [sym_let_operator] = ACTIONS(2825), - [sym_and_operator] = ACTIONS(2825), - [sym__capitalized_identifier] = ACTIONS(2825), - [aux_sym_directive_token1] = ACTIONS(2823), - [aux_sym_tag_token1] = ACTIONS(2825), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1349] = { - [sym_attribute] = STATE(1349), - [sym__identifier] = ACTIONS(2674), - [anon_sym_SEMI_SEMI] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_and] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_external] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_COLON_EQ] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_exception] = ACTIONS(2674), - [anon_sym_module] = ACTIONS(2674), - [anon_sym_open] = ACTIONS(2674), - [anon_sym_include] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), - [anon_sym_object] = ACTIONS(2674), - [anon_sym_in] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_PIPE] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_LBRACE_LT] = ACTIONS(2676), - [anon_sym_begin] = ACTIONS(2674), - [sym_ocamlyacc_value] = ACTIONS(2676), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2674), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2676), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2676), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2676), - [aux_sym_number_token1] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_prefix_operator] = ACTIONS(2676), - [anon_sym_PLUS_DOT] = ACTIONS(2674), - [anon_sym_DASH_DOT] = ACTIONS(2674), - [sym_hash_operator] = ACTIONS(2676), - [aux_sym__pow_operator_token1] = ACTIONS(2676), - [anon_sym_lsl] = ACTIONS(2674), - [anon_sym_lsr] = ACTIONS(2674), - [anon_sym_asr] = ACTIONS(2674), - [aux_sym__mult_operator_token1] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_land] = ACTIONS(2674), - [anon_sym_lor] = ACTIONS(2674), - [anon_sym_lxor] = ACTIONS(2674), - [aux_sym__add_operator_token1] = ACTIONS(2674), - [sym__concat_operator] = ACTIONS(2676), - [sym__rel_operator] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [sym_let_operator] = ACTIONS(2676), - [sym_and_operator] = ACTIONS(2676), - [sym__capitalized_identifier] = ACTIONS(2676), - [aux_sym_directive_token1] = ACTIONS(2674), - [aux_sym_tag_token1] = ACTIONS(2676), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1350] = { - [sym_attribute] = STATE(1350), - [sym__identifier] = ACTIONS(3005), - [anon_sym_SEMI_SEMI] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3005), - [anon_sym_and] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_exception] = ACTIONS(3005), - [anon_sym_module] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_include] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3005), - [anon_sym_end] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_LBRACE_LT] = ACTIONS(3007), - [anon_sym_begin] = ACTIONS(3005), - [sym_ocamlyacc_value] = ACTIONS(3007), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3005), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3007), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3007), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3007), - [aux_sym_number_token1] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [sym_prefix_operator] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [sym_hash_operator] = ACTIONS(3007), - [aux_sym__pow_operator_token1] = ACTIONS(3007), - [anon_sym_lsl] = ACTIONS(3005), - [anon_sym_lsr] = ACTIONS(3005), - [anon_sym_asr] = ACTIONS(3005), - [aux_sym__mult_operator_token1] = ACTIONS(3005), - [anon_sym_mod] = ACTIONS(3005), - [anon_sym_land] = ACTIONS(3005), - [anon_sym_lor] = ACTIONS(3005), - [anon_sym_lxor] = ACTIONS(3005), - [aux_sym__add_operator_token1] = ACTIONS(3005), - [sym__concat_operator] = ACTIONS(3007), - [sym__rel_operator] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [sym_let_operator] = ACTIONS(3007), - [sym_and_operator] = ACTIONS(3007), - [sym__capitalized_identifier] = ACTIONS(3007), - [aux_sym_directive_token1] = ACTIONS(3005), - [aux_sym_tag_token1] = ACTIONS(3007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1351] = { - [sym_attribute] = STATE(1351), - [sym__identifier] = ACTIONS(3093), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_and] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_external] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_true] = ACTIONS(3093), - [anon_sym_false] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym_exception] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_open] = ACTIONS(3093), - [anon_sym_include] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_end] = ACTIONS(3093), - [anon_sym_object] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_LBRACE_LT] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [sym_ocamlyacc_value] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3093), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3095), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3095), - [aux_sym_number_token1] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_prefix_operator] = ACTIONS(3095), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [sym_hash_operator] = ACTIONS(3095), - [aux_sym__pow_operator_token1] = ACTIONS(3095), - [anon_sym_lsl] = ACTIONS(3093), - [anon_sym_lsr] = ACTIONS(3093), - [anon_sym_asr] = ACTIONS(3093), - [aux_sym__mult_operator_token1] = ACTIONS(3093), - [anon_sym_mod] = ACTIONS(3093), - [anon_sym_land] = ACTIONS(3093), - [anon_sym_lor] = ACTIONS(3093), - [anon_sym_lxor] = ACTIONS(3093), - [aux_sym__add_operator_token1] = ACTIONS(3093), - [sym__concat_operator] = ACTIONS(3095), - [sym__rel_operator] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [sym_let_operator] = ACTIONS(3095), - [sym_and_operator] = ACTIONS(3095), - [sym__capitalized_identifier] = ACTIONS(3095), - [aux_sym_directive_token1] = ACTIONS(3093), - [aux_sym_tag_token1] = ACTIONS(3095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1352] = { - [sym_attribute] = STATE(1352), - [sym__identifier] = ACTIONS(2903), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2903), - [anon_sym_and] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_external] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_exception] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(2903), - [anon_sym_open] = ACTIONS(2903), - [anon_sym_include] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_end] = ACTIONS(2903), - [anon_sym_object] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_PIPE] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_LBRACE_LT] = ACTIONS(2905), - [anon_sym_begin] = ACTIONS(2903), - [sym_ocamlyacc_value] = ACTIONS(2905), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2903), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2905), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2905), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2905), - [aux_sym_number_token1] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_prefix_operator] = ACTIONS(2905), - [anon_sym_PLUS_DOT] = ACTIONS(2903), - [anon_sym_DASH_DOT] = ACTIONS(2903), - [sym_hash_operator] = ACTIONS(2905), - [aux_sym__pow_operator_token1] = ACTIONS(2905), - [anon_sym_lsl] = ACTIONS(2903), - [anon_sym_lsr] = ACTIONS(2903), - [anon_sym_asr] = ACTIONS(2903), - [aux_sym__mult_operator_token1] = ACTIONS(2903), - [anon_sym_mod] = ACTIONS(2903), - [anon_sym_land] = ACTIONS(2903), - [anon_sym_lor] = ACTIONS(2903), - [anon_sym_lxor] = ACTIONS(2903), - [aux_sym__add_operator_token1] = ACTIONS(2903), - [sym__concat_operator] = ACTIONS(2905), - [sym__rel_operator] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym_let_operator] = ACTIONS(2905), - [sym_and_operator] = ACTIONS(2905), - [sym__capitalized_identifier] = ACTIONS(2905), - [aux_sym_directive_token1] = ACTIONS(2903), - [aux_sym_tag_token1] = ACTIONS(2905), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1353] = { - [sym_attribute] = STATE(1353), - [sym__identifier] = ACTIONS(2873), - [anon_sym_COLON_GT] = ACTIONS(2875), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_RPAREN] = ACTIONS(2875), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_COLON_EQ] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_COLON2] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_DASH_GT] = ACTIONS(2873), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2875), - [anon_sym_RBRACE] = ACTIONS(2875), - [anon_sym_constraint] = ACTIONS(2873), - [anon_sym_val] = ACTIONS(2873), - [anon_sym_end] = ACTIONS(2873), - [anon_sym_with] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_inherit] = ACTIONS(2873), - [anon_sym_method] = ACTIONS(2873), - [anon_sym_initializer] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_PIPE] = ACTIONS(2875), - [anon_sym_then] = ACTIONS(2873), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_do] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_LBRACE_LT] = ACTIONS(2875), - [anon_sym_GT_RBRACE] = ACTIONS(2875), - [anon_sym_begin] = ACTIONS(2873), - [sym_ocamlyacc_value] = ACTIONS(2875), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2873), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2875), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2875), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2875), - [aux_sym_number_token1] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_prefix_operator] = ACTIONS(2875), - [anon_sym_PLUS_DOT] = ACTIONS(2873), - [anon_sym_DASH_DOT] = ACTIONS(2873), - [sym_hash_operator] = ACTIONS(2875), - [aux_sym__pow_operator_token1] = ACTIONS(2875), - [anon_sym_lsl] = ACTIONS(2873), - [anon_sym_lsr] = ACTIONS(2873), - [anon_sym_asr] = ACTIONS(2873), - [aux_sym__mult_operator_token1] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_land] = ACTIONS(2873), - [anon_sym_lor] = ACTIONS(2873), - [anon_sym_lxor] = ACTIONS(2873), - [aux_sym__add_operator_token1] = ACTIONS(2873), - [sym__concat_operator] = ACTIONS(2875), - [sym__rel_operator] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym__capitalized_identifier] = ACTIONS(2875), - [aux_sym_tag_token1] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1354] = { - [sym_attribute] = STATE(1354), - [sym__identifier] = ACTIONS(2819), - [anon_sym_COLON_GT] = ACTIONS(2821), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_RPAREN] = ACTIONS(2821), - [anon_sym_COMMA] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_COLON_EQ] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_RBRACK] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [anon_sym_COLON2] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_DASH_GT] = ACTIONS(2819), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2821), - [anon_sym_RBRACE] = ACTIONS(2821), - [anon_sym_constraint] = ACTIONS(2819), - [anon_sym_val] = ACTIONS(2819), - [anon_sym_end] = ACTIONS(2819), - [anon_sym_with] = ACTIONS(2819), - [anon_sym_object] = ACTIONS(2819), - [anon_sym_inherit] = ACTIONS(2819), - [anon_sym_method] = ACTIONS(2819), - [anon_sym_initializer] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_PIPE] = ACTIONS(2821), - [anon_sym_then] = ACTIONS(2819), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_do] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_LBRACE_LT] = ACTIONS(2821), - [anon_sym_GT_RBRACE] = ACTIONS(2821), - [anon_sym_begin] = ACTIONS(2819), - [sym_ocamlyacc_value] = ACTIONS(2821), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2819), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2821), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2821), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2821), - [aux_sym_number_token1] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_prefix_operator] = ACTIONS(2821), - [anon_sym_PLUS_DOT] = ACTIONS(2819), - [anon_sym_DASH_DOT] = ACTIONS(2819), - [sym_hash_operator] = ACTIONS(2821), - [aux_sym__pow_operator_token1] = ACTIONS(2821), - [anon_sym_lsl] = ACTIONS(2819), - [anon_sym_lsr] = ACTIONS(2819), - [anon_sym_asr] = ACTIONS(2819), - [aux_sym__mult_operator_token1] = ACTIONS(2819), - [anon_sym_mod] = ACTIONS(2819), - [anon_sym_land] = ACTIONS(2819), - [anon_sym_lor] = ACTIONS(2819), - [anon_sym_lxor] = ACTIONS(2819), - [aux_sym__add_operator_token1] = ACTIONS(2819), - [sym__concat_operator] = ACTIONS(2821), - [sym__rel_operator] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [sym__capitalized_identifier] = ACTIONS(2821), - [aux_sym_tag_token1] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1355] = { - [sym_attribute] = STATE(1355), - [sym__identifier] = ACTIONS(2939), - [anon_sym_COLON_GT] = ACTIONS(2941), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_RPAREN] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [anon_sym_COLON2] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_DASH_GT] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2941), - [anon_sym_RBRACE] = ACTIONS(2941), - [anon_sym_constraint] = ACTIONS(2939), - [anon_sym_val] = ACTIONS(2939), - [anon_sym_end] = ACTIONS(2939), - [anon_sym_with] = ACTIONS(2939), - [anon_sym_object] = ACTIONS(2939), - [anon_sym_inherit] = ACTIONS(2939), - [anon_sym_method] = ACTIONS(2939), - [anon_sym_initializer] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2941), - [anon_sym_then] = ACTIONS(2939), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_do] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_LBRACE_LT] = ACTIONS(2941), - [anon_sym_GT_RBRACE] = ACTIONS(2941), - [anon_sym_begin] = ACTIONS(2939), - [sym_ocamlyacc_value] = ACTIONS(2941), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2939), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2941), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2941), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2941), - [aux_sym_number_token1] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_prefix_operator] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2939), - [anon_sym_DASH_DOT] = ACTIONS(2939), - [sym_hash_operator] = ACTIONS(2941), - [aux_sym__pow_operator_token1] = ACTIONS(2941), - [anon_sym_lsl] = ACTIONS(2939), - [anon_sym_lsr] = ACTIONS(2939), - [anon_sym_asr] = ACTIONS(2939), - [aux_sym__mult_operator_token1] = ACTIONS(2939), - [anon_sym_mod] = ACTIONS(2939), - [anon_sym_land] = ACTIONS(2939), - [anon_sym_lor] = ACTIONS(2939), - [anon_sym_lxor] = ACTIONS(2939), - [aux_sym__add_operator_token1] = ACTIONS(2939), - [sym__concat_operator] = ACTIONS(2941), - [sym__rel_operator] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [sym__capitalized_identifier] = ACTIONS(2941), - [aux_sym_tag_token1] = ACTIONS(2941), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1356] = { - [sym_attribute] = STATE(1356), - [sym__identifier] = ACTIONS(2835), - [anon_sym_COLON_GT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_COLON2] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_DASH_GT] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_constraint] = ACTIONS(2835), - [anon_sym_val] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_with] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_inherit] = ACTIONS(2835), - [anon_sym_method] = ACTIONS(2835), - [anon_sym_initializer] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_then] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_do] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_GT_RBRACE] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1357] = { - [sym_attribute] = STATE(1357), - [sym__identifier] = ACTIONS(2654), - [anon_sym_SEMI_SEMI] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_and] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2654), - [anon_sym_QMARK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_external] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_COMMA] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_COLON_EQ] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_exception] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_open] = ACTIONS(2654), - [anon_sym_include] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_end] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), - [anon_sym_in] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_PIPE] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_LBRACE_LT] = ACTIONS(2656), - [anon_sym_begin] = ACTIONS(2654), - [sym_ocamlyacc_value] = ACTIONS(2656), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2654), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2656), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2656), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2656), - [aux_sym_number_token1] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym_prefix_operator] = ACTIONS(2656), - [anon_sym_PLUS_DOT] = ACTIONS(2654), - [anon_sym_DASH_DOT] = ACTIONS(2654), - [sym_hash_operator] = ACTIONS(2656), - [aux_sym__pow_operator_token1] = ACTIONS(2656), - [anon_sym_lsl] = ACTIONS(2654), - [anon_sym_lsr] = ACTIONS(2654), - [anon_sym_asr] = ACTIONS(2654), - [aux_sym__mult_operator_token1] = ACTIONS(2654), - [anon_sym_mod] = ACTIONS(2654), - [anon_sym_land] = ACTIONS(2654), - [anon_sym_lor] = ACTIONS(2654), - [anon_sym_lxor] = ACTIONS(2654), - [aux_sym__add_operator_token1] = ACTIONS(2654), - [sym__concat_operator] = ACTIONS(2656), - [sym__rel_operator] = ACTIONS(2654), - [anon_sym_AMP_AMP] = ACTIONS(2654), - [anon_sym_or] = ACTIONS(2654), - [anon_sym_PIPE_PIPE] = ACTIONS(2654), - [sym_let_operator] = ACTIONS(2656), - [sym_and_operator] = ACTIONS(2656), - [sym__capitalized_identifier] = ACTIONS(2656), - [aux_sym_directive_token1] = ACTIONS(2654), - [aux_sym_tag_token1] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1358] = { - [sym_attribute] = STATE(1358), - [sym__identifier] = ACTIONS(2811), - [anon_sym_COLON_GT] = ACTIONS(2813), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_QMARK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_RPAREN] = ACTIONS(2813), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_COLON2] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_DASH_GT] = ACTIONS(2811), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2813), - [anon_sym_RBRACE] = ACTIONS(2813), - [anon_sym_constraint] = ACTIONS(2811), - [anon_sym_val] = ACTIONS(2811), - [anon_sym_end] = ACTIONS(2811), - [anon_sym_with] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_inherit] = ACTIONS(2811), - [anon_sym_method] = ACTIONS(2811), - [anon_sym_initializer] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_PIPE] = ACTIONS(2813), - [anon_sym_then] = ACTIONS(2811), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_do] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_LBRACE_LT] = ACTIONS(2813), - [anon_sym_GT_RBRACE] = ACTIONS(2813), - [anon_sym_begin] = ACTIONS(2811), - [sym_ocamlyacc_value] = ACTIONS(2813), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2811), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2813), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2813), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2813), - [aux_sym_number_token1] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_prefix_operator] = ACTIONS(2813), - [anon_sym_PLUS_DOT] = ACTIONS(2811), - [anon_sym_DASH_DOT] = ACTIONS(2811), - [sym_hash_operator] = ACTIONS(2813), - [aux_sym__pow_operator_token1] = ACTIONS(2813), - [anon_sym_lsl] = ACTIONS(2811), - [anon_sym_lsr] = ACTIONS(2811), - [anon_sym_asr] = ACTIONS(2811), - [aux_sym__mult_operator_token1] = ACTIONS(2811), - [anon_sym_mod] = ACTIONS(2811), - [anon_sym_land] = ACTIONS(2811), - [anon_sym_lor] = ACTIONS(2811), - [anon_sym_lxor] = ACTIONS(2811), - [aux_sym__add_operator_token1] = ACTIONS(2811), - [sym__concat_operator] = ACTIONS(2813), - [sym__rel_operator] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_or] = ACTIONS(2811), - [anon_sym_PIPE_PIPE] = ACTIONS(2811), - [sym__capitalized_identifier] = ACTIONS(2813), - [aux_sym_tag_token1] = ACTIONS(2813), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1359] = { - [sym_attribute] = STATE(1359), - [sym__identifier] = ACTIONS(3081), - [anon_sym_COLON_GT] = ACTIONS(3083), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_RPAREN] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_COLON2] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_DASH_GT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3083), - [anon_sym_RBRACE] = ACTIONS(3083), - [anon_sym_constraint] = ACTIONS(3081), - [anon_sym_val] = ACTIONS(3081), - [anon_sym_end] = ACTIONS(3081), - [anon_sym_with] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_inherit] = ACTIONS(3081), - [anon_sym_method] = ACTIONS(3081), - [anon_sym_initializer] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3083), - [anon_sym_then] = ACTIONS(3081), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_do] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_LBRACE_LT] = ACTIONS(3083), - [anon_sym_GT_RBRACE] = ACTIONS(3083), - [anon_sym_begin] = ACTIONS(3081), - [sym_ocamlyacc_value] = ACTIONS(3083), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3081), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3083), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3083), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3083), - [aux_sym_number_token1] = ACTIONS(3083), - [anon_sym_SQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_prefix_operator] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3081), - [anon_sym_DASH_DOT] = ACTIONS(3081), - [sym_hash_operator] = ACTIONS(3083), - [aux_sym__pow_operator_token1] = ACTIONS(3083), - [anon_sym_lsl] = ACTIONS(3081), - [anon_sym_lsr] = ACTIONS(3081), - [anon_sym_asr] = ACTIONS(3081), - [aux_sym__mult_operator_token1] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3081), - [anon_sym_land] = ACTIONS(3081), - [anon_sym_lor] = ACTIONS(3081), - [anon_sym_lxor] = ACTIONS(3081), - [aux_sym__add_operator_token1] = ACTIONS(3081), - [sym__concat_operator] = ACTIONS(3083), - [sym__rel_operator] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [sym__capitalized_identifier] = ACTIONS(3083), - [aux_sym_tag_token1] = ACTIONS(3083), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1360] = { - [sym_attribute] = STATE(1360), - [sym__identifier] = ACTIONS(2734), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2734), - [anon_sym_and] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_external] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_exception] = ACTIONS(2734), - [anon_sym_module] = ACTIONS(2734), - [anon_sym_open] = ACTIONS(2734), - [anon_sym_include] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_end] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_PIPE] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_LBRACE_LT] = ACTIONS(2736), - [anon_sym_begin] = ACTIONS(2734), - [sym_ocamlyacc_value] = ACTIONS(2736), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2734), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2736), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2736), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2736), - [aux_sym_number_token1] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_prefix_operator] = ACTIONS(2736), - [anon_sym_PLUS_DOT] = ACTIONS(2734), - [anon_sym_DASH_DOT] = ACTIONS(2734), - [sym_hash_operator] = ACTIONS(2736), - [aux_sym__pow_operator_token1] = ACTIONS(2736), - [anon_sym_lsl] = ACTIONS(2734), - [anon_sym_lsr] = ACTIONS(2734), - [anon_sym_asr] = ACTIONS(2734), - [aux_sym__mult_operator_token1] = ACTIONS(2734), - [anon_sym_mod] = ACTIONS(2734), - [anon_sym_land] = ACTIONS(2734), - [anon_sym_lor] = ACTIONS(2734), - [anon_sym_lxor] = ACTIONS(2734), - [aux_sym__add_operator_token1] = ACTIONS(2734), - [sym__concat_operator] = ACTIONS(2736), - [sym__rel_operator] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [sym_let_operator] = ACTIONS(2736), - [sym_and_operator] = ACTIONS(2736), - [sym__capitalized_identifier] = ACTIONS(2736), - [aux_sym_directive_token1] = ACTIONS(2734), - [aux_sym_tag_token1] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1361] = { - [sym_attribute] = STATE(1361), - [sym__identifier] = ACTIONS(3069), - [anon_sym_COLON_GT] = ACTIONS(3071), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_COLON2] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_DASH_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_constraint] = ACTIONS(3069), - [anon_sym_val] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_with] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_inherit] = ACTIONS(3069), - [anon_sym_method] = ACTIONS(3069), - [anon_sym_initializer] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_then] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_do] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_GT_RBRACE] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1362] = { - [sym_attribute] = STATE(1362), - [sym__identifier] = ACTIONS(2907), - [anon_sym_SEMI_SEMI] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_and] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_external] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_exception] = ACTIONS(2907), - [anon_sym_module] = ACTIONS(2907), - [anon_sym_open] = ACTIONS(2907), - [anon_sym_include] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2907), - [anon_sym_end] = ACTIONS(2907), - [anon_sym_object] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_PIPE] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_LBRACE_LT] = ACTIONS(2909), - [anon_sym_begin] = ACTIONS(2907), - [sym_ocamlyacc_value] = ACTIONS(2909), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2907), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2909), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2909), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2909), - [aux_sym_number_token1] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_prefix_operator] = ACTIONS(2909), - [anon_sym_PLUS_DOT] = ACTIONS(2907), - [anon_sym_DASH_DOT] = ACTIONS(2907), - [sym_hash_operator] = ACTIONS(2909), - [aux_sym__pow_operator_token1] = ACTIONS(2909), - [anon_sym_lsl] = ACTIONS(2907), - [anon_sym_lsr] = ACTIONS(2907), - [anon_sym_asr] = ACTIONS(2907), - [aux_sym__mult_operator_token1] = ACTIONS(2907), - [anon_sym_mod] = ACTIONS(2907), - [anon_sym_land] = ACTIONS(2907), - [anon_sym_lor] = ACTIONS(2907), - [anon_sym_lxor] = ACTIONS(2907), - [aux_sym__add_operator_token1] = ACTIONS(2907), - [sym__concat_operator] = ACTIONS(2909), - [sym__rel_operator] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [sym_let_operator] = ACTIONS(2909), - [sym_and_operator] = ACTIONS(2909), - [sym__capitalized_identifier] = ACTIONS(2909), - [aux_sym_directive_token1] = ACTIONS(2907), - [aux_sym_tag_token1] = ACTIONS(2909), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1363] = { - [sym_attribute] = STATE(1363), - [sym__identifier] = ACTIONS(2738), - [anon_sym_COLON_GT] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_RPAREN] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_COLON2] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_DASH_GT] = ACTIONS(2738), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_constraint] = ACTIONS(2738), - [anon_sym_val] = ACTIONS(2738), - [anon_sym_end] = ACTIONS(2738), - [anon_sym_with] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_inherit] = ACTIONS(2738), - [anon_sym_method] = ACTIONS(2738), - [anon_sym_initializer] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_PIPE] = ACTIONS(2740), - [anon_sym_then] = ACTIONS(2738), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_do] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_LBRACE_LT] = ACTIONS(2740), - [anon_sym_GT_RBRACE] = ACTIONS(2740), - [anon_sym_begin] = ACTIONS(2738), - [sym_ocamlyacc_value] = ACTIONS(2740), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2738), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2740), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2740), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2740), - [aux_sym_number_token1] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_prefix_operator] = ACTIONS(2740), - [anon_sym_PLUS_DOT] = ACTIONS(2738), - [anon_sym_DASH_DOT] = ACTIONS(2738), - [sym_hash_operator] = ACTIONS(2740), - [aux_sym__pow_operator_token1] = ACTIONS(2740), - [anon_sym_lsl] = ACTIONS(2738), - [anon_sym_lsr] = ACTIONS(2738), - [anon_sym_asr] = ACTIONS(2738), - [aux_sym__mult_operator_token1] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_land] = ACTIONS(2738), - [anon_sym_lor] = ACTIONS(2738), - [anon_sym_lxor] = ACTIONS(2738), - [aux_sym__add_operator_token1] = ACTIONS(2738), - [sym__concat_operator] = ACTIONS(2740), - [sym__rel_operator] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [sym__capitalized_identifier] = ACTIONS(2740), - [aux_sym_tag_token1] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1364] = { - [sym_attribute] = STATE(1364), - [sym__identifier] = ACTIONS(3093), - [anon_sym_COLON_GT] = ACTIONS(3095), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_RPAREN] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_true] = ACTIONS(3093), - [anon_sym_false] = ACTIONS(3093), - [anon_sym_COLON2] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_DASH_GT] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3095), - [anon_sym_RBRACE] = ACTIONS(3095), - [anon_sym_constraint] = ACTIONS(3093), - [anon_sym_val] = ACTIONS(3093), - [anon_sym_end] = ACTIONS(3093), - [anon_sym_with] = ACTIONS(3093), - [anon_sym_object] = ACTIONS(3093), - [anon_sym_inherit] = ACTIONS(3093), - [anon_sym_method] = ACTIONS(3093), - [anon_sym_initializer] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_then] = ACTIONS(3093), - [anon_sym_else] = ACTIONS(3093), - [anon_sym_do] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_LBRACE_LT] = ACTIONS(3095), - [anon_sym_GT_RBRACE] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [sym_ocamlyacc_value] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3093), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3095), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3095), - [aux_sym_number_token1] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_prefix_operator] = ACTIONS(3095), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [sym_hash_operator] = ACTIONS(3095), - [aux_sym__pow_operator_token1] = ACTIONS(3095), - [anon_sym_lsl] = ACTIONS(3093), - [anon_sym_lsr] = ACTIONS(3093), - [anon_sym_asr] = ACTIONS(3093), - [aux_sym__mult_operator_token1] = ACTIONS(3093), - [anon_sym_mod] = ACTIONS(3093), - [anon_sym_land] = ACTIONS(3093), - [anon_sym_lor] = ACTIONS(3093), - [anon_sym_lxor] = ACTIONS(3093), - [aux_sym__add_operator_token1] = ACTIONS(3093), - [sym__concat_operator] = ACTIONS(3095), - [sym__rel_operator] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [sym__capitalized_identifier] = ACTIONS(3095), - [aux_sym_tag_token1] = ACTIONS(3095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1365] = { - [sym_attribute] = STATE(1365), - [sym__identifier] = ACTIONS(2887), - [anon_sym_COLON_GT] = ACTIONS(2889), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_RPAREN] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_COLON2] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2889), - [anon_sym_DASH_GT] = ACTIONS(2887), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2889), - [anon_sym_RBRACE] = ACTIONS(2889), - [anon_sym_constraint] = ACTIONS(2887), - [anon_sym_val] = ACTIONS(2887), - [anon_sym_end] = ACTIONS(2887), - [anon_sym_with] = ACTIONS(2887), - [anon_sym_object] = ACTIONS(2887), - [anon_sym_inherit] = ACTIONS(2887), - [anon_sym_method] = ACTIONS(2887), - [anon_sym_initializer] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_PIPE] = ACTIONS(2889), - [anon_sym_then] = ACTIONS(2887), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_do] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_LBRACE_LT] = ACTIONS(2889), - [anon_sym_GT_RBRACE] = ACTIONS(2889), - [anon_sym_begin] = ACTIONS(2887), - [sym_ocamlyacc_value] = ACTIONS(2889), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2887), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2889), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2889), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2889), - [aux_sym_number_token1] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_prefix_operator] = ACTIONS(2889), - [anon_sym_PLUS_DOT] = ACTIONS(2887), - [anon_sym_DASH_DOT] = ACTIONS(2887), - [sym_hash_operator] = ACTIONS(2889), - [aux_sym__pow_operator_token1] = ACTIONS(2889), - [anon_sym_lsl] = ACTIONS(2887), - [anon_sym_lsr] = ACTIONS(2887), - [anon_sym_asr] = ACTIONS(2887), - [aux_sym__mult_operator_token1] = ACTIONS(2887), - [anon_sym_mod] = ACTIONS(2887), - [anon_sym_land] = ACTIONS(2887), - [anon_sym_lor] = ACTIONS(2887), - [anon_sym_lxor] = ACTIONS(2887), - [aux_sym__add_operator_token1] = ACTIONS(2887), - [sym__concat_operator] = ACTIONS(2889), - [sym__rel_operator] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [sym__capitalized_identifier] = ACTIONS(2889), - [aux_sym_tag_token1] = ACTIONS(2889), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1366] = { - [sym_attribute] = STATE(1366), - [sym__identifier] = ACTIONS(2935), - [anon_sym_SEMI_SEMI] = ACTIONS(2937), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_and] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_external] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_exception] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_include] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_end] = ACTIONS(2935), - [anon_sym_object] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_LBRACE_LT] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [sym_ocamlyacc_value] = ACTIONS(2937), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2935), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2937), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2937), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2937), - [aux_sym_number_token1] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_prefix_operator] = ACTIONS(2937), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [sym_hash_operator] = ACTIONS(2937), - [aux_sym__pow_operator_token1] = ACTIONS(2937), - [anon_sym_lsl] = ACTIONS(2935), - [anon_sym_lsr] = ACTIONS(2935), - [anon_sym_asr] = ACTIONS(2935), - [aux_sym__mult_operator_token1] = ACTIONS(2935), - [anon_sym_mod] = ACTIONS(2935), - [anon_sym_land] = ACTIONS(2935), - [anon_sym_lor] = ACTIONS(2935), - [anon_sym_lxor] = ACTIONS(2935), - [aux_sym__add_operator_token1] = ACTIONS(2935), - [sym__concat_operator] = ACTIONS(2937), - [sym__rel_operator] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [sym_let_operator] = ACTIONS(2937), - [sym_and_operator] = ACTIONS(2937), - [sym__capitalized_identifier] = ACTIONS(2937), - [aux_sym_directive_token1] = ACTIONS(2935), - [aux_sym_tag_token1] = ACTIONS(2937), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1367] = { - [sym_attribute] = STATE(1367), - [sym__identifier] = ACTIONS(2807), - [anon_sym_COLON_GT] = ACTIONS(2809), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_QMARK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_RPAREN] = ACTIONS(2809), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_COLON_EQ] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_RBRACK] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_COLON2] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_DASH_GT] = ACTIONS(2807), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2809), - [anon_sym_RBRACE] = ACTIONS(2809), - [anon_sym_constraint] = ACTIONS(2807), - [anon_sym_val] = ACTIONS(2807), - [anon_sym_end] = ACTIONS(2807), - [anon_sym_with] = ACTIONS(2807), - [anon_sym_object] = ACTIONS(2807), - [anon_sym_inherit] = ACTIONS(2807), - [anon_sym_method] = ACTIONS(2807), - [anon_sym_initializer] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_PIPE] = ACTIONS(2809), - [anon_sym_then] = ACTIONS(2807), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_do] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_LBRACE_LT] = ACTIONS(2809), - [anon_sym_GT_RBRACE] = ACTIONS(2809), - [anon_sym_begin] = ACTIONS(2807), - [sym_ocamlyacc_value] = ACTIONS(2809), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2807), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2809), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2809), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2809), - [aux_sym_number_token1] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_prefix_operator] = ACTIONS(2809), - [anon_sym_PLUS_DOT] = ACTIONS(2807), - [anon_sym_DASH_DOT] = ACTIONS(2807), - [sym_hash_operator] = ACTIONS(2809), - [aux_sym__pow_operator_token1] = ACTIONS(2809), - [anon_sym_lsl] = ACTIONS(2807), - [anon_sym_lsr] = ACTIONS(2807), - [anon_sym_asr] = ACTIONS(2807), - [aux_sym__mult_operator_token1] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_land] = ACTIONS(2807), - [anon_sym_lor] = ACTIONS(2807), - [anon_sym_lxor] = ACTIONS(2807), - [aux_sym__add_operator_token1] = ACTIONS(2807), - [sym__concat_operator] = ACTIONS(2809), - [sym__rel_operator] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_PIPE_PIPE] = ACTIONS(2807), - [sym__capitalized_identifier] = ACTIONS(2809), - [aux_sym_tag_token1] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1368] = { - [sym_attribute] = STATE(1368), - [sym__identifier] = ACTIONS(2927), - [anon_sym_SEMI_SEMI] = ACTIONS(2929), - [anon_sym_let] = ACTIONS(2927), - [anon_sym_and] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_external] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_exception] = ACTIONS(2927), - [anon_sym_module] = ACTIONS(2927), - [anon_sym_open] = ACTIONS(2927), - [anon_sym_include] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_end] = ACTIONS(2927), - [anon_sym_object] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_PIPE] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_LBRACE_LT] = ACTIONS(2929), - [anon_sym_begin] = ACTIONS(2927), - [sym_ocamlyacc_value] = ACTIONS(2929), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2927), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2929), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2929), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2929), - [aux_sym_number_token1] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_prefix_operator] = ACTIONS(2929), - [anon_sym_PLUS_DOT] = ACTIONS(2927), - [anon_sym_DASH_DOT] = ACTIONS(2927), - [sym_hash_operator] = ACTIONS(2929), - [aux_sym__pow_operator_token1] = ACTIONS(2929), - [anon_sym_lsl] = ACTIONS(2927), - [anon_sym_lsr] = ACTIONS(2927), - [anon_sym_asr] = ACTIONS(2927), - [aux_sym__mult_operator_token1] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2927), - [anon_sym_land] = ACTIONS(2927), - [anon_sym_lor] = ACTIONS(2927), - [anon_sym_lxor] = ACTIONS(2927), - [aux_sym__add_operator_token1] = ACTIONS(2927), - [sym__concat_operator] = ACTIONS(2929), - [sym__rel_operator] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [sym_let_operator] = ACTIONS(2929), - [sym_and_operator] = ACTIONS(2929), - [sym__capitalized_identifier] = ACTIONS(2929), - [aux_sym_directive_token1] = ACTIONS(2927), - [aux_sym_tag_token1] = ACTIONS(2929), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1369] = { - [sym_attribute] = STATE(1369), - [sym__identifier] = ACTIONS(2688), - [anon_sym_COLON_GT] = ACTIONS(2690), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_RPAREN] = ACTIONS(2690), - [anon_sym_COMMA] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_COLON_EQ] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_COLON2] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_DASH_GT] = ACTIONS(2688), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2690), - [anon_sym_RBRACE] = ACTIONS(2690), - [anon_sym_constraint] = ACTIONS(2688), - [anon_sym_val] = ACTIONS(2688), - [anon_sym_end] = ACTIONS(2688), - [anon_sym_with] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), - [anon_sym_inherit] = ACTIONS(2688), - [anon_sym_method] = ACTIONS(2688), - [anon_sym_initializer] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_PIPE] = ACTIONS(2690), - [anon_sym_then] = ACTIONS(2688), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_do] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_LBRACE_LT] = ACTIONS(2690), - [anon_sym_GT_RBRACE] = ACTIONS(2690), - [anon_sym_begin] = ACTIONS(2688), - [sym_ocamlyacc_value] = ACTIONS(2690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2688), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2690), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2690), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2690), - [aux_sym_number_token1] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym_prefix_operator] = ACTIONS(2690), - [anon_sym_PLUS_DOT] = ACTIONS(2688), - [anon_sym_DASH_DOT] = ACTIONS(2688), - [sym_hash_operator] = ACTIONS(2690), - [aux_sym__pow_operator_token1] = ACTIONS(2690), - [anon_sym_lsl] = ACTIONS(2688), - [anon_sym_lsr] = ACTIONS(2688), - [anon_sym_asr] = ACTIONS(2688), - [aux_sym__mult_operator_token1] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_land] = ACTIONS(2688), - [anon_sym_lor] = ACTIONS(2688), - [anon_sym_lxor] = ACTIONS(2688), - [aux_sym__add_operator_token1] = ACTIONS(2688), - [sym__concat_operator] = ACTIONS(2690), - [sym__rel_operator] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [sym__capitalized_identifier] = ACTIONS(2690), - [aux_sym_tag_token1] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1370] = { - [sym_attribute] = STATE(1370), - [sym__identifier] = ACTIONS(2742), - [anon_sym_SEMI_SEMI] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_and] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_QMARK] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_external] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_COLON_EQ] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_exception] = ACTIONS(2742), - [anon_sym_module] = ACTIONS(2742), - [anon_sym_open] = ACTIONS(2742), - [anon_sym_include] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_end] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_in] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_PIPE] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_LBRACE_LT] = ACTIONS(2744), - [anon_sym_begin] = ACTIONS(2742), - [sym_ocamlyacc_value] = ACTIONS(2744), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2742), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2744), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2744), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2744), - [aux_sym_number_token1] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_prefix_operator] = ACTIONS(2744), - [anon_sym_PLUS_DOT] = ACTIONS(2742), - [anon_sym_DASH_DOT] = ACTIONS(2742), - [sym_hash_operator] = ACTIONS(2744), - [aux_sym__pow_operator_token1] = ACTIONS(2744), - [anon_sym_lsl] = ACTIONS(2742), - [anon_sym_lsr] = ACTIONS(2742), - [anon_sym_asr] = ACTIONS(2742), - [aux_sym__mult_operator_token1] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_land] = ACTIONS(2742), - [anon_sym_lor] = ACTIONS(2742), - [anon_sym_lxor] = ACTIONS(2742), - [aux_sym__add_operator_token1] = ACTIONS(2742), - [sym__concat_operator] = ACTIONS(2744), - [sym__rel_operator] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_or] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [sym_let_operator] = ACTIONS(2744), - [sym_and_operator] = ACTIONS(2744), - [sym__capitalized_identifier] = ACTIONS(2744), - [aux_sym_directive_token1] = ACTIONS(2742), - [aux_sym_tag_token1] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1371] = { - [sym_attribute] = STATE(1371), - [sym__identifier] = ACTIONS(2947), - [anon_sym_COLON_GT] = ACTIONS(2949), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_RPAREN] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [anon_sym_COLON2] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2949), - [anon_sym_DASH_GT] = ACTIONS(2947), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_constraint] = ACTIONS(2947), - [anon_sym_val] = ACTIONS(2947), - [anon_sym_end] = ACTIONS(2947), - [anon_sym_with] = ACTIONS(2947), - [anon_sym_object] = ACTIONS(2947), - [anon_sym_inherit] = ACTIONS(2947), - [anon_sym_method] = ACTIONS(2947), - [anon_sym_initializer] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_PIPE] = ACTIONS(2949), - [anon_sym_then] = ACTIONS(2947), - [anon_sym_else] = ACTIONS(2947), - [anon_sym_do] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_LBRACE_LT] = ACTIONS(2949), - [anon_sym_GT_RBRACE] = ACTIONS(2949), - [anon_sym_begin] = ACTIONS(2947), - [sym_ocamlyacc_value] = ACTIONS(2949), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2947), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2949), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2949), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2949), - [aux_sym_number_token1] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_prefix_operator] = ACTIONS(2949), - [anon_sym_PLUS_DOT] = ACTIONS(2947), - [anon_sym_DASH_DOT] = ACTIONS(2947), - [sym_hash_operator] = ACTIONS(2949), - [aux_sym__pow_operator_token1] = ACTIONS(2949), - [anon_sym_lsl] = ACTIONS(2947), - [anon_sym_lsr] = ACTIONS(2947), - [anon_sym_asr] = ACTIONS(2947), - [aux_sym__mult_operator_token1] = ACTIONS(2947), - [anon_sym_mod] = ACTIONS(2947), - [anon_sym_land] = ACTIONS(2947), - [anon_sym_lor] = ACTIONS(2947), - [anon_sym_lxor] = ACTIONS(2947), - [aux_sym__add_operator_token1] = ACTIONS(2947), - [sym__concat_operator] = ACTIONS(2949), - [sym__rel_operator] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [sym__capitalized_identifier] = ACTIONS(2949), - [aux_sym_tag_token1] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1372] = { - [sym_attribute] = STATE(1372), - [sym__identifier] = ACTIONS(3105), - [anon_sym_SEMI_SEMI] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3105), - [anon_sym_and] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_external] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_exception] = ACTIONS(3105), - [anon_sym_module] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_include] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_end] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_PIPE] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_LBRACE_LT] = ACTIONS(3107), - [anon_sym_begin] = ACTIONS(3105), - [sym_ocamlyacc_value] = ACTIONS(3107), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3105), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3107), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3107), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3107), - [aux_sym_number_token1] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_prefix_operator] = ACTIONS(3107), - [anon_sym_PLUS_DOT] = ACTIONS(3105), - [anon_sym_DASH_DOT] = ACTIONS(3105), - [sym_hash_operator] = ACTIONS(3107), - [aux_sym__pow_operator_token1] = ACTIONS(3107), - [anon_sym_lsl] = ACTIONS(3105), - [anon_sym_lsr] = ACTIONS(3105), - [anon_sym_asr] = ACTIONS(3105), - [aux_sym__mult_operator_token1] = ACTIONS(3105), - [anon_sym_mod] = ACTIONS(3105), - [anon_sym_land] = ACTIONS(3105), - [anon_sym_lor] = ACTIONS(3105), - [anon_sym_lxor] = ACTIONS(3105), - [aux_sym__add_operator_token1] = ACTIONS(3105), - [sym__concat_operator] = ACTIONS(3107), - [sym__rel_operator] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [sym_let_operator] = ACTIONS(3107), - [sym_and_operator] = ACTIONS(3107), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_directive_token1] = ACTIONS(3105), - [aux_sym_tag_token1] = ACTIONS(3107), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1373] = { - [sym_attribute] = STATE(1373), - [sym__identifier] = ACTIONS(2819), - [anon_sym_SEMI_SEMI] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2819), - [anon_sym_and] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_external] = ACTIONS(2819), - [anon_sym_type] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_COLON_EQ] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_RBRACK] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_exception] = ACTIONS(2819), - [anon_sym_module] = ACTIONS(2819), - [anon_sym_open] = ACTIONS(2819), - [anon_sym_include] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_end] = ACTIONS(2819), - [anon_sym_object] = ACTIONS(2819), - [anon_sym_in] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_PIPE] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_LBRACE_LT] = ACTIONS(2821), - [anon_sym_begin] = ACTIONS(2819), - [sym_ocamlyacc_value] = ACTIONS(2821), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2819), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2821), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2821), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2821), - [aux_sym_number_token1] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_prefix_operator] = ACTIONS(2821), - [anon_sym_PLUS_DOT] = ACTIONS(2819), - [anon_sym_DASH_DOT] = ACTIONS(2819), - [sym_hash_operator] = ACTIONS(2821), - [aux_sym__pow_operator_token1] = ACTIONS(2821), - [anon_sym_lsl] = ACTIONS(2819), - [anon_sym_lsr] = ACTIONS(2819), - [anon_sym_asr] = ACTIONS(2819), - [aux_sym__mult_operator_token1] = ACTIONS(2819), - [anon_sym_mod] = ACTIONS(2819), - [anon_sym_land] = ACTIONS(2819), - [anon_sym_lor] = ACTIONS(2819), - [anon_sym_lxor] = ACTIONS(2819), - [aux_sym__add_operator_token1] = ACTIONS(2819), - [sym__concat_operator] = ACTIONS(2821), - [sym__rel_operator] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [sym_let_operator] = ACTIONS(2821), - [sym_and_operator] = ACTIONS(2821), - [sym__capitalized_identifier] = ACTIONS(2821), - [aux_sym_directive_token1] = ACTIONS(2819), - [aux_sym_tag_token1] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1374] = { - [sym_attribute] = STATE(1374), - [sym__identifier] = ACTIONS(2935), - [anon_sym_COLON_GT] = ACTIONS(2937), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_RPAREN] = ACTIONS(2937), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_COLON2] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2937), - [anon_sym_DASH_GT] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2937), - [anon_sym_RBRACE] = ACTIONS(2937), - [anon_sym_constraint] = ACTIONS(2935), - [anon_sym_val] = ACTIONS(2935), - [anon_sym_end] = ACTIONS(2935), - [anon_sym_with] = ACTIONS(2935), - [anon_sym_object] = ACTIONS(2935), - [anon_sym_inherit] = ACTIONS(2935), - [anon_sym_method] = ACTIONS(2935), - [anon_sym_initializer] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_then] = ACTIONS(2935), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_do] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_LBRACE_LT] = ACTIONS(2937), - [anon_sym_GT_RBRACE] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [sym_ocamlyacc_value] = ACTIONS(2937), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2935), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2937), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2937), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2937), - [aux_sym_number_token1] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_prefix_operator] = ACTIONS(2937), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [sym_hash_operator] = ACTIONS(2937), - [aux_sym__pow_operator_token1] = ACTIONS(2937), - [anon_sym_lsl] = ACTIONS(2935), - [anon_sym_lsr] = ACTIONS(2935), - [anon_sym_asr] = ACTIONS(2935), - [aux_sym__mult_operator_token1] = ACTIONS(2935), - [anon_sym_mod] = ACTIONS(2935), - [anon_sym_land] = ACTIONS(2935), - [anon_sym_lor] = ACTIONS(2935), - [anon_sym_lxor] = ACTIONS(2935), - [aux_sym__add_operator_token1] = ACTIONS(2935), - [sym__concat_operator] = ACTIONS(2937), - [sym__rel_operator] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [sym__capitalized_identifier] = ACTIONS(2937), - [aux_sym_tag_token1] = ACTIONS(2937), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1375] = { - [sym_attribute] = STATE(1375), - [sym__identifier] = ACTIONS(2873), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_and] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_external] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_COLON_EQ] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_exception] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_include] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_end] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_in] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_PIPE] = ACTIONS(2875), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_LBRACE_LT] = ACTIONS(2875), - [anon_sym_begin] = ACTIONS(2873), - [sym_ocamlyacc_value] = ACTIONS(2875), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2873), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2875), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2875), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2875), - [aux_sym_number_token1] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_prefix_operator] = ACTIONS(2875), - [anon_sym_PLUS_DOT] = ACTIONS(2873), - [anon_sym_DASH_DOT] = ACTIONS(2873), - [sym_hash_operator] = ACTIONS(2875), - [aux_sym__pow_operator_token1] = ACTIONS(2875), - [anon_sym_lsl] = ACTIONS(2873), - [anon_sym_lsr] = ACTIONS(2873), - [anon_sym_asr] = ACTIONS(2873), - [aux_sym__mult_operator_token1] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_land] = ACTIONS(2873), - [anon_sym_lor] = ACTIONS(2873), - [anon_sym_lxor] = ACTIONS(2873), - [aux_sym__add_operator_token1] = ACTIONS(2873), - [sym__concat_operator] = ACTIONS(2875), - [sym__rel_operator] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym_let_operator] = ACTIONS(2875), - [sym_and_operator] = ACTIONS(2875), - [sym__capitalized_identifier] = ACTIONS(2875), - [aux_sym_directive_token1] = ACTIONS(2873), - [aux_sym_tag_token1] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1376] = { - [sym_attribute] = STATE(1376), - [sym__identifier] = ACTIONS(2855), - [anon_sym_SEMI_SEMI] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_and] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_external] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_exception] = ACTIONS(2855), - [anon_sym_module] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_include] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_end] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_in] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_PIPE] = ACTIONS(2857), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_LBRACE_LT] = ACTIONS(2857), - [anon_sym_begin] = ACTIONS(2855), - [sym_ocamlyacc_value] = ACTIONS(2857), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2855), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2857), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2857), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2857), - [aux_sym_number_token1] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_prefix_operator] = ACTIONS(2857), - [anon_sym_PLUS_DOT] = ACTIONS(2855), - [anon_sym_DASH_DOT] = ACTIONS(2855), - [sym_hash_operator] = ACTIONS(2857), - [aux_sym__pow_operator_token1] = ACTIONS(2857), - [anon_sym_lsl] = ACTIONS(2855), - [anon_sym_lsr] = ACTIONS(2855), - [anon_sym_asr] = ACTIONS(2855), - [aux_sym__mult_operator_token1] = ACTIONS(2855), - [anon_sym_mod] = ACTIONS(2855), - [anon_sym_land] = ACTIONS(2855), - [anon_sym_lor] = ACTIONS(2855), - [anon_sym_lxor] = ACTIONS(2855), - [aux_sym__add_operator_token1] = ACTIONS(2855), - [sym__concat_operator] = ACTIONS(2857), - [sym__rel_operator] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [sym_let_operator] = ACTIONS(2857), - [sym_and_operator] = ACTIONS(2857), - [sym__capitalized_identifier] = ACTIONS(2857), - [aux_sym_directive_token1] = ACTIONS(2855), - [aux_sym_tag_token1] = ACTIONS(2857), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1377] = { - [sym_attribute] = STATE(1377), - [sym__identifier] = ACTIONS(2951), - [anon_sym_SEMI_SEMI] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_and] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_external] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_exception] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_open] = ACTIONS(2951), - [anon_sym_include] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_end] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_LBRACE_LT] = ACTIONS(2953), - [anon_sym_begin] = ACTIONS(2951), - [sym_ocamlyacc_value] = ACTIONS(2953), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2951), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2953), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2953), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2953), - [aux_sym_number_token1] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_prefix_operator] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2951), - [anon_sym_DASH_DOT] = ACTIONS(2951), - [sym_hash_operator] = ACTIONS(2953), - [aux_sym__pow_operator_token1] = ACTIONS(2953), - [anon_sym_lsl] = ACTIONS(2951), - [anon_sym_lsr] = ACTIONS(2951), - [anon_sym_asr] = ACTIONS(2951), - [aux_sym__mult_operator_token1] = ACTIONS(2951), - [anon_sym_mod] = ACTIONS(2951), - [anon_sym_land] = ACTIONS(2951), - [anon_sym_lor] = ACTIONS(2951), - [anon_sym_lxor] = ACTIONS(2951), - [aux_sym__add_operator_token1] = ACTIONS(2951), - [sym__concat_operator] = ACTIONS(2953), - [sym__rel_operator] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [sym_let_operator] = ACTIONS(2953), - [sym_and_operator] = ACTIONS(2953), - [sym__capitalized_identifier] = ACTIONS(2953), - [aux_sym_directive_token1] = ACTIONS(2951), - [aux_sym_tag_token1] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1378] = { - [sym_attribute] = STATE(1378), - [sym__identifier] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2961), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_and] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_external] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_include] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_end] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2961), - [anon_sym_LBRACK_PIPE] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_LBRACE_LT] = ACTIONS(2961), - [anon_sym_begin] = ACTIONS(2959), - [sym_ocamlyacc_value] = ACTIONS(2961), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2959), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2961), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2961), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2961), - [aux_sym_number_token1] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_prefix_operator] = ACTIONS(2961), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [sym_hash_operator] = ACTIONS(2961), - [aux_sym__pow_operator_token1] = ACTIONS(2961), - [anon_sym_lsl] = ACTIONS(2959), - [anon_sym_lsr] = ACTIONS(2959), - [anon_sym_asr] = ACTIONS(2959), - [aux_sym__mult_operator_token1] = ACTIONS(2959), - [anon_sym_mod] = ACTIONS(2959), - [anon_sym_land] = ACTIONS(2959), - [anon_sym_lor] = ACTIONS(2959), - [anon_sym_lxor] = ACTIONS(2959), - [aux_sym__add_operator_token1] = ACTIONS(2959), - [sym__concat_operator] = ACTIONS(2961), - [sym__rel_operator] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym_let_operator] = ACTIONS(2961), - [sym_and_operator] = ACTIONS(2961), - [sym__capitalized_identifier] = ACTIONS(2961), - [aux_sym_directive_token1] = ACTIONS(2959), - [aux_sym_tag_token1] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1379] = { - [sym_attribute] = STATE(1379), - [sym__identifier] = ACTIONS(2644), - [anon_sym_COLON_GT] = ACTIONS(2646), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_QMARK] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_RPAREN] = ACTIONS(2646), - [anon_sym_COMMA] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_COLON_EQ] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_COLON2] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_DASH_GT] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2646), - [anon_sym_RBRACE] = ACTIONS(2646), - [anon_sym_constraint] = ACTIONS(2644), - [anon_sym_val] = ACTIONS(2644), - [anon_sym_end] = ACTIONS(2644), - [anon_sym_with] = ACTIONS(2644), - [anon_sym_object] = ACTIONS(2644), - [anon_sym_inherit] = ACTIONS(2644), - [anon_sym_method] = ACTIONS(2644), - [anon_sym_initializer] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_LBRACK_PIPE] = ACTIONS(2646), - [anon_sym_then] = ACTIONS(2644), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_do] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_LBRACE_LT] = ACTIONS(2646), - [anon_sym_GT_RBRACE] = ACTIONS(2646), - [anon_sym_begin] = ACTIONS(2644), - [sym_ocamlyacc_value] = ACTIONS(2646), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2644), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2646), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2646), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2646), - [aux_sym_number_token1] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2646), - [sym_prefix_operator] = ACTIONS(2646), - [anon_sym_PLUS_DOT] = ACTIONS(2644), - [anon_sym_DASH_DOT] = ACTIONS(2644), - [sym_hash_operator] = ACTIONS(2646), - [aux_sym__pow_operator_token1] = ACTIONS(2646), - [anon_sym_lsl] = ACTIONS(2644), - [anon_sym_lsr] = ACTIONS(2644), - [anon_sym_asr] = ACTIONS(2644), - [aux_sym__mult_operator_token1] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_land] = ACTIONS(2644), - [anon_sym_lor] = ACTIONS(2644), - [anon_sym_lxor] = ACTIONS(2644), - [aux_sym__add_operator_token1] = ACTIONS(2644), - [sym__concat_operator] = ACTIONS(2646), - [sym__rel_operator] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_or] = ACTIONS(2644), - [anon_sym_PIPE_PIPE] = ACTIONS(2644), - [sym__capitalized_identifier] = ACTIONS(2646), - [aux_sym_tag_token1] = ACTIONS(2646), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1380] = { - [sym_attribute] = STATE(1380), - [sym__identifier] = ACTIONS(2985), - [anon_sym_SEMI_SEMI] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_and] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_external] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_exception] = ACTIONS(2985), - [anon_sym_module] = ACTIONS(2985), - [anon_sym_open] = ACTIONS(2985), - [anon_sym_include] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_end] = ACTIONS(2985), - [anon_sym_object] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_PIPE] = ACTIONS(2987), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_LBRACE_LT] = ACTIONS(2987), - [anon_sym_begin] = ACTIONS(2985), - [sym_ocamlyacc_value] = ACTIONS(2987), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2985), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2987), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2987), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2987), - [aux_sym_number_token1] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_prefix_operator] = ACTIONS(2987), - [anon_sym_PLUS_DOT] = ACTIONS(2985), - [anon_sym_DASH_DOT] = ACTIONS(2985), - [sym_hash_operator] = ACTIONS(2987), - [aux_sym__pow_operator_token1] = ACTIONS(2987), - [anon_sym_lsl] = ACTIONS(2985), - [anon_sym_lsr] = ACTIONS(2985), - [anon_sym_asr] = ACTIONS(2985), - [aux_sym__mult_operator_token1] = ACTIONS(2985), - [anon_sym_mod] = ACTIONS(2985), - [anon_sym_land] = ACTIONS(2985), - [anon_sym_lor] = ACTIONS(2985), - [anon_sym_lxor] = ACTIONS(2985), - [aux_sym__add_operator_token1] = ACTIONS(2985), - [sym__concat_operator] = ACTIONS(2987), - [sym__rel_operator] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [sym_let_operator] = ACTIONS(2987), - [sym_and_operator] = ACTIONS(2987), - [sym__capitalized_identifier] = ACTIONS(2987), - [aux_sym_directive_token1] = ACTIONS(2985), - [aux_sym_tag_token1] = ACTIONS(2987), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1381] = { - [sym_attribute] = STATE(1381), - [sym__identifier] = ACTIONS(2931), - [anon_sym_COLON_GT] = ACTIONS(2933), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_RPAREN] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [anon_sym_COLON2] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2933), - [anon_sym_DASH_GT] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2933), - [anon_sym_RBRACE] = ACTIONS(2933), - [anon_sym_constraint] = ACTIONS(2931), - [anon_sym_val] = ACTIONS(2931), - [anon_sym_end] = ACTIONS(2931), - [anon_sym_with] = ACTIONS(2931), - [anon_sym_object] = ACTIONS(2931), - [anon_sym_inherit] = ACTIONS(2931), - [anon_sym_method] = ACTIONS(2931), - [anon_sym_initializer] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_PIPE] = ACTIONS(2933), - [anon_sym_then] = ACTIONS(2931), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_do] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_LBRACE_LT] = ACTIONS(2933), - [anon_sym_GT_RBRACE] = ACTIONS(2933), - [anon_sym_begin] = ACTIONS(2931), - [sym_ocamlyacc_value] = ACTIONS(2933), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2931), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2933), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2933), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2933), - [aux_sym_number_token1] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_prefix_operator] = ACTIONS(2933), - [anon_sym_PLUS_DOT] = ACTIONS(2931), - [anon_sym_DASH_DOT] = ACTIONS(2931), - [sym_hash_operator] = ACTIONS(2933), - [aux_sym__pow_operator_token1] = ACTIONS(2933), - [anon_sym_lsl] = ACTIONS(2931), - [anon_sym_lsr] = ACTIONS(2931), - [anon_sym_asr] = ACTIONS(2931), - [aux_sym__mult_operator_token1] = ACTIONS(2931), - [anon_sym_mod] = ACTIONS(2931), - [anon_sym_land] = ACTIONS(2931), - [anon_sym_lor] = ACTIONS(2931), - [anon_sym_lxor] = ACTIONS(2931), - [aux_sym__add_operator_token1] = ACTIONS(2931), - [sym__concat_operator] = ACTIONS(2933), - [sym__rel_operator] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [sym__capitalized_identifier] = ACTIONS(2933), - [aux_sym_tag_token1] = ACTIONS(2933), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1382] = { - [sym_attribute] = STATE(1382), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3075), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_and] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_true] = ACTIONS(3073), - [anon_sym_false] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_exception] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_include] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_LBRACE_LT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [sym_ocamlyacc_value] = ACTIONS(3075), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3073), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3075), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3075), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3075), - [aux_sym_number_token1] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_prefix_operator] = ACTIONS(3075), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [sym_hash_operator] = ACTIONS(3075), - [aux_sym__pow_operator_token1] = ACTIONS(3075), - [anon_sym_lsl] = ACTIONS(3073), - [anon_sym_lsr] = ACTIONS(3073), - [anon_sym_asr] = ACTIONS(3073), - [aux_sym__mult_operator_token1] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3073), - [anon_sym_land] = ACTIONS(3073), - [anon_sym_lor] = ACTIONS(3073), - [anon_sym_lxor] = ACTIONS(3073), - [aux_sym__add_operator_token1] = ACTIONS(3073), - [sym__concat_operator] = ACTIONS(3075), - [sym__rel_operator] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [sym_let_operator] = ACTIONS(3075), - [sym_and_operator] = ACTIONS(3075), - [sym__capitalized_identifier] = ACTIONS(3075), - [aux_sym_directive_token1] = ACTIONS(3073), - [aux_sym_tag_token1] = ACTIONS(3075), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1383] = { - [sym_attribute] = STATE(1383), - [sym__identifier] = ACTIONS(2887), - [anon_sym_SEMI_SEMI] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_and] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_external] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_exception] = ACTIONS(2887), - [anon_sym_module] = ACTIONS(2887), - [anon_sym_open] = ACTIONS(2887), - [anon_sym_include] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_end] = ACTIONS(2887), - [anon_sym_object] = ACTIONS(2887), - [anon_sym_in] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_PIPE] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_LBRACE_LT] = ACTIONS(2889), - [anon_sym_begin] = ACTIONS(2887), - [sym_ocamlyacc_value] = ACTIONS(2889), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2887), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2889), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2889), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2889), - [aux_sym_number_token1] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_prefix_operator] = ACTIONS(2889), - [anon_sym_PLUS_DOT] = ACTIONS(2887), - [anon_sym_DASH_DOT] = ACTIONS(2887), - [sym_hash_operator] = ACTIONS(2889), - [aux_sym__pow_operator_token1] = ACTIONS(2889), - [anon_sym_lsl] = ACTIONS(2887), - [anon_sym_lsr] = ACTIONS(2887), - [anon_sym_asr] = ACTIONS(2887), - [aux_sym__mult_operator_token1] = ACTIONS(2887), - [anon_sym_mod] = ACTIONS(2887), - [anon_sym_land] = ACTIONS(2887), - [anon_sym_lor] = ACTIONS(2887), - [anon_sym_lxor] = ACTIONS(2887), - [aux_sym__add_operator_token1] = ACTIONS(2887), - [sym__concat_operator] = ACTIONS(2889), - [sym__rel_operator] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [sym_let_operator] = ACTIONS(2889), - [sym_and_operator] = ACTIONS(2889), - [sym__capitalized_identifier] = ACTIONS(2889), - [aux_sym_directive_token1] = ACTIONS(2887), - [aux_sym_tag_token1] = ACTIONS(2889), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1384] = { - [sym_attribute] = STATE(1384), - [sym__identifier] = ACTIONS(3097), - [anon_sym_COLON_GT] = ACTIONS(3099), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_RPAREN] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_COLON2] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_DASH_GT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3099), - [anon_sym_RBRACE] = ACTIONS(3099), - [anon_sym_constraint] = ACTIONS(3097), - [anon_sym_val] = ACTIONS(3097), - [anon_sym_end] = ACTIONS(3097), - [anon_sym_with] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_inherit] = ACTIONS(3097), - [anon_sym_method] = ACTIONS(3097), - [anon_sym_initializer] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3099), - [anon_sym_then] = ACTIONS(3097), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_do] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_LBRACE_LT] = ACTIONS(3099), - [anon_sym_GT_RBRACE] = ACTIONS(3099), - [anon_sym_begin] = ACTIONS(3097), - [sym_ocamlyacc_value] = ACTIONS(3099), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3099), - [aux_sym_number_token1] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_prefix_operator] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [sym_hash_operator] = ACTIONS(3099), - [aux_sym__pow_operator_token1] = ACTIONS(3099), - [anon_sym_lsl] = ACTIONS(3097), - [anon_sym_lsr] = ACTIONS(3097), - [anon_sym_asr] = ACTIONS(3097), - [aux_sym__mult_operator_token1] = ACTIONS(3097), - [anon_sym_mod] = ACTIONS(3097), - [anon_sym_land] = ACTIONS(3097), - [anon_sym_lor] = ACTIONS(3097), - [anon_sym_lxor] = ACTIONS(3097), - [aux_sym__add_operator_token1] = ACTIONS(3097), - [sym__concat_operator] = ACTIONS(3099), - [sym__rel_operator] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [sym__capitalized_identifier] = ACTIONS(3099), - [aux_sym_tag_token1] = ACTIONS(3099), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1385] = { - [sym_attribute] = STATE(1385), - [sym__identifier] = ACTIONS(2939), - [anon_sym_SEMI_SEMI] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2939), - [anon_sym_and] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_external] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_exception] = ACTIONS(2939), - [anon_sym_module] = ACTIONS(2939), - [anon_sym_open] = ACTIONS(2939), - [anon_sym_include] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_end] = ACTIONS(2939), - [anon_sym_object] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_LBRACE_LT] = ACTIONS(2941), - [anon_sym_begin] = ACTIONS(2939), - [sym_ocamlyacc_value] = ACTIONS(2941), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2939), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2941), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2941), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2941), - [aux_sym_number_token1] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_prefix_operator] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2939), - [anon_sym_DASH_DOT] = ACTIONS(2939), - [sym_hash_operator] = ACTIONS(2941), - [aux_sym__pow_operator_token1] = ACTIONS(2941), - [anon_sym_lsl] = ACTIONS(2939), - [anon_sym_lsr] = ACTIONS(2939), - [anon_sym_asr] = ACTIONS(2939), - [aux_sym__mult_operator_token1] = ACTIONS(2939), - [anon_sym_mod] = ACTIONS(2939), - [anon_sym_land] = ACTIONS(2939), - [anon_sym_lor] = ACTIONS(2939), - [anon_sym_lxor] = ACTIONS(2939), - [aux_sym__add_operator_token1] = ACTIONS(2939), - [sym__concat_operator] = ACTIONS(2941), - [sym__rel_operator] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [sym_let_operator] = ACTIONS(2941), - [sym_and_operator] = ACTIONS(2941), - [sym__capitalized_identifier] = ACTIONS(2941), - [aux_sym_directive_token1] = ACTIONS(2939), - [aux_sym_tag_token1] = ACTIONS(2941), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1386] = { - [sym_attribute] = STATE(1386), - [sym__identifier] = ACTIONS(2865), - [anon_sym_SEMI_SEMI] = ACTIONS(2867), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_and] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_external] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_exception] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(2865), - [anon_sym_open] = ACTIONS(2865), - [anon_sym_include] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2865), - [anon_sym_end] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_in] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_LBRACK_PIPE] = ACTIONS(2867), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_LBRACE_LT] = ACTIONS(2867), - [anon_sym_begin] = ACTIONS(2865), - [sym_ocamlyacc_value] = ACTIONS(2867), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2865), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2867), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2867), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2867), - [aux_sym_number_token1] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [sym_prefix_operator] = ACTIONS(2867), - [anon_sym_PLUS_DOT] = ACTIONS(2865), - [anon_sym_DASH_DOT] = ACTIONS(2865), - [sym_hash_operator] = ACTIONS(2867), - [aux_sym__pow_operator_token1] = ACTIONS(2867), - [anon_sym_lsl] = ACTIONS(2865), - [anon_sym_lsr] = ACTIONS(2865), - [anon_sym_asr] = ACTIONS(2865), - [aux_sym__mult_operator_token1] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_land] = ACTIONS(2865), - [anon_sym_lor] = ACTIONS(2865), - [anon_sym_lxor] = ACTIONS(2865), - [aux_sym__add_operator_token1] = ACTIONS(2865), - [sym__concat_operator] = ACTIONS(2867), - [sym__rel_operator] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [sym_let_operator] = ACTIONS(2867), - [sym_and_operator] = ACTIONS(2867), - [sym__capitalized_identifier] = ACTIONS(2867), - [aux_sym_directive_token1] = ACTIONS(2865), - [aux_sym_tag_token1] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1387] = { - [sym_attribute] = STATE(1387), - [sym__identifier] = ACTIONS(2658), - [anon_sym_SEMI_SEMI] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_and] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_external] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_COMMA] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_COLON_EQ] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_exception] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_open] = ACTIONS(2658), - [anon_sym_include] = ACTIONS(2658), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_in] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_LBRACE_LT] = ACTIONS(2660), - [anon_sym_begin] = ACTIONS(2658), - [sym_ocamlyacc_value] = ACTIONS(2660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2660), - [aux_sym_number_token1] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [sym_prefix_operator] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2658), - [anon_sym_DASH_DOT] = ACTIONS(2658), - [sym_hash_operator] = ACTIONS(2660), - [aux_sym__pow_operator_token1] = ACTIONS(2660), - [anon_sym_lsl] = ACTIONS(2658), - [anon_sym_lsr] = ACTIONS(2658), - [anon_sym_asr] = ACTIONS(2658), - [aux_sym__mult_operator_token1] = ACTIONS(2658), - [anon_sym_mod] = ACTIONS(2658), - [anon_sym_land] = ACTIONS(2658), - [anon_sym_lor] = ACTIONS(2658), - [anon_sym_lxor] = ACTIONS(2658), - [aux_sym__add_operator_token1] = ACTIONS(2658), - [sym__concat_operator] = ACTIONS(2660), - [sym__rel_operator] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [sym_let_operator] = ACTIONS(2660), - [sym_and_operator] = ACTIONS(2660), - [sym__capitalized_identifier] = ACTIONS(2660), - [aux_sym_directive_token1] = ACTIONS(2658), - [aux_sym_tag_token1] = ACTIONS(2660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1388] = { - [sym_attribute] = STATE(1388), - [sym__identifier] = ACTIONS(2650), - [anon_sym_SEMI_SEMI] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_and] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_external] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_COMMA] = ACTIONS(2652), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_COLON_EQ] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_RBRACK] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(2652), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2650), - [anon_sym_exception] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_open] = ACTIONS(2650), - [anon_sym_include] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_end] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_in] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2652), - [anon_sym_LBRACK_PIPE] = ACTIONS(2652), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_LBRACE_LT] = ACTIONS(2652), - [anon_sym_begin] = ACTIONS(2650), - [sym_ocamlyacc_value] = ACTIONS(2652), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2650), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2652), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2652), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2652), - [aux_sym_number_token1] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [sym_prefix_operator] = ACTIONS(2652), - [anon_sym_PLUS_DOT] = ACTIONS(2650), - [anon_sym_DASH_DOT] = ACTIONS(2650), - [sym_hash_operator] = ACTIONS(2652), - [aux_sym__pow_operator_token1] = ACTIONS(2652), - [anon_sym_lsl] = ACTIONS(2650), - [anon_sym_lsr] = ACTIONS(2650), - [anon_sym_asr] = ACTIONS(2650), - [aux_sym__mult_operator_token1] = ACTIONS(2650), - [anon_sym_mod] = ACTIONS(2650), - [anon_sym_land] = ACTIONS(2650), - [anon_sym_lor] = ACTIONS(2650), - [anon_sym_lxor] = ACTIONS(2650), - [aux_sym__add_operator_token1] = ACTIONS(2650), - [sym__concat_operator] = ACTIONS(2652), - [sym__rel_operator] = ACTIONS(2650), - [anon_sym_AMP_AMP] = ACTIONS(2650), - [anon_sym_or] = ACTIONS(2650), - [anon_sym_PIPE_PIPE] = ACTIONS(2650), - [sym_let_operator] = ACTIONS(2652), - [sym_and_operator] = ACTIONS(2652), - [sym__capitalized_identifier] = ACTIONS(2652), - [aux_sym_directive_token1] = ACTIONS(2650), - [aux_sym_tag_token1] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1389] = { - [sym_attribute] = STATE(1389), - [sym__identifier] = ACTIONS(3005), - [anon_sym_COLON_GT] = ACTIONS(3007), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_RPAREN] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_COLON2] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_DASH_GT] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3007), - [anon_sym_RBRACE] = ACTIONS(3007), - [anon_sym_constraint] = ACTIONS(3005), - [anon_sym_val] = ACTIONS(3005), - [anon_sym_end] = ACTIONS(3005), - [anon_sym_with] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_inherit] = ACTIONS(3005), - [anon_sym_method] = ACTIONS(3005), - [anon_sym_initializer] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3007), - [anon_sym_then] = ACTIONS(3005), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_do] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_LBRACE_LT] = ACTIONS(3007), - [anon_sym_GT_RBRACE] = ACTIONS(3007), - [anon_sym_begin] = ACTIONS(3005), - [sym_ocamlyacc_value] = ACTIONS(3007), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3005), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3007), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3007), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3007), - [aux_sym_number_token1] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [sym_prefix_operator] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [sym_hash_operator] = ACTIONS(3007), - [aux_sym__pow_operator_token1] = ACTIONS(3007), - [anon_sym_lsl] = ACTIONS(3005), - [anon_sym_lsr] = ACTIONS(3005), - [anon_sym_asr] = ACTIONS(3005), - [aux_sym__mult_operator_token1] = ACTIONS(3005), - [anon_sym_mod] = ACTIONS(3005), - [anon_sym_land] = ACTIONS(3005), - [anon_sym_lor] = ACTIONS(3005), - [anon_sym_lxor] = ACTIONS(3005), - [aux_sym__add_operator_token1] = ACTIONS(3005), - [sym__concat_operator] = ACTIONS(3007), - [sym__rel_operator] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [sym__capitalized_identifier] = ACTIONS(3007), - [aux_sym_tag_token1] = ACTIONS(3007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1390] = { - [sym_attribute] = STATE(1390), - [sym__identifier] = ACTIONS(2742), - [anon_sym_COLON_GT] = ACTIONS(2744), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_QMARK] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_RPAREN] = ACTIONS(2744), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_COLON_EQ] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_COLON2] = ACTIONS(2742), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_DASH_GT] = ACTIONS(2742), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2744), - [anon_sym_RBRACE] = ACTIONS(2744), - [anon_sym_constraint] = ACTIONS(2742), - [anon_sym_val] = ACTIONS(2742), - [anon_sym_end] = ACTIONS(2742), - [anon_sym_with] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_inherit] = ACTIONS(2742), - [anon_sym_method] = ACTIONS(2742), - [anon_sym_initializer] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_PIPE] = ACTIONS(2744), - [anon_sym_then] = ACTIONS(2742), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_do] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_LBRACE_LT] = ACTIONS(2744), - [anon_sym_GT_RBRACE] = ACTIONS(2744), - [anon_sym_begin] = ACTIONS(2742), - [sym_ocamlyacc_value] = ACTIONS(2744), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2742), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2744), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2744), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2744), - [aux_sym_number_token1] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_prefix_operator] = ACTIONS(2744), - [anon_sym_PLUS_DOT] = ACTIONS(2742), - [anon_sym_DASH_DOT] = ACTIONS(2742), - [sym_hash_operator] = ACTIONS(2744), - [aux_sym__pow_operator_token1] = ACTIONS(2744), - [anon_sym_lsl] = ACTIONS(2742), - [anon_sym_lsr] = ACTIONS(2742), - [anon_sym_asr] = ACTIONS(2742), - [aux_sym__mult_operator_token1] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_land] = ACTIONS(2742), - [anon_sym_lor] = ACTIONS(2742), - [anon_sym_lxor] = ACTIONS(2742), - [aux_sym__add_operator_token1] = ACTIONS(2742), - [sym__concat_operator] = ACTIONS(2744), - [sym__rel_operator] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_or] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [sym__capitalized_identifier] = ACTIONS(2744), - [aux_sym_tag_token1] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1391] = { - [sym_attribute] = STATE(1391), - [sym__identifier] = ACTIONS(2734), - [anon_sym_COLON_GT] = ACTIONS(2736), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_RPAREN] = ACTIONS(2736), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_COLON2] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_DASH_GT] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2736), - [anon_sym_RBRACE] = ACTIONS(2736), - [anon_sym_constraint] = ACTIONS(2734), - [anon_sym_val] = ACTIONS(2734), - [anon_sym_end] = ACTIONS(2734), - [anon_sym_with] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_inherit] = ACTIONS(2734), - [anon_sym_method] = ACTIONS(2734), - [anon_sym_initializer] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_PIPE] = ACTIONS(2736), - [anon_sym_then] = ACTIONS(2734), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_do] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_LBRACE_LT] = ACTIONS(2736), - [anon_sym_GT_RBRACE] = ACTIONS(2736), - [anon_sym_begin] = ACTIONS(2734), - [sym_ocamlyacc_value] = ACTIONS(2736), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2734), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2736), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2736), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2736), - [aux_sym_number_token1] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_prefix_operator] = ACTIONS(2736), - [anon_sym_PLUS_DOT] = ACTIONS(2734), - [anon_sym_DASH_DOT] = ACTIONS(2734), - [sym_hash_operator] = ACTIONS(2736), - [aux_sym__pow_operator_token1] = ACTIONS(2736), - [anon_sym_lsl] = ACTIONS(2734), - [anon_sym_lsr] = ACTIONS(2734), - [anon_sym_asr] = ACTIONS(2734), - [aux_sym__mult_operator_token1] = ACTIONS(2734), - [anon_sym_mod] = ACTIONS(2734), - [anon_sym_land] = ACTIONS(2734), - [anon_sym_lor] = ACTIONS(2734), - [anon_sym_lxor] = ACTIONS(2734), - [aux_sym__add_operator_token1] = ACTIONS(2734), - [sym__concat_operator] = ACTIONS(2736), - [sym__rel_operator] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [sym__capitalized_identifier] = ACTIONS(2736), - [aux_sym_tag_token1] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1392] = { - [sym_attribute] = STATE(1392), - [sym__identifier] = ACTIONS(3077), - [anon_sym_SEMI_SEMI] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3077), - [anon_sym_and] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_true] = ACTIONS(3077), - [anon_sym_false] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_exception] = ACTIONS(3077), - [anon_sym_module] = ACTIONS(3077), - [anon_sym_open] = ACTIONS(3077), - [anon_sym_include] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_end] = ACTIONS(3077), - [anon_sym_object] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3079), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_LBRACE_LT] = ACTIONS(3079), - [anon_sym_begin] = ACTIONS(3077), - [sym_ocamlyacc_value] = ACTIONS(3079), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3077), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3079), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3079), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3079), - [aux_sym_number_token1] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_prefix_operator] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3077), - [anon_sym_DASH_DOT] = ACTIONS(3077), - [sym_hash_operator] = ACTIONS(3079), - [aux_sym__pow_operator_token1] = ACTIONS(3079), - [anon_sym_lsl] = ACTIONS(3077), - [anon_sym_lsr] = ACTIONS(3077), - [anon_sym_asr] = ACTIONS(3077), - [aux_sym__mult_operator_token1] = ACTIONS(3077), - [anon_sym_mod] = ACTIONS(3077), - [anon_sym_land] = ACTIONS(3077), - [anon_sym_lor] = ACTIONS(3077), - [anon_sym_lxor] = ACTIONS(3077), - [aux_sym__add_operator_token1] = ACTIONS(3077), - [sym__concat_operator] = ACTIONS(3079), - [sym__rel_operator] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [sym_let_operator] = ACTIONS(3079), - [sym_and_operator] = ACTIONS(3079), - [sym__capitalized_identifier] = ACTIONS(3079), - [aux_sym_directive_token1] = ACTIONS(3077), - [aux_sym_tag_token1] = ACTIONS(3079), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1393] = { - [sym_attribute] = STATE(1393), - [sym__identifier] = ACTIONS(2923), - [anon_sym_COLON_GT] = ACTIONS(2925), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_RPAREN] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_COLON2] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_DASH_GT] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2925), - [anon_sym_RBRACE] = ACTIONS(2925), - [anon_sym_constraint] = ACTIONS(2923), - [anon_sym_val] = ACTIONS(2923), - [anon_sym_end] = ACTIONS(2923), - [anon_sym_with] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_inherit] = ACTIONS(2923), - [anon_sym_method] = ACTIONS(2923), - [anon_sym_initializer] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_PIPE] = ACTIONS(2925), - [anon_sym_then] = ACTIONS(2923), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_do] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_LBRACE_LT] = ACTIONS(2925), - [anon_sym_GT_RBRACE] = ACTIONS(2925), - [anon_sym_begin] = ACTIONS(2923), - [sym_ocamlyacc_value] = ACTIONS(2925), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2923), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2925), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2925), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2925), - [aux_sym_number_token1] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_prefix_operator] = ACTIONS(2925), - [anon_sym_PLUS_DOT] = ACTIONS(2923), - [anon_sym_DASH_DOT] = ACTIONS(2923), - [sym_hash_operator] = ACTIONS(2925), - [aux_sym__pow_operator_token1] = ACTIONS(2925), - [anon_sym_lsl] = ACTIONS(2923), - [anon_sym_lsr] = ACTIONS(2923), - [anon_sym_asr] = ACTIONS(2923), - [aux_sym__mult_operator_token1] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2923), - [anon_sym_land] = ACTIONS(2923), - [anon_sym_lor] = ACTIONS(2923), - [anon_sym_lxor] = ACTIONS(2923), - [aux_sym__add_operator_token1] = ACTIONS(2923), - [sym__concat_operator] = ACTIONS(2925), - [sym__rel_operator] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [sym__capitalized_identifier] = ACTIONS(2925), - [aux_sym_tag_token1] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1394] = { - [sym_attribute] = STATE(1394), - [sym__identifier] = ACTIONS(2831), - [anon_sym_COLON_GT] = ACTIONS(2833), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_RPAREN] = ACTIONS(2833), - [anon_sym_COMMA] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [anon_sym_COLON2] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_DASH_GT] = ACTIONS(2831), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2833), - [anon_sym_RBRACE] = ACTIONS(2833), - [anon_sym_constraint] = ACTIONS(2831), - [anon_sym_val] = ACTIONS(2831), - [anon_sym_end] = ACTIONS(2831), - [anon_sym_with] = ACTIONS(2831), - [anon_sym_object] = ACTIONS(2831), - [anon_sym_inherit] = ACTIONS(2831), - [anon_sym_method] = ACTIONS(2831), - [anon_sym_initializer] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_PIPE] = ACTIONS(2833), - [anon_sym_then] = ACTIONS(2831), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_do] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_LBRACE_LT] = ACTIONS(2833), - [anon_sym_GT_RBRACE] = ACTIONS(2833), - [anon_sym_begin] = ACTIONS(2831), - [sym_ocamlyacc_value] = ACTIONS(2833), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2831), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2833), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2833), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2833), - [aux_sym_number_token1] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_prefix_operator] = ACTIONS(2833), - [anon_sym_PLUS_DOT] = ACTIONS(2831), - [anon_sym_DASH_DOT] = ACTIONS(2831), - [sym_hash_operator] = ACTIONS(2833), - [aux_sym__pow_operator_token1] = ACTIONS(2833), - [anon_sym_lsl] = ACTIONS(2831), - [anon_sym_lsr] = ACTIONS(2831), - [anon_sym_asr] = ACTIONS(2831), - [aux_sym__mult_operator_token1] = ACTIONS(2831), - [anon_sym_mod] = ACTIONS(2831), - [anon_sym_land] = ACTIONS(2831), - [anon_sym_lor] = ACTIONS(2831), - [anon_sym_lxor] = ACTIONS(2831), - [aux_sym__add_operator_token1] = ACTIONS(2831), - [sym__concat_operator] = ACTIONS(2833), - [sym__rel_operator] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [sym__capitalized_identifier] = ACTIONS(2833), - [aux_sym_tag_token1] = ACTIONS(2833), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1395] = { - [sym_attribute] = STATE(1395), - [sym__identifier] = ACTIONS(2835), - [anon_sym_SEMI_SEMI] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_and] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_external] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_exception] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_open] = ACTIONS(2835), - [anon_sym_include] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_in] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym_let_operator] = ACTIONS(2837), - [sym_and_operator] = ACTIONS(2837), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_directive_token1] = ACTIONS(2835), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1396] = { - [sym_attribute] = STATE(1396), - [sym__identifier] = ACTIONS(2688), - [anon_sym_SEMI_SEMI] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_and] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_external] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_COLON_EQ] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_exception] = ACTIONS(2688), - [anon_sym_module] = ACTIONS(2688), - [anon_sym_open] = ACTIONS(2688), - [anon_sym_include] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_end] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), - [anon_sym_in] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_PIPE] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_LBRACE_LT] = ACTIONS(2690), - [anon_sym_begin] = ACTIONS(2688), - [sym_ocamlyacc_value] = ACTIONS(2690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2688), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2690), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2690), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2690), - [aux_sym_number_token1] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym_prefix_operator] = ACTIONS(2690), - [anon_sym_PLUS_DOT] = ACTIONS(2688), - [anon_sym_DASH_DOT] = ACTIONS(2688), - [sym_hash_operator] = ACTIONS(2690), - [aux_sym__pow_operator_token1] = ACTIONS(2690), - [anon_sym_lsl] = ACTIONS(2688), - [anon_sym_lsr] = ACTIONS(2688), - [anon_sym_asr] = ACTIONS(2688), - [aux_sym__mult_operator_token1] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_land] = ACTIONS(2688), - [anon_sym_lor] = ACTIONS(2688), - [anon_sym_lxor] = ACTIONS(2688), - [aux_sym__add_operator_token1] = ACTIONS(2688), - [sym__concat_operator] = ACTIONS(2690), - [sym__rel_operator] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [sym_let_operator] = ACTIONS(2690), - [sym_and_operator] = ACTIONS(2690), - [sym__capitalized_identifier] = ACTIONS(2690), - [aux_sym_directive_token1] = ACTIONS(2688), - [aux_sym_tag_token1] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1397] = { - [sym_attribute] = STATE(1397), - [sym__identifier] = ACTIONS(2684), - [anon_sym_SEMI_SEMI] = ACTIONS(2686), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_and] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_external] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_COMMA] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_COLON_EQ] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_DOT] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_exception] = ACTIONS(2684), - [anon_sym_module] = ACTIONS(2684), - [anon_sym_open] = ACTIONS(2684), - [anon_sym_include] = ACTIONS(2684), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_end] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), - [anon_sym_in] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_LBRACK_PIPE] = ACTIONS(2686), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_LBRACE_LT] = ACTIONS(2686), - [anon_sym_begin] = ACTIONS(2684), - [sym_ocamlyacc_value] = ACTIONS(2686), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2684), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2686), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2686), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2686), - [aux_sym_number_token1] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [sym_prefix_operator] = ACTIONS(2686), - [anon_sym_PLUS_DOT] = ACTIONS(2684), - [anon_sym_DASH_DOT] = ACTIONS(2684), - [sym_hash_operator] = ACTIONS(2686), - [aux_sym__pow_operator_token1] = ACTIONS(2686), - [anon_sym_lsl] = ACTIONS(2684), - [anon_sym_lsr] = ACTIONS(2684), - [anon_sym_asr] = ACTIONS(2684), - [aux_sym__mult_operator_token1] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_land] = ACTIONS(2684), - [anon_sym_lor] = ACTIONS(2684), - [anon_sym_lxor] = ACTIONS(2684), - [aux_sym__add_operator_token1] = ACTIONS(2684), - [sym__concat_operator] = ACTIONS(2686), - [sym__rel_operator] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [sym_let_operator] = ACTIONS(2686), - [sym_and_operator] = ACTIONS(2686), - [sym__capitalized_identifier] = ACTIONS(2686), - [aux_sym_directive_token1] = ACTIONS(2684), - [aux_sym_tag_token1] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1398] = { - [sym_attribute] = STATE(1398), - [sym__identifier] = ACTIONS(3178), - [anon_sym_COLON_GT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_RPAREN] = ACTIONS(3180), - [anon_sym_COMMA] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_COLON_EQ] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [anon_sym_COLON2] = ACTIONS(3178), - [anon_sym_DASH_GT] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_constraint] = ACTIONS(3178), - [anon_sym_val] = ACTIONS(3178), - [anon_sym_end] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_inherit] = ACTIONS(3178), - [anon_sym_method] = ACTIONS(3178), - [anon_sym_initializer] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_PIPE] = ACTIONS(3180), - [anon_sym_PIPE_RBRACK] = ACTIONS(3180), - [anon_sym_then] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_LBRACE_LT] = ACTIONS(3180), - [anon_sym_GT_RBRACE] = ACTIONS(3180), - [anon_sym_begin] = ACTIONS(3178), - [sym_ocamlyacc_value] = ACTIONS(3180), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3178), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3180), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3180), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3180), - [aux_sym_number_token1] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_prefix_operator] = ACTIONS(3180), - [anon_sym_PLUS_DOT] = ACTIONS(3178), - [anon_sym_DASH_DOT] = ACTIONS(3178), - [aux_sym__pow_operator_token1] = ACTIONS(3180), - [anon_sym_lsl] = ACTIONS(3178), - [anon_sym_lsr] = ACTIONS(3178), - [anon_sym_asr] = ACTIONS(3178), - [aux_sym__mult_operator_token1] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3178), - [anon_sym_land] = ACTIONS(3178), - [anon_sym_lor] = ACTIONS(3178), - [anon_sym_lxor] = ACTIONS(3178), - [aux_sym__add_operator_token1] = ACTIONS(3178), - [sym__concat_operator] = ACTIONS(3180), - [sym__rel_operator] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_or] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym__capitalized_identifier] = ACTIONS(3180), - [aux_sym_tag_token1] = ACTIONS(3180), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1399] = { - [sym_attribute] = STATE(1399), - [sym__identifier] = ACTIONS(3182), - [anon_sym_COLON_GT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_COLON] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_COLON_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [anon_sym_COLON2] = ACTIONS(3182), - [anon_sym_DASH_GT] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_constraint] = ACTIONS(3182), - [anon_sym_val] = ACTIONS(3182), - [anon_sym_end] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_inherit] = ACTIONS(3182), - [anon_sym_method] = ACTIONS(3182), - [anon_sym_initializer] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_PIPE] = ACTIONS(3184), - [anon_sym_PIPE_RBRACK] = ACTIONS(3184), - [anon_sym_then] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_LBRACE_LT] = ACTIONS(3184), - [anon_sym_GT_RBRACE] = ACTIONS(3184), - [anon_sym_begin] = ACTIONS(3182), - [sym_ocamlyacc_value] = ACTIONS(3184), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3182), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3184), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3184), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3184), - [aux_sym_number_token1] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_prefix_operator] = ACTIONS(3184), - [anon_sym_PLUS_DOT] = ACTIONS(3182), - [anon_sym_DASH_DOT] = ACTIONS(3182), - [aux_sym__pow_operator_token1] = ACTIONS(3184), - [anon_sym_lsl] = ACTIONS(3182), - [anon_sym_lsr] = ACTIONS(3182), - [anon_sym_asr] = ACTIONS(3182), - [aux_sym__mult_operator_token1] = ACTIONS(3182), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_land] = ACTIONS(3182), - [anon_sym_lor] = ACTIONS(3182), - [anon_sym_lxor] = ACTIONS(3182), - [aux_sym__add_operator_token1] = ACTIONS(3182), - [sym__concat_operator] = ACTIONS(3184), - [sym__rel_operator] = ACTIONS(3182), - [anon_sym_AMP_AMP] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_PIPE_PIPE] = ACTIONS(3182), - [sym__capitalized_identifier] = ACTIONS(3184), - [aux_sym_tag_token1] = ACTIONS(3184), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1400] = { - [sym_attribute] = STATE(1400), - [sym__identifier] = ACTIONS(3109), - [anon_sym_COLON_GT] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_COLON2] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_constraint] = ACTIONS(3109), - [anon_sym_val] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_with] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_inherit] = ACTIONS(3109), - [anon_sym_method] = ACTIONS(3109), - [anon_sym_initializer] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_then] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_GT_RBRACE] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1401] = { - [sym_attribute] = STATE(1401), - [sym__identifier] = ACTIONS(2666), - [anon_sym_COLON_GT] = ACTIONS(2668), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_QMARK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_RPAREN] = ACTIONS(2668), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_COLON_EQ] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_RBRACK] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_COLON2] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(1055), - [anon_sym_DASH_GT] = ACTIONS(2666), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2668), - [anon_sym_RBRACE] = ACTIONS(2668), - [anon_sym_constraint] = ACTIONS(2666), - [anon_sym_val] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_with] = ACTIONS(2666), - [anon_sym_object] = ACTIONS(2666), - [anon_sym_inherit] = ACTIONS(2666), - [anon_sym_method] = ACTIONS(2666), - [anon_sym_initializer] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(1057), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_PIPE] = ACTIONS(2668), - [anon_sym_then] = ACTIONS(2666), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_LBRACE_LT] = ACTIONS(2668), - [anon_sym_GT_RBRACE] = ACTIONS(2668), - [anon_sym_begin] = ACTIONS(2666), - [sym_ocamlyacc_value] = ACTIONS(2668), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2666), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2668), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2668), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2668), - [aux_sym_number_token1] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_prefix_operator] = ACTIONS(2668), - [anon_sym_PLUS_DOT] = ACTIONS(2666), - [anon_sym_DASH_DOT] = ACTIONS(2666), - [sym_hash_operator] = ACTIONS(1059), - [aux_sym__pow_operator_token1] = ACTIONS(2668), - [anon_sym_lsl] = ACTIONS(2666), - [anon_sym_lsr] = ACTIONS(2666), - [anon_sym_asr] = ACTIONS(2666), - [aux_sym__mult_operator_token1] = ACTIONS(2666), - [anon_sym_mod] = ACTIONS(2666), - [anon_sym_land] = ACTIONS(2666), - [anon_sym_lor] = ACTIONS(2666), - [anon_sym_lxor] = ACTIONS(2666), - [aux_sym__add_operator_token1] = ACTIONS(2666), - [sym__concat_operator] = ACTIONS(2668), - [sym__rel_operator] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [sym__capitalized_identifier] = ACTIONS(2668), - [aux_sym_tag_token1] = ACTIONS(2668), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1402] = { - [sym_attribute] = STATE(1402), - [sym__identifier] = ACTIONS(2594), - [anon_sym_SEMI_SEMI] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2594), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_QMARK] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2596), - [anon_sym_external] = ACTIONS(2594), - [anon_sym_type] = ACTIONS(2594), - [anon_sym_COMMA] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_COLON_EQ] = ACTIONS(2596), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_RBRACK] = ACTIONS(2596), - [anon_sym_true] = ACTIONS(2594), - [anon_sym_false] = ACTIONS(2594), - [anon_sym_DOT] = ACTIONS(2596), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_SEMI] = ACTIONS(2594), - [anon_sym_exception] = ACTIONS(2594), - [anon_sym_module] = ACTIONS(2594), - [anon_sym_open] = ACTIONS(2594), - [anon_sym_include] = ACTIONS(2594), - [anon_sym_class] = ACTIONS(2594), - [anon_sym_end] = ACTIONS(2594), - [anon_sym_object] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2596), - [anon_sym_LBRACK_PIPE] = ACTIONS(2596), - [anon_sym_LT_DASH] = ACTIONS(2594), - [anon_sym_else] = ACTIONS(2594), - [anon_sym_new] = ACTIONS(2594), - [anon_sym_LBRACE_LT] = ACTIONS(2596), - [anon_sym_begin] = ACTIONS(2594), - [sym_ocamlyacc_value] = ACTIONS(2596), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2594), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2596), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2594), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2596), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2596), - [aux_sym_number_token1] = ACTIONS(2596), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_DQUOTE] = ACTIONS(2596), - [sym_prefix_operator] = ACTIONS(2596), - [anon_sym_PLUS_DOT] = ACTIONS(2594), - [anon_sym_DASH_DOT] = ACTIONS(2594), - [sym_hash_operator] = ACTIONS(2596), - [aux_sym__pow_operator_token1] = ACTIONS(2596), - [anon_sym_lsl] = ACTIONS(2594), - [anon_sym_lsr] = ACTIONS(2594), - [anon_sym_asr] = ACTIONS(2594), - [aux_sym__mult_operator_token1] = ACTIONS(2594), - [anon_sym_mod] = ACTIONS(2594), - [anon_sym_land] = ACTIONS(2594), - [anon_sym_lor] = ACTIONS(2594), - [anon_sym_lxor] = ACTIONS(2594), - [aux_sym__add_operator_token1] = ACTIONS(2594), - [sym__concat_operator] = ACTIONS(2596), - [sym__rel_operator] = ACTIONS(2594), - [anon_sym_AMP_AMP] = ACTIONS(2594), - [anon_sym_or] = ACTIONS(2594), - [anon_sym_PIPE_PIPE] = ACTIONS(2594), - [sym_let_operator] = ACTIONS(2596), - [sym__capitalized_identifier] = ACTIONS(2596), - [aux_sym_directive_token1] = ACTIONS(2594), - [aux_sym_tag_token1] = ACTIONS(2596), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1403] = { - [sym_attribute] = STATE(1403), - [sym__identifier] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_external] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_exception] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_include] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym_let_operator] = ACTIONS(2803), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_directive_token1] = ACTIONS(2801), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1404] = { - [sym_attribute] = STATE(1404), - [sym__identifier] = ACTIONS(2684), - [anon_sym_SEMI_SEMI] = ACTIONS(2686), - [anon_sym_let] = ACTIONS(2684), - [anon_sym_TILDE] = ACTIONS(2684), - [anon_sym_QMARK] = ACTIONS(2684), - [anon_sym_LPAREN] = ACTIONS(2686), - [anon_sym_external] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2684), - [anon_sym_COMMA] = ACTIONS(2686), - [anon_sym_PLUS] = ACTIONS(2684), - [anon_sym_DASH] = ACTIONS(2684), - [anon_sym_COLON_EQ] = ACTIONS(2686), - [anon_sym_PIPE] = ACTIONS(2684), - [anon_sym_LBRACK] = ACTIONS(2684), - [anon_sym_RBRACK] = ACTIONS(2686), - [anon_sym_true] = ACTIONS(2684), - [anon_sym_false] = ACTIONS(2684), - [anon_sym_DOT] = ACTIONS(2686), - [anon_sym_LBRACE] = ACTIONS(2684), - [anon_sym_SEMI] = ACTIONS(2684), - [anon_sym_exception] = ACTIONS(2684), - [anon_sym_module] = ACTIONS(2684), - [anon_sym_open] = ACTIONS(2684), - [anon_sym_include] = ACTIONS(2684), - [anon_sym_class] = ACTIONS(2684), - [anon_sym_val] = ACTIONS(2684), - [anon_sym_end] = ACTIONS(2684), - [anon_sym_object] = ACTIONS(2684), - [anon_sym_AMP] = ACTIONS(2684), - [anon_sym_POUND] = ACTIONS(2684), - [anon_sym_COLON_COLON] = ACTIONS(2686), - [anon_sym_LBRACK_PIPE] = ACTIONS(2686), - [anon_sym_else] = ACTIONS(2684), - [anon_sym_new] = ACTIONS(2684), - [anon_sym_LBRACE_LT] = ACTIONS(2686), - [anon_sym_begin] = ACTIONS(2684), - [sym_ocamlyacc_value] = ACTIONS(2686), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2684), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2686), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2684), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2686), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2686), - [aux_sym_number_token1] = ACTIONS(2686), - [anon_sym_SQUOTE] = ACTIONS(2686), - [anon_sym_DQUOTE] = ACTIONS(2686), - [sym_prefix_operator] = ACTIONS(2686), - [anon_sym_PLUS_DOT] = ACTIONS(2684), - [anon_sym_DASH_DOT] = ACTIONS(2684), - [sym_hash_operator] = ACTIONS(2686), - [aux_sym__pow_operator_token1] = ACTIONS(2686), - [anon_sym_lsl] = ACTIONS(2684), - [anon_sym_lsr] = ACTIONS(2684), - [anon_sym_asr] = ACTIONS(2684), - [aux_sym__mult_operator_token1] = ACTIONS(2684), - [anon_sym_mod] = ACTIONS(2684), - [anon_sym_land] = ACTIONS(2684), - [anon_sym_lor] = ACTIONS(2684), - [anon_sym_lxor] = ACTIONS(2684), - [aux_sym__add_operator_token1] = ACTIONS(2684), - [sym__concat_operator] = ACTIONS(2686), - [sym__rel_operator] = ACTIONS(2684), - [anon_sym_AMP_AMP] = ACTIONS(2684), - [anon_sym_or] = ACTIONS(2684), - [anon_sym_PIPE_PIPE] = ACTIONS(2684), - [sym_let_operator] = ACTIONS(2686), - [sym__capitalized_identifier] = ACTIONS(2686), - [aux_sym_directive_token1] = ACTIONS(2684), - [aux_sym_tag_token1] = ACTIONS(2686), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1405] = { - [sym_attribute] = STATE(1405), - [sym__identifier] = ACTIONS(2552), - [anon_sym_SEMI_SEMI] = ACTIONS(2554), - [anon_sym_let] = ACTIONS(2552), - [anon_sym_TILDE] = ACTIONS(2552), - [anon_sym_QMARK] = ACTIONS(2552), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_external] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_COMMA] = ACTIONS(2554), - [anon_sym_PLUS] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2552), - [anon_sym_COLON_EQ] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2552), - [anon_sym_LBRACK] = ACTIONS(2552), - [anon_sym_RBRACK] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_DOT] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2552), - [anon_sym_exception] = ACTIONS(2552), - [anon_sym_module] = ACTIONS(2552), - [anon_sym_open] = ACTIONS(2552), - [anon_sym_include] = ACTIONS(2552), - [anon_sym_class] = ACTIONS(2552), - [anon_sym_end] = ACTIONS(2552), - [anon_sym_object] = ACTIONS(2552), - [anon_sym_AMP] = ACTIONS(2552), - [anon_sym_POUND] = ACTIONS(2552), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_LBRACK_PIPE] = ACTIONS(2554), - [anon_sym_LT_DASH] = ACTIONS(2552), - [anon_sym_else] = ACTIONS(2552), - [anon_sym_new] = ACTIONS(2552), - [anon_sym_LBRACE_LT] = ACTIONS(2554), - [anon_sym_begin] = ACTIONS(2552), - [sym_ocamlyacc_value] = ACTIONS(2554), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2552), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2554), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2552), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2554), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2554), - [aux_sym_number_token1] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2554), - [anon_sym_DQUOTE] = ACTIONS(2554), - [sym_prefix_operator] = ACTIONS(2554), - [anon_sym_PLUS_DOT] = ACTIONS(2552), - [anon_sym_DASH_DOT] = ACTIONS(2552), - [sym_hash_operator] = ACTIONS(2554), - [aux_sym__pow_operator_token1] = ACTIONS(2554), - [anon_sym_lsl] = ACTIONS(2552), - [anon_sym_lsr] = ACTIONS(2552), - [anon_sym_asr] = ACTIONS(2552), - [aux_sym__mult_operator_token1] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_land] = ACTIONS(2552), - [anon_sym_lor] = ACTIONS(2552), - [anon_sym_lxor] = ACTIONS(2552), - [aux_sym__add_operator_token1] = ACTIONS(2552), - [sym__concat_operator] = ACTIONS(2554), - [sym__rel_operator] = ACTIONS(2552), - [anon_sym_AMP_AMP] = ACTIONS(2552), - [anon_sym_or] = ACTIONS(2552), - [anon_sym_PIPE_PIPE] = ACTIONS(2552), - [sym_let_operator] = ACTIONS(2554), - [sym__capitalized_identifier] = ACTIONS(2554), - [aux_sym_directive_token1] = ACTIONS(2552), - [aux_sym_tag_token1] = ACTIONS(2554), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1406] = { - [sym_attribute] = STATE(1406), - [sym__identifier] = ACTIONS(3178), - [anon_sym_COLON_GT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_RPAREN] = ACTIONS(3180), - [anon_sym_COMMA] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_COLON_EQ] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [anon_sym_COLON2] = ACTIONS(3178), - [anon_sym_DASH_GT] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_constraint] = ACTIONS(3178), - [anon_sym_val] = ACTIONS(3178), - [anon_sym_end] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_inherit] = ACTIONS(3178), - [anon_sym_method] = ACTIONS(3178), - [anon_sym_initializer] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_PIPE] = ACTIONS(3180), - [anon_sym_then] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_LBRACE_LT] = ACTIONS(3180), - [anon_sym_GT_RBRACE] = ACTIONS(3180), - [anon_sym_begin] = ACTIONS(3178), - [sym_ocamlyacc_value] = ACTIONS(3180), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3178), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3180), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3180), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3180), - [aux_sym_number_token1] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_prefix_operator] = ACTIONS(3180), - [anon_sym_PLUS_DOT] = ACTIONS(3178), - [anon_sym_DASH_DOT] = ACTIONS(3178), - [aux_sym__pow_operator_token1] = ACTIONS(3180), - [anon_sym_lsl] = ACTIONS(3178), - [anon_sym_lsr] = ACTIONS(3178), - [anon_sym_asr] = ACTIONS(3178), - [aux_sym__mult_operator_token1] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3178), - [anon_sym_land] = ACTIONS(3178), - [anon_sym_lor] = ACTIONS(3178), - [anon_sym_lxor] = ACTIONS(3178), - [aux_sym__add_operator_token1] = ACTIONS(3178), - [sym__concat_operator] = ACTIONS(3180), - [sym__rel_operator] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_or] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym__capitalized_identifier] = ACTIONS(3180), - [aux_sym_tag_token1] = ACTIONS(3180), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1407] = { - [sym_attribute] = STATE(1407), - [sym__identifier] = ACTIONS(2855), - [anon_sym_SEMI_SEMI] = ACTIONS(2857), - [anon_sym_let] = ACTIONS(2855), - [anon_sym_TILDE] = ACTIONS(2855), - [anon_sym_QMARK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2857), - [anon_sym_external] = ACTIONS(2855), - [anon_sym_type] = ACTIONS(2855), - [anon_sym_COMMA] = ACTIONS(2857), - [anon_sym_PLUS] = ACTIONS(2855), - [anon_sym_DASH] = ACTIONS(2855), - [anon_sym_COLON_EQ] = ACTIONS(2857), - [anon_sym_PIPE] = ACTIONS(2855), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_RBRACK] = ACTIONS(2857), - [anon_sym_true] = ACTIONS(2855), - [anon_sym_false] = ACTIONS(2855), - [anon_sym_DOT] = ACTIONS(2857), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_SEMI] = ACTIONS(2855), - [anon_sym_exception] = ACTIONS(2855), - [anon_sym_module] = ACTIONS(2855), - [anon_sym_open] = ACTIONS(2855), - [anon_sym_include] = ACTIONS(2855), - [anon_sym_class] = ACTIONS(2855), - [anon_sym_val] = ACTIONS(2855), - [anon_sym_end] = ACTIONS(2855), - [anon_sym_object] = ACTIONS(2855), - [anon_sym_AMP] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(2855), - [anon_sym_COLON_COLON] = ACTIONS(2857), - [anon_sym_LBRACK_PIPE] = ACTIONS(2857), - [anon_sym_else] = ACTIONS(2855), - [anon_sym_new] = ACTIONS(2855), - [anon_sym_LBRACE_LT] = ACTIONS(2857), - [anon_sym_begin] = ACTIONS(2855), - [sym_ocamlyacc_value] = ACTIONS(2857), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2855), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2857), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2855), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2857), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2857), - [aux_sym_number_token1] = ACTIONS(2857), - [anon_sym_SQUOTE] = ACTIONS(2857), - [anon_sym_DQUOTE] = ACTIONS(2857), - [sym_prefix_operator] = ACTIONS(2857), - [anon_sym_PLUS_DOT] = ACTIONS(2855), - [anon_sym_DASH_DOT] = ACTIONS(2855), - [sym_hash_operator] = ACTIONS(2857), - [aux_sym__pow_operator_token1] = ACTIONS(2857), - [anon_sym_lsl] = ACTIONS(2855), - [anon_sym_lsr] = ACTIONS(2855), - [anon_sym_asr] = ACTIONS(2855), - [aux_sym__mult_operator_token1] = ACTIONS(2855), - [anon_sym_mod] = ACTIONS(2855), - [anon_sym_land] = ACTIONS(2855), - [anon_sym_lor] = ACTIONS(2855), - [anon_sym_lxor] = ACTIONS(2855), - [aux_sym__add_operator_token1] = ACTIONS(2855), - [sym__concat_operator] = ACTIONS(2857), - [sym__rel_operator] = ACTIONS(2855), - [anon_sym_AMP_AMP] = ACTIONS(2855), - [anon_sym_or] = ACTIONS(2855), - [anon_sym_PIPE_PIPE] = ACTIONS(2855), - [sym_let_operator] = ACTIONS(2857), - [sym__capitalized_identifier] = ACTIONS(2857), - [aux_sym_directive_token1] = ACTIONS(2855), - [aux_sym_tag_token1] = ACTIONS(2857), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1408] = { - [sym_attribute] = STATE(1408), - [sym__identifier] = ACTIONS(2626), - [anon_sym_SEMI_SEMI] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_TILDE] = ACTIONS(2626), - [anon_sym_QMARK] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2628), - [anon_sym_external] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_COMMA] = ACTIONS(2628), - [anon_sym_PLUS] = ACTIONS(2626), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_COLON_EQ] = ACTIONS(2628), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_RBRACK] = ACTIONS(2628), - [anon_sym_true] = ACTIONS(2626), - [anon_sym_false] = ACTIONS(2626), - [anon_sym_DOT] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_exception] = ACTIONS(2626), - [anon_sym_module] = ACTIONS(2626), - [anon_sym_open] = ACTIONS(2626), - [anon_sym_include] = ACTIONS(2626), - [anon_sym_class] = ACTIONS(2626), - [anon_sym_end] = ACTIONS(2626), - [anon_sym_object] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2628), - [anon_sym_LBRACK_PIPE] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2626), - [anon_sym_else] = ACTIONS(2626), - [anon_sym_new] = ACTIONS(2626), - [anon_sym_LBRACE_LT] = ACTIONS(2628), - [anon_sym_begin] = ACTIONS(2626), - [sym_ocamlyacc_value] = ACTIONS(2628), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2626), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2628), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2626), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2628), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2628), - [aux_sym_number_token1] = ACTIONS(2628), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_DQUOTE] = ACTIONS(2628), - [sym_prefix_operator] = ACTIONS(2628), - [anon_sym_PLUS_DOT] = ACTIONS(2626), - [anon_sym_DASH_DOT] = ACTIONS(2626), - [sym_hash_operator] = ACTIONS(2628), - [aux_sym__pow_operator_token1] = ACTIONS(2628), - [anon_sym_lsl] = ACTIONS(2626), - [anon_sym_lsr] = ACTIONS(2626), - [anon_sym_asr] = ACTIONS(2626), - [aux_sym__mult_operator_token1] = ACTIONS(2626), - [anon_sym_mod] = ACTIONS(2626), - [anon_sym_land] = ACTIONS(2626), - [anon_sym_lor] = ACTIONS(2626), - [anon_sym_lxor] = ACTIONS(2626), - [aux_sym__add_operator_token1] = ACTIONS(2626), - [sym__concat_operator] = ACTIONS(2628), - [sym__rel_operator] = ACTIONS(2626), - [anon_sym_AMP_AMP] = ACTIONS(2626), - [anon_sym_or] = ACTIONS(2626), - [anon_sym_PIPE_PIPE] = ACTIONS(2626), - [sym_let_operator] = ACTIONS(2628), - [sym__capitalized_identifier] = ACTIONS(2628), - [aux_sym_directive_token1] = ACTIONS(2626), - [aux_sym_tag_token1] = ACTIONS(2628), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1409] = { - [sym_attribute] = STATE(1409), - [sym__identifier] = ACTIONS(3190), - [anon_sym_COLON_GT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_RPAREN] = ACTIONS(3192), - [anon_sym_COMMA] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_COLON_EQ] = ACTIONS(3192), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [anon_sym_COLON2] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_constraint] = ACTIONS(3190), - [anon_sym_val] = ACTIONS(3190), - [anon_sym_end] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_inherit] = ACTIONS(3190), - [anon_sym_method] = ACTIONS(3190), - [anon_sym_initializer] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_PIPE] = ACTIONS(3192), - [anon_sym_PIPE_RBRACK] = ACTIONS(3192), - [anon_sym_then] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_LBRACE_LT] = ACTIONS(3192), - [anon_sym_GT_RBRACE] = ACTIONS(3192), - [anon_sym_begin] = ACTIONS(3190), - [sym_ocamlyacc_value] = ACTIONS(3192), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3190), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3192), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3192), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3192), - [aux_sym_number_token1] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_prefix_operator] = ACTIONS(3192), - [anon_sym_PLUS_DOT] = ACTIONS(3190), - [anon_sym_DASH_DOT] = ACTIONS(3190), - [aux_sym__pow_operator_token1] = ACTIONS(3192), - [anon_sym_lsl] = ACTIONS(3190), - [anon_sym_lsr] = ACTIONS(3190), - [anon_sym_asr] = ACTIONS(3190), - [aux_sym__mult_operator_token1] = ACTIONS(3190), - [anon_sym_mod] = ACTIONS(3190), - [anon_sym_land] = ACTIONS(3190), - [anon_sym_lor] = ACTIONS(3190), - [anon_sym_lxor] = ACTIONS(3190), - [aux_sym__add_operator_token1] = ACTIONS(3190), - [sym__concat_operator] = ACTIONS(3192), - [sym__rel_operator] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_or] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [sym__capitalized_identifier] = ACTIONS(3192), - [aux_sym_tag_token1] = ACTIONS(3192), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1410] = { - [sym_attribute] = STATE(1410), - [sym__identifier] = ACTIONS(3178), - [anon_sym_SEMI_SEMI] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_and] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_external] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_COMMA] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_COLON_EQ] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_exception] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_open] = ACTIONS(3178), - [anon_sym_include] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_end] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_in] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_PIPE] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_LBRACE_LT] = ACTIONS(3180), - [anon_sym_begin] = ACTIONS(3178), - [sym_ocamlyacc_value] = ACTIONS(3180), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3178), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3180), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3180), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3180), - [aux_sym_number_token1] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_prefix_operator] = ACTIONS(3180), - [anon_sym_PLUS_DOT] = ACTIONS(3178), - [anon_sym_DASH_DOT] = ACTIONS(3178), - [aux_sym__pow_operator_token1] = ACTIONS(3180), - [anon_sym_lsl] = ACTIONS(3178), - [anon_sym_lsr] = ACTIONS(3178), - [anon_sym_asr] = ACTIONS(3178), - [aux_sym__mult_operator_token1] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3178), - [anon_sym_land] = ACTIONS(3178), - [anon_sym_lor] = ACTIONS(3178), - [anon_sym_lxor] = ACTIONS(3178), - [aux_sym__add_operator_token1] = ACTIONS(3178), - [sym__concat_operator] = ACTIONS(3180), - [sym__rel_operator] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_or] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym_let_operator] = ACTIONS(3180), - [sym_and_operator] = ACTIONS(3180), - [sym__capitalized_identifier] = ACTIONS(3180), - [aux_sym_directive_token1] = ACTIONS(3180), - [aux_sym_tag_token1] = ACTIONS(3180), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1411] = { - [sym_attribute] = STATE(1411), - [sym__identifier] = ACTIONS(3109), - [anon_sym_COLON_GT] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_COLON2] = ACTIONS(3109), - [anon_sym_DASH_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_constraint] = ACTIONS(3109), - [anon_sym_val] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_with] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_inherit] = ACTIONS(3109), - [anon_sym_method] = ACTIONS(3109), - [anon_sym_initializer] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_PIPE_RBRACK] = ACTIONS(3111), - [anon_sym_then] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_GT_RBRACE] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1412] = { - [sym_attribute] = STATE(1412), - [sym__identifier] = ACTIONS(3194), - [anon_sym_COLON_GT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_RPAREN] = ACTIONS(3196), - [anon_sym_COMMA] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_COLON_EQ] = ACTIONS(3196), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_COLON2] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_constraint] = ACTIONS(3194), - [anon_sym_val] = ACTIONS(3194), - [anon_sym_end] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_inherit] = ACTIONS(3194), - [anon_sym_method] = ACTIONS(3194), - [anon_sym_initializer] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_PIPE] = ACTIONS(3196), - [anon_sym_PIPE_RBRACK] = ACTIONS(3196), - [anon_sym_then] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_LBRACE_LT] = ACTIONS(3196), - [anon_sym_GT_RBRACE] = ACTIONS(3196), - [anon_sym_begin] = ACTIONS(3194), - [sym_ocamlyacc_value] = ACTIONS(3196), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3194), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3196), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3196), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3196), - [aux_sym_number_token1] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_prefix_operator] = ACTIONS(3196), - [anon_sym_PLUS_DOT] = ACTIONS(3194), - [anon_sym_DASH_DOT] = ACTIONS(3194), - [aux_sym__pow_operator_token1] = ACTIONS(3196), - [anon_sym_lsl] = ACTIONS(3194), - [anon_sym_lsr] = ACTIONS(3194), - [anon_sym_asr] = ACTIONS(3194), - [aux_sym__mult_operator_token1] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3194), - [anon_sym_land] = ACTIONS(3194), - [anon_sym_lor] = ACTIONS(3194), - [anon_sym_lxor] = ACTIONS(3194), - [aux_sym__add_operator_token1] = ACTIONS(3194), - [sym__concat_operator] = ACTIONS(3196), - [sym__rel_operator] = ACTIONS(3194), - [anon_sym_AMP_AMP] = ACTIONS(3194), - [anon_sym_or] = ACTIONS(3194), - [anon_sym_PIPE_PIPE] = ACTIONS(3194), - [sym__capitalized_identifier] = ACTIONS(3196), - [aux_sym_tag_token1] = ACTIONS(3196), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1413] = { - [sym_attribute] = STATE(1413), - [sym__identifier] = ACTIONS(2835), - [anon_sym_SEMI_SEMI] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_external] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_exception] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_open] = ACTIONS(2835), - [anon_sym_include] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym_let_operator] = ACTIONS(2837), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_directive_token1] = ACTIONS(2835), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1414] = { - [sym_attribute] = STATE(1414), - [sym__identifier] = ACTIONS(2634), - [anon_sym_SEMI_SEMI] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2634), - [anon_sym_TILDE] = ACTIONS(2634), - [anon_sym_QMARK] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2636), - [anon_sym_external] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_COMMA] = ACTIONS(2636), - [anon_sym_PLUS] = ACTIONS(2634), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_COLON_EQ] = ACTIONS(2636), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_RBRACK] = ACTIONS(2636), - [anon_sym_true] = ACTIONS(2634), - [anon_sym_false] = ACTIONS(2634), - [anon_sym_DOT] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_exception] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_open] = ACTIONS(2634), - [anon_sym_include] = ACTIONS(2634), - [anon_sym_class] = ACTIONS(2634), - [anon_sym_end] = ACTIONS(2634), - [anon_sym_object] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2636), - [anon_sym_LBRACK_PIPE] = ACTIONS(2636), - [anon_sym_LT_DASH] = ACTIONS(2634), - [anon_sym_else] = ACTIONS(2634), - [anon_sym_new] = ACTIONS(2634), - [anon_sym_LBRACE_LT] = ACTIONS(2636), - [anon_sym_begin] = ACTIONS(2634), - [sym_ocamlyacc_value] = ACTIONS(2636), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2634), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2636), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2634), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2636), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2636), - [aux_sym_number_token1] = ACTIONS(2636), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_DQUOTE] = ACTIONS(2636), - [sym_prefix_operator] = ACTIONS(2636), - [anon_sym_PLUS_DOT] = ACTIONS(2634), - [anon_sym_DASH_DOT] = ACTIONS(2634), - [sym_hash_operator] = ACTIONS(2636), - [aux_sym__pow_operator_token1] = ACTIONS(2636), - [anon_sym_lsl] = ACTIONS(2634), - [anon_sym_lsr] = ACTIONS(2634), - [anon_sym_asr] = ACTIONS(2634), - [aux_sym__mult_operator_token1] = ACTIONS(2634), - [anon_sym_mod] = ACTIONS(2634), - [anon_sym_land] = ACTIONS(2634), - [anon_sym_lor] = ACTIONS(2634), - [anon_sym_lxor] = ACTIONS(2634), - [aux_sym__add_operator_token1] = ACTIONS(2634), - [sym__concat_operator] = ACTIONS(2636), - [sym__rel_operator] = ACTIONS(2634), - [anon_sym_AMP_AMP] = ACTIONS(2634), - [anon_sym_or] = ACTIONS(2634), - [anon_sym_PIPE_PIPE] = ACTIONS(2634), - [sym_let_operator] = ACTIONS(2636), - [sym__capitalized_identifier] = ACTIONS(2636), - [aux_sym_directive_token1] = ACTIONS(2634), - [aux_sym_tag_token1] = ACTIONS(2636), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1415] = { - [sym_attribute] = STATE(1415), - [sym__identifier] = ACTIONS(2622), - [anon_sym_SEMI_SEMI] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2622), - [anon_sym_TILDE] = ACTIONS(2622), - [anon_sym_QMARK] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2624), - [anon_sym_external] = ACTIONS(2622), - [anon_sym_type] = ACTIONS(2622), - [anon_sym_COMMA] = ACTIONS(2624), - [anon_sym_PLUS] = ACTIONS(2622), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_COLON_EQ] = ACTIONS(2624), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_RBRACK] = ACTIONS(2624), - [anon_sym_true] = ACTIONS(2622), - [anon_sym_false] = ACTIONS(2622), - [anon_sym_DOT] = ACTIONS(2624), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_exception] = ACTIONS(2622), - [anon_sym_module] = ACTIONS(2622), - [anon_sym_open] = ACTIONS(2622), - [anon_sym_include] = ACTIONS(2622), - [anon_sym_class] = ACTIONS(2622), - [anon_sym_end] = ACTIONS(2622), - [anon_sym_object] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2624), - [anon_sym_LBRACK_PIPE] = ACTIONS(2624), - [anon_sym_LT_DASH] = ACTIONS(2622), - [anon_sym_else] = ACTIONS(2622), - [anon_sym_new] = ACTIONS(2622), - [anon_sym_LBRACE_LT] = ACTIONS(2624), - [anon_sym_begin] = ACTIONS(2622), - [sym_ocamlyacc_value] = ACTIONS(2624), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2622), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2624), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2622), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2624), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2624), - [aux_sym_number_token1] = ACTIONS(2624), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_DQUOTE] = ACTIONS(2624), - [sym_prefix_operator] = ACTIONS(2624), - [anon_sym_PLUS_DOT] = ACTIONS(2622), - [anon_sym_DASH_DOT] = ACTIONS(2622), - [sym_hash_operator] = ACTIONS(2624), - [aux_sym__pow_operator_token1] = ACTIONS(2624), - [anon_sym_lsl] = ACTIONS(2622), - [anon_sym_lsr] = ACTIONS(2622), - [anon_sym_asr] = ACTIONS(2622), - [aux_sym__mult_operator_token1] = ACTIONS(2622), - [anon_sym_mod] = ACTIONS(2622), - [anon_sym_land] = ACTIONS(2622), - [anon_sym_lor] = ACTIONS(2622), - [anon_sym_lxor] = ACTIONS(2622), - [aux_sym__add_operator_token1] = ACTIONS(2622), - [sym__concat_operator] = ACTIONS(2624), - [sym__rel_operator] = ACTIONS(2622), - [anon_sym_AMP_AMP] = ACTIONS(2622), - [anon_sym_or] = ACTIONS(2622), - [anon_sym_PIPE_PIPE] = ACTIONS(2622), - [sym_let_operator] = ACTIONS(2624), - [sym__capitalized_identifier] = ACTIONS(2624), - [aux_sym_directive_token1] = ACTIONS(2622), - [aux_sym_tag_token1] = ACTIONS(2624), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1416] = { - [sym_attribute] = STATE(1416), - [sym__identifier] = ACTIONS(3182), - [anon_sym_SEMI_SEMI] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_and] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_COLON] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_COLON_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_exception] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_open] = ACTIONS(3182), - [anon_sym_include] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_end] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_in] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_PIPE] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_LBRACE_LT] = ACTIONS(3184), - [anon_sym_begin] = ACTIONS(3182), - [sym_ocamlyacc_value] = ACTIONS(3184), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3182), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3184), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3184), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3184), - [aux_sym_number_token1] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_prefix_operator] = ACTIONS(3184), - [anon_sym_PLUS_DOT] = ACTIONS(3182), - [anon_sym_DASH_DOT] = ACTIONS(3182), - [aux_sym__pow_operator_token1] = ACTIONS(3184), - [anon_sym_lsl] = ACTIONS(3182), - [anon_sym_lsr] = ACTIONS(3182), - [anon_sym_asr] = ACTIONS(3182), - [aux_sym__mult_operator_token1] = ACTIONS(3182), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_land] = ACTIONS(3182), - [anon_sym_lor] = ACTIONS(3182), - [anon_sym_lxor] = ACTIONS(3182), - [aux_sym__add_operator_token1] = ACTIONS(3182), - [sym__concat_operator] = ACTIONS(3184), - [sym__rel_operator] = ACTIONS(3182), - [anon_sym_AMP_AMP] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_PIPE_PIPE] = ACTIONS(3182), - [sym_let_operator] = ACTIONS(3184), - [sym_and_operator] = ACTIONS(3184), - [sym__capitalized_identifier] = ACTIONS(3184), - [aux_sym_directive_token1] = ACTIONS(3184), - [aux_sym_tag_token1] = ACTIONS(3184), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1417] = { - [sym_attribute] = STATE(1417), - [sym__identifier] = ACTIONS(2600), - [anon_sym_SEMI_SEMI] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_TILDE] = ACTIONS(2600), - [anon_sym_QMARK] = ACTIONS(2600), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_external] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_COMMA] = ACTIONS(2602), - [anon_sym_PLUS] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_COLON_EQ] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2600), - [anon_sym_LBRACK] = ACTIONS(2600), - [anon_sym_RBRACK] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_DOT] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2600), - [anon_sym_exception] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_open] = ACTIONS(2600), - [anon_sym_include] = ACTIONS(2600), - [anon_sym_class] = ACTIONS(2600), - [anon_sym_end] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [anon_sym_AMP] = ACTIONS(2600), - [anon_sym_POUND] = ACTIONS(2600), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_LBRACK_PIPE] = ACTIONS(2602), - [anon_sym_LT_DASH] = ACTIONS(2600), - [anon_sym_else] = ACTIONS(2600), - [anon_sym_new] = ACTIONS(2600), - [anon_sym_LBRACE_LT] = ACTIONS(2602), - [anon_sym_begin] = ACTIONS(2600), - [sym_ocamlyacc_value] = ACTIONS(2602), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2600), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2602), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2600), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2602), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2602), - [aux_sym_number_token1] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2602), - [anon_sym_DQUOTE] = ACTIONS(2602), - [sym_prefix_operator] = ACTIONS(2602), - [anon_sym_PLUS_DOT] = ACTIONS(2600), - [anon_sym_DASH_DOT] = ACTIONS(2600), - [sym_hash_operator] = ACTIONS(2602), - [aux_sym__pow_operator_token1] = ACTIONS(2602), - [anon_sym_lsl] = ACTIONS(2600), - [anon_sym_lsr] = ACTIONS(2600), - [anon_sym_asr] = ACTIONS(2600), - [aux_sym__mult_operator_token1] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_land] = ACTIONS(2600), - [anon_sym_lor] = ACTIONS(2600), - [anon_sym_lxor] = ACTIONS(2600), - [aux_sym__add_operator_token1] = ACTIONS(2600), - [sym__concat_operator] = ACTIONS(2602), - [sym__rel_operator] = ACTIONS(2600), - [anon_sym_AMP_AMP] = ACTIONS(2600), - [anon_sym_or] = ACTIONS(2600), - [anon_sym_PIPE_PIPE] = ACTIONS(2600), - [sym_let_operator] = ACTIONS(2602), - [sym__capitalized_identifier] = ACTIONS(2602), - [aux_sym_directive_token1] = ACTIONS(2600), - [aux_sym_tag_token1] = ACTIONS(2602), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1418] = { - [sym_attribute] = STATE(1418), - [sym__identifier] = ACTIONS(2618), - [anon_sym_SEMI_SEMI] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2618), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_QMARK] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2620), - [anon_sym_external] = ACTIONS(2618), - [anon_sym_type] = ACTIONS(2618), - [anon_sym_COMMA] = ACTIONS(2620), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_COLON_EQ] = ACTIONS(2620), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_RBRACK] = ACTIONS(2620), - [anon_sym_true] = ACTIONS(2618), - [anon_sym_false] = ACTIONS(2618), - [anon_sym_DOT] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_exception] = ACTIONS(2618), - [anon_sym_module] = ACTIONS(2618), - [anon_sym_open] = ACTIONS(2618), - [anon_sym_include] = ACTIONS(2618), - [anon_sym_class] = ACTIONS(2618), - [anon_sym_end] = ACTIONS(2618), - [anon_sym_object] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2620), - [anon_sym_LBRACK_PIPE] = ACTIONS(2620), - [anon_sym_LT_DASH] = ACTIONS(2618), - [anon_sym_else] = ACTIONS(2618), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_LBRACE_LT] = ACTIONS(2620), - [anon_sym_begin] = ACTIONS(2618), - [sym_ocamlyacc_value] = ACTIONS(2620), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2618), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2620), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2618), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2620), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2620), - [aux_sym_number_token1] = ACTIONS(2620), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_DQUOTE] = ACTIONS(2620), - [sym_prefix_operator] = ACTIONS(2620), - [anon_sym_PLUS_DOT] = ACTIONS(2618), - [anon_sym_DASH_DOT] = ACTIONS(2618), - [sym_hash_operator] = ACTIONS(2620), - [aux_sym__pow_operator_token1] = ACTIONS(2620), - [anon_sym_lsl] = ACTIONS(2618), - [anon_sym_lsr] = ACTIONS(2618), - [anon_sym_asr] = ACTIONS(2618), - [aux_sym__mult_operator_token1] = ACTIONS(2618), - [anon_sym_mod] = ACTIONS(2618), - [anon_sym_land] = ACTIONS(2618), - [anon_sym_lor] = ACTIONS(2618), - [anon_sym_lxor] = ACTIONS(2618), - [aux_sym__add_operator_token1] = ACTIONS(2618), - [sym__concat_operator] = ACTIONS(2620), - [sym__rel_operator] = ACTIONS(2618), - [anon_sym_AMP_AMP] = ACTIONS(2618), - [anon_sym_or] = ACTIONS(2618), - [anon_sym_PIPE_PIPE] = ACTIONS(2618), - [sym_let_operator] = ACTIONS(2620), - [sym__capitalized_identifier] = ACTIONS(2620), - [aux_sym_directive_token1] = ACTIONS(2618), - [aux_sym_tag_token1] = ACTIONS(2620), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1419] = { - [sym_attribute] = STATE(1419), - [sym__identifier] = ACTIONS(2604), - [anon_sym_SEMI_SEMI] = ACTIONS(2606), - [anon_sym_let] = ACTIONS(2604), - [anon_sym_TILDE] = ACTIONS(2604), - [anon_sym_QMARK] = ACTIONS(2604), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_external] = ACTIONS(2604), - [anon_sym_type] = ACTIONS(2604), - [anon_sym_COMMA] = ACTIONS(2606), - [anon_sym_PLUS] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2604), - [anon_sym_COLON_EQ] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2604), - [anon_sym_LBRACK] = ACTIONS(2604), - [anon_sym_RBRACK] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_DOT] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2604), - [anon_sym_exception] = ACTIONS(2604), - [anon_sym_module] = ACTIONS(2604), - [anon_sym_open] = ACTIONS(2604), - [anon_sym_include] = ACTIONS(2604), - [anon_sym_class] = ACTIONS(2604), - [anon_sym_end] = ACTIONS(2604), - [anon_sym_object] = ACTIONS(2604), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_POUND] = ACTIONS(2604), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_LBRACK_PIPE] = ACTIONS(2606), - [anon_sym_LT_DASH] = ACTIONS(2604), - [anon_sym_else] = ACTIONS(2604), - [anon_sym_new] = ACTIONS(2604), - [anon_sym_LBRACE_LT] = ACTIONS(2606), - [anon_sym_begin] = ACTIONS(2604), - [sym_ocamlyacc_value] = ACTIONS(2606), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2604), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2606), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2604), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2606), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2606), - [aux_sym_number_token1] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2606), - [anon_sym_DQUOTE] = ACTIONS(2606), - [sym_prefix_operator] = ACTIONS(2606), - [anon_sym_PLUS_DOT] = ACTIONS(2604), - [anon_sym_DASH_DOT] = ACTIONS(2604), - [sym_hash_operator] = ACTIONS(2606), - [aux_sym__pow_operator_token1] = ACTIONS(2606), - [anon_sym_lsl] = ACTIONS(2604), - [anon_sym_lsr] = ACTIONS(2604), - [anon_sym_asr] = ACTIONS(2604), - [aux_sym__mult_operator_token1] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_land] = ACTIONS(2604), - [anon_sym_lor] = ACTIONS(2604), - [anon_sym_lxor] = ACTIONS(2604), - [aux_sym__add_operator_token1] = ACTIONS(2604), - [sym__concat_operator] = ACTIONS(2606), - [sym__rel_operator] = ACTIONS(2604), - [anon_sym_AMP_AMP] = ACTIONS(2604), - [anon_sym_or] = ACTIONS(2604), - [anon_sym_PIPE_PIPE] = ACTIONS(2604), - [sym_let_operator] = ACTIONS(2606), - [sym__capitalized_identifier] = ACTIONS(2606), - [aux_sym_directive_token1] = ACTIONS(2604), - [aux_sym_tag_token1] = ACTIONS(2606), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1420] = { - [sym_attribute] = STATE(1420), - [sym__identifier] = ACTIONS(2614), - [anon_sym_SEMI_SEMI] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2614), - [anon_sym_TILDE] = ACTIONS(2614), - [anon_sym_QMARK] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2616), - [anon_sym_external] = ACTIONS(2614), - [anon_sym_type] = ACTIONS(2614), - [anon_sym_COMMA] = ACTIONS(2616), - [anon_sym_PLUS] = ACTIONS(2614), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_COLON_EQ] = ACTIONS(2616), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_RBRACK] = ACTIONS(2616), - [anon_sym_true] = ACTIONS(2614), - [anon_sym_false] = ACTIONS(2614), - [anon_sym_DOT] = ACTIONS(2616), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_exception] = ACTIONS(2614), - [anon_sym_module] = ACTIONS(2614), - [anon_sym_open] = ACTIONS(2614), - [anon_sym_include] = ACTIONS(2614), - [anon_sym_class] = ACTIONS(2614), - [anon_sym_end] = ACTIONS(2614), - [anon_sym_object] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2616), - [anon_sym_LBRACK_PIPE] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(2614), - [anon_sym_else] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2614), - [anon_sym_LBRACE_LT] = ACTIONS(2616), - [anon_sym_begin] = ACTIONS(2614), - [sym_ocamlyacc_value] = ACTIONS(2616), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2614), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2616), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2614), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2616), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2616), - [aux_sym_number_token1] = ACTIONS(2616), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_DQUOTE] = ACTIONS(2616), - [sym_prefix_operator] = ACTIONS(2616), - [anon_sym_PLUS_DOT] = ACTIONS(2614), - [anon_sym_DASH_DOT] = ACTIONS(2614), - [sym_hash_operator] = ACTIONS(2616), - [aux_sym__pow_operator_token1] = ACTIONS(2616), - [anon_sym_lsl] = ACTIONS(2614), - [anon_sym_lsr] = ACTIONS(2614), - [anon_sym_asr] = ACTIONS(2614), - [aux_sym__mult_operator_token1] = ACTIONS(2614), - [anon_sym_mod] = ACTIONS(2614), - [anon_sym_land] = ACTIONS(2614), - [anon_sym_lor] = ACTIONS(2614), - [anon_sym_lxor] = ACTIONS(2614), - [aux_sym__add_operator_token1] = ACTIONS(2614), - [sym__concat_operator] = ACTIONS(2616), - [sym__rel_operator] = ACTIONS(2614), - [anon_sym_AMP_AMP] = ACTIONS(2614), - [anon_sym_or] = ACTIONS(2614), - [anon_sym_PIPE_PIPE] = ACTIONS(2614), - [sym_let_operator] = ACTIONS(2616), - [sym__capitalized_identifier] = ACTIONS(2616), - [aux_sym_directive_token1] = ACTIONS(2614), - [aux_sym_tag_token1] = ACTIONS(2616), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1421] = { - [sym_attribute] = STATE(1421), - [sym__identifier] = ACTIONS(2939), - [anon_sym_SEMI_SEMI] = ACTIONS(2941), - [anon_sym_let] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_external] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2939), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_true] = ACTIONS(2939), - [anon_sym_false] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2941), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_exception] = ACTIONS(2939), - [anon_sym_module] = ACTIONS(2939), - [anon_sym_open] = ACTIONS(2939), - [anon_sym_include] = ACTIONS(2939), - [anon_sym_class] = ACTIONS(2939), - [anon_sym_end] = ACTIONS(2939), - [anon_sym_object] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_COLON_COLON] = ACTIONS(2941), - [anon_sym_LBRACK_PIPE] = ACTIONS(2941), - [anon_sym_else] = ACTIONS(2939), - [anon_sym_new] = ACTIONS(2939), - [anon_sym_LBRACE_LT] = ACTIONS(2941), - [anon_sym_begin] = ACTIONS(2939), - [sym_ocamlyacc_value] = ACTIONS(2941), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2939), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2941), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2939), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2941), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2941), - [aux_sym_number_token1] = ACTIONS(2941), - [anon_sym_SQUOTE] = ACTIONS(2941), - [anon_sym_DQUOTE] = ACTIONS(2941), - [sym_prefix_operator] = ACTIONS(2941), - [anon_sym_PLUS_DOT] = ACTIONS(2939), - [anon_sym_DASH_DOT] = ACTIONS(2939), - [sym_hash_operator] = ACTIONS(2941), - [aux_sym__pow_operator_token1] = ACTIONS(2941), - [anon_sym_lsl] = ACTIONS(2939), - [anon_sym_lsr] = ACTIONS(2939), - [anon_sym_asr] = ACTIONS(2939), - [aux_sym__mult_operator_token1] = ACTIONS(2939), - [anon_sym_mod] = ACTIONS(2939), - [anon_sym_land] = ACTIONS(2939), - [anon_sym_lor] = ACTIONS(2939), - [anon_sym_lxor] = ACTIONS(2939), - [aux_sym__add_operator_token1] = ACTIONS(2939), - [sym__concat_operator] = ACTIONS(2941), - [sym__rel_operator] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [sym_let_operator] = ACTIONS(2941), - [sym__capitalized_identifier] = ACTIONS(2941), - [aux_sym_directive_token1] = ACTIONS(2939), - [aux_sym_tag_token1] = ACTIONS(2941), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1422] = { - [sym_attribute] = STATE(1422), - [sym__identifier] = ACTIONS(2959), - [anon_sym_SEMI_SEMI] = ACTIONS(2961), - [anon_sym_let] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_external] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2959), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2961), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_exception] = ACTIONS(2959), - [anon_sym_module] = ACTIONS(2959), - [anon_sym_open] = ACTIONS(2959), - [anon_sym_include] = ACTIONS(2959), - [anon_sym_class] = ACTIONS(2959), - [anon_sym_end] = ACTIONS(2959), - [anon_sym_object] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_COLON_COLON] = ACTIONS(2961), - [anon_sym_LBRACK_PIPE] = ACTIONS(2961), - [anon_sym_else] = ACTIONS(2959), - [anon_sym_new] = ACTIONS(2959), - [anon_sym_LBRACE_LT] = ACTIONS(2961), - [anon_sym_begin] = ACTIONS(2959), - [sym_ocamlyacc_value] = ACTIONS(2961), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2959), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2961), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2959), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2961), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2961), - [aux_sym_number_token1] = ACTIONS(2961), - [anon_sym_SQUOTE] = ACTIONS(2961), - [anon_sym_DQUOTE] = ACTIONS(2961), - [sym_prefix_operator] = ACTIONS(2961), - [anon_sym_PLUS_DOT] = ACTIONS(2959), - [anon_sym_DASH_DOT] = ACTIONS(2959), - [sym_hash_operator] = ACTIONS(2961), - [aux_sym__pow_operator_token1] = ACTIONS(2961), - [anon_sym_lsl] = ACTIONS(2959), - [anon_sym_lsr] = ACTIONS(2959), - [anon_sym_asr] = ACTIONS(2959), - [aux_sym__mult_operator_token1] = ACTIONS(2959), - [anon_sym_mod] = ACTIONS(2959), - [anon_sym_land] = ACTIONS(2959), - [anon_sym_lor] = ACTIONS(2959), - [anon_sym_lxor] = ACTIONS(2959), - [aux_sym__add_operator_token1] = ACTIONS(2959), - [sym__concat_operator] = ACTIONS(2961), - [sym__rel_operator] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [sym_let_operator] = ACTIONS(2961), - [sym__capitalized_identifier] = ACTIONS(2961), - [aux_sym_directive_token1] = ACTIONS(2959), - [aux_sym_tag_token1] = ACTIONS(2961), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1423] = { - [sym_attribute] = STATE(1423), - [sym__identifier] = ACTIONS(3109), - [anon_sym_SEMI_SEMI] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_and] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_external] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_exception] = ACTIONS(3109), - [anon_sym_module] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_include] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym_let_operator] = ACTIONS(3111), - [sym_and_operator] = ACTIONS(3111), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_directive_token1] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1424] = { - [sym_attribute] = STATE(1424), - [sym__identifier] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2973), - [anon_sym_let] = ACTIONS(2971), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_QMARK] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_external] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_LBRACK] = ACTIONS(2971), - [anon_sym_RBRACK] = ACTIONS(2973), - [anon_sym_true] = ACTIONS(2971), - [anon_sym_false] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_exception] = ACTIONS(2971), - [anon_sym_module] = ACTIONS(2971), - [anon_sym_open] = ACTIONS(2971), - [anon_sym_include] = ACTIONS(2971), - [anon_sym_class] = ACTIONS(2971), - [anon_sym_end] = ACTIONS(2971), - [anon_sym_object] = ACTIONS(2971), - [anon_sym_AMP] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_COLON_COLON] = ACTIONS(2973), - [anon_sym_LBRACK_PIPE] = ACTIONS(2973), - [anon_sym_else] = ACTIONS(2971), - [anon_sym_new] = ACTIONS(2971), - [anon_sym_LBRACE_LT] = ACTIONS(2973), - [anon_sym_begin] = ACTIONS(2971), - [sym_ocamlyacc_value] = ACTIONS(2973), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2971), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2973), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2971), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2973), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2973), - [aux_sym_number_token1] = ACTIONS(2973), - [anon_sym_SQUOTE] = ACTIONS(2973), - [anon_sym_DQUOTE] = ACTIONS(2973), - [sym_prefix_operator] = ACTIONS(2973), - [anon_sym_PLUS_DOT] = ACTIONS(2971), - [anon_sym_DASH_DOT] = ACTIONS(2971), - [sym_hash_operator] = ACTIONS(2973), - [aux_sym__pow_operator_token1] = ACTIONS(2973), - [anon_sym_lsl] = ACTIONS(2971), - [anon_sym_lsr] = ACTIONS(2971), - [anon_sym_asr] = ACTIONS(2971), - [aux_sym__mult_operator_token1] = ACTIONS(2971), - [anon_sym_mod] = ACTIONS(2971), - [anon_sym_land] = ACTIONS(2971), - [anon_sym_lor] = ACTIONS(2971), - [anon_sym_lxor] = ACTIONS(2971), - [aux_sym__add_operator_token1] = ACTIONS(2971), - [sym__concat_operator] = ACTIONS(2973), - [sym__rel_operator] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_or] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym_let_operator] = ACTIONS(2973), - [sym__capitalized_identifier] = ACTIONS(2973), - [aux_sym_directive_token1] = ACTIONS(2971), - [aux_sym_tag_token1] = ACTIONS(2973), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1425] = { - [sym_attribute] = STATE(1425), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(3075), - [anon_sym_let] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_external] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3073), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_true] = ACTIONS(3073), - [anon_sym_false] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3075), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_exception] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_open] = ACTIONS(3073), - [anon_sym_include] = ACTIONS(3073), - [anon_sym_class] = ACTIONS(3073), - [anon_sym_end] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_COLON_COLON] = ACTIONS(3075), - [anon_sym_LBRACK_PIPE] = ACTIONS(3075), - [anon_sym_else] = ACTIONS(3073), - [anon_sym_new] = ACTIONS(3073), - [anon_sym_LBRACE_LT] = ACTIONS(3075), - [anon_sym_begin] = ACTIONS(3073), - [sym_ocamlyacc_value] = ACTIONS(3075), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3073), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3075), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3073), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3075), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3075), - [aux_sym_number_token1] = ACTIONS(3075), - [anon_sym_SQUOTE] = ACTIONS(3075), - [anon_sym_DQUOTE] = ACTIONS(3075), - [sym_prefix_operator] = ACTIONS(3075), - [anon_sym_PLUS_DOT] = ACTIONS(3073), - [anon_sym_DASH_DOT] = ACTIONS(3073), - [sym_hash_operator] = ACTIONS(3075), - [aux_sym__pow_operator_token1] = ACTIONS(3075), - [anon_sym_lsl] = ACTIONS(3073), - [anon_sym_lsr] = ACTIONS(3073), - [anon_sym_asr] = ACTIONS(3073), - [aux_sym__mult_operator_token1] = ACTIONS(3073), - [anon_sym_mod] = ACTIONS(3073), - [anon_sym_land] = ACTIONS(3073), - [anon_sym_lor] = ACTIONS(3073), - [anon_sym_lxor] = ACTIONS(3073), - [aux_sym__add_operator_token1] = ACTIONS(3073), - [sym__concat_operator] = ACTIONS(3075), - [sym__rel_operator] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [sym_let_operator] = ACTIONS(3075), - [sym__capitalized_identifier] = ACTIONS(3075), - [aux_sym_directive_token1] = ACTIONS(3073), - [aux_sym_tag_token1] = ACTIONS(3075), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1426] = { - [sym_attribute] = STATE(1426), - [sym__identifier] = ACTIONS(2997), - [anon_sym_SEMI_SEMI] = ACTIONS(2999), - [anon_sym_let] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_external] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2997), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_true] = ACTIONS(2997), - [anon_sym_false] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2999), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_exception] = ACTIONS(2997), - [anon_sym_module] = ACTIONS(2997), - [anon_sym_open] = ACTIONS(2997), - [anon_sym_include] = ACTIONS(2997), - [anon_sym_class] = ACTIONS(2997), - [anon_sym_end] = ACTIONS(2997), - [anon_sym_object] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_COLON_COLON] = ACTIONS(2999), - [anon_sym_LBRACK_PIPE] = ACTIONS(2999), - [anon_sym_else] = ACTIONS(2997), - [anon_sym_new] = ACTIONS(2997), - [anon_sym_LBRACE_LT] = ACTIONS(2999), - [anon_sym_begin] = ACTIONS(2997), - [sym_ocamlyacc_value] = ACTIONS(2999), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2997), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2999), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2997), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2999), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2999), - [aux_sym_number_token1] = ACTIONS(2999), - [anon_sym_SQUOTE] = ACTIONS(2999), - [anon_sym_DQUOTE] = ACTIONS(2999), - [sym_prefix_operator] = ACTIONS(2999), - [anon_sym_PLUS_DOT] = ACTIONS(2997), - [anon_sym_DASH_DOT] = ACTIONS(2997), - [sym_hash_operator] = ACTIONS(2999), - [aux_sym__pow_operator_token1] = ACTIONS(2999), - [anon_sym_lsl] = ACTIONS(2997), - [anon_sym_lsr] = ACTIONS(2997), - [anon_sym_asr] = ACTIONS(2997), - [aux_sym__mult_operator_token1] = ACTIONS(2997), - [anon_sym_mod] = ACTIONS(2997), - [anon_sym_land] = ACTIONS(2997), - [anon_sym_lor] = ACTIONS(2997), - [anon_sym_lxor] = ACTIONS(2997), - [aux_sym__add_operator_token1] = ACTIONS(2997), - [sym__concat_operator] = ACTIONS(2999), - [sym__rel_operator] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [sym_let_operator] = ACTIONS(2999), - [sym__capitalized_identifier] = ACTIONS(2999), - [aux_sym_directive_token1] = ACTIONS(2997), - [aux_sym_tag_token1] = ACTIONS(2999), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1427] = { - [sym_attribute] = STATE(1427), - [sym__identifier] = ACTIONS(3190), - [anon_sym_COLON_GT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_RPAREN] = ACTIONS(3192), - [anon_sym_COMMA] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_COLON_EQ] = ACTIONS(3192), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [anon_sym_COLON2] = ACTIONS(3190), - [anon_sym_DASH_GT] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_constraint] = ACTIONS(3190), - [anon_sym_val] = ACTIONS(3190), - [anon_sym_end] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_inherit] = ACTIONS(3190), - [anon_sym_method] = ACTIONS(3190), - [anon_sym_initializer] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_PIPE] = ACTIONS(3192), - [anon_sym_then] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_LBRACE_LT] = ACTIONS(3192), - [anon_sym_GT_RBRACE] = ACTIONS(3192), - [anon_sym_begin] = ACTIONS(3190), - [sym_ocamlyacc_value] = ACTIONS(3192), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3190), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3192), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3192), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3192), - [aux_sym_number_token1] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_prefix_operator] = ACTIONS(3192), - [anon_sym_PLUS_DOT] = ACTIONS(3190), - [anon_sym_DASH_DOT] = ACTIONS(3190), - [aux_sym__pow_operator_token1] = ACTIONS(3192), - [anon_sym_lsl] = ACTIONS(3190), - [anon_sym_lsr] = ACTIONS(3190), - [anon_sym_asr] = ACTIONS(3190), - [aux_sym__mult_operator_token1] = ACTIONS(3190), - [anon_sym_mod] = ACTIONS(3190), - [anon_sym_land] = ACTIONS(3190), - [anon_sym_lor] = ACTIONS(3190), - [anon_sym_lxor] = ACTIONS(3190), - [aux_sym__add_operator_token1] = ACTIONS(3190), - [sym__concat_operator] = ACTIONS(3192), - [sym__rel_operator] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_or] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [sym__capitalized_identifier] = ACTIONS(3192), - [aux_sym_tag_token1] = ACTIONS(3192), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1428] = { - [sym_attribute] = STATE(1428), - [sym__identifier] = ACTIONS(3194), - [anon_sym_SEMI_SEMI] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_and] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_COMMA] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_COLON_EQ] = ACTIONS(3196), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_exception] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_include] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_end] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_in] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_PIPE] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_LBRACE_LT] = ACTIONS(3196), - [anon_sym_begin] = ACTIONS(3194), - [sym_ocamlyacc_value] = ACTIONS(3196), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3194), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3196), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3196), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3196), - [aux_sym_number_token1] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_prefix_operator] = ACTIONS(3196), - [anon_sym_PLUS_DOT] = ACTIONS(3194), - [anon_sym_DASH_DOT] = ACTIONS(3194), - [aux_sym__pow_operator_token1] = ACTIONS(3196), - [anon_sym_lsl] = ACTIONS(3194), - [anon_sym_lsr] = ACTIONS(3194), - [anon_sym_asr] = ACTIONS(3194), - [aux_sym__mult_operator_token1] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3194), - [anon_sym_land] = ACTIONS(3194), - [anon_sym_lor] = ACTIONS(3194), - [anon_sym_lxor] = ACTIONS(3194), - [aux_sym__add_operator_token1] = ACTIONS(3194), - [sym__concat_operator] = ACTIONS(3196), - [sym__rel_operator] = ACTIONS(3194), - [anon_sym_AMP_AMP] = ACTIONS(3194), - [anon_sym_or] = ACTIONS(3194), - [anon_sym_PIPE_PIPE] = ACTIONS(3194), - [sym_let_operator] = ACTIONS(3196), - [sym_and_operator] = ACTIONS(3196), - [sym__capitalized_identifier] = ACTIONS(3196), - [aux_sym_directive_token1] = ACTIONS(3196), - [aux_sym_tag_token1] = ACTIONS(3196), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1429] = { - [sym_attribute] = STATE(1429), - [sym__identifier] = ACTIONS(2831), - [anon_sym_SEMI_SEMI] = ACTIONS(2833), - [anon_sym_let] = ACTIONS(2831), - [anon_sym_TILDE] = ACTIONS(2831), - [anon_sym_QMARK] = ACTIONS(2831), - [anon_sym_LPAREN] = ACTIONS(2833), - [anon_sym_external] = ACTIONS(2831), - [anon_sym_type] = ACTIONS(2831), - [anon_sym_COMMA] = ACTIONS(2833), - [anon_sym_PLUS] = ACTIONS(2831), - [anon_sym_DASH] = ACTIONS(2831), - [anon_sym_COLON_EQ] = ACTIONS(2833), - [anon_sym_PIPE] = ACTIONS(2831), - [anon_sym_LBRACK] = ACTIONS(2831), - [anon_sym_RBRACK] = ACTIONS(2833), - [anon_sym_true] = ACTIONS(2831), - [anon_sym_false] = ACTIONS(2831), - [anon_sym_DOT] = ACTIONS(2833), - [anon_sym_LBRACE] = ACTIONS(2831), - [anon_sym_SEMI] = ACTIONS(2831), - [anon_sym_exception] = ACTIONS(2831), - [anon_sym_module] = ACTIONS(2831), - [anon_sym_open] = ACTIONS(2831), - [anon_sym_include] = ACTIONS(2831), - [anon_sym_class] = ACTIONS(2831), - [anon_sym_end] = ACTIONS(2831), - [anon_sym_object] = ACTIONS(2831), - [anon_sym_AMP] = ACTIONS(2831), - [anon_sym_POUND] = ACTIONS(2831), - [anon_sym_COLON_COLON] = ACTIONS(2833), - [anon_sym_LBRACK_PIPE] = ACTIONS(2833), - [anon_sym_else] = ACTIONS(2831), - [anon_sym_new] = ACTIONS(2831), - [anon_sym_LBRACE_LT] = ACTIONS(2833), - [anon_sym_begin] = ACTIONS(2831), - [sym_ocamlyacc_value] = ACTIONS(2833), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2831), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2833), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2831), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2833), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2833), - [aux_sym_number_token1] = ACTIONS(2833), - [anon_sym_SQUOTE] = ACTIONS(2833), - [anon_sym_DQUOTE] = ACTIONS(2833), - [sym_prefix_operator] = ACTIONS(2833), - [anon_sym_PLUS_DOT] = ACTIONS(2831), - [anon_sym_DASH_DOT] = ACTIONS(2831), - [sym_hash_operator] = ACTIONS(2833), - [aux_sym__pow_operator_token1] = ACTIONS(2833), - [anon_sym_lsl] = ACTIONS(2831), - [anon_sym_lsr] = ACTIONS(2831), - [anon_sym_asr] = ACTIONS(2831), - [aux_sym__mult_operator_token1] = ACTIONS(2831), - [anon_sym_mod] = ACTIONS(2831), - [anon_sym_land] = ACTIONS(2831), - [anon_sym_lor] = ACTIONS(2831), - [anon_sym_lxor] = ACTIONS(2831), - [aux_sym__add_operator_token1] = ACTIONS(2831), - [sym__concat_operator] = ACTIONS(2833), - [sym__rel_operator] = ACTIONS(2831), - [anon_sym_AMP_AMP] = ACTIONS(2831), - [anon_sym_or] = ACTIONS(2831), - [anon_sym_PIPE_PIPE] = ACTIONS(2831), - [sym_let_operator] = ACTIONS(2833), - [sym__capitalized_identifier] = ACTIONS(2833), - [aux_sym_directive_token1] = ACTIONS(2831), - [aux_sym_tag_token1] = ACTIONS(2833), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1430] = { - [sym_attribute] = STATE(1430), - [sym__identifier] = ACTIONS(2865), - [anon_sym_SEMI_SEMI] = ACTIONS(2867), - [anon_sym_let] = ACTIONS(2865), - [anon_sym_TILDE] = ACTIONS(2865), - [anon_sym_QMARK] = ACTIONS(2865), - [anon_sym_LPAREN] = ACTIONS(2867), - [anon_sym_external] = ACTIONS(2865), - [anon_sym_type] = ACTIONS(2865), - [anon_sym_COMMA] = ACTIONS(2867), - [anon_sym_PLUS] = ACTIONS(2865), - [anon_sym_DASH] = ACTIONS(2865), - [anon_sym_COLON_EQ] = ACTIONS(2867), - [anon_sym_PIPE] = ACTIONS(2865), - [anon_sym_LBRACK] = ACTIONS(2865), - [anon_sym_RBRACK] = ACTIONS(2867), - [anon_sym_true] = ACTIONS(2865), - [anon_sym_false] = ACTIONS(2865), - [anon_sym_DOT] = ACTIONS(2867), - [anon_sym_LBRACE] = ACTIONS(2865), - [anon_sym_SEMI] = ACTIONS(2865), - [anon_sym_exception] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(2865), - [anon_sym_open] = ACTIONS(2865), - [anon_sym_include] = ACTIONS(2865), - [anon_sym_class] = ACTIONS(2865), - [anon_sym_end] = ACTIONS(2865), - [anon_sym_object] = ACTIONS(2865), - [anon_sym_AMP] = ACTIONS(2865), - [anon_sym_POUND] = ACTIONS(2865), - [anon_sym_COLON_COLON] = ACTIONS(2867), - [anon_sym_LBRACK_PIPE] = ACTIONS(2867), - [anon_sym_else] = ACTIONS(2865), - [anon_sym_new] = ACTIONS(2865), - [anon_sym_LBRACE_LT] = ACTIONS(2867), - [anon_sym_begin] = ACTIONS(2865), - [sym_ocamlyacc_value] = ACTIONS(2867), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2865), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2867), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2865), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2867), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2867), - [aux_sym_number_token1] = ACTIONS(2867), - [anon_sym_SQUOTE] = ACTIONS(2867), - [anon_sym_DQUOTE] = ACTIONS(2867), - [sym_prefix_operator] = ACTIONS(2867), - [anon_sym_PLUS_DOT] = ACTIONS(2865), - [anon_sym_DASH_DOT] = ACTIONS(2865), - [sym_hash_operator] = ACTIONS(2867), - [aux_sym__pow_operator_token1] = ACTIONS(2867), - [anon_sym_lsl] = ACTIONS(2865), - [anon_sym_lsr] = ACTIONS(2865), - [anon_sym_asr] = ACTIONS(2865), - [aux_sym__mult_operator_token1] = ACTIONS(2865), - [anon_sym_mod] = ACTIONS(2865), - [anon_sym_land] = ACTIONS(2865), - [anon_sym_lor] = ACTIONS(2865), - [anon_sym_lxor] = ACTIONS(2865), - [aux_sym__add_operator_token1] = ACTIONS(2865), - [sym__concat_operator] = ACTIONS(2867), - [sym__rel_operator] = ACTIONS(2865), - [anon_sym_AMP_AMP] = ACTIONS(2865), - [anon_sym_or] = ACTIONS(2865), - [anon_sym_PIPE_PIPE] = ACTIONS(2865), - [sym_let_operator] = ACTIONS(2867), - [sym__capitalized_identifier] = ACTIONS(2867), - [aux_sym_directive_token1] = ACTIONS(2865), - [aux_sym_tag_token1] = ACTIONS(2867), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1431] = { - [sym_attribute] = STATE(1431), - [sym__identifier] = ACTIONS(3001), - [anon_sym_SEMI_SEMI] = ACTIONS(3003), - [anon_sym_let] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_external] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(3001), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_true] = ACTIONS(3001), - [anon_sym_false] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_exception] = ACTIONS(3001), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_open] = ACTIONS(3001), - [anon_sym_include] = ACTIONS(3001), - [anon_sym_class] = ACTIONS(3001), - [anon_sym_end] = ACTIONS(3001), - [anon_sym_object] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_COLON_COLON] = ACTIONS(3003), - [anon_sym_LBRACK_PIPE] = ACTIONS(3003), - [anon_sym_else] = ACTIONS(3001), - [anon_sym_new] = ACTIONS(3001), - [anon_sym_LBRACE_LT] = ACTIONS(3003), - [anon_sym_begin] = ACTIONS(3001), - [sym_ocamlyacc_value] = ACTIONS(3003), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3001), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3003), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3001), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3003), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3003), - [aux_sym_number_token1] = ACTIONS(3003), - [anon_sym_SQUOTE] = ACTIONS(3003), - [anon_sym_DQUOTE] = ACTIONS(3003), - [sym_prefix_operator] = ACTIONS(3003), - [anon_sym_PLUS_DOT] = ACTIONS(3001), - [anon_sym_DASH_DOT] = ACTIONS(3001), - [sym_hash_operator] = ACTIONS(3003), - [aux_sym__pow_operator_token1] = ACTIONS(3003), - [anon_sym_lsl] = ACTIONS(3001), - [anon_sym_lsr] = ACTIONS(3001), - [anon_sym_asr] = ACTIONS(3001), - [aux_sym__mult_operator_token1] = ACTIONS(3001), - [anon_sym_mod] = ACTIONS(3001), - [anon_sym_land] = ACTIONS(3001), - [anon_sym_lor] = ACTIONS(3001), - [anon_sym_lxor] = ACTIONS(3001), - [aux_sym__add_operator_token1] = ACTIONS(3001), - [sym__concat_operator] = ACTIONS(3003), - [sym__rel_operator] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [sym_let_operator] = ACTIONS(3003), - [sym__capitalized_identifier] = ACTIONS(3003), - [aux_sym_directive_token1] = ACTIONS(3001), - [aux_sym_tag_token1] = ACTIONS(3003), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1432] = { - [sym_attribute] = STATE(1432), - [sym__identifier] = ACTIONS(3109), - [anon_sym_SEMI_SEMI] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_external] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_exception] = ACTIONS(3109), - [anon_sym_module] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_include] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym_let_operator] = ACTIONS(3111), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_directive_token1] = ACTIONS(3109), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1433] = { - [sym_attribute] = STATE(1433), - [sym__identifier] = ACTIONS(2742), - [anon_sym_SEMI_SEMI] = ACTIONS(2744), - [anon_sym_let] = ACTIONS(2742), - [anon_sym_TILDE] = ACTIONS(2742), - [anon_sym_QMARK] = ACTIONS(2742), - [anon_sym_LPAREN] = ACTIONS(2744), - [anon_sym_external] = ACTIONS(2742), - [anon_sym_type] = ACTIONS(2742), - [anon_sym_COMMA] = ACTIONS(2744), - [anon_sym_PLUS] = ACTIONS(2742), - [anon_sym_DASH] = ACTIONS(2742), - [anon_sym_COLON_EQ] = ACTIONS(2744), - [anon_sym_PIPE] = ACTIONS(2742), - [anon_sym_LBRACK] = ACTIONS(2742), - [anon_sym_RBRACK] = ACTIONS(2744), - [anon_sym_true] = ACTIONS(2742), - [anon_sym_false] = ACTIONS(2742), - [anon_sym_DOT] = ACTIONS(2744), - [anon_sym_LBRACE] = ACTIONS(2742), - [anon_sym_SEMI] = ACTIONS(2742), - [anon_sym_exception] = ACTIONS(2742), - [anon_sym_module] = ACTIONS(2742), - [anon_sym_open] = ACTIONS(2742), - [anon_sym_include] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(2742), - [anon_sym_end] = ACTIONS(2742), - [anon_sym_object] = ACTIONS(2742), - [anon_sym_AMP] = ACTIONS(2742), - [anon_sym_POUND] = ACTIONS(2742), - [anon_sym_COLON_COLON] = ACTIONS(2744), - [anon_sym_LBRACK_PIPE] = ACTIONS(2744), - [anon_sym_else] = ACTIONS(2742), - [anon_sym_new] = ACTIONS(2742), - [anon_sym_LBRACE_LT] = ACTIONS(2744), - [anon_sym_begin] = ACTIONS(2742), - [sym_ocamlyacc_value] = ACTIONS(2744), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2742), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2744), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2742), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2744), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2744), - [aux_sym_number_token1] = ACTIONS(2744), - [anon_sym_SQUOTE] = ACTIONS(2744), - [anon_sym_DQUOTE] = ACTIONS(2744), - [sym_prefix_operator] = ACTIONS(2744), - [anon_sym_PLUS_DOT] = ACTIONS(2742), - [anon_sym_DASH_DOT] = ACTIONS(2742), - [sym_hash_operator] = ACTIONS(2744), - [aux_sym__pow_operator_token1] = ACTIONS(2744), - [anon_sym_lsl] = ACTIONS(2742), - [anon_sym_lsr] = ACTIONS(2742), - [anon_sym_asr] = ACTIONS(2742), - [aux_sym__mult_operator_token1] = ACTIONS(2742), - [anon_sym_mod] = ACTIONS(2742), - [anon_sym_land] = ACTIONS(2742), - [anon_sym_lor] = ACTIONS(2742), - [anon_sym_lxor] = ACTIONS(2742), - [aux_sym__add_operator_token1] = ACTIONS(2742), - [sym__concat_operator] = ACTIONS(2744), - [sym__rel_operator] = ACTIONS(2742), - [anon_sym_AMP_AMP] = ACTIONS(2742), - [anon_sym_or] = ACTIONS(2742), - [anon_sym_PIPE_PIPE] = ACTIONS(2742), - [sym_let_operator] = ACTIONS(2744), - [sym__capitalized_identifier] = ACTIONS(2744), - [aux_sym_directive_token1] = ACTIONS(2742), - [aux_sym_tag_token1] = ACTIONS(2744), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1434] = { - [sym_attribute] = STATE(1434), - [sym__identifier] = ACTIONS(2967), - [anon_sym_SEMI_SEMI] = ACTIONS(2969), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2969), - [anon_sym_external] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2967), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_true] = ACTIONS(2967), - [anon_sym_false] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2969), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_exception] = ACTIONS(2967), - [anon_sym_module] = ACTIONS(2967), - [anon_sym_open] = ACTIONS(2967), - [anon_sym_include] = ACTIONS(2967), - [anon_sym_class] = ACTIONS(2967), - [anon_sym_end] = ACTIONS(2967), - [anon_sym_object] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_COLON_COLON] = ACTIONS(2969), - [anon_sym_LBRACK_PIPE] = ACTIONS(2969), - [anon_sym_else] = ACTIONS(2967), - [anon_sym_new] = ACTIONS(2967), - [anon_sym_LBRACE_LT] = ACTIONS(2969), - [anon_sym_begin] = ACTIONS(2967), - [sym_ocamlyacc_value] = ACTIONS(2969), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2967), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2969), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2967), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2969), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2969), - [aux_sym_number_token1] = ACTIONS(2969), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [sym_prefix_operator] = ACTIONS(2969), - [anon_sym_PLUS_DOT] = ACTIONS(2967), - [anon_sym_DASH_DOT] = ACTIONS(2967), - [sym_hash_operator] = ACTIONS(2969), - [aux_sym__pow_operator_token1] = ACTIONS(2969), - [anon_sym_lsl] = ACTIONS(2967), - [anon_sym_lsr] = ACTIONS(2967), - [anon_sym_asr] = ACTIONS(2967), - [aux_sym__mult_operator_token1] = ACTIONS(2967), - [anon_sym_mod] = ACTIONS(2967), - [anon_sym_land] = ACTIONS(2967), - [anon_sym_lor] = ACTIONS(2967), - [anon_sym_lxor] = ACTIONS(2967), - [aux_sym__add_operator_token1] = ACTIONS(2967), - [sym__concat_operator] = ACTIONS(2969), - [sym__rel_operator] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [sym_let_operator] = ACTIONS(2969), - [sym__capitalized_identifier] = ACTIONS(2969), - [aux_sym_directive_token1] = ACTIONS(2967), - [aux_sym_tag_token1] = ACTIONS(2969), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1435] = { - [sym_attribute] = STATE(1435), - [sym__identifier] = ACTIONS(2845), - [anon_sym_SEMI_SEMI] = ACTIONS(2847), - [anon_sym_let] = ACTIONS(2845), - [anon_sym_TILDE] = ACTIONS(2845), - [anon_sym_QMARK] = ACTIONS(2845), - [anon_sym_LPAREN] = ACTIONS(2847), - [anon_sym_external] = ACTIONS(2845), - [anon_sym_type] = ACTIONS(2845), - [anon_sym_COMMA] = ACTIONS(2847), - [anon_sym_PLUS] = ACTIONS(2845), - [anon_sym_DASH] = ACTIONS(2845), - [anon_sym_COLON_EQ] = ACTIONS(2847), - [anon_sym_PIPE] = ACTIONS(2845), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(2847), - [anon_sym_true] = ACTIONS(2845), - [anon_sym_false] = ACTIONS(2845), - [anon_sym_DOT] = ACTIONS(2849), - [anon_sym_LBRACE] = ACTIONS(2845), - [anon_sym_SEMI] = ACTIONS(2845), - [anon_sym_exception] = ACTIONS(2845), - [anon_sym_module] = ACTIONS(2845), - [anon_sym_open] = ACTIONS(2845), - [anon_sym_include] = ACTIONS(2845), - [anon_sym_class] = ACTIONS(2845), - [anon_sym_end] = ACTIONS(2845), - [anon_sym_object] = ACTIONS(2845), - [anon_sym_AMP] = ACTIONS(2845), - [anon_sym_POUND] = ACTIONS(2845), - [anon_sym_COLON_COLON] = ACTIONS(2847), - [anon_sym_LBRACK_PIPE] = ACTIONS(2847), - [anon_sym_else] = ACTIONS(2845), - [anon_sym_new] = ACTIONS(2845), - [anon_sym_LBRACE_LT] = ACTIONS(2847), - [anon_sym_begin] = ACTIONS(2845), - [sym_ocamlyacc_value] = ACTIONS(2847), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2845), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2847), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2845), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2847), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2847), - [aux_sym_number_token1] = ACTIONS(2847), - [anon_sym_SQUOTE] = ACTIONS(2847), - [anon_sym_DQUOTE] = ACTIONS(2847), - [sym_prefix_operator] = ACTIONS(2847), - [anon_sym_PLUS_DOT] = ACTIONS(2845), - [anon_sym_DASH_DOT] = ACTIONS(2845), - [sym_hash_operator] = ACTIONS(2847), - [aux_sym__pow_operator_token1] = ACTIONS(2847), - [anon_sym_lsl] = ACTIONS(2845), - [anon_sym_lsr] = ACTIONS(2845), - [anon_sym_asr] = ACTIONS(2845), - [aux_sym__mult_operator_token1] = ACTIONS(2845), - [anon_sym_mod] = ACTIONS(2845), - [anon_sym_land] = ACTIONS(2845), - [anon_sym_lor] = ACTIONS(2845), - [anon_sym_lxor] = ACTIONS(2845), - [aux_sym__add_operator_token1] = ACTIONS(2845), - [sym__concat_operator] = ACTIONS(2847), - [sym__rel_operator] = ACTIONS(2845), - [anon_sym_AMP_AMP] = ACTIONS(2845), - [anon_sym_or] = ACTIONS(2845), - [anon_sym_PIPE_PIPE] = ACTIONS(2845), - [sym_let_operator] = ACTIONS(2847), - [sym__capitalized_identifier] = ACTIONS(2847), - [aux_sym_directive_token1] = ACTIONS(2845), - [aux_sym_tag_token1] = ACTIONS(2847), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1436] = { - [sym_attribute] = STATE(1436), - [sym__identifier] = ACTIONS(2807), - [anon_sym_SEMI_SEMI] = ACTIONS(2809), - [anon_sym_let] = ACTIONS(2807), - [anon_sym_TILDE] = ACTIONS(2807), - [anon_sym_QMARK] = ACTIONS(2807), - [anon_sym_LPAREN] = ACTIONS(2809), - [anon_sym_external] = ACTIONS(2807), - [anon_sym_type] = ACTIONS(2807), - [anon_sym_COMMA] = ACTIONS(2809), - [anon_sym_PLUS] = ACTIONS(2807), - [anon_sym_DASH] = ACTIONS(2807), - [anon_sym_COLON_EQ] = ACTIONS(2809), - [anon_sym_PIPE] = ACTIONS(2807), - [anon_sym_LBRACK] = ACTIONS(2807), - [anon_sym_RBRACK] = ACTIONS(2809), - [anon_sym_true] = ACTIONS(2807), - [anon_sym_false] = ACTIONS(2807), - [anon_sym_DOT] = ACTIONS(2809), - [anon_sym_LBRACE] = ACTIONS(2807), - [anon_sym_SEMI] = ACTIONS(2807), - [anon_sym_exception] = ACTIONS(2807), - [anon_sym_module] = ACTIONS(2807), - [anon_sym_open] = ACTIONS(2807), - [anon_sym_include] = ACTIONS(2807), - [anon_sym_class] = ACTIONS(2807), - [anon_sym_end] = ACTIONS(2807), - [anon_sym_object] = ACTIONS(2807), - [anon_sym_AMP] = ACTIONS(2807), - [anon_sym_POUND] = ACTIONS(2807), - [anon_sym_COLON_COLON] = ACTIONS(2809), - [anon_sym_LBRACK_PIPE] = ACTIONS(2809), - [anon_sym_else] = ACTIONS(2807), - [anon_sym_new] = ACTIONS(2807), - [anon_sym_LBRACE_LT] = ACTIONS(2809), - [anon_sym_begin] = ACTIONS(2807), - [sym_ocamlyacc_value] = ACTIONS(2809), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2807), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2809), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2807), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2809), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2809), - [aux_sym_number_token1] = ACTIONS(2809), - [anon_sym_SQUOTE] = ACTIONS(2809), - [anon_sym_DQUOTE] = ACTIONS(2809), - [sym_prefix_operator] = ACTIONS(2809), - [anon_sym_PLUS_DOT] = ACTIONS(2807), - [anon_sym_DASH_DOT] = ACTIONS(2807), - [sym_hash_operator] = ACTIONS(2809), - [aux_sym__pow_operator_token1] = ACTIONS(2809), - [anon_sym_lsl] = ACTIONS(2807), - [anon_sym_lsr] = ACTIONS(2807), - [anon_sym_asr] = ACTIONS(2807), - [aux_sym__mult_operator_token1] = ACTIONS(2807), - [anon_sym_mod] = ACTIONS(2807), - [anon_sym_land] = ACTIONS(2807), - [anon_sym_lor] = ACTIONS(2807), - [anon_sym_lxor] = ACTIONS(2807), - [aux_sym__add_operator_token1] = ACTIONS(2807), - [sym__concat_operator] = ACTIONS(2809), - [sym__rel_operator] = ACTIONS(2807), - [anon_sym_AMP_AMP] = ACTIONS(2807), - [anon_sym_or] = ACTIONS(2807), - [anon_sym_PIPE_PIPE] = ACTIONS(2807), - [sym_let_operator] = ACTIONS(2809), - [sym__capitalized_identifier] = ACTIONS(2809), - [aux_sym_directive_token1] = ACTIONS(2807), - [aux_sym_tag_token1] = ACTIONS(2809), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1437] = { - [sym_attribute] = STATE(1437), - [sym__identifier] = ACTIONS(2879), - [anon_sym_SEMI_SEMI] = ACTIONS(2881), - [anon_sym_let] = ACTIONS(2879), - [anon_sym_TILDE] = ACTIONS(2879), - [anon_sym_QMARK] = ACTIONS(2879), - [anon_sym_LPAREN] = ACTIONS(2881), - [anon_sym_external] = ACTIONS(2879), - [anon_sym_type] = ACTIONS(2879), - [anon_sym_COMMA] = ACTIONS(2881), - [anon_sym_PLUS] = ACTIONS(2879), - [anon_sym_DASH] = ACTIONS(2879), - [anon_sym_COLON_EQ] = ACTIONS(2881), - [anon_sym_PIPE] = ACTIONS(2879), - [anon_sym_LBRACK] = ACTIONS(2879), - [anon_sym_RBRACK] = ACTIONS(2881), - [anon_sym_true] = ACTIONS(2879), - [anon_sym_false] = ACTIONS(2879), - [anon_sym_DOT] = ACTIONS(2881), - [anon_sym_LBRACE] = ACTIONS(2879), - [anon_sym_SEMI] = ACTIONS(2879), - [anon_sym_exception] = ACTIONS(2879), - [anon_sym_module] = ACTIONS(2879), - [anon_sym_open] = ACTIONS(2879), - [anon_sym_include] = ACTIONS(2879), - [anon_sym_class] = ACTIONS(2879), - [anon_sym_end] = ACTIONS(2879), - [anon_sym_object] = ACTIONS(2879), - [anon_sym_AMP] = ACTIONS(2879), - [anon_sym_POUND] = ACTIONS(2879), - [anon_sym_COLON_COLON] = ACTIONS(2881), - [anon_sym_LBRACK_PIPE] = ACTIONS(2881), - [anon_sym_else] = ACTIONS(2879), - [anon_sym_new] = ACTIONS(2879), - [anon_sym_LBRACE_LT] = ACTIONS(2881), - [anon_sym_begin] = ACTIONS(2879), - [sym_ocamlyacc_value] = ACTIONS(2881), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2879), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2881), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2879), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2881), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2881), - [aux_sym_number_token1] = ACTIONS(2881), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2881), - [sym_prefix_operator] = ACTIONS(2881), - [anon_sym_PLUS_DOT] = ACTIONS(2879), - [anon_sym_DASH_DOT] = ACTIONS(2879), - [sym_hash_operator] = ACTIONS(2881), - [aux_sym__pow_operator_token1] = ACTIONS(2881), - [anon_sym_lsl] = ACTIONS(2879), - [anon_sym_lsr] = ACTIONS(2879), - [anon_sym_asr] = ACTIONS(2879), - [aux_sym__mult_operator_token1] = ACTIONS(2879), - [anon_sym_mod] = ACTIONS(2879), - [anon_sym_land] = ACTIONS(2879), - [anon_sym_lor] = ACTIONS(2879), - [anon_sym_lxor] = ACTIONS(2879), - [aux_sym__add_operator_token1] = ACTIONS(2879), - [sym__concat_operator] = ACTIONS(2881), - [sym__rel_operator] = ACTIONS(2879), - [anon_sym_AMP_AMP] = ACTIONS(2879), - [anon_sym_or] = ACTIONS(2879), - [anon_sym_PIPE_PIPE] = ACTIONS(2879), - [sym_let_operator] = ACTIONS(2881), - [sym__capitalized_identifier] = ACTIONS(2881), - [aux_sym_directive_token1] = ACTIONS(2879), - [aux_sym_tag_token1] = ACTIONS(2881), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1438] = { - [sym_attribute] = STATE(1438), - [sym__identifier] = ACTIONS(2680), - [anon_sym_SEMI_SEMI] = ACTIONS(2682), - [anon_sym_let] = ACTIONS(2680), - [anon_sym_TILDE] = ACTIONS(2680), - [anon_sym_QMARK] = ACTIONS(2680), - [anon_sym_LPAREN] = ACTIONS(2682), - [anon_sym_external] = ACTIONS(2680), - [anon_sym_type] = ACTIONS(2680), - [anon_sym_COMMA] = ACTIONS(2682), - [anon_sym_PLUS] = ACTIONS(2680), - [anon_sym_DASH] = ACTIONS(2680), - [anon_sym_COLON_EQ] = ACTIONS(2682), - [anon_sym_PIPE] = ACTIONS(2680), - [anon_sym_LBRACK] = ACTIONS(2680), - [anon_sym_RBRACK] = ACTIONS(2682), - [anon_sym_true] = ACTIONS(2680), - [anon_sym_false] = ACTIONS(2680), - [anon_sym_DOT] = ACTIONS(2682), - [anon_sym_LBRACE] = ACTIONS(2680), - [anon_sym_SEMI] = ACTIONS(2680), - [anon_sym_exception] = ACTIONS(2680), - [anon_sym_module] = ACTIONS(2680), - [anon_sym_open] = ACTIONS(2680), - [anon_sym_include] = ACTIONS(2680), - [anon_sym_class] = ACTIONS(2680), - [anon_sym_end] = ACTIONS(2680), - [anon_sym_object] = ACTIONS(2680), - [anon_sym_AMP] = ACTIONS(2680), - [anon_sym_POUND] = ACTIONS(2680), - [anon_sym_COLON_COLON] = ACTIONS(2682), - [anon_sym_LBRACK_PIPE] = ACTIONS(2682), - [anon_sym_else] = ACTIONS(2680), - [anon_sym_new] = ACTIONS(2680), - [anon_sym_LBRACE_LT] = ACTIONS(2682), - [anon_sym_begin] = ACTIONS(2680), - [sym_ocamlyacc_value] = ACTIONS(2682), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2680), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2682), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2680), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2682), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2682), - [aux_sym_number_token1] = ACTIONS(2682), - [anon_sym_SQUOTE] = ACTIONS(2682), - [anon_sym_DQUOTE] = ACTIONS(2682), - [sym_prefix_operator] = ACTIONS(2682), - [anon_sym_PLUS_DOT] = ACTIONS(2680), - [anon_sym_DASH_DOT] = ACTIONS(2680), - [sym_hash_operator] = ACTIONS(2682), - [aux_sym__pow_operator_token1] = ACTIONS(2682), - [anon_sym_lsl] = ACTIONS(2680), - [anon_sym_lsr] = ACTIONS(2680), - [anon_sym_asr] = ACTIONS(2680), - [aux_sym__mult_operator_token1] = ACTIONS(2680), - [anon_sym_mod] = ACTIONS(2680), - [anon_sym_land] = ACTIONS(2680), - [anon_sym_lor] = ACTIONS(2680), - [anon_sym_lxor] = ACTIONS(2680), - [aux_sym__add_operator_token1] = ACTIONS(2680), - [sym__concat_operator] = ACTIONS(2682), - [sym__rel_operator] = ACTIONS(2680), - [anon_sym_AMP_AMP] = ACTIONS(2680), - [anon_sym_or] = ACTIONS(2680), - [anon_sym_PIPE_PIPE] = ACTIONS(2680), - [sym_let_operator] = ACTIONS(2682), - [sym__capitalized_identifier] = ACTIONS(2682), - [aux_sym_directive_token1] = ACTIONS(2680), - [aux_sym_tag_token1] = ACTIONS(2682), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1439] = { - [sym_attribute] = STATE(1439), - [sym__identifier] = ACTIONS(2811), - [anon_sym_SEMI_SEMI] = ACTIONS(2813), - [anon_sym_let] = ACTIONS(2811), - [anon_sym_TILDE] = ACTIONS(2811), - [anon_sym_QMARK] = ACTIONS(2811), - [anon_sym_LPAREN] = ACTIONS(2813), - [anon_sym_external] = ACTIONS(2811), - [anon_sym_type] = ACTIONS(2811), - [anon_sym_COMMA] = ACTIONS(2813), - [anon_sym_PLUS] = ACTIONS(2811), - [anon_sym_DASH] = ACTIONS(2811), - [anon_sym_COLON_EQ] = ACTIONS(2813), - [anon_sym_PIPE] = ACTIONS(2811), - [anon_sym_LBRACK] = ACTIONS(2811), - [anon_sym_RBRACK] = ACTIONS(2813), - [anon_sym_true] = ACTIONS(2811), - [anon_sym_false] = ACTIONS(2811), - [anon_sym_DOT] = ACTIONS(2813), - [anon_sym_LBRACE] = ACTIONS(2811), - [anon_sym_SEMI] = ACTIONS(2811), - [anon_sym_exception] = ACTIONS(2811), - [anon_sym_module] = ACTIONS(2811), - [anon_sym_open] = ACTIONS(2811), - [anon_sym_include] = ACTIONS(2811), - [anon_sym_class] = ACTIONS(2811), - [anon_sym_end] = ACTIONS(2811), - [anon_sym_object] = ACTIONS(2811), - [anon_sym_AMP] = ACTIONS(2811), - [anon_sym_POUND] = ACTIONS(2811), - [anon_sym_COLON_COLON] = ACTIONS(2813), - [anon_sym_LBRACK_PIPE] = ACTIONS(2813), - [anon_sym_else] = ACTIONS(2811), - [anon_sym_new] = ACTIONS(2811), - [anon_sym_LBRACE_LT] = ACTIONS(2813), - [anon_sym_begin] = ACTIONS(2811), - [sym_ocamlyacc_value] = ACTIONS(2813), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2811), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2813), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2811), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2813), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2813), - [aux_sym_number_token1] = ACTIONS(2813), - [anon_sym_SQUOTE] = ACTIONS(2813), - [anon_sym_DQUOTE] = ACTIONS(2813), - [sym_prefix_operator] = ACTIONS(2813), - [anon_sym_PLUS_DOT] = ACTIONS(2811), - [anon_sym_DASH_DOT] = ACTIONS(2811), - [sym_hash_operator] = ACTIONS(2813), - [aux_sym__pow_operator_token1] = ACTIONS(2813), - [anon_sym_lsl] = ACTIONS(2811), - [anon_sym_lsr] = ACTIONS(2811), - [anon_sym_asr] = ACTIONS(2811), - [aux_sym__mult_operator_token1] = ACTIONS(2811), - [anon_sym_mod] = ACTIONS(2811), - [anon_sym_land] = ACTIONS(2811), - [anon_sym_lor] = ACTIONS(2811), - [anon_sym_lxor] = ACTIONS(2811), - [aux_sym__add_operator_token1] = ACTIONS(2811), - [sym__concat_operator] = ACTIONS(2813), - [sym__rel_operator] = ACTIONS(2811), - [anon_sym_AMP_AMP] = ACTIONS(2811), - [anon_sym_or] = ACTIONS(2811), - [anon_sym_PIPE_PIPE] = ACTIONS(2811), - [sym_let_operator] = ACTIONS(2813), - [sym__capitalized_identifier] = ACTIONS(2813), - [aux_sym_directive_token1] = ACTIONS(2811), - [aux_sym_tag_token1] = ACTIONS(2813), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1440] = { - [sym_attribute] = STATE(1440), - [sym__identifier] = ACTIONS(3085), - [anon_sym_SEMI_SEMI] = ACTIONS(3087), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_external] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3085), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_exception] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [anon_sym_open] = ACTIONS(3085), - [anon_sym_include] = ACTIONS(3085), - [anon_sym_class] = ACTIONS(3085), - [anon_sym_end] = ACTIONS(3085), - [anon_sym_object] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_COLON_COLON] = ACTIONS(3087), - [anon_sym_LBRACK_PIPE] = ACTIONS(3087), - [anon_sym_else] = ACTIONS(3085), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_LBRACE_LT] = ACTIONS(3087), - [anon_sym_begin] = ACTIONS(3085), - [sym_ocamlyacc_value] = ACTIONS(3087), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3085), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3087), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3085), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3087), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3087), - [aux_sym_number_token1] = ACTIONS(3087), - [anon_sym_SQUOTE] = ACTIONS(3087), - [anon_sym_DQUOTE] = ACTIONS(3087), - [sym_prefix_operator] = ACTIONS(3087), - [anon_sym_PLUS_DOT] = ACTIONS(3085), - [anon_sym_DASH_DOT] = ACTIONS(3085), - [sym_hash_operator] = ACTIONS(3087), - [aux_sym__pow_operator_token1] = ACTIONS(3087), - [anon_sym_lsl] = ACTIONS(3085), - [anon_sym_lsr] = ACTIONS(3085), - [anon_sym_asr] = ACTIONS(3085), - [aux_sym__mult_operator_token1] = ACTIONS(3085), - [anon_sym_mod] = ACTIONS(3085), - [anon_sym_land] = ACTIONS(3085), - [anon_sym_lor] = ACTIONS(3085), - [anon_sym_lxor] = ACTIONS(3085), - [aux_sym__add_operator_token1] = ACTIONS(3085), - [sym__concat_operator] = ACTIONS(3087), - [sym__rel_operator] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [sym_let_operator] = ACTIONS(3087), - [sym__capitalized_identifier] = ACTIONS(3087), - [aux_sym_directive_token1] = ACTIONS(3085), - [aux_sym_tag_token1] = ACTIONS(3087), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1441] = { - [sym_attribute] = STATE(1441), - [sym__identifier] = ACTIONS(2911), - [anon_sym_SEMI_SEMI] = ACTIONS(2913), - [anon_sym_let] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_external] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2911), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_true] = ACTIONS(2911), - [anon_sym_false] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2913), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_exception] = ACTIONS(2911), - [anon_sym_module] = ACTIONS(2911), - [anon_sym_open] = ACTIONS(2911), - [anon_sym_include] = ACTIONS(2911), - [anon_sym_class] = ACTIONS(2911), - [anon_sym_end] = ACTIONS(2911), - [anon_sym_object] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_COLON_COLON] = ACTIONS(2913), - [anon_sym_LBRACK_PIPE] = ACTIONS(2913), - [anon_sym_else] = ACTIONS(2911), - [anon_sym_new] = ACTIONS(2911), - [anon_sym_LBRACE_LT] = ACTIONS(2913), - [anon_sym_begin] = ACTIONS(2911), - [sym_ocamlyacc_value] = ACTIONS(2913), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2911), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2913), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2911), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2913), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2913), - [aux_sym_number_token1] = ACTIONS(2913), - [anon_sym_SQUOTE] = ACTIONS(2913), - [anon_sym_DQUOTE] = ACTIONS(2913), - [sym_prefix_operator] = ACTIONS(2913), - [anon_sym_PLUS_DOT] = ACTIONS(2911), - [anon_sym_DASH_DOT] = ACTIONS(2911), - [sym_hash_operator] = ACTIONS(2913), - [aux_sym__pow_operator_token1] = ACTIONS(2913), - [anon_sym_lsl] = ACTIONS(2911), - [anon_sym_lsr] = ACTIONS(2911), - [anon_sym_asr] = ACTIONS(2911), - [aux_sym__mult_operator_token1] = ACTIONS(2911), - [anon_sym_mod] = ACTIONS(2911), - [anon_sym_land] = ACTIONS(2911), - [anon_sym_lor] = ACTIONS(2911), - [anon_sym_lxor] = ACTIONS(2911), - [aux_sym__add_operator_token1] = ACTIONS(2911), - [sym__concat_operator] = ACTIONS(2913), - [sym__rel_operator] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [sym_let_operator] = ACTIONS(2913), - [sym__capitalized_identifier] = ACTIONS(2913), - [aux_sym_directive_token1] = ACTIONS(2911), - [aux_sym_tag_token1] = ACTIONS(2913), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1442] = { - [sym_attribute] = STATE(1442), - [sym__identifier] = ACTIONS(2873), - [anon_sym_SEMI_SEMI] = ACTIONS(2875), - [anon_sym_let] = ACTIONS(2873), - [anon_sym_TILDE] = ACTIONS(2873), - [anon_sym_QMARK] = ACTIONS(2873), - [anon_sym_LPAREN] = ACTIONS(2875), - [anon_sym_external] = ACTIONS(2873), - [anon_sym_type] = ACTIONS(2873), - [anon_sym_COMMA] = ACTIONS(2875), - [anon_sym_PLUS] = ACTIONS(2873), - [anon_sym_DASH] = ACTIONS(2873), - [anon_sym_COLON_EQ] = ACTIONS(2875), - [anon_sym_PIPE] = ACTIONS(2873), - [anon_sym_LBRACK] = ACTIONS(2873), - [anon_sym_RBRACK] = ACTIONS(2875), - [anon_sym_true] = ACTIONS(2873), - [anon_sym_false] = ACTIONS(2873), - [anon_sym_DOT] = ACTIONS(2875), - [anon_sym_LBRACE] = ACTIONS(2873), - [anon_sym_SEMI] = ACTIONS(2873), - [anon_sym_exception] = ACTIONS(2873), - [anon_sym_module] = ACTIONS(2873), - [anon_sym_open] = ACTIONS(2873), - [anon_sym_include] = ACTIONS(2873), - [anon_sym_class] = ACTIONS(2873), - [anon_sym_end] = ACTIONS(2873), - [anon_sym_object] = ACTIONS(2873), - [anon_sym_AMP] = ACTIONS(2873), - [anon_sym_POUND] = ACTIONS(2873), - [anon_sym_COLON_COLON] = ACTIONS(2875), - [anon_sym_LBRACK_PIPE] = ACTIONS(2875), - [anon_sym_else] = ACTIONS(2873), - [anon_sym_new] = ACTIONS(2873), - [anon_sym_LBRACE_LT] = ACTIONS(2875), - [anon_sym_begin] = ACTIONS(2873), - [sym_ocamlyacc_value] = ACTIONS(2875), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2873), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2875), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2873), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2875), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2875), - [aux_sym_number_token1] = ACTIONS(2875), - [anon_sym_SQUOTE] = ACTIONS(2875), - [anon_sym_DQUOTE] = ACTIONS(2875), - [sym_prefix_operator] = ACTIONS(2875), - [anon_sym_PLUS_DOT] = ACTIONS(2873), - [anon_sym_DASH_DOT] = ACTIONS(2873), - [sym_hash_operator] = ACTIONS(2875), - [aux_sym__pow_operator_token1] = ACTIONS(2875), - [anon_sym_lsl] = ACTIONS(2873), - [anon_sym_lsr] = ACTIONS(2873), - [anon_sym_asr] = ACTIONS(2873), - [aux_sym__mult_operator_token1] = ACTIONS(2873), - [anon_sym_mod] = ACTIONS(2873), - [anon_sym_land] = ACTIONS(2873), - [anon_sym_lor] = ACTIONS(2873), - [anon_sym_lxor] = ACTIONS(2873), - [aux_sym__add_operator_token1] = ACTIONS(2873), - [sym__concat_operator] = ACTIONS(2875), - [sym__rel_operator] = ACTIONS(2873), - [anon_sym_AMP_AMP] = ACTIONS(2873), - [anon_sym_or] = ACTIONS(2873), - [anon_sym_PIPE_PIPE] = ACTIONS(2873), - [sym_let_operator] = ACTIONS(2875), - [sym__capitalized_identifier] = ACTIONS(2875), - [aux_sym_directive_token1] = ACTIONS(2873), - [aux_sym_tag_token1] = ACTIONS(2875), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1443] = { - [sym_attribute] = STATE(1443), - [sym__identifier] = ACTIONS(2931), - [anon_sym_SEMI_SEMI] = ACTIONS(2933), - [anon_sym_let] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_external] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2931), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_true] = ACTIONS(2931), - [anon_sym_false] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2933), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_exception] = ACTIONS(2931), - [anon_sym_module] = ACTIONS(2931), - [anon_sym_open] = ACTIONS(2931), - [anon_sym_include] = ACTIONS(2931), - [anon_sym_class] = ACTIONS(2931), - [anon_sym_end] = ACTIONS(2931), - [anon_sym_object] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_LBRACK_PIPE] = ACTIONS(2933), - [anon_sym_else] = ACTIONS(2931), - [anon_sym_new] = ACTIONS(2931), - [anon_sym_LBRACE_LT] = ACTIONS(2933), - [anon_sym_begin] = ACTIONS(2931), - [sym_ocamlyacc_value] = ACTIONS(2933), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2931), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2933), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2931), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2933), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2933), - [aux_sym_number_token1] = ACTIONS(2933), - [anon_sym_SQUOTE] = ACTIONS(2933), - [anon_sym_DQUOTE] = ACTIONS(2933), - [sym_prefix_operator] = ACTIONS(2933), - [anon_sym_PLUS_DOT] = ACTIONS(2931), - [anon_sym_DASH_DOT] = ACTIONS(2931), - [sym_hash_operator] = ACTIONS(2933), - [aux_sym__pow_operator_token1] = ACTIONS(2933), - [anon_sym_lsl] = ACTIONS(2931), - [anon_sym_lsr] = ACTIONS(2931), - [anon_sym_asr] = ACTIONS(2931), - [aux_sym__mult_operator_token1] = ACTIONS(2931), - [anon_sym_mod] = ACTIONS(2931), - [anon_sym_land] = ACTIONS(2931), - [anon_sym_lor] = ACTIONS(2931), - [anon_sym_lxor] = ACTIONS(2931), - [aux_sym__add_operator_token1] = ACTIONS(2931), - [sym__concat_operator] = ACTIONS(2933), - [sym__rel_operator] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [sym_let_operator] = ACTIONS(2933), - [sym__capitalized_identifier] = ACTIONS(2933), - [aux_sym_directive_token1] = ACTIONS(2931), - [aux_sym_tag_token1] = ACTIONS(2933), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1444] = { - [sym_attribute] = STATE(1444), - [sym__identifier] = ACTIONS(2919), - [anon_sym_SEMI_SEMI] = ACTIONS(2921), - [anon_sym_let] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_external] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2919), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_true] = ACTIONS(2919), - [anon_sym_false] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2921), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_exception] = ACTIONS(2919), - [anon_sym_module] = ACTIONS(2919), - [anon_sym_open] = ACTIONS(2919), - [anon_sym_include] = ACTIONS(2919), - [anon_sym_class] = ACTIONS(2919), - [anon_sym_end] = ACTIONS(2919), - [anon_sym_object] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_COLON_COLON] = ACTIONS(2921), - [anon_sym_LBRACK_PIPE] = ACTIONS(2921), - [anon_sym_else] = ACTIONS(2919), - [anon_sym_new] = ACTIONS(2919), - [anon_sym_LBRACE_LT] = ACTIONS(2921), - [anon_sym_begin] = ACTIONS(2919), - [sym_ocamlyacc_value] = ACTIONS(2921), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2919), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2921), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2919), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2921), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2921), - [aux_sym_number_token1] = ACTIONS(2921), - [anon_sym_SQUOTE] = ACTIONS(2921), - [anon_sym_DQUOTE] = ACTIONS(2921), - [sym_prefix_operator] = ACTIONS(2921), - [anon_sym_PLUS_DOT] = ACTIONS(2919), - [anon_sym_DASH_DOT] = ACTIONS(2919), - [sym_hash_operator] = ACTIONS(2921), - [aux_sym__pow_operator_token1] = ACTIONS(2921), - [anon_sym_lsl] = ACTIONS(2919), - [anon_sym_lsr] = ACTIONS(2919), - [anon_sym_asr] = ACTIONS(2919), - [aux_sym__mult_operator_token1] = ACTIONS(2919), - [anon_sym_mod] = ACTIONS(2919), - [anon_sym_land] = ACTIONS(2919), - [anon_sym_lor] = ACTIONS(2919), - [anon_sym_lxor] = ACTIONS(2919), - [aux_sym__add_operator_token1] = ACTIONS(2919), - [sym__concat_operator] = ACTIONS(2921), - [sym__rel_operator] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [sym_let_operator] = ACTIONS(2921), - [sym__capitalized_identifier] = ACTIONS(2921), - [aux_sym_directive_token1] = ACTIONS(2919), - [aux_sym_tag_token1] = ACTIONS(2921), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1445] = { - [sym_attribute] = STATE(1445), - [sym__identifier] = ACTIONS(2841), - [anon_sym_SEMI_SEMI] = ACTIONS(2843), - [anon_sym_let] = ACTIONS(2841), - [anon_sym_TILDE] = ACTIONS(2841), - [anon_sym_QMARK] = ACTIONS(2841), - [anon_sym_LPAREN] = ACTIONS(2843), - [anon_sym_external] = ACTIONS(2841), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_COMMA] = ACTIONS(2843), - [anon_sym_PLUS] = ACTIONS(2841), - [anon_sym_DASH] = ACTIONS(2841), - [anon_sym_COLON_EQ] = ACTIONS(2843), - [anon_sym_PIPE] = ACTIONS(2841), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_RBRACK] = ACTIONS(2843), - [anon_sym_true] = ACTIONS(2841), - [anon_sym_false] = ACTIONS(2841), - [anon_sym_DOT] = ACTIONS(2843), - [anon_sym_LBRACE] = ACTIONS(2841), - [anon_sym_SEMI] = ACTIONS(2841), - [anon_sym_exception] = ACTIONS(2841), - [anon_sym_module] = ACTIONS(2841), - [anon_sym_open] = ACTIONS(2841), - [anon_sym_include] = ACTIONS(2841), - [anon_sym_class] = ACTIONS(2841), - [anon_sym_end] = ACTIONS(2841), - [anon_sym_object] = ACTIONS(2841), - [anon_sym_AMP] = ACTIONS(2841), - [anon_sym_POUND] = ACTIONS(2841), - [anon_sym_COLON_COLON] = ACTIONS(2843), - [anon_sym_LBRACK_PIPE] = ACTIONS(2843), - [anon_sym_else] = ACTIONS(2841), - [anon_sym_new] = ACTIONS(2841), - [anon_sym_LBRACE_LT] = ACTIONS(2843), - [anon_sym_begin] = ACTIONS(2841), - [sym_ocamlyacc_value] = ACTIONS(2843), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2841), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2843), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2841), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2843), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2843), - [aux_sym_number_token1] = ACTIONS(2843), - [anon_sym_SQUOTE] = ACTIONS(2843), - [anon_sym_DQUOTE] = ACTIONS(2843), - [sym_prefix_operator] = ACTIONS(2843), - [anon_sym_PLUS_DOT] = ACTIONS(2841), - [anon_sym_DASH_DOT] = ACTIONS(2841), - [sym_hash_operator] = ACTIONS(2843), - [aux_sym__pow_operator_token1] = ACTIONS(2843), - [anon_sym_lsl] = ACTIONS(2841), - [anon_sym_lsr] = ACTIONS(2841), - [anon_sym_asr] = ACTIONS(2841), - [aux_sym__mult_operator_token1] = ACTIONS(2841), - [anon_sym_mod] = ACTIONS(2841), - [anon_sym_land] = ACTIONS(2841), - [anon_sym_lor] = ACTIONS(2841), - [anon_sym_lxor] = ACTIONS(2841), - [aux_sym__add_operator_token1] = ACTIONS(2841), - [sym__concat_operator] = ACTIONS(2843), - [sym__rel_operator] = ACTIONS(2841), - [anon_sym_AMP_AMP] = ACTIONS(2841), - [anon_sym_or] = ACTIONS(2841), - [anon_sym_PIPE_PIPE] = ACTIONS(2841), - [sym_let_operator] = ACTIONS(2843), - [sym__capitalized_identifier] = ACTIONS(2843), - [aux_sym_directive_token1] = ACTIONS(2841), - [aux_sym_tag_token1] = ACTIONS(2843), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1446] = { - [sym_attribute] = STATE(1446), - [sym__identifier] = ACTIONS(2923), - [anon_sym_SEMI_SEMI] = ACTIONS(2925), - [anon_sym_let] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_external] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2923), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_true] = ACTIONS(2923), - [anon_sym_false] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2925), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_exception] = ACTIONS(2923), - [anon_sym_module] = ACTIONS(2923), - [anon_sym_open] = ACTIONS(2923), - [anon_sym_include] = ACTIONS(2923), - [anon_sym_class] = ACTIONS(2923), - [anon_sym_end] = ACTIONS(2923), - [anon_sym_object] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_COLON_COLON] = ACTIONS(2925), - [anon_sym_LBRACK_PIPE] = ACTIONS(2925), - [anon_sym_else] = ACTIONS(2923), - [anon_sym_new] = ACTIONS(2923), - [anon_sym_LBRACE_LT] = ACTIONS(2925), - [anon_sym_begin] = ACTIONS(2923), - [sym_ocamlyacc_value] = ACTIONS(2925), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2923), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2925), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2923), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2925), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2925), - [aux_sym_number_token1] = ACTIONS(2925), - [anon_sym_SQUOTE] = ACTIONS(2925), - [anon_sym_DQUOTE] = ACTIONS(2925), - [sym_prefix_operator] = ACTIONS(2925), - [anon_sym_PLUS_DOT] = ACTIONS(2923), - [anon_sym_DASH_DOT] = ACTIONS(2923), - [sym_hash_operator] = ACTIONS(2925), - [aux_sym__pow_operator_token1] = ACTIONS(2925), - [anon_sym_lsl] = ACTIONS(2923), - [anon_sym_lsr] = ACTIONS(2923), - [anon_sym_asr] = ACTIONS(2923), - [aux_sym__mult_operator_token1] = ACTIONS(2923), - [anon_sym_mod] = ACTIONS(2923), - [anon_sym_land] = ACTIONS(2923), - [anon_sym_lor] = ACTIONS(2923), - [anon_sym_lxor] = ACTIONS(2923), - [aux_sym__add_operator_token1] = ACTIONS(2923), - [sym__concat_operator] = ACTIONS(2925), - [sym__rel_operator] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [sym_let_operator] = ACTIONS(2925), - [sym__capitalized_identifier] = ACTIONS(2925), - [aux_sym_directive_token1] = ACTIONS(2923), - [aux_sym_tag_token1] = ACTIONS(2925), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1447] = { - [sym_attribute] = STATE(1447), - [sym__identifier] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2981), - [anon_sym_let] = ACTIONS(2979), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_external] = ACTIONS(2979), - [anon_sym_type] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2981), - [anon_sym_true] = ACTIONS(2979), - [anon_sym_false] = ACTIONS(2979), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_exception] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(2979), - [anon_sym_open] = ACTIONS(2979), - [anon_sym_include] = ACTIONS(2979), - [anon_sym_class] = ACTIONS(2979), - [anon_sym_end] = ACTIONS(2979), - [anon_sym_object] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2979), - [anon_sym_POUND] = ACTIONS(2979), - [anon_sym_COLON_COLON] = ACTIONS(2981), - [anon_sym_LBRACK_PIPE] = ACTIONS(2981), - [anon_sym_else] = ACTIONS(2979), - [anon_sym_new] = ACTIONS(2979), - [anon_sym_LBRACE_LT] = ACTIONS(2981), - [anon_sym_begin] = ACTIONS(2979), - [sym_ocamlyacc_value] = ACTIONS(2981), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2979), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2981), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2979), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2981), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2981), - [aux_sym_number_token1] = ACTIONS(2981), - [anon_sym_SQUOTE] = ACTIONS(2981), - [anon_sym_DQUOTE] = ACTIONS(2981), - [sym_prefix_operator] = ACTIONS(2981), - [anon_sym_PLUS_DOT] = ACTIONS(2979), - [anon_sym_DASH_DOT] = ACTIONS(2979), - [sym_hash_operator] = ACTIONS(2981), - [aux_sym__pow_operator_token1] = ACTIONS(2981), - [anon_sym_lsl] = ACTIONS(2979), - [anon_sym_lsr] = ACTIONS(2979), - [anon_sym_asr] = ACTIONS(2979), - [aux_sym__mult_operator_token1] = ACTIONS(2979), - [anon_sym_mod] = ACTIONS(2979), - [anon_sym_land] = ACTIONS(2979), - [anon_sym_lor] = ACTIONS(2979), - [anon_sym_lxor] = ACTIONS(2979), - [aux_sym__add_operator_token1] = ACTIONS(2979), - [sym__concat_operator] = ACTIONS(2981), - [sym__rel_operator] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym_let_operator] = ACTIONS(2981), - [sym__capitalized_identifier] = ACTIONS(2981), - [aux_sym_directive_token1] = ACTIONS(2979), - [aux_sym_tag_token1] = ACTIONS(2981), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1448] = { - [sym_attribute] = STATE(1448), - [sym__identifier] = ACTIONS(3081), - [anon_sym_SEMI_SEMI] = ACTIONS(3083), - [anon_sym_let] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_external] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3081), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_true] = ACTIONS(3081), - [anon_sym_false] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3083), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_exception] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_open] = ACTIONS(3081), - [anon_sym_include] = ACTIONS(3081), - [anon_sym_class] = ACTIONS(3081), - [anon_sym_end] = ACTIONS(3081), - [anon_sym_object] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_COLON_COLON] = ACTIONS(3083), - [anon_sym_LBRACK_PIPE] = ACTIONS(3083), - [anon_sym_else] = ACTIONS(3081), - [anon_sym_new] = ACTIONS(3081), - [anon_sym_LBRACE_LT] = ACTIONS(3083), - [anon_sym_begin] = ACTIONS(3081), - [sym_ocamlyacc_value] = ACTIONS(3083), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3081), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3083), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3081), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3083), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3083), - [aux_sym_number_token1] = ACTIONS(3083), - [anon_sym_SQUOTE] = ACTIONS(3083), - [anon_sym_DQUOTE] = ACTIONS(3083), - [sym_prefix_operator] = ACTIONS(3083), - [anon_sym_PLUS_DOT] = ACTIONS(3081), - [anon_sym_DASH_DOT] = ACTIONS(3081), - [sym_hash_operator] = ACTIONS(3083), - [aux_sym__pow_operator_token1] = ACTIONS(3083), - [anon_sym_lsl] = ACTIONS(3081), - [anon_sym_lsr] = ACTIONS(3081), - [anon_sym_asr] = ACTIONS(3081), - [aux_sym__mult_operator_token1] = ACTIONS(3081), - [anon_sym_mod] = ACTIONS(3081), - [anon_sym_land] = ACTIONS(3081), - [anon_sym_lor] = ACTIONS(3081), - [anon_sym_lxor] = ACTIONS(3081), - [aux_sym__add_operator_token1] = ACTIONS(3081), - [sym__concat_operator] = ACTIONS(3083), - [sym__rel_operator] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [sym_let_operator] = ACTIONS(3083), - [sym__capitalized_identifier] = ACTIONS(3083), - [aux_sym_directive_token1] = ACTIONS(3081), - [aux_sym_tag_token1] = ACTIONS(3083), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1449] = { - [sym__parenthesized_abstract_type] = STATE(1770), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5352), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1449), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_RPAREN] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_COLON2] = ACTIONS(3210), - [anon_sym_DASH_GT] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_when] = ACTIONS(3210), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1450] = { - [sym_attribute] = STATE(1450), - [sym__identifier] = ACTIONS(2935), - [anon_sym_SEMI_SEMI] = ACTIONS(2937), - [anon_sym_let] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_external] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2935), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_true] = ACTIONS(2935), - [anon_sym_false] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2937), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_exception] = ACTIONS(2935), - [anon_sym_module] = ACTIONS(2935), - [anon_sym_open] = ACTIONS(2935), - [anon_sym_include] = ACTIONS(2935), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_end] = ACTIONS(2935), - [anon_sym_object] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_COLON_COLON] = ACTIONS(2937), - [anon_sym_LBRACK_PIPE] = ACTIONS(2937), - [anon_sym_else] = ACTIONS(2935), - [anon_sym_new] = ACTIONS(2935), - [anon_sym_LBRACE_LT] = ACTIONS(2937), - [anon_sym_begin] = ACTIONS(2935), - [sym_ocamlyacc_value] = ACTIONS(2937), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2935), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2937), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2935), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2937), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2937), - [aux_sym_number_token1] = ACTIONS(2937), - [anon_sym_SQUOTE] = ACTIONS(2937), - [anon_sym_DQUOTE] = ACTIONS(2937), - [sym_prefix_operator] = ACTIONS(2937), - [anon_sym_PLUS_DOT] = ACTIONS(2935), - [anon_sym_DASH_DOT] = ACTIONS(2935), - [sym_hash_operator] = ACTIONS(2937), - [aux_sym__pow_operator_token1] = ACTIONS(2937), - [anon_sym_lsl] = ACTIONS(2935), - [anon_sym_lsr] = ACTIONS(2935), - [anon_sym_asr] = ACTIONS(2935), - [aux_sym__mult_operator_token1] = ACTIONS(2935), - [anon_sym_mod] = ACTIONS(2935), - [anon_sym_land] = ACTIONS(2935), - [anon_sym_lor] = ACTIONS(2935), - [anon_sym_lxor] = ACTIONS(2935), - [aux_sym__add_operator_token1] = ACTIONS(2935), - [sym__concat_operator] = ACTIONS(2937), - [sym__rel_operator] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [sym_let_operator] = ACTIONS(2937), - [sym__capitalized_identifier] = ACTIONS(2937), - [aux_sym_directive_token1] = ACTIONS(2935), - [aux_sym_tag_token1] = ACTIONS(2937), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1451] = { - [sym_attribute] = STATE(1451), - [sym__identifier] = ACTIONS(2943), - [anon_sym_SEMI_SEMI] = ACTIONS(2945), - [anon_sym_let] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2945), - [anon_sym_external] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2945), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2945), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2943), - [anon_sym_RBRACK] = ACTIONS(2945), - [anon_sym_true] = ACTIONS(2943), - [anon_sym_false] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2945), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_exception] = ACTIONS(2943), - [anon_sym_module] = ACTIONS(2943), - [anon_sym_open] = ACTIONS(2943), - [anon_sym_include] = ACTIONS(2943), - [anon_sym_class] = ACTIONS(2943), - [anon_sym_end] = ACTIONS(2943), - [anon_sym_object] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_COLON_COLON] = ACTIONS(2945), - [anon_sym_LBRACK_PIPE] = ACTIONS(2945), - [anon_sym_else] = ACTIONS(2943), - [anon_sym_new] = ACTIONS(2943), - [anon_sym_LBRACE_LT] = ACTIONS(2945), - [anon_sym_begin] = ACTIONS(2943), - [sym_ocamlyacc_value] = ACTIONS(2945), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2943), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2945), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2943), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2945), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2945), - [aux_sym_number_token1] = ACTIONS(2945), - [anon_sym_SQUOTE] = ACTIONS(2945), - [anon_sym_DQUOTE] = ACTIONS(2945), - [sym_prefix_operator] = ACTIONS(2945), - [anon_sym_PLUS_DOT] = ACTIONS(2943), - [anon_sym_DASH_DOT] = ACTIONS(2943), - [sym_hash_operator] = ACTIONS(2945), - [aux_sym__pow_operator_token1] = ACTIONS(2945), - [anon_sym_lsl] = ACTIONS(2943), - [anon_sym_lsr] = ACTIONS(2943), - [anon_sym_asr] = ACTIONS(2943), - [aux_sym__mult_operator_token1] = ACTIONS(2943), - [anon_sym_mod] = ACTIONS(2943), - [anon_sym_land] = ACTIONS(2943), - [anon_sym_lor] = ACTIONS(2943), - [anon_sym_lxor] = ACTIONS(2943), - [aux_sym__add_operator_token1] = ACTIONS(2943), - [sym__concat_operator] = ACTIONS(2945), - [sym__rel_operator] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [sym_let_operator] = ACTIONS(2945), - [sym__capitalized_identifier] = ACTIONS(2945), - [aux_sym_directive_token1] = ACTIONS(2943), - [aux_sym_tag_token1] = ACTIONS(2945), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1452] = { - [sym_attribute] = STATE(1452), - [sym__identifier] = ACTIONS(3097), - [anon_sym_SEMI_SEMI] = ACTIONS(3099), - [anon_sym_let] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_external] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_true] = ACTIONS(3097), - [anon_sym_false] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_exception] = ACTIONS(3097), - [anon_sym_module] = ACTIONS(3097), - [anon_sym_open] = ACTIONS(3097), - [anon_sym_include] = ACTIONS(3097), - [anon_sym_class] = ACTIONS(3097), - [anon_sym_end] = ACTIONS(3097), - [anon_sym_object] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_COLON_COLON] = ACTIONS(3099), - [anon_sym_LBRACK_PIPE] = ACTIONS(3099), - [anon_sym_else] = ACTIONS(3097), - [anon_sym_new] = ACTIONS(3097), - [anon_sym_LBRACE_LT] = ACTIONS(3099), - [anon_sym_begin] = ACTIONS(3097), - [sym_ocamlyacc_value] = ACTIONS(3099), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3097), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3099), - [aux_sym_number_token1] = ACTIONS(3099), - [anon_sym_SQUOTE] = ACTIONS(3099), - [anon_sym_DQUOTE] = ACTIONS(3099), - [sym_prefix_operator] = ACTIONS(3099), - [anon_sym_PLUS_DOT] = ACTIONS(3097), - [anon_sym_DASH_DOT] = ACTIONS(3097), - [sym_hash_operator] = ACTIONS(3099), - [aux_sym__pow_operator_token1] = ACTIONS(3099), - [anon_sym_lsl] = ACTIONS(3097), - [anon_sym_lsr] = ACTIONS(3097), - [anon_sym_asr] = ACTIONS(3097), - [aux_sym__mult_operator_token1] = ACTIONS(3097), - [anon_sym_mod] = ACTIONS(3097), - [anon_sym_land] = ACTIONS(3097), - [anon_sym_lor] = ACTIONS(3097), - [anon_sym_lxor] = ACTIONS(3097), - [aux_sym__add_operator_token1] = ACTIONS(3097), - [sym__concat_operator] = ACTIONS(3099), - [sym__rel_operator] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [sym_let_operator] = ACTIONS(3099), - [sym__capitalized_identifier] = ACTIONS(3099), - [aux_sym_directive_token1] = ACTIONS(3097), - [aux_sym_tag_token1] = ACTIONS(3099), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1453] = { - [sym_attribute] = STATE(1453), - [sym__identifier] = ACTIONS(2985), - [anon_sym_SEMI_SEMI] = ACTIONS(2987), - [anon_sym_let] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_external] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2985), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_true] = ACTIONS(2985), - [anon_sym_false] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2987), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_exception] = ACTIONS(2985), - [anon_sym_module] = ACTIONS(2985), - [anon_sym_open] = ACTIONS(2985), - [anon_sym_include] = ACTIONS(2985), - [anon_sym_class] = ACTIONS(2985), - [anon_sym_end] = ACTIONS(2985), - [anon_sym_object] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_COLON_COLON] = ACTIONS(2987), - [anon_sym_LBRACK_PIPE] = ACTIONS(2987), - [anon_sym_else] = ACTIONS(2985), - [anon_sym_new] = ACTIONS(2985), - [anon_sym_LBRACE_LT] = ACTIONS(2987), - [anon_sym_begin] = ACTIONS(2985), - [sym_ocamlyacc_value] = ACTIONS(2987), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2985), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2987), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2985), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2987), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2987), - [aux_sym_number_token1] = ACTIONS(2987), - [anon_sym_SQUOTE] = ACTIONS(2987), - [anon_sym_DQUOTE] = ACTIONS(2987), - [sym_prefix_operator] = ACTIONS(2987), - [anon_sym_PLUS_DOT] = ACTIONS(2985), - [anon_sym_DASH_DOT] = ACTIONS(2985), - [sym_hash_operator] = ACTIONS(2987), - [aux_sym__pow_operator_token1] = ACTIONS(2987), - [anon_sym_lsl] = ACTIONS(2985), - [anon_sym_lsr] = ACTIONS(2985), - [anon_sym_asr] = ACTIONS(2985), - [aux_sym__mult_operator_token1] = ACTIONS(2985), - [anon_sym_mod] = ACTIONS(2985), - [anon_sym_land] = ACTIONS(2985), - [anon_sym_lor] = ACTIONS(2985), - [anon_sym_lxor] = ACTIONS(2985), - [aux_sym__add_operator_token1] = ACTIONS(2985), - [sym__concat_operator] = ACTIONS(2987), - [sym__rel_operator] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [sym_let_operator] = ACTIONS(2987), - [sym__capitalized_identifier] = ACTIONS(2987), - [aux_sym_directive_token1] = ACTIONS(2985), - [aux_sym_tag_token1] = ACTIONS(2987), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1454] = { - [sym_attribute] = STATE(1454), - [sym__identifier] = ACTIONS(2734), - [anon_sym_SEMI_SEMI] = ACTIONS(2736), - [anon_sym_let] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2736), - [anon_sym_external] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2736), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2736), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2734), - [anon_sym_RBRACK] = ACTIONS(2736), - [anon_sym_true] = ACTIONS(2734), - [anon_sym_false] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2736), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_exception] = ACTIONS(2734), - [anon_sym_module] = ACTIONS(2734), - [anon_sym_open] = ACTIONS(2734), - [anon_sym_include] = ACTIONS(2734), - [anon_sym_class] = ACTIONS(2734), - [anon_sym_end] = ACTIONS(2734), - [anon_sym_object] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_COLON_COLON] = ACTIONS(2736), - [anon_sym_LBRACK_PIPE] = ACTIONS(2736), - [anon_sym_else] = ACTIONS(2734), - [anon_sym_new] = ACTIONS(2734), - [anon_sym_LBRACE_LT] = ACTIONS(2736), - [anon_sym_begin] = ACTIONS(2734), - [sym_ocamlyacc_value] = ACTIONS(2736), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2734), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2736), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2736), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2736), - [aux_sym_number_token1] = ACTIONS(2736), - [anon_sym_SQUOTE] = ACTIONS(2736), - [anon_sym_DQUOTE] = ACTIONS(2736), - [sym_prefix_operator] = ACTIONS(2736), - [anon_sym_PLUS_DOT] = ACTIONS(2734), - [anon_sym_DASH_DOT] = ACTIONS(2734), - [sym_hash_operator] = ACTIONS(2736), - [aux_sym__pow_operator_token1] = ACTIONS(2736), - [anon_sym_lsl] = ACTIONS(2734), - [anon_sym_lsr] = ACTIONS(2734), - [anon_sym_asr] = ACTIONS(2734), - [aux_sym__mult_operator_token1] = ACTIONS(2734), - [anon_sym_mod] = ACTIONS(2734), - [anon_sym_land] = ACTIONS(2734), - [anon_sym_lor] = ACTIONS(2734), - [anon_sym_lxor] = ACTIONS(2734), - [aux_sym__add_operator_token1] = ACTIONS(2734), - [sym__concat_operator] = ACTIONS(2736), - [sym__rel_operator] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [sym_let_operator] = ACTIONS(2736), - [sym__capitalized_identifier] = ACTIONS(2736), - [aux_sym_directive_token1] = ACTIONS(2734), - [aux_sym_tag_token1] = ACTIONS(2736), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1455] = { - [sym_attribute] = STATE(1455), - [sym__identifier] = ACTIONS(2975), - [anon_sym_SEMI_SEMI] = ACTIONS(2977), - [anon_sym_let] = ACTIONS(2975), - [anon_sym_TILDE] = ACTIONS(2975), - [anon_sym_QMARK] = ACTIONS(2975), - [anon_sym_LPAREN] = ACTIONS(2977), - [anon_sym_external] = ACTIONS(2975), - [anon_sym_type] = ACTIONS(2975), - [anon_sym_COMMA] = ACTIONS(2977), - [anon_sym_PLUS] = ACTIONS(2975), - [anon_sym_DASH] = ACTIONS(2975), - [anon_sym_COLON_EQ] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2975), - [anon_sym_LBRACK] = ACTIONS(2975), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_true] = ACTIONS(2975), - [anon_sym_false] = ACTIONS(2975), - [anon_sym_DOT] = ACTIONS(2977), - [anon_sym_LBRACE] = ACTIONS(2975), - [anon_sym_SEMI] = ACTIONS(2975), - [anon_sym_exception] = ACTIONS(2975), - [anon_sym_module] = ACTIONS(2975), - [anon_sym_open] = ACTIONS(2975), - [anon_sym_include] = ACTIONS(2975), - [anon_sym_class] = ACTIONS(2975), - [anon_sym_end] = ACTIONS(2975), - [anon_sym_object] = ACTIONS(2975), - [anon_sym_AMP] = ACTIONS(2975), - [anon_sym_POUND] = ACTIONS(2975), - [anon_sym_COLON_COLON] = ACTIONS(2977), - [anon_sym_LBRACK_PIPE] = ACTIONS(2977), - [anon_sym_else] = ACTIONS(2975), - [anon_sym_new] = ACTIONS(2975), - [anon_sym_LBRACE_LT] = ACTIONS(2977), - [anon_sym_begin] = ACTIONS(2975), - [sym_ocamlyacc_value] = ACTIONS(2977), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2975), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2977), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2975), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2977), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2977), - [aux_sym_number_token1] = ACTIONS(2977), - [anon_sym_SQUOTE] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [sym_prefix_operator] = ACTIONS(2977), - [anon_sym_PLUS_DOT] = ACTIONS(2975), - [anon_sym_DASH_DOT] = ACTIONS(2975), - [sym_hash_operator] = ACTIONS(2977), - [aux_sym__pow_operator_token1] = ACTIONS(2977), - [anon_sym_lsl] = ACTIONS(2975), - [anon_sym_lsr] = ACTIONS(2975), - [anon_sym_asr] = ACTIONS(2975), - [aux_sym__mult_operator_token1] = ACTIONS(2975), - [anon_sym_mod] = ACTIONS(2975), - [anon_sym_land] = ACTIONS(2975), - [anon_sym_lor] = ACTIONS(2975), - [anon_sym_lxor] = ACTIONS(2975), - [aux_sym__add_operator_token1] = ACTIONS(2975), - [sym__concat_operator] = ACTIONS(2977), - [sym__rel_operator] = ACTIONS(2975), - [anon_sym_AMP_AMP] = ACTIONS(2975), - [anon_sym_or] = ACTIONS(2975), - [anon_sym_PIPE_PIPE] = ACTIONS(2975), - [sym_let_operator] = ACTIONS(2977), - [sym__capitalized_identifier] = ACTIONS(2977), - [aux_sym_directive_token1] = ACTIONS(2975), - [aux_sym_tag_token1] = ACTIONS(2977), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1456] = { - [sym_attribute] = STATE(1456), - [sym__identifier] = ACTIONS(2801), - [anon_sym_SEMI_SEMI] = ACTIONS(2803), - [anon_sym_let] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_external] = ACTIONS(2801), - [anon_sym_type] = ACTIONS(2801), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2801), - [anon_sym_exception] = ACTIONS(2801), - [anon_sym_module] = ACTIONS(2801), - [anon_sym_open] = ACTIONS(2801), - [anon_sym_include] = ACTIONS(2801), - [anon_sym_class] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym_let_operator] = ACTIONS(2803), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_directive_token1] = ACTIONS(2801), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1457] = { - [sym_attribute] = STATE(1457), - [sym__identifier] = ACTIONS(2869), - [anon_sym_SEMI_SEMI] = ACTIONS(2871), - [anon_sym_let] = ACTIONS(2869), - [anon_sym_TILDE] = ACTIONS(2869), - [anon_sym_QMARK] = ACTIONS(2869), - [anon_sym_LPAREN] = ACTIONS(2871), - [anon_sym_external] = ACTIONS(2869), - [anon_sym_type] = ACTIONS(2869), - [anon_sym_COMMA] = ACTIONS(2871), - [anon_sym_PLUS] = ACTIONS(2869), - [anon_sym_DASH] = ACTIONS(2869), - [anon_sym_COLON_EQ] = ACTIONS(2871), - [anon_sym_PIPE] = ACTIONS(2869), - [anon_sym_LBRACK] = ACTIONS(2869), - [anon_sym_RBRACK] = ACTIONS(2871), - [anon_sym_true] = ACTIONS(2869), - [anon_sym_false] = ACTIONS(2869), - [anon_sym_DOT] = ACTIONS(2871), - [anon_sym_LBRACE] = ACTIONS(2869), - [anon_sym_SEMI] = ACTIONS(2869), - [anon_sym_exception] = ACTIONS(2869), - [anon_sym_module] = ACTIONS(2869), - [anon_sym_open] = ACTIONS(2869), - [anon_sym_include] = ACTIONS(2869), - [anon_sym_class] = ACTIONS(2869), - [anon_sym_end] = ACTIONS(2869), - [anon_sym_object] = ACTIONS(2869), - [anon_sym_AMP] = ACTIONS(2869), - [anon_sym_POUND] = ACTIONS(2869), - [anon_sym_COLON_COLON] = ACTIONS(2871), - [anon_sym_LBRACK_PIPE] = ACTIONS(2871), - [anon_sym_else] = ACTIONS(2869), - [anon_sym_new] = ACTIONS(2869), - [anon_sym_LBRACE_LT] = ACTIONS(2871), - [anon_sym_begin] = ACTIONS(2869), - [sym_ocamlyacc_value] = ACTIONS(2871), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2869), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2871), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2869), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2871), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2871), - [aux_sym_number_token1] = ACTIONS(2871), - [anon_sym_SQUOTE] = ACTIONS(2871), - [anon_sym_DQUOTE] = ACTIONS(2871), - [sym_prefix_operator] = ACTIONS(2871), - [anon_sym_PLUS_DOT] = ACTIONS(2869), - [anon_sym_DASH_DOT] = ACTIONS(2869), - [sym_hash_operator] = ACTIONS(2871), - [aux_sym__pow_operator_token1] = ACTIONS(2871), - [anon_sym_lsl] = ACTIONS(2869), - [anon_sym_lsr] = ACTIONS(2869), - [anon_sym_asr] = ACTIONS(2869), - [aux_sym__mult_operator_token1] = ACTIONS(2869), - [anon_sym_mod] = ACTIONS(2869), - [anon_sym_land] = ACTIONS(2869), - [anon_sym_lor] = ACTIONS(2869), - [anon_sym_lxor] = ACTIONS(2869), - [aux_sym__add_operator_token1] = ACTIONS(2869), - [sym__concat_operator] = ACTIONS(2871), - [sym__rel_operator] = ACTIONS(2869), - [anon_sym_AMP_AMP] = ACTIONS(2869), - [anon_sym_or] = ACTIONS(2869), - [anon_sym_PIPE_PIPE] = ACTIONS(2869), - [sym_let_operator] = ACTIONS(2871), - [sym__capitalized_identifier] = ACTIONS(2871), - [aux_sym_directive_token1] = ACTIONS(2869), - [aux_sym_tag_token1] = ACTIONS(2871), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1458] = { - [sym_attribute] = STATE(1458), - [sym__identifier] = ACTIONS(2963), - [anon_sym_SEMI_SEMI] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_external] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2963), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_true] = ACTIONS(2963), - [anon_sym_false] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2965), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_exception] = ACTIONS(2963), - [anon_sym_module] = ACTIONS(2963), - [anon_sym_open] = ACTIONS(2963), - [anon_sym_include] = ACTIONS(2963), - [anon_sym_class] = ACTIONS(2963), - [anon_sym_end] = ACTIONS(2963), - [anon_sym_object] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_COLON_COLON] = ACTIONS(2965), - [anon_sym_LBRACK_PIPE] = ACTIONS(2965), - [anon_sym_else] = ACTIONS(2963), - [anon_sym_new] = ACTIONS(2963), - [anon_sym_LBRACE_LT] = ACTIONS(2965), - [anon_sym_begin] = ACTIONS(2963), - [sym_ocamlyacc_value] = ACTIONS(2965), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2963), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2965), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2963), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2965), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2965), - [aux_sym_number_token1] = ACTIONS(2965), - [anon_sym_SQUOTE] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(2965), - [sym_prefix_operator] = ACTIONS(2965), - [anon_sym_PLUS_DOT] = ACTIONS(2963), - [anon_sym_DASH_DOT] = ACTIONS(2963), - [sym_hash_operator] = ACTIONS(2965), - [aux_sym__pow_operator_token1] = ACTIONS(2965), - [anon_sym_lsl] = ACTIONS(2963), - [anon_sym_lsr] = ACTIONS(2963), - [anon_sym_asr] = ACTIONS(2963), - [aux_sym__mult_operator_token1] = ACTIONS(2963), - [anon_sym_mod] = ACTIONS(2963), - [anon_sym_land] = ACTIONS(2963), - [anon_sym_lor] = ACTIONS(2963), - [anon_sym_lxor] = ACTIONS(2963), - [aux_sym__add_operator_token1] = ACTIONS(2963), - [sym__concat_operator] = ACTIONS(2965), - [sym__rel_operator] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [sym_let_operator] = ACTIONS(2965), - [sym__capitalized_identifier] = ACTIONS(2965), - [aux_sym_directive_token1] = ACTIONS(2963), - [aux_sym_tag_token1] = ACTIONS(2965), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1459] = { - [sym_attribute] = STATE(1459), - [sym__identifier] = ACTIONS(3190), - [anon_sym_SEMI_SEMI] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_and] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_COLON_EQ] = ACTIONS(3192), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_exception] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_open] = ACTIONS(3190), - [anon_sym_include] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_end] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_in] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_PIPE] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_LBRACE_LT] = ACTIONS(3192), - [anon_sym_begin] = ACTIONS(3190), - [sym_ocamlyacc_value] = ACTIONS(3192), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3190), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3192), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3192), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3192), - [aux_sym_number_token1] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_prefix_operator] = ACTIONS(3192), - [anon_sym_PLUS_DOT] = ACTIONS(3190), - [anon_sym_DASH_DOT] = ACTIONS(3190), - [aux_sym__pow_operator_token1] = ACTIONS(3192), - [anon_sym_lsl] = ACTIONS(3190), - [anon_sym_lsr] = ACTIONS(3190), - [anon_sym_asr] = ACTIONS(3190), - [aux_sym__mult_operator_token1] = ACTIONS(3190), - [anon_sym_mod] = ACTIONS(3190), - [anon_sym_land] = ACTIONS(3190), - [anon_sym_lor] = ACTIONS(3190), - [anon_sym_lxor] = ACTIONS(3190), - [aux_sym__add_operator_token1] = ACTIONS(3190), - [sym__concat_operator] = ACTIONS(3192), - [sym__rel_operator] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_or] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [sym_let_operator] = ACTIONS(3192), - [sym_and_operator] = ACTIONS(3192), - [sym__capitalized_identifier] = ACTIONS(3192), - [aux_sym_directive_token1] = ACTIONS(3192), - [aux_sym_tag_token1] = ACTIONS(3192), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1460] = { - [sym_attribute] = STATE(1460), - [sym__identifier] = ACTIONS(2903), - [anon_sym_SEMI_SEMI] = ACTIONS(2905), - [anon_sym_let] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_external] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2903), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_true] = ACTIONS(2903), - [anon_sym_false] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2905), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_exception] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(2903), - [anon_sym_open] = ACTIONS(2903), - [anon_sym_include] = ACTIONS(2903), - [anon_sym_class] = ACTIONS(2903), - [anon_sym_end] = ACTIONS(2903), - [anon_sym_object] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_COLON_COLON] = ACTIONS(2905), - [anon_sym_LBRACK_PIPE] = ACTIONS(2905), - [anon_sym_else] = ACTIONS(2903), - [anon_sym_new] = ACTIONS(2903), - [anon_sym_LBRACE_LT] = ACTIONS(2905), - [anon_sym_begin] = ACTIONS(2903), - [sym_ocamlyacc_value] = ACTIONS(2905), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2903), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2905), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2903), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2905), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2905), - [aux_sym_number_token1] = ACTIONS(2905), - [anon_sym_SQUOTE] = ACTIONS(2905), - [anon_sym_DQUOTE] = ACTIONS(2905), - [sym_prefix_operator] = ACTIONS(2905), - [anon_sym_PLUS_DOT] = ACTIONS(2903), - [anon_sym_DASH_DOT] = ACTIONS(2903), - [sym_hash_operator] = ACTIONS(2905), - [aux_sym__pow_operator_token1] = ACTIONS(2905), - [anon_sym_lsl] = ACTIONS(2903), - [anon_sym_lsr] = ACTIONS(2903), - [anon_sym_asr] = ACTIONS(2903), - [aux_sym__mult_operator_token1] = ACTIONS(2903), - [anon_sym_mod] = ACTIONS(2903), - [anon_sym_land] = ACTIONS(2903), - [anon_sym_lor] = ACTIONS(2903), - [anon_sym_lxor] = ACTIONS(2903), - [aux_sym__add_operator_token1] = ACTIONS(2903), - [sym__concat_operator] = ACTIONS(2905), - [sym__rel_operator] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [sym_let_operator] = ACTIONS(2905), - [sym__capitalized_identifier] = ACTIONS(2905), - [aux_sym_directive_token1] = ACTIONS(2903), - [aux_sym_tag_token1] = ACTIONS(2905), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1461] = { - [sym_attribute] = STATE(1461), - [sym__identifier] = ACTIONS(2947), - [anon_sym_SEMI_SEMI] = ACTIONS(2949), - [anon_sym_let] = ACTIONS(2947), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_QMARK] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2949), - [anon_sym_external] = ACTIONS(2947), - [anon_sym_type] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2947), - [anon_sym_DASH] = ACTIONS(2947), - [anon_sym_COLON_EQ] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2947), - [anon_sym_RBRACK] = ACTIONS(2949), - [anon_sym_true] = ACTIONS(2947), - [anon_sym_false] = ACTIONS(2947), - [anon_sym_DOT] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_SEMI] = ACTIONS(2947), - [anon_sym_exception] = ACTIONS(2947), - [anon_sym_module] = ACTIONS(2947), - [anon_sym_open] = ACTIONS(2947), - [anon_sym_include] = ACTIONS(2947), - [anon_sym_class] = ACTIONS(2947), - [anon_sym_end] = ACTIONS(2947), - [anon_sym_object] = ACTIONS(2947), - [anon_sym_AMP] = ACTIONS(2947), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_COLON_COLON] = ACTIONS(2949), - [anon_sym_LBRACK_PIPE] = ACTIONS(2949), - [anon_sym_else] = ACTIONS(2947), - [anon_sym_new] = ACTIONS(2947), - [anon_sym_LBRACE_LT] = ACTIONS(2949), - [anon_sym_begin] = ACTIONS(2947), - [sym_ocamlyacc_value] = ACTIONS(2949), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2947), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2949), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2947), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2949), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2949), - [aux_sym_number_token1] = ACTIONS(2949), - [anon_sym_SQUOTE] = ACTIONS(2949), - [anon_sym_DQUOTE] = ACTIONS(2949), - [sym_prefix_operator] = ACTIONS(2949), - [anon_sym_PLUS_DOT] = ACTIONS(2947), - [anon_sym_DASH_DOT] = ACTIONS(2947), - [sym_hash_operator] = ACTIONS(2949), - [aux_sym__pow_operator_token1] = ACTIONS(2949), - [anon_sym_lsl] = ACTIONS(2947), - [anon_sym_lsr] = ACTIONS(2947), - [anon_sym_asr] = ACTIONS(2947), - [aux_sym__mult_operator_token1] = ACTIONS(2947), - [anon_sym_mod] = ACTIONS(2947), - [anon_sym_land] = ACTIONS(2947), - [anon_sym_lor] = ACTIONS(2947), - [anon_sym_lxor] = ACTIONS(2947), - [aux_sym__add_operator_token1] = ACTIONS(2947), - [sym__concat_operator] = ACTIONS(2949), - [sym__rel_operator] = ACTIONS(2947), - [anon_sym_AMP_AMP] = ACTIONS(2947), - [anon_sym_or] = ACTIONS(2947), - [anon_sym_PIPE_PIPE] = ACTIONS(2947), - [sym_let_operator] = ACTIONS(2949), - [sym__capitalized_identifier] = ACTIONS(2949), - [aux_sym_directive_token1] = ACTIONS(2947), - [aux_sym_tag_token1] = ACTIONS(2949), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1462] = { - [sym_attribute] = STATE(1462), - [sym__identifier] = ACTIONS(2951), - [anon_sym_SEMI_SEMI] = ACTIONS(2953), - [anon_sym_let] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2953), - [anon_sym_external] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2953), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2953), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2951), - [anon_sym_RBRACK] = ACTIONS(2953), - [anon_sym_true] = ACTIONS(2951), - [anon_sym_false] = ACTIONS(2951), - [anon_sym_DOT] = ACTIONS(2953), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_SEMI] = ACTIONS(2951), - [anon_sym_exception] = ACTIONS(2951), - [anon_sym_module] = ACTIONS(2951), - [anon_sym_open] = ACTIONS(2951), - [anon_sym_include] = ACTIONS(2951), - [anon_sym_class] = ACTIONS(2951), - [anon_sym_end] = ACTIONS(2951), - [anon_sym_object] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_COLON_COLON] = ACTIONS(2953), - [anon_sym_LBRACK_PIPE] = ACTIONS(2953), - [anon_sym_else] = ACTIONS(2951), - [anon_sym_new] = ACTIONS(2951), - [anon_sym_LBRACE_LT] = ACTIONS(2953), - [anon_sym_begin] = ACTIONS(2951), - [sym_ocamlyacc_value] = ACTIONS(2953), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2951), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2953), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2951), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2953), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2953), - [aux_sym_number_token1] = ACTIONS(2953), - [anon_sym_SQUOTE] = ACTIONS(2953), - [anon_sym_DQUOTE] = ACTIONS(2953), - [sym_prefix_operator] = ACTIONS(2953), - [anon_sym_PLUS_DOT] = ACTIONS(2951), - [anon_sym_DASH_DOT] = ACTIONS(2951), - [sym_hash_operator] = ACTIONS(2953), - [aux_sym__pow_operator_token1] = ACTIONS(2953), - [anon_sym_lsl] = ACTIONS(2951), - [anon_sym_lsr] = ACTIONS(2951), - [anon_sym_asr] = ACTIONS(2951), - [aux_sym__mult_operator_token1] = ACTIONS(2951), - [anon_sym_mod] = ACTIONS(2951), - [anon_sym_land] = ACTIONS(2951), - [anon_sym_lor] = ACTIONS(2951), - [anon_sym_lxor] = ACTIONS(2951), - [aux_sym__add_operator_token1] = ACTIONS(2951), - [sym__concat_operator] = ACTIONS(2953), - [sym__rel_operator] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [sym_let_operator] = ACTIONS(2953), - [sym__capitalized_identifier] = ACTIONS(2953), - [aux_sym_directive_token1] = ACTIONS(2951), - [aux_sym_tag_token1] = ACTIONS(2953), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1463] = { - [sym_attribute] = STATE(1463), - [sym__identifier] = ACTIONS(3109), - [anon_sym_COLON_GT] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_RPAREN] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_COLON2] = ACTIONS(3109), - [anon_sym_DASH_GT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3111), - [anon_sym_RBRACE] = ACTIONS(3111), - [anon_sym_constraint] = ACTIONS(3109), - [anon_sym_val] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_with] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_inherit] = ACTIONS(3109), - [anon_sym_method] = ACTIONS(3109), - [anon_sym_initializer] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_then] = ACTIONS(3109), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_do] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_GT_RBRACE] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1464] = { - [sym_attribute] = STATE(1464), - [sym__identifier] = ACTIONS(2658), - [anon_sym_SEMI_SEMI] = ACTIONS(2660), - [anon_sym_let] = ACTIONS(2658), - [anon_sym_TILDE] = ACTIONS(2658), - [anon_sym_QMARK] = ACTIONS(2658), - [anon_sym_LPAREN] = ACTIONS(2660), - [anon_sym_external] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_COMMA] = ACTIONS(2660), - [anon_sym_PLUS] = ACTIONS(2658), - [anon_sym_DASH] = ACTIONS(2658), - [anon_sym_COLON_EQ] = ACTIONS(2660), - [anon_sym_PIPE] = ACTIONS(2658), - [anon_sym_LBRACK] = ACTIONS(2658), - [anon_sym_RBRACK] = ACTIONS(2660), - [anon_sym_true] = ACTIONS(2658), - [anon_sym_false] = ACTIONS(2658), - [anon_sym_DOT] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2658), - [anon_sym_exception] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_open] = ACTIONS(2658), - [anon_sym_include] = ACTIONS(2658), - [anon_sym_class] = ACTIONS(2658), - [anon_sym_end] = ACTIONS(2658), - [anon_sym_object] = ACTIONS(2658), - [anon_sym_AMP] = ACTIONS(2658), - [anon_sym_POUND] = ACTIONS(2658), - [anon_sym_COLON_COLON] = ACTIONS(2660), - [anon_sym_LBRACK_PIPE] = ACTIONS(2660), - [anon_sym_else] = ACTIONS(2658), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_LBRACE_LT] = ACTIONS(2660), - [anon_sym_begin] = ACTIONS(2658), - [sym_ocamlyacc_value] = ACTIONS(2660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2660), - [aux_sym_number_token1] = ACTIONS(2660), - [anon_sym_SQUOTE] = ACTIONS(2660), - [anon_sym_DQUOTE] = ACTIONS(2660), - [sym_prefix_operator] = ACTIONS(2660), - [anon_sym_PLUS_DOT] = ACTIONS(2658), - [anon_sym_DASH_DOT] = ACTIONS(2658), - [sym_hash_operator] = ACTIONS(2660), - [aux_sym__pow_operator_token1] = ACTIONS(2660), - [anon_sym_lsl] = ACTIONS(2658), - [anon_sym_lsr] = ACTIONS(2658), - [anon_sym_asr] = ACTIONS(2658), - [aux_sym__mult_operator_token1] = ACTIONS(2658), - [anon_sym_mod] = ACTIONS(2658), - [anon_sym_land] = ACTIONS(2658), - [anon_sym_lor] = ACTIONS(2658), - [anon_sym_lxor] = ACTIONS(2658), - [aux_sym__add_operator_token1] = ACTIONS(2658), - [sym__concat_operator] = ACTIONS(2660), - [sym__rel_operator] = ACTIONS(2658), - [anon_sym_AMP_AMP] = ACTIONS(2658), - [anon_sym_or] = ACTIONS(2658), - [anon_sym_PIPE_PIPE] = ACTIONS(2658), - [sym_let_operator] = ACTIONS(2660), - [sym__capitalized_identifier] = ACTIONS(2660), - [aux_sym_directive_token1] = ACTIONS(2658), - [aux_sym_tag_token1] = ACTIONS(2660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1465] = { - [sym_attribute] = STATE(1465), - [sym__identifier] = ACTIONS(2650), - [anon_sym_SEMI_SEMI] = ACTIONS(2652), - [anon_sym_let] = ACTIONS(2650), - [anon_sym_TILDE] = ACTIONS(2650), - [anon_sym_QMARK] = ACTIONS(2650), - [anon_sym_LPAREN] = ACTIONS(2652), - [anon_sym_external] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_COMMA] = ACTIONS(2652), - [anon_sym_PLUS] = ACTIONS(2650), - [anon_sym_DASH] = ACTIONS(2650), - [anon_sym_COLON_EQ] = ACTIONS(2652), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LBRACK] = ACTIONS(2650), - [anon_sym_RBRACK] = ACTIONS(2652), - [anon_sym_true] = ACTIONS(2650), - [anon_sym_false] = ACTIONS(2650), - [anon_sym_DOT] = ACTIONS(2652), - [anon_sym_LBRACE] = ACTIONS(2650), - [anon_sym_SEMI] = ACTIONS(2650), - [anon_sym_exception] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_open] = ACTIONS(2650), - [anon_sym_include] = ACTIONS(2650), - [anon_sym_class] = ACTIONS(2650), - [anon_sym_end] = ACTIONS(2650), - [anon_sym_object] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_POUND] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2652), - [anon_sym_LBRACK_PIPE] = ACTIONS(2652), - [anon_sym_else] = ACTIONS(2650), - [anon_sym_new] = ACTIONS(2650), - [anon_sym_LBRACE_LT] = ACTIONS(2652), - [anon_sym_begin] = ACTIONS(2650), - [sym_ocamlyacc_value] = ACTIONS(2652), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2650), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2652), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2650), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2652), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2652), - [aux_sym_number_token1] = ACTIONS(2652), - [anon_sym_SQUOTE] = ACTIONS(2652), - [anon_sym_DQUOTE] = ACTIONS(2652), - [sym_prefix_operator] = ACTIONS(2652), - [anon_sym_PLUS_DOT] = ACTIONS(2650), - [anon_sym_DASH_DOT] = ACTIONS(2650), - [sym_hash_operator] = ACTIONS(2652), - [aux_sym__pow_operator_token1] = ACTIONS(2652), - [anon_sym_lsl] = ACTIONS(2650), - [anon_sym_lsr] = ACTIONS(2650), - [anon_sym_asr] = ACTIONS(2650), - [aux_sym__mult_operator_token1] = ACTIONS(2650), - [anon_sym_mod] = ACTIONS(2650), - [anon_sym_land] = ACTIONS(2650), - [anon_sym_lor] = ACTIONS(2650), - [anon_sym_lxor] = ACTIONS(2650), - [aux_sym__add_operator_token1] = ACTIONS(2650), - [sym__concat_operator] = ACTIONS(2652), - [sym__rel_operator] = ACTIONS(2650), - [anon_sym_AMP_AMP] = ACTIONS(2650), - [anon_sym_or] = ACTIONS(2650), - [anon_sym_PIPE_PIPE] = ACTIONS(2650), - [sym_let_operator] = ACTIONS(2652), - [sym__capitalized_identifier] = ACTIONS(2652), - [aux_sym_directive_token1] = ACTIONS(2650), - [aux_sym_tag_token1] = ACTIONS(2652), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1466] = { - [sym_attribute] = STATE(1466), - [sym__identifier] = ACTIONS(2991), - [anon_sym_SEMI_SEMI] = ACTIONS(2993), - [anon_sym_let] = ACTIONS(2991), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_external] = ACTIONS(2991), - [anon_sym_type] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2991), - [anon_sym_DASH] = ACTIONS(2991), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2993), - [anon_sym_true] = ACTIONS(2991), - [anon_sym_false] = ACTIONS(2991), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_SEMI] = ACTIONS(2991), - [anon_sym_exception] = ACTIONS(2991), - [anon_sym_module] = ACTIONS(2991), - [anon_sym_open] = ACTIONS(2991), - [anon_sym_include] = ACTIONS(2991), - [anon_sym_class] = ACTIONS(2991), - [anon_sym_end] = ACTIONS(2991), - [anon_sym_object] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2991), - [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_COLON_COLON] = ACTIONS(2993), - [anon_sym_LBRACK_PIPE] = ACTIONS(2993), - [anon_sym_else] = ACTIONS(2991), - [anon_sym_new] = ACTIONS(2991), - [anon_sym_LBRACE_LT] = ACTIONS(2993), - [anon_sym_begin] = ACTIONS(2991), - [sym_ocamlyacc_value] = ACTIONS(2993), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2991), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2993), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2991), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2993), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2993), - [aux_sym_number_token1] = ACTIONS(2993), - [anon_sym_SQUOTE] = ACTIONS(2993), - [anon_sym_DQUOTE] = ACTIONS(2993), - [sym_prefix_operator] = ACTIONS(2993), - [anon_sym_PLUS_DOT] = ACTIONS(2991), - [anon_sym_DASH_DOT] = ACTIONS(2991), - [sym_hash_operator] = ACTIONS(2993), - [aux_sym__pow_operator_token1] = ACTIONS(2993), - [anon_sym_lsl] = ACTIONS(2991), - [anon_sym_lsr] = ACTIONS(2991), - [anon_sym_asr] = ACTIONS(2991), - [aux_sym__mult_operator_token1] = ACTIONS(2991), - [anon_sym_mod] = ACTIONS(2991), - [anon_sym_land] = ACTIONS(2991), - [anon_sym_lor] = ACTIONS(2991), - [anon_sym_lxor] = ACTIONS(2991), - [aux_sym__add_operator_token1] = ACTIONS(2991), - [sym__concat_operator] = ACTIONS(2993), - [sym__rel_operator] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [sym_let_operator] = ACTIONS(2993), - [sym__capitalized_identifier] = ACTIONS(2993), - [aux_sym_directive_token1] = ACTIONS(2991), - [aux_sym_tag_token1] = ACTIONS(2993), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1467] = { - [sym_attribute] = STATE(1467), - [sym__identifier] = ACTIONS(3194), - [anon_sym_COLON_GT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_RPAREN] = ACTIONS(3196), - [anon_sym_COMMA] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_COLON_EQ] = ACTIONS(3196), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_COLON2] = ACTIONS(3194), - [anon_sym_DASH_GT] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_constraint] = ACTIONS(3194), - [anon_sym_val] = ACTIONS(3194), - [anon_sym_end] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_inherit] = ACTIONS(3194), - [anon_sym_method] = ACTIONS(3194), - [anon_sym_initializer] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_PIPE] = ACTIONS(3196), - [anon_sym_then] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_LBRACE_LT] = ACTIONS(3196), - [anon_sym_GT_RBRACE] = ACTIONS(3196), - [anon_sym_begin] = ACTIONS(3194), - [sym_ocamlyacc_value] = ACTIONS(3196), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3194), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3196), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3196), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3196), - [aux_sym_number_token1] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_prefix_operator] = ACTIONS(3196), - [anon_sym_PLUS_DOT] = ACTIONS(3194), - [anon_sym_DASH_DOT] = ACTIONS(3194), - [aux_sym__pow_operator_token1] = ACTIONS(3196), - [anon_sym_lsl] = ACTIONS(3194), - [anon_sym_lsr] = ACTIONS(3194), - [anon_sym_asr] = ACTIONS(3194), - [aux_sym__mult_operator_token1] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3194), - [anon_sym_land] = ACTIONS(3194), - [anon_sym_lor] = ACTIONS(3194), - [anon_sym_lxor] = ACTIONS(3194), - [aux_sym__add_operator_token1] = ACTIONS(3194), - [sym__concat_operator] = ACTIONS(3196), - [sym__rel_operator] = ACTIONS(3194), - [anon_sym_AMP_AMP] = ACTIONS(3194), - [anon_sym_or] = ACTIONS(3194), - [anon_sym_PIPE_PIPE] = ACTIONS(3194), - [sym__capitalized_identifier] = ACTIONS(3196), - [aux_sym_tag_token1] = ACTIONS(3196), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1468] = { - [sym_attribute] = STATE(1468), - [sym__identifier] = ACTIONS(2899), - [anon_sym_SEMI_SEMI] = ACTIONS(2901), - [anon_sym_let] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_external] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_true] = ACTIONS(2899), - [anon_sym_false] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2901), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_exception] = ACTIONS(2899), - [anon_sym_module] = ACTIONS(2899), - [anon_sym_open] = ACTIONS(2899), - [anon_sym_include] = ACTIONS(2899), - [anon_sym_class] = ACTIONS(2899), - [anon_sym_end] = ACTIONS(2899), - [anon_sym_object] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_COLON_COLON] = ACTIONS(2901), - [anon_sym_LBRACK_PIPE] = ACTIONS(2901), - [anon_sym_else] = ACTIONS(2899), - [anon_sym_new] = ACTIONS(2899), - [anon_sym_LBRACE_LT] = ACTIONS(2901), - [anon_sym_begin] = ACTIONS(2899), - [sym_ocamlyacc_value] = ACTIONS(2901), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2899), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2901), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2899), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2901), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2901), - [aux_sym_number_token1] = ACTIONS(2901), - [anon_sym_SQUOTE] = ACTIONS(2901), - [anon_sym_DQUOTE] = ACTIONS(2901), - [sym_prefix_operator] = ACTIONS(2901), - [anon_sym_PLUS_DOT] = ACTIONS(2899), - [anon_sym_DASH_DOT] = ACTIONS(2899), - [sym_hash_operator] = ACTIONS(2901), - [aux_sym__pow_operator_token1] = ACTIONS(2901), - [anon_sym_lsl] = ACTIONS(2899), - [anon_sym_lsr] = ACTIONS(2899), - [anon_sym_asr] = ACTIONS(2899), - [aux_sym__mult_operator_token1] = ACTIONS(2899), - [anon_sym_mod] = ACTIONS(2899), - [anon_sym_land] = ACTIONS(2899), - [anon_sym_lor] = ACTIONS(2899), - [anon_sym_lxor] = ACTIONS(2899), - [aux_sym__add_operator_token1] = ACTIONS(2899), - [sym__concat_operator] = ACTIONS(2901), - [sym__rel_operator] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [sym_let_operator] = ACTIONS(2901), - [sym__capitalized_identifier] = ACTIONS(2901), - [aux_sym_directive_token1] = ACTIONS(2899), - [aux_sym_tag_token1] = ACTIONS(2901), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1469] = { - [sym_attribute] = STATE(1469), - [sym__identifier] = ACTIONS(2891), - [anon_sym_SEMI_SEMI] = ACTIONS(2893), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_external] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2891), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_true] = ACTIONS(2891), - [anon_sym_false] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2893), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_exception] = ACTIONS(2891), - [anon_sym_module] = ACTIONS(2891), - [anon_sym_open] = ACTIONS(2891), - [anon_sym_include] = ACTIONS(2891), - [anon_sym_class] = ACTIONS(2891), - [anon_sym_end] = ACTIONS(2891), - [anon_sym_object] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_COLON_COLON] = ACTIONS(2893), - [anon_sym_LBRACK_PIPE] = ACTIONS(2893), - [anon_sym_else] = ACTIONS(2891), - [anon_sym_new] = ACTIONS(2891), - [anon_sym_LBRACE_LT] = ACTIONS(2893), - [anon_sym_begin] = ACTIONS(2891), - [sym_ocamlyacc_value] = ACTIONS(2893), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2891), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2893), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2891), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2893), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2893), - [aux_sym_number_token1] = ACTIONS(2893), - [anon_sym_SQUOTE] = ACTIONS(2893), - [anon_sym_DQUOTE] = ACTIONS(2893), - [sym_prefix_operator] = ACTIONS(2893), - [anon_sym_PLUS_DOT] = ACTIONS(2891), - [anon_sym_DASH_DOT] = ACTIONS(2891), - [sym_hash_operator] = ACTIONS(2893), - [aux_sym__pow_operator_token1] = ACTIONS(2893), - [anon_sym_lsl] = ACTIONS(2891), - [anon_sym_lsr] = ACTIONS(2891), - [anon_sym_asr] = ACTIONS(2891), - [aux_sym__mult_operator_token1] = ACTIONS(2891), - [anon_sym_mod] = ACTIONS(2891), - [anon_sym_land] = ACTIONS(2891), - [anon_sym_lor] = ACTIONS(2891), - [anon_sym_lxor] = ACTIONS(2891), - [aux_sym__add_operator_token1] = ACTIONS(2891), - [sym__concat_operator] = ACTIONS(2893), - [sym__rel_operator] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [sym_let_operator] = ACTIONS(2893), - [sym__capitalized_identifier] = ACTIONS(2893), - [aux_sym_directive_token1] = ACTIONS(2891), - [aux_sym_tag_token1] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1470] = { - [sym_attribute] = STATE(1470), - [sym__identifier] = ACTIONS(3113), - [anon_sym_SEMI_SEMI] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_external] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3113), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_true] = ACTIONS(3113), - [anon_sym_false] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3115), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_exception] = ACTIONS(3113), - [anon_sym_module] = ACTIONS(3113), - [anon_sym_open] = ACTIONS(3113), - [anon_sym_include] = ACTIONS(3113), - [anon_sym_class] = ACTIONS(3113), - [anon_sym_end] = ACTIONS(3113), - [anon_sym_object] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_COLON_COLON] = ACTIONS(3115), - [anon_sym_LBRACK_PIPE] = ACTIONS(3115), - [anon_sym_else] = ACTIONS(3113), - [anon_sym_new] = ACTIONS(3113), - [anon_sym_LBRACE_LT] = ACTIONS(3115), - [anon_sym_begin] = ACTIONS(3113), - [sym_ocamlyacc_value] = ACTIONS(3115), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3113), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3115), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3113), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3115), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3115), - [aux_sym_number_token1] = ACTIONS(3115), - [anon_sym_SQUOTE] = ACTIONS(3115), - [anon_sym_DQUOTE] = ACTIONS(3115), - [sym_prefix_operator] = ACTIONS(3115), - [anon_sym_PLUS_DOT] = ACTIONS(3113), - [anon_sym_DASH_DOT] = ACTIONS(3113), - [sym_hash_operator] = ACTIONS(3115), - [aux_sym__pow_operator_token1] = ACTIONS(3115), - [anon_sym_lsl] = ACTIONS(3113), - [anon_sym_lsr] = ACTIONS(3113), - [anon_sym_asr] = ACTIONS(3113), - [aux_sym__mult_operator_token1] = ACTIONS(3113), - [anon_sym_mod] = ACTIONS(3113), - [anon_sym_land] = ACTIONS(3113), - [anon_sym_lor] = ACTIONS(3113), - [anon_sym_lxor] = ACTIONS(3113), - [aux_sym__add_operator_token1] = ACTIONS(3113), - [sym__concat_operator] = ACTIONS(3115), - [sym__rel_operator] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [sym_let_operator] = ACTIONS(3115), - [sym__capitalized_identifier] = ACTIONS(3115), - [aux_sym_directive_token1] = ACTIONS(3113), - [aux_sym_tag_token1] = ACTIONS(3115), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1471] = { - [sym_attribute] = STATE(1471), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1472] = { - [sym_attribute] = STATE(1472), - [sym__identifier] = ACTIONS(2955), - [anon_sym_SEMI_SEMI] = ACTIONS(2957), - [anon_sym_let] = ACTIONS(2955), - [anon_sym_TILDE] = ACTIONS(2955), - [anon_sym_QMARK] = ACTIONS(2955), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_external] = ACTIONS(2955), - [anon_sym_type] = ACTIONS(2955), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_PLUS] = ACTIONS(2955), - [anon_sym_DASH] = ACTIONS(2955), - [anon_sym_COLON_EQ] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2955), - [anon_sym_LBRACK] = ACTIONS(2955), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2955), - [anon_sym_false] = ACTIONS(2955), - [anon_sym_DOT] = ACTIONS(2957), - [anon_sym_LBRACE] = ACTIONS(2955), - [anon_sym_SEMI] = ACTIONS(2955), - [anon_sym_exception] = ACTIONS(2955), - [anon_sym_module] = ACTIONS(2955), - [anon_sym_open] = ACTIONS(2955), - [anon_sym_include] = ACTIONS(2955), - [anon_sym_class] = ACTIONS(2955), - [anon_sym_end] = ACTIONS(2955), - [anon_sym_object] = ACTIONS(2955), - [anon_sym_AMP] = ACTIONS(2955), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_COLON_COLON] = ACTIONS(2957), - [anon_sym_LBRACK_PIPE] = ACTIONS(2957), - [anon_sym_else] = ACTIONS(2955), - [anon_sym_new] = ACTIONS(2955), - [anon_sym_LBRACE_LT] = ACTIONS(2957), - [anon_sym_begin] = ACTIONS(2955), - [sym_ocamlyacc_value] = ACTIONS(2957), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2955), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2957), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2955), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2957), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2957), - [aux_sym_number_token1] = ACTIONS(2957), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_DQUOTE] = ACTIONS(2957), - [sym_prefix_operator] = ACTIONS(2957), - [anon_sym_PLUS_DOT] = ACTIONS(2955), - [anon_sym_DASH_DOT] = ACTIONS(2955), - [sym_hash_operator] = ACTIONS(2957), - [aux_sym__pow_operator_token1] = ACTIONS(2957), - [anon_sym_lsl] = ACTIONS(2955), - [anon_sym_lsr] = ACTIONS(2955), - [anon_sym_asr] = ACTIONS(2955), - [aux_sym__mult_operator_token1] = ACTIONS(2955), - [anon_sym_mod] = ACTIONS(2955), - [anon_sym_land] = ACTIONS(2955), - [anon_sym_lor] = ACTIONS(2955), - [anon_sym_lxor] = ACTIONS(2955), - [aux_sym__add_operator_token1] = ACTIONS(2955), - [sym__concat_operator] = ACTIONS(2957), - [sym__rel_operator] = ACTIONS(2955), - [anon_sym_AMP_AMP] = ACTIONS(2955), - [anon_sym_or] = ACTIONS(2955), - [anon_sym_PIPE_PIPE] = ACTIONS(2955), - [sym_let_operator] = ACTIONS(2957), - [sym__capitalized_identifier] = ACTIONS(2957), - [aux_sym_directive_token1] = ACTIONS(2955), - [aux_sym_tag_token1] = ACTIONS(2957), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1473] = { - [sym_attribute] = STATE(1473), - [sym__identifier] = ACTIONS(3077), - [anon_sym_SEMI_SEMI] = ACTIONS(3079), - [anon_sym_let] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3077), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_true] = ACTIONS(3077), - [anon_sym_false] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3079), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_exception] = ACTIONS(3077), - [anon_sym_module] = ACTIONS(3077), - [anon_sym_open] = ACTIONS(3077), - [anon_sym_include] = ACTIONS(3077), - [anon_sym_class] = ACTIONS(3077), - [anon_sym_end] = ACTIONS(3077), - [anon_sym_object] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_COLON_COLON] = ACTIONS(3079), - [anon_sym_LBRACK_PIPE] = ACTIONS(3079), - [anon_sym_else] = ACTIONS(3077), - [anon_sym_new] = ACTIONS(3077), - [anon_sym_LBRACE_LT] = ACTIONS(3079), - [anon_sym_begin] = ACTIONS(3077), - [sym_ocamlyacc_value] = ACTIONS(3079), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3077), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3079), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3077), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3079), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3079), - [aux_sym_number_token1] = ACTIONS(3079), - [anon_sym_SQUOTE] = ACTIONS(3079), - [anon_sym_DQUOTE] = ACTIONS(3079), - [sym_prefix_operator] = ACTIONS(3079), - [anon_sym_PLUS_DOT] = ACTIONS(3077), - [anon_sym_DASH_DOT] = ACTIONS(3077), - [sym_hash_operator] = ACTIONS(3079), - [aux_sym__pow_operator_token1] = ACTIONS(3079), - [anon_sym_lsl] = ACTIONS(3077), - [anon_sym_lsr] = ACTIONS(3077), - [anon_sym_asr] = ACTIONS(3077), - [aux_sym__mult_operator_token1] = ACTIONS(3077), - [anon_sym_mod] = ACTIONS(3077), - [anon_sym_land] = ACTIONS(3077), - [anon_sym_lor] = ACTIONS(3077), - [anon_sym_lxor] = ACTIONS(3077), - [aux_sym__add_operator_token1] = ACTIONS(3077), - [sym__concat_operator] = ACTIONS(3079), - [sym__rel_operator] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [sym_let_operator] = ACTIONS(3079), - [sym__capitalized_identifier] = ACTIONS(3079), - [aux_sym_directive_token1] = ACTIONS(3077), - [aux_sym_tag_token1] = ACTIONS(3079), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1474] = { - [sym_attribute] = STATE(1474), - [sym__identifier] = ACTIONS(2887), - [anon_sym_SEMI_SEMI] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2887), - [anon_sym_TILDE] = ACTIONS(2887), - [anon_sym_QMARK] = ACTIONS(2887), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_external] = ACTIONS(2887), - [anon_sym_type] = ACTIONS(2887), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_PLUS] = ACTIONS(2887), - [anon_sym_DASH] = ACTIONS(2887), - [anon_sym_COLON_EQ] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2887), - [anon_sym_LBRACK] = ACTIONS(2887), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_true] = ACTIONS(2887), - [anon_sym_false] = ACTIONS(2887), - [anon_sym_DOT] = ACTIONS(2889), - [anon_sym_LBRACE] = ACTIONS(2887), - [anon_sym_SEMI] = ACTIONS(2887), - [anon_sym_exception] = ACTIONS(2887), - [anon_sym_module] = ACTIONS(2887), - [anon_sym_open] = ACTIONS(2887), - [anon_sym_include] = ACTIONS(2887), - [anon_sym_class] = ACTIONS(2887), - [anon_sym_end] = ACTIONS(2887), - [anon_sym_object] = ACTIONS(2887), - [anon_sym_AMP] = ACTIONS(2887), - [anon_sym_POUND] = ACTIONS(2887), - [anon_sym_COLON_COLON] = ACTIONS(2889), - [anon_sym_LBRACK_PIPE] = ACTIONS(2889), - [anon_sym_else] = ACTIONS(2887), - [anon_sym_new] = ACTIONS(2887), - [anon_sym_LBRACE_LT] = ACTIONS(2889), - [anon_sym_begin] = ACTIONS(2887), - [sym_ocamlyacc_value] = ACTIONS(2889), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2887), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2889), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2887), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2889), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2889), - [aux_sym_number_token1] = ACTIONS(2889), - [anon_sym_SQUOTE] = ACTIONS(2889), - [anon_sym_DQUOTE] = ACTIONS(2889), - [sym_prefix_operator] = ACTIONS(2889), - [anon_sym_PLUS_DOT] = ACTIONS(2887), - [anon_sym_DASH_DOT] = ACTIONS(2887), - [sym_hash_operator] = ACTIONS(2889), - [aux_sym__pow_operator_token1] = ACTIONS(2889), - [anon_sym_lsl] = ACTIONS(2887), - [anon_sym_lsr] = ACTIONS(2887), - [anon_sym_asr] = ACTIONS(2887), - [aux_sym__mult_operator_token1] = ACTIONS(2887), - [anon_sym_mod] = ACTIONS(2887), - [anon_sym_land] = ACTIONS(2887), - [anon_sym_lor] = ACTIONS(2887), - [anon_sym_lxor] = ACTIONS(2887), - [aux_sym__add_operator_token1] = ACTIONS(2887), - [sym__concat_operator] = ACTIONS(2889), - [sym__rel_operator] = ACTIONS(2887), - [anon_sym_AMP_AMP] = ACTIONS(2887), - [anon_sym_or] = ACTIONS(2887), - [anon_sym_PIPE_PIPE] = ACTIONS(2887), - [sym_let_operator] = ACTIONS(2889), - [sym__capitalized_identifier] = ACTIONS(2889), - [aux_sym_directive_token1] = ACTIONS(2887), - [aux_sym_tag_token1] = ACTIONS(2889), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1475] = { - [sym_attribute] = STATE(1475), - [sym__identifier] = ACTIONS(2662), - [anon_sym_SEMI_SEMI] = ACTIONS(2664), - [anon_sym_let] = ACTIONS(2662), - [anon_sym_TILDE] = ACTIONS(2662), - [anon_sym_QMARK] = ACTIONS(2662), - [anon_sym_LPAREN] = ACTIONS(2664), - [anon_sym_external] = ACTIONS(2662), - [anon_sym_type] = ACTIONS(2662), - [anon_sym_COMMA] = ACTIONS(2664), - [anon_sym_PLUS] = ACTIONS(2662), - [anon_sym_DASH] = ACTIONS(2662), - [anon_sym_COLON_EQ] = ACTIONS(2664), - [anon_sym_PIPE] = ACTIONS(2662), - [anon_sym_LBRACK] = ACTIONS(2662), - [anon_sym_RBRACK] = ACTIONS(2664), - [anon_sym_true] = ACTIONS(2662), - [anon_sym_false] = ACTIONS(2662), - [anon_sym_DOT] = ACTIONS(2664), - [anon_sym_LBRACE] = ACTIONS(2662), - [anon_sym_SEMI] = ACTIONS(2662), - [anon_sym_exception] = ACTIONS(2662), - [anon_sym_module] = ACTIONS(2662), - [anon_sym_open] = ACTIONS(2662), - [anon_sym_include] = ACTIONS(2662), - [anon_sym_class] = ACTIONS(2662), - [anon_sym_end] = ACTIONS(2662), - [anon_sym_object] = ACTIONS(2662), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_POUND] = ACTIONS(2662), - [anon_sym_COLON_COLON] = ACTIONS(2664), - [anon_sym_LBRACK_PIPE] = ACTIONS(2664), - [anon_sym_else] = ACTIONS(2662), - [anon_sym_new] = ACTIONS(2662), - [anon_sym_LBRACE_LT] = ACTIONS(2664), - [anon_sym_begin] = ACTIONS(2662), - [sym_ocamlyacc_value] = ACTIONS(2664), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2662), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2664), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2662), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2664), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2664), - [aux_sym_number_token1] = ACTIONS(2664), - [anon_sym_SQUOTE] = ACTIONS(2664), - [anon_sym_DQUOTE] = ACTIONS(2664), - [sym_prefix_operator] = ACTIONS(2664), - [anon_sym_PLUS_DOT] = ACTIONS(2662), - [anon_sym_DASH_DOT] = ACTIONS(2662), - [sym_hash_operator] = ACTIONS(2664), - [aux_sym__pow_operator_token1] = ACTIONS(2664), - [anon_sym_lsl] = ACTIONS(2662), - [anon_sym_lsr] = ACTIONS(2662), - [anon_sym_asr] = ACTIONS(2662), - [aux_sym__mult_operator_token1] = ACTIONS(2662), - [anon_sym_mod] = ACTIONS(2662), - [anon_sym_land] = ACTIONS(2662), - [anon_sym_lor] = ACTIONS(2662), - [anon_sym_lxor] = ACTIONS(2662), - [aux_sym__add_operator_token1] = ACTIONS(2662), - [sym__concat_operator] = ACTIONS(2664), - [sym__rel_operator] = ACTIONS(2662), - [anon_sym_AMP_AMP] = ACTIONS(2662), - [anon_sym_or] = ACTIONS(2662), - [anon_sym_PIPE_PIPE] = ACTIONS(2662), - [sym_let_operator] = ACTIONS(2664), - [sym__capitalized_identifier] = ACTIONS(2664), - [aux_sym_directive_token1] = ACTIONS(2662), - [aux_sym_tag_token1] = ACTIONS(2664), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1476] = { - [sym_attribute] = STATE(1476), - [sym__identifier] = ACTIONS(2927), - [anon_sym_SEMI_SEMI] = ACTIONS(2929), - [anon_sym_let] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_external] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2927), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_true] = ACTIONS(2927), - [anon_sym_false] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2929), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_exception] = ACTIONS(2927), - [anon_sym_module] = ACTIONS(2927), - [anon_sym_open] = ACTIONS(2927), - [anon_sym_include] = ACTIONS(2927), - [anon_sym_class] = ACTIONS(2927), - [anon_sym_end] = ACTIONS(2927), - [anon_sym_object] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_COLON_COLON] = ACTIONS(2929), - [anon_sym_LBRACK_PIPE] = ACTIONS(2929), - [anon_sym_else] = ACTIONS(2927), - [anon_sym_new] = ACTIONS(2927), - [anon_sym_LBRACE_LT] = ACTIONS(2929), - [anon_sym_begin] = ACTIONS(2927), - [sym_ocamlyacc_value] = ACTIONS(2929), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2927), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2929), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2927), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2929), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2929), - [aux_sym_number_token1] = ACTIONS(2929), - [anon_sym_SQUOTE] = ACTIONS(2929), - [anon_sym_DQUOTE] = ACTIONS(2929), - [sym_prefix_operator] = ACTIONS(2929), - [anon_sym_PLUS_DOT] = ACTIONS(2927), - [anon_sym_DASH_DOT] = ACTIONS(2927), - [sym_hash_operator] = ACTIONS(2929), - [aux_sym__pow_operator_token1] = ACTIONS(2929), - [anon_sym_lsl] = ACTIONS(2927), - [anon_sym_lsr] = ACTIONS(2927), - [anon_sym_asr] = ACTIONS(2927), - [aux_sym__mult_operator_token1] = ACTIONS(2927), - [anon_sym_mod] = ACTIONS(2927), - [anon_sym_land] = ACTIONS(2927), - [anon_sym_lor] = ACTIONS(2927), - [anon_sym_lxor] = ACTIONS(2927), - [aux_sym__add_operator_token1] = ACTIONS(2927), - [sym__concat_operator] = ACTIONS(2929), - [sym__rel_operator] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [sym_let_operator] = ACTIONS(2929), - [sym__capitalized_identifier] = ACTIONS(2929), - [aux_sym_directive_token1] = ACTIONS(2927), - [aux_sym_tag_token1] = ACTIONS(2929), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1477] = { - [sym_attribute] = STATE(1477), - [sym__identifier] = ACTIONS(3182), - [anon_sym_COLON_GT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_RPAREN] = ACTIONS(3184), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_COLON_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [anon_sym_COLON2] = ACTIONS(3182), - [anon_sym_DASH_GT] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_constraint] = ACTIONS(3182), - [anon_sym_val] = ACTIONS(3182), - [anon_sym_end] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_inherit] = ACTIONS(3182), - [anon_sym_method] = ACTIONS(3182), - [anon_sym_initializer] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_PIPE] = ACTIONS(3184), - [anon_sym_then] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_LBRACE_LT] = ACTIONS(3184), - [anon_sym_GT_RBRACE] = ACTIONS(3184), - [anon_sym_begin] = ACTIONS(3182), - [sym_ocamlyacc_value] = ACTIONS(3184), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3182), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3184), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3184), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3184), - [aux_sym_number_token1] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_prefix_operator] = ACTIONS(3184), - [anon_sym_PLUS_DOT] = ACTIONS(3182), - [anon_sym_DASH_DOT] = ACTIONS(3182), - [aux_sym__pow_operator_token1] = ACTIONS(3184), - [anon_sym_lsl] = ACTIONS(3182), - [anon_sym_lsr] = ACTIONS(3182), - [anon_sym_asr] = ACTIONS(3182), - [aux_sym__mult_operator_token1] = ACTIONS(3182), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_land] = ACTIONS(3182), - [anon_sym_lor] = ACTIONS(3182), - [anon_sym_lxor] = ACTIONS(3182), - [aux_sym__add_operator_token1] = ACTIONS(3182), - [sym__concat_operator] = ACTIONS(3184), - [sym__rel_operator] = ACTIONS(3182), - [anon_sym_AMP_AMP] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_PIPE_PIPE] = ACTIONS(3182), - [sym__capitalized_identifier] = ACTIONS(3184), - [aux_sym_tag_token1] = ACTIONS(3184), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1478] = { - [sym_attribute] = STATE(1478), - [sym__identifier] = ACTIONS(2851), - [anon_sym_SEMI_SEMI] = ACTIONS(2853), - [anon_sym_let] = ACTIONS(2851), - [anon_sym_TILDE] = ACTIONS(2851), - [anon_sym_QMARK] = ACTIONS(2851), - [anon_sym_LPAREN] = ACTIONS(2853), - [anon_sym_external] = ACTIONS(2851), - [anon_sym_type] = ACTIONS(2851), - [anon_sym_COMMA] = ACTIONS(2853), - [anon_sym_PLUS] = ACTIONS(2851), - [anon_sym_DASH] = ACTIONS(2851), - [anon_sym_COLON_EQ] = ACTIONS(2853), - [anon_sym_PIPE] = ACTIONS(2851), - [anon_sym_LBRACK] = ACTIONS(2851), - [anon_sym_RBRACK] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2851), - [anon_sym_false] = ACTIONS(2851), - [anon_sym_DOT] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_SEMI] = ACTIONS(2851), - [anon_sym_exception] = ACTIONS(2851), - [anon_sym_module] = ACTIONS(2851), - [anon_sym_open] = ACTIONS(2851), - [anon_sym_include] = ACTIONS(2851), - [anon_sym_class] = ACTIONS(2851), - [anon_sym_end] = ACTIONS(2851), - [anon_sym_object] = ACTIONS(2851), - [anon_sym_AMP] = ACTIONS(2851), - [anon_sym_POUND] = ACTIONS(2851), - [anon_sym_COLON_COLON] = ACTIONS(2853), - [anon_sym_LBRACK_PIPE] = ACTIONS(2853), - [anon_sym_else] = ACTIONS(2851), - [anon_sym_new] = ACTIONS(2851), - [anon_sym_LBRACE_LT] = ACTIONS(2853), - [anon_sym_begin] = ACTIONS(2851), - [sym_ocamlyacc_value] = ACTIONS(2853), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2851), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2853), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2851), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2853), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2853), - [aux_sym_number_token1] = ACTIONS(2853), - [anon_sym_SQUOTE] = ACTIONS(2853), - [anon_sym_DQUOTE] = ACTIONS(2853), - [sym_prefix_operator] = ACTIONS(2853), - [anon_sym_PLUS_DOT] = ACTIONS(2851), - [anon_sym_DASH_DOT] = ACTIONS(2851), - [sym_hash_operator] = ACTIONS(2853), - [aux_sym__pow_operator_token1] = ACTIONS(2853), - [anon_sym_lsl] = ACTIONS(2851), - [anon_sym_lsr] = ACTIONS(2851), - [anon_sym_asr] = ACTIONS(2851), - [aux_sym__mult_operator_token1] = ACTIONS(2851), - [anon_sym_mod] = ACTIONS(2851), - [anon_sym_land] = ACTIONS(2851), - [anon_sym_lor] = ACTIONS(2851), - [anon_sym_lxor] = ACTIONS(2851), - [aux_sym__add_operator_token1] = ACTIONS(2851), - [sym__concat_operator] = ACTIONS(2853), - [sym__rel_operator] = ACTIONS(2851), - [anon_sym_AMP_AMP] = ACTIONS(2851), - [anon_sym_or] = ACTIONS(2851), - [anon_sym_PIPE_PIPE] = ACTIONS(2851), - [sym_let_operator] = ACTIONS(2853), - [sym__capitalized_identifier] = ACTIONS(2853), - [aux_sym_directive_token1] = ACTIONS(2851), - [aux_sym_tag_token1] = ACTIONS(2853), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1479] = { - [sym_attribute] = STATE(1479), - [sym__identifier] = ACTIONS(2666), - [anon_sym_SEMI_SEMI] = ACTIONS(2668), - [anon_sym_let] = ACTIONS(2666), - [anon_sym_TILDE] = ACTIONS(2666), - [anon_sym_QMARK] = ACTIONS(2666), - [anon_sym_LPAREN] = ACTIONS(2668), - [anon_sym_external] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_COMMA] = ACTIONS(2668), - [anon_sym_PLUS] = ACTIONS(2666), - [anon_sym_DASH] = ACTIONS(2666), - [anon_sym_COLON_EQ] = ACTIONS(2668), - [anon_sym_PIPE] = ACTIONS(2666), - [anon_sym_LBRACK] = ACTIONS(2666), - [anon_sym_RBRACK] = ACTIONS(2668), - [anon_sym_true] = ACTIONS(2666), - [anon_sym_false] = ACTIONS(2666), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(2666), - [anon_sym_SEMI] = ACTIONS(2666), - [anon_sym_exception] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_open] = ACTIONS(2666), - [anon_sym_include] = ACTIONS(2666), - [anon_sym_class] = ACTIONS(2666), - [anon_sym_end] = ACTIONS(2666), - [anon_sym_object] = ACTIONS(2666), - [anon_sym_AMP] = ACTIONS(2666), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(2668), - [anon_sym_LBRACK_PIPE] = ACTIONS(2668), - [anon_sym_else] = ACTIONS(2666), - [anon_sym_new] = ACTIONS(2666), - [anon_sym_LBRACE_LT] = ACTIONS(2668), - [anon_sym_begin] = ACTIONS(2666), - [sym_ocamlyacc_value] = ACTIONS(2668), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2666), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2668), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2666), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2668), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2668), - [aux_sym_number_token1] = ACTIONS(2668), - [anon_sym_SQUOTE] = ACTIONS(2668), - [anon_sym_DQUOTE] = ACTIONS(2668), - [sym_prefix_operator] = ACTIONS(2668), - [anon_sym_PLUS_DOT] = ACTIONS(2666), - [anon_sym_DASH_DOT] = ACTIONS(2666), - [sym_hash_operator] = ACTIONS(1027), - [aux_sym__pow_operator_token1] = ACTIONS(2668), - [anon_sym_lsl] = ACTIONS(2666), - [anon_sym_lsr] = ACTIONS(2666), - [anon_sym_asr] = ACTIONS(2666), - [aux_sym__mult_operator_token1] = ACTIONS(2666), - [anon_sym_mod] = ACTIONS(2666), - [anon_sym_land] = ACTIONS(2666), - [anon_sym_lor] = ACTIONS(2666), - [anon_sym_lxor] = ACTIONS(2666), - [aux_sym__add_operator_token1] = ACTIONS(2666), - [sym__concat_operator] = ACTIONS(2668), - [sym__rel_operator] = ACTIONS(2666), - [anon_sym_AMP_AMP] = ACTIONS(2666), - [anon_sym_or] = ACTIONS(2666), - [anon_sym_PIPE_PIPE] = ACTIONS(2666), - [sym_let_operator] = ACTIONS(2668), - [sym__capitalized_identifier] = ACTIONS(2668), - [aux_sym_directive_token1] = ACTIONS(2666), - [aux_sym_tag_token1] = ACTIONS(2668), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1480] = { - [sym_attribute] = STATE(1480), - [sym__identifier] = ACTIONS(2644), - [anon_sym_SEMI_SEMI] = ACTIONS(2646), - [anon_sym_let] = ACTIONS(2644), - [anon_sym_TILDE] = ACTIONS(2644), - [anon_sym_QMARK] = ACTIONS(2644), - [anon_sym_LPAREN] = ACTIONS(2646), - [anon_sym_external] = ACTIONS(2644), - [anon_sym_type] = ACTIONS(2644), - [anon_sym_COMMA] = ACTIONS(2646), - [anon_sym_PLUS] = ACTIONS(2644), - [anon_sym_DASH] = ACTIONS(2644), - [anon_sym_COLON_EQ] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2644), - [anon_sym_LBRACK] = ACTIONS(2644), - [anon_sym_RBRACK] = ACTIONS(2646), - [anon_sym_true] = ACTIONS(2644), - [anon_sym_false] = ACTIONS(2644), - [anon_sym_DOT] = ACTIONS(2646), - [anon_sym_LBRACE] = ACTIONS(2644), - [anon_sym_SEMI] = ACTIONS(2644), - [anon_sym_exception] = ACTIONS(2644), - [anon_sym_module] = ACTIONS(2644), - [anon_sym_open] = ACTIONS(2644), - [anon_sym_include] = ACTIONS(2644), - [anon_sym_class] = ACTIONS(2644), - [anon_sym_end] = ACTIONS(2644), - [anon_sym_object] = ACTIONS(2644), - [anon_sym_AMP] = ACTIONS(2644), - [anon_sym_POUND] = ACTIONS(2644), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_LBRACK_PIPE] = ACTIONS(2646), - [anon_sym_else] = ACTIONS(2644), - [anon_sym_new] = ACTIONS(2644), - [anon_sym_LBRACE_LT] = ACTIONS(2646), - [anon_sym_begin] = ACTIONS(2644), - [sym_ocamlyacc_value] = ACTIONS(2646), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2644), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2646), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2644), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2646), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2646), - [aux_sym_number_token1] = ACTIONS(2646), - [anon_sym_SQUOTE] = ACTIONS(2646), - [anon_sym_DQUOTE] = ACTIONS(2646), - [sym_prefix_operator] = ACTIONS(2646), - [anon_sym_PLUS_DOT] = ACTIONS(2644), - [anon_sym_DASH_DOT] = ACTIONS(2644), - [sym_hash_operator] = ACTIONS(2646), - [aux_sym__pow_operator_token1] = ACTIONS(2646), - [anon_sym_lsl] = ACTIONS(2644), - [anon_sym_lsr] = ACTIONS(2644), - [anon_sym_asr] = ACTIONS(2644), - [aux_sym__mult_operator_token1] = ACTIONS(2644), - [anon_sym_mod] = ACTIONS(2644), - [anon_sym_land] = ACTIONS(2644), - [anon_sym_lor] = ACTIONS(2644), - [anon_sym_lxor] = ACTIONS(2644), - [aux_sym__add_operator_token1] = ACTIONS(2644), - [sym__concat_operator] = ACTIONS(2646), - [sym__rel_operator] = ACTIONS(2644), - [anon_sym_AMP_AMP] = ACTIONS(2644), - [anon_sym_or] = ACTIONS(2644), - [anon_sym_PIPE_PIPE] = ACTIONS(2644), - [sym_let_operator] = ACTIONS(2646), - [sym__capitalized_identifier] = ACTIONS(2646), - [aux_sym_directive_token1] = ACTIONS(2644), - [aux_sym_tag_token1] = ACTIONS(2646), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1481] = { - [sym_attribute] = STATE(1481), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1482] = { - [sym_attribute] = STATE(1482), - [sym__identifier] = ACTIONS(2883), - [anon_sym_SEMI_SEMI] = ACTIONS(2885), - [anon_sym_let] = ACTIONS(2883), - [anon_sym_TILDE] = ACTIONS(2883), - [anon_sym_QMARK] = ACTIONS(2883), - [anon_sym_LPAREN] = ACTIONS(2885), - [anon_sym_external] = ACTIONS(2883), - [anon_sym_type] = ACTIONS(2883), - [anon_sym_COMMA] = ACTIONS(2885), - [anon_sym_PLUS] = ACTIONS(2883), - [anon_sym_DASH] = ACTIONS(2883), - [anon_sym_COLON_EQ] = ACTIONS(2885), - [anon_sym_PIPE] = ACTIONS(2883), - [anon_sym_LBRACK] = ACTIONS(2883), - [anon_sym_RBRACK] = ACTIONS(2885), - [anon_sym_true] = ACTIONS(2883), - [anon_sym_false] = ACTIONS(2883), - [anon_sym_DOT] = ACTIONS(2885), - [anon_sym_LBRACE] = ACTIONS(2883), - [anon_sym_SEMI] = ACTIONS(2883), - [anon_sym_exception] = ACTIONS(2883), - [anon_sym_module] = ACTIONS(2883), - [anon_sym_open] = ACTIONS(2883), - [anon_sym_include] = ACTIONS(2883), - [anon_sym_class] = ACTIONS(2883), - [anon_sym_end] = ACTIONS(2883), - [anon_sym_object] = ACTIONS(2883), - [anon_sym_AMP] = ACTIONS(2883), - [anon_sym_POUND] = ACTIONS(2883), - [anon_sym_COLON_COLON] = ACTIONS(2885), - [anon_sym_LBRACK_PIPE] = ACTIONS(2885), - [anon_sym_else] = ACTIONS(2883), - [anon_sym_new] = ACTIONS(2883), - [anon_sym_LBRACE_LT] = ACTIONS(2885), - [anon_sym_begin] = ACTIONS(2883), - [sym_ocamlyacc_value] = ACTIONS(2885), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2883), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2885), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2883), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2885), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2885), - [aux_sym_number_token1] = ACTIONS(2885), - [anon_sym_SQUOTE] = ACTIONS(2885), - [anon_sym_DQUOTE] = ACTIONS(2885), - [sym_prefix_operator] = ACTIONS(2885), - [anon_sym_PLUS_DOT] = ACTIONS(2883), - [anon_sym_DASH_DOT] = ACTIONS(2883), - [sym_hash_operator] = ACTIONS(2885), - [aux_sym__pow_operator_token1] = ACTIONS(2885), - [anon_sym_lsl] = ACTIONS(2883), - [anon_sym_lsr] = ACTIONS(2883), - [anon_sym_asr] = ACTIONS(2883), - [aux_sym__mult_operator_token1] = ACTIONS(2883), - [anon_sym_mod] = ACTIONS(2883), - [anon_sym_land] = ACTIONS(2883), - [anon_sym_lor] = ACTIONS(2883), - [anon_sym_lxor] = ACTIONS(2883), - [aux_sym__add_operator_token1] = ACTIONS(2883), - [sym__concat_operator] = ACTIONS(2885), - [sym__rel_operator] = ACTIONS(2883), - [anon_sym_AMP_AMP] = ACTIONS(2883), - [anon_sym_or] = ACTIONS(2883), - [anon_sym_PIPE_PIPE] = ACTIONS(2883), - [sym_let_operator] = ACTIONS(2885), - [sym__capitalized_identifier] = ACTIONS(2885), - [aux_sym_directive_token1] = ACTIONS(2883), - [aux_sym_tag_token1] = ACTIONS(2885), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1483] = { - [sym_attribute] = STATE(1483), - [sym__identifier] = ACTIONS(3105), - [anon_sym_SEMI_SEMI] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_external] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3105), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_exception] = ACTIONS(3105), - [anon_sym_module] = ACTIONS(3105), - [anon_sym_open] = ACTIONS(3105), - [anon_sym_include] = ACTIONS(3105), - [anon_sym_class] = ACTIONS(3105), - [anon_sym_end] = ACTIONS(3105), - [anon_sym_object] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_COLON_COLON] = ACTIONS(3107), - [anon_sym_LBRACK_PIPE] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3105), - [anon_sym_new] = ACTIONS(3105), - [anon_sym_LBRACE_LT] = ACTIONS(3107), - [anon_sym_begin] = ACTIONS(3105), - [sym_ocamlyacc_value] = ACTIONS(3107), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3105), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3107), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3105), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3107), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3107), - [aux_sym_number_token1] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [sym_prefix_operator] = ACTIONS(3107), - [anon_sym_PLUS_DOT] = ACTIONS(3105), - [anon_sym_DASH_DOT] = ACTIONS(3105), - [sym_hash_operator] = ACTIONS(3107), - [aux_sym__pow_operator_token1] = ACTIONS(3107), - [anon_sym_lsl] = ACTIONS(3105), - [anon_sym_lsr] = ACTIONS(3105), - [anon_sym_asr] = ACTIONS(3105), - [aux_sym__mult_operator_token1] = ACTIONS(3105), - [anon_sym_mod] = ACTIONS(3105), - [anon_sym_land] = ACTIONS(3105), - [anon_sym_lor] = ACTIONS(3105), - [anon_sym_lxor] = ACTIONS(3105), - [aux_sym__add_operator_token1] = ACTIONS(3105), - [sym__concat_operator] = ACTIONS(3107), - [sym__rel_operator] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [sym_let_operator] = ACTIONS(3107), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_directive_token1] = ACTIONS(3105), - [aux_sym_tag_token1] = ACTIONS(3107), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1484] = { - [sym_attribute] = STATE(1484), - [sym__identifier] = ACTIONS(2823), - [anon_sym_SEMI_SEMI] = ACTIONS(2825), - [anon_sym_let] = ACTIONS(2823), - [anon_sym_TILDE] = ACTIONS(2823), - [anon_sym_QMARK] = ACTIONS(2823), - [anon_sym_LPAREN] = ACTIONS(2825), - [anon_sym_external] = ACTIONS(2823), - [anon_sym_type] = ACTIONS(2823), - [anon_sym_COMMA] = ACTIONS(2825), - [anon_sym_PLUS] = ACTIONS(2823), - [anon_sym_DASH] = ACTIONS(2823), - [anon_sym_COLON_EQ] = ACTIONS(2825), - [anon_sym_PIPE] = ACTIONS(2823), - [anon_sym_LBRACK] = ACTIONS(2823), - [anon_sym_RBRACK] = ACTIONS(2825), - [anon_sym_true] = ACTIONS(2823), - [anon_sym_false] = ACTIONS(2823), - [anon_sym_DOT] = ACTIONS(1019), - [anon_sym_LBRACE] = ACTIONS(2823), - [anon_sym_SEMI] = ACTIONS(2823), - [anon_sym_exception] = ACTIONS(2823), - [anon_sym_module] = ACTIONS(2823), - [anon_sym_open] = ACTIONS(2823), - [anon_sym_include] = ACTIONS(2823), - [anon_sym_class] = ACTIONS(2823), - [anon_sym_end] = ACTIONS(2823), - [anon_sym_object] = ACTIONS(2823), - [anon_sym_AMP] = ACTIONS(2823), - [anon_sym_POUND] = ACTIONS(2823), - [anon_sym_COLON_COLON] = ACTIONS(2825), - [anon_sym_LBRACK_PIPE] = ACTIONS(2825), - [anon_sym_else] = ACTIONS(2823), - [anon_sym_new] = ACTIONS(2823), - [anon_sym_LBRACE_LT] = ACTIONS(2825), - [anon_sym_begin] = ACTIONS(2823), - [sym_ocamlyacc_value] = ACTIONS(2825), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2823), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2825), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2823), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2825), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2825), - [aux_sym_number_token1] = ACTIONS(2825), - [anon_sym_SQUOTE] = ACTIONS(2825), - [anon_sym_DQUOTE] = ACTIONS(2825), - [sym_prefix_operator] = ACTIONS(2825), - [anon_sym_PLUS_DOT] = ACTIONS(2823), - [anon_sym_DASH_DOT] = ACTIONS(2823), - [sym_hash_operator] = ACTIONS(2825), - [aux_sym__pow_operator_token1] = ACTIONS(2825), - [anon_sym_lsl] = ACTIONS(2823), - [anon_sym_lsr] = ACTIONS(2823), - [anon_sym_asr] = ACTIONS(2823), - [aux_sym__mult_operator_token1] = ACTIONS(2823), - [anon_sym_mod] = ACTIONS(2823), - [anon_sym_land] = ACTIONS(2823), - [anon_sym_lor] = ACTIONS(2823), - [anon_sym_lxor] = ACTIONS(2823), - [aux_sym__add_operator_token1] = ACTIONS(2823), - [sym__concat_operator] = ACTIONS(2825), - [sym__rel_operator] = ACTIONS(2823), - [anon_sym_AMP_AMP] = ACTIONS(2823), - [anon_sym_or] = ACTIONS(2823), - [anon_sym_PIPE_PIPE] = ACTIONS(2823), - [sym_let_operator] = ACTIONS(2825), - [sym__capitalized_identifier] = ACTIONS(2825), - [aux_sym_directive_token1] = ACTIONS(2823), - [aux_sym_tag_token1] = ACTIONS(2825), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1485] = { - [sym_attribute] = STATE(1485), - [sym__identifier] = ACTIONS(2915), - [anon_sym_SEMI_SEMI] = ACTIONS(2917), - [anon_sym_let] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_external] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2915), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_true] = ACTIONS(2915), - [anon_sym_false] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2917), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_exception] = ACTIONS(2915), - [anon_sym_module] = ACTIONS(2915), - [anon_sym_open] = ACTIONS(2915), - [anon_sym_include] = ACTIONS(2915), - [anon_sym_class] = ACTIONS(2915), - [anon_sym_end] = ACTIONS(2915), - [anon_sym_object] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_COLON_COLON] = ACTIONS(2917), - [anon_sym_LBRACK_PIPE] = ACTIONS(2917), - [anon_sym_else] = ACTIONS(2915), - [anon_sym_new] = ACTIONS(2915), - [anon_sym_LBRACE_LT] = ACTIONS(2917), - [anon_sym_begin] = ACTIONS(2915), - [sym_ocamlyacc_value] = ACTIONS(2917), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2915), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2917), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2915), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2917), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2917), - [aux_sym_number_token1] = ACTIONS(2917), - [anon_sym_SQUOTE] = ACTIONS(2917), - [anon_sym_DQUOTE] = ACTIONS(2917), - [sym_prefix_operator] = ACTIONS(2917), - [anon_sym_PLUS_DOT] = ACTIONS(2915), - [anon_sym_DASH_DOT] = ACTIONS(2915), - [sym_hash_operator] = ACTIONS(2917), - [aux_sym__pow_operator_token1] = ACTIONS(2917), - [anon_sym_lsl] = ACTIONS(2915), - [anon_sym_lsr] = ACTIONS(2915), - [anon_sym_asr] = ACTIONS(2915), - [aux_sym__mult_operator_token1] = ACTIONS(2915), - [anon_sym_mod] = ACTIONS(2915), - [anon_sym_land] = ACTIONS(2915), - [anon_sym_lor] = ACTIONS(2915), - [anon_sym_lxor] = ACTIONS(2915), - [aux_sym__add_operator_token1] = ACTIONS(2915), - [sym__concat_operator] = ACTIONS(2917), - [sym__rel_operator] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [sym_let_operator] = ACTIONS(2917), - [sym__capitalized_identifier] = ACTIONS(2917), - [aux_sym_directive_token1] = ACTIONS(2915), - [aux_sym_tag_token1] = ACTIONS(2917), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1486] = { - [sym_attribute] = STATE(1486), - [sym__identifier] = ACTIONS(2827), - [anon_sym_SEMI_SEMI] = ACTIONS(2829), - [anon_sym_let] = ACTIONS(2827), - [anon_sym_TILDE] = ACTIONS(2827), - [anon_sym_QMARK] = ACTIONS(2827), - [anon_sym_LPAREN] = ACTIONS(2829), - [anon_sym_external] = ACTIONS(2827), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_COMMA] = ACTIONS(2829), - [anon_sym_PLUS] = ACTIONS(2827), - [anon_sym_DASH] = ACTIONS(2827), - [anon_sym_COLON_EQ] = ACTIONS(2829), - [anon_sym_PIPE] = ACTIONS(2827), - [anon_sym_LBRACK] = ACTIONS(2827), - [anon_sym_RBRACK] = ACTIONS(2829), - [anon_sym_true] = ACTIONS(2827), - [anon_sym_false] = ACTIONS(2827), - [anon_sym_DOT] = ACTIONS(2829), - [anon_sym_LBRACE] = ACTIONS(2827), - [anon_sym_SEMI] = ACTIONS(2827), - [anon_sym_exception] = ACTIONS(2827), - [anon_sym_module] = ACTIONS(2827), - [anon_sym_open] = ACTIONS(2827), - [anon_sym_include] = ACTIONS(2827), - [anon_sym_class] = ACTIONS(2827), - [anon_sym_end] = ACTIONS(2827), - [anon_sym_object] = ACTIONS(2827), - [anon_sym_AMP] = ACTIONS(2827), - [anon_sym_POUND] = ACTIONS(2827), - [anon_sym_COLON_COLON] = ACTIONS(2829), - [anon_sym_LBRACK_PIPE] = ACTIONS(2829), - [anon_sym_else] = ACTIONS(2827), - [anon_sym_new] = ACTIONS(2827), - [anon_sym_LBRACE_LT] = ACTIONS(2829), - [anon_sym_begin] = ACTIONS(2827), - [sym_ocamlyacc_value] = ACTIONS(2829), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2827), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2829), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2827), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2829), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2829), - [aux_sym_number_token1] = ACTIONS(2829), - [anon_sym_SQUOTE] = ACTIONS(2829), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym_prefix_operator] = ACTIONS(2829), - [anon_sym_PLUS_DOT] = ACTIONS(2827), - [anon_sym_DASH_DOT] = ACTIONS(2827), - [sym_hash_operator] = ACTIONS(2829), - [aux_sym__pow_operator_token1] = ACTIONS(2829), - [anon_sym_lsl] = ACTIONS(2827), - [anon_sym_lsr] = ACTIONS(2827), - [anon_sym_asr] = ACTIONS(2827), - [aux_sym__mult_operator_token1] = ACTIONS(2827), - [anon_sym_mod] = ACTIONS(2827), - [anon_sym_land] = ACTIONS(2827), - [anon_sym_lor] = ACTIONS(2827), - [anon_sym_lxor] = ACTIONS(2827), - [aux_sym__add_operator_token1] = ACTIONS(2827), - [sym__concat_operator] = ACTIONS(2829), - [sym__rel_operator] = ACTIONS(2827), - [anon_sym_AMP_AMP] = ACTIONS(2827), - [anon_sym_or] = ACTIONS(2827), - [anon_sym_PIPE_PIPE] = ACTIONS(2827), - [sym_let_operator] = ACTIONS(2829), - [sym__capitalized_identifier] = ACTIONS(2829), - [aux_sym_directive_token1] = ACTIONS(2827), - [aux_sym_tag_token1] = ACTIONS(2829), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1487] = { - [sym_attribute] = STATE(1487), - [sym__identifier] = ACTIONS(2907), - [anon_sym_SEMI_SEMI] = ACTIONS(2909), - [anon_sym_let] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_external] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2907), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_true] = ACTIONS(2907), - [anon_sym_false] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2909), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_exception] = ACTIONS(2907), - [anon_sym_module] = ACTIONS(2907), - [anon_sym_open] = ACTIONS(2907), - [anon_sym_include] = ACTIONS(2907), - [anon_sym_class] = ACTIONS(2907), - [anon_sym_end] = ACTIONS(2907), - [anon_sym_object] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_COLON_COLON] = ACTIONS(2909), - [anon_sym_LBRACK_PIPE] = ACTIONS(2909), - [anon_sym_else] = ACTIONS(2907), - [anon_sym_new] = ACTIONS(2907), - [anon_sym_LBRACE_LT] = ACTIONS(2909), - [anon_sym_begin] = ACTIONS(2907), - [sym_ocamlyacc_value] = ACTIONS(2909), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2907), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2909), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2907), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2909), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2909), - [aux_sym_number_token1] = ACTIONS(2909), - [anon_sym_SQUOTE] = ACTIONS(2909), - [anon_sym_DQUOTE] = ACTIONS(2909), - [sym_prefix_operator] = ACTIONS(2909), - [anon_sym_PLUS_DOT] = ACTIONS(2907), - [anon_sym_DASH_DOT] = ACTIONS(2907), - [sym_hash_operator] = ACTIONS(2909), - [aux_sym__pow_operator_token1] = ACTIONS(2909), - [anon_sym_lsl] = ACTIONS(2907), - [anon_sym_lsr] = ACTIONS(2907), - [anon_sym_asr] = ACTIONS(2907), - [aux_sym__mult_operator_token1] = ACTIONS(2907), - [anon_sym_mod] = ACTIONS(2907), - [anon_sym_land] = ACTIONS(2907), - [anon_sym_lor] = ACTIONS(2907), - [anon_sym_lxor] = ACTIONS(2907), - [aux_sym__add_operator_token1] = ACTIONS(2907), - [sym__concat_operator] = ACTIONS(2909), - [sym__rel_operator] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [sym_let_operator] = ACTIONS(2909), - [sym__capitalized_identifier] = ACTIONS(2909), - [aux_sym_directive_token1] = ACTIONS(2907), - [aux_sym_tag_token1] = ACTIONS(2909), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1488] = { - [sym_attribute] = STATE(1488), - [sym__identifier] = ACTIONS(2819), - [anon_sym_SEMI_SEMI] = ACTIONS(2821), - [anon_sym_let] = ACTIONS(2819), - [anon_sym_TILDE] = ACTIONS(2819), - [anon_sym_QMARK] = ACTIONS(2819), - [anon_sym_LPAREN] = ACTIONS(2821), - [anon_sym_external] = ACTIONS(2819), - [anon_sym_type] = ACTIONS(2819), - [anon_sym_COMMA] = ACTIONS(2821), - [anon_sym_PLUS] = ACTIONS(2819), - [anon_sym_DASH] = ACTIONS(2819), - [anon_sym_COLON_EQ] = ACTIONS(2821), - [anon_sym_PIPE] = ACTIONS(2819), - [anon_sym_LBRACK] = ACTIONS(2819), - [anon_sym_RBRACK] = ACTIONS(2821), - [anon_sym_true] = ACTIONS(2819), - [anon_sym_false] = ACTIONS(2819), - [anon_sym_DOT] = ACTIONS(2821), - [anon_sym_LBRACE] = ACTIONS(2819), - [anon_sym_SEMI] = ACTIONS(2819), - [anon_sym_exception] = ACTIONS(2819), - [anon_sym_module] = ACTIONS(2819), - [anon_sym_open] = ACTIONS(2819), - [anon_sym_include] = ACTIONS(2819), - [anon_sym_class] = ACTIONS(2819), - [anon_sym_end] = ACTIONS(2819), - [anon_sym_object] = ACTIONS(2819), - [anon_sym_AMP] = ACTIONS(2819), - [anon_sym_POUND] = ACTIONS(2819), - [anon_sym_COLON_COLON] = ACTIONS(2821), - [anon_sym_LBRACK_PIPE] = ACTIONS(2821), - [anon_sym_else] = ACTIONS(2819), - [anon_sym_new] = ACTIONS(2819), - [anon_sym_LBRACE_LT] = ACTIONS(2821), - [anon_sym_begin] = ACTIONS(2819), - [sym_ocamlyacc_value] = ACTIONS(2821), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2819), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2821), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2819), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2821), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2821), - [aux_sym_number_token1] = ACTIONS(2821), - [anon_sym_SQUOTE] = ACTIONS(2821), - [anon_sym_DQUOTE] = ACTIONS(2821), - [sym_prefix_operator] = ACTIONS(2821), - [anon_sym_PLUS_DOT] = ACTIONS(2819), - [anon_sym_DASH_DOT] = ACTIONS(2819), - [sym_hash_operator] = ACTIONS(2821), - [aux_sym__pow_operator_token1] = ACTIONS(2821), - [anon_sym_lsl] = ACTIONS(2819), - [anon_sym_lsr] = ACTIONS(2819), - [anon_sym_asr] = ACTIONS(2819), - [aux_sym__mult_operator_token1] = ACTIONS(2819), - [anon_sym_mod] = ACTIONS(2819), - [anon_sym_land] = ACTIONS(2819), - [anon_sym_lor] = ACTIONS(2819), - [anon_sym_lxor] = ACTIONS(2819), - [aux_sym__add_operator_token1] = ACTIONS(2819), - [sym__concat_operator] = ACTIONS(2821), - [sym__rel_operator] = ACTIONS(2819), - [anon_sym_AMP_AMP] = ACTIONS(2819), - [anon_sym_or] = ACTIONS(2819), - [anon_sym_PIPE_PIPE] = ACTIONS(2819), - [sym_let_operator] = ACTIONS(2821), - [sym__capitalized_identifier] = ACTIONS(2821), - [aux_sym_directive_token1] = ACTIONS(2819), - [aux_sym_tag_token1] = ACTIONS(2821), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1489] = { - [sym_attribute] = STATE(1489), - [sym__identifier] = ACTIONS(2654), - [anon_sym_SEMI_SEMI] = ACTIONS(2656), - [anon_sym_let] = ACTIONS(2654), - [anon_sym_TILDE] = ACTIONS(2654), - [anon_sym_QMARK] = ACTIONS(2654), - [anon_sym_LPAREN] = ACTIONS(2656), - [anon_sym_external] = ACTIONS(2654), - [anon_sym_type] = ACTIONS(2654), - [anon_sym_COMMA] = ACTIONS(2656), - [anon_sym_PLUS] = ACTIONS(2654), - [anon_sym_DASH] = ACTIONS(2654), - [anon_sym_COLON_EQ] = ACTIONS(2656), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_RBRACK] = ACTIONS(2656), - [anon_sym_true] = ACTIONS(2654), - [anon_sym_false] = ACTIONS(2654), - [anon_sym_DOT] = ACTIONS(2656), - [anon_sym_LBRACE] = ACTIONS(2654), - [anon_sym_SEMI] = ACTIONS(2654), - [anon_sym_exception] = ACTIONS(2654), - [anon_sym_module] = ACTIONS(2654), - [anon_sym_open] = ACTIONS(2654), - [anon_sym_include] = ACTIONS(2654), - [anon_sym_class] = ACTIONS(2654), - [anon_sym_end] = ACTIONS(2654), - [anon_sym_object] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_POUND] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2656), - [anon_sym_LBRACK_PIPE] = ACTIONS(2656), - [anon_sym_else] = ACTIONS(2654), - [anon_sym_new] = ACTIONS(2654), - [anon_sym_LBRACE_LT] = ACTIONS(2656), - [anon_sym_begin] = ACTIONS(2654), - [sym_ocamlyacc_value] = ACTIONS(2656), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2654), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2656), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2654), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2656), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2656), - [aux_sym_number_token1] = ACTIONS(2656), - [anon_sym_SQUOTE] = ACTIONS(2656), - [anon_sym_DQUOTE] = ACTIONS(2656), - [sym_prefix_operator] = ACTIONS(2656), - [anon_sym_PLUS_DOT] = ACTIONS(2654), - [anon_sym_DASH_DOT] = ACTIONS(2654), - [sym_hash_operator] = ACTIONS(2656), - [aux_sym__pow_operator_token1] = ACTIONS(2656), - [anon_sym_lsl] = ACTIONS(2654), - [anon_sym_lsr] = ACTIONS(2654), - [anon_sym_asr] = ACTIONS(2654), - [aux_sym__mult_operator_token1] = ACTIONS(2654), - [anon_sym_mod] = ACTIONS(2654), - [anon_sym_land] = ACTIONS(2654), - [anon_sym_lor] = ACTIONS(2654), - [anon_sym_lxor] = ACTIONS(2654), - [aux_sym__add_operator_token1] = ACTIONS(2654), - [sym__concat_operator] = ACTIONS(2656), - [sym__rel_operator] = ACTIONS(2654), - [anon_sym_AMP_AMP] = ACTIONS(2654), - [anon_sym_or] = ACTIONS(2654), - [anon_sym_PIPE_PIPE] = ACTIONS(2654), - [sym_let_operator] = ACTIONS(2656), - [sym__capitalized_identifier] = ACTIONS(2656), - [aux_sym_directive_token1] = ACTIONS(2654), - [aux_sym_tag_token1] = ACTIONS(2656), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1490] = { - [sym_attribute] = STATE(1490), - [sym__identifier] = ACTIONS(2688), - [anon_sym_SEMI_SEMI] = ACTIONS(2690), - [anon_sym_let] = ACTIONS(2688), - [anon_sym_TILDE] = ACTIONS(2688), - [anon_sym_QMARK] = ACTIONS(2688), - [anon_sym_LPAREN] = ACTIONS(2690), - [anon_sym_external] = ACTIONS(2688), - [anon_sym_type] = ACTIONS(2688), - [anon_sym_COMMA] = ACTIONS(2690), - [anon_sym_PLUS] = ACTIONS(2688), - [anon_sym_DASH] = ACTIONS(2688), - [anon_sym_COLON_EQ] = ACTIONS(2690), - [anon_sym_PIPE] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(2688), - [anon_sym_RBRACK] = ACTIONS(2690), - [anon_sym_true] = ACTIONS(2688), - [anon_sym_false] = ACTIONS(2688), - [anon_sym_DOT] = ACTIONS(2690), - [anon_sym_LBRACE] = ACTIONS(2688), - [anon_sym_SEMI] = ACTIONS(2688), - [anon_sym_exception] = ACTIONS(2688), - [anon_sym_module] = ACTIONS(2688), - [anon_sym_open] = ACTIONS(2688), - [anon_sym_include] = ACTIONS(2688), - [anon_sym_class] = ACTIONS(2688), - [anon_sym_end] = ACTIONS(2688), - [anon_sym_object] = ACTIONS(2688), - [anon_sym_AMP] = ACTIONS(2688), - [anon_sym_POUND] = ACTIONS(2688), - [anon_sym_COLON_COLON] = ACTIONS(2690), - [anon_sym_LBRACK_PIPE] = ACTIONS(2690), - [anon_sym_else] = ACTIONS(2688), - [anon_sym_new] = ACTIONS(2688), - [anon_sym_LBRACE_LT] = ACTIONS(2690), - [anon_sym_begin] = ACTIONS(2688), - [sym_ocamlyacc_value] = ACTIONS(2690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2688), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2690), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2688), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2690), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2690), - [aux_sym_number_token1] = ACTIONS(2690), - [anon_sym_SQUOTE] = ACTIONS(2690), - [anon_sym_DQUOTE] = ACTIONS(2690), - [sym_prefix_operator] = ACTIONS(2690), - [anon_sym_PLUS_DOT] = ACTIONS(2688), - [anon_sym_DASH_DOT] = ACTIONS(2688), - [sym_hash_operator] = ACTIONS(2690), - [aux_sym__pow_operator_token1] = ACTIONS(2690), - [anon_sym_lsl] = ACTIONS(2688), - [anon_sym_lsr] = ACTIONS(2688), - [anon_sym_asr] = ACTIONS(2688), - [aux_sym__mult_operator_token1] = ACTIONS(2688), - [anon_sym_mod] = ACTIONS(2688), - [anon_sym_land] = ACTIONS(2688), - [anon_sym_lor] = ACTIONS(2688), - [anon_sym_lxor] = ACTIONS(2688), - [aux_sym__add_operator_token1] = ACTIONS(2688), - [sym__concat_operator] = ACTIONS(2690), - [sym__rel_operator] = ACTIONS(2688), - [anon_sym_AMP_AMP] = ACTIONS(2688), - [anon_sym_or] = ACTIONS(2688), - [anon_sym_PIPE_PIPE] = ACTIONS(2688), - [sym_let_operator] = ACTIONS(2690), - [sym__capitalized_identifier] = ACTIONS(2690), - [aux_sym_directive_token1] = ACTIONS(2688), - [aux_sym_tag_token1] = ACTIONS(2690), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1491] = { - [sym_attribute] = STATE(1491), - [sym__identifier] = ACTIONS(2674), - [anon_sym_SEMI_SEMI] = ACTIONS(2676), - [anon_sym_let] = ACTIONS(2674), - [anon_sym_TILDE] = ACTIONS(2674), - [anon_sym_QMARK] = ACTIONS(2674), - [anon_sym_LPAREN] = ACTIONS(2676), - [anon_sym_external] = ACTIONS(2674), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_COMMA] = ACTIONS(2676), - [anon_sym_PLUS] = ACTIONS(2674), - [anon_sym_DASH] = ACTIONS(2674), - [anon_sym_COLON_EQ] = ACTIONS(2676), - [anon_sym_PIPE] = ACTIONS(2674), - [anon_sym_LBRACK] = ACTIONS(2674), - [anon_sym_RBRACK] = ACTIONS(2676), - [anon_sym_true] = ACTIONS(2674), - [anon_sym_false] = ACTIONS(2674), - [anon_sym_DOT] = ACTIONS(2676), - [anon_sym_LBRACE] = ACTIONS(2674), - [anon_sym_SEMI] = ACTIONS(2674), - [anon_sym_exception] = ACTIONS(2674), - [anon_sym_module] = ACTIONS(2674), - [anon_sym_open] = ACTIONS(2674), - [anon_sym_include] = ACTIONS(2674), - [anon_sym_class] = ACTIONS(2674), - [anon_sym_end] = ACTIONS(2674), - [anon_sym_object] = ACTIONS(2674), - [anon_sym_AMP] = ACTIONS(2674), - [anon_sym_POUND] = ACTIONS(2674), - [anon_sym_COLON_COLON] = ACTIONS(2676), - [anon_sym_LBRACK_PIPE] = ACTIONS(2676), - [anon_sym_else] = ACTIONS(2674), - [anon_sym_new] = ACTIONS(2674), - [anon_sym_LBRACE_LT] = ACTIONS(2676), - [anon_sym_begin] = ACTIONS(2674), - [sym_ocamlyacc_value] = ACTIONS(2676), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2674), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2676), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2674), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2676), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2676), - [aux_sym_number_token1] = ACTIONS(2676), - [anon_sym_SQUOTE] = ACTIONS(2676), - [anon_sym_DQUOTE] = ACTIONS(2676), - [sym_prefix_operator] = ACTIONS(2676), - [anon_sym_PLUS_DOT] = ACTIONS(2674), - [anon_sym_DASH_DOT] = ACTIONS(2674), - [sym_hash_operator] = ACTIONS(2676), - [aux_sym__pow_operator_token1] = ACTIONS(2676), - [anon_sym_lsl] = ACTIONS(2674), - [anon_sym_lsr] = ACTIONS(2674), - [anon_sym_asr] = ACTIONS(2674), - [aux_sym__mult_operator_token1] = ACTIONS(2674), - [anon_sym_mod] = ACTIONS(2674), - [anon_sym_land] = ACTIONS(2674), - [anon_sym_lor] = ACTIONS(2674), - [anon_sym_lxor] = ACTIONS(2674), - [aux_sym__add_operator_token1] = ACTIONS(2674), - [sym__concat_operator] = ACTIONS(2676), - [sym__rel_operator] = ACTIONS(2674), - [anon_sym_AMP_AMP] = ACTIONS(2674), - [anon_sym_or] = ACTIONS(2674), - [anon_sym_PIPE_PIPE] = ACTIONS(2674), - [sym_let_operator] = ACTIONS(2676), - [sym__capitalized_identifier] = ACTIONS(2676), - [aux_sym_directive_token1] = ACTIONS(2674), - [aux_sym_tag_token1] = ACTIONS(2676), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1492] = { - [sym_attribute] = STATE(1492), - [sym__identifier] = ACTIONS(3005), - [anon_sym_SEMI_SEMI] = ACTIONS(3007), - [anon_sym_let] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_external] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3005), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_true] = ACTIONS(3005), - [anon_sym_false] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3007), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_exception] = ACTIONS(3005), - [anon_sym_module] = ACTIONS(3005), - [anon_sym_open] = ACTIONS(3005), - [anon_sym_include] = ACTIONS(3005), - [anon_sym_class] = ACTIONS(3005), - [anon_sym_end] = ACTIONS(3005), - [anon_sym_object] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_COLON_COLON] = ACTIONS(3007), - [anon_sym_LBRACK_PIPE] = ACTIONS(3007), - [anon_sym_else] = ACTIONS(3005), - [anon_sym_new] = ACTIONS(3005), - [anon_sym_LBRACE_LT] = ACTIONS(3007), - [anon_sym_begin] = ACTIONS(3005), - [sym_ocamlyacc_value] = ACTIONS(3007), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3005), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3007), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3005), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3007), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3007), - [aux_sym_number_token1] = ACTIONS(3007), - [anon_sym_SQUOTE] = ACTIONS(3007), - [anon_sym_DQUOTE] = ACTIONS(3007), - [sym_prefix_operator] = ACTIONS(3007), - [anon_sym_PLUS_DOT] = ACTIONS(3005), - [anon_sym_DASH_DOT] = ACTIONS(3005), - [sym_hash_operator] = ACTIONS(3007), - [aux_sym__pow_operator_token1] = ACTIONS(3007), - [anon_sym_lsl] = ACTIONS(3005), - [anon_sym_lsr] = ACTIONS(3005), - [anon_sym_asr] = ACTIONS(3005), - [aux_sym__mult_operator_token1] = ACTIONS(3005), - [anon_sym_mod] = ACTIONS(3005), - [anon_sym_land] = ACTIONS(3005), - [anon_sym_lor] = ACTIONS(3005), - [anon_sym_lxor] = ACTIONS(3005), - [aux_sym__add_operator_token1] = ACTIONS(3005), - [sym__concat_operator] = ACTIONS(3007), - [sym__rel_operator] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [sym_let_operator] = ACTIONS(3007), - [sym__capitalized_identifier] = ACTIONS(3007), - [aux_sym_directive_token1] = ACTIONS(3005), - [aux_sym_tag_token1] = ACTIONS(3007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1493] = { - [sym_attribute] = STATE(1493), - [sym__identifier] = ACTIONS(2670), - [anon_sym_SEMI_SEMI] = ACTIONS(2672), - [anon_sym_let] = ACTIONS(2670), - [anon_sym_TILDE] = ACTIONS(2670), - [anon_sym_QMARK] = ACTIONS(2670), - [anon_sym_LPAREN] = ACTIONS(2672), - [anon_sym_external] = ACTIONS(2670), - [anon_sym_type] = ACTIONS(2670), - [anon_sym_COMMA] = ACTIONS(2672), - [anon_sym_PLUS] = ACTIONS(2670), - [anon_sym_DASH] = ACTIONS(2670), - [anon_sym_COLON_EQ] = ACTIONS(2672), - [anon_sym_PIPE] = ACTIONS(2670), - [anon_sym_LBRACK] = ACTIONS(2670), - [anon_sym_RBRACK] = ACTIONS(2672), - [anon_sym_true] = ACTIONS(2670), - [anon_sym_false] = ACTIONS(2670), - [anon_sym_DOT] = ACTIONS(2672), - [anon_sym_LBRACE] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2670), - [anon_sym_exception] = ACTIONS(2670), - [anon_sym_module] = ACTIONS(2670), - [anon_sym_open] = ACTIONS(2670), - [anon_sym_include] = ACTIONS(2670), - [anon_sym_class] = ACTIONS(2670), - [anon_sym_end] = ACTIONS(2670), - [anon_sym_object] = ACTIONS(2670), - [anon_sym_AMP] = ACTIONS(2670), - [anon_sym_POUND] = ACTIONS(2670), - [anon_sym_COLON_COLON] = ACTIONS(2672), - [anon_sym_LBRACK_PIPE] = ACTIONS(2672), - [anon_sym_else] = ACTIONS(2670), - [anon_sym_new] = ACTIONS(2670), - [anon_sym_LBRACE_LT] = ACTIONS(2672), - [anon_sym_begin] = ACTIONS(2670), - [sym_ocamlyacc_value] = ACTIONS(2672), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2670), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2672), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2670), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2672), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2672), - [aux_sym_number_token1] = ACTIONS(2672), - [anon_sym_SQUOTE] = ACTIONS(2672), - [anon_sym_DQUOTE] = ACTIONS(2672), - [sym_prefix_operator] = ACTIONS(2672), - [anon_sym_PLUS_DOT] = ACTIONS(2670), - [anon_sym_DASH_DOT] = ACTIONS(2670), - [sym_hash_operator] = ACTIONS(2672), - [aux_sym__pow_operator_token1] = ACTIONS(2672), - [anon_sym_lsl] = ACTIONS(2670), - [anon_sym_lsr] = ACTIONS(2670), - [anon_sym_asr] = ACTIONS(2670), - [aux_sym__mult_operator_token1] = ACTIONS(2670), - [anon_sym_mod] = ACTIONS(2670), - [anon_sym_land] = ACTIONS(2670), - [anon_sym_lor] = ACTIONS(2670), - [anon_sym_lxor] = ACTIONS(2670), - [aux_sym__add_operator_token1] = ACTIONS(2670), - [sym__concat_operator] = ACTIONS(2672), - [sym__rel_operator] = ACTIONS(2670), - [anon_sym_AMP_AMP] = ACTIONS(2670), - [anon_sym_or] = ACTIONS(2670), - [anon_sym_PIPE_PIPE] = ACTIONS(2670), - [sym_let_operator] = ACTIONS(2672), - [sym__capitalized_identifier] = ACTIONS(2672), - [aux_sym_directive_token1] = ACTIONS(2670), - [aux_sym_tag_token1] = ACTIONS(2672), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1494] = { - [sym_attribute] = STATE(1494), - [sym__identifier] = ACTIONS(3101), - [anon_sym_SEMI_SEMI] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_external] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3101), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3101), - [anon_sym_false] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3103), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_exception] = ACTIONS(3101), - [anon_sym_module] = ACTIONS(3101), - [anon_sym_open] = ACTIONS(3101), - [anon_sym_include] = ACTIONS(3101), - [anon_sym_class] = ACTIONS(3101), - [anon_sym_end] = ACTIONS(3101), - [anon_sym_object] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_COLON_COLON] = ACTIONS(3103), - [anon_sym_LBRACK_PIPE] = ACTIONS(3103), - [anon_sym_else] = ACTIONS(3101), - [anon_sym_new] = ACTIONS(3101), - [anon_sym_LBRACE_LT] = ACTIONS(3103), - [anon_sym_begin] = ACTIONS(3101), - [sym_ocamlyacc_value] = ACTIONS(3103), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3101), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3101), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3103), - [aux_sym_number_token1] = ACTIONS(3103), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3103), - [sym_prefix_operator] = ACTIONS(3103), - [anon_sym_PLUS_DOT] = ACTIONS(3101), - [anon_sym_DASH_DOT] = ACTIONS(3101), - [sym_hash_operator] = ACTIONS(3103), - [aux_sym__pow_operator_token1] = ACTIONS(3103), - [anon_sym_lsl] = ACTIONS(3101), - [anon_sym_lsr] = ACTIONS(3101), - [anon_sym_asr] = ACTIONS(3101), - [aux_sym__mult_operator_token1] = ACTIONS(3101), - [anon_sym_mod] = ACTIONS(3101), - [anon_sym_land] = ACTIONS(3101), - [anon_sym_lor] = ACTIONS(3101), - [anon_sym_lxor] = ACTIONS(3101), - [aux_sym__add_operator_token1] = ACTIONS(3101), - [sym__concat_operator] = ACTIONS(3103), - [sym__rel_operator] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [sym_let_operator] = ACTIONS(3103), - [sym__capitalized_identifier] = ACTIONS(3103), - [aux_sym_directive_token1] = ACTIONS(3101), - [aux_sym_tag_token1] = ACTIONS(3103), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1495] = { - [sym_attribute] = STATE(1495), - [sym__identifier] = ACTIONS(2738), - [anon_sym_SEMI_SEMI] = ACTIONS(2740), - [anon_sym_let] = ACTIONS(2738), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_external] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2738), - [anon_sym_DASH] = ACTIONS(2738), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2740), - [anon_sym_true] = ACTIONS(2738), - [anon_sym_false] = ACTIONS(2738), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_SEMI] = ACTIONS(2738), - [anon_sym_exception] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_open] = ACTIONS(2738), - [anon_sym_include] = ACTIONS(2738), - [anon_sym_class] = ACTIONS(2738), - [anon_sym_end] = ACTIONS(2738), - [anon_sym_object] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2738), - [anon_sym_POUND] = ACTIONS(2738), - [anon_sym_COLON_COLON] = ACTIONS(2740), - [anon_sym_LBRACK_PIPE] = ACTIONS(2740), - [anon_sym_else] = ACTIONS(2738), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_LBRACE_LT] = ACTIONS(2740), - [anon_sym_begin] = ACTIONS(2738), - [sym_ocamlyacc_value] = ACTIONS(2740), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2738), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2740), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2738), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2740), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2740), - [aux_sym_number_token1] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2740), - [anon_sym_DQUOTE] = ACTIONS(2740), - [sym_prefix_operator] = ACTIONS(2740), - [anon_sym_PLUS_DOT] = ACTIONS(2738), - [anon_sym_DASH_DOT] = ACTIONS(2738), - [sym_hash_operator] = ACTIONS(2740), - [aux_sym__pow_operator_token1] = ACTIONS(2740), - [anon_sym_lsl] = ACTIONS(2738), - [anon_sym_lsr] = ACTIONS(2738), - [anon_sym_asr] = ACTIONS(2738), - [aux_sym__mult_operator_token1] = ACTIONS(2738), - [anon_sym_mod] = ACTIONS(2738), - [anon_sym_land] = ACTIONS(2738), - [anon_sym_lor] = ACTIONS(2738), - [anon_sym_lxor] = ACTIONS(2738), - [aux_sym__add_operator_token1] = ACTIONS(2738), - [sym__concat_operator] = ACTIONS(2740), - [sym__rel_operator] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [sym_let_operator] = ACTIONS(2740), - [sym__capitalized_identifier] = ACTIONS(2740), - [aux_sym_directive_token1] = ACTIONS(2738), - [aux_sym_tag_token1] = ACTIONS(2740), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1496] = { - [sym_attribute] = STATE(1496), - [sym__identifier] = ACTIONS(2835), - [anon_sym_SEMI_SEMI] = ACTIONS(2837), - [anon_sym_let] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_external] = ACTIONS(2835), - [anon_sym_type] = ACTIONS(2835), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2835), - [anon_sym_exception] = ACTIONS(2835), - [anon_sym_module] = ACTIONS(2835), - [anon_sym_open] = ACTIONS(2835), - [anon_sym_include] = ACTIONS(2835), - [anon_sym_class] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym_let_operator] = ACTIONS(2837), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_directive_token1] = ACTIONS(2835), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1497] = { - [sym_attribute] = STATE(1497), - [sym__identifier] = ACTIONS(2815), - [anon_sym_SEMI_SEMI] = ACTIONS(2817), - [anon_sym_let] = ACTIONS(2815), - [anon_sym_TILDE] = ACTIONS(2815), - [anon_sym_QMARK] = ACTIONS(2815), - [anon_sym_LPAREN] = ACTIONS(2817), - [anon_sym_external] = ACTIONS(2815), - [anon_sym_type] = ACTIONS(2815), - [anon_sym_COMMA] = ACTIONS(2817), - [anon_sym_PLUS] = ACTIONS(2815), - [anon_sym_DASH] = ACTIONS(2815), - [anon_sym_COLON_EQ] = ACTIONS(2817), - [anon_sym_PIPE] = ACTIONS(2815), - [anon_sym_LBRACK] = ACTIONS(2815), - [anon_sym_RBRACK] = ACTIONS(2817), - [anon_sym_true] = ACTIONS(2815), - [anon_sym_false] = ACTIONS(2815), - [anon_sym_DOT] = ACTIONS(2817), - [anon_sym_LBRACE] = ACTIONS(2815), - [anon_sym_SEMI] = ACTIONS(2815), - [anon_sym_exception] = ACTIONS(2815), - [anon_sym_module] = ACTIONS(2815), - [anon_sym_open] = ACTIONS(2815), - [anon_sym_include] = ACTIONS(2815), - [anon_sym_class] = ACTIONS(2815), - [anon_sym_end] = ACTIONS(2815), - [anon_sym_object] = ACTIONS(2815), - [anon_sym_AMP] = ACTIONS(2815), - [anon_sym_POUND] = ACTIONS(2815), - [anon_sym_COLON_COLON] = ACTIONS(2817), - [anon_sym_LBRACK_PIPE] = ACTIONS(2817), - [anon_sym_else] = ACTIONS(2815), - [anon_sym_new] = ACTIONS(2815), - [anon_sym_LBRACE_LT] = ACTIONS(2817), - [anon_sym_begin] = ACTIONS(2815), - [sym_ocamlyacc_value] = ACTIONS(2817), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2815), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2817), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2815), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2817), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2817), - [aux_sym_number_token1] = ACTIONS(2817), - [anon_sym_SQUOTE] = ACTIONS(2817), - [anon_sym_DQUOTE] = ACTIONS(2817), - [sym_prefix_operator] = ACTIONS(2817), - [anon_sym_PLUS_DOT] = ACTIONS(2815), - [anon_sym_DASH_DOT] = ACTIONS(2815), - [sym_hash_operator] = ACTIONS(2817), - [aux_sym__pow_operator_token1] = ACTIONS(2817), - [anon_sym_lsl] = ACTIONS(2815), - [anon_sym_lsr] = ACTIONS(2815), - [anon_sym_asr] = ACTIONS(2815), - [aux_sym__mult_operator_token1] = ACTIONS(2815), - [anon_sym_mod] = ACTIONS(2815), - [anon_sym_land] = ACTIONS(2815), - [anon_sym_lor] = ACTIONS(2815), - [anon_sym_lxor] = ACTIONS(2815), - [aux_sym__add_operator_token1] = ACTIONS(2815), - [sym__concat_operator] = ACTIONS(2817), - [sym__rel_operator] = ACTIONS(2815), - [anon_sym_AMP_AMP] = ACTIONS(2815), - [anon_sym_or] = ACTIONS(2815), - [anon_sym_PIPE_PIPE] = ACTIONS(2815), - [sym_let_operator] = ACTIONS(2817), - [sym__capitalized_identifier] = ACTIONS(2817), - [aux_sym_directive_token1] = ACTIONS(2815), - [aux_sym_tag_token1] = ACTIONS(2817), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1498] = { - [sym_attribute] = STATE(1498), - [sym__identifier] = ACTIONS(3089), - [anon_sym_SEMI_SEMI] = ACTIONS(3091), - [anon_sym_let] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_external] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_true] = ACTIONS(3089), - [anon_sym_false] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3091), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(3089), - [anon_sym_module] = ACTIONS(3089), - [anon_sym_open] = ACTIONS(3089), - [anon_sym_include] = ACTIONS(3089), - [anon_sym_class] = ACTIONS(3089), - [anon_sym_end] = ACTIONS(3089), - [anon_sym_object] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_COLON_COLON] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3091), - [anon_sym_else] = ACTIONS(3089), - [anon_sym_new] = ACTIONS(3089), - [anon_sym_LBRACE_LT] = ACTIONS(3091), - [anon_sym_begin] = ACTIONS(3089), - [sym_ocamlyacc_value] = ACTIONS(3091), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3089), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3091), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3089), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3091), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3091), - [aux_sym_number_token1] = ACTIONS(3091), - [anon_sym_SQUOTE] = ACTIONS(3091), - [anon_sym_DQUOTE] = ACTIONS(3091), - [sym_prefix_operator] = ACTIONS(3091), - [anon_sym_PLUS_DOT] = ACTIONS(3089), - [anon_sym_DASH_DOT] = ACTIONS(3089), - [sym_hash_operator] = ACTIONS(3091), - [aux_sym__pow_operator_token1] = ACTIONS(3091), - [anon_sym_lsl] = ACTIONS(3089), - [anon_sym_lsr] = ACTIONS(3089), - [anon_sym_asr] = ACTIONS(3089), - [aux_sym__mult_operator_token1] = ACTIONS(3089), - [anon_sym_mod] = ACTIONS(3089), - [anon_sym_land] = ACTIONS(3089), - [anon_sym_lor] = ACTIONS(3089), - [anon_sym_lxor] = ACTIONS(3089), - [aux_sym__add_operator_token1] = ACTIONS(3089), - [sym__concat_operator] = ACTIONS(3091), - [sym__rel_operator] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [sym_let_operator] = ACTIONS(3091), - [sym__capitalized_identifier] = ACTIONS(3091), - [aux_sym_directive_token1] = ACTIONS(3089), - [aux_sym_tag_token1] = ACTIONS(3091), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1499] = { - [sym_attribute] = STATE(1499), - [sym__identifier] = ACTIONS(3093), - [anon_sym_SEMI_SEMI] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_external] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3093), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_true] = ACTIONS(3093), - [anon_sym_false] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym_exception] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_open] = ACTIONS(3093), - [anon_sym_include] = ACTIONS(3093), - [anon_sym_class] = ACTIONS(3093), - [anon_sym_end] = ACTIONS(3093), - [anon_sym_object] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_COLON_COLON] = ACTIONS(3095), - [anon_sym_LBRACK_PIPE] = ACTIONS(3095), - [anon_sym_else] = ACTIONS(3093), - [anon_sym_new] = ACTIONS(3093), - [anon_sym_LBRACE_LT] = ACTIONS(3095), - [anon_sym_begin] = ACTIONS(3093), - [sym_ocamlyacc_value] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3093), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3095), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3093), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3095), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3095), - [aux_sym_number_token1] = ACTIONS(3095), - [anon_sym_SQUOTE] = ACTIONS(3095), - [anon_sym_DQUOTE] = ACTIONS(3095), - [sym_prefix_operator] = ACTIONS(3095), - [anon_sym_PLUS_DOT] = ACTIONS(3093), - [anon_sym_DASH_DOT] = ACTIONS(3093), - [sym_hash_operator] = ACTIONS(3095), - [aux_sym__pow_operator_token1] = ACTIONS(3095), - [anon_sym_lsl] = ACTIONS(3093), - [anon_sym_lsr] = ACTIONS(3093), - [anon_sym_asr] = ACTIONS(3093), - [aux_sym__mult_operator_token1] = ACTIONS(3093), - [anon_sym_mod] = ACTIONS(3093), - [anon_sym_land] = ACTIONS(3093), - [anon_sym_lor] = ACTIONS(3093), - [anon_sym_lxor] = ACTIONS(3093), - [aux_sym__add_operator_token1] = ACTIONS(3093), - [sym__concat_operator] = ACTIONS(3095), - [sym__rel_operator] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [sym_let_operator] = ACTIONS(3095), - [sym__capitalized_identifier] = ACTIONS(3095), - [aux_sym_directive_token1] = ACTIONS(3093), - [aux_sym_tag_token1] = ACTIONS(3095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1500] = { - [sym_attribute] = STATE(1500), - [sym__identifier] = ACTIONS(2861), - [anon_sym_SEMI_SEMI] = ACTIONS(2863), - [anon_sym_let] = ACTIONS(2861), - [anon_sym_TILDE] = ACTIONS(2861), - [anon_sym_QMARK] = ACTIONS(2861), - [anon_sym_LPAREN] = ACTIONS(2863), - [anon_sym_external] = ACTIONS(2861), - [anon_sym_type] = ACTIONS(2861), - [anon_sym_COMMA] = ACTIONS(2863), - [anon_sym_PLUS] = ACTIONS(2861), - [anon_sym_DASH] = ACTIONS(2861), - [anon_sym_COLON_EQ] = ACTIONS(2863), - [anon_sym_PIPE] = ACTIONS(2861), - [anon_sym_LBRACK] = ACTIONS(2861), - [anon_sym_RBRACK] = ACTIONS(2863), - [anon_sym_true] = ACTIONS(2861), - [anon_sym_false] = ACTIONS(2861), - [anon_sym_DOT] = ACTIONS(2863), - [anon_sym_LBRACE] = ACTIONS(2861), - [anon_sym_SEMI] = ACTIONS(2861), - [anon_sym_exception] = ACTIONS(2861), - [anon_sym_module] = ACTIONS(2861), - [anon_sym_open] = ACTIONS(2861), - [anon_sym_include] = ACTIONS(2861), - [anon_sym_class] = ACTIONS(2861), - [anon_sym_end] = ACTIONS(2861), - [anon_sym_object] = ACTIONS(2861), - [anon_sym_AMP] = ACTIONS(2861), - [anon_sym_POUND] = ACTIONS(2861), - [anon_sym_COLON_COLON] = ACTIONS(2863), - [anon_sym_LBRACK_PIPE] = ACTIONS(2863), - [anon_sym_else] = ACTIONS(2861), - [anon_sym_new] = ACTIONS(2861), - [anon_sym_LBRACE_LT] = ACTIONS(2863), - [anon_sym_begin] = ACTIONS(2861), - [sym_ocamlyacc_value] = ACTIONS(2863), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2861), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2863), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2861), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2863), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2863), - [aux_sym_number_token1] = ACTIONS(2863), - [anon_sym_SQUOTE] = ACTIONS(2863), - [anon_sym_DQUOTE] = ACTIONS(2863), - [sym_prefix_operator] = ACTIONS(2863), - [anon_sym_PLUS_DOT] = ACTIONS(2861), - [anon_sym_DASH_DOT] = ACTIONS(2861), - [sym_hash_operator] = ACTIONS(2863), - [aux_sym__pow_operator_token1] = ACTIONS(2863), - [anon_sym_lsl] = ACTIONS(2861), - [anon_sym_lsr] = ACTIONS(2861), - [anon_sym_asr] = ACTIONS(2861), - [aux_sym__mult_operator_token1] = ACTIONS(2861), - [anon_sym_mod] = ACTIONS(2861), - [anon_sym_land] = ACTIONS(2861), - [anon_sym_lor] = ACTIONS(2861), - [anon_sym_lxor] = ACTIONS(2861), - [aux_sym__add_operator_token1] = ACTIONS(2861), - [sym__concat_operator] = ACTIONS(2863), - [sym__rel_operator] = ACTIONS(2861), - [anon_sym_AMP_AMP] = ACTIONS(2861), - [anon_sym_or] = ACTIONS(2861), - [anon_sym_PIPE_PIPE] = ACTIONS(2861), - [sym_let_operator] = ACTIONS(2863), - [sym__capitalized_identifier] = ACTIONS(2863), - [aux_sym_directive_token1] = ACTIONS(2861), - [aux_sym_tag_token1] = ACTIONS(2863), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1501] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5349), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1501), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_EQ] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_RPAREN] = ACTIONS(3202), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_COLON2] = ACTIONS(3210), - [anon_sym_DASH_GT] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_when] = ACTIONS(3210), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1502] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5247), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1502), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5456), - [aux_sym_let_binding_repeat1] = STATE(1505), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3220), - [anon_sym_val] = ACTIONS(3220), - [anon_sym_end] = ACTIONS(3220), - [anon_sym_inherit] = ACTIONS(3220), - [anon_sym_method] = ACTIONS(3220), - [anon_sym_initializer] = ACTIONS(3220), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3222), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3222), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3222), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1503] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5277), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1503), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5421), - [aux_sym_let_binding_repeat1] = STATE(1510), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3226), - [anon_sym_val] = ACTIONS(3226), - [anon_sym_end] = ACTIONS(3226), - [anon_sym_inherit] = ACTIONS(3226), - [anon_sym_method] = ACTIONS(3226), - [anon_sym_initializer] = ACTIONS(3226), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3228), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3228), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3228), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1504] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5329), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1504), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5393), - [aux_sym_let_binding_repeat1] = STATE(1506), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3232), - [anon_sym_val] = ACTIONS(3232), - [anon_sym_end] = ACTIONS(3232), - [anon_sym_inherit] = ACTIONS(3232), - [anon_sym_method] = ACTIONS(3232), - [anon_sym_initializer] = ACTIONS(3232), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3234), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3234), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3234), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1505] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5317), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1505), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5371), - [aux_sym_let_binding_repeat1] = STATE(1510), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3238), - [anon_sym_val] = ACTIONS(3238), - [anon_sym_end] = ACTIONS(3238), - [anon_sym_inherit] = ACTIONS(3238), - [anon_sym_method] = ACTIONS(3238), - [anon_sym_initializer] = ACTIONS(3238), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3240), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3240), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3240), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1506] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5228), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1506), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5437), - [aux_sym_let_binding_repeat1] = STATE(1510), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3244), - [anon_sym_val] = ACTIONS(3244), - [anon_sym_end] = ACTIONS(3244), - [anon_sym_inherit] = ACTIONS(3244), - [anon_sym_method] = ACTIONS(3244), - [anon_sym_initializer] = ACTIONS(3244), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3246), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3246), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3246), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1507] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(5315), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1507), - [sym_item_attribute] = STATE(4339), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5407), - [aux_sym_let_binding_repeat1] = STATE(1503), - [sym__identifier] = ACTIONS(2097), - [anon_sym_EQ] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_constraint] = ACTIONS(3250), - [anon_sym_val] = ACTIONS(3250), - [anon_sym_end] = ACTIONS(3250), - [anon_sym_inherit] = ACTIONS(3250), - [anon_sym_method] = ACTIONS(3250), - [anon_sym_initializer] = ACTIONS(3250), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2482), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3252), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2139), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3252), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3252), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1508] = { - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(3879), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1508), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_and] = ACTIONS(2063), - [anon_sym_COLON_GT] = ACTIONS(2061), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_COLON2] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_and_operator] = ACTIONS(2061), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1509] = { - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(3853), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1509), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_and] = ACTIONS(2063), - [anon_sym_COLON_GT] = ACTIONS(2061), - [anon_sym_EQ] = ACTIONS(2061), - [anon_sym_TILDE] = ACTIONS(2061), - [anon_sym_QMARK] = ACTIONS(2061), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_COLON2] = ACTIONS(2063), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_in] = ACTIONS(2063), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2061), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym_and_operator] = ACTIONS(2061), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1510] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1510), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_let_binding_repeat1] = STATE(1510), - [sym__identifier] = ACTIONS(3288), - [anon_sym_COLON_GT] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_QMARK] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3297), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3303), - [anon_sym_true] = ACTIONS(3306), - [anon_sym_false] = ACTIONS(3306), - [anon_sym_COLON2] = ACTIONS(2751), - [anon_sym_DASH_GT] = ACTIONS(2749), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_constraint] = ACTIONS(2751), - [anon_sym_val] = ACTIONS(2751), - [anon_sym_end] = ACTIONS(2751), - [anon_sym_inherit] = ACTIONS(2751), - [anon_sym_method] = ACTIONS(2751), - [anon_sym_initializer] = ACTIONS(2751), - [anon_sym_POUND] = ACTIONS(3312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3318), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2751), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2749), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3324), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2749), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2749), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3333), - [sym__capitalized_identifier] = ACTIONS(3336), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1511] = { - [sym_attribute] = STATE(1511), - [sym__identifier] = ACTIONS(3178), - [anon_sym_SEMI_SEMI] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_QMARK] = ACTIONS(3178), - [anon_sym_COLON] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_external] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_COMMA] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_COLON_EQ] = ACTIONS(3180), - [anon_sym_PIPE] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_RBRACK] = ACTIONS(3180), - [anon_sym_true] = ACTIONS(3178), - [anon_sym_false] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_exception] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_open] = ACTIONS(3178), - [anon_sym_include] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_end] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_AMP] = ACTIONS(3178), - [anon_sym_COLON_COLON] = ACTIONS(3180), - [anon_sym_LBRACK_PIPE] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_LBRACE_LT] = ACTIONS(3180), - [anon_sym_begin] = ACTIONS(3178), - [sym_ocamlyacc_value] = ACTIONS(3180), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3178), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3180), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3178), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3180), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3180), - [aux_sym_number_token1] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [sym_prefix_operator] = ACTIONS(3180), - [anon_sym_PLUS_DOT] = ACTIONS(3178), - [anon_sym_DASH_DOT] = ACTIONS(3178), - [aux_sym__pow_operator_token1] = ACTIONS(3180), - [anon_sym_lsl] = ACTIONS(3178), - [anon_sym_lsr] = ACTIONS(3178), - [anon_sym_asr] = ACTIONS(3178), - [aux_sym__mult_operator_token1] = ACTIONS(3178), - [anon_sym_mod] = ACTIONS(3178), - [anon_sym_land] = ACTIONS(3178), - [anon_sym_lor] = ACTIONS(3178), - [anon_sym_lxor] = ACTIONS(3178), - [aux_sym__add_operator_token1] = ACTIONS(3178), - [sym__concat_operator] = ACTIONS(3180), - [sym__rel_operator] = ACTIONS(3178), - [anon_sym_AMP_AMP] = ACTIONS(3178), - [anon_sym_or] = ACTIONS(3178), - [anon_sym_PIPE_PIPE] = ACTIONS(3178), - [sym_let_operator] = ACTIONS(3180), - [sym__capitalized_identifier] = ACTIONS(3180), - [aux_sym_directive_token1] = ACTIONS(3180), - [aux_sym_tag_token1] = ACTIONS(3180), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1512] = { - [sym__parameter] = STATE(3574), - [sym_parameter] = STATE(3575), - [sym__polymorphic_typed] = STATE(7249), - [sym__parenthesized_abstract_type] = STATE(3575), - [sym__simple_pattern] = STATE(3576), - [sym__simple_pattern_ext] = STATE(3577), - [sym_typed_pattern] = STATE(3591), - [sym_polymorphic_variant_pattern] = STATE(3591), - [sym_record_pattern] = STATE(3591), - [sym_list_pattern] = STATE(3591), - [sym_array_pattern] = STATE(3591), - [sym_local_open_pattern] = STATE(3591), - [sym_package_pattern] = STATE(3591), - [sym_parenthesized_pattern] = STATE(3591), - [sym_attribute] = STATE(1512), - [sym_item_attribute] = STATE(6099), - [sym__extension] = STATE(3576), - [sym_extension] = STATE(3518), - [sym_quoted_extension] = STATE(3518), - [sym__constant] = STATE(3545), - [sym__signed_constant] = STATE(3591), - [sym_number] = STATE(3568), - [sym_signed_number] = STATE(3545), - [sym_character] = STATE(3568), - [sym_string] = STATE(3568), - [sym_quoted_string] = STATE(3568), - [sym_boolean] = STATE(3568), - [sym_unit] = STATE(3568), - [sym__value_pattern] = STATE(3591), - [sym_parenthesized_operator] = STATE(3549), - [sym_module_path] = STATE(7746), - [sym_constructor_path] = STATE(3591), - [sym__label] = STATE(7478), - [sym_tag] = STATE(3591), - [aux_sym_expression_item_repeat1] = STATE(5903), - [aux_sym_let_binding_repeat1] = STATE(1815), - [sym__identifier] = ACTIONS(2097), - [anon_sym_and] = ACTIONS(2101), - [anon_sym_COLON_GT] = ACTIONS(3342), - [anon_sym_EQ] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(2107), - [anon_sym_QMARK] = ACTIONS(2107), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_COMMA] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(2113), - [anon_sym_DASH] = ACTIONS(2113), - [anon_sym_PIPE] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(2119), - [anon_sym_false] = ACTIONS(2119), - [anon_sym_COLON2] = ACTIONS(2121), - [anon_sym_LBRACE] = ACTIONS(2123), - [anon_sym_in] = ACTIONS(2101), - [anon_sym_as] = ACTIONS(3350), - [anon_sym_POUND] = ACTIONS(2127), - [anon_sym_COLON_COLON] = ACTIONS(3352), - [anon_sym_LBRACK_PIPE] = ACTIONS(2131), - [anon_sym_begin] = ACTIONS(2133), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3354), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3356), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3358), - [aux_sym_number_token1] = ACTIONS(2141), - [anon_sym_SQUOTE] = ACTIONS(2143), - [anon_sym_DQUOTE] = ACTIONS(2145), - [sym_and_operator] = ACTIONS(2099), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1513] = { - [sym_attribute] = STATE(1513), - [sym__identifier] = ACTIONS(3182), - [anon_sym_SEMI_SEMI] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_QMARK] = ACTIONS(3182), - [anon_sym_COLON] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_external] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_COMMA] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_COLON_EQ] = ACTIONS(3184), - [anon_sym_PIPE] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_RBRACK] = ACTIONS(3184), - [anon_sym_true] = ACTIONS(3182), - [anon_sym_false] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_exception] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_open] = ACTIONS(3182), - [anon_sym_include] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_end] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_AMP] = ACTIONS(3182), - [anon_sym_COLON_COLON] = ACTIONS(3184), - [anon_sym_LBRACK_PIPE] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_LBRACE_LT] = ACTIONS(3184), - [anon_sym_begin] = ACTIONS(3182), - [sym_ocamlyacc_value] = ACTIONS(3184), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3182), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3184), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3182), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3184), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3184), - [aux_sym_number_token1] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [sym_prefix_operator] = ACTIONS(3184), - [anon_sym_PLUS_DOT] = ACTIONS(3182), - [anon_sym_DASH_DOT] = ACTIONS(3182), - [aux_sym__pow_operator_token1] = ACTIONS(3184), - [anon_sym_lsl] = ACTIONS(3182), - [anon_sym_lsr] = ACTIONS(3182), - [anon_sym_asr] = ACTIONS(3182), - [aux_sym__mult_operator_token1] = ACTIONS(3182), - [anon_sym_mod] = ACTIONS(3182), - [anon_sym_land] = ACTIONS(3182), - [anon_sym_lor] = ACTIONS(3182), - [anon_sym_lxor] = ACTIONS(3182), - [aux_sym__add_operator_token1] = ACTIONS(3182), - [sym__concat_operator] = ACTIONS(3184), - [sym__rel_operator] = ACTIONS(3182), - [anon_sym_AMP_AMP] = ACTIONS(3182), - [anon_sym_or] = ACTIONS(3182), - [anon_sym_PIPE_PIPE] = ACTIONS(3182), - [sym_let_operator] = ACTIONS(3184), - [sym__capitalized_identifier] = ACTIONS(3184), - [aux_sym_directive_token1] = ACTIONS(3184), - [aux_sym_tag_token1] = ACTIONS(3184), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1514] = { - [sym_attribute] = STATE(1514), - [sym__identifier] = ACTIONS(3109), - [anon_sym_SEMI_SEMI] = ACTIONS(3111), - [anon_sym_let] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_external] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3109), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_true] = ACTIONS(3109), - [anon_sym_false] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_exception] = ACTIONS(3109), - [anon_sym_module] = ACTIONS(3109), - [anon_sym_open] = ACTIONS(3109), - [anon_sym_include] = ACTIONS(3109), - [anon_sym_class] = ACTIONS(3109), - [anon_sym_end] = ACTIONS(3109), - [anon_sym_object] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_LBRACK_PIPE] = ACTIONS(3111), - [anon_sym_else] = ACTIONS(3109), - [anon_sym_new] = ACTIONS(3109), - [anon_sym_LBRACE_LT] = ACTIONS(3111), - [anon_sym_begin] = ACTIONS(3109), - [sym_ocamlyacc_value] = ACTIONS(3111), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3109), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3111), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3109), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3111), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3111), - [aux_sym_number_token1] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(3111), - [anon_sym_DQUOTE] = ACTIONS(3111), - [sym_prefix_operator] = ACTIONS(3111), - [anon_sym_PLUS_DOT] = ACTIONS(3109), - [anon_sym_DASH_DOT] = ACTIONS(3109), - [aux_sym__pow_operator_token1] = ACTIONS(3111), - [anon_sym_lsl] = ACTIONS(3109), - [anon_sym_lsr] = ACTIONS(3109), - [anon_sym_asr] = ACTIONS(3109), - [aux_sym__mult_operator_token1] = ACTIONS(3109), - [anon_sym_mod] = ACTIONS(3109), - [anon_sym_land] = ACTIONS(3109), - [anon_sym_lor] = ACTIONS(3109), - [anon_sym_lxor] = ACTIONS(3109), - [aux_sym__add_operator_token1] = ACTIONS(3109), - [sym__concat_operator] = ACTIONS(3111), - [sym__rel_operator] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [sym_let_operator] = ACTIONS(3111), - [sym__capitalized_identifier] = ACTIONS(3111), - [aux_sym_directive_token1] = ACTIONS(3111), - [aux_sym_tag_token1] = ACTIONS(3111), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1515] = { - [sym_attribute] = STATE(1515), - [sym__identifier] = ACTIONS(3194), - [anon_sym_SEMI_SEMI] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_QMARK] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_external] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_COMMA] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_COLON_EQ] = ACTIONS(3196), - [anon_sym_PIPE] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_RBRACK] = ACTIONS(3196), - [anon_sym_true] = ACTIONS(3194), - [anon_sym_false] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_exception] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_open] = ACTIONS(3194), - [anon_sym_include] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_end] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_AMP] = ACTIONS(3194), - [anon_sym_COLON_COLON] = ACTIONS(3196), - [anon_sym_LBRACK_PIPE] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_LBRACE_LT] = ACTIONS(3196), - [anon_sym_begin] = ACTIONS(3194), - [sym_ocamlyacc_value] = ACTIONS(3196), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3194), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3196), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3194), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3196), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3196), - [aux_sym_number_token1] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [sym_prefix_operator] = ACTIONS(3196), - [anon_sym_PLUS_DOT] = ACTIONS(3194), - [anon_sym_DASH_DOT] = ACTIONS(3194), - [aux_sym__pow_operator_token1] = ACTIONS(3196), - [anon_sym_lsl] = ACTIONS(3194), - [anon_sym_lsr] = ACTIONS(3194), - [anon_sym_asr] = ACTIONS(3194), - [aux_sym__mult_operator_token1] = ACTIONS(3194), - [anon_sym_mod] = ACTIONS(3194), - [anon_sym_land] = ACTIONS(3194), - [anon_sym_lor] = ACTIONS(3194), - [anon_sym_lxor] = ACTIONS(3194), - [aux_sym__add_operator_token1] = ACTIONS(3194), - [sym__concat_operator] = ACTIONS(3196), - [sym__rel_operator] = ACTIONS(3194), - [anon_sym_AMP_AMP] = ACTIONS(3194), - [anon_sym_or] = ACTIONS(3194), - [anon_sym_PIPE_PIPE] = ACTIONS(3194), - [sym_let_operator] = ACTIONS(3196), - [sym__capitalized_identifier] = ACTIONS(3196), - [aux_sym_directive_token1] = ACTIONS(3196), - [aux_sym_tag_token1] = ACTIONS(3196), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1516] = { - [sym__signature] = STATE(8183), - [sym_external] = STATE(5129), - [sym_type_definition] = STATE(5129), - [sym_exception_definition] = STATE(5129), - [sym_module_definition] = STATE(5129), - [sym_module_type_definition] = STATE(5129), - [sym_open_module] = STATE(5129), - [sym_class_definition] = STATE(5129), - [sym_class_type_definition] = STATE(5129), - [sym__signature_item] = STATE(5128), - [sym__signature_item_ext] = STATE(5137), - [sym_value_specification] = STATE(5129), - [sym_include_module_type] = STATE(5129), - [sym__simple_type] = STATE(3502), - [sym__tuple_type] = STATE(3455), - [sym__tuple_type_ext] = STATE(8182), - [sym__type] = STATE(3514), - [sym__type_ext] = STATE(6541), - [sym_function_type] = STATE(3469), - [sym_typed_label] = STATE(8180), - [sym_tuple_type] = STATE(3466), - [sym_constructed_type] = STATE(3764), - [sym_aliased_type] = STATE(3469), - [sym_polymorphic_variant_type] = STATE(3764), - [sym_package_type] = STATE(3764), - [sym_object_type] = STATE(3764), - [sym_hash_type] = STATE(3764), - [sym_parenthesized_type] = STATE(3764), - [sym_attribute] = STATE(1516), - [sym_floating_attribute] = STATE(5129), - [sym__extension] = STATE(3498), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__item_extension] = STATE(5128), - [sym_item_extension] = STATE(4429), - [sym_quoted_item_extension] = STATE(4429), - [sym_extended_module_path] = STATE(6987), - [sym_type_constructor_path] = STATE(3764), - [sym_type_variable] = STATE(3764), - [aux_sym__structure_repeat1] = STATE(3843), - [aux_sym__signature_repeat1] = STATE(3829), - [sym__identifier] = ACTIONS(3362), - [anon_sym_SEMI_SEMI] = ACTIONS(9), - [anon_sym_QMARK] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_external] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3370), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_RBRACK] = ACTIONS(3374), - [anon_sym_exception] = ACTIONS(3376), - [anon_sym_module] = ACTIONS(3378), - [anon_sym_open] = ACTIONS(3380), - [anon_sym_include] = ACTIONS(3382), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_val] = ACTIONS(3386), - [anon_sym_LBRACK_GT] = ACTIONS(3388), - [anon_sym_LBRACK_LT] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3392), - [anon_sym_POUND] = ACTIONS(3394), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(27), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3396), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3398), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(29), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(31), - [sym__capitalized_identifier] = ACTIONS(3400), - [aux_sym_type_variable_token1] = ACTIONS(3402), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1517] = { - [sym__parenthesized_abstract_type] = STATE(1751), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5352), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1517), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(4905), - [sym_quoted_extension] = STATE(4905), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1517), - [sym_tag] = STATE(1529), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_exception] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(3408), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3410), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3412), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1518] = { - [sym_attribute] = STATE(1518), - [sym__identifier] = ACTIONS(3190), - [anon_sym_SEMI_SEMI] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_QMARK] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_external] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_COMMA] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_COLON_EQ] = ACTIONS(3192), - [anon_sym_PIPE] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_RBRACK] = ACTIONS(3192), - [anon_sym_true] = ACTIONS(3190), - [anon_sym_false] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_exception] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_open] = ACTIONS(3190), - [anon_sym_include] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_end] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_AMP] = ACTIONS(3190), - [anon_sym_COLON_COLON] = ACTIONS(3192), - [anon_sym_LBRACK_PIPE] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_LBRACE_LT] = ACTIONS(3192), - [anon_sym_begin] = ACTIONS(3190), - [sym_ocamlyacc_value] = ACTIONS(3192), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3190), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3192), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3190), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3192), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3192), - [aux_sym_number_token1] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [sym_prefix_operator] = ACTIONS(3192), - [anon_sym_PLUS_DOT] = ACTIONS(3190), - [anon_sym_DASH_DOT] = ACTIONS(3190), - [aux_sym__pow_operator_token1] = ACTIONS(3192), - [anon_sym_lsl] = ACTIONS(3190), - [anon_sym_lsr] = ACTIONS(3190), - [anon_sym_asr] = ACTIONS(3190), - [aux_sym__mult_operator_token1] = ACTIONS(3190), - [anon_sym_mod] = ACTIONS(3190), - [anon_sym_land] = ACTIONS(3190), - [anon_sym_lor] = ACTIONS(3190), - [anon_sym_lxor] = ACTIONS(3190), - [aux_sym__add_operator_token1] = ACTIONS(3190), - [sym__concat_operator] = ACTIONS(3192), - [sym__rel_operator] = ACTIONS(3190), - [anon_sym_AMP_AMP] = ACTIONS(3190), - [anon_sym_or] = ACTIONS(3190), - [anon_sym_PIPE_PIPE] = ACTIONS(3190), - [sym_let_operator] = ACTIONS(3192), - [sym__capitalized_identifier] = ACTIONS(3192), - [aux_sym_directive_token1] = ACTIONS(3192), - [aux_sym_tag_token1] = ACTIONS(3192), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1519] = { - [sym__parenthesized_abstract_type] = STATE(1727), - [sym__simple_pattern] = STATE(5818), - [sym__pattern] = STATE(5811), - [sym__pattern_ext] = STATE(5883), - [sym_alias_pattern] = STATE(5818), - [sym_typed_pattern] = STATE(5837), - [sym_or_pattern] = STATE(5818), - [sym_constructor_pattern] = STATE(5818), - [sym_tag_pattern] = STATE(5818), - [sym_polymorphic_variant_pattern] = STATE(5837), - [sym_tuple_pattern] = STATE(5818), - [sym_record_pattern] = STATE(5837), - [sym_list_pattern] = STATE(5837), - [sym_cons_pattern] = STATE(5818), - [sym_array_pattern] = STATE(5837), - [sym_range_pattern] = STATE(5818), - [sym_lazy_pattern] = STATE(5818), - [sym_local_open_pattern] = STATE(5837), - [sym_package_pattern] = STATE(5837), - [sym_parenthesized_pattern] = STATE(5837), - [sym_exception_pattern] = STATE(5818), - [sym_attribute] = STATE(1519), - [sym__extension] = STATE(5811), - [sym_extension] = STATE(5112), - [sym_quoted_extension] = STATE(5112), - [sym__constant] = STATE(5740), - [sym__signed_constant] = STATE(5653), - [sym_number] = STATE(5720), - [sym_signed_number] = STATE(5740), - [sym_character] = STATE(5720), - [sym_string] = STATE(5720), - [sym_quoted_string] = STATE(5720), - [sym_boolean] = STATE(5720), - [sym_unit] = STATE(5720), - [sym__value_pattern] = STATE(5837), - [sym_parenthesized_operator] = STATE(5838), - [sym_module_path] = STATE(7400), - [sym_constructor_path] = STATE(1519), - [sym_tag] = STATE(1535), - [sym__identifier] = ACTIONS(3414), - [anon_sym_LPAREN] = ACTIONS(3416), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_true] = ACTIONS(3422), - [anon_sym_false] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_exception] = ACTIONS(3426), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_PIPE_RBRACK] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3432), - [anon_sym_begin] = ACTIONS(3434), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3436), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3438), - [aux_sym_number_token1] = ACTIONS(3440), - [anon_sym_SQUOTE] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3444), - [sym__capitalized_identifier] = ACTIONS(2730), - [aux_sym_tag_token1] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1520] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(7956), - [sym_module_definition] = STATE(7955), - [sym_open_module] = STATE(7954), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1520), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1521] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(7468), - [sym_module_definition] = STATE(7467), - [sym_open_module] = STATE(7466), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1521), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1522] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8558), - [sym_module_definition] = STATE(8601), - [sym_open_module] = STATE(8610), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1522), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1523] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(7863), - [sym_module_definition] = STATE(7911), - [sym_open_module] = STATE(7913), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1523), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1524] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(7392), - [sym_module_definition] = STATE(7481), - [sym_open_module] = STATE(7482), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1524), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1525] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8231), - [sym_module_definition] = STATE(8232), - [sym_open_module] = STATE(8233), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1525), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1526] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(7417), - [sym_module_definition] = STATE(7451), - [sym_open_module] = STATE(7735), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1526), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1527] = { - [sym_let_binding] = STATE(4826), - [sym_exception_definition] = STATE(8197), - [sym_module_definition] = STATE(8196), - [sym_open_module] = STATE(8195), - [sym__binding_pattern] = STATE(2562), - [sym__binding_pattern_ext] = STATE(1101), - [sym_alias_binding_pattern] = STATE(2556), - [sym_typed_binding_pattern] = STATE(2556), - [sym_or_binding_pattern] = STATE(2556), - [sym_constructor_binding_pattern] = STATE(2556), - [sym_tag_binding_pattern] = STATE(2556), - [sym_polymorphic_variant_pattern] = STATE(2556), - [sym_tuple_binding_pattern] = STATE(2556), - [sym_record_binding_pattern] = STATE(2522), - [sym_list_binding_pattern] = STATE(2554), - [sym_cons_binding_pattern] = STATE(2556), - [sym_array_binding_pattern] = STATE(2550), - [sym_range_pattern] = STATE(2556), - [sym_lazy_binding_pattern] = STATE(2556), - [sym_local_open_binding_pattern] = STATE(2556), - [sym_package_pattern] = STATE(2556), - [sym_parenthesized_binding_pattern] = STATE(2556), - [sym_attribute] = STATE(1527), - [sym__extension] = STATE(2562), - [sym_extension] = STATE(2566), - [sym_quoted_extension] = STATE(2566), - [sym__attribute] = STATE(1806), - [sym__constant] = STATE(2508), - [sym__signed_constant] = STATE(2518), - [sym_number] = STATE(2519), - [sym_signed_number] = STATE(2508), - [sym_character] = STATE(2519), - [sym_string] = STATE(2519), - [sym_quoted_string] = STATE(2519), - [sym_boolean] = STATE(2519), - [sym_unit] = STATE(2519), - [sym__value_name] = STATE(2556), - [sym_parenthesized_operator] = STATE(2535), - [sym_module_path] = STATE(8194), - [sym_constructor_path] = STATE(1099), - [sym_tag] = STATE(1100), - [sym__identifier] = ACTIONS(2059), - [anon_sym_rec] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(2065), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2069), - [anon_sym_true] = ACTIONS(2071), - [anon_sym_false] = ACTIONS(2071), - [anon_sym_LBRACE] = ACTIONS(2073), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(2075), - [anon_sym_LBRACK_PIPE] = ACTIONS(2077), - [anon_sym_lazy] = ACTIONS(2079), - [anon_sym_begin] = ACTIONS(2081), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3458), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3460), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(2087), - [anon_sym_SQUOTE] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__capitalized_identifier] = ACTIONS(2093), - [aux_sym_tag_token1] = ACTIONS(2095), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1528] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8001), - [sym_module_definition] = STATE(8000), - [sym_open_module] = STATE(7906), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1528), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1529] = { - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5349), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1529), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(4905), - [sym_quoted_extension] = STATE(4905), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1517), - [sym_tag] = STATE(1529), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_RBRACK] = ACTIONS(3202), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_exception] = ACTIONS(3404), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(3408), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3410), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3412), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1530] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8281), - [sym_module_definition] = STATE(8292), - [sym_open_module] = STATE(8303), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1530), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1531] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8517), - [sym_module_definition] = STATE(8518), - [sym_open_module] = STATE(8520), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1531), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1532] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8383), - [sym_module_definition] = STATE(8077), - [sym_open_module] = STATE(8069), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1532), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1533] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8197), - [sym_module_definition] = STATE(8196), - [sym_open_module] = STATE(8195), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1533), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1534] = { - [sym_let_binding] = STATE(6094), - [sym_exception_definition] = STATE(8278), - [sym_module_definition] = STATE(8286), - [sym_open_module] = STATE(8298), - [sym__binding_pattern] = STATE(3861), - [sym__binding_pattern_ext] = STATE(1512), - [sym_alias_binding_pattern] = STATE(3848), - [sym_typed_binding_pattern] = STATE(3848), - [sym_or_binding_pattern] = STATE(3848), - [sym_constructor_binding_pattern] = STATE(3848), - [sym_tag_binding_pattern] = STATE(3848), - [sym_polymorphic_variant_pattern] = STATE(3848), - [sym_tuple_binding_pattern] = STATE(3848), - [sym_record_binding_pattern] = STATE(3836), - [sym_list_binding_pattern] = STATE(3840), - [sym_cons_binding_pattern] = STATE(3848), - [sym_array_binding_pattern] = STATE(3841), - [sym_range_pattern] = STATE(3848), - [sym_lazy_binding_pattern] = STATE(3848), - [sym_local_open_binding_pattern] = STATE(3848), - [sym_package_pattern] = STATE(3848), - [sym_parenthesized_binding_pattern] = STATE(3848), - [sym_attribute] = STATE(1534), - [sym__extension] = STATE(3861), - [sym_extension] = STATE(3845), - [sym_quoted_extension] = STATE(3845), - [sym__attribute] = STATE(1795), - [sym__constant] = STATE(3820), - [sym__signed_constant] = STATE(3826), - [sym_number] = STATE(3832), - [sym_signed_number] = STATE(3820), - [sym_character] = STATE(3832), - [sym_string] = STATE(3832), - [sym_quoted_string] = STATE(3832), - [sym_boolean] = STATE(3832), - [sym_unit] = STATE(3832), - [sym__value_name] = STATE(3848), - [sym_parenthesized_operator] = STATE(3866), - [sym_module_path] = STATE(7402), - [sym_constructor_path] = STATE(1508), - [sym_tag] = STATE(1509), - [sym__identifier] = ACTIONS(3254), - [anon_sym_rec] = ACTIONS(3446), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3260), - [anon_sym_true] = ACTIONS(3262), - [anon_sym_false] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_exception] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3450), - [anon_sym_open] = ACTIONS(3452), - [anon_sym_POUND] = ACTIONS(3266), - [anon_sym_LBRACK_PIPE] = ACTIONS(3268), - [anon_sym_lazy] = ACTIONS(3270), - [anon_sym_begin] = ACTIONS(3272), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3274), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3276), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3280), - [anon_sym_DQUOTE] = ACTIONS(3282), - [sym__capitalized_identifier] = ACTIONS(3284), - [aux_sym_tag_token1] = ACTIONS(3286), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1535] = { - [sym__simple_pattern] = STATE(5818), - [sym__pattern] = STATE(5811), - [sym__pattern_ext] = STATE(5874), - [sym_alias_pattern] = STATE(5818), - [sym_typed_pattern] = STATE(5837), - [sym_or_pattern] = STATE(5818), - [sym_constructor_pattern] = STATE(5818), - [sym_tag_pattern] = STATE(5818), - [sym_polymorphic_variant_pattern] = STATE(5837), - [sym_tuple_pattern] = STATE(5818), - [sym_record_pattern] = STATE(5837), - [sym_list_pattern] = STATE(5837), - [sym_cons_pattern] = STATE(5818), - [sym_array_pattern] = STATE(5837), - [sym_range_pattern] = STATE(5818), - [sym_lazy_pattern] = STATE(5818), - [sym_local_open_pattern] = STATE(5837), - [sym_package_pattern] = STATE(5837), - [sym_parenthesized_pattern] = STATE(5837), - [sym_exception_pattern] = STATE(5818), - [sym_attribute] = STATE(1535), - [sym__extension] = STATE(5811), - [sym_extension] = STATE(5112), - [sym_quoted_extension] = STATE(5112), - [sym__constant] = STATE(5740), - [sym__signed_constant] = STATE(5653), - [sym_number] = STATE(5720), - [sym_signed_number] = STATE(5740), - [sym_character] = STATE(5720), - [sym_string] = STATE(5720), - [sym_quoted_string] = STATE(5720), - [sym_boolean] = STATE(5720), - [sym_unit] = STATE(5720), - [sym__value_pattern] = STATE(5837), - [sym_parenthesized_operator] = STATE(5838), - [sym_module_path] = STATE(7400), - [sym_constructor_path] = STATE(1519), - [sym_tag] = STATE(1535), - [sym__identifier] = ACTIONS(3414), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_COMMA] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3418), - [anon_sym_DASH] = ACTIONS(3418), - [anon_sym_PIPE] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3420), - [anon_sym_true] = ACTIONS(3422), - [anon_sym_false] = ACTIONS(3422), - [anon_sym_LBRACE] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_exception] = ACTIONS(3426), - [anon_sym_as] = ACTIONS(3210), - [anon_sym_POUND] = ACTIONS(3428), - [anon_sym_COLON_COLON] = ACTIONS(3202), - [anon_sym_LBRACK_PIPE] = ACTIONS(3430), - [anon_sym_PIPE_RBRACK] = ACTIONS(3202), - [anon_sym_lazy] = ACTIONS(3432), - [anon_sym_begin] = ACTIONS(3434), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3436), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3438), - [aux_sym_number_token1] = ACTIONS(3440), - [anon_sym_SQUOTE] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3444), - [sym__capitalized_identifier] = ACTIONS(2730), - [aux_sym_tag_token1] = ACTIONS(2732), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1536] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1536), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(146), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1537] = { - [sym__simple_expression] = STATE(1246), - [sym_typed_expression] = STATE(1177), - [sym_list_expression] = STATE(1177), - [sym_array_expression] = STATE(1177), - [sym_record_expression] = STATE(1177), - [sym__argument] = STATE(1412), - [sym_labeled_argument] = STATE(1411), - [sym_prefix_expression] = STATE(1177), - [sym_hash_expression] = STATE(1177), - [sym_field_get_expression] = STATE(1177), - [sym_array_get_expression] = STATE(1177), - [sym_string_get_expression] = STATE(1177), - [sym_bigarray_get_expression] = STATE(1177), - [sym_coercion_expression] = STATE(1177), - [sym_local_open_expression] = STATE(1177), - [sym_package_expression] = STATE(1177), - [sym_new_expression] = STATE(1177), - [sym_object_copy_expression] = STATE(1177), - [sym_method_invocation] = STATE(1177), - [sym_object_expression] = STATE(1177), - [sym_parenthesized_expression] = STATE(1177), - [sym_attribute] = STATE(1537), - [sym__extension] = STATE(1246), - [sym_extension] = STATE(1238), - [sym_quoted_extension] = STATE(1238), - [sym__constant] = STATE(1177), - [sym_number] = STATE(1158), - [sym_character] = STATE(1158), - [sym_string] = STATE(1158), - [sym_quoted_string] = STATE(1158), - [sym_boolean] = STATE(1158), - [sym_unit] = STATE(1158), - [sym__value_name] = STATE(1203), - [sym_parenthesized_operator] = STATE(1178), - [sym_value_path] = STATE(1177), - [sym_module_path] = STATE(7658), - [sym_constructor_path] = STATE(1177), - [sym__label] = STATE(1399), - [sym_tag] = STATE(1177), - [aux_sym_class_application_repeat1] = STATE(1536), - [sym__identifier] = ACTIONS(1037), - [anon_sym_TILDE] = ACTIONS(1041), - [anon_sym_QMARK] = ACTIONS(1041), - [anon_sym_LPAREN] = ACTIONS(357), - [anon_sym_RPAREN] = ACTIONS(2153), - [anon_sym_LBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(361), - [anon_sym_false] = ACTIONS(361), - [anon_sym_COLON2] = ACTIONS(2153), - [anon_sym_LBRACE] = ACTIONS(363), - [anon_sym_object] = ACTIONS(365), - [anon_sym_LBRACK_PIPE] = ACTIONS(369), - [anon_sym_new] = ACTIONS(387), - [anon_sym_LBRACE_LT] = ACTIONS(389), - [anon_sym_begin] = ACTIONS(391), - [sym_ocamlyacc_value] = ACTIONS(393), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(433), - [aux_sym_number_token1] = ACTIONS(399), - [anon_sym_SQUOTE] = ACTIONS(401), - [anon_sym_DQUOTE] = ACTIONS(403), - [sym_prefix_operator] = ACTIONS(405), - [sym__capitalized_identifier] = ACTIONS(409), - [aux_sym_tag_token1] = ACTIONS(411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1538] = { - [sym__match_cases] = STATE(2657), - [sym_match_case] = STATE(2686), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5656), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1538), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1607), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1539] = { - [sym_attribute] = STATE(1539), - [sym__identifier] = ACTIONS(2835), - [anon_sym_COLON_GT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_COLON2] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_DASH_GT] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_with] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3466), - [anon_sym_then] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_GT_RBRACE] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1540] = { - [sym__match_cases] = STATE(2648), - [sym_match_case] = STATE(4048), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5691), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1540), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1572), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1541] = { - [sym__match_cases] = STATE(2583), - [sym_match_case] = STATE(3237), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5792), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1541), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1562), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1542] = { - [sym__match_cases] = STATE(2657), - [sym_match_case] = STATE(2650), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5658), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1542), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1573), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1543] = { - [sym_attribute] = STATE(1543), - [sym__identifier] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_PIPE] = ACTIONS(2835), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_constraint] = ACTIONS(2835), - [anon_sym_val] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_inherit] = ACTIONS(2835), - [anon_sym_method] = ACTIONS(2835), - [anon_sym_initializer] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1544] = { - [sym__match_cases] = STATE(3631), - [sym_match_case] = STATE(3923), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5790), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1544), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1599), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1545] = { - [sym__match_cases] = STATE(2648), - [sym_match_case] = STATE(3237), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5792), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1545), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1563), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3470), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1546] = { - [sym__match_cases] = STATE(2583), - [sym_match_case] = STATE(4048), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5691), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1546), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1619), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1547] = { - [sym__match_cases] = STATE(2648), - [sym_match_case] = STATE(3266), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5799), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1547), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1625), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1548] = { - [sym__match_cases] = STATE(2657), - [sym_match_case] = STATE(2591), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5685), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1548), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1587), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1549] = { - [sym_attribute] = STATE(1549), - [sym__identifier] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_constraint] = ACTIONS(2801), - [anon_sym_val] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_inherit] = ACTIONS(2801), - [anon_sym_method] = ACTIONS(2801), - [anon_sym_initializer] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3482), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1550] = { - [sym__match_cases] = STATE(2583), - [sym_match_case] = STATE(3266), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5799), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1550), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1616), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1551] = { - [sym__match_cases] = STATE(2583), - [sym_match_case] = STATE(4045), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5661), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1551), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1628), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1552] = { - [sym_attribute] = STATE(1552), - [sym__identifier] = ACTIONS(2801), - [anon_sym_COLON_GT] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_PIPE] = ACTIONS(2801), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_COLON2] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3486), - [anon_sym_then] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_GT_RBRACE] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1553] = { - [sym__match_cases] = STATE(3631), - [sym_match_case] = STATE(3884), - [sym__simple_pattern] = STATE(5384), - [sym__pattern] = STATE(5383), - [sym__pattern_ext] = STATE(5733), - [sym_alias_pattern] = STATE(5384), - [sym_typed_pattern] = STATE(5447), - [sym_or_pattern] = STATE(5384), - [sym_constructor_pattern] = STATE(5384), - [sym_tag_pattern] = STATE(5384), - [sym_polymorphic_variant_pattern] = STATE(5447), - [sym_tuple_pattern] = STATE(5384), - [sym_record_pattern] = STATE(5447), - [sym_list_pattern] = STATE(5447), - [sym_cons_pattern] = STATE(5384), - [sym_array_pattern] = STATE(5447), - [sym_range_pattern] = STATE(5384), - [sym_lazy_pattern] = STATE(5384), - [sym_local_open_pattern] = STATE(5447), - [sym_package_pattern] = STATE(5447), - [sym_parenthesized_pattern] = STATE(5447), - [sym_exception_pattern] = STATE(5384), - [sym_attribute] = STATE(1553), - [sym__extension] = STATE(5383), - [sym_extension] = STATE(3085), - [sym_quoted_extension] = STATE(3085), - [sym__attribute] = STATE(1598), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5319), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_pattern] = STATE(5447), - [sym_parenthesized_operator] = STATE(4522), - [sym_module_path] = STATE(7734), - [sym_constructor_path] = STATE(1449), - [sym_tag] = STATE(1501), - [sym__identifier] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1713), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_exception] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3212), - [anon_sym_LBRACK_PIPE] = ACTIONS(1733), - [anon_sym_lazy] = ACTIONS(1735), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1739), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1741), - [anon_sym_PERCENT] = ACTIONS(3454), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1554] = { - [sym_attribute] = STATE(1554), - [sym__identifier] = ACTIONS(2801), - [anon_sym_COLON_GT] = ACTIONS(2803), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_RPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_RBRACK] = ACTIONS(2803), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_COLON2] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_DASH_GT] = ACTIONS(2801), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_RBRACE] = ACTIONS(2803), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_with] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3490), - [anon_sym_then] = ACTIONS(2801), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_GT_RBRACE] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1555] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5571), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1555), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(4905), - [sym_quoted_extension] = STATE(4905), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(5681), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1555), - [sym_tag] = STATE(1558), - [sym__identifier] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3410), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3412), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1556] = { - [sym_attribute] = STATE(1556), - [sym__identifier] = ACTIONS(2835), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_constraint] = ACTIONS(2835), - [anon_sym_val] = ACTIONS(2835), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_inherit] = ACTIONS(2835), - [anon_sym_method] = ACTIONS(2835), - [anon_sym_initializer] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3496), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2835), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2837), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2835), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1557] = { - [sym_attribute] = STATE(1557), - [sym__identifier] = ACTIONS(2835), - [anon_sym_COLON_GT] = ACTIONS(2837), - [anon_sym_TILDE] = ACTIONS(2835), - [anon_sym_QMARK] = ACTIONS(2835), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_RPAREN] = ACTIONS(2837), - [anon_sym_COMMA] = ACTIONS(2837), - [anon_sym_PLUS] = ACTIONS(2835), - [anon_sym_DASH] = ACTIONS(2835), - [anon_sym_COLON_EQ] = ACTIONS(2837), - [anon_sym_LBRACK] = ACTIONS(2835), - [anon_sym_RBRACK] = ACTIONS(2837), - [anon_sym_true] = ACTIONS(2835), - [anon_sym_false] = ACTIONS(2835), - [anon_sym_COLON2] = ACTIONS(2835), - [anon_sym_DOT] = ACTIONS(2837), - [anon_sym_DASH_GT] = ACTIONS(2835), - [anon_sym_LBRACE] = ACTIONS(2835), - [anon_sym_SEMI] = ACTIONS(2837), - [anon_sym_RBRACE] = ACTIONS(2837), - [anon_sym_end] = ACTIONS(2835), - [anon_sym_with] = ACTIONS(2835), - [anon_sym_object] = ACTIONS(2835), - [anon_sym_AMP] = ACTIONS(2835), - [anon_sym_POUND] = ACTIONS(2835), - [anon_sym_COLON_COLON] = ACTIONS(2837), - [anon_sym_LBRACK_PIPE] = ACTIONS(2837), - [anon_sym_LT_DASH] = ACTIONS(3498), - [anon_sym_then] = ACTIONS(2835), - [anon_sym_else] = ACTIONS(2835), - [anon_sym_new] = ACTIONS(2835), - [anon_sym_LBRACE_LT] = ACTIONS(2837), - [anon_sym_GT_RBRACE] = ACTIONS(2837), - [anon_sym_begin] = ACTIONS(2835), - [sym_ocamlyacc_value] = ACTIONS(2837), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2837), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2837), - [aux_sym_number_token1] = ACTIONS(2837), - [anon_sym_SQUOTE] = ACTIONS(2837), - [anon_sym_DQUOTE] = ACTIONS(2837), - [sym_prefix_operator] = ACTIONS(2837), - [anon_sym_PLUS_DOT] = ACTIONS(2835), - [anon_sym_DASH_DOT] = ACTIONS(2835), - [sym_hash_operator] = ACTIONS(2837), - [aux_sym__pow_operator_token1] = ACTIONS(2837), - [anon_sym_lsl] = ACTIONS(2835), - [anon_sym_lsr] = ACTIONS(2835), - [anon_sym_asr] = ACTIONS(2835), - [aux_sym__mult_operator_token1] = ACTIONS(2835), - [anon_sym_mod] = ACTIONS(2835), - [anon_sym_land] = ACTIONS(2835), - [anon_sym_lor] = ACTIONS(2835), - [anon_sym_lxor] = ACTIONS(2835), - [aux_sym__add_operator_token1] = ACTIONS(2835), - [sym__concat_operator] = ACTIONS(2837), - [sym__rel_operator] = ACTIONS(2835), - [anon_sym_AMP_AMP] = ACTIONS(2835), - [anon_sym_or] = ACTIONS(2835), - [anon_sym_PIPE_PIPE] = ACTIONS(2835), - [sym__capitalized_identifier] = ACTIONS(2837), - [aux_sym_tag_token1] = ACTIONS(2837), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1558] = { - [sym__binding_pattern] = STATE(5563), - [sym__binding_pattern_ext] = STATE(5573), - [sym_alias_binding_pattern] = STATE(5564), - [sym_typed_binding_pattern] = STATE(5564), - [sym_or_binding_pattern] = STATE(5564), - [sym_constructor_binding_pattern] = STATE(5564), - [sym_tag_binding_pattern] = STATE(5564), - [sym_polymorphic_variant_pattern] = STATE(5564), - [sym_tuple_binding_pattern] = STATE(5564), - [sym_record_binding_pattern] = STATE(5566), - [sym_list_binding_pattern] = STATE(5568), - [sym_cons_binding_pattern] = STATE(5564), - [sym_array_binding_pattern] = STATE(5525), - [sym_range_pattern] = STATE(5564), - [sym_lazy_binding_pattern] = STATE(5564), - [sym_local_open_binding_pattern] = STATE(5564), - [sym_package_pattern] = STATE(5564), - [sym_parenthesized_binding_pattern] = STATE(5564), - [sym_attribute] = STATE(1558), - [sym__extension] = STATE(5563), - [sym_extension] = STATE(4905), - [sym_quoted_extension] = STATE(4905), - [sym__constant] = STATE(5269), - [sym__signed_constant] = STATE(5513), - [sym_number] = STATE(5057), - [sym_signed_number] = STATE(5269), - [sym_character] = STATE(5057), - [sym_string] = STATE(5057), - [sym_quoted_string] = STATE(5057), - [sym_boolean] = STATE(5057), - [sym_unit] = STATE(5057), - [sym__value_name] = STATE(5564), - [sym_parenthesized_operator] = STATE(5681), - [sym_module_path] = STATE(7893), - [sym_constructor_path] = STATE(1555), - [sym_tag] = STATE(1558), - [sym__identifier] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_LBRACK] = ACTIONS(2025), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_true] = ACTIONS(1721), - [anon_sym_false] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(2027), - [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_as] = ACTIONS(2063), - [anon_sym_POUND] = ACTIONS(3406), - [anon_sym_COLON_COLON] = ACTIONS(2061), - [anon_sym_LBRACK_PIPE] = ACTIONS(2029), - [anon_sym_lazy] = ACTIONS(3494), - [anon_sym_begin] = ACTIONS(1737), - [anon_sym_LBRACK_AT] = ACTIONS(309), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3410), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3412), - [aux_sym_number_token1] = ACTIONS(1743), - [anon_sym_SQUOTE] = ACTIONS(1745), - [anon_sym_DQUOTE] = ACTIONS(1747), - [sym__capitalized_identifier] = ACTIONS(1749), - [aux_sym_tag_token1] = ACTIONS(1751), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1559] = { - [sym_attribute] = STATE(1559), - [sym__identifier] = ACTIONS(2801), - [anon_sym_TILDE] = ACTIONS(2801), - [anon_sym_QMARK] = ACTIONS(2801), - [anon_sym_LPAREN] = ACTIONS(2803), - [anon_sym_COMMA] = ACTIONS(2803), - [anon_sym_PLUS] = ACTIONS(2801), - [anon_sym_DASH] = ACTIONS(2801), - [anon_sym_COLON_EQ] = ACTIONS(2803), - [anon_sym_LBRACK] = ACTIONS(2801), - [anon_sym_true] = ACTIONS(2801), - [anon_sym_false] = ACTIONS(2801), - [anon_sym_DOT] = ACTIONS(2803), - [anon_sym_LBRACE] = ACTIONS(2801), - [anon_sym_SEMI] = ACTIONS(2803), - [anon_sym_constraint] = ACTIONS(2801), - [anon_sym_val] = ACTIONS(2801), - [anon_sym_end] = ACTIONS(2801), - [anon_sym_object] = ACTIONS(2801), - [anon_sym_inherit] = ACTIONS(2801), - [anon_sym_method] = ACTIONS(2801), - [anon_sym_initializer] = ACTIONS(2801), - [anon_sym_AMP] = ACTIONS(2801), - [anon_sym_POUND] = ACTIONS(2801), - [anon_sym_COLON_COLON] = ACTIONS(2803), - [anon_sym_LBRACK_PIPE] = ACTIONS(2803), - [anon_sym_LT_DASH] = ACTIONS(3500), - [anon_sym_else] = ACTIONS(2801), - [anon_sym_new] = ACTIONS(2801), - [anon_sym_LBRACE_LT] = ACTIONS(2803), - [anon_sym_begin] = ACTIONS(2801), - [sym_ocamlyacc_value] = ACTIONS(2803), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2801), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2803), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2801), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2803), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2803), - [aux_sym_number_token1] = ACTIONS(2803), - [anon_sym_SQUOTE] = ACTIONS(2803), - [anon_sym_DQUOTE] = ACTIONS(2803), - [sym_prefix_operator] = ACTIONS(2803), - [anon_sym_PLUS_DOT] = ACTIONS(2801), - [anon_sym_DASH_DOT] = ACTIONS(2801), - [sym_hash_operator] = ACTIONS(2803), - [aux_sym__pow_operator_token1] = ACTIONS(2803), - [anon_sym_lsl] = ACTIONS(2801), - [anon_sym_lsr] = ACTIONS(2801), - [anon_sym_asr] = ACTIONS(2801), - [aux_sym__mult_operator_token1] = ACTIONS(2801), - [anon_sym_mod] = ACTIONS(2801), - [anon_sym_land] = ACTIONS(2801), - [anon_sym_lor] = ACTIONS(2801), - [anon_sym_lxor] = ACTIONS(2801), - [aux_sym__add_operator_token1] = ACTIONS(2801), - [sym__concat_operator] = ACTIONS(2803), - [sym__rel_operator] = ACTIONS(2801), - [anon_sym_AMP_AMP] = ACTIONS(2801), - [anon_sym_or] = ACTIONS(2801), - [anon_sym_PIPE_PIPE] = ACTIONS(2801), - [sym__capitalized_identifier] = ACTIONS(2803), - [aux_sym_tag_token1] = ACTIONS(2803), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1560), 1, - sym_attribute, - STATE(2538), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [137] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1561), 1, - sym_attribute, - STATE(2599), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [274] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1562), 1, - sym_attribute, - STATE(2557), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [411] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1563), 1, - sym_attribute, - STATE(2665), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [548] = 40, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3446), 1, - anon_sym_rec, - ACTIONS(3452), 1, - anon_sym_open, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1564), 1, - sym_attribute, - STATE(1795), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - STATE(7498), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [693] = 40, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3446), 1, - anon_sym_rec, - ACTIONS(3452), 1, - anon_sym_open, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1565), 1, - sym_attribute, - STATE(1795), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - STATE(8506), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [838] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1566), 1, - sym_attribute, - STATE(3686), 1, - sym__match_cases, - STATE(3923), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [975] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1567), 1, - sym_attribute, - STATE(2636), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1112] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1568), 1, - sym_attribute, - STATE(3680), 1, - sym__match_cases, - STATE(3923), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1249] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1569), 1, - sym_attribute, - STATE(2530), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1386] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1570), 1, - sym_attribute, - STATE(3680), 1, - sym__match_cases, - STATE(3884), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1523] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1571), 1, - sym_attribute, - STATE(3651), 1, - sym__match_cases, - STATE(3884), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1660] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1572), 1, - sym_attribute, - STATE(2665), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1797] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3472), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1573), 1, - sym_attribute, - STATE(2650), 1, - sym_match_case, - STATE(2652), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1934] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3480), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1574), 1, - sym_attribute, - STATE(2591), 1, - sym_match_case, - STATE(2647), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2071] = 40, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3446), 1, - anon_sym_rec, - ACTIONS(3452), 1, - anon_sym_open, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1575), 1, - sym_attribute, - STATE(1795), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - STATE(7598), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [2216] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1576), 1, - sym_attribute, - STATE(2653), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2353] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1577), 1, - sym_attribute, - STATE(2649), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2490] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1578), 1, - sym_attribute, - STATE(2538), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2627] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1579), 1, - sym_attribute, - STATE(2637), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2764] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1580), 1, - sym_attribute, - STATE(2530), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2901] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1581), 1, - sym_attribute, - STATE(2599), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3038] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3480), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1582), 1, - sym_attribute, - STATE(2591), 1, - sym_match_case, - STATE(2634), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3175] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3480), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1583), 1, - sym_attribute, - STATE(2591), 1, - sym_match_case, - STATE(2627), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3312] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3484), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1584), 1, - sym_attribute, - STATE(2599), 1, - sym__match_cases, - STATE(4045), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3449] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1585), 1, - sym_attribute, - STATE(3686), 1, - sym__match_cases, - STATE(3884), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3586] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1586), 1, - sym_attribute, - STATE(2627), 1, - sym__match_cases, - STATE(2686), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3723] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3480), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1587), 1, - sym_attribute, - STATE(2591), 1, - sym_match_case, - STATE(2652), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3860] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1588), 1, - sym_attribute, - STATE(2530), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3997] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3484), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1589), 1, - sym_attribute, - STATE(2572), 1, - sym__match_cases, - STATE(4045), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4134] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1590), 1, - sym_attribute, - STATE(2634), 1, - sym__match_cases, - STATE(2686), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4271] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1591), 1, - sym_attribute, - STATE(2653), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4408] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1594), 1, - sym_constructor_path, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5912), 1, - sym__binding_pattern_ext, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 2, - anon_sym_PIPE, - anon_sym_as, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(1592), 2, - sym_attribute, - sym_tag, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2061), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [4543] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1593), 1, - sym_attribute, - STATE(2538), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4680] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5911), 1, - sym__binding_pattern_ext, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 2, - anon_sym_PIPE, - anon_sym_as, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(1594), 2, - sym_attribute, - sym_constructor_path, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2061), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [4815] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1595), 1, - sym_attribute, - STATE(2636), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4952] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1596), 1, - sym_attribute, - STATE(2637), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5089] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1597), 1, - sym_attribute, - STATE(2649), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5226] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1598), 1, - sym_attribute, - STATE(3602), 1, - sym__match_cases, - STATE(3884), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5363] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1599), 1, - sym_attribute, - STATE(3602), 1, - sym__match_cases, - STATE(3923), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5500] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1600), 1, - sym_attribute, - STATE(2653), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5637] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3488), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1601), 1, - sym_attribute, - STATE(3666), 1, - sym__match_cases, - STATE(3884), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5774] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3484), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1602), 1, - sym_attribute, - STATE(2530), 1, - sym__match_cases, - STATE(4045), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5911] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1603), 1, - sym_attribute, - STATE(2572), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6048] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1604), 1, - sym_attribute, - STATE(2649), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6185] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1605), 1, - sym_attribute, - STATE(2572), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6322] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1606), 1, - sym_attribute, - STATE(3666), 1, - sym__match_cases, - STATE(3923), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6459] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1607), 1, - sym_attribute, - STATE(2652), 1, - sym__match_cases, - STATE(2686), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6596] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1608), 1, - sym_attribute, - STATE(2612), 1, - sym__match_cases, - STATE(2686), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6733] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1609), 1, - sym_attribute, - STATE(2572), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6870] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3472), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1610), 1, - sym_attribute, - STATE(2612), 1, - sym__match_cases, - STATE(2650), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7007] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1612), 1, - sym_constructor_path, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5573), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2063), 2, - anon_sym_COLON2, - anon_sym_as, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1611), 2, - sym_attribute, - sym_tag, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2061), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON_COLON, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [7142] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1611), 1, - sym_tag, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5571), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2063), 2, - anon_sym_COLON2, - anon_sym_as, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1612), 2, - sym_attribute, - sym_constructor_path, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2061), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON_COLON, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [7277] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3472), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1613), 1, - sym_attribute, - STATE(2647), 1, - sym__match_cases, - STATE(2650), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7414] = 40, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3446), 1, - anon_sym_rec, - ACTIONS(3452), 1, - anon_sym_open, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1614), 1, - sym_attribute, - STATE(1795), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - STATE(7425), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [7559] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3484), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1615), 1, - sym_attribute, - STATE(2538), 1, - sym__match_cases, - STATE(4045), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7696] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1616), 1, - sym_attribute, - STATE(2557), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7833] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1617), 1, - sym_attribute, - STATE(2599), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7970] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1618), 1, - sym_attribute, - STATE(2637), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8107] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3468), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1619), 1, - sym_attribute, - STATE(2557), 1, - sym__match_cases, - STATE(4048), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8244] = 40, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3446), 1, - anon_sym_rec, - ACTIONS(3452), 1, - anon_sym_open, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1620), 1, - sym_attribute, - STATE(1795), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - STATE(7429), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [8389] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3470), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1621), 1, - sym_attribute, - STATE(2636), 1, - sym__match_cases, - STATE(3237), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8526] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3464), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1622), 1, - sym_attribute, - STATE(2647), 1, - sym__match_cases, - STATE(2686), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8663] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3472), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1623), 1, - sym_attribute, - STATE(2627), 1, - sym__match_cases, - STATE(2650), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8800] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3476), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1624), 1, - sym_attribute, - STATE(3651), 1, - sym__match_cases, - STATE(3923), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8937] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3478), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1625), 1, - sym_attribute, - STATE(2665), 1, - sym__match_cases, - STATE(3266), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9074] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3472), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1626), 1, - sym_attribute, - STATE(2634), 1, - sym__match_cases, - STATE(2650), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9211] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3480), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1627), 1, - sym_attribute, - STATE(2591), 1, - sym_match_case, - STATE(2612), 1, - sym__match_cases, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9348] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3484), 1, - anon_sym_PIPE, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1628), 1, - sym_attribute, - STATE(2557), 1, - sym__match_cases, - STATE(4045), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9485] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3514), 1, - anon_sym_RPAREN, - ACTIONS(3516), 1, - anon_sym_COLON_COLON, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1629), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(6008), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9619] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1630), 1, - sym_attribute, - STATE(1730), 1, - sym__attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5889), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9753] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1631), 1, - sym_attribute, - STATE(1718), 1, - sym__attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5677), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9887] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1632), 1, - sym_attribute, - STATE(1715), 1, - sym__attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5370), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10021] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1633), 1, - sym_attribute, - STATE(1721), 1, - sym__attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5890), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10155] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3518), 1, - anon_sym_RPAREN, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1634), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(6010), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10289] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(695), 1, - anon_sym_COLON_COLON, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3522), 1, - anon_sym_RPAREN, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1635), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(6051), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10423] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1636), 1, - sym_attribute, - STATE(1779), 1, - sym__attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5370), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10557] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3524), 1, - anon_sym_RPAREN, - ACTIONS(3526), 1, - anon_sym_COLON_COLON, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1637), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(6063), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10691] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1638), 1, - sym_attribute, - STATE(1771), 1, - sym__attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5512), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10825] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - ACTIONS(3528), 1, - anon_sym_RPAREN, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1639), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(6068), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10959] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1640), 1, - sym_attribute, - STATE(4041), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11090] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3530), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1641), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11221] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3532), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1642), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11352] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3534), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1643), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5724), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11483] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1644), 1, - sym_attribute, - STATE(3891), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11614] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1645), 1, - sym_attribute, - STATE(3614), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11745] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1646), 1, - sym_attribute, - STATE(2620), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11876] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1647), 1, - sym_attribute, - STATE(4199), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12007] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3566), 1, - sym__left_quoted_string_delimiter, - STATE(1648), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6817), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6202), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [12134] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1649), 1, - sym_attribute, - STATE(3929), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5790), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12265] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3568), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1650), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5698), 1, - sym__pattern_ext, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12396] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3570), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1651), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12527] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3572), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1652), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12658] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3574), 1, - sym__left_quoted_string_delimiter, - STATE(1653), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6374), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6183), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [12785] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1654), 1, - sym_attribute, - STATE(3258), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12916] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1655), 1, - sym_attribute, - STATE(2586), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13047] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3576), 1, - sym__left_quoted_string_delimiter, - STATE(1656), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6845), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6193), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [13174] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1657), 1, - sym_attribute, - STATE(3229), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13305] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3578), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1658), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13436] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3580), 1, - sym__left_quoted_string_delimiter, - STATE(1659), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6879), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6214), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [13563] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3582), 1, - sym__left_quoted_string_delimiter, - STATE(1660), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6523), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6278), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [13690] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3584), 1, - sym__left_quoted_string_delimiter, - STATE(1661), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6620), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6192), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [13817] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1662), 1, - sym_attribute, - STATE(2645), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13948] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3586), 1, - sym__left_quoted_string_delimiter, - STATE(1663), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6543), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6116), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [14075] = 38, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3588), 1, - anon_sym_rec, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1664), 1, - sym_attribute, - STATE(1798), 1, - sym__attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4914), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [14214] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1665), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5775), 1, - sym__pattern_ext, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14345] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3592), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1666), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5779), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14476] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3594), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1667), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5741), 1, - sym__pattern_ext, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14607] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3596), 1, - sym__left_quoted_string_delimiter, - STATE(1668), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6911), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6219), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [14734] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3598), 1, - sym__left_quoted_string_delimiter, - STATE(1669), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6664), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6250), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [14861] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3600), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1670), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14992] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3602), 1, - sym__left_quoted_string_delimiter, - STATE(1671), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6439), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6271), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [15119] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3604), 1, - sym__left_quoted_string_delimiter, - STATE(1672), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6510), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6262), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [15246] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3606), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1673), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15377] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1674), 1, - sym_attribute, - STATE(4065), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5661), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15508] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3608), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1675), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15639] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1676), 1, - sym_attribute, - STATE(2619), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5799), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15770] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3610), 1, - sym__left_quoted_string_delimiter, - STATE(1677), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6711), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6096), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [15897] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3612), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1678), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16028] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3614), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1679), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16159] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3616), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1680), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16290] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1681), 1, - sym_attribute, - STATE(2620), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5658), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16421] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1682), 1, - sym_attribute, - STATE(2620), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5685), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16552] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3618), 1, - sym__left_quoted_string_delimiter, - STATE(1683), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6374), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6183), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [16679] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1684), 1, - sym_attribute, - STATE(3614), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5733), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16810] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3620), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1685), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16941] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3622), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1686), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17072] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3624), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1687), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5774), 1, - sym__pattern_ext, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17203] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3626), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1688), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17334] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1689), 1, - sym_attribute, - STATE(2619), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5792), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17465] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3628), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1690), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5777), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17596] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1691), 1, - sym_attribute, - STATE(2619), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5691), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17727] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3630), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1692), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17858] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3632), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1693), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5701), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17989] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3634), 1, - sym__left_quoted_string_delimiter, - STATE(1694), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6376), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6266), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [18116] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3636), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1695), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18247] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3638), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1696), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5707), 1, - sym__pattern_ext, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18378] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3640), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1697), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18509] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1698), 1, - sym_attribute, - STATE(2681), 1, - sym_match_case, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5656), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18640] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3642), 1, - sym__left_quoted_string_delimiter, - STATE(1699), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6723), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6113), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [18767] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3644), 1, - anon_sym_RBRACK, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1700), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5692), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18898] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3646), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1701), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19029] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3648), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1702), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19160] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - ACTIONS(3650), 1, - anon_sym_PIPE_RBRACK, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1703), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19291] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1704), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5758), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19419] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1705), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5680), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19547] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1706), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5659), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19675] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1707), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6543), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6116), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [19799] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1708), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5757), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19927] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1709), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5784), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20055] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1710), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5511), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20183] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1711), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5669), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20311] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1712), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5794), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20439] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3652), 41, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [20511] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3658), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3656), 41, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [20583] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1715), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5464), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20711] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(1716), 1, - sym_attribute, - STATE(2010), 1, - sym__attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3417), 2, - sym__simple_expression, - sym__extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [20835] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1717), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5756), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20963] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1718), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5673), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21091] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1719), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5730), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21219] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1720), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5755), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21347] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1721), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5924), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21475] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(1722), 1, - sym_attribute, - STATE(1986), 1, - sym__attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3415), 2, - sym__simple_expression, - sym__extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21599] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1723), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6845), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6193), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21723] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1724), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5798), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21851] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(1725), 1, - sym_attribute, - STATE(1845), 1, - sym__attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2351), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21975] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(1726), 1, - sym_attribute, - STATE(1844), 1, - sym__attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2350), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22099] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1727), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5954), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22227] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1728), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5496), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22355] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1729), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5910), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22483] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1730), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5926), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22611] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(997), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(995), 41, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [22683] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1732), 1, - sym_attribute, - STATE(1925), 1, - sym__attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2430), 2, - sym__simple_expression, - sym__extension, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22807] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1733), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5711), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22935] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1734), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5719), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23063] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1735), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6723), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6113), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23187] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1736), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6376), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6266), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23311] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1737), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5746), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23439] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1738), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6523), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6278), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23563] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1739), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5662), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23691] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1740), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5796), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23819] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3778), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3776), 41, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [23891] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1742), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6439), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6271), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24015] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1743), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6817), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6202), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24139] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1744), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6711), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6096), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24263] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1745), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6911), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6219), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24387] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1746), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5684), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24515] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1747), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5744), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24643] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1748), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5770), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24771] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1749), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5738), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24899] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1750), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5782), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25027] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1751), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5410), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25155] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1752), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5928), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25283] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1753), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6879), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6214), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [25407] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1754), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5936), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25535] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1755), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5667), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25663] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1756), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5524), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25791] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1757), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5776), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25919] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1758), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5728), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26047] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1759), 1, - sym_attribute, - STATE(1910), 1, - sym__attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2459), 2, - sym__simple_expression, - sym__extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [26171] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1760), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5649), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26299] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1761), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5704), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26427] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1762), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5791), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26555] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1763), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5764), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26683] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1764), 1, - sym_attribute, - STATE(1927), 1, - sym__attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2431), 2, - sym__simple_expression, - sym__extension, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [26807] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1765), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5693), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26935] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1766), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5955), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27063] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1767), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5690), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27191] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1768), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5845), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27319] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1769), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5683), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27447] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1770), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5410), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27575] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1771), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5519), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27703] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1772), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6510), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6262), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [27827] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1773), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5793), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27955] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1774), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6374), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6183), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28079] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1775), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5767), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28207] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1776), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5771), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28335] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1777), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6620), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6192), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28459] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3414), 1, - sym__identifier, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3424), 1, - anon_sym_LBRACE, - ACTIONS(3426), 1, - anon_sym_exception, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3432), 1, - anon_sym_lazy, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3462), 1, - anon_sym_LPAREN, - STATE(1519), 1, - sym_constructor_path, - STATE(1535), 1, - sym_tag, - STATE(1778), 1, - sym_attribute, - STATE(5653), 1, - sym__signed_constant, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5938), 1, - sym__pattern_ext, - STATE(7400), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5811), 2, - sym__pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5837), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5818), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28587] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1725), 1, - anon_sym_exception, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1735), 1, - anon_sym_lazy, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1449), 1, - sym_constructor_path, - STATE(1501), 1, - sym_tag, - STATE(1779), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5464), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28715] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3536), 1, - sym__identifier, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(1780), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(6075), 1, - sym_field_path, - STATE(6664), 1, - sym_field_expression, - STATE(8175), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6250), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28839] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - sym__identifier, - ACTIONS(1713), 1, - anon_sym_LPAREN, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1723), 1, - anon_sym_LBRACE, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(3404), 1, - anon_sym_exception, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3408), 1, - anon_sym_lazy, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - STATE(1517), 1, - sym_constructor_path, - STATE(1529), 1, - sym_tag, - STATE(1781), 1, - sym_attribute, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5319), 1, - sym__signed_constant, - STATE(5980), 1, - sym__pattern_ext, - STATE(7734), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5383), 2, - sym__pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5447), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(5384), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28967] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3686), 1, - anon_sym_PERCENT, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1782), 1, - sym_attribute, - STATE(1840), 1, - sym__attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2467), 2, - sym__simple_expression, - sym__extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29091] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3798), 1, - anon_sym_LT_DASH, - STATE(1783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [29164] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3800), 1, - anon_sym_LT_DASH, - STATE(1784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [29237] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1471), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1785), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [29370] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1487), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1786), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29491] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1471), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1787), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29612] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1487), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1788), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [29745] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1789), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29866] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1501), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1790), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [29999] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1791), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [30120] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1465), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1792), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [30253] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1493), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1793), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [30386] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1507), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1794), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [30507] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3802), 1, - anon_sym_rec, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1795), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6188), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [30640] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2121), 1, - anon_sym_COLON2, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3804), 1, - anon_sym_COLON_GT, - ACTIONS(3806), 1, - anon_sym_EQ, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1796), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(6925), 1, - sym__polymorphic_typed, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [30773] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1507), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1797), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [30906] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3808), 1, - anon_sym_rec, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1798), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4891), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31039] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2121), 1, - anon_sym_COLON2, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3810), 1, - anon_sym_COLON_GT, - ACTIONS(3812), 1, - anon_sym_EQ, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1799), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7356), 1, - sym__polymorphic_typed, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [31172] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(695), 1, - anon_sym_COLON_COLON, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3814), 1, - anon_sym_RPAREN, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(1800), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(6018), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31305] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1505), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1801), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [31426] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3520), 1, - anon_sym_COLON_COLON, - ACTIONS(3816), 1, - anon_sym_RPAREN, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(1802), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(6072), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31559] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(1803), 1, - sym_attribute, - STATE(2056), 1, - sym__attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5578), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31692] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1804), 1, - sym_attribute, - STATE(2137), 1, - sym__attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5578), 1, - sym__binding_pattern_ext, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31825] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3818), 1, - anon_sym_RPAREN, - ACTIONS(3820), 1, - anon_sym_COLON_COLON, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(1805), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(6047), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [31958] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_rec, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1101), 1, - sym__binding_pattern_ext, - STATE(1806), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4840), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [32091] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1501), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1807), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [32212] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32283] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32354] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32425] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32496] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1812), 1, - sym_attribute, - STATE(2075), 1, - sym__attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2540), 1, - sym__binding_pattern_ext, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [32629] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32700] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [32771] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2121), 1, - anon_sym_COLON2, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_COLON_GT, - ACTIONS(3826), 1, - anon_sym_EQ, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1815), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7187), 1, - sym__polymorphic_typed, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [32904] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1467), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1816), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33037] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - ACTIONS(3828), 1, - anon_sym_RPAREN, - ACTIONS(3830), 1, - anon_sym_COLON_COLON, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(1817), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(6057), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33170] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1509), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1818), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [33291] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1499), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1819), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33424] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1509), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1820), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33557] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1467), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1821), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [33678] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [33749] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3454), 1, - anon_sym_PERCENT, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1823), 1, - sym_attribute, - STATE(2135), 1, - sym__attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5904), 1, - sym__binding_pattern_ext, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33882] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1481), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1824), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34015] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1481), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1825), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34136] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [34207] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [34278] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1505), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1828), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34411] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1491), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1829), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34532] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1489), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1830), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34653] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1499), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1831), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34774] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1489), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1832), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34907] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1491), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1833), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35040] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1503), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1834), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35173] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1835), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [35294] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1517), 1, - anon_sym_RPAREN, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1836), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35427] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - ACTIONS(1517), 1, - anon_sym_RPAREN, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1837), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [35548] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1838), 1, - sym_attribute, - STATE(2045), 1, - sym__attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(3882), 1, - sym__binding_pattern_ext, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35681] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [35751] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1840), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2382), 2, - sym__simple_expression, - sym__extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [35869] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1841), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4891), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35999] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1357), 1, - anon_sym_DOT, - ACTIONS(1359), 1, - anon_sym_POUND, - ACTIONS(1363), 1, - sym_hash_operator, - STATE(1842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [36075] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1843), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4914), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [36205] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(1844), 1, - sym_attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2290), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36323] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(1845), 1, - sym_attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2292), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36441] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3836), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1846), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8378), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [36573] = 29, - ACTIONS(41), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_object, - ACTIONS(55), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(73), 1, - anon_sym_new, - ACTIONS(75), 1, - anon_sym_LBRACE_LT, - ACTIONS(77), 1, - anon_sym_begin, - ACTIONS(79), 1, - sym_ocamlyacc_value, - ACTIONS(87), 1, - aux_sym_number_token1, - ACTIONS(89), 1, - anon_sym_SQUOTE, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - sym_prefix_operator, - ACTIONS(99), 1, - sym__capitalized_identifier, - ACTIONS(101), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(929), 1, - sym__identifier, - ACTIONS(1435), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1437), 1, - anon_sym_LBRACE_PERCENT, - STATE(1256), 1, - sym__value_name, - STATE(1296), 1, - sym_parenthesized_operator, - STATE(1847), 1, - sym_attribute, - STATE(7461), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(47), 2, - anon_sym_true, - anon_sym_false, - STATE(1348), 2, - sym__simple_expression, - sym__extension, - STATE(1392), 2, - sym_extension, - sym_quoted_extension, - STATE(1360), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1395), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36691] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3838), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1848), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7381), 1, - sym__simple_typed, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [36823] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(1849), 1, - sym_attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3364), 2, - sym__simple_expression, - sym__extension, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36941] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3840), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1850), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7814), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [37073] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1851), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4909), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37203] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1102), 1, - sym__binding_pattern_ext, - STATE(1852), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4936), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37333] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1853), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6094), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37463] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3842), 1, - anon_sym_LT_DASH, - STATE(1854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [37535] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3844), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1855), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7543), 1, - sym__simple_typed, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [37667] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3846), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1856), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37797] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1857), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1226), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [37915] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1858), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6188), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38045] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3848), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1859), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38175] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3850), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1860), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5768), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38305] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [38375] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3852), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1862), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5713), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38505] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3854), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1863), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8421), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [38637] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3856), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1864), 1, - sym_attribute, - STATE(5714), 1, - sym__binding_pattern_ext, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38767] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3858), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1865), 1, - sym_attribute, - STATE(5762), 1, - sym__binding_pattern_ext, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38897] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3860), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1866), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8043), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [39029] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3862), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1867), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8451), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [39161] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2359), 1, - sym__identifier, - ACTIONS(2361), 1, - anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(2371), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2373), 1, - anon_sym_new, - ACTIONS(2375), 1, - anon_sym_LBRACE_LT, - ACTIONS(2377), 1, - anon_sym_begin, - ACTIONS(2379), 1, - sym_ocamlyacc_value, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - anon_sym_SQUOTE, - ACTIONS(2389), 1, - anon_sym_DQUOTE, - ACTIONS(2391), 1, - sym_prefix_operator, - ACTIONS(2393), 1, - sym__capitalized_identifier, - ACTIONS(2395), 1, - aux_sym_tag_token1, - ACTIONS(3864), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3866), 1, - anon_sym_LBRACE_PERCENT, - STATE(1868), 1, - sym_attribute, - STATE(2951), 1, - sym__value_name, - STATE(3041), 1, - sym_parenthesized_operator, - STATE(7396), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2365), 2, - anon_sym_true, - anon_sym_false, - STATE(3072), 2, - sym_extension, - sym_quoted_extension, - STATE(3083), 2, - sym__simple_expression, - sym__extension, - STATE(2981), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2982), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [39279] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39349] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39419] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39489] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39559] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1357), 1, - anon_sym_DOT, - ACTIONS(1359), 1, - anon_sym_POUND, - ACTIONS(1363), 1, - sym_hash_operator, - STATE(1873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39635] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39705] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39775] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3868), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1876), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [39905] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3870), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1877), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [40035] = 29, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(273), 1, - anon_sym_LBRACK, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_object, - ACTIONS(283), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(301), 1, - anon_sym_new, - ACTIONS(303), 1, - anon_sym_LBRACE_LT, - ACTIONS(305), 1, - anon_sym_begin, - ACTIONS(307), 1, - sym_ocamlyacc_value, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(311), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(313), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 1, - aux_sym_number_token1, - ACTIONS(317), 1, - anon_sym_SQUOTE, - ACTIONS(319), 1, - anon_sym_DQUOTE, - ACTIONS(321), 1, - sym_prefix_operator, - ACTIONS(325), 1, - sym__capitalized_identifier, - ACTIONS(327), 1, - aux_sym_tag_token1, - ACTIONS(1051), 1, - sym__identifier, - STATE(1295), 1, - sym_parenthesized_operator, - STATE(1393), 1, - sym__value_name, - STATE(1878), 1, - sym_attribute, - STATE(7674), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(275), 2, - anon_sym_true, - anon_sym_false, - STATE(1344), 2, - sym_extension, - sym_quoted_extension, - STATE(1401), 2, - sym__simple_expression, - sym__extension, - STATE(1391), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1356), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40153] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(1879), 1, - sym_attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3377), 2, - sym__simple_expression, - sym__extension, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40271] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2694), 1, - sym__identifier, - ACTIONS(2698), 1, - anon_sym_LPAREN, - ACTIONS(2700), 1, - anon_sym_LBRACK, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(2708), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2710), 1, - anon_sym_new, - ACTIONS(2712), 1, - anon_sym_LBRACE_LT, - ACTIONS(2714), 1, - anon_sym_begin, - ACTIONS(2716), 1, - sym_ocamlyacc_value, - ACTIONS(2722), 1, - aux_sym_number_token1, - ACTIONS(2724), 1, - anon_sym_SQUOTE, - ACTIONS(2726), 1, - anon_sym_DQUOTE, - ACTIONS(2728), 1, - sym_prefix_operator, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3872), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACE_PERCENT, - STATE(1880), 1, - sym_attribute, - STATE(3337), 1, - sym__value_name, - STATE(3432), 1, - sym_parenthesized_operator, - STATE(7525), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2702), 2, - anon_sym_true, - anon_sym_false, - STATE(3395), 2, - sym__simple_expression, - sym__extension, - STATE(3427), 2, - sym_extension, - sym_quoted_extension, - STATE(3386), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3454), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [40459] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3876), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1882), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8239), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [40591] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3878), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1883), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7603), 1, - sym__simple_typed, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [40723] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [40793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [40863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [40933] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [41003] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3880), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1888), 1, - sym_attribute, - STATE(5729), 1, - sym__binding_pattern_ext, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [41133] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3882), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1889), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8241), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [41265] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3884), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1890), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7799), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [41397] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3886), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1891), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5706), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [41527] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(825), 1, - anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_LBRACK, - ACTIONS(831), 1, - anon_sym_LBRACE, - ACTIONS(833), 1, - anon_sym_object, - ACTIONS(837), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(847), 1, - anon_sym_new, - ACTIONS(849), 1, - anon_sym_LBRACE_LT, - ACTIONS(851), 1, - anon_sym_begin, - ACTIONS(853), 1, - sym_ocamlyacc_value, - ACTIONS(855), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(857), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(859), 1, - aux_sym_number_token1, - ACTIONS(861), 1, - anon_sym_SQUOTE, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - sym_prefix_operator, - ACTIONS(869), 1, - sym__capitalized_identifier, - ACTIONS(871), 1, - aux_sym_tag_token1, - ACTIONS(1387), 1, - sym__identifier, - STATE(1892), 1, - sym_attribute, - STATE(2066), 1, - sym__value_name, - STATE(2091), 1, - sym_parenthesized_operator, - STATE(7583), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(829), 2, - anon_sym_true, - anon_sym_false, - STATE(2074), 2, - sym_extension, - sym_quoted_extension, - STATE(2112), 2, - sym__simple_expression, - sym__extension, - STATE(2141), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2132), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [41645] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2694), 1, - sym__identifier, - ACTIONS(2698), 1, - anon_sym_LPAREN, - ACTIONS(2700), 1, - anon_sym_LBRACK, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(2708), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2710), 1, - anon_sym_new, - ACTIONS(2712), 1, - anon_sym_LBRACE_LT, - ACTIONS(2714), 1, - anon_sym_begin, - ACTIONS(2716), 1, - sym_ocamlyacc_value, - ACTIONS(2722), 1, - aux_sym_number_token1, - ACTIONS(2724), 1, - anon_sym_SQUOTE, - ACTIONS(2726), 1, - anon_sym_DQUOTE, - ACTIONS(2728), 1, - sym_prefix_operator, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3872), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACE_PERCENT, - STATE(1893), 1, - sym_attribute, - STATE(3337), 1, - sym__value_name, - STATE(3432), 1, - sym_parenthesized_operator, - STATE(7525), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2702), 2, - anon_sym_true, - anon_sym_false, - STATE(3427), 2, - sym_extension, - sym_quoted_extension, - STATE(3459), 2, - sym__simple_expression, - sym__extension, - STATE(3386), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3454), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [41763] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [41833] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3888), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1895), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7719), 1, - sym__simple_typed, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [41965] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42035] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42175] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3890), 1, - anon_sym_LT_DASH, - STATE(1899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42247] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1101), 1, - sym__binding_pattern_ext, - STATE(1900), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4840), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [42377] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42447] = 29, - ACTIONS(41), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_object, - ACTIONS(55), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(73), 1, - anon_sym_new, - ACTIONS(75), 1, - anon_sym_LBRACE_LT, - ACTIONS(77), 1, - anon_sym_begin, - ACTIONS(79), 1, - sym_ocamlyacc_value, - ACTIONS(87), 1, - aux_sym_number_token1, - ACTIONS(89), 1, - anon_sym_SQUOTE, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - sym_prefix_operator, - ACTIONS(99), 1, - sym__capitalized_identifier, - ACTIONS(101), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(929), 1, - sym__identifier, - ACTIONS(1435), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1437), 1, - anon_sym_LBRACE_PERCENT, - STATE(1256), 1, - sym__value_name, - STATE(1296), 1, - sym_parenthesized_operator, - STATE(1902), 1, - sym_attribute, - STATE(7461), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(47), 2, - anon_sym_true, - anon_sym_false, - STATE(1340), 2, - sym__simple_expression, - sym__extension, - STATE(1392), 2, - sym_extension, - sym_quoted_extension, - STATE(1360), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1395), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42565] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3892), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1903), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8603), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [42697] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - STATE(1904), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(8002), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(6181), 2, - sym__simple_expression, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42815] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2319), 1, - sym__identifier, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2325), 1, - anon_sym_LBRACK, - ACTIONS(2329), 1, - anon_sym_LBRACE, - ACTIONS(2331), 1, - anon_sym_object, - ACTIONS(2333), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2335), 1, - anon_sym_new, - ACTIONS(2337), 1, - anon_sym_LBRACE_LT, - ACTIONS(2339), 1, - anon_sym_begin, - ACTIONS(2341), 1, - sym_ocamlyacc_value, - ACTIONS(2347), 1, - aux_sym_number_token1, - ACTIONS(2349), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_DQUOTE, - ACTIONS(2353), 1, - sym_prefix_operator, - ACTIONS(2355), 1, - sym__capitalized_identifier, - ACTIONS(2357), 1, - aux_sym_tag_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3896), 1, - anon_sym_LBRACE_PERCENT, - STATE(1905), 1, - sym_attribute, - STATE(2916), 1, - sym__value_name, - STATE(2939), 1, - sym_parenthesized_operator, - STATE(7802), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2327), 2, - anon_sym_true, - anon_sym_false, - STATE(2843), 2, - sym__simple_expression, - sym__extension, - STATE(2919), 2, - sym_extension, - sym_quoted_extension, - STATE(2889), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2846), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42933] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1906), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5749), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [43063] = 29, - ACTIONS(123), 1, - anon_sym_LPAREN, - ACTIONS(125), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(131), 1, - anon_sym_object, - ACTIONS(135), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(145), 1, - anon_sym_new, - ACTIONS(147), 1, - anon_sym_LBRACE_LT, - ACTIONS(149), 1, - anon_sym_begin, - ACTIONS(151), 1, - sym_ocamlyacc_value, - ACTIONS(157), 1, - aux_sym_number_token1, - ACTIONS(159), 1, - anon_sym_SQUOTE, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(163), 1, - sym_prefix_operator, - ACTIONS(167), 1, - sym__capitalized_identifier, - ACTIONS(169), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1013), 1, - sym__identifier, - ACTIONS(1439), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1441), 1, - anon_sym_LBRACE_PERCENT, - STATE(1446), 1, - sym__value_name, - STATE(1478), 1, - sym_parenthesized_operator, - STATE(1907), 1, - sym_attribute, - STATE(8317), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(127), 2, - anon_sym_true, - anon_sym_false, - STATE(1473), 2, - sym_extension, - sym_quoted_extension, - STATE(1479), 2, - sym__simple_expression, - sym__extension, - STATE(1454), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1496), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43181] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3900), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1908), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8048), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [43313] = 29, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(273), 1, - anon_sym_LBRACK, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_object, - ACTIONS(283), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(301), 1, - anon_sym_new, - ACTIONS(303), 1, - anon_sym_LBRACE_LT, - ACTIONS(305), 1, - anon_sym_begin, - ACTIONS(307), 1, - sym_ocamlyacc_value, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(311), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(313), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 1, - aux_sym_number_token1, - ACTIONS(317), 1, - anon_sym_SQUOTE, - ACTIONS(319), 1, - anon_sym_DQUOTE, - ACTIONS(321), 1, - sym_prefix_operator, - ACTIONS(325), 1, - sym__capitalized_identifier, - ACTIONS(327), 1, - aux_sym_tag_token1, - ACTIONS(1051), 1, - sym__identifier, - STATE(1295), 1, - sym_parenthesized_operator, - STATE(1393), 1, - sym__value_name, - STATE(1909), 1, - sym_attribute, - STATE(7674), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(275), 2, - anon_sym_true, - anon_sym_false, - STATE(1303), 2, - sym__simple_expression, - sym__extension, - STATE(1344), 2, - sym_extension, - sym_quoted_extension, - STATE(1391), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1356), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43431] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1910), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2392), 2, - sym__simple_expression, - sym__extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43549] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(825), 1, - anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_LBRACK, - ACTIONS(831), 1, - anon_sym_LBRACE, - ACTIONS(833), 1, - anon_sym_object, - ACTIONS(837), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(847), 1, - anon_sym_new, - ACTIONS(849), 1, - anon_sym_LBRACE_LT, - ACTIONS(851), 1, - anon_sym_begin, - ACTIONS(853), 1, - sym_ocamlyacc_value, - ACTIONS(855), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(857), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(859), 1, - aux_sym_number_token1, - ACTIONS(861), 1, - anon_sym_SQUOTE, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - sym_prefix_operator, - ACTIONS(869), 1, - sym__capitalized_identifier, - ACTIONS(871), 1, - aux_sym_tag_token1, - ACTIONS(1387), 1, - sym__identifier, - STATE(1911), 1, - sym_attribute, - STATE(2066), 1, - sym__value_name, - STATE(2091), 1, - sym_parenthesized_operator, - STATE(7583), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(829), 2, - anon_sym_true, - anon_sym_false, - STATE(2074), 2, - sym_extension, - sym_quoted_extension, - STATE(2090), 2, - sym__simple_expression, - sym__extension, - STATE(2141), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2132), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43667] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43737] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43807] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3902), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1914), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8397), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [43939] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3904), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1915), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44069] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(825), 1, - anon_sym_LPAREN, - ACTIONS(827), 1, - anon_sym_LBRACK, - ACTIONS(831), 1, - anon_sym_LBRACE, - ACTIONS(833), 1, - anon_sym_object, - ACTIONS(837), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(847), 1, - anon_sym_new, - ACTIONS(849), 1, - anon_sym_LBRACE_LT, - ACTIONS(851), 1, - anon_sym_begin, - ACTIONS(853), 1, - sym_ocamlyacc_value, - ACTIONS(855), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(857), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(859), 1, - aux_sym_number_token1, - ACTIONS(861), 1, - anon_sym_SQUOTE, - ACTIONS(863), 1, - anon_sym_DQUOTE, - ACTIONS(865), 1, - sym_prefix_operator, - ACTIONS(869), 1, - sym__capitalized_identifier, - ACTIONS(871), 1, - aux_sym_tag_token1, - ACTIONS(1387), 1, - sym__identifier, - STATE(1916), 1, - sym_attribute, - STATE(2066), 1, - sym__value_name, - STATE(2091), 1, - sym_parenthesized_operator, - STATE(7583), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(829), 2, - anon_sym_true, - anon_sym_false, - STATE(2074), 2, - sym_extension, - sym_quoted_extension, - STATE(2094), 2, - sym__simple_expression, - sym__extension, - STATE(2141), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2132), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44187] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3906), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1917), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44317] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(765), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_object, - ACTIONS(777), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(795), 1, - anon_sym_new, - ACTIONS(797), 1, - anon_sym_LBRACE_LT, - ACTIONS(799), 1, - anon_sym_begin, - ACTIONS(801), 1, - sym_ocamlyacc_value, - ACTIONS(803), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(805), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(807), 1, - aux_sym_number_token1, - ACTIONS(809), 1, - anon_sym_SQUOTE, - ACTIONS(811), 1, - anon_sym_DQUOTE, - ACTIONS(813), 1, - sym_prefix_operator, - ACTIONS(817), 1, - sym__capitalized_identifier, - ACTIONS(819), 1, - aux_sym_tag_token1, - ACTIONS(1353), 1, - sym__identifier, - STATE(1881), 1, - sym_parenthesized_operator, - STATE(1918), 1, - sym_attribute, - STATE(2020), 1, - sym__value_name, - STATE(7630), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(769), 2, - anon_sym_true, - anon_sym_false, - STATE(1875), 2, - sym__simple_expression, - sym__extension, - STATE(1988), 2, - sym_extension, - sym_quoted_extension, - STATE(1984), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1869), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44435] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(1919), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6468), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44565] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(765), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_object, - ACTIONS(777), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(795), 1, - anon_sym_new, - ACTIONS(797), 1, - anon_sym_LBRACE_LT, - ACTIONS(799), 1, - anon_sym_begin, - ACTIONS(801), 1, - sym_ocamlyacc_value, - ACTIONS(803), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(805), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(807), 1, - aux_sym_number_token1, - ACTIONS(809), 1, - anon_sym_SQUOTE, - ACTIONS(811), 1, - anon_sym_DQUOTE, - ACTIONS(813), 1, - sym_prefix_operator, - ACTIONS(817), 1, - sym__capitalized_identifier, - ACTIONS(819), 1, - aux_sym_tag_token1, - ACTIONS(1353), 1, - sym__identifier, - STATE(1881), 1, - sym_parenthesized_operator, - STATE(1920), 1, - sym_attribute, - STATE(2020), 1, - sym__value_name, - STATE(7630), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(769), 2, - anon_sym_true, - anon_sym_false, - STATE(1936), 2, - sym__simple_expression, - sym__extension, - STATE(1988), 2, - sym_extension, - sym_quoted_extension, - STATE(1984), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1869), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44683] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3908), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1921), 1, - sym_attribute, - STATE(5754), 1, - sym__binding_pattern_ext, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44813] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [44883] = 29, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(273), 1, - anon_sym_LBRACK, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_object, - ACTIONS(283), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(301), 1, - anon_sym_new, - ACTIONS(303), 1, - anon_sym_LBRACE_LT, - ACTIONS(305), 1, - anon_sym_begin, - ACTIONS(307), 1, - sym_ocamlyacc_value, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(311), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(313), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 1, - aux_sym_number_token1, - ACTIONS(317), 1, - anon_sym_SQUOTE, - ACTIONS(319), 1, - anon_sym_DQUOTE, - ACTIONS(321), 1, - sym_prefix_operator, - ACTIONS(325), 1, - sym__capitalized_identifier, - ACTIONS(327), 1, - aux_sym_tag_token1, - ACTIONS(1051), 1, - sym__identifier, - STATE(1295), 1, - sym_parenthesized_operator, - STATE(1393), 1, - sym__value_name, - STATE(1923), 1, - sym_attribute, - STATE(7674), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(275), 2, - anon_sym_true, - anon_sym_false, - STATE(1265), 2, - sym__simple_expression, - sym__extension, - STATE(1344), 2, - sym_extension, - sym_quoted_extension, - STATE(1391), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1356), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45001] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2359), 1, - sym__identifier, - ACTIONS(2361), 1, - anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(2371), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2373), 1, - anon_sym_new, - ACTIONS(2375), 1, - anon_sym_LBRACE_LT, - ACTIONS(2377), 1, - anon_sym_begin, - ACTIONS(2379), 1, - sym_ocamlyacc_value, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - anon_sym_SQUOTE, - ACTIONS(2389), 1, - anon_sym_DQUOTE, - ACTIONS(2391), 1, - sym_prefix_operator, - ACTIONS(2393), 1, - sym__capitalized_identifier, - ACTIONS(2395), 1, - aux_sym_tag_token1, - ACTIONS(3864), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3866), 1, - anon_sym_LBRACE_PERCENT, - STATE(1924), 1, - sym_attribute, - STATE(2951), 1, - sym__value_name, - STATE(3041), 1, - sym_parenthesized_operator, - STATE(7396), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2365), 2, - anon_sym_true, - anon_sym_false, - STATE(2945), 2, - sym__simple_expression, - sym__extension, - STATE(3072), 2, - sym_extension, - sym_quoted_extension, - STATE(2981), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2982), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45119] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1925), 1, - sym_attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2399), 2, - sym__simple_expression, - sym__extension, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45237] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [45307] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1927), 1, - sym_attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2398), 2, - sym__simple_expression, - sym__extension, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45425] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1928), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1167), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45543] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [45613] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(1930), 1, - sym_attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2333), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45731] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3910), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1931), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7983), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [45863] = 29, - ACTIONS(41), 1, - anon_sym_LPAREN, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(49), 1, - anon_sym_LBRACE, - ACTIONS(51), 1, - anon_sym_object, - ACTIONS(55), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(73), 1, - anon_sym_new, - ACTIONS(75), 1, - anon_sym_LBRACE_LT, - ACTIONS(77), 1, - anon_sym_begin, - ACTIONS(79), 1, - sym_ocamlyacc_value, - ACTIONS(87), 1, - aux_sym_number_token1, - ACTIONS(89), 1, - anon_sym_SQUOTE, - ACTIONS(91), 1, - anon_sym_DQUOTE, - ACTIONS(93), 1, - sym_prefix_operator, - ACTIONS(99), 1, - sym__capitalized_identifier, - ACTIONS(101), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(929), 1, - sym__identifier, - ACTIONS(1435), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1437), 1, - anon_sym_LBRACE_PERCENT, - STATE(1256), 1, - sym__value_name, - STATE(1296), 1, - sym_parenthesized_operator, - STATE(1932), 1, - sym_attribute, - STATE(7461), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(47), 2, - anon_sym_true, - anon_sym_false, - STATE(1305), 2, - sym__simple_expression, - sym__extension, - STATE(1392), 2, - sym_extension, - sym_quoted_extension, - STATE(1360), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1395), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45981] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1933), 1, - sym_attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2462), 2, - sym__simple_expression, - sym__extension, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [46099] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3738), 1, - sym__identifier, - ACTIONS(3740), 1, - anon_sym_LPAREN, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3746), 1, - anon_sym_LBRACE, - ACTIONS(3748), 1, - anon_sym_object, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3752), 1, - anon_sym_new, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(3756), 1, - anon_sym_begin, - ACTIONS(3758), 1, - sym_ocamlyacc_value, - ACTIONS(3760), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3762), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3764), 1, - aux_sym_number_token1, - ACTIONS(3766), 1, - anon_sym_SQUOTE, - ACTIONS(3768), 1, - anon_sym_DQUOTE, - ACTIONS(3770), 1, - sym_prefix_operator, - ACTIONS(3772), 1, - sym__capitalized_identifier, - ACTIONS(3774), 1, - aux_sym_tag_token1, - STATE(1934), 1, - sym_attribute, - STATE(2439), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(7841), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3744), 2, - anon_sym_true, - anon_sym_false, - STATE(2476), 2, - sym_extension, - sym_quoted_extension, - STATE(2484), 2, - sym__simple_expression, - sym__extension, - STATE(2436), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2497), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [46217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46287] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1357), 1, - anon_sym_DOT, - STATE(1936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46359] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46429] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46499] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46569] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46639] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46709] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46779] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46849] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46919] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46989] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3912), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1946), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8460), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47121] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47191] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3914), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1948), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7944), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47323] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2151), 1, - sym__identifier, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2165), 1, - anon_sym_LBRACE, - ACTIONS(2167), 1, - anon_sym_object, - ACTIONS(2169), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2171), 1, - anon_sym_new, - ACTIONS(2173), 1, - anon_sym_LBRACE_LT, - ACTIONS(2175), 1, - anon_sym_begin, - ACTIONS(2177), 1, - sym_ocamlyacc_value, - ACTIONS(2183), 1, - aux_sym_number_token1, - ACTIONS(2185), 1, - anon_sym_SQUOTE, - ACTIONS(2187), 1, - anon_sym_DQUOTE, - ACTIONS(2189), 1, - sym_prefix_operator, - ACTIONS(2191), 1, - sym__capitalized_identifier, - ACTIONS(2193), 1, - aux_sym_tag_token1, - ACTIONS(3916), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3918), 1, - anon_sym_LBRACE_PERCENT, - STATE(1949), 1, - sym_attribute, - STATE(2689), 1, - sym_parenthesized_operator, - STATE(2703), 1, - sym__value_name, - STATE(7718), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2163), 2, - anon_sym_true, - anon_sym_false, - STATE(2688), 2, - sym_extension, - sym_quoted_extension, - STATE(2765), 2, - sym__simple_expression, - sym__extension, - STATE(2736), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2760), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [47441] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3920), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1950), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [47571] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3922), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1951), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7613), 1, - sym__simple_typed, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47703] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(1952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47775] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47845] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1954), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2324), 2, - sym__simple_expression, - sym__extension, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [47963] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48033] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3924), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1956), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [48163] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48233] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48303] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3926), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(1959), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [48433] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48503] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - ACTIONS(3782), 1, - anon_sym_LPAREN, - ACTIONS(3786), 1, - anon_sym_LBRACE, - ACTIONS(3788), 1, - anon_sym_begin, - ACTIONS(3790), 1, - aux_sym_number_token1, - ACTIONS(3792), 1, - anon_sym_SQUOTE, - ACTIONS(3794), 1, - anon_sym_DQUOTE, - ACTIONS(3796), 1, - sym_prefix_operator, - STATE(1961), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(7395), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3784), 2, - anon_sym_true, - anon_sym_false, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(2471), 2, - sym__simple_expression, - sym__extension, - STATE(2400), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [48621] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3928), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1962), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8375), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [48753] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48823] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2359), 1, - sym__identifier, - ACTIONS(2361), 1, - anon_sym_LPAREN, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2367), 1, - anon_sym_LBRACE, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(2371), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2373), 1, - anon_sym_new, - ACTIONS(2375), 1, - anon_sym_LBRACE_LT, - ACTIONS(2377), 1, - anon_sym_begin, - ACTIONS(2379), 1, - sym_ocamlyacc_value, - ACTIONS(2385), 1, - aux_sym_number_token1, - ACTIONS(2387), 1, - anon_sym_SQUOTE, - ACTIONS(2389), 1, - anon_sym_DQUOTE, - ACTIONS(2391), 1, - sym_prefix_operator, - ACTIONS(2393), 1, - sym__capitalized_identifier, - ACTIONS(2395), 1, - aux_sym_tag_token1, - ACTIONS(3864), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3866), 1, - anon_sym_LBRACE_PERCENT, - STATE(1964), 1, - sym_attribute, - STATE(2951), 1, - sym__value_name, - STATE(3041), 1, - sym_parenthesized_operator, - STATE(7396), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2365), 2, - anon_sym_true, - anon_sym_false, - STATE(2955), 2, - sym__simple_expression, - sym__extension, - STATE(3072), 2, - sym_extension, - sym_quoted_extension, - STATE(2981), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2982), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [48941] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(357), 1, - anon_sym_LPAREN, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(363), 1, - anon_sym_LBRACE, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(387), 1, - anon_sym_new, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(391), 1, - anon_sym_begin, - ACTIONS(393), 1, - sym_ocamlyacc_value, - ACTIONS(399), 1, - aux_sym_number_token1, - ACTIONS(401), 1, - anon_sym_SQUOTE, - ACTIONS(403), 1, - anon_sym_DQUOTE, - ACTIONS(405), 1, - sym_prefix_operator, - ACTIONS(409), 1, - sym__capitalized_identifier, - ACTIONS(411), 1, - aux_sym_tag_token1, - ACTIONS(431), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(433), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1037), 1, - sym__identifier, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1203), 1, - sym__value_name, - STATE(1965), 1, - sym_attribute, - STATE(7658), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(361), 2, - anon_sym_true, - anon_sym_false, - STATE(1147), 2, - sym__simple_expression, - sym__extension, - STATE(1238), 2, - sym_extension, - sym_quoted_extension, - STATE(1158), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1177), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [49059] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49129] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49269] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49339] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49409] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1101), 1, - sym__binding_pattern_ext, - STATE(1971), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4909), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [49539] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2694), 1, - sym__identifier, - ACTIONS(2698), 1, - anon_sym_LPAREN, - ACTIONS(2700), 1, - anon_sym_LBRACK, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(2708), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2710), 1, - anon_sym_new, - ACTIONS(2712), 1, - anon_sym_LBRACE_LT, - ACTIONS(2714), 1, - anon_sym_begin, - ACTIONS(2716), 1, - sym_ocamlyacc_value, - ACTIONS(2722), 1, - aux_sym_number_token1, - ACTIONS(2724), 1, - anon_sym_SQUOTE, - ACTIONS(2726), 1, - anon_sym_DQUOTE, - ACTIONS(2728), 1, - sym_prefix_operator, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3872), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACE_PERCENT, - STATE(1972), 1, - sym_attribute, - STATE(3337), 1, - sym__value_name, - STATE(3432), 1, - sym_parenthesized_operator, - STATE(7525), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2702), 2, - anon_sym_true, - anon_sym_false, - STATE(3271), 2, - sym__simple_expression, - sym__extension, - STATE(3427), 2, - sym_extension, - sym_quoted_extension, - STATE(3386), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3454), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [49657] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3930), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1973), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [49787] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(3538), 1, - anon_sym_LPAREN, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3542), 1, - anon_sym_LBRACE, - ACTIONS(3544), 1, - anon_sym_object, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3548), 1, - anon_sym_new, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(3552), 1, - anon_sym_begin, - ACTIONS(3554), 1, - sym_ocamlyacc_value, - ACTIONS(3556), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3558), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3560), 1, - sym_prefix_operator, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(3780), 1, - sym__identifier, - STATE(1974), 1, - sym_attribute, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2285), 1, - sym__value_name, - STATE(8002), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - STATE(2324), 2, - sym__simple_expression, - sym__extension, - STATE(2349), 2, - sym_extension, - sym_quoted_extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2273), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [49905] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49975] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50045] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50115] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50185] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3932), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1979), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7820), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [50317] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50387] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50457] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50527] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50597] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50667] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50737] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(1986), 1, - sym_attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3272), 2, - sym__simple_expression, - sym__extension, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [50855] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3934), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1987), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8036), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [50987] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51057] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1101), 1, - sym__binding_pattern_ext, - STATE(1989), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4824), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [51187] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(1990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51259] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3936), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(1991), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8282), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [51391] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51461] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51531] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51601] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51671] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51741] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51811] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3938), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(1998), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [51941] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2319), 1, - sym__identifier, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2325), 1, - anon_sym_LBRACK, - ACTIONS(2329), 1, - anon_sym_LBRACE, - ACTIONS(2331), 1, - anon_sym_object, - ACTIONS(2333), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2335), 1, - anon_sym_new, - ACTIONS(2337), 1, - anon_sym_LBRACE_LT, - ACTIONS(2339), 1, - anon_sym_begin, - ACTIONS(2341), 1, - sym_ocamlyacc_value, - ACTIONS(2347), 1, - aux_sym_number_token1, - ACTIONS(2349), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_DQUOTE, - ACTIONS(2353), 1, - sym_prefix_operator, - ACTIONS(2355), 1, - sym__capitalized_identifier, - ACTIONS(2357), 1, - aux_sym_tag_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3896), 1, - anon_sym_LBRACE_PERCENT, - STATE(1999), 1, - sym_attribute, - STATE(2916), 1, - sym__value_name, - STATE(2939), 1, - sym_parenthesized_operator, - STATE(7802), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2327), 2, - anon_sym_true, - anon_sym_false, - STATE(2868), 2, - sym__simple_expression, - sym__extension, - STATE(2919), 2, - sym_extension, - sym_quoted_extension, - STATE(2889), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2846), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [52059] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3940), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2000), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [52189] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2319), 1, - sym__identifier, - ACTIONS(2323), 1, - anon_sym_LPAREN, - ACTIONS(2325), 1, - anon_sym_LBRACK, - ACTIONS(2329), 1, - anon_sym_LBRACE, - ACTIONS(2331), 1, - anon_sym_object, - ACTIONS(2333), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2335), 1, - anon_sym_new, - ACTIONS(2337), 1, - anon_sym_LBRACE_LT, - ACTIONS(2339), 1, - anon_sym_begin, - ACTIONS(2341), 1, - sym_ocamlyacc_value, - ACTIONS(2347), 1, - aux_sym_number_token1, - ACTIONS(2349), 1, - anon_sym_SQUOTE, - ACTIONS(2351), 1, - anon_sym_DQUOTE, - ACTIONS(2353), 1, - sym_prefix_operator, - ACTIONS(2355), 1, - sym__capitalized_identifier, - ACTIONS(2357), 1, - aux_sym_tag_token1, - ACTIONS(3894), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3896), 1, - anon_sym_LBRACE_PERCENT, - STATE(2001), 1, - sym_attribute, - STATE(2916), 1, - sym__value_name, - STATE(2939), 1, - sym_parenthesized_operator, - STATE(7802), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2327), 2, - anon_sym_true, - anon_sym_false, - STATE(2860), 2, - sym__simple_expression, - sym__extension, - STATE(2919), 2, - sym_extension, - sym_quoted_extension, - STATE(2889), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2846), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [52307] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3942), 1, - anon_sym_LT_DASH, - STATE(2002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52379] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3944), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2003), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(8148), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [52511] = 29, - ACTIONS(271), 1, - anon_sym_LPAREN, - ACTIONS(273), 1, - anon_sym_LBRACK, - ACTIONS(277), 1, - anon_sym_LBRACE, - ACTIONS(279), 1, - anon_sym_object, - ACTIONS(283), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(301), 1, - anon_sym_new, - ACTIONS(303), 1, - anon_sym_LBRACE_LT, - ACTIONS(305), 1, - anon_sym_begin, - ACTIONS(307), 1, - sym_ocamlyacc_value, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(311), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(313), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(315), 1, - aux_sym_number_token1, - ACTIONS(317), 1, - anon_sym_SQUOTE, - ACTIONS(319), 1, - anon_sym_DQUOTE, - ACTIONS(321), 1, - sym_prefix_operator, - ACTIONS(325), 1, - sym__capitalized_identifier, - ACTIONS(327), 1, - aux_sym_tag_token1, - ACTIONS(1051), 1, - sym__identifier, - STATE(1295), 1, - sym_parenthesized_operator, - STATE(1393), 1, - sym__value_name, - STATE(2004), 1, - sym_attribute, - STATE(7674), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(275), 2, - anon_sym_true, - anon_sym_false, - STATE(1344), 2, - sym_extension, - sym_quoted_extension, - STATE(2199), 2, - sym__simple_expression, - sym__extension, - STATE(1391), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1356), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [52629] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3946), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2005), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [52759] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52829] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52899] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52969] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53039] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3660), 1, - sym__identifier, - ACTIONS(3662), 1, - anon_sym_LPAREN, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3668), 1, - anon_sym_LBRACE, - ACTIONS(3670), 1, - anon_sym_object, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3674), 1, - anon_sym_new, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(3678), 1, - anon_sym_begin, - ACTIONS(3680), 1, - sym_ocamlyacc_value, - ACTIONS(3682), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3684), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3688), 1, - aux_sym_number_token1, - ACTIONS(3690), 1, - anon_sym_SQUOTE, - ACTIONS(3692), 1, - anon_sym_DQUOTE, - ACTIONS(3694), 1, - sym_prefix_operator, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(3698), 1, - aux_sym_tag_token1, - STATE(2010), 1, - sym_attribute, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3331), 1, - sym__value_name, - STATE(7761), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3666), 2, - anon_sym_true, - anon_sym_false, - STATE(3273), 2, - sym__simple_expression, - sym__extension, - STATE(3406), 2, - sym_extension, - sym_quoted_extension, - STATE(3293), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3388), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53157] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53227] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3948), 1, - anon_sym_LT_DASH, - STATE(2012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53299] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3700), 1, - sym__identifier, - ACTIONS(3702), 1, - anon_sym_LPAREN, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3708), 1, - anon_sym_LBRACE, - ACTIONS(3710), 1, - anon_sym_object, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3714), 1, - anon_sym_new, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(3718), 1, - anon_sym_begin, - ACTIONS(3720), 1, - sym_ocamlyacc_value, - ACTIONS(3722), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3724), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3726), 1, - aux_sym_number_token1, - ACTIONS(3728), 1, - anon_sym_SQUOTE, - ACTIONS(3730), 1, - anon_sym_DQUOTE, - ACTIONS(3732), 1, - sym_prefix_operator, - ACTIONS(3734), 1, - sym__capitalized_identifier, - ACTIONS(3736), 1, - aux_sym_tag_token1, - STATE(2013), 1, - sym_attribute, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2294), 1, - sym__value_name, - STATE(7781), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3706), 2, - anon_sym_true, - anon_sym_false, - STATE(2278), 2, - sym_extension, - sym_quoted_extension, - STATE(2375), 2, - sym__simple_expression, - sym__extension, - STATE(2355), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2370), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53417] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53487] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53557] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3950), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2016), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [53687] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(1101), 1, - sym__binding_pattern_ext, - STATE(2017), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(4826), 1, - sym_let_binding, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [53817] = 29, - ACTIONS(123), 1, - anon_sym_LPAREN, - ACTIONS(125), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(131), 1, - anon_sym_object, - ACTIONS(135), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(145), 1, - anon_sym_new, - ACTIONS(147), 1, - anon_sym_LBRACE_LT, - ACTIONS(149), 1, - anon_sym_begin, - ACTIONS(151), 1, - sym_ocamlyacc_value, - ACTIONS(157), 1, - aux_sym_number_token1, - ACTIONS(159), 1, - anon_sym_SQUOTE, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(163), 1, - sym_prefix_operator, - ACTIONS(167), 1, - sym__capitalized_identifier, - ACTIONS(169), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1013), 1, - sym__identifier, - ACTIONS(1439), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1441), 1, - anon_sym_LBRACE_PERCENT, - STATE(1446), 1, - sym__value_name, - STATE(1478), 1, - sym_parenthesized_operator, - STATE(2018), 1, - sym_attribute, - STATE(8317), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(127), 2, - anon_sym_true, - anon_sym_false, - STATE(1473), 2, - sym_extension, - sym_quoted_extension, - STATE(1484), 2, - sym__simple_expression, - sym__extension, - STATE(1454), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1496), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53935] = 29, - ACTIONS(123), 1, - anon_sym_LPAREN, - ACTIONS(125), 1, - anon_sym_LBRACK, - ACTIONS(129), 1, - anon_sym_LBRACE, - ACTIONS(131), 1, - anon_sym_object, - ACTIONS(135), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(145), 1, - anon_sym_new, - ACTIONS(147), 1, - anon_sym_LBRACE_LT, - ACTIONS(149), 1, - anon_sym_begin, - ACTIONS(151), 1, - sym_ocamlyacc_value, - ACTIONS(157), 1, - aux_sym_number_token1, - ACTIONS(159), 1, - anon_sym_SQUOTE, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(163), 1, - sym_prefix_operator, - ACTIONS(167), 1, - sym__capitalized_identifier, - ACTIONS(169), 1, - aux_sym_tag_token1, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1013), 1, - sym__identifier, - ACTIONS(1439), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1441), 1, - anon_sym_LBRACE_PERCENT, - STATE(1446), 1, - sym__value_name, - STATE(1478), 1, - sym_parenthesized_operator, - STATE(2019), 1, - sym_attribute, - STATE(8317), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(127), 2, - anon_sym_true, - anon_sym_false, - STATE(1466), 2, - sym__simple_expression, - sym__extension, - STATE(1473), 2, - sym_extension, - sym_quoted_extension, - STATE(1454), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1496), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [54053] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54123] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54193] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54263] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54333] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - ACTIONS(3952), 1, - anon_sym_PIPE_RBRACK, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2024), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [54463] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - ACTIONS(3954), 1, - anon_sym_RBRACK, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2025), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [54593] = 35, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(1512), 1, - sym__binding_pattern_ext, - STATE(2026), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(6305), 1, - sym_let_binding, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [54723] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54933] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3956), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2030), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7960), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [55065] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55135] = 36, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3834), 1, - anon_sym_COLON2, - ACTIONS(3958), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2032), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - STATE(7981), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [55267] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(765), 1, - anon_sym_LPAREN, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - anon_sym_object, - ACTIONS(777), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(795), 1, - anon_sym_new, - ACTIONS(797), 1, - anon_sym_LBRACE_LT, - ACTIONS(799), 1, - anon_sym_begin, - ACTIONS(801), 1, - sym_ocamlyacc_value, - ACTIONS(803), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(805), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(807), 1, - aux_sym_number_token1, - ACTIONS(809), 1, - anon_sym_SQUOTE, - ACTIONS(811), 1, - anon_sym_DQUOTE, - ACTIONS(813), 1, - sym_prefix_operator, - ACTIONS(817), 1, - sym__capitalized_identifier, - ACTIONS(819), 1, - aux_sym_tag_token1, - ACTIONS(1353), 1, - sym__identifier, - STATE(1881), 1, - sym_parenthesized_operator, - STATE(2020), 1, - sym__value_name, - STATE(2033), 1, - sym_attribute, - STATE(7630), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(769), 2, - anon_sym_true, - anon_sym_false, - STATE(1842), 2, - sym__simple_expression, - sym__extension, - STATE(1988), 2, - sym_extension, - sym_quoted_extension, - STATE(1984), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1869), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55385] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55455] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2151), 1, - sym__identifier, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2165), 1, - anon_sym_LBRACE, - ACTIONS(2167), 1, - anon_sym_object, - ACTIONS(2169), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2171), 1, - anon_sym_new, - ACTIONS(2173), 1, - anon_sym_LBRACE_LT, - ACTIONS(2175), 1, - anon_sym_begin, - ACTIONS(2177), 1, - sym_ocamlyacc_value, - ACTIONS(2183), 1, - aux_sym_number_token1, - ACTIONS(2185), 1, - anon_sym_SQUOTE, - ACTIONS(2187), 1, - anon_sym_DQUOTE, - ACTIONS(2189), 1, - sym_prefix_operator, - ACTIONS(2191), 1, - sym__capitalized_identifier, - ACTIONS(2193), 1, - aux_sym_tag_token1, - ACTIONS(3916), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3918), 1, - anon_sym_LBRACE_PERCENT, - STATE(2035), 1, - sym_attribute, - STATE(2689), 1, - sym_parenthesized_operator, - STATE(2703), 1, - sym__value_name, - STATE(7718), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2163), 2, - anon_sym_true, - anon_sym_false, - STATE(2688), 2, - sym_extension, - sym_quoted_extension, - STATE(2754), 2, - sym__simple_expression, - sym__extension, - STATE(2736), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2760), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55573] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2151), 1, - sym__identifier, - ACTIONS(2159), 1, - anon_sym_LPAREN, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2165), 1, - anon_sym_LBRACE, - ACTIONS(2167), 1, - anon_sym_object, - ACTIONS(2169), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2171), 1, - anon_sym_new, - ACTIONS(2173), 1, - anon_sym_LBRACE_LT, - ACTIONS(2175), 1, - anon_sym_begin, - ACTIONS(2177), 1, - sym_ocamlyacc_value, - ACTIONS(2183), 1, - aux_sym_number_token1, - ACTIONS(2185), 1, - anon_sym_SQUOTE, - ACTIONS(2187), 1, - anon_sym_DQUOTE, - ACTIONS(2189), 1, - sym_prefix_operator, - ACTIONS(2191), 1, - sym__capitalized_identifier, - ACTIONS(2193), 1, - aux_sym_tag_token1, - ACTIONS(3916), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3918), 1, - anon_sym_LBRACE_PERCENT, - STATE(2036), 1, - sym_attribute, - STATE(2689), 1, - sym_parenthesized_operator, - STATE(2703), 1, - sym__value_name, - STATE(7718), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2163), 2, - anon_sym_true, - anon_sym_false, - STATE(2688), 2, - sym_extension, - sym_quoted_extension, - STATE(2738), 2, - sym__simple_expression, - sym__extension, - STATE(2736), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2760), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55691] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55760] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55829] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(2039), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5879), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [55956] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(2040), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5923), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [56083] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [56152] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1883), 1, - aux_sym_let_binding_repeat1, - STATE(2042), 1, - sym_attribute, - STATE(2186), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [56279] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [56348] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(2044), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5862), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [56475] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(2045), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3854), 1, - sym__binding_pattern_ext, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [56602] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(2046), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(3885), 1, - sym__binding_pattern_ext, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [56729] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [56798] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1948), 1, - aux_sym_let_binding_repeat1, - STATE(2048), 1, - sym_attribute, - STATE(2201), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [56925] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2049), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5897), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57052] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(2050), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(3880), 1, - sym__binding_pattern_ext, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57179] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1850), 1, - aux_sym_let_binding_repeat1, - STATE(2051), 1, - sym_attribute, - STATE(2183), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [57306] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3254), 1, - sym__identifier, - ACTIONS(3256), 1, - anon_sym_LPAREN, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3264), 1, - anon_sym_LBRACE, - ACTIONS(3266), 1, - anon_sym_POUND, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3270), 1, - anon_sym_lazy, - ACTIONS(3272), 1, - anon_sym_begin, - ACTIONS(3274), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3276), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(3284), 1, - sym__capitalized_identifier, - ACTIONS(3286), 1, - aux_sym_tag_token1, - STATE(1508), 1, - sym_constructor_path, - STATE(1509), 1, - sym_tag, - STATE(2052), 1, - sym_attribute, - STATE(3826), 1, - sym__signed_constant, - STATE(3836), 1, - sym_record_binding_pattern, - STATE(3840), 1, - sym_list_binding_pattern, - STATE(3841), 1, - sym_array_binding_pattern, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(3872), 1, - sym__binding_pattern_ext, - STATE(7402), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3262), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3845), 2, - sym_extension, - sym_quoted_extension, - STATE(3861), 2, - sym__binding_pattern, - sym__extension, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3848), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57433] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57502] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1890), 1, - aux_sym_let_binding_repeat1, - STATE(2054), 1, - sym_attribute, - STATE(2205), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [57629] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57698] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2031), 1, - anon_sym_lazy, - ACTIONS(3212), 1, - anon_sym_POUND, - STATE(1611), 1, - sym_tag, - STATE(1612), 1, - sym_constructor_path, - STATE(2056), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5542), 1, - sym__binding_pattern_ext, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57825] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57894] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57963] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1962), 1, - aux_sym_let_binding_repeat1, - STATE(2059), 1, - sym_attribute, - STATE(2189), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [58090] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58159] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58228] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58297] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58366] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58435] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58504] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58573] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1846), 1, - aux_sym_let_binding_repeat1, - STATE(2067), 1, - sym_attribute, - STATE(2163), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [58700] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2068), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5999), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58827] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(2069), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2542), 1, - sym__binding_pattern_ext, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58954] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(2070), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2536), 1, - sym__binding_pattern_ext, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [59081] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(2071), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2534), 1, - sym__binding_pattern_ext, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [59208] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59277] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59346] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59415] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - sym__identifier, - ACTIONS(2065), 1, - anon_sym_LPAREN, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2073), 1, - anon_sym_LBRACE, - ACTIONS(2075), 1, - anon_sym_POUND, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2079), 1, - anon_sym_lazy, - ACTIONS(2081), 1, - anon_sym_begin, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(2093), 1, - sym__capitalized_identifier, - ACTIONS(2095), 1, - aux_sym_tag_token1, - ACTIONS(3458), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3460), 1, - anon_sym_LBRACE_PERCENT, - STATE(1099), 1, - sym_constructor_path, - STATE(1100), 1, - sym_tag, - STATE(2075), 1, - sym_attribute, - STATE(2518), 1, - sym__signed_constant, - STATE(2522), 1, - sym_record_binding_pattern, - STATE(2532), 1, - sym__binding_pattern_ext, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2550), 1, - sym_array_binding_pattern, - STATE(2554), 1, - sym_list_binding_pattern, - STATE(8194), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2071), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2562), 2, - sym__binding_pattern, - sym__extension, - STATE(2566), 2, - sym_extension, - sym_quoted_extension, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2556), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [59542] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2076), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5992), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [59669] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59738] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(2032), 1, - aux_sym_let_binding_repeat1, - STATE(2078), 1, - sym_attribute, - STATE(2171), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [59865] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59934] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60003] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60072] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60141] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2083), 1, - sym_attribute, - STATE(2198), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [60268] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60337] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60406] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60475] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60544] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60613] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60682] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60751] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60820] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60889] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60958] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1391), 1, - anon_sym_DOT, - ACTIONS(1393), 1, - anon_sym_POUND, - ACTIONS(1397), 1, - sym_hash_operator, - STATE(2094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61033] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61102] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61171] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61240] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61309] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61378] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61447] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61516] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61585] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61654] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61723] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61792] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61861] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61932] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62001] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62070] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62139] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1987), 1, - aux_sym_let_binding_repeat1, - STATE(2111), 1, - sym_attribute, - STATE(2174), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [62266] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1391), 1, - anon_sym_DOT, - STATE(2112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62337] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62406] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62475] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62544] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62613] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62682] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62751] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62820] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62889] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62960] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1903), 1, - aux_sym_let_binding_repeat1, - STATE(2122), 1, - sym_attribute, - STATE(2203), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [63087] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63156] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63225] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63294] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63363] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63432] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1914), 1, - aux_sym_let_binding_repeat1, - STATE(2128), 1, - sym_attribute, - STATE(2164), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [63559] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2129), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5789), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [63686] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63755] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1882), 1, - aux_sym_let_binding_repeat1, - STATE(2131), 1, - sym_attribute, - STATE(2172), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [63882] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63951] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2133), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(6000), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64078] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2134), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5788), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64205] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2135), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5981), 1, - sym__binding_pattern_ext, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64332] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2136), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(5786), 1, - sym__binding_pattern_ext, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64459] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1737), 1, - anon_sym_begin, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2023), 1, - anon_sym_LPAREN, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2027), 1, - anon_sym_LBRACE, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3406), 1, - anon_sym_POUND, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3492), 1, - sym__identifier, - ACTIONS(3494), 1, - anon_sym_lazy, - STATE(1555), 1, - sym_constructor_path, - STATE(1558), 1, - sym_tag, - STATE(2137), 1, - sym_attribute, - STATE(5513), 1, - sym__signed_constant, - STATE(5525), 1, - sym_array_binding_pattern, - STATE(5542), 1, - sym__binding_pattern_ext, - STATE(5566), 1, - sym_record_binding_pattern, - STATE(5568), 1, - sym_list_binding_pattern, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(7893), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1721), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5563), 2, - sym__binding_pattern, - sym__extension, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5564), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64586] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64655] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1391), 1, - anon_sym_DOT, - ACTIONS(1393), 1, - anon_sym_POUND, - ACTIONS(1397), 1, - sym_hash_operator, - STATE(2139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64730] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64799] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64868] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3454), 1, - anon_sym_PERCENT, - STATE(1848), 1, - aux_sym_let_binding_repeat1, - STATE(2142), 1, - sym_attribute, - STATE(2162), 1, - sym__attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [64995] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2143), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5983), 1, - sym__binding_pattern_ext, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [65122] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65191] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2145), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5995), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [65318] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2730), 1, - sym__capitalized_identifier, - ACTIONS(2732), 1, - aux_sym_tag_token1, - ACTIONS(3428), 1, - anon_sym_POUND, - ACTIONS(3434), 1, - anon_sym_begin, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(3502), 1, - sym__identifier, - ACTIONS(3504), 1, - anon_sym_LPAREN, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3508), 1, - anon_sym_LBRACE, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3512), 1, - anon_sym_lazy, - STATE(1592), 1, - sym_tag, - STATE(1594), 1, - sym_constructor_path, - STATE(2146), 1, - sym_attribute, - STATE(5785), 1, - sym__signed_constant, - STATE(5828), 1, - sym_record_binding_pattern, - STATE(5829), 1, - sym_list_binding_pattern, - STATE(5830), 1, - sym_array_binding_pattern, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5987), 1, - sym__binding_pattern_ext, - STATE(7740), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3422), 2, - anon_sym_true, - anon_sym_false, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5826), 2, - sym__binding_pattern, - sym__extension, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(5827), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [65445] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65514] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3960), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2148), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [65640] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3966), 1, - aux_sym_attribute_id_token1, - STATE(2149), 1, - sym_attribute, - STATE(2160), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3964), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3962), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [65712] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3968), 1, - anon_sym_COLON, - STATE(2150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65782] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3970), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2151), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [65908] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3972), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2152), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [66034] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3974), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2153), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [66160] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3976), 1, - anon_sym_LT_DASH, - STATE(2154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66230] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3978), 1, - anon_sym_LT_DASH, - STATE(2155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 32, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66300] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3980), 1, - anon_sym_LT_DASH, - STATE(2156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 32, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66370] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2113), 1, - anon_sym_PLUS, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3832), 1, - anon_sym_DASH, - ACTIONS(3982), 1, - anon_sym_DASH_GT, - STATE(1510), 1, - aux_sym_let_binding_repeat1, - STATE(2157), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [66496] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3180), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3178), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66564] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3984), 1, - anon_sym_LT_DASH, - STATE(2159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66634] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3990), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2160), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(3988), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3986), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [66704] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3966), 1, - aux_sym_attribute_id_token1, - STATE(2149), 1, - aux_sym_attribute_id_repeat1, - STATE(2161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3995), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3993), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [66776] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1855), 1, - aux_sym_let_binding_repeat1, - STATE(2162), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [66897] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1863), 1, - aux_sym_let_binding_repeat1, - STATE(2163), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67018] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1867), 1, - aux_sym_let_binding_repeat1, - STATE(2164), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67139] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(931), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [67238] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(3999), 1, - sym__rel_operator, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 7, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(931), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [67333] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [67424] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [67515] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2152), 1, - aux_sym_let_binding_repeat1, - STATE(2169), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67636] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [67725] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2030), 1, - aux_sym_let_binding_repeat1, - STATE(2171), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67846] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1889), 1, - aux_sym_let_binding_repeat1, - STATE(2172), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67967] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [68046] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2003), 1, - aux_sym_let_binding_repeat1, - STATE(2174), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [68167] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 23, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [68252] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [68333] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2157), 1, - aux_sym_let_binding_repeat1, - STATE(2177), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [68454] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2153), 1, - aux_sym_let_binding_repeat1, - STATE(2178), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [68575] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2148), 1, - aux_sym_let_binding_repeat1, - STATE(2179), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [68696] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(931), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [68799] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(971), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(969), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [68902] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(2151), 1, - aux_sym_let_binding_repeat1, - STATE(2182), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [69023] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1895), 1, - aux_sym_let_binding_repeat1, - STATE(2183), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [69144] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [69225] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(979), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(977), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [69328] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1951), 1, - aux_sym_let_binding_repeat1, - STATE(2186), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [69449] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4003), 1, - anon_sym_COLON, - STATE(2187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69518] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(999), 1, - anon_sym_SEMI, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3654), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(3652), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [69623] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1991), 1, - aux_sym_let_binding_repeat1, - STATE(2189), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [69744] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4005), 1, - anon_sym_LT_DASH, - STATE(2190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69813] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(987), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(985), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [69916] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4007), 1, - anon_sym_LT_DASH, - STATE(2192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69985] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3180), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3178), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3988), 22, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - ACTIONS(3986), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [70119] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(993), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(991), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [70218] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3196), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3194), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70285] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(961), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(959), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [70388] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1866), 1, - aux_sym_let_binding_repeat1, - STATE(2198), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [70509] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1055), 1, - anon_sym_DOT, - ACTIONS(1057), 1, - anon_sym_POUND, - ACTIONS(1059), 1, - sym_hash_operator, - STATE(2199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70582] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70649] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1979), 1, - aux_sym_let_binding_repeat1, - STATE(2201), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [70770] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1055), 1, - anon_sym_DOT, - ACTIONS(1057), 1, - anon_sym_POUND, - ACTIONS(1059), 1, - sym_hash_operator, - STATE(2202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70843] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1946), 1, - aux_sym_let_binding_repeat1, - STATE(2203), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [70964] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3192), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3190), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71031] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2109), 1, - anon_sym_LPAREN, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - STATE(1908), 1, - aux_sym_let_binding_repeat1, - STATE(2205), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3574), 1, - sym__parameter, - STATE(3577), 1, - sym__simple_pattern_ext, - STATE(7478), 1, - sym__label, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2107), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3575), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [71152] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2871), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [71218] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [71320] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4013), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2208), 2, - sym_attribute, - aux_sym__structure_repeat1, - ACTIONS(4016), 19, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4011), 30, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [71388] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(1009), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3654), 4, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [71492] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3192), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3190), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71558] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 13, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 23, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [71642] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [71722] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2847), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [71790] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [71870] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71936] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(2216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3196), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3194), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72002] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2867), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_tag_token1, - [72146] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 19, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2803), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [72212] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72310] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(993), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(991), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72408] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72496] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72586] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 19, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2853), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [72652] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2913), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [72718] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3119), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [72786] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(987), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(985), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72888] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(931), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [72982] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [73072] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(961), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(959), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [73174] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(971), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(969), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [73276] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(979), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(977), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [73378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3113), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3115), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [73443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2891), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2893), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2634), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2636), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2626), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2628), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73638] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3105), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3107), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73703] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3071), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2650), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2652), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73833] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2658), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2660), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73898] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3085), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3087), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [73963] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2594), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2596), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74028] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2604), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2606), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2614), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2616), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2979), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2981), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74223] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2803), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [74288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2975), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2977), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74353] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2853), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [74418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2740), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74483] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3101), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3103), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3089), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3091), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74613] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3001), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3003), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74678] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2646), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [74743] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2809), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [74808] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2997), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2999), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74873] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2971), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2973), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [74938] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3075), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75003] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2662), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2664), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75068] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2740), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75133] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3083), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75198] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2670), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2672), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75263] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75328] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2674), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2676), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75393] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2815), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2817), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2903), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75523] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2867), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2941), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75653] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(951), 1, - anon_sym_COLON_COLON, - ACTIONS(955), 1, - sym__concat_operator, - ACTIONS(963), 1, - anon_sym_COMMA, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1011), 1, - anon_sym_SEMI, - ACTIONS(3999), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(1002), 1, - sym__pow_operator, - STATE(1007), 1, - sym__mult_operator, - STATE(1012), 1, - sym__add_operator, - STATE(1014), 1, - sym__and_operator, - STATE(1022), 1, - sym__or_operator, - STATE(1055), 1, - sym__assign_operator, - STATE(2268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3654), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75756] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3105), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3107), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [75821] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2907), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2909), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75886] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2915), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2917), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [75951] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2927), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2929), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76016] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2835), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2837), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76081] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2552), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2554), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76146] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2654), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2656), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76211] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2951), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2953), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76276] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2959), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2961), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76341] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2985), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2987), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76471] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2847), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76538] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3101), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76603] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2915), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2917), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76668] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2949), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76733] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2871), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76798] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2923), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2925), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [76863] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76930] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2899), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [76995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2931), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2913), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77125] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4022), 1, - anon_sym_DOT, - ACTIONS(4024), 1, - anon_sym_POUND, - ACTIONS(4026), 1, - sym_hash_operator, - STATE(2290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4020), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4018), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2861), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2863), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [77261] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4022), 1, - anon_sym_DOT, - ACTIONS(4024), 1, - anon_sym_POUND, - ACTIONS(4026), 1, - sym_hash_operator, - STATE(2292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4030), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4028), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77332] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2831), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2833), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77397] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2923), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2925), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77462] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2935), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2937), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77527] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2618), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2620), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77592] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2634), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2636), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77657] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2941), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [77722] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2626), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2628), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77787] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77852] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2650), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2652), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77917] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2658), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2660), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [77982] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3085), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3087), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78047] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2594), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78112] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2899), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2901), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78177] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2618), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2620), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78242] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2604), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2606), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78307] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2680), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2682), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3113), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3115), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78437] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2614), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2616), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2979), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2981), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78567] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2975), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2977), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78632] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2831), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2833), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78697] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2841), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2843), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78762] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3089), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3091), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78827] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2815), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2817), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [78892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3001), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3003), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [78957] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2997), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2999), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2971), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2973), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79087] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2662), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2664), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79152] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2879), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2881), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [79217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2967), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2969), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [79282] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2670), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2672), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79347] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2991), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2993), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [79412] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2857), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79477] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2676), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79542] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2907), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2909), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79607] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2927), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2929), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2951), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2953), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79737] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2959), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2961), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79802] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2985), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79867] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2891), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2893), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79932] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4022), 1, - anon_sym_DOT, - STATE(2333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2823), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2825), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [79999] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2827), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2654), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2656), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80129] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2813), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2861), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2863), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80259] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2883), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2885), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2919), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2921), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2827), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2829), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [80454] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2600), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2602), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [80519] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2943), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2945), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80584] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2821), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80649] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4032), 1, - anon_sym_COLON, - STATE(2344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [80716] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2622), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80781] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2955), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2957), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80846] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2963), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2965), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [80911] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2809), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [80976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3079), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81041] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4022), 1, - anon_sym_DOT, - ACTIONS(4024), 1, - anon_sym_POUND, - ACTIONS(4026), 1, - sym_hash_operator, - STATE(2350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4036), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4034), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81112] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4022), 1, - anon_sym_DOT, - ACTIONS(4024), 1, - anon_sym_POUND, - ACTIONS(4026), 1, - sym_hash_operator, - STATE(2351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4040), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4038), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81183] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2646), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81248] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3099), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81313] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3007), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2736), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2744), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4044), 20, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4042), 30, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [81573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2690), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81638] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2686), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81703] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2963), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2965), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2955), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2957), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81833] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2889), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [81898] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2935), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2937), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81963] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3095), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82028] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2903), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2905), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2943), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2945), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2931), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2933), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82223] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2602), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2919), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2921), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82353] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2835), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2837), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2680), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2682), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82483] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2841), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2843), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2879), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2881), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82613] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2967), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82678] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2991), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2993), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82743] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2875), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82808] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2883), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2885), 32, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82873] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2744), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [82937] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2686), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [83001] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(987), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [83101] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1001), 1, - anon_sym_COMMA, - ACTIONS(1003), 1, - anon_sym_COLON_COLON, - ACTIONS(1005), 1, - sym__concat_operator, - ACTIONS(1033), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4009), 1, - sym__rel_operator, - STATE(931), 1, - sym__assign_operator, - STATE(933), 1, - sym__or_operator, - STATE(934), 1, - sym__and_operator, - STATE(937), 1, - sym__add_operator, - STATE(939), 1, - sym__mult_operator, - STATE(940), 1, - sym__pow_operator, - STATE(2381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3654), 3, - anon_sym_let, - anon_sym_and, - anon_sym_LBRACK_AT_AT, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83203] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4048), 1, - anon_sym_DOT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - sym_hash_operator, - STATE(2382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4020), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4018), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [83273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2821), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [83337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2646), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83401] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2809), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83465] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2740), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83529] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(993), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 18, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [83625] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2847), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83691] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2935), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2937), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83755] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83819] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2618), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2620), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83883] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4048), 1, - anon_sym_DOT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - sym_hash_operator, - STATE(2392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4030), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4028), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [83953] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2949), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84017] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [84103] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2634), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2636), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84167] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2626), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2628), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84231] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2744), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [84295] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4054), 1, - anon_sym_DOT, - ACTIONS(4056), 1, - anon_sym_POUND, - ACTIONS(4058), 1, - sym_hash_operator, - STATE(2398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4030), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4028), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84365] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4054), 1, - anon_sym_DOT, - ACTIONS(4056), 1, - anon_sym_POUND, - ACTIONS(4058), 1, - sym_hash_operator, - STATE(2399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4020), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4018), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2736), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [84499] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3007), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [84563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84627] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2831), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2833), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84691] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 12, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [84773] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [84861] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2650), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2652), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84925] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [85013] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2658), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2660), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85077] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 25, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [85155] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3113), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3115), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85219] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 25, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [85297] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2622), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2624), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [85361] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3085), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3087), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85425] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2594), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85489] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3658), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3656), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2867), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85617] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 5, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [85709] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2604), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2606), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85773] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2941), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85837] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 18, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [85933] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2614), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2616), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85997] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [86097] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(979), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [86197] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2979), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2981), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86261] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2871), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86325] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2975), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2977), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3089), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3091), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86453] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86519] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2913), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86583] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4054), 1, - anon_sym_DOT, - ACTIONS(4056), 1, - anon_sym_POUND, - ACTIONS(4058), 1, - sym_hash_operator, - STATE(2430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4036), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4034), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86653] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4054), 1, - anon_sym_DOT, - ACTIONS(4056), 1, - anon_sym_POUND, - ACTIONS(4058), 1, - sym_hash_operator, - STATE(2431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4040), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4038), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86723] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(961), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [86823] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3099), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86887] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3007), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86951] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2931), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87015] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2736), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87079] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3119), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [87145] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2899), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87209] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2923), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2925), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87273] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1021), 1, - anon_sym_SEMI, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3654), 3, - anon_sym_let, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [87375] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2690), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87439] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2889), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87503] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3095), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87567] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2813), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87631] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2552), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2554), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [87695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2915), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2917), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87759] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2654), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2656), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87823] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3101), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87887] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2821), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87951] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3001), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3003), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88015] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2875), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88079] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2997), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2999), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88143] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2971), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2973), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88207] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2552), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2554), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88271] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2662), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2664), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88335] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2670), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2672), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88399] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2690), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [88463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3075), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88527] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4048), 1, - anon_sym_DOT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - sym_hash_operator, - STATE(2459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4040), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4038), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [88597] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(971), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [88697] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3105), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3107), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88761] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2991), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2993), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88825] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2674), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2676), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88889] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3652), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [88953] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2903), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89017] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2815), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2817), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89081] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4048), 1, - anon_sym_DOT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - sym_hash_operator, - STATE(2467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4036), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4034), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [89151] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(997), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(995), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [89215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2907), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2909), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89279] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2927), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2929), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89343] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4048), 1, - anon_sym_DOT, - STATE(2471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2823), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2825), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [89409] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2847), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [89475] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2889), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [89539] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [89615] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2949), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [89679] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89743] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2857), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [89807] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2951), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2953), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89871] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2959), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2961), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89935] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2853), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89999] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2985), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90063] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2891), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2893), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90127] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2857), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90191] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4054), 1, - anon_sym_DOT, - STATE(2484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2823), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2825), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90257] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2827), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90321] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2600), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2602), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90385] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3099), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [90449] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2803), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90513] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2883), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2885), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90577] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2919), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2921), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90641] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2943), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2945), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90705] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2955), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2957), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90769] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2963), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2965), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90833] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2622), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90897] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2813), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [90961] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3075), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91025] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2835), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2837), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91089] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2861), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2863), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91153] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2686), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2967), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91281] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3778), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3776), 33, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [91345] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2879), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2881), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91409] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2841), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2843), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91473] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2680), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2682), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(2875), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91601] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3095), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91665] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3095), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4060), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4062), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91791] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2871), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91854] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2690), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91917] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2686), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3099), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92043] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4064), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4066), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92106] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2867), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92169] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2857), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92232] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2744), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92295] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2913), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92358] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4068), 1, - anon_sym_DOT_DOT, - STATE(2518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2061), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92423] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2736), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2889), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92549] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3007), 25, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92612] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4070), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4072), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4074), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4076), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92736] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4078), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4080), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92798] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4084), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4082), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4086), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4088), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92922] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4090), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4092), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [92984] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4098), 1, - anon_sym_else, - STATE(2528), 1, - sym_attribute, - STATE(2623), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [93050] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4102), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4100), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93112] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4106), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4104), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93174] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3083), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93236] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4108), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4110), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93298] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4112), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4114), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93360] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2129), 1, - anon_sym_COLON_COLON, - STATE(2534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4116), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4118), 23, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93424] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2853), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93486] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2111), 1, - anon_sym_COMMA, - ACTIONS(2129), 1, - anon_sym_COLON_COLON, - STATE(2536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4122), 22, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4120), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [93552] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4124), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4126), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93676] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4132), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4134), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4136), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4138), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4140), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4142), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93862] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2129), 1, - anon_sym_COLON_COLON, - STATE(2542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4144), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4146), 23, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93926] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4148), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4150), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [93988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4152), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4154), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94050] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4156), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4158), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94112] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4162), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4160), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [94174] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4164), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4166), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94236] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2740), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94298] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4170), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94360] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4172), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4174), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94422] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4176), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4178), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94484] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4182), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4180), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [94546] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1017), 1, - anon_sym_COMMA, - ACTIONS(1025), 1, - anon_sym_COLON_COLON, - ACTIONS(1029), 1, - sym__concat_operator, - ACTIONS(1035), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4046), 1, - sym__rel_operator, - STATE(909), 1, - sym__pow_operator, - STATE(917), 1, - sym__mult_operator, - STATE(920), 1, - sym__add_operator, - STATE(921), 1, - sym__and_operator, - STATE(922), 1, - sym__or_operator, - STATE(923), 1, - sym__assign_operator, - STATE(2553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(953), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(3654), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3997), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [94646] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4184), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4186), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94708] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4190), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [94770] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2061), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94832] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4194), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4192), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [94894] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4196), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4198), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [94956] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4098), 1, - anon_sym_else, - STATE(2559), 1, - sym_attribute, - STATE(2651), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [95022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4206), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4204), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95084] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4212), 1, - anon_sym_PIPE, - STATE(2561), 1, - sym_attribute, - STATE(2578), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [95150] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4214), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4216), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95212] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4218), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4220), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95274] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2813), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95336] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2809), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95398] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3079), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95460] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4222), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4224), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95522] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4228), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4226), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95584] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4232), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95646] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4234), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4236), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95708] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4238), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4240), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95770] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4244), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4242), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95832] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2821), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [95894] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4248), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4246), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95956] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2646), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96018] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2875), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2941), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96142] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4254), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2578), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [96206] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4259), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4257), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96268] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4263), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96330] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4267), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96392] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4269), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4271), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96454] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4275), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4273), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96516] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4279), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96578] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4283), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96640] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4212), 1, - anon_sym_PIPE, - STATE(2586), 1, - sym_attribute, - STATE(2594), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [96706] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3075), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4287), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4285), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96830] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4289), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4291), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2949), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [96954] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4212), 1, - anon_sym_PIPE, - STATE(2561), 1, - aux_sym__match_cases_repeat1, - STATE(2591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [97020] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4299), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4297), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97082] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4301), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4303), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97144] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4212), 1, - anon_sym_PIPE, - STATE(2578), 1, - aux_sym__match_cases_repeat1, - STATE(2594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [97210] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4309), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4311), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97272] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4315), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4313), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97334] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2803), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97396] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4319), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4323), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4321), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4325), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4327), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97582] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1043), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1039), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4329), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4331), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97706] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4333), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4335), 24, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4228), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4226), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97829] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1043), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1039), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97890] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4102), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4100), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [97951] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4337), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2607), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98014] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4228), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4226), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98075] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4283), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98136] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4340), 1, - anon_sym_PIPE, - STATE(2607), 1, - aux_sym__match_cases_repeat1, - STATE(2610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98201] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4084), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4082), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4106), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4104), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98323] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4344), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4342), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98384] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4340), 1, - anon_sym_PIPE, - STATE(2607), 1, - aux_sym__match_cases_repeat1, - STATE(2614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98449] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4346), 1, - anon_sym_else, - STATE(2615), 1, - sym_attribute, - STATE(2651), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98514] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4350), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4348), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98575] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4299), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4297), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98636] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4354), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4352), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98697] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4252), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98758] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4252), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98819] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4315), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4313), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [98880] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3658), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3656), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98941] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4263), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99002] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4354), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4352), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99063] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2847), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [99126] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4259), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4257), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99187] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4244), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4242), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99248] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(997), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(995), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99309] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3119), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [99372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4344), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4342), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99433] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3652), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4248), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4246), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99555] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4182), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4180), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99616] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4323), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4321), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99677] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4267), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [99738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4323), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4321), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99799] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4244), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4242), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4259), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4257), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99921] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4263), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99982] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1043), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1039), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100043] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4315), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4313), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100104] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4190), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100165] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3778), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3776), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100226] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4346), 1, - anon_sym_else, - STATE(2623), 1, - sym_else_clause, - STATE(2644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100291] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4340), 1, - anon_sym_PIPE, - STATE(2610), 1, - aux_sym__match_cases_repeat1, - STATE(2645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4350), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4348), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100417] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100478] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4275), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4273), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100539] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100600] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4340), 1, - anon_sym_PIPE, - STATE(2614), 1, - aux_sym__match_cases_repeat1, - STATE(2650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100665] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4287), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4285), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100726] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4194), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4192), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [100787] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4106), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4104), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100848] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4102), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4100), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100909] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4206), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4204), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4287), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4285), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101031] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4275), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4273), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4206), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4204), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101153] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4190), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4299), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4297), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101275] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4267), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101336] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4162), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4160), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101397] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4182), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4180), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4248), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4246), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101519] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4194), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4192), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101580] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4283), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101641] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4084), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4082), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [101702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4162), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4160), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101763] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2556), 1, - sym__identifier, - ACTIONS(2566), 1, - anon_sym_LBRACK, - ACTIONS(2572), 1, - anon_sym_LBRACE, - ACTIONS(2574), 1, - anon_sym_POUND, - ACTIONS(2576), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2578), 1, - anon_sym_begin, - ACTIONS(2584), 1, - aux_sym_number_token1, - ACTIONS(2586), 1, - anon_sym_SQUOTE, - ACTIONS(2588), 1, - anon_sym_DQUOTE, - ACTIONS(2590), 1, - sym__capitalized_identifier, - ACTIONS(2592), 1, - aux_sym_tag_token1, - ACTIONS(4356), 1, - anon_sym_LPAREN, - ACTIONS(4358), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4360), 1, - anon_sym_LBRACE_PERCENT, - STATE(2669), 1, - sym_attribute, - STATE(3147), 1, - sym_parenthesized_operator, - STATE(3189), 1, - sym__simple_pattern_ext, - STATE(8158), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2564), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2568), 2, - anon_sym_true, - anon_sym_false, - STATE(3128), 2, - sym_extension, - sym_quoted_extension, - STATE(3139), 2, - sym__simple_pattern, - sym__extension, - STATE(3146), 2, - sym__constant, - sym_signed_number, - STATE(3170), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3143), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [101867] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2867), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [101927] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [101987] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1749), 1, - sym__capitalized_identifier, - ACTIONS(1751), 1, - aux_sym_tag_token1, - ACTIONS(2097), 1, - sym__identifier, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2123), 1, - anon_sym_LBRACE, - ACTIONS(2127), 1, - anon_sym_POUND, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2133), 1, - anon_sym_begin, - ACTIONS(2141), 1, - aux_sym_number_token1, - ACTIONS(2143), 1, - anon_sym_SQUOTE, - ACTIONS(2145), 1, - anon_sym_DQUOTE, - ACTIONS(3356), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3358), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4362), 1, - anon_sym_LPAREN, - STATE(2672), 1, - sym_attribute, - STATE(3549), 1, - sym_parenthesized_operator, - STATE(3556), 1, - sym__simple_pattern_ext, - STATE(7746), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2113), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2119), 2, - anon_sym_true, - anon_sym_false, - STATE(3518), 2, - sym_extension, - sym_quoted_extension, - STATE(3545), 2, - sym__constant, - sym_signed_number, - STATE(3576), 2, - sym__simple_pattern, - sym__extension, - STATE(3568), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3591), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [102091] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2871), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [102151] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2913), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [102211] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [102273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [102333] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [102395] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [102455] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2454), 1, - sym__identifier, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2474), 1, - anon_sym_LBRACE, - ACTIONS(2476), 1, - anon_sym_POUND, - ACTIONS(2478), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2480), 1, - anon_sym_begin, - ACTIONS(2488), 1, - aux_sym_number_token1, - ACTIONS(2490), 1, - anon_sym_SQUOTE, - ACTIONS(2492), 1, - anon_sym_DQUOTE, - ACTIONS(2494), 1, - sym__capitalized_identifier, - ACTIONS(2496), 1, - aux_sym_tag_token1, - ACTIONS(4364), 1, - anon_sym_LPAREN, - ACTIONS(4366), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4368), 1, - anon_sym_LBRACE_PERCENT, - STATE(2679), 1, - sym_attribute, - STATE(2956), 1, - sym_parenthesized_operator, - STATE(3100), 1, - sym__simple_pattern_ext, - STATE(7464), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2466), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2470), 2, - anon_sym_true, - anon_sym_false, - STATE(2958), 2, - sym__constant, - sym_signed_number, - STATE(2976), 2, - sym__simple_pattern, - sym__extension, - STATE(3043), 2, - sym_extension, - sym_quoted_extension, - STATE(3013), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2954), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [102559] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4370), 1, - anon_sym_else, - STATE(2651), 1, - sym_else_clause, - STATE(2680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 28, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102622] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4372), 1, - anon_sym_PIPE, - STATE(2681), 1, - sym_attribute, - STATE(2685), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102685] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4372), 1, - anon_sym_PIPE, - STATE(2682), 1, - sym_attribute, - STATE(2684), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102748] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4370), 1, - anon_sym_else, - STATE(2623), 1, - sym_else_clause, - STATE(2683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 28, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102811] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4374), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2684), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102872] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4372), 1, - anon_sym_PIPE, - STATE(2684), 1, - aux_sym__match_cases_repeat1, - STATE(2685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102935] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4372), 1, - anon_sym_PIPE, - STATE(2682), 1, - aux_sym__match_cases_repeat1, - STATE(2686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [102998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103056] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103230] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103346] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103404] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103462] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103578] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103636] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103694] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103752] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103868] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103926] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [103984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104042] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104216] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104274] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104332] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104390] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104448] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104506] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104564] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104622] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104680] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104796] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104854] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104912] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4377), 1, - anon_sym_DOT, - ACTIONS(4379), 1, - anon_sym_POUND, - ACTIONS(4381), 1, - sym_hash_operator, - STATE(2720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [104976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105034] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105150] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105208] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105266] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105382] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105440] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105556] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105730] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105788] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105846] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105904] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [105962] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4377), 1, - anon_sym_DOT, - STATE(2738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106138] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106254] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106370] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106428] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106602] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106660] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106718] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106776] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106834] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [106950] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107008] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107066] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107124] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107182] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107242] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107300] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107358] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107474] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107532] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4377), 1, - anon_sym_DOT, - ACTIONS(4379), 1, - anon_sym_POUND, - ACTIONS(4381), 1, - sym_hash_operator, - STATE(2765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107596] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107654] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107712] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107770] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [107830] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [107911] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(971), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [108004] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - sym__identifier, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4389), 1, - anon_sym_private, - ACTIONS(4391), 1, - anon_sym_DOT_DOT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_LBRACK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4413), 1, - sym__capitalized_identifier, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - STATE(2772), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4381), 1, - sym__type_ext, - STATE(4673), 1, - sym_constructor_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4397), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4413), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [108119] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 14, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [108198] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(1207), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3654), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 9, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [108293] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [108368] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [108439] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [108520] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(993), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [108609] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(987), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [108702] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [108773] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [108842] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [108923] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3778), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3776), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [108980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [109037] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3658), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3656), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [109094] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [109163] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [109248] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [109337] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [109430] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(979), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [109523] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [109594] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [109665] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [109740] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(971), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [109833] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COMMA, - ACTIONS(1193), 1, - anon_sym_COLON_COLON, - ACTIONS(1195), 1, - sym__concat_operator, - ACTIONS(1197), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(951), 1, - sym__add_operator, - STATE(981), 1, - sym__pow_operator, - STATE(1004), 1, - sym__mult_operator, - STATE(1062), 1, - sym__assign_operator, - STATE(1071), 1, - sym__and_operator, - STATE(1078), 1, - sym__or_operator, - STATE(2795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(961), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [109926] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - sym__identifier, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_LBRACK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4413), 1, - sym__capitalized_identifier, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4417), 1, - anon_sym_private, - ACTIONS(4419), 1, - anon_sym_DOT_DOT, - STATE(2796), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4381), 1, - sym__type_ext, - STATE(4673), 1, - sym_constructor_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4397), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4396), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [110041] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [110098] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3652), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [110155] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(997), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(995), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [110212] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4421), 1, - sym__identifier, - ACTIONS(4423), 1, - anon_sym_LPAREN, - ACTIONS(4425), 1, - anon_sym_private, - ACTIONS(4427), 1, - anon_sym_DOT_DOT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4447), 1, - sym__capitalized_identifier, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - STATE(2800), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4264), 1, - sym__type_ext, - STATE(4820), 1, - sym_constructor_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4433), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4608), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [110327] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [110384] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(1205), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3654), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 10, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [110479] = 34, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4421), 1, - sym__identifier, - ACTIONS(4423), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4447), 1, - sym__capitalized_identifier, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4451), 1, - anon_sym_private, - ACTIONS(4453), 1, - anon_sym_DOT_DOT, - STATE(2803), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4264), 1, - sym__type_ext, - STATE(4820), 1, - sym_constructor_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4433), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4448), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [110594] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(987), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [110687] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(993), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [110776] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [110833] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [110912] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [110993] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111050] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111107] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 3, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 14, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - [111192] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [111281] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111338] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111395] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(979), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [111488] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111545] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [111638] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COLON_COLON, - ACTIONS(1199), 1, - sym__concat_operator, - ACTIONS(1201), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4383), 1, - sym__rel_operator, - STATE(976), 1, - sym__pow_operator, - STATE(980), 1, - sym__mult_operator, - STATE(983), 1, - sym__add_operator, - STATE(984), 1, - sym__and_operator, - STATE(985), 1, - sym__or_operator, - STATE(986), 1, - sym__assign_operator, - STATE(2818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(961), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [111731] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [111787] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4421), 1, - sym__identifier, - ACTIONS(4423), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4447), 1, - sym__capitalized_identifier, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4455), 1, - anon_sym_DOT_DOT, - STATE(2820), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4248), 1, - sym__type_ext, - STATE(4820), 1, - sym_constructor_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4433), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4434), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [111899] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - sym__identifier, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_LBRACK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4413), 1, - sym__capitalized_identifier, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - STATE(2821), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4322), 1, - sym__type_ext, - STATE(4673), 1, - sym_constructor_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4397), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4417), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [112011] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(961), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [112103] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4421), 1, - sym__identifier, - ACTIONS(4423), 1, - anon_sym_LPAREN, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4431), 1, - anon_sym_LBRACK, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4447), 1, - sym__capitalized_identifier, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - STATE(2823), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4248), 1, - sym__type_ext, - STATE(4820), 1, - sym_constructor_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4433), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4539), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [112215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3180), 18, - anon_sym_SEMI_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3178), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [112271] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(971), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [112363] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [112433] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4461), 1, - anon_sym_DOT, - ACTIONS(4463), 1, - anon_sym_POUND, - ACTIONS(4465), 1, - sym_hash_operator, - STATE(2827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [112495] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(979), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [112587] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [112679] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [112767] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 3, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [112851] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(961), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [112943] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(4385), 1, - sym__identifier, - ACTIONS(4387), 1, - anon_sym_LPAREN, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4395), 1, - anon_sym_LBRACK, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4413), 1, - sym__capitalized_identifier, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4469), 1, - anon_sym_DOT_DOT, - STATE(2833), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4322), 1, - sym__type_ext, - STATE(4673), 1, - sym_constructor_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4397), 2, - anon_sym_true, - anon_sym_false, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4408), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [113055] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4471), 1, - anon_sym_COLON, - STATE(2834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3182), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [113113] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [113187] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [113257] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [113337] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(971), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [113429] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 14, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [113507] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(993), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [113595] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(987), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [113687] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [113779] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4461), 1, - anon_sym_DOT, - ACTIONS(4463), 1, - anon_sym_POUND, - ACTIONS(4465), 1, - sym_hash_operator, - STATE(2843), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [113841] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [113933] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [114021] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [114077] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [114133] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 14, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - [114217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [114273] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [114343] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [114413] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [114493] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [114573] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(975), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [114651] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(993), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [114739] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [114795] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(987), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [114887] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [114943] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3180), 1, - anon_sym_COLON, - STATE(2859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4475), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4473), 21, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [115001] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115057] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115113] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115169] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115225] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115281] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115393] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115449] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4461), 1, - anon_sym_DOT, - STATE(2868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115507] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115619] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115675] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115731] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115787] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115843] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115899] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [115955] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116011] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116067] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [116135] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116191] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116259] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116315] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116371] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116427] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116483] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116539] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116595] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116651] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116707] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116763] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116819] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116875] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116931] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [116987] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117043] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117099] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117155] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117211] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117267] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117323] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117379] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117491] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117547] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117603] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117659] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117715] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117771] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117827] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117883] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117939] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [117997] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118053] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118109] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2847), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [118167] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118223] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(2917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118281] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118393] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118449] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118505] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1281), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3654), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 9, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [118599] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118655] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3119), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [118713] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118769] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118825] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [118881] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [118955] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119011] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119067] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(2931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(933), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [119147] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119203] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119259] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119315] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119371] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119427] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119483] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119539] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119595] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119651] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119707] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1285), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(2942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 10, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [119801] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4477), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4479), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [119856] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119911] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [119966] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120021] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120076] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120131] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2654), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120186] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120241] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120351] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4481), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4483), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3210), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [120461] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4485), 1, - anon_sym_DOT, - STATE(2955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120518] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4487), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4489), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3192), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3190), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120628] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4060), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4062), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120683] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2831), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4064), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4066), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120848] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4232), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120903] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2931), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [120958] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4491), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4493), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121013] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2915), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121068] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121123] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4495), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4497), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121233] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(2644), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121343] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121398] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121453] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4164), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4166), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121618] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4499), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4501), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121673] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3101), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121783] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4333), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4335), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121838] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121893] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121948] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122003] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122058] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122113] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2913), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2911), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122168] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4503), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4505), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122223] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(2807), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4507), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4509), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122333] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3095), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122388] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4511), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4513), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4517), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4325), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4327), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3105), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122663] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2889), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122718] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4132), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4134), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122773] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2903), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122828] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(2998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122885] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2686), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122940] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2690), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2871), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2869), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123050] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(2815), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4519), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4521), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123160] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2949), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4523), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4525), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123325] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4279), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123380] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4527), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4529), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4533), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4531), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123490] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(3010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123547] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2857), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123602] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2744), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123657] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2736), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123712] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3109), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123767] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(3015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2847), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2845), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123824] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3196), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3194), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123879] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [123934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3007), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [123989] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3099), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124099] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4537), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4535), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124154] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124209] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124264] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3113), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124319] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4485), 1, - anon_sym_DOT, - ACTIONS(4539), 1, - anon_sym_POUND, - ACTIONS(4541), 1, - sym_hash_operator, - STATE(3025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 22, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124380] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4543), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4545), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2913), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124490] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124545] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124600] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(3030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2847), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124657] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124712] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2813), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124767] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2821), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124822] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2875), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124877] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3081), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [124932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3075), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [124987] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4547), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4549), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125042] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125097] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4553), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4551), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125152] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125207] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125317] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3079), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4555), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4557), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125427] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125482] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4561), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4559), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125592] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3180), 1, - anon_sym_COLON, - STATE(3048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4475), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4473), 20, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125649] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2867), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125759] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2941), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125814] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125869] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2871), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [125924] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [125979] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4319), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126034] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126089] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2865), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126144] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126254] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126309] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126364] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4563), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4565), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126419] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4567), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4569), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126474] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4571), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4573), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126529] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4575), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4577), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126584] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4579), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4581), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126639] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126694] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3180), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3178), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [126749] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4583), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4585), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4587), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4589), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [126859] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 1, - anon_sym_COLON_COLON, - ACTIONS(1277), 1, - sym__concat_operator, - ACTIONS(1283), 1, - anon_sym_COMMA, - ACTIONS(1349), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4467), 1, - sym__rel_operator, - STATE(1028), 1, - sym__assign_operator, - STATE(1029), 1, - sym__or_operator, - STATE(1031), 1, - sym__and_operator, - STATE(1033), 1, - sym__add_operator, - STATE(1034), 1, - sym__mult_operator, - STATE(1035), 1, - sym__pow_operator, - STATE(3071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [126952] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4591), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4593), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [127062] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127117] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4595), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4597), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [127172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4601), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4599), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127227] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127282] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2646), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [127392] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127447] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127557] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4485), 1, - anon_sym_DOT, - ACTIONS(4539), 1, - anon_sym_POUND, - ACTIONS(4541), 1, - sym_hash_operator, - STATE(3083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 22, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127618] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127673] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3077), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2809), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [127783] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127838] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127893] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [127948] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4603), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4605), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128003] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4607), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4609), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128058] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4611), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4613), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128113] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(2738), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128168] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4615), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4617), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128223] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4619), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4621), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128333] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128388] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4623), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4625), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2740), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128663] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128718] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128773] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(2939), 21, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128828] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4627), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4629), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [128883] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128938] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [128993] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3083), 20, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129048] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2690), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4527), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4529), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129156] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2867), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129210] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4232), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129264] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4553), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4551), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [129318] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4547), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4549), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4333), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4335), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2740), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129480] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2857), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129534] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4627), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4629), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4325), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4327), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129642] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4633), 1, - anon_sym_PIPE, - ACTIONS(4635), 1, - anon_sym_RBRACK, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3121), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6658), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [129752] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4543), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4545), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129806] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3083), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [129860] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4639), 1, - anon_sym_PIPE, - ACTIONS(4641), 1, - anon_sym_RBRACK, - STATE(3124), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6832), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [129970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4481), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4483), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130024] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2913), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130078] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3095), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130132] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3079), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130186] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4643), 1, - anon_sym_PIPE, - ACTIONS(4645), 1, - anon_sym_RBRACK, - STATE(3129), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6748), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [130296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4591), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4593), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130350] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4491), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4493), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130404] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4603), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4605), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4601), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4599), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [130512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4595), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4597), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130566] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4164), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4166), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130620] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2744), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4495), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4497), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4587), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4589), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130782] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4499), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4501), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [130836] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4647), 1, - anon_sym_PIPE, - ACTIONS(4649), 1, - anon_sym_RBRACK, - STATE(3140), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6660), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [130946] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4279), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131000] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4507), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4509), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131054] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3210), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3202), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131108] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4575), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4577), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131162] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4537), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4535), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [131216] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4060), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4062), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4487), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4489), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131324] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4651), 1, - anon_sym_PIPE, - ACTIONS(4653), 1, - anon_sym_RBRACK, - STATE(3148), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7195), 1, - sym_tag_specification, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - STATE(8295), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [131434] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4319), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131488] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4655), 1, - anon_sym_PIPE, - ACTIONS(4657), 1, - anon_sym_RBRACK, - STATE(3150), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6425), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [131598] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4607), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4609), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131652] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4583), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4585), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131706] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4659), 1, - anon_sym_COLON, - STATE(3153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [131762] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4533), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4531), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [131816] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4563), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4565), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4523), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4525), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131924] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4132), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4134), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [131978] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4064), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4066), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132032] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4567), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4569), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132086] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2941), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132140] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2813), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2889), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132248] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4477), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4479), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132302] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2809), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3075), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4517), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132464] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4519), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4521), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132518] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2875), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132572] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4555), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4557), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132626] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2736), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132680] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4615), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4617), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132734] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4511), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4513), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132788] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4503), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4505), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2871), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132896] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2949), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [132950] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4661), 1, - anon_sym_PIPE, - ACTIONS(4663), 1, - anon_sym_RBRACK, - STATE(3176), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6371), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [133060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2646), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2821), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133168] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4561), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4559), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [133222] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4571), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4573), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133276] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [133330] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3196), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3194), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [133384] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4665), 1, - anon_sym_PIPE, - ACTIONS(4667), 1, - anon_sym_RBRACK, - STATE(3183), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7232), 1, - sym_tag_specification, - STATE(8116), 1, - sym__tag_spec, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [133494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2686), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3007), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133602] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3192), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3190), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [133656] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3099), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133710] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4579), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4581), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133764] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4623), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4625), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133818] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4611), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4613), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133872] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4619), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4621), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [133926] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4669), 1, - anon_sym_PIPE, - STATE(3192), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7243), 1, - sym_tag_specification, - STATE(7703), 1, - sym__tag_spec, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134033] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1715), 1, - anon_sym_type, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - STATE(3193), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3950), 1, - sym_type_variable, - STATE(4313), 1, - sym__type_ext, - STATE(4593), 1, - sym__polymorphic_type, - STATE(4604), 1, - sym_polymorphic_type, - STATE(6102), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6987), 1, - sym_extended_module_path, - STATE(8121), 1, - sym__abstract_type, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [134142] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4671), 1, - anon_sym_RBRACK, - STATE(3194), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6853), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134249] = 33, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1715), 1, - anon_sym_type, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4673), 1, - sym__identifier, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - STATE(3195), 1, - sym_attribute, - STATE(5292), 1, - sym__tuple_type, - STATE(5305), 1, - sym_type_variable, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5397), 1, - sym__extension, - STATE(5412), 1, - sym__simple_type, - STATE(6014), 1, - sym__type_ext, - STATE(6232), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6788), 1, - sym_polymorphic_type, - STATE(6789), 1, - sym__polymorphic_type, - STATE(7336), 1, - sym_extended_module_path, - STATE(7538), 1, - sym__abstract_type, - STATE(7919), 1, - sym_typed_label, - STATE(7926), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5433), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [134358] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4689), 1, - sym__identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4693), 1, - anon_sym_QMARK, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - STATE(3196), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4230), 1, - sym__extension, - STATE(4479), 1, - sym__class_type_ext, - STATE(4480), 1, - sym__class_type, - STATE(7085), 1, - sym_extended_module_path, - STATE(7203), 1, - sym__tuple_type, - STATE(7209), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134459] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4699), 1, - anon_sym_RBRACK, - STATE(3197), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6505), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134566] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4701), 1, - sym__identifier, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(4705), 1, - anon_sym_QMARK, - ACTIONS(4707), 1, - anon_sym_LBRACK, - STATE(3198), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4480), 1, - sym__class_type, - STATE(4562), 1, - sym__class_type_ext, - STATE(5598), 1, - sym__extension, - STATE(6927), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7258), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134667] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4709), 1, - anon_sym_PIPE, - STATE(3199), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6340), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134774] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4711), 1, - anon_sym_PIPE, - STATE(3200), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7139), 1, - sym_tag_specification, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - STATE(8336), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134881] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4713), 1, - sym__identifier, - ACTIONS(4715), 1, - anon_sym_QMARK, - STATE(3201), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4286), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4562), 1, - sym__class_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7204), 1, - sym__tuple_type_ext, - STATE(7206), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [134982] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4717), 1, - anon_sym_COLON, - STATE(3202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 22, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [135037] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4719), 1, - anon_sym_PIPE, - STATE(3203), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6943), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - STATE(8266), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135144] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1351), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_COLON2, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(3652), 7, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - [135235] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4689), 1, - sym__identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4693), 1, - anon_sym_QMARK, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - STATE(3205), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4230), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4562), 1, - sym__class_type_ext, - STATE(7085), 1, - sym_extended_module_path, - STATE(7203), 1, - sym__tuple_type, - STATE(7209), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135336] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4651), 1, - anon_sym_PIPE, - STATE(3206), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7195), 1, - sym_tag_specification, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - STATE(8295), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135443] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4723), 1, - anon_sym_PIPE, - STATE(3207), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6205), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135550] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4701), 1, - sym__identifier, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(4705), 1, - anon_sym_QMARK, - ACTIONS(4707), 1, - anon_sym_LBRACK, - STATE(3208), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4480), 1, - sym__class_type, - STATE(4566), 1, - sym__class_type_ext, - STATE(5598), 1, - sym__extension, - STATE(6927), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7258), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135651] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4701), 1, - sym__identifier, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(4705), 1, - anon_sym_QMARK, - ACTIONS(4707), 1, - anon_sym_LBRACK, - STATE(3209), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4480), 1, - sym__class_type, - STATE(4623), 1, - sym__class_type_ext, - STATE(5598), 1, - sym__extension, - STATE(6927), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7258), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135752] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4669), 1, - anon_sym_PIPE, - STATE(3210), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(5982), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7243), 1, - sym_tag_specification, - STATE(7703), 1, - sym__tag_spec, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135859] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4701), 1, - sym__identifier, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(4705), 1, - anon_sym_QMARK, - ACTIONS(4707), 1, - anon_sym_LBRACK, - STATE(3211), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4479), 1, - sym__class_type_ext, - STATE(4480), 1, - sym__class_type, - STATE(5598), 1, - sym__extension, - STATE(6927), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7258), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [135960] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4725), 1, - anon_sym_RBRACK, - STATE(3212), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6770), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136067] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 18, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4279), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [136120] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4689), 1, - sym__identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4693), 1, - anon_sym_QMARK, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - STATE(3214), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4230), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4623), 1, - sym__class_type_ext, - STATE(7085), 1, - sym_extended_module_path, - STATE(7203), 1, - sym__tuple_type, - STATE(7209), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136221] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4713), 1, - sym__identifier, - ACTIONS(4715), 1, - anon_sym_QMARK, - STATE(3215), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4286), 1, - sym__extension, - STATE(4479), 1, - sym__class_type_ext, - STATE(4480), 1, - sym__class_type, - STATE(7203), 1, - sym__tuple_type, - STATE(7204), 1, - sym__tuple_type_ext, - STATE(7206), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136322] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4713), 1, - sym__identifier, - ACTIONS(4715), 1, - anon_sym_QMARK, - STATE(3216), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4286), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4623), 1, - sym__class_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7204), 1, - sym__tuple_type_ext, - STATE(7206), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136423] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4727), 1, - anon_sym_PIPE, - STATE(3217), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6222), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136530] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4669), 1, - anon_sym_PIPE, - STATE(3218), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(5842), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7243), 1, - sym_tag_specification, - STATE(7703), 1, - sym__tag_spec, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136637] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4729), 1, - anon_sym_PIPE, - STATE(3219), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6295), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136744] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4731), 1, - anon_sym_RBRACK, - STATE(3220), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6662), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136851] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4733), 1, - anon_sym_PIPE, - STATE(3221), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7362), 1, - sym_tag_specification, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - STATE(8319), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [136958] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4735), 1, - anon_sym_PIPE, - STATE(3222), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6328), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137065] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4689), 1, - sym__identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4693), 1, - anon_sym_QMARK, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - STATE(3223), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4230), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4566), 1, - sym__class_type_ext, - STATE(7085), 1, - sym_extended_module_path, - STATE(7203), 1, - sym__tuple_type, - STATE(7209), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137166] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4665), 1, - anon_sym_PIPE, - STATE(3224), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6987), 1, - sym_extended_module_path, - STATE(7232), 1, - sym_tag_specification, - STATE(8116), 1, - sym__tag_spec, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137273] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4737), 1, - anon_sym_PIPE, - STATE(3225), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6189), 1, - sym__tag_spec, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137380] = 29, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4695), 1, - anon_sym_LBRACK, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4713), 1, - sym__identifier, - ACTIONS(4715), 1, - anon_sym_QMARK, - STATE(3226), 1, - sym_attribute, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4286), 1, - sym__extension, - STATE(4480), 1, - sym__class_type, - STATE(4566), 1, - sym__class_type_ext, - STATE(7203), 1, - sym__tuple_type, - STATE(7204), 1, - sym__tuple_type_ext, - STATE(7206), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4481), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137481] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4739), 1, - anon_sym_RBRACK, - STATE(3227), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6592), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137588] = 32, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - ACTIONS(4741), 1, - anon_sym_RBRACK, - STATE(3228), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6756), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137695] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3229), 1, - sym_attribute, - STATE(3263), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [137751] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3230), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6830), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137855] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3231), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6197), 1, - sym__tag_spec, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [137959] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3232), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6829), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138063] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3233), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6564), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138167] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 18, - anon_sym_external, - anon_sym_type, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4319), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [138219] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4745), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3235), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [138273] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4748), 1, - anon_sym_PIPE, - STATE(3235), 1, - aux_sym__match_cases_repeat1, - STATE(3236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [138329] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3237), 1, - sym_attribute, - STATE(3242), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [138385] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4750), 1, - anon_sym_else, - STATE(2656), 1, - sym_else_clause, - STATE(3238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [138441] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3239), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6538), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138545] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3240), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6200), 1, - sym__tag_spec, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138649] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3241), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6662), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138753] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3242), 1, - sym_attribute, - STATE(3262), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [138809] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3243), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6592), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [138913] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2021), 1, - sym__identifier, - ACTIONS(4756), 1, - anon_sym_LPAREN, - ACTIONS(4760), 1, - anon_sym_LBRACE, - ACTIONS(4762), 1, - anon_sym_begin, - ACTIONS(4764), 1, - aux_sym_number_token1, - ACTIONS(4766), 1, - anon_sym_SQUOTE, - ACTIONS(4768), 1, - anon_sym_DQUOTE, - ACTIONS(4770), 1, - sym__capitalized_identifier, - STATE(3244), 1, - sym_attribute, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5072), 1, - sym_module_path, - STATE(5108), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4758), 2, - anon_sym_true, - anon_sym_false, - STATE(5090), 2, - sym__constant, - sym_value_path, - STATE(5083), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - ACTIONS(4752), 7, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - ACTIONS(4754), 9, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - [138993] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4750), 1, - anon_sym_else, - STATE(2639), 1, - sym_else_clause, - STATE(3245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [139049] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3246), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6770), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139153] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3247), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6505), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139257] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - STATE(3248), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4772), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [139323] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3249), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6140), 1, - sym__tag_spec, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139427] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3250), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6311), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139531] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4782), 1, - anon_sym_else, - STATE(2639), 1, - sym_else_clause, - STATE(3251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [139587] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3252), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6791), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139691] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3253), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6683), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139795] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4788), 1, - anon_sym_RPAREN, - STATE(3254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4784), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [139849] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3255), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6321), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [139953] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4782), 1, - anon_sym_else, - STATE(2656), 1, - sym_else_clause, - STATE(3256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [140009] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3257), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6320), 1, - sym__tag_spec, - STATE(6672), 1, - sym_tag_specification, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [140113] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4748), 1, - anon_sym_PIPE, - STATE(3236), 1, - aux_sym__match_cases_repeat1, - STATE(3258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [140169] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4748), 1, - anon_sym_PIPE, - STATE(3235), 1, - aux_sym__match_cases_repeat1, - STATE(3259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [140225] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3260), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6853), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [140329] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3261), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6872), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [140433] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4790), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3262), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [140487] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4743), 1, - anon_sym_PIPE, - STATE(3262), 1, - aux_sym__match_cases_repeat1, - STATE(3263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [140543] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - STATE(3264), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4795), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4793), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [140609] = 31, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(4637), 1, - aux_sym_tag_token1, - STATE(3265), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6002), 1, - sym__type_ext, - STATE(6201), 1, - sym_tag, - STATE(6672), 1, - sym_tag_specification, - STATE(6756), 1, - sym__tag_spec, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [140713] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4748), 1, - anon_sym_PIPE, - STATE(3259), 1, - aux_sym__match_cases_repeat1, - STATE(3266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [140769] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2604), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2606), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [140820] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2682), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2680), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140871] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2909), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2907), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140922] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4797), 1, - anon_sym_else, - STATE(2580), 1, - sym_else_clause, - STATE(3270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [140977] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4799), 1, - anon_sym_DOT, - ACTIONS(4801), 1, - anon_sym_POUND, - ACTIONS(4803), 1, - sym_hash_operator, - STATE(3271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2668), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2666), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141034] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(4807), 1, - anon_sym_POUND, - ACTIONS(4809), 1, - sym_hash_operator, - STATE(3272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4020), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4018), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141091] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(4807), 1, - anon_sym_POUND, - ACTIONS(4809), 1, - sym_hash_operator, - STATE(3273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4030), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4028), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141148] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2676), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2674), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2672), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2670), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2913), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141301] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(3277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141354] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2664), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2662), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141405] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2871), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141456] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2973), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2971), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141507] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2999), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2997), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3003), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3001), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141609] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2867), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141660] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(3284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2847), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141713] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(1371), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3654), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3652), 4, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [141802] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2853), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141853] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2929), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2927), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141904] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2803), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [141955] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3091), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3089), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142006] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3099), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142057] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2977), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2975), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142108] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3007), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142159] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2736), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142210] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2981), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2979), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142261] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2616), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2614), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2606), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2604), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142363] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2596), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2594), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2744), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142465] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3087), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3085), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142516] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2949), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142567] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2690), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142618] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2889), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142669] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3095), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142720] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2660), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2658), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142771] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2652), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2650), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142822] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2813), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142873] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2821), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [142924] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2953), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2951), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142975] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2961), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2959), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143026] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2815), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2817), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143077] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143128] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2903), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2905), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143179] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2987), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2985), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143230] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2628), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2626), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143281] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2636), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2634), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143332] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2620), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2618), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143383] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3105), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3107), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143434] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2875), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143485] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3101), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3103), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143536] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2552), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2554), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143587] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2654), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2656), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143638] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2915), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2917), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143689] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2937), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2935), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143740] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2899), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2901), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143791] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3075), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2931), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2933), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143893] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2622), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2624), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143944] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3113), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3115), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [143995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2801), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144046] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2831), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2833), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144097] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2923), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2925), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144148] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2857), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2935), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2937), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2618), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2620), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144301] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2634), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2636), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144352] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2626), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2628), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144403] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2923), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144454] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144505] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2893), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2891), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144556] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2650), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2652), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144607] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144670] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2658), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2660), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144721] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3085), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3087), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144772] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2594), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2596), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144823] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2614), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2616), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144874] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2979), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2981), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144925] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2975), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2977), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [144976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3089), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3091), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145027] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3093), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [145078] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3001), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3003), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145129] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2997), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2999), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145180] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2971), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2973), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145231] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2662), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2664), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145282] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2670), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2672), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145333] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2674), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2676), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145384] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2907), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2909), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2686), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2927), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2929), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2887), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [145588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2951), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2953), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145639] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2959), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2961), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145690] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2985), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2987), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145741] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2891), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2893), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145792] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4805), 1, - anon_sym_DOT, - STATE(3364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2823), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2825), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145845] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2827), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2829), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145896] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2600), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2602), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [145947] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4815), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4813), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [145998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2684), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146049] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2688), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2861), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2863), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146151] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2883), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2885), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146202] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2919), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2921), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146253] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2943), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2945), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2955), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2957), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146355] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2963), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2965), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146406] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4784), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [146457] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2991), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2993), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2855), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146559] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2967), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2969), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146610] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2899), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146661] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2879), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2881), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146712] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(171), 1, - anon_sym_SEMI_SEMI, - ACTIONS(199), 1, - aux_sym_directive_token1, - ACTIONS(4817), 1, - anon_sym_let, - ACTIONS(4819), 1, - anon_sym_external, - ACTIONS(4821), 1, - anon_sym_type, - ACTIONS(4823), 1, - anon_sym_exception, - ACTIONS(4825), 1, - anon_sym_module, - ACTIONS(4827), 1, - anon_sym_open, - ACTIONS(4829), 1, - anon_sym_include, - ACTIONS(4831), 1, - anon_sym_class, - ACTIONS(4833), 1, - sym_let_operator, - STATE(46), 1, - aux_sym__structure_repeat1, - STATE(3244), 1, - sym_directive, - STATE(3382), 1, - sym_attribute, - STATE(3437), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(445), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5102), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5109), 2, - sym__structure_item, - sym__item_extension, - STATE(5113), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [146803] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2841), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2843), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146854] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2680), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2682), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [146905] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2742), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146956] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2734), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3005), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147058] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2835), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2837), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [147109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3097), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147160] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(961), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [147247] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(971), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [147334] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(979), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [147421] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [147508] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [147591] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4799), 1, - anon_sym_DOT, - STATE(3395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 14, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2823), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2829), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2827), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2602), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2600), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147746] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(933), 3, - anon_sym_and, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_or, - sym_and_operator, - [147825] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4835), 1, - anon_sym_else, - STATE(2580), 1, - sym_else_clause, - STATE(3399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [147880] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - sym__concat_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [147955] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - sym__concat_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148030] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(975), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(973), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148103] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2863), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2861), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148154] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(993), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [148237] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1361), 1, - anon_sym_COLON_COLON, - ACTIONS(1365), 1, - anon_sym_COMMA, - ACTIONS(1367), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4811), 1, - sym__rel_operator, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(987), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [148324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3079), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148375] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4799), 1, - anon_sym_DOT, - ACTIONS(4801), 1, - anon_sym_POUND, - ACTIONS(4803), 1, - sym_hash_operator, - STATE(3407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148432] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2941), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148483] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3083), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148534] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2740), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148585] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2809), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148636] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(2646), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148687] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2885), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2883), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2921), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2919), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148789] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(4807), 1, - anon_sym_POUND, - ACTIONS(4809), 1, - sym_hash_operator, - STATE(3415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4036), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4034), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148846] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2945), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2943), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148897] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4805), 1, - anon_sym_DOT, - ACTIONS(4807), 1, - anon_sym_POUND, - ACTIONS(4809), 1, - sym_hash_operator, - STATE(3417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4040), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4038), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [148954] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [149019] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2833), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2831), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149070] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3115), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3113), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149121] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2644), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2807), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149223] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2738), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149274] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4667), 1, - anon_sym_RPAREN, - ACTIONS(4837), 1, - anon_sym_module, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(3424), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6044), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149375] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3081), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2939), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149477] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3077), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149528] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3073), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149579] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2873), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149630] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2819), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149681] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2811), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149732] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2851), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149783] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(171), 1, - anon_sym_SEMI_SEMI, - ACTIONS(199), 1, - aux_sym_directive_token1, - ACTIONS(4817), 1, - anon_sym_let, - ACTIONS(4819), 1, - anon_sym_external, - ACTIONS(4821), 1, - anon_sym_type, - ACTIONS(4823), 1, - anon_sym_exception, - ACTIONS(4825), 1, - anon_sym_module, - ACTIONS(4827), 1, - anon_sym_open, - ACTIONS(4829), 1, - anon_sym_include, - ACTIONS(4831), 1, - anon_sym_class, - ACTIONS(4833), 1, - sym_let_operator, - STATE(44), 1, - aux_sym__structure_repeat1, - STATE(3244), 1, - sym_directive, - STATE(3433), 1, - sym_attribute, - STATE(3457), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(437), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5102), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5109), 2, - sym__structure_item, - sym__item_extension, - STATE(5113), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [149874] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2947), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149925] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4797), 1, - anon_sym_else, - STATE(2588), 1, - sym_else_clause, - STATE(3435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [149980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2933), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2931), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150031] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(171), 1, - anon_sym_SEMI_SEMI, - ACTIONS(199), 1, - aux_sym_directive_token1, - ACTIONS(4817), 1, - anon_sym_let, - ACTIONS(4819), 1, - anon_sym_external, - ACTIONS(4821), 1, - anon_sym_type, - ACTIONS(4823), 1, - anon_sym_exception, - ACTIONS(4825), 1, - anon_sym_module, - ACTIONS(4827), 1, - anon_sym_open, - ACTIONS(4829), 1, - anon_sym_include, - ACTIONS(4831), 1, - anon_sym_class, - ACTIONS(4833), 1, - sym_let_operator, - STATE(44), 1, - aux_sym__structure_repeat1, - STATE(3244), 1, - sym_directive, - STATE(3437), 1, - sym_attribute, - STATE(3461), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(437), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5102), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5109), 2, - sym__structure_item, - sym__item_extension, - STATE(5113), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [150122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2957), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2955), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150173] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4629), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4627), 19, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150224] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4788), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4841), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150275] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2965), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2963), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150326] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4845), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4843), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150377] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4849), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4847), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150428] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4853), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4851), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150479] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4857), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4855), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150530] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4861), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4859), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [150581] = 30, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4653), 1, - anon_sym_RPAREN, - ACTIONS(4863), 1, - anon_sym_module, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - STATE(3447), 1, - sym_attribute, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(6023), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [150682] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2917), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2915), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150733] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2656), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2654), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150784] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3103), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3101), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150835] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3107), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3105), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150886] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2905), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2903), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150937] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2817), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2815), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2837), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2835), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151039] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4871), 1, - anon_sym_STAR, - STATE(3455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4867), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [151092] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [151157] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(171), 1, - anon_sym_SEMI_SEMI, - ACTIONS(199), 1, - aux_sym_directive_token1, - ACTIONS(4817), 1, - anon_sym_let, - ACTIONS(4819), 1, - anon_sym_external, - ACTIONS(4821), 1, - anon_sym_type, - ACTIONS(4823), 1, - anon_sym_exception, - ACTIONS(4825), 1, - anon_sym_module, - ACTIONS(4827), 1, - anon_sym_open, - ACTIONS(4829), 1, - anon_sym_include, - ACTIONS(4831), 1, - anon_sym_class, - ACTIONS(4833), 1, - sym_let_operator, - STATE(47), 1, - aux_sym__structure_repeat1, - STATE(3244), 1, - sym_directive, - STATE(3457), 1, - sym_attribute, - STATE(3461), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(413), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5102), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5109), 2, - sym__structure_item, - sym__item_extension, - STATE(5113), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [151248] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4835), 1, - anon_sym_else, - STATE(2588), 1, - sym_else_clause, - STATE(3458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [151303] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2993), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2991), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151354] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2622), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151405] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4873), 1, - anon_sym_SEMI_SEMI, - ACTIONS(4876), 1, - anon_sym_let, - ACTIONS(4879), 1, - anon_sym_external, - ACTIONS(4882), 1, - anon_sym_type, - ACTIONS(4887), 1, - anon_sym_exception, - ACTIONS(4890), 1, - anon_sym_module, - ACTIONS(4893), 1, - anon_sym_open, - ACTIONS(4896), 1, - anon_sym_include, - ACTIONS(4899), 1, - anon_sym_class, - ACTIONS(4902), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(4905), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(4908), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4911), 1, - sym_let_operator, - ACTIONS(4914), 1, - aux_sym_directive_token1, - STATE(49), 1, - aux_sym__structure_repeat1, - STATE(3244), 1, - sym_directive, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(3461), 2, - sym_attribute, - aux_sym__structure_repeat2, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5102), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5109), 2, - sym__structure_item, - sym__item_extension, - STATE(5113), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [151494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2969), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2967), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151545] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(901), 1, - sym__pow_operator, - STATE(906), 1, - sym__mult_operator, - STATE(907), 1, - sym__add_operator, - STATE(908), 1, - sym__and_operator, - STATE(910), 1, - sym__or_operator, - STATE(911), 1, - sym__assign_operator, - STATE(3463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [151614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2881), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2879), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151665] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2843), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2841), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151716] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4919), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4917), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [151767] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(2552), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151818] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__rel_operator, - anon_sym_or, - [151892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4867), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [151942] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [152004] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [152086] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [152172] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4929), 1, - anon_sym_POUND, - STATE(3473), 1, - sym_attribute, - STATE(3618), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4923), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4927), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [152232] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4533), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4531), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152282] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(971), 1, - anon_sym_and, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [152368] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 1, - anon_sym_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [152454] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(961), 1, - anon_sym_and, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [152540] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 1, - anon_sym_and, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(977), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [152626] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3479), 1, - sym_attribute, - STATE(3763), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4933), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4935), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [152686] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4941), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4939), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [152736] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_or, - [152814] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(961), 1, - anon_sym_PIPE, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(959), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [152900] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_and, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [152986] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(1405), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3652), 4, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [153074] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_and, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [153156] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_and, - anon_sym_PIPE_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_or, - sym_and_operator, - [153234] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [153308] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [153382] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(987), 1, - anon_sym_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [153468] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(975), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [153540] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4945), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4943), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [153590] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(993), 1, - anon_sym_and, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [153672] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(987), 1, - anon_sym_and, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(985), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [153758] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4947), 1, - anon_sym_RPAREN, - ACTIONS(4949), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3494), 1, - sym_attribute, - STATE(8512), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4951), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [153834] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [153902] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [153966] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(971), 1, - anon_sym_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(969), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [154052] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4871), 1, - anon_sym_STAR, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3498), 1, - sym_attribute, - STATE(3763), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4959), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [154114] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [154176] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 9, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [154244] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4537), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4535), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154294] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3502), 1, - sym_attribute, - STATE(3763), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4919), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [154354] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(993), 1, - anon_sym_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [154436] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__rel_operator, - anon_sym_or, - [154510] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(975), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [154582] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [154646] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(1423), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_and, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3652), 4, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [154734] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [154798] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [154862] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4601), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4599), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154912] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4553), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4551), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154962] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3178), 1, - anon_sym_COLON, - STATE(3512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4473), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4475), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155014] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4561), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4559), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4959), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4957), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [155114] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4961), 1, - anon_sym_COLON, - STATE(3515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3184), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3182), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155165] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2875), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4511), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4513), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155263] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3079), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4547), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4549), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155361] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4232), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4064), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4066), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155459] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4319), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3007), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155557] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4503), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4505), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155606] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2941), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155655] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4279), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3099), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155753] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4595), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4597), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155802] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4481), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4483), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155851] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3083), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155900] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4837), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3531), 1, - sym_attribute, - STATE(6044), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [155995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2740), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2686), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2690), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156142] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1845), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3535), 1, - sym_attribute, - STATE(8023), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1849), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [156215] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4863), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3536), 1, - sym_attribute, - STATE(6023), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156310] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4164), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4166), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156359] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3180), 14, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3178), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [156408] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3075), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156457] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2809), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156506] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1373), 1, - anon_sym_COLON_COLON, - ACTIONS(1375), 1, - sym__concat_operator, - ACTIONS(1377), 1, - anon_sym_COMMA, - ACTIONS(1449), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_and, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4931), 1, - sym__rel_operator, - STATE(958), 1, - sym__assign_operator, - STATE(959), 1, - sym__or_operator, - STATE(960), 1, - sym__and_operator, - STATE(961), 1, - sym__add_operator, - STATE(965), 1, - sym__mult_operator, - STATE(970), 1, - sym__pow_operator, - STATE(3541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3652), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [156593] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4963), 1, - sym__identifier, - ACTIONS(4965), 1, - anon_sym_LPAREN, - ACTIONS(4967), 1, - anon_sym_private, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_LBRACK_GT, - ACTIONS(4973), 1, - anon_sym_LBRACK_LT, - ACTIONS(4975), 1, - anon_sym_LT, - ACTIONS(4977), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4981), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - STATE(3542), 1, - sym_attribute, - STATE(5125), 1, - sym__extension, - STATE(5139), 1, - sym__simple_type, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5579), 1, - sym__type_ext, - STATE(7290), 1, - sym_extended_module_path, - STATE(7434), 1, - sym_typed_label, - STATE(7437), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5244), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5300), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156688] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2646), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156737] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2045), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3544), 1, - sym_attribute, - STATE(7379), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(2051), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [156810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4060), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4062), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156859] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4517), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156908] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4985), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3547), 1, - sym_attribute, - STATE(6015), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157003] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4519), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4521), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4487), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4489), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157101] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4385), 1, - sym__identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_private, - ACTIONS(4991), 1, - anon_sym_LBRACK, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3550), 1, - sym_attribute, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4381), 1, - sym__type_ext, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4555), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4557), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157245] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4543), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4545), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157294] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4993), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3553), 1, - sym_attribute, - STATE(6061), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4132), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4134), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157438] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4523), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4525), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157487] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4623), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4625), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157536] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2035), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3557), 1, - sym_attribute, - STATE(7998), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(2041), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [157609] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4477), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4479), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157658] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2821), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157707] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4995), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3560), 1, - sym_attribute, - STATE(6045), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157802] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4421), 1, - sym__identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(4999), 1, - anon_sym_private, - ACTIONS(5001), 1, - anon_sym_LBRACK, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3561), 1, - sym_attribute, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4264), 1, - sym__type_ext, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157897] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4325), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4327), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157946] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4587), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4589), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4591), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4593), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4333), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4335), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2813), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158142] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4949), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3567), 1, - sym_attribute, - STATE(8512), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4951), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [158215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2736), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158264] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2744), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158313] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3362), 1, - sym__identifier, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5003), 1, - anon_sym_module, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3570), 1, - sym_attribute, - STATE(6054), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158408] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2889), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158457] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2857), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158506] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3095), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158555] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4491), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4493), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158604] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4495), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4497), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158653] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4499), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4501), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4507), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4509), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158751] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4563), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4565), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158800] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5005), 1, - anon_sym_COLON2, - STATE(3579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4319), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [158851] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4567), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4569), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158900] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4571), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4573), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158949] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(453), 1, - anon_sym_COLON_EQ, - ACTIONS(471), 1, - aux_sym__mult_operator_token1, - ACTIONS(475), 1, - sym__concat_operator, - ACTIONS(477), 1, - sym__rel_operator, - ACTIONS(479), 1, - anon_sym_PIPE_PIPE, - ACTIONS(583), 1, - anon_sym_DOT, - ACTIONS(4955), 1, - anon_sym_or, - STATE(3582), 1, - sym_attribute, - STATE(8307), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(459), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(467), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4953), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(473), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(591), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(8294), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [159022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4575), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4577), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159071] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4579), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4581), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4619), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4621), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159169] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4615), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4617), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159218] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4611), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4613), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159267] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4583), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4585), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159316] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4607), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4609), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159365] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4603), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4605), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3210), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [159463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(2949), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159512] = 28, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - ACTIONS(5007), 1, - anon_sym_AMP, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3593), 1, - sym_attribute, - STATE(5700), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159607] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4527), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(4529), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [159656] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3595), 1, - sym_attribute, - STATE(6905), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159748] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(961), 1, - anon_sym_PIPE, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(959), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [159832] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3597), 1, - sym_attribute, - STATE(6813), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159924] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3598), 1, - sym_attribute, - STATE(4315), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160016] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3599), 1, - sym_attribute, - STATE(6782), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160108] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3600), 1, - sym_attribute, - STATE(6809), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160200] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5011), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3601), 1, - sym_attribute, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4248), 1, - sym__type_ext, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160292] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4194), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4192), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [160340] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5015), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5013), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [160388] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5019), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5017), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [160436] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3605), 1, - sym_attribute, - STATE(6823), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160528] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4228), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4226), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [160576] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(993), 1, - anon_sym_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - [160656] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4206), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4204), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [160704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4287), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4285), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [160752] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3778), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3776), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [160800] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3611), 1, - sym_attribute, - STATE(6824), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160892] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3612), 1, - sym_attribute, - STATE(6659), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3111), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3109), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161032] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4252), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161080] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3615), 1, - sym_attribute, - STATE(5136), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161172] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3616), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - STATE(7149), 1, - sym__type_ext, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161264] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3617), 1, - sym_attribute, - STATE(6793), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5025), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5023), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [161404] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3619), 1, - sym_attribute, - STATE(5142), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161496] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5027), 1, - sym__identifier, - STATE(3620), 1, - sym_attribute, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5397), 1, - sym__extension, - STATE(5412), 1, - sym__simple_type, - STATE(6025), 1, - sym__type_ext, - STATE(7336), 1, - sym_extended_module_path, - STATE(7919), 1, - sym_typed_label, - STATE(7926), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5031), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5029), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [161636] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5035), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5033), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [161684] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3623), 1, - sym_attribute, - STATE(5760), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161776] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3624), 1, - sym_attribute, - STATE(6786), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161868] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5027), 1, - sym__identifier, - STATE(3625), 1, - sym_attribute, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5397), 1, - sym__extension, - STATE(5412), 1, - sym__simple_type, - STATE(6026), 1, - sym__type_ext, - STATE(7336), 1, - sym_extended_module_path, - STATE(7919), 1, - sym_typed_label, - STATE(7926), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161960] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3626), 1, - sym_attribute, - STATE(5138), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5039), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5037), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [162100] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3628), 1, - sym_attribute, - STATE(6004), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162192] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5011), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3629), 1, - sym_attribute, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4274), 1, - sym__type_ext, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162284] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3630), 1, - sym_attribute, - STATE(6751), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4275), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4273), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162424] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3196), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3194), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162472] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5043), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5041), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [162520] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1395), 1, - anon_sym_COLON_COLON, - ACTIONS(1399), 1, - sym__concat_operator, - ACTIONS(1401), 1, - anon_sym_COMMA, - ACTIONS(1473), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4921), 1, - sym__rel_operator, - STATE(1067), 1, - sym__pow_operator, - STATE(1068), 1, - sym__mult_operator, - STATE(1069), 1, - sym__add_operator, - STATE(1070), 1, - sym__and_operator, - STATE(1072), 1, - sym__or_operator, - STATE(1075), 1, - sym__assign_operator, - STATE(3634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3652), 3, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [162604] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3635), 1, - sym_attribute, - STATE(6046), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162696] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5047), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5045), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [162744] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4190), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4188), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162792] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3638), 1, - sym_attribute, - STATE(6489), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [162884] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5051), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5049), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [162932] = 25, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1475), 1, - anon_sym_COLON_GT, - ACTIONS(1477), 1, - anon_sym_RPAREN, - ACTIONS(1479), 1, - anon_sym_COLON2, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3640), 1, - sym_attribute, - STATE(7178), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [163020] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3641), 1, - sym_attribute, - STATE(6862), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163112] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4965), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_LBRACK_GT, - ACTIONS(4973), 1, - anon_sym_LBRACK_LT, - ACTIONS(4975), 1, - anon_sym_LT, - ACTIONS(4977), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4981), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - ACTIONS(5053), 1, - sym__identifier, - STATE(3642), 1, - sym_attribute, - STATE(5125), 1, - sym__extension, - STATE(5139), 1, - sym__simple_type, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5565), 1, - sym__type_ext, - STATE(7290), 1, - sym_extended_module_path, - STATE(7434), 1, - sym_typed_label, - STATE(7437), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5244), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5300), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163204] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [163270] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3644), 1, - sym_attribute, - STATE(5151), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163362] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [163424] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3646), 1, - sym_attribute, - STATE(5126), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163516] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3647), 1, - sym_attribute, - STATE(6550), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163608] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3648), 1, - sym_attribute, - STATE(6535), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163700] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4315), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4313), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163748] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5055), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3650), 1, - sym_attribute, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4349), 1, - sym__type_ext, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [163840] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4106), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4104), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163888] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5059), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5057), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [163936] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3653), 1, - sym_attribute, - STATE(6602), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164028] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3654), 1, - sym_attribute, - STATE(6596), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5063), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5061), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [164168] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [164230] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5067), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5065), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [164278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5071), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5069), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [164326] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3659), 1, - sym_attribute, - STATE(5839), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164418] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3660), 1, - sym_attribute, - STATE(6500), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164510] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5027), 1, - sym__identifier, - STATE(3661), 1, - sym_attribute, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5397), 1, - sym__extension, - STATE(5412), 1, - sym__simple_type, - STATE(5963), 1, - sym__type_ext, - STATE(7336), 1, - sym_extended_module_path, - STATE(7919), 1, - sym_typed_label, - STATE(7926), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164602] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4263), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4261), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [164650] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3663), 1, - sym_attribute, - STATE(6059), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3658), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3656), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [164790] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5075), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5073), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [164838] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4128), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [164886] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5011), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3667), 1, - sym_attribute, - STATE(3887), 1, - sym__simple_type, - STATE(3904), 1, - sym__extension, - STATE(4275), 1, - sym__type_ext, - STATE(7301), 1, - sym_extended_module_path, - STATE(7499), 1, - sym__tuple_type_ext, - STATE(7501), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [164978] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3668), 1, - sym_attribute, - STATE(6766), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [165070] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3669), 1, - sym_attribute, - STATE(5130), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [165162] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3670), 1, - sym_attribute, - STATE(6555), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [165254] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(3671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3119), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [165304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4102), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4100), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165352] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3673), 1, - sym_attribute, - STATE(5140), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [165444] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [165504] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1513), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3652), 2, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [165590] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(961), 1, - anon_sym_PIPE, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(959), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [165674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5079), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5077), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [165722] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3678), 1, - sym_attribute, - STATE(6895), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [165814] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(975), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [165884] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4244), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4242), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165932] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5055), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3681), 1, - sym_attribute, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4361), 1, - sym__type_ext, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166024] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3682), 1, - sym_attribute, - STATE(6572), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166116] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4344), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4342), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [166164] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3684), 1, - sym_attribute, - STATE(6076), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166256] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4354), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4352), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [166304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4323), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4321), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [166352] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3687), 1, - sym_attribute, - STATE(6745), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166444] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3688), 1, - sym_attribute, - STATE(6570), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166536] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3689), 1, - sym_attribute, - STATE(6568), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166628] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3690), 1, - sym_attribute, - STATE(6563), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166720] = 25, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1479), 1, - anon_sym_COLON2, - ACTIONS(1495), 1, - anon_sym_COLON_GT, - ACTIONS(1497), 1, - anon_sym_RPAREN, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3691), 1, - sym_attribute, - STATE(7332), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [166808] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3692), 1, - sym_attribute, - STATE(6409), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [166900] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(3693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(2847), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [166950] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3694), 1, - sym_attribute, - STATE(6420), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [167042] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4350), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4348), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [167090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5083), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5081), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [167138] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(987), 1, - anon_sym_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(985), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [167222] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3698), 1, - sym_attribute, - STATE(6677), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [167314] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3699), 1, - sym_attribute, - STATE(6532), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [167406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4162), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4160), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [167454] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(971), 1, - anon_sym_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(969), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [167538] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5087), 1, - anon_sym_let, - STATE(3702), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4594), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5085), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [167606] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3703), 1, - sym_attribute, - STATE(6850), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [167698] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [167770] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3705), 1, - sym_attribute, - STATE(6048), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [167862] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [167934] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3707), 1, - sym_attribute, - STATE(4323), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168026] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4965), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_LBRACK_GT, - ACTIONS(4973), 1, - anon_sym_LBRACK_LT, - ACTIONS(4975), 1, - anon_sym_LT, - ACTIONS(4977), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4981), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - ACTIONS(5053), 1, - sym__identifier, - STATE(3708), 1, - sym_attribute, - STATE(5125), 1, - sym__extension, - STATE(5139), 1, - sym__simple_type, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5526), 1, - sym__type_ext, - STATE(7290), 1, - sym_extended_module_path, - STATE(7434), 1, - sym_typed_label, - STATE(7437), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5244), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5300), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168118] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(997), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(995), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168166] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3710), 1, - sym_attribute, - STATE(6013), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168258] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5091), 1, - anon_sym_let, - STATE(3711), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4507), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5089), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [168326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5095), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5093), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [168374] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3713), 1, - sym_attribute, - STATE(6395), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168466] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3714), 1, - sym_attribute, - STATE(6686), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4248), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4246), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168606] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3716), 1, - sym_attribute, - STATE(6092), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168698] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3717), 1, - sym_attribute, - STATE(6902), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [168790] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4259), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4257), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168838] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(971), 1, - anon_sym_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(969), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [168922] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5099), 1, - anon_sym_let, - STATE(3720), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4466), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5097), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [168990] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3652), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169038] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 1, - anon_sym_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(977), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [169122] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3723), 1, - sym_attribute, - STATE(6908), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [169214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4299), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4297), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3192), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3190), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [169310] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1043), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1039), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169358] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(931), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [169442] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - anon_sym_or, - [169518] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3729), 1, - sym_attribute, - STATE(6910), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [169610] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3730), 1, - sym_attribute, - STATE(6837), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [169702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4182), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4180), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169750] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(1519), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_PIPE, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3652), 2, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [169836] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3733), 1, - sym_attribute, - STATE(6431), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [169928] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5103), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5101), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [169976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5107), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5105), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [170024] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [170104] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [170184] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_or, - [170260] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5111), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5109), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [170308] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5115), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5113), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [170356] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5027), 1, - sym__identifier, - STATE(3741), 1, - sym_attribute, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5397), 1, - sym__extension, - STATE(5412), 1, - sym__simple_type, - STATE(6027), 1, - sym__type_ext, - STATE(7336), 1, - sym_extended_module_path, - STATE(7919), 1, - sym_typed_label, - STATE(7926), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [170448] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3742), 1, - sym_attribute, - STATE(6472), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [170540] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5055), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3514), 1, - sym__type, - STATE(3743), 1, - sym_attribute, - STATE(3957), 1, - sym__simple_type, - STATE(3966), 1, - sym__extension, - STATE(4322), 1, - sym__type_ext, - STATE(7254), 1, - sym_extended_module_path, - STATE(8332), 1, - sym_typed_label, - STATE(8516), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [170632] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [170698] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [170758] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4267), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4265), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170806] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3747), 1, - sym_attribute, - STATE(6889), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [170898] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [170960] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3749), 1, - sym_attribute, - STATE(6865), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4283), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4281), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171100] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [171162] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4965), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_LBRACK_GT, - ACTIONS(4973), 1, - anon_sym_LBRACK_LT, - ACTIONS(4975), 1, - anon_sym_LT, - ACTIONS(4977), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4981), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - ACTIONS(5053), 1, - sym__identifier, - STATE(3752), 1, - sym_attribute, - STATE(5125), 1, - sym__extension, - STATE(5139), 1, - sym__simple_type, - STATE(5292), 1, - sym__tuple_type, - STATE(5331), 1, - sym_tuple_type, - STATE(5372), 1, - sym__type, - STATE(5584), 1, - sym__type_ext, - STATE(7290), 1, - sym_extended_module_path, - STATE(7434), 1, - sym_typed_label, - STATE(7437), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5244), 2, - sym_extension, - sym_quoted_extension, - STATE(5415), 2, - sym_function_type, - sym_aliased_type, - STATE(5300), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171254] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3753), 1, - sym_attribute, - STATE(5146), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171346] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3754), 1, - sym_attribute, - STATE(6590), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171438] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3755), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - STATE(7328), 1, - sym__type_ext, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171530] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__rel_operator, - anon_sym_or, - [171602] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__rel_operator, - anon_sym_or, - [171674] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(979), 1, - anon_sym_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(977), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [171758] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(975), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [171828] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4084), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4082), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171876] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(993), 1, - anon_sym_PIPE, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - [171956] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(987), 1, - anon_sym_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(985), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172040] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5119), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5117), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [172088] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5123), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5121), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [172136] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1459), 1, - anon_sym_COLON_COLON, - ACTIONS(1461), 1, - sym__concat_operator, - ACTIONS(1469), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5021), 1, - sym__rel_operator, - STATE(885), 1, - sym__assign_operator, - STATE(949), 1, - sym__or_operator, - STATE(1025), 1, - sym__pow_operator, - STATE(1049), 1, - sym__mult_operator, - STATE(1059), 1, - sym__add_operator, - STATE(1060), 1, - sym__and_operator, - STATE(3765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(931), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172220] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3766), 1, - sym_attribute, - STATE(4004), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [172312] = 27, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3364), 1, - anon_sym_QMARK, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4631), 1, - sym__identifier, - STATE(3455), 1, - sym__tuple_type, - STATE(3466), 1, - sym_tuple_type, - STATE(3498), 1, - sym__extension, - STATE(3502), 1, - sym__simple_type, - STATE(3514), 1, - sym__type, - STATE(3767), 1, - sym_attribute, - STATE(6878), 1, - sym__type_ext, - STATE(6987), 1, - sym_extended_module_path, - STATE(8180), 1, - sym_typed_label, - STATE(8182), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3469), 2, - sym_function_type, - sym_aliased_type, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [172404] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(933), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [172469] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1521), 1, - anon_sym_RBRACK, - ACTIONS(1523), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3769), 1, - sym_attribute, - STATE(6456), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172554] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(2913), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [172601] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1593), 1, - anon_sym_RBRACK, - ACTIONS(1595), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3771), 1, - sym_attribute, - STATE(6493), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172686] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1561), 1, - anon_sym_RBRACK, - ACTIONS(1563), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3772), 1, - sym_attribute, - STATE(6901), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172771] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1601), 1, - anon_sym_RBRACK, - ACTIONS(1603), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3773), 1, - sym_attribute, - STATE(6825), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172856] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(969), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172937] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1623), 1, - anon_sym_SEMI, - ACTIONS(1625), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3775), 1, - sym_attribute, - STATE(6448), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(2871), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173069] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2690), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173116] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2865), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(2867), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173163] = 20, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(991), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - [173240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2857), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173287] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5129), 1, - anon_sym_POUND, - STATE(3781), 1, - sym_attribute, - STATE(3980), 1, - sym_type_constructor_path, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4923), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4927), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [173344] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2744), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173391] = 20, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(931), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173468] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(959), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173549] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1529), 1, - anon_sym_SEMI, - ACTIONS(1531), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3785), 1, - sym_attribute, - STATE(6746), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173634] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1631), 1, - anon_sym_SEMI, - ACTIONS(1633), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3786), 1, - sym_attribute, - STATE(6883), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173719] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(977), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173800] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [173861] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1581), 1, - anon_sym_SEMI, - ACTIONS(1583), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3789), 1, - sym_attribute, - STATE(6642), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [173946] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3095), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [173993] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(933), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(931), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [174054] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [174125] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(933), 1, - anon_sym_PIPE_PIPE, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - anon_sym_or, - [174200] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1613), 1, - anon_sym_SEMI, - ACTIONS(1615), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3794), 1, - sym_attribute, - STATE(6913), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174285] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1569), 1, - anon_sym_RBRACK, - ACTIONS(1571), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3795), 1, - sym_attribute, - STATE(6616), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174370] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1617), 1, - anon_sym_SEMI, - ACTIONS(1619), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3796), 1, - sym_attribute, - STATE(6603), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174455] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(983), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(981), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [174514] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1585), 1, - anon_sym_SEMI, - ACTIONS(1587), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3798), 1, - sym_attribute, - STATE(6640), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174599] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1565), 1, - anon_sym_RBRACK, - ACTIONS(1567), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3799), 1, - sym_attribute, - STATE(6667), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174684] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(1621), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(3652), 2, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174767] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - ACTIONS(5137), 1, - anon_sym_end, - STATE(3801), 1, - sym_attribute, - STATE(3829), 1, - aux_sym__signature_repeat1, - STATE(3843), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - STATE(8228), 1, - sym__signature, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [174850] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1553), 1, - anon_sym_SEMI, - ACTIONS(1555), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3802), 1, - sym_attribute, - STATE(6820), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174935] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1597), 1, - anon_sym_RBRACK, - ACTIONS(1599), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3803), 1, - sym_attribute, - STATE(6668), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175020] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1525), 1, - anon_sym_SEMI, - ACTIONS(1527), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3804), 1, - sym_attribute, - STATE(6462), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175105] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3396), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3398), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - STATE(3805), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4795), 2, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4793), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [175166] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(933), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(931), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [175237] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4064), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4066), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [175284] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1635), 1, - anon_sym_RBRACK, - ACTIONS(1637), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3808), 1, - sym_attribute, - STATE(6419), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175369] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5139), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5142), 1, - anon_sym_external, - ACTIONS(5145), 1, - anon_sym_type, - ACTIONS(5150), 1, - anon_sym_exception, - ACTIONS(5153), 1, - anon_sym_module, - ACTIONS(5156), 1, - anon_sym_open, - ACTIONS(5159), 1, - anon_sym_include, - ACTIONS(5162), 1, - anon_sym_class, - ACTIONS(5165), 1, - anon_sym_val, - ACTIONS(5168), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(5171), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(5174), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - STATE(4026), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5148), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(3809), 2, - sym_attribute, - aux_sym__signature_repeat1, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [175448] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1557), 1, - anon_sym_SEMI, - ACTIONS(1559), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3810), 1, - sym_attribute, - STATE(6692), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175533] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1573), 1, - anon_sym_SEMI, - ACTIONS(1575), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3811), 1, - sym_attribute, - STATE(6842), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175618] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2889), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [175665] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1589), 1, - anon_sym_SEMI, - ACTIONS(1591), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3813), 1, - sym_attribute, - STATE(6477), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175750] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(985), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175831] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1549), 1, - anon_sym_RBRACK, - ACTIONS(1551), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3815), 1, - sym_attribute, - STATE(6385), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [175916] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(975), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(973), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [175985] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1627), 1, - anon_sym_RBRACK, - ACTIONS(1629), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3817), 1, - sym_attribute, - STATE(6881), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176070] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1533), 1, - anon_sym_RBRACK, - ACTIONS(1535), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3818), 1, - sym_attribute, - STATE(6734), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176155] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1577), 1, - anon_sym_RBRACK, - ACTIONS(1579), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3819), 1, - sym_attribute, - STATE(6634), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4060), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4062), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176287] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1545), 1, - anon_sym_SEMI, - ACTIONS(1547), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3821), 1, - sym_attribute, - STATE(6388), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4945), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4943), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [176419] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(1541), 1, - anon_sym_SEMI, - ACTIONS(1543), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3823), 1, - sym_attribute, - STATE(6545), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176504] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(931), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176585] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1639), 1, - anon_sym_RBRACK, - ACTIONS(1641), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3825), 1, - sym_attribute, - STATE(6827), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176670] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5177), 1, - anon_sym_DOT_DOT, - STATE(3826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2061), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176719] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3099), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176766] = 24, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1537), 1, - anon_sym_RBRACK, - ACTIONS(1539), 1, - anon_sym_SEMI, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3828), 1, - sym_attribute, - STATE(6539), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [176851] = 22, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - STATE(3809), 1, - aux_sym__signature_repeat1, - STATE(3829), 1, - sym_attribute, - STATE(3847), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5179), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [176932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2686), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176979] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - ACTIONS(5181), 1, - anon_sym_end, - STATE(3829), 1, - aux_sym__signature_repeat1, - STATE(3831), 1, - sym_attribute, - STATE(3843), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - STATE(7453), 1, - sym__signature, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [177062] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2736), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3007), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177156] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1451), 1, - anon_sym_COMMA, - ACTIONS(1453), 1, - anon_sym_COLON_COLON, - ACTIONS(1455), 1, - sym__concat_operator, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5009), 1, - sym__rel_operator, - STATE(1032), 1, - sym__assign_operator, - STATE(1036), 1, - sym__or_operator, - STATE(1037), 1, - sym__and_operator, - STATE(1038), 1, - sym__add_operator, - STATE(1039), 1, - sym__mult_operator, - STATE(1040), 1, - sym__pow_operator, - STATE(3834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1645), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [177236] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5183), 1, - aux_sym_attribute_id_token1, - STATE(3835), 1, - sym_attribute, - STATE(3849), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3964), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(3962), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177286] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4070), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4072), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177332] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5187), 1, - anon_sym_POUND, - STATE(3837), 1, - sym_attribute, - STATE(4009), 1, - sym_type_constructor_path, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4923), 11, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(4927), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [177388] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5189), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(2849), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [177434] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5139), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5145), 1, - anon_sym_type, - ACTIONS(5148), 1, - ts_builtin_sym_end, - ACTIONS(5153), 1, - anon_sym_module, - ACTIONS(5156), 1, - anon_sym_open, - ACTIONS(5159), 1, - anon_sym_include, - ACTIONS(5165), 1, - anon_sym_val, - ACTIONS(5168), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(5171), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(5174), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5191), 1, - anon_sym_external, - ACTIONS(5194), 1, - anon_sym_exception, - ACTIONS(5197), 1, - anon_sym_class, - STATE(3997), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3839), 2, - sym_attribute, - aux_sym__signature_repeat1, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [177512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4184), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4186), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4172), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4174), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177604] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4333), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4335), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177650] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - STATE(3843), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5179), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [177728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5200), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3121), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [177774] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3079), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177820] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4086), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4088), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177866] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - STATE(3847), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5202), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [177944] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2063), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2061), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177990] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5204), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3849), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(3988), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(3986), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178038] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4232), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178084] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4325), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4327), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178130] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2821), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178176] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4170), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178222] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4108), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4110), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178268] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1605), 1, - anon_sym_COMMA, - ACTIONS(1607), 1, - anon_sym_COLON_COLON, - ACTIONS(1609), 1, - sym__concat_operator, - ACTIONS(1647), 1, - anon_sym_SEMI, - ACTIONS(3652), 1, - anon_sym_do, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(5125), 1, - sym__rel_operator, - STATE(882), 1, - sym__assign_operator, - STATE(884), 1, - sym__or_operator, - STATE(918), 1, - sym__and_operator, - STATE(925), 1, - sym__add_operator, - STATE(935), 1, - sym__mult_operator, - STATE(938), 1, - sym__pow_operator, - STATE(3855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [178350] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4074), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4076), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178396] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4218), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4220), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178442] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4943), 15, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4945), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [178488] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3083), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178534] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4148), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4150), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178580] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4214), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4216), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178626] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4222), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4224), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4234), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4236), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178718] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4176), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4178), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178764] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1273), 1, - sym__rel_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1651), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [178844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2853), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178890] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4078), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4080), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178936] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4112), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4114), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178982] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5207), 1, - anon_sym_else, - STATE(3609), 1, - sym_else_clause, - STATE(3869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [179032] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1643), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [179112] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3396), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3398), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4774), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - STATE(3871), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4772), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [179172] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3352), 1, - anon_sym_COLON_COLON, - STATE(3872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4144), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4146), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179220] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(1649), 1, - anon_sym_SEMI, - ACTIONS(3654), 1, - anon_sym_DASH_GT, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [179302] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2646), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179348] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4152), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4154), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179394] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4132), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4134), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179440] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4090), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4092), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4124), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4126), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179532] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4269), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4271), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179578] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3346), 1, - anon_sym_COMMA, - ACTIONS(3352), 1, - anon_sym_COLON_COLON, - STATE(3880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4120), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4122), 19, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179628] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5207), 1, - anon_sym_else, - STATE(3662), 1, - sym_else_clause, - STATE(3881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [179678] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4136), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4138), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179724] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3883), 1, - sym_attribute, - STATE(3964), 1, - sym_type_constructor_path, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4933), 12, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4935), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [179780] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5211), 1, - anon_sym_PIPE, - STATE(3884), 1, - sym_attribute, - STATE(3893), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [179830] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3352), 1, - anon_sym_COLON_COLON, - STATE(3885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4116), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4118), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179878] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4140), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4142), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179924] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3887), 1, - sym_attribute, - STATE(3964), 1, - sym_type_constructor_path, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 12, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4919), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [179980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2803), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180026] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2740), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180072] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2875), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180118] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5211), 1, - anon_sym_PIPE, - STATE(3891), 1, - sym_attribute, - STATE(3898), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [180168] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4329), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4331), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180214] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5211), 1, - anon_sym_PIPE, - STATE(3893), 1, - sym_attribute, - STATE(3899), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [180264] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5183), 1, - aux_sym_attribute_id_token1, - STATE(3835), 1, - aux_sym_attribute_id_repeat1, - STATE(3894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3995), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(3993), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [180314] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2941), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180360] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4309), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4311), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2813), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180452] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5211), 1, - anon_sym_PIPE, - STATE(3898), 1, - sym_attribute, - STATE(3899), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [180502] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5213), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3899), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [180550] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2949), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180596] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4164), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4166), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180642] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3075), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180688] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4156), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4158), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180734] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4871), 1, - anon_sym_STAR, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3904), 1, - sym_attribute, - STATE(3964), 1, - sym_type_constructor_path, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(4959), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [180792] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4301), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4303), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180838] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1645), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [180918] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4279), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180964] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - aux_sym__mult_operator_token1, - ACTIONS(965), 1, - anon_sym_COLON_EQ, - ACTIONS(967), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1269), 1, - anon_sym_COLON_COLON, - ACTIONS(1271), 1, - sym__concat_operator, - ACTIONS(1279), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_or, - ACTIONS(4721), 1, - sym__rel_operator, - STATE(902), 1, - sym__mult_operator, - STATE(903), 1, - sym__add_operator, - STATE(904), 1, - sym__and_operator, - STATE(905), 1, - sym__or_operator, - STATE(915), 1, - sym__pow_operator, - STATE(932), 1, - sym__assign_operator, - STATE(3908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(949), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1653), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(943), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(3997), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(947), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [181044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4289), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4291), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [181090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4319), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [181136] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4196), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4198), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [181182] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2809), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [181228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4238), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4240), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [181274] = 22, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11), 1, - anon_sym_external, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(15), 1, - anon_sym_exception, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5179), 1, - ts_builtin_sym_end, - STATE(3839), 1, - aux_sym__signature_repeat1, - STATE(3914), 1, - sym_attribute, - STATE(3952), 1, - aux_sym__structure_repeat1, - STATE(5137), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [181354] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5220), 1, - anon_sym_DOT, - STATE(3915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5218), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5216), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [181402] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5224), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5222), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [181447] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5029), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5031), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181492] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5101), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5103), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5081), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5083), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181582] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5069), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5071), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181627] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11), 1, - anon_sym_external, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(15), 1, - anon_sym_exception, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5179), 1, - ts_builtin_sym_end, - STATE(3921), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [181704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5228), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5226), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [181749] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_PIPE, - STATE(3923), 1, - sym_attribute, - STATE(3928), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [181798] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5234), 1, - anon_sym_let, - STATE(3924), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4893), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5232), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [181863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5065), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5067), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181908] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5061), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5063), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [181953] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5236), 1, - anon_sym_else, - STATE(3662), 1, - sym_else_clause, - STATE(3927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [182002] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_PIPE, - STATE(3928), 1, - sym_attribute, - STATE(3956), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182051] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_PIPE, - STATE(3929), 1, - sym_attribute, - STATE(3940), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5057), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5059), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182145] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5240), 1, - anon_sym_let, - STATE(3931), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4793), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5238), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [182210] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5077), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5079), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182255] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5242), 1, - anon_sym_else, - STATE(3609), 1, - sym_else_clause, - STATE(3933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5041), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5043), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182349] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5246), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5244), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [182394] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5242), 1, - anon_sym_else, - STATE(3662), 1, - sym_else_clause, - STATE(3936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182443] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - anon_sym_let, - STATE(3937), 1, - sym_attribute, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4339), 1, - sym_item_attribute, - STATE(4661), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5248), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [182508] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3938), 1, - sym_attribute, - STATE(3996), 1, - sym_type_constructor_path, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4933), 10, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(4935), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [182563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5013), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5015), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182608] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_PIPE, - STATE(3940), 1, - sym_attribute, - STATE(3956), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182657] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5045), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5047), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5049), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5051), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182747] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4319), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [182792] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5256), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5254), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [182837] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3079), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [182882] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5121), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5123), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182927] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5093), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5095), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [182972] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5005), 1, - anon_sym_COLON2, - STATE(3948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4317), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183019] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5218), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5216), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [183064] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5121), 12, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5123), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183111] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(2941), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [183156] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11), 1, - anon_sym_external, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(15), 1, - anon_sym_exception, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5202), 1, - ts_builtin_sym_end, - STATE(3952), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [183233] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3083), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [183278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(2740), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [183323] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5109), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5111), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183368] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5260), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3956), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [183415] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3957), 1, - sym_attribute, - STATE(3996), 1, - sym_type_constructor_path, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 10, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(4919), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [183470] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(2809), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [183515] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5265), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5263), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [183560] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(2646), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [183605] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5105), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5107), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183650] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5269), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5267), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [183695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5073), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5075), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183740] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5117), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5119), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [183785] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5273), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5271), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [183830] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4871), 1, - anon_sym_STAR, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3966), 1, - sym_attribute, - STATE(3996), 1, - sym_type_constructor_path, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 9, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(4959), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [183887] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3988), 10, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - aux_sym_attribute_id_token1, - ACTIONS(3986), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [183932] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5277), 1, - anon_sym_let, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(3968), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4774), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5275), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [183997] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5017), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5019), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [184042] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5236), 1, - anon_sym_else, - STATE(3609), 1, - sym_else_clause, - STATE(3970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184091] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5113), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5115), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [184136] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5037), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5039), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [184181] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5281), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5279), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184226] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4279), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [184271] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5285), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5283), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184316] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(4778), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4780), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5289), 1, - anon_sym_let, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(3976), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4937), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5287), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184381] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5293), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5291), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5297), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5295), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184471] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5301), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5299), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184516] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5023), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5025), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [184561] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5033), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5035), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [184606] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3077), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184650] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5069), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5071), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184694] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2644), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5081), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5083), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184782] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4279), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4277), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184826] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2807), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4317), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [184914] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(2941), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184958] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3079), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [185002] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4815), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4813), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [185046] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3083), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [185090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5077), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5079), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185134] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3396), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3398), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(3994), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4774), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5275), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [185196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5037), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5039), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5117), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5119), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185284] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(11), 1, - anon_sym_external, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(15), 1, - anon_sym_exception, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(23), 1, - anon_sym_class, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - STATE(3997), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [185358] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5017), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5019), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185402] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5005), 1, - anon_sym_COLON2, - STATE(3999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 12, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4317), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185448] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(2740), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [185492] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5105), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5107), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185536] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5049), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5051), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185580] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5013), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5015), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185624] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5307), 1, - anon_sym_LBRACK_AT_AT, - STATE(4004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5303), 27, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [185670] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3396), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3398), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4005), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4661), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5248), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [185732] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5093), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5095), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185776] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5109), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5111), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185820] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5033), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5035), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5023), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5025), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185908] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3396), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3398), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(4010), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4793), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5238), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [185970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(2809), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [186014] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5045), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5047), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186058] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5121), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5123), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2738), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186146] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(2646), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [186190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5065), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5067), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186234] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5101), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5103), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5057), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5059), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186322] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5113), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5115), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186366] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5029), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5031), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3081), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186454] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5061), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5063), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5073), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5075), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186542] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2939), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186586] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5041), 13, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5043), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [186630] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9), 1, - anon_sym_SEMI_SEMI, - ACTIONS(13), 1, - anon_sym_type, - ACTIONS(17), 1, - anon_sym_module, - ACTIONS(19), 1, - anon_sym_open, - ACTIONS(21), 1, - anon_sym_include, - ACTIONS(25), 1, - anon_sym_val, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5131), 1, - anon_sym_external, - ACTIONS(5133), 1, - anon_sym_exception, - ACTIONS(5135), 1, - anon_sym_class, - STATE(4026), 1, - sym_attribute, - STATE(5087), 1, - aux_sym__structure_repeat1, - STATE(5148), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5128), 2, - sym__signature_item, - sym__item_extension, - STATE(5129), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [186704] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4027), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(5305), 1, - sym_type_variable, - STATE(6206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7336), 1, - sym_extended_module_path, - STATE(7686), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5515), 2, - sym__simple_type, - sym__extension, - STATE(5433), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [186783] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4028), 1, - sym_attribute, - STATE(4232), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6180), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7301), 1, - sym_extended_module_path, - STATE(8246), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4198), 2, - sym__simple_type, - sym__extension, - STATE(3946), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [186862] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5313), 1, - anon_sym_else, - STATE(2588), 1, - sym_else_clause, - STATE(4029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [186909] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5317), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5315), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [186952] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4031), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5319), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5321), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [187011] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4032), 1, - sym_attribute, - STATE(4232), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6352), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7301), 1, - sym_extended_module_path, - STATE(8608), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4190), 2, - sym__simple_type, - sym__extension, - STATE(3946), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187090] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(3950), 1, - sym_type_variable, - STATE(4033), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6249), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6987), 1, - sym_extended_module_path, - STATE(7489), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4344), 2, - sym__simple_type, - sym__extension, - STATE(3764), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187169] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5331), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5333), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5329), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [187214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5335), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5333), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [187257] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4036), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(5305), 1, - sym_type_variable, - STATE(6161), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7336), 1, - sym_extended_module_path, - STATE(7874), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5516), 2, - sym__simple_type, - sym__extension, - STATE(5433), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187336] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4037), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5339), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [187395] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5341), 1, - anon_sym_else, - STATE(2656), 1, - sym_else_clause, - STATE(4038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [187442] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4039), 1, - sym_attribute, - STATE(4171), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6244), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7254), 1, - sym_extended_module_path, - STATE(7404), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4040), 2, - sym__simple_type, - sym__extension, - STATE(4013), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187521] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4040), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5345), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5347), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [187580] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5349), 1, - anon_sym_PIPE, - STATE(4041), 1, - sym_attribute, - STATE(4069), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [187627] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4042), 1, - sym_attribute, - STATE(4363), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6130), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7241), 1, - sym_extended_module_path, - STATE(8068), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4282), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187706] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5349), 1, - anon_sym_PIPE, - STATE(4043), 1, - sym_attribute, - STATE(4053), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [187753] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4044), 1, - sym_attribute, - STATE(4171), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6332), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7254), 1, - sym_extended_module_path, - STATE(7595), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4062), 2, - sym__simple_type, - sym__extension, - STATE(4013), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187832] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5371), 1, - anon_sym_PIPE, - STATE(4045), 1, - sym_attribute, - STATE(4068), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [187879] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4046), 1, - sym_attribute, - STATE(4363), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6165), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7241), 1, - sym_extended_module_path, - STATE(7860), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4273), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [187958] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5375), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5373), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [188001] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5349), 1, - anon_sym_PIPE, - STATE(4043), 1, - aux_sym__match_cases_repeat1, - STATE(4048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4295), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4293), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188048] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4049), 1, - sym_attribute, - STATE(4363), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6227), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7241), 1, - sym_extended_module_path, - STATE(7549), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4263), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188127] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5371), 1, - anon_sym_PIPE, - STATE(4050), 1, - sym_attribute, - STATE(4060), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188174] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4051), 1, - sym_attribute, - STATE(4171), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6310), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7254), 1, - sym_extended_module_path, - STATE(7367), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4031), 2, - sym__simple_type, - sym__extension, - STATE(4013), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188253] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4052), 1, - sym_attribute, - STATE(4232), 1, - sym_type_variable, - STATE(4392), 1, - sym_record_declaration, - STATE(6261), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7301), 1, - sym_extended_module_path, - STATE(8410), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4163), 2, - sym__simple_type, - sym__extension, - STATE(3946), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188332] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5377), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4053), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188377] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(5386), 1, - anon_sym_DOT, - STATE(4054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5380), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [188424] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4055), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5390), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [188483] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(3950), 1, - sym_type_variable, - STATE(4056), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6158), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6987), 1, - sym_extended_module_path, - STATE(8073), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4366), 2, - sym__simple_type, - sym__extension, - STATE(3764), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188562] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5341), 1, - anon_sym_else, - STATE(2639), 1, - sym_else_clause, - STATE(4057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188609] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(3950), 1, - sym_type_variable, - STATE(4058), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6359), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6987), 1, - sym_extended_module_path, - STATE(7845), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4377), 2, - sym__simple_type, - sym__extension, - STATE(3764), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188688] = 22, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5392), 1, - sym__identifier, - ACTIONS(5394), 1, - anon_sym_let, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5398), 1, - anon_sym_BANG, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_fun, - STATE(1231), 1, - sym__simple_class_expression, - STATE(4059), 1, - sym_attribute, - STATE(5306), 1, - sym__class_expression_ext, - STATE(7473), 1, - sym_module_path, - STATE(8078), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [188765] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5404), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4060), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4252), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4945), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4943), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [188853] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4062), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5407), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5409), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [188912] = 23, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4063), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(5305), 1, - sym_type_variable, - STATE(6186), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7336), 1, - sym_extended_module_path, - STATE(7785), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5520), 2, - sym__simple_type, - sym__extension, - STATE(5433), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [188991] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5315), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5413), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5411), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [189036] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5371), 1, - anon_sym_PIPE, - STATE(4050), 1, - aux_sym__match_cases_repeat1, - STATE(4065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [189083] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4066), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5417), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [189142] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5313), 1, - anon_sym_else, - STATE(2580), 1, - sym_else_clause, - STATE(4067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [189189] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5371), 1, - anon_sym_PIPE, - STATE(4060), 1, - aux_sym__match_cases_repeat1, - STATE(4068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4210), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4208), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [189236] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5349), 1, - anon_sym_PIPE, - STATE(4053), 1, - aux_sym__match_cases_repeat1, - STATE(4069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4307), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4305), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [189283] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4070), 1, - sym_attribute, - STATE(4528), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189357] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4071), 1, - sym_attribute, - STATE(4208), 1, - sym__class_expression_ext, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189431] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4072), 1, - sym_attribute, - STATE(4207), 1, - sym__class_expression_ext, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189505] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4073), 1, - sym_attribute, - STATE(4572), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189579] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4074), 1, - sym_attribute, - STATE(4599), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189653] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5392), 1, - sym__identifier, - ACTIONS(5394), 1, - anon_sym_let, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_fun, - STATE(1231), 1, - sym__simple_class_expression, - STATE(4075), 1, - sym_attribute, - STATE(4207), 1, - sym__class_expression_ext, - STATE(7473), 1, - sym_module_path, - STATE(8078), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189727] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4076), 1, - sym_attribute, - STATE(4596), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189801] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4077), 1, - sym_attribute, - STATE(4596), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [189875] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5459), 1, - anon_sym_DOT_DOT, - ACTIONS(5461), 1, - anon_sym_GT, - STATE(4078), 1, - sym_attribute, - STATE(6736), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5629), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189949] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4079), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5339), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [190007] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4080), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4546), 1, - sym__constructor_argument, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4367), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190081] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5463), 1, - anon_sym_DOT_DOT, - ACTIONS(5465), 1, - anon_sym_GT, - STATE(4081), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190155] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5467), 1, - anon_sym_DOT_DOT, - ACTIONS(5469), 1, - anon_sym_GT, - STATE(4082), 1, - sym_attribute, - STATE(6836), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5604), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190229] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4083), 1, - sym_attribute, - STATE(4578), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190303] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4084), 1, - sym_attribute, - STATE(4576), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190377] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_STAR, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4085), 1, - sym_attribute, - STATE(4614), 1, - aux_sym__constructor_argument_repeat1, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5323), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5471), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [190433] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5475), 1, - anon_sym_DOT_DOT, - ACTIONS(5477), 1, - anon_sym_GT, - STATE(4086), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190507] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4087), 1, - sym_attribute, - STATE(4506), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190581] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4088), 1, - sym_attribute, - STATE(4599), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190655] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4089), 1, - sym_attribute, - STATE(4207), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190729] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4090), 1, - sym_attribute, - STATE(4551), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190803] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4091), 1, - sym_attribute, - STATE(4599), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190877] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4092), 1, - sym_attribute, - STATE(4208), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [190951] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4093), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(8131), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4079), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191025] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5481), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5479), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [191067] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5487), 1, - anon_sym_LPAREN, - STATE(4253), 1, - sym_module_parameter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4095), 2, - sym_attribute, - aux_sym_module_binding_repeat1, - ACTIONS(5485), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5483), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [191113] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5490), 1, - anon_sym_DOT_DOT, - ACTIONS(5492), 1, - anon_sym_GT, - STATE(4096), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191187] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4097), 1, - sym_attribute, - STATE(6726), 1, - sym__class_expression_ext, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191261] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4098), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4564), 1, - sym__constructor_argument, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4233), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191335] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4099), 1, - sym_attribute, - STATE(4619), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191409] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4100), 1, - sym_attribute, - STATE(4547), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191483] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4101), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7067), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191559] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4102), 1, - sym_attribute, - STATE(4424), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191633] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4094), 1, - sym__class_expression_ext, - STATE(4103), 1, - sym_attribute, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191707] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4104), 1, - sym_attribute, - STATE(4455), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191781] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4105), 1, - sym_attribute, - STATE(4424), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [191855] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4106), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6987), 1, - sym_extended_module_path, - STATE(8127), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4345), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191929] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4107), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(8172), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4149), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192003] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4108), 1, - sym_attribute, - STATE(4548), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192077] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4109), 1, - sym_attribute, - STATE(4619), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192151] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4110), 1, - sym_attribute, - STATE(4548), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192225] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4111), 1, - sym_attribute, - STATE(7316), 1, - sym__constructor_argument, - STATE(7323), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5538), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192299] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4112), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7077), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192375] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4113), 1, - sym_attribute, - STATE(4208), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192449] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4114), 1, - sym_attribute, - STATE(4578), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192523] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4115), 1, - sym_attribute, - STATE(4455), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192597] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5496), 1, - anon_sym_else, - STATE(2580), 1, - sym_else_clause, - STATE(4116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4096), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4094), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [192643] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4117), 1, - sym_attribute, - STATE(4576), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192717] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4118), 1, - sym_attribute, - STATE(4572), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192791] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4119), 1, - sym_attribute, - STATE(4548), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192865] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4120), 1, - sym_attribute, - STATE(4547), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [192939] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4121), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7031), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193015] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4122), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7241), 1, - sym_extended_module_path, - STATE(8285), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4291), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193089] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4123), 1, - sym_attribute, - STATE(4528), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [193163] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4124), 1, - sym_attribute, - STATE(4547), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [193237] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5498), 1, - anon_sym_DOT_DOT, - ACTIONS(5500), 1, - anon_sym_GT, - STATE(4125), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193311] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4126), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6987), 1, - sym_extended_module_path, - STATE(7819), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4376), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193385] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4127), 1, - sym_attribute, - STATE(4551), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [193459] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4128), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4564), 1, - sym__constructor_argument, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4367), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193533] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4129), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4445), 1, - sym__constructor_argument, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4367), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193607] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4130), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4445), 1, - sym__constructor_argument, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4085), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193681] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4131), 1, - sym_attribute, - STATE(7064), 1, - sym__constructor_argument, - STATE(7323), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5538), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193755] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4319), 1, - anon_sym_PLUS_EQ, - ACTIONS(5504), 1, - anon_sym_let, - ACTIONS(5506), 1, - anon_sym_EQ, - ACTIONS(5508), 1, - anon_sym_COLON_EQ, - ACTIONS(5510), 1, - anon_sym_constraint, - STATE(4132), 1, - sym_attribute, - STATE(4134), 1, - sym_type_constraint, - STATE(4334), 1, - sym__type_equation, - STATE(4339), 1, - sym_item_attribute, - STATE(4422), 1, - aux_sym_type_binding_repeat1, - STATE(4575), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5502), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [193817] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4350), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4348), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [193859] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5514), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5512), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [193901] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5516), 1, - anon_sym_DOT_DOT, - ACTIONS(5518), 1, - anon_sym_GT, - STATE(4135), 1, - sym_attribute, - STATE(6651), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5639), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193975] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4136), 1, - sym_attribute, - STATE(4560), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [194049] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4319), 1, - anon_sym_PLUS_EQ, - ACTIONS(5508), 1, - anon_sym_COLON_EQ, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5522), 1, - anon_sym_let, - ACTIONS(5524), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4137), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4364), 1, - sym__type_equation, - STATE(4393), 1, - aux_sym_type_binding_repeat1, - STATE(4474), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5520), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [194111] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4138), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7241), 1, - sym_extended_module_path, - STATE(8071), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4285), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194185] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4139), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(7770), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4055), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194259] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5526), 1, - anon_sym_DOT_DOT, - ACTIONS(5528), 1, - anon_sym_GT, - STATE(4140), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194333] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5532), 1, - anon_sym_let, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5538), 1, - anon_sym_COLON2, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4141), 1, - sym_attribute, - STATE(4253), 1, - sym_module_parameter, - STATE(4339), 1, - sym_item_attribute, - STATE(4372), 1, - sym__module_typed, - STATE(4549), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5534), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5530), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [194393] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4142), 1, - sym_attribute, - STATE(4551), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [194467] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4143), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7301), 1, - sym_extended_module_path, - STATE(8244), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4191), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194541] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5540), 1, - anon_sym_DOT_DOT, - ACTIONS(5542), 1, - anon_sym_GT, - STATE(4144), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194615] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4094), 1, - sym__class_expression_ext, - STATE(4145), 1, - sym_attribute, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [194689] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4146), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4546), 1, - sym__constructor_argument, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4423), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [194763] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4147), 1, - sym_attribute, - STATE(6474), 1, - sym__class_expression_ext, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [194837] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4148), 1, - sym_attribute, - STATE(4528), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [194911] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4149), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5390), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [194969] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4344), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4342), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [195011] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(5494), 1, - anon_sym_LBRACE, - STATE(4151), 1, - sym_attribute, - STATE(6934), 1, - sym__constructor_argument, - STATE(7323), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5538), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [195085] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5544), 1, - anon_sym_DOT_DOT, - ACTIONS(5546), 1, - anon_sym_GT, - STATE(4152), 1, - sym_attribute, - STATE(6674), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5593), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [195159] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4153), 1, - sym_attribute, - STATE(4572), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195233] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4154), 1, - sym_attribute, - STATE(4576), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195307] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(365), 1, - anon_sym_object, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5433), 1, - sym__identifier, - ACTIONS(5435), 1, - anon_sym_let, - ACTIONS(5437), 1, - anon_sym_LBRACK, - ACTIONS(5439), 1, - anon_sym_fun, - STATE(1537), 1, - sym__simple_class_expression, - STATE(4155), 1, - sym_attribute, - STATE(6621), 1, - sym__class_expression_ext, - STATE(7668), 1, - sym_value_definition, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195381] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4156), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7055), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [195457] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4157), 1, - sym_attribute, - STATE(4578), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195531] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4158), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(7597), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4066), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [195605] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4159), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7075), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [195681] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4160), 1, - sym_attribute, - STATE(4488), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195755] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5496), 1, - anon_sym_else, - STATE(2588), 1, - sym_else_clause, - STATE(4161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4202), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4200), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [195801] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4162), 1, - sym_attribute, - STATE(4506), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [195875] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4163), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5319), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5321), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [195933] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5548), 1, - anon_sym_DOT_DOT, - ACTIONS(5550), 1, - anon_sym_GT, - STATE(4164), 1, - sym_attribute, - STATE(6637), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5632), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196007] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4165), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - STATE(7684), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5522), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196081] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5392), 1, - sym__identifier, - ACTIONS(5394), 1, - anon_sym_let, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_fun, - STATE(1231), 1, - sym__simple_class_expression, - STATE(4094), 1, - sym__class_expression_ext, - STATE(4166), 1, - sym_attribute, - STATE(7473), 1, - sym_module_path, - STATE(8078), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196155] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4167), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - STATE(7631), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5517), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196229] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4168), 1, - sym_attribute, - STATE(4560), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196303] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5554), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5552), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [196345] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5556), 1, - anon_sym_DOT_DOT, - ACTIONS(5558), 1, - anon_sym_GT, - STATE(4170), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196419] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5121), 11, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5123), 14, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [196463] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4172), 1, - sym_attribute, - STATE(4506), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196537] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5560), 1, - anon_sym_DOT_DOT, - ACTIONS(5562), 1, - anon_sym_GT, - STATE(4173), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196611] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5564), 1, - anon_sym_DOT_DOT, - ACTIONS(5566), 1, - anon_sym_GT, - STATE(4174), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196685] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4175), 1, - sym_attribute, - STATE(4560), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196759] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5568), 1, - anon_sym_DOT_DOT, - ACTIONS(5570), 1, - anon_sym_GT, - STATE(4176), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [196833] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5392), 1, - sym__identifier, - ACTIONS(5394), 1, - anon_sym_let, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_fun, - STATE(1231), 1, - sym__simple_class_expression, - STATE(4177), 1, - sym_attribute, - STATE(5313), 1, - sym__class_expression_ext, - STATE(7473), 1, - sym_module_path, - STATE(8078), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196907] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2706), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5392), 1, - sym__identifier, - ACTIONS(5394), 1, - anon_sym_let, - ACTIONS(5396), 1, - anon_sym_LPAREN, - ACTIONS(5400), 1, - anon_sym_LBRACK, - ACTIONS(5402), 1, - anon_sym_fun, - STATE(1231), 1, - sym__simple_class_expression, - STATE(4178), 1, - sym_attribute, - STATE(4208), 1, - sym__class_expression_ext, - STATE(7473), 1, - sym_module_path, - STATE(8078), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3513), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [196981] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4179), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4564), 1, - sym__constructor_argument, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4085), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197055] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5572), 1, - anon_sym_DOT_DOT, - ACTIONS(5574), 1, - anon_sym_GT, - STATE(4180), 1, - sym_attribute, - STATE(6432), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5627), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197129] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4181), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7254), 1, - sym_extended_module_path, - STATE(7818), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4037), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197203] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4182), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7336), 1, - sym_extended_module_path, - STATE(7593), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5523), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197277] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4183), 1, - sym_attribute, - STATE(4488), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [197351] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4184), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4445), 1, - sym__constructor_argument, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4423), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197425] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4185), 1, - sym_attribute, - STATE(4455), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [197499] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4186), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4564), 1, - sym__constructor_argument, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4423), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197573] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4187), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4546), 1, - sym__constructor_argument, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4085), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197647] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5576), 1, - anon_sym_DOT_DOT, - ACTIONS(5578), 1, - anon_sym_GT, - STATE(4188), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197721] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4189), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(7241), 1, - sym_extended_module_path, - STATE(8141), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4287), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [197795] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4190), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5345), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5347), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [197853] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4191), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5417), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [197911] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4192), 1, - sym_attribute, - STATE(4208), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [197985] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4193), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4546), 1, - sym__constructor_argument, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4233), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [198059] = 22, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(3466), 1, - sym_tuple_type, - STATE(3502), 1, - sym__simple_type, - STATE(4194), 1, - sym_attribute, - STATE(5665), 1, - sym__extension, - STATE(6987), 1, - sym_extended_module_path, - STATE(7172), 1, - sym__tuple_type_ext, - STATE(7203), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [198135] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - ACTIONS(5580), 1, - anon_sym_DOT_DOT, - ACTIONS(5582), 1, - anon_sym_GT, - STATE(4195), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [198209] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4196), 1, - sym_attribute, - STATE(4207), 1, - sym__class_expression_ext, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198283] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(5327), 1, - sym__identifier, - STATE(4197), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(6987), 1, - sym_extended_module_path, - STATE(8290), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4302), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [198357] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4198), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5407), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5409), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [198415] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4252), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4250), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [198457] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4200), 1, - sym_attribute, - STATE(4424), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198531] = 21, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4399), 1, - anon_sym_LBRACE, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4201), 1, - sym_attribute, - STATE(4392), 1, - sym_record_declaration, - STATE(4445), 1, - sym__constructor_argument, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4233), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [198605] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4202), 1, - sym_attribute, - STATE(4619), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198679] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4203), 1, - sym_attribute, - STATE(4488), 1, - sym__class_expression_ext, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198753] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4204), 1, - sym_attribute, - STATE(4596), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198827] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4354), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4352), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [198869] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5441), 1, - sym__identifier, - ACTIONS(5443), 1, - anon_sym_let, - ACTIONS(5445), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_LBRACK, - ACTIONS(5449), 1, - anon_sym_object, - ACTIONS(5451), 1, - anon_sym_fun, - STATE(1103), 1, - sym__simple_class_expression, - STATE(4206), 1, - sym_attribute, - STATE(4207), 1, - sym__class_expression_ext, - STATE(7414), 1, - sym_value_definition, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3047), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [198943] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5586), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5584), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [198985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5590), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5588), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199027] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5538), 1, - anon_sym_COLON2, - ACTIONS(5594), 1, - anon_sym_let, - STATE(4141), 1, - aux_sym_module_binding_repeat1, - STATE(4209), 1, - sym_attribute, - STATE(4253), 1, - sym_module_parameter, - STATE(4339), 1, - sym_item_attribute, - STATE(4362), 1, - sym__module_typed, - STATE(4483), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5596), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5592), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199087] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2155), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2153), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199129] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5453), 1, - anon_sym_let, - ACTIONS(5455), 1, - anon_sym_fun, - STATE(1107), 1, - sym__simple_class_expression, - STATE(4094), 1, - sym__class_expression_ext, - STATE(4211), 1, - sym_attribute, - STATE(7476), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [199203] = 21, - ACTIONS(95), 1, - sym_let_operator, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2369), 1, - anon_sym_object, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5419), 1, - sym__identifier, - ACTIONS(5421), 1, - anon_sym_let, - ACTIONS(5423), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LBRACK, - ACTIONS(5427), 1, - anon_sym_fun, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - STATE(1109), 1, - sym__simple_class_expression, - STATE(4094), 1, - sym__class_expression_ext, - STATE(4212), 1, - sym_attribute, - STATE(7852), 1, - sym_value_definition, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4169), 2, - sym__class_expression, - sym__extension, - STATE(4210), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3179), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [199277] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2819), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(2821), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [199318] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5600), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5598), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199359] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5606), 1, - anon_sym_LBRACK_AT_AT, - STATE(4134), 1, - sym_type_constraint, - STATE(4215), 1, - sym_attribute, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5602), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [199406] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5608), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4216), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(3986), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3988), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199449] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4319), 1, - anon_sym_PLUS_EQ, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5611), 1, - anon_sym_EQ, - ACTIONS(5613), 1, - anon_sym_COLON_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4217), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4403), 1, - sym__type_equation, - STATE(4474), 1, - aux_sym_expression_item_repeat1, - STATE(4475), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5520), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [199508] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5615), 1, - aux_sym_attribute_id_token1, - STATE(4216), 1, - aux_sym_attribute_id_repeat1, - STATE(4218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3962), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3964), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5413), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5411), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199594] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2873), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(2875), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [199635] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5615), 1, - aux_sym_attribute_id_token1, - STATE(4218), 1, - aux_sym_attribute_id_repeat1, - STATE(4221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3993), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3995), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199680] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2947), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(2949), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [199721] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3073), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3075), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [199762] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5619), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5617), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199803] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5623), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5621), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5627), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5625), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199885] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5631), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5629), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199926] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5635), 1, - anon_sym_LBRACK_AT_AT, - STATE(4134), 1, - sym_type_constraint, - STATE(4228), 1, - sym_attribute, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5633), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [199973] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5637), 1, - anon_sym_COLON2, - STATE(4229), 1, - sym_attribute, - STATE(4240), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(4339), 1, - sym_item_attribute, - STATE(4362), 1, - sym__module_typed, - STATE(4483), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5596), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5592), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200030] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4230), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4871), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(5639), 7, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5641), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200083] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5635), 1, - anon_sym_LBRACK_AT_AT, - STATE(4134), 1, - sym_type_constraint, - STATE(4215), 1, - aux_sym_type_binding_repeat1, - STATE(4231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5633), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200130] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5121), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5123), 13, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [200173] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - ACTIONS(5643), 1, - anon_sym_STAR, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4233), 1, - sym_attribute, - STATE(4706), 1, - aux_sym__constructor_argument_repeat1, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5323), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5471), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [200228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5647), 12, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - ACTIONS(5645), 14, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - sym__identifier, - [200269] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4319), 1, - anon_sym_PLUS_EQ, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5613), 1, - anon_sym_COLON_EQ, - ACTIONS(5649), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4235), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4395), 1, - sym__type_equation, - STATE(4574), 1, - aux_sym_type_binding_repeat1, - STATE(4575), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5502), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200328] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5653), 1, - anon_sym_constraint, - ACTIONS(5656), 1, - anon_sym_LBRACK_AT_AT, - STATE(4134), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4236), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(5651), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200373] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5660), 1, - anon_sym_LBRACK_AT_AT, - STATE(4134), 1, - sym_type_constraint, - STATE(4228), 1, - aux_sym_type_binding_repeat1, - STATE(4237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5658), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200420] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5664), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5662), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200461] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2811), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(2813), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [200502] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(5637), 1, - anon_sym_COLON2, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4240), 1, - sym_attribute, - STATE(4253), 1, - sym_module_parameter, - STATE(4339), 1, - sym_item_attribute, - STATE(4372), 1, - sym__module_typed, - STATE(4549), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5534), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5530), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200559] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4241), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 8, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5668), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200610] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5672), 1, - anon_sym_let, - ACTIONS(5674), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4242), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - ACTIONS(5670), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200655] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5331), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5329), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200696] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4244), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5677), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5679), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200746] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5683), 1, - anon_sym_let, - STATE(4245), 1, - sym_attribute, - STATE(4254), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5681), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200792] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4246), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5339), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5687), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5685), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200882] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_DASH_GT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5695), 1, - anon_sym_LBRACK_AT_AT, - STATE(4248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5689), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [200926] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4249), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5390), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200976] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4250), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5417), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201026] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5699), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4251), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5697), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201072] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5699), 1, - anon_sym_let, - STATE(4252), 1, - sym_attribute, - STATE(4280), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5697), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201118] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5703), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5701), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201158] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5707), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4254), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5705), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201204] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4255), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5668), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [201254] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5711), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5709), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201294] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4257), 1, - sym_attribute, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5635), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5633), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201340] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - STATE(4258), 1, - sym_attribute, - STATE(4668), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - ACTIONS(5713), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201388] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4259), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5723), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5725), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201438] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(5733), 1, - anon_sym_of, - ACTIONS(5735), 1, - anon_sym_COLON2, - STATE(4260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5333), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5729), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5727), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201486] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4261), 1, - sym_attribute, - STATE(4284), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5635), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5633), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201532] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5737), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5656), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4262), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(5651), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201576] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4263), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5345), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5347), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201632] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_DASH_GT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5746), 1, - anon_sym_LBRACK_AT_AT, - STATE(4264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5744), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [201676] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5185), 1, - sym__identifier, - ACTIONS(5252), 1, - anon_sym_POUND, - STATE(3996), 1, - sym_type_constructor_path, - STATE(4265), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5748), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5750), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201726] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5754), 1, - anon_sym_let, - STATE(4251), 1, - aux_sym_expression_item_repeat1, - STATE(4266), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5752), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201772] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4257), 1, - aux_sym_type_binding_repeat1, - STATE(4267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5660), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5658), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201818] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5758), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5756), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201858] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5762), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5760), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201898] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5766), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5764), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [201938] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4317), 1, - sym__identifier, - ACTIONS(5768), 1, - anon_sym_COLON2, - STATE(4271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5073), 7, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5075), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201984] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5683), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4272), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5681), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202030] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4273), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5319), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5321), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [202086] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_DASH_GT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5772), 1, - anon_sym_LBRACK_AT_AT, - STATE(4274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5770), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [202130] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5307), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5691), 1, - anon_sym_DASH_GT, - STATE(4275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5303), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [202172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5776), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5774), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202212] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5780), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5778), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202252] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5784), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4278), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5782), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202298] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5788), 1, - anon_sym_let, - STATE(4272), 1, - aux_sym_expression_item_repeat1, - STATE(4279), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5786), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202344] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5792), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4280), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5790), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202390] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5792), 1, - anon_sym_let, - STATE(4278), 1, - aux_sym_expression_item_repeat1, - STATE(4281), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5790), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202436] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4282), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5407), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5409), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [202492] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5457), 1, - sym__identifier, - STATE(4283), 1, - sym_attribute, - STATE(7126), 1, - sym_method_type, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5708), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [202560] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5606), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5602), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202606] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4285), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5417), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [202662] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4286), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4871), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(5639), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5641), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [202714] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4287), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5390), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [202770] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3986), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3988), 16, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - [202810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5796), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5794), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202850] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5800), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5798), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202890] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4291), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5339), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [202946] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5804), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5802), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202986] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5808), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5806), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [203026] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4294), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4712), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203091] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5729), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(5810), 1, - anon_sym_of, - ACTIONS(5812), 1, - anon_sym_COLON2, - STATE(4295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5333), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5727), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [203138] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4296), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5735), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203203] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4297), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5734), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203268] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4298), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4490), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203333] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4299), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5732), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203398] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4300), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5702), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203463] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4301), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4632), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203528] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4302), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5339), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [203583] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4317), 1, - sym__identifier, - ACTIONS(5814), 1, - anon_sym_COLON2, - STATE(4303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5073), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5075), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [203628] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4304), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5694), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203693] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5816), 1, - anon_sym_LPAREN, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5822), 1, - anon_sym_end, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(4305), 1, - sym_attribute, - STATE(4442), 1, - sym__attribute, - STATE(4680), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [203762] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5832), 1, - anon_sym_LPAREN, - ACTIONS(5834), 1, - anon_sym_end, - STATE(4306), 1, - sym_attribute, - STATE(4485), 1, - sym__attribute, - STATE(4780), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [203831] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5838), 1, - anon_sym_and, - ACTIONS(5840), 1, - anon_sym_LBRACK_AT_AT, - STATE(4307), 1, - sym_attribute, - STATE(4368), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5836), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [203874] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4308), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4489), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [203939] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4309), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4494), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204004] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4943), 12, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4945), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204043] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4311), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5461), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204108] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4312), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4495), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204173] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(5846), 1, - anon_sym_LBRACK_AT_AT, - STATE(4313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [204216] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4314), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3479), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204281] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(5850), 1, - anon_sym_LBRACK_AT_AT, - STATE(4315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5848), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [204324] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4316), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5677), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5679), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [204373] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4317), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4658), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204438] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5852), 1, - anon_sym_LPAREN, - ACTIONS(5854), 1, - anon_sym_end, - STATE(4318), 1, - sym_attribute, - STATE(4461), 1, - sym__attribute, - STATE(4704), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [204507] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5856), 1, - anon_sym_LPAREN, - ACTIONS(5858), 1, - anon_sym_end, - STATE(4319), 1, - sym_attribute, - STATE(4498), 1, - sym__attribute, - STATE(4757), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [204576] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4277), 1, - sym__identifier, - STATE(4320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4279), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5017), 7, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5019), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [204619] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4321), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5736), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [204684] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5860), 1, - anon_sym_DASH_GT, - STATE(4322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5695), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5689), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204727] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(5864), 1, - anon_sym_LBRACK_AT_AT, - STATE(4323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [204770] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5715), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - STATE(4324), 1, - sym_attribute, - STATE(4860), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - ACTIONS(5713), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [204817] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5872), 1, - anon_sym_LPAREN, - ACTIONS(5874), 1, - anon_sym_end, - STATE(4325), 1, - sym_attribute, - STATE(4520), 1, - sym__attribute, - STATE(4695), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [204886] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5876), 1, - anon_sym_LPAREN, - ACTIONS(5878), 1, - anon_sym_end, - STATE(4326), 1, - sym_attribute, - STATE(4426), 1, - sym__attribute, - STATE(4638), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [204955] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4327), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5723), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5725), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205004] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4965), 1, - anon_sym_LPAREN, - ACTIONS(4969), 1, - anon_sym_LBRACK, - ACTIONS(4971), 1, - anon_sym_LBRACK_GT, - ACTIONS(4973), 1, - anon_sym_LBRACK_LT, - ACTIONS(4975), 1, - anon_sym_LT, - ACTIONS(4977), 1, - anon_sym_POUND, - ACTIONS(4979), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4981), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - ACTIONS(5880), 1, - sym__identifier, - STATE(4328), 1, - sym_attribute, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5143), 2, - sym__simple_type, - sym__extension, - STATE(5244), 2, - sym_extension, - sym_quoted_extension, - STATE(5300), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205069] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4329), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5339), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205118] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5838), 1, - anon_sym_and, - ACTIONS(5884), 1, - anon_sym_LBRACK_AT_AT, - STATE(4307), 1, - aux_sym_module_type_constraint_repeat1, - STATE(4330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5882), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [205161] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4331), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4496), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205226] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5886), 1, - anon_sym_LPAREN, - ACTIONS(5888), 1, - anon_sym_end, - STATE(4332), 1, - sym_attribute, - STATE(4570), 1, - sym__attribute, - STATE(4645), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [205295] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5892), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5890), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205334] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5896), 1, - anon_sym_let, - ACTIONS(5898), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4334), 1, - sym_attribute, - STATE(4339), 1, - sym_item_attribute, - STATE(4388), 1, - aux_sym_type_binding_repeat1, - STATE(4449), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5894), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205387] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4335), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4241), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205452] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4336), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4659), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205517] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4337), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4391), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205582] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4338), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5748), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5750), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205631] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5902), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5900), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205670] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(4815), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [205709] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4341), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3883), 2, - sym__simple_type, - sym__extension, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205774] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4342), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4649), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [205839] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4343), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5390), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205888] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4344), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5319), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5321), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205943] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4345), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5390), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [205998] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4346), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4250), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206063] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5904), 1, - anon_sym_LPAREN, - ACTIONS(5906), 1, - anon_sym_end, - STATE(4347), 1, - sym_attribute, - STATE(4493), 1, - sym__attribute, - STATE(4773), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [206132] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5908), 1, - anon_sym_LPAREN, - ACTIONS(5910), 1, - anon_sym_end, - STATE(4348), 1, - sym_attribute, - STATE(4514), 1, - sym__attribute, - STATE(4730), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [206201] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5860), 1, - anon_sym_DASH_GT, - STATE(4349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5772), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5770), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206244] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4350), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4503), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206309] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4675), 1, - anon_sym_LPAREN, - ACTIONS(4677), 1, - anon_sym_LBRACK, - ACTIONS(4679), 1, - anon_sym_LBRACK_GT, - ACTIONS(4681), 1, - anon_sym_LBRACK_LT, - ACTIONS(4683), 1, - anon_sym_LT, - ACTIONS(4685), 1, - anon_sym_POUND, - ACTIONS(4687), 1, - aux_sym_type_variable_token1, - ACTIONS(5309), 1, - sym__identifier, - STATE(4351), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5620), 2, - sym__simple_type, - sym__extension, - STATE(5433), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206374] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4352), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4249), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206439] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5912), 1, - anon_sym_LPAREN, - ACTIONS(5914), 1, - anon_sym_end, - STATE(4353), 1, - sym_attribute, - STATE(4465), 1, - sym__attribute, - STATE(4719), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [206508] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5916), 1, - anon_sym_LPAREN, - ACTIONS(5918), 1, - anon_sym_end, - STATE(4354), 1, - sym_attribute, - STATE(4477), 1, - sym__attribute, - STATE(4787), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [206577] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5920), 1, - anon_sym_POUND, - STATE(4355), 1, - sym_attribute, - STATE(4431), 1, - sym_type_constructor_path, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4923), 8, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(4927), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [206626] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5127), 1, - sym__identifier, - ACTIONS(5209), 1, - anon_sym_POUND, - STATE(3964), 1, - sym_type_constructor_path, - STATE(4356), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5417), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [206675] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(5353), 1, - anon_sym_LPAREN, - ACTIONS(5355), 1, - anon_sym_LBRACK, - ACTIONS(5357), 1, - anon_sym_LBRACK_GT, - ACTIONS(5359), 1, - anon_sym_LBRACK_LT, - ACTIONS(5361), 1, - anon_sym_LT, - ACTIONS(5363), 1, - anon_sym_POUND, - ACTIONS(5365), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5367), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5369), 1, - aux_sym_type_variable_token1, - STATE(4357), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4410), 2, - sym__simple_type, - sym__extension, - STATE(4505), 2, - sym_extension, - sym_quoted_extension, - STATE(4470), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206740] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4358), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4246), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206805] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4359), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4635), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [206870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5924), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5922), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206909] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5860), 1, - anon_sym_DASH_GT, - STATE(4361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5307), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5303), 21, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206950] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5532), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4362), 1, - sym_attribute, - STATE(4549), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5534), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5530), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206997] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5121), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5123), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [207038] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5928), 1, - anon_sym_let, - ACTIONS(5930), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4364), 1, - sym_attribute, - STATE(4399), 1, - aux_sym_type_binding_repeat1, - STATE(4583), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5926), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [207091] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5932), 1, - anon_sym_LPAREN, - ACTIONS(5934), 1, - anon_sym_end, - STATE(4365), 1, - sym_attribute, - STATE(4467), 1, - sym__attribute, - STATE(4742), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [207160] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4366), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5345), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5347), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [207215] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - ACTIONS(5936), 1, - anon_sym_STAR, - STATE(4367), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4942), 1, - aux_sym__constructor_argument_repeat1, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5323), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5471), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [207268] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5664), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5938), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4368), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5662), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [207309] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4369), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3938), 2, - sym__simple_type, - sym__extension, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207374] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5941), 1, - anon_sym_LPAREN, - ACTIONS(5943), 1, - anon_sym_end, - STATE(4370), 1, - sym_attribute, - STATE(4513), 1, - sym__attribute, - STATE(4741), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [207443] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5945), 1, - anon_sym_LPAREN, - ACTIONS(5947), 1, - anon_sym_end, - STATE(4371), 1, - sym_attribute, - STATE(4516), 1, - sym__attribute, - STATE(4731), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [207512] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5951), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4372), 1, - sym_attribute, - STATE(4473), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5953), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5949), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [207559] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4373), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4255), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207624] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4374), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4356), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207689] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4375), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4343), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207754] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4376), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5417), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [207809] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4377), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5407), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5409), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [207864] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4378), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4329), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207929] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4379), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4244), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [207994] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(5955), 1, - anon_sym_LPAREN, - ACTIONS(5957), 1, - anon_sym_end, - STATE(4380), 1, - sym_attribute, - STATE(4515), 1, - sym__attribute, - STATE(4717), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [208063] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5693), 1, - anon_sym_as, - ACTIONS(5860), 1, - anon_sym_DASH_GT, - STATE(4381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5746), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5744), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208106] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4382), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4327), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208171] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3366), 1, - anon_sym_LPAREN, - ACTIONS(3372), 1, - anon_sym_LBRACK, - ACTIONS(3388), 1, - anon_sym_LBRACK_GT, - ACTIONS(3390), 1, - anon_sym_LBRACK_LT, - ACTIONS(3392), 1, - anon_sym_LT, - ACTIONS(3394), 1, - anon_sym_POUND, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5327), 1, - sym__identifier, - STATE(4383), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5959), 2, - sym__simple_type, - sym__extension, - STATE(3764), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208236] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4384), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4338), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208301] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4385), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4265), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208366] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4401), 1, - anon_sym_LBRACK_GT, - ACTIONS(4403), 1, - anon_sym_LBRACK_LT, - ACTIONS(4405), 1, - anon_sym_LT, - ACTIONS(4407), 1, - anon_sym_POUND, - ACTIONS(4409), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4411), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4415), 1, - aux_sym_type_variable_token1, - ACTIONS(4987), 1, - anon_sym_LPAREN, - ACTIONS(4991), 1, - anon_sym_LBRACK, - ACTIONS(5343), 1, - sym__identifier, - STATE(4386), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3982), 2, - sym_extension, - sym_quoted_extension, - STATE(4259), 2, - sym__simple_type, - sym__extension, - STATE(4013), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208431] = 18, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4435), 1, - anon_sym_LBRACK_GT, - ACTIONS(4437), 1, - anon_sym_LBRACK_LT, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4441), 1, - anon_sym_POUND, - ACTIONS(4443), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4445), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4449), 1, - aux_sym_type_variable_token1, - ACTIONS(4997), 1, - anon_sym_LPAREN, - ACTIONS(5001), 1, - anon_sym_LBRACK, - ACTIONS(5311), 1, - sym__identifier, - STATE(4387), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3945), 2, - sym_extension, - sym_quoted_extension, - STATE(4316), 2, - sym__simple_type, - sym__extension, - STATE(3946), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [208496] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5961), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4388), 1, - sym_attribute, - STATE(4542), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5959), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208546] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4277), 1, - sym__identifier, - STATE(4389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4279), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5017), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5019), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [208588] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5967), 1, - anon_sym_EQ, - ACTIONS(5969), 1, - anon_sym_of, - ACTIONS(5971), 1, - anon_sym_COLON2, - STATE(4390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5965), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5963), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208632] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4391), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5668), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [208680] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5471), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5323), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208718] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5928), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4393), 1, - sym_attribute, - STATE(4583), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5926), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5975), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5973), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208806] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(5977), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4395), 1, - sym_attribute, - STATE(4449), 1, - aux_sym_expression_item_repeat1, - STATE(4451), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5894), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [208856] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5981), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4396), 1, - sym_attribute, - STATE(4415), 1, - aux_sym_type_binding_repeat1, - STATE(4440), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5979), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208906] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5985), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5983), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208944] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5989), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4398), 1, - sym_attribute, - STATE(4592), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5987), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208994] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5993), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4399), 1, - sym_attribute, - STATE(4446), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5991), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209044] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5997), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4398), 1, - aux_sym_type_binding_repeat1, - STATE(4400), 1, - sym_attribute, - STATE(4610), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5995), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209094] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6001), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4401), 1, - sym_attribute, - STATE(4609), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5999), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209144] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6005), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4402), 1, - sym_attribute, - STATE(4607), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6003), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209194] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - ACTIONS(6007), 1, - anon_sym_EQ, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4403), 1, - sym_attribute, - STATE(4582), 1, - aux_sym_type_binding_repeat1, - STATE(4583), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5926), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [209244] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6011), 1, - anon_sym_DASH_GT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6015), 1, - anon_sym_LBRACK_AT_AT, - STATE(4404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6009), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [209286] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6019), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6017), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209324] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6021), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5664), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4406), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5662), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209364] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6026), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4407), 1, - sym_attribute, - STATE(4587), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6024), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209414] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6030), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4401), 1, - aux_sym_type_binding_repeat1, - STATE(4408), 1, - sym_attribute, - STATE(4585), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6028), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209464] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6034), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4402), 1, - aux_sym_type_binding_repeat1, - STATE(4409), 1, - sym_attribute, - STATE(4580), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6032), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209514] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4410), 1, - sym_attribute, - STATE(4436), 1, - sym_type_constructor_path, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 7, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5668), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [209562] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3121), 1, - anon_sym_DOT, - STATE(4411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209602] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6038), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4412), 1, - sym_attribute, - STATE(4579), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6036), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209652] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6042), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4407), 1, - aux_sym_type_binding_repeat1, - STATE(4413), 1, - sym_attribute, - STATE(4540), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6040), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209702] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6011), 1, - anon_sym_DASH_GT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6046), 1, - anon_sym_LBRACK_AT_AT, - STATE(4414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6044), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [209744] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6050), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4415), 1, - sym_attribute, - STATE(4531), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6048), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209794] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6056), 1, - anon_sym_EQ, - ACTIONS(6058), 1, - anon_sym_of, - ACTIONS(6060), 1, - anon_sym_COLON2, - STATE(4416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6054), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6052), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209838] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(6064), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4412), 1, - aux_sym_type_binding_repeat1, - STATE(4417), 1, - sym_attribute, - STATE(4529), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6062), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209888] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6066), 1, - anon_sym_and, - STATE(4406), 1, - aux_sym_module_type_constraint_repeat1, - STATE(4418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5840), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5836), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209930] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2849), 1, - anon_sym_DOT, - STATE(4419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2845), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2847), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209970] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(5733), 1, - anon_sym_of, - ACTIONS(5735), 1, - anon_sym_COLON2, - STATE(4420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5729), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5727), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210014] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6066), 1, - anon_sym_and, - STATE(4418), 1, - aux_sym_module_type_constraint_repeat1, - STATE(4421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5884), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5882), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210056] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5510), 1, - anon_sym_constraint, - ACTIONS(5896), 1, - anon_sym_let, - STATE(4134), 1, - sym_type_constraint, - STATE(4262), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4422), 1, - sym_attribute, - STATE(4449), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5894), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210106] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_STAR, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4423), 1, - sym_attribute, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5323), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5471), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [210158] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6070), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4424), 1, - sym_attribute, - STATE(4584), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6068), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210201] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4425), 1, - sym_attribute, - STATE(4538), 1, - aux_sym_expression_item_repeat1, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6074), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6072), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [210244] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6076), 1, - anon_sym_LPAREN, - ACTIONS(6078), 1, - anon_sym_end, - STATE(4426), 1, - sym_attribute, - STATE(4744), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [210307] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5045), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5047), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210344] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5049), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5051), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210381] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6082), 1, - anon_sym_let, - STATE(4429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6080), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5029), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5031), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210455] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5023), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5025), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210492] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5033), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5035), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210529] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5037), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5039), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210566] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4434), 1, - sym_attribute, - STATE(4529), 1, - aux_sym_expression_item_repeat1, - STATE(4530), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6062), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [210613] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5965), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5967), 1, - anon_sym_EQ, - ACTIONS(6084), 1, - anon_sym_of, - ACTIONS(6086), 1, - anon_sym_COLON2, - STATE(4435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5963), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [210656] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5117), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5119), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210693] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5093), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5095), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210730] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5077), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5079), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210767] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5013), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5015), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210804] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6050), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6048), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210847] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5057), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5059), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210884] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6088), 1, - anon_sym_LPAREN, - ACTIONS(6090), 1, - anon_sym_end, - STATE(4442), 1, - sym_attribute, - STATE(4728), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [210947] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5061), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5063), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [210984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5065), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5067), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211021] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5321), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5319), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211058] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6094), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6092), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211101] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5069), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5071), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211138] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4448), 1, - sym_attribute, - STATE(4540), 1, - aux_sym_expression_item_repeat1, - STATE(4541), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6040), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [211185] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5961), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5959), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5081), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5083), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211265] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4451), 1, - sym_attribute, - STATE(4542), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5959), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [211312] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6098), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4452), 1, - sym_attribute, - STATE(4563), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6096), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211355] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5101), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5103), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211392] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5105), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5107), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211429] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6102), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4455), 1, - sym_attribute, - STATE(4459), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6100), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211472] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6106), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4456), 1, - sym_attribute, - STATE(4544), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6104), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211515] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6110), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6108), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211558] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4458), 1, - sym_attribute, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6114), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6112), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [211601] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6118), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6116), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5113), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5115), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211681] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6120), 1, - anon_sym_LPAREN, - ACTIONS(6122), 1, - anon_sym_end, - STATE(4461), 1, - sym_attribute, - STATE(4700), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [211744] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5109), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5111), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211781] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6124), 1, - aux_sym_attribute_id_token1, - STATE(4463), 1, - sym_attribute, - STATE(4476), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3993), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(3995), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [211822] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5041), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5043), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [211859] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6126), 1, - anon_sym_LPAREN, - ACTIONS(6128), 1, - anon_sym_end, - STATE(4465), 1, - sym_attribute, - STATE(4732), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [211922] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6132), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6130), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211965] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6134), 1, - anon_sym_LPAREN, - ACTIONS(6136), 1, - anon_sym_end, - STATE(4467), 1, - sym_attribute, - STATE(4781), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [212028] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6140), 1, - anon_sym_let, - STATE(4468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6138), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212065] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6142), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4469), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(3986), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(3988), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [212104] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5121), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5123), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [212141] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6147), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6145), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212184] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5073), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5075), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [212221] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6151), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6149), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212264] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5928), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5926), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212307] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4475), 1, - sym_attribute, - STATE(4583), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5926), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [212354] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6124), 1, - aux_sym_attribute_id_token1, - STATE(4469), 1, - aux_sym_attribute_id_repeat1, - STATE(4476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3962), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(3964), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [212395] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6153), 1, - anon_sym_LPAREN, - ACTIONS(6155), 1, - anon_sym_end, - STATE(4477), 1, - sym_attribute, - STATE(4791), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [212458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5017), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5019), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [212495] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6159), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6157), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212532] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5641), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5639), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212569] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6163), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6161), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212606] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6167), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4482), 1, - sym_attribute, - STATE(4554), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6165), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212649] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5532), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5530), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212692] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - ACTIONS(6171), 1, - anon_sym_with, - STATE(4484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6046), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6044), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212733] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6173), 1, - anon_sym_LPAREN, - ACTIONS(6175), 1, - anon_sym_end, - STATE(4485), 1, - sym_attribute, - STATE(4785), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [212796] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - ACTIONS(6171), 1, - anon_sym_with, - STATE(4486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6015), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6009), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212837] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4487), 1, - sym_attribute, - STATE(4531), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6048), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [212884] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6179), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4488), 1, - sym_attribute, - STATE(4559), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6177), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212927] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4489), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5677), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5679), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [212974] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4490), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5748), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5750), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [213021] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6183), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6181), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213064] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6187), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6185), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213107] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6189), 1, - anon_sym_LPAREN, - ACTIONS(6191), 1, - anon_sym_end, - STATE(4493), 1, - sym_attribute, - STATE(4749), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [213170] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4494), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5723), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5725), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [213217] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4495), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5339), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [213264] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4496), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5390), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [213311] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2869), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2871), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213348] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6193), 1, - anon_sym_LPAREN, - ACTIONS(6195), 1, - anon_sym_end, - STATE(4498), 1, - sym_attribute, - STATE(4756), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [213411] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2644), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213448] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2807), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213485] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2738), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213522] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3081), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213559] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5740), 1, - sym__identifier, - ACTIONS(5742), 1, - anon_sym_POUND, - STATE(4436), 1, - sym_type_constructor_path, - STATE(4503), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5417), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [213606] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(2939), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213643] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3077), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [213680] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6199), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4506), 1, - sym_attribute, - STATE(4565), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6197), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213723] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6203), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213766] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2512), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2510), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213809] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2548), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2546), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213852] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6207), 1, - anon_sym_let, - STATE(4510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6205), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213889] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4511), 1, - sym_attribute, - STATE(4567), 1, - aux_sym_expression_item_repeat1, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6211), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6209), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [213932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2911), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2913), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [213969] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6213), 1, - anon_sym_LPAREN, - ACTIONS(6215), 1, - anon_sym_end, - STATE(4513), 1, - sym_attribute, - STATE(4740), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [214032] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_end, - STATE(4514), 1, - sym_attribute, - STATE(4694), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [214095] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6221), 1, - anon_sym_LPAREN, - ACTIONS(6223), 1, - anon_sym_end, - STATE(4515), 1, - sym_attribute, - STATE(4716), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [214158] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6225), 1, - anon_sym_LPAREN, - ACTIONS(6227), 1, - anon_sym_end, - STATE(4516), 1, - sym_attribute, - STATE(4786), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [214221] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4279), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4277), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [214258] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 10, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4317), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [214295] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6229), 1, - anon_sym_LBRACK_AT_AT, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4519), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - ACTIONS(5672), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(5670), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [214336] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6232), 1, - anon_sym_LPAREN, - ACTIONS(6234), 1, - anon_sym_end, - STATE(4520), 1, - sym_attribute, - STATE(4691), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [214399] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6238), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6236), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214442] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4487), 2, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(4489), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [214479] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4481), 2, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(4483), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [214516] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6242), 1, - anon_sym_let, - ACTIONS(6244), 1, - anon_sym_DQUOTE, - STATE(4339), 1, - sym_item_attribute, - STATE(4524), 1, - sym_attribute, - STATE(4675), 1, - aux_sym_expression_item_repeat1, - STATE(4853), 1, - sym_string, - STATE(4869), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6240), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214565] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6244), 1, - anon_sym_DQUOTE, - ACTIONS(6248), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4525), 1, - sym_attribute, - STATE(4639), 1, - aux_sym_expression_item_repeat1, - STATE(4853), 1, - sym_string, - STATE(4869), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6246), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214614] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6054), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6056), 1, - anon_sym_EQ, - ACTIONS(6250), 1, - anon_sym_of, - ACTIONS(6252), 1, - anon_sym_COLON2, - STATE(4526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6052), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [214657] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6256), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6254), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214700] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6260), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4527), 1, - aux_sym_expression_item_repeat1, - STATE(4528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6258), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214743] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6038), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6036), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214786] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4530), 1, - sym_attribute, - STATE(4579), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6036), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [214833] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6264), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6262), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214876] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6268), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6266), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214919] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5729), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(5810), 1, - anon_sym_of, - ACTIONS(5812), 1, - anon_sym_COLON2, - STATE(4533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5727), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [214962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6270), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [214999] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6276), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6274), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215042] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6280), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6278), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215085] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4537), 1, - sym_attribute, - STATE(4580), 1, - aux_sym_expression_item_repeat1, - STATE(4581), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6032), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [215132] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4538), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6284), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6282), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [215175] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4539), 1, - sym_attribute, - STATE(4585), 1, - aux_sym_expression_item_repeat1, - STATE(4586), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6028), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [215222] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6026), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6024), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215265] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4541), 1, - sym_attribute, - STATE(4587), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6024), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [215312] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6288), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6286), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215355] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6292), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4543), 1, - sym_attribute, - STATE(4589), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6290), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215398] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6296), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6294), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215441] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6300), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6298), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215484] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5409), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5407), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215521] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6304), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4532), 1, - aux_sym_expression_item_repeat1, - STATE(4547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6302), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215564] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6308), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4535), 1, - aux_sym_expression_item_repeat1, - STATE(4548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6306), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215607] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5951), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5949), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215650] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6312), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6310), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215693] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6316), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4551), 1, - sym_attribute, - STATE(4600), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215736] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6320), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6318), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215779] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6324), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4553), 1, - sym_attribute, - STATE(4595), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6322), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215822] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6328), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6326), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215865] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6332), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4536), 1, - aux_sym_expression_item_repeat1, - STATE(4555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6330), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215908] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6336), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6334), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [215951] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4557), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6340), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6338), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [215994] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2524), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2522), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216037] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6344), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6342), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216080] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6348), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4560), 1, - sym_attribute, - STATE(4598), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6346), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216123] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6352), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6350), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216166] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6356), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6354), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216203] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6360), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6358), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216246] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5347), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5345), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216283] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6364), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6362), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6368), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6366), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216363] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4567), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6372), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6370), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [216406] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6376), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6374), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216449] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4569), 1, - sym_attribute, - STATE(4602), 1, - aux_sym_expression_item_repeat1, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6380), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6378), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [216492] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6382), 1, - anon_sym_LPAREN, - ACTIONS(6384), 1, - anon_sym_end, - STATE(4570), 1, - sym_attribute, - STATE(4727), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [216555] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6388), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4457), 1, - aux_sym_expression_item_repeat1, - STATE(4571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6386), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216598] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6392), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4521), 1, - aux_sym_expression_item_repeat1, - STATE(4572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6390), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216641] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6396), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6394), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216684] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4449), 1, - aux_sym_expression_item_repeat1, - STATE(4574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5894), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [216731] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5896), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5894), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216774] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6400), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4550), 1, - aux_sym_expression_item_repeat1, - STATE(4576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6398), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216817] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6404), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6402), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216860] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6408), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4552), 1, - aux_sym_expression_item_repeat1, - STATE(4578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6406), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216903] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6412), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6410), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216946] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6005), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6003), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216989] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4581), 1, - sym_attribute, - STATE(4607), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6003), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [217036] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4446), 1, - aux_sym_expression_item_repeat1, - STATE(4582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5991), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [217083] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5993), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5991), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217126] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6416), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6414), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217169] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6001), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5999), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217212] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4586), 1, - sym_attribute, - STATE(4609), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5999), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [217259] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6420), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6418), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217302] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4588), 1, - sym_attribute, - STATE(4610), 1, - aux_sym_expression_item_repeat1, - STATE(4611), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5995), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [217349] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6424), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6422), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217392] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6428), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4556), 1, - aux_sym_expression_item_repeat1, - STATE(4590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6426), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217435] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6432), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6430), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217478] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6436), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6434), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217521] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6440), 1, - anon_sym_LBRACK_AT_AT, - STATE(4593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6438), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [217558] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6444), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6442), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217601] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6448), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6446), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217644] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6452), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4596), 1, - sym_attribute, - STATE(4616), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6450), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217687] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6456), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6454), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217730] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6460), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6458), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217773] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6464), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4599), 1, - sym_attribute, - STATE(4622), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6462), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217816] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6468), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6466), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217859] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4601), 1, - sym_attribute, - STATE(4624), 1, - aux_sym_expression_item_repeat1, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6472), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6470), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [217902] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4602), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6476), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6474), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [217945] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2458), 1, - anon_sym_let, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2456), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [217988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5846), 1, - anon_sym_LBRACK_AT_AT, - STATE(4604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [218025] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2801), 2, - anon_sym_let, - anon_sym_COLON2, - ACTIONS(2803), 20, - anon_sym_SEMI_SEMI, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218062] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6478), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5668), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4606), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(5666), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218101] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6483), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6481), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218144] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4339), 1, - sym_item_attribute, - STATE(4440), 1, - aux_sym_expression_item_repeat1, - STATE(4487), 1, - aux_sym_type_binding_repeat1, - STATE(4608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5979), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [218191] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6487), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6485), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218234] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5989), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5987), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218277] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5604), 1, - anon_sym_constraint, - STATE(4134), 1, - sym_type_constraint, - STATE(4236), 1, - aux_sym_type_binding_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4592), 1, - aux_sym_expression_item_repeat1, - STATE(4611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5987), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [218324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2851), 2, - anon_sym_let, - anon_sym_COLON2, - ACTIONS(2853), 20, - anon_sym_SEMI_SEMI, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218361] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6491), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218404] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5473), 1, - anon_sym_STAR, - STATE(4606), 1, - aux_sym__constructor_argument_repeat1, - STATE(4614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6495), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6493), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218445] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6499), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4591), 1, - aux_sym_expression_item_repeat1, - STATE(4615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6497), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218488] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6503), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6501), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218531] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6507), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6505), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218574] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - ACTIONS(6171), 1, - anon_sym_with, - STATE(4618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6511), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6509), 18, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218615] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6515), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4577), 1, - aux_sym_expression_item_repeat1, - STATE(4619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6513), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218658] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4557), 1, - aux_sym_expression_item_repeat1, - STATE(4620), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6519), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6517), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [218701] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2536), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2534), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218744] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6523), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6521), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218787] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6527), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6525), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [218824] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_LBRACK_AT_AT, - STATE(4519), 1, - aux_sym_expression_item_repeat1, - STATE(4624), 1, - sym_attribute, - STATE(4866), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6531), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6529), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [218867] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6533), 1, - anon_sym_end, - STATE(4625), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [218927] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6535), 1, - anon_sym_end, - STATE(4626), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [218987] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6537), 1, - anon_sym_end, - STATE(4627), 1, - sym_attribute, - STATE(4630), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219047] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6537), 1, - anon_sym_end, - STATE(4628), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219107] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6541), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6539), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [219149] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6543), 1, - anon_sym_end, - STATE(4630), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219209] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - ACTIONS(6171), 1, - anon_sym_with, - ACTIONS(6547), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4629), 1, - aux_sym_expression_item_repeat1, - STATE(4631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6545), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [219255] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4632), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5748), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5750), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [219301] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6549), 1, - anon_sym_end, - STATE(4633), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219361] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6549), 1, - anon_sym_end, - STATE(4634), 1, - sym_attribute, - STATE(4662), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219421] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4635), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5388), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5390), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [219467] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6551), 1, - anon_sym_end, - STATE(4636), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219527] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6555), 1, - anon_sym_BANG, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4637), 1, - sym_attribute, - STATE(4979), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3994), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [219587] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6078), 1, - anon_sym_end, - STATE(4638), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219647] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6563), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6561), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [219689] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6565), 1, - anon_sym_end, - STATE(4636), 1, - aux_sym_object_expression_repeat1, - STATE(4640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219749] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6565), 1, - anon_sym_end, - STATE(4641), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219809] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6567), 1, - anon_sym_end, - STATE(4628), 1, - aux_sym_object_expression_repeat1, - STATE(4642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219869] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6567), 1, - anon_sym_end, - STATE(4643), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219929] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6569), 1, - anon_sym_end, - STATE(4644), 1, - sym_attribute, - STATE(4652), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [219989] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6384), 1, - anon_sym_end, - STATE(4645), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220049] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6571), 1, - anon_sym_end, - STATE(4641), 1, - aux_sym_object_expression_repeat1, - STATE(4646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220109] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6571), 1, - anon_sym_end, - STATE(4647), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220169] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6573), 1, - anon_sym_end, - STATE(4633), 1, - aux_sym_object_expression_repeat1, - STATE(4648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220229] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4649), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5723), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5725), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [220275] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6579), 1, - anon_sym_PIPE, - STATE(4650), 1, - sym_attribute, - STATE(4671), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6577), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6575), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220315] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6583), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6581), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220357] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6585), 1, - anon_sym_end, - STATE(4652), 1, - sym_attribute, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220417] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6589), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6587), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220459] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4654), 1, - sym_attribute, - STATE(4948), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4843), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [220519] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6011), 1, - anon_sym_DASH_GT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6511), 1, - anon_sym_LBRACK_AT_AT, - STATE(4655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6509), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [220559] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6603), 1, - anon_sym_constraint, - ACTIONS(6606), 1, - anon_sym_val, - ACTIONS(6609), 1, - anon_sym_end, - ACTIONS(6611), 1, - anon_sym_inherit, - ACTIONS(6614), 1, - anon_sym_method, - ACTIONS(6617), 1, - anon_sym_initializer, - ACTIONS(6620), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6623), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6626), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(4656), 2, - sym_attribute, - aux_sym_object_expression_repeat1, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220617] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6631), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6629), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220659] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4658), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5677), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5679), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [220705] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4659), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5415), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5417), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [220751] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6569), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220811] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5240), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5238), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220853] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6633), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220913] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6633), 1, - anon_sym_end, - STATE(4663), 1, - sym_attribute, - STATE(4676), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [220973] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6376), 1, - anon_sym_let, - ACTIONS(6635), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4545), 1, - aux_sym_expression_item_repeat1, - STATE(4664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6374), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221017] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6637), 1, - anon_sym_end, - STATE(4647), 1, - aux_sym_object_expression_repeat1, - STATE(4665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221077] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2536), 1, - anon_sym_let, - ACTIONS(2538), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4568), 1, - aux_sym_expression_item_repeat1, - STATE(4666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2534), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221121] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6491), 1, - anon_sym_let, - ACTIONS(6639), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4573), 1, - aux_sym_expression_item_repeat1, - STATE(4667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221165] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6579), 1, - anon_sym_PIPE, - STATE(4668), 1, - sym_attribute, - STATE(4670), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6577), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6575), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221205] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6641), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221265] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6579), 1, - anon_sym_PIPE, - STATE(4670), 1, - sym_attribute, - STATE(4671), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6645), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6643), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221305] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6647), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4671), 2, - sym_attribute, - aux_sym_variant_declaration_repeat1, - ACTIONS(6270), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221343] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6650), 1, - anon_sym_end, - STATE(4669), 1, - aux_sym_object_expression_repeat1, - STATE(4672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221403] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6579), 1, - anon_sym_PIPE, - STATE(4650), 1, - aux_sym_variant_declaration_repeat1, - STATE(4673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5713), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221443] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6652), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221503] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6248), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6246), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221545] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6654), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221605] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6456), 1, - anon_sym_let, - ACTIONS(6656), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4617), 1, - aux_sym_expression_item_repeat1, - STATE(4677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6454), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221649] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2524), 1, - anon_sym_let, - ACTIONS(2526), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4597), 1, - aux_sym_expression_item_repeat1, - STATE(4678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2522), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221693] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6658), 1, - anon_sym_end, - STATE(4679), 1, - sym_attribute, - STATE(4711), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221753] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6090), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221813] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6183), 1, - anon_sym_let, - ACTIONS(6660), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4561), 1, - aux_sym_expression_item_repeat1, - STATE(4681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6181), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221857] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6658), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [221917] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4683), 1, - sym_attribute, - STATE(4898), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6501), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [221977] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4684), 1, - sym_attribute, - STATE(4945), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6595), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [222037] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6147), 1, - anon_sym_let, - ACTIONS(6662), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4492), 1, - aux_sym_expression_item_repeat1, - STATE(4685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6145), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222081] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2512), 1, - anon_sym_let, - ACTIONS(2514), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4491), 1, - aux_sym_expression_item_repeat1, - STATE(4686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2510), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222125] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6664), 1, - anon_sym_end, - STATE(4643), 1, - aux_sym_object_expression_repeat1, - STATE(4687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222185] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6668), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4688), 1, - sym_attribute, - STATE(4708), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6670), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6666), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222229] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6672), 1, - anon_sym_end, - STATE(4682), 1, - aux_sym_object_expression_repeat1, - STATE(4689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222289] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4690), 1, - sym_attribute, - STATE(4901), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6851), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [222349] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6674), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222409] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2548), 1, - anon_sym_let, - ACTIONS(2550), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4471), 1, - aux_sym_expression_item_repeat1, - STATE(4692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2546), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222453] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6678), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4653), 1, - aux_sym_expression_item_repeat1, - STATE(4693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6680), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6676), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222497] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6682), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222557] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6234), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222617] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6684), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222677] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6686), 1, - anon_sym_end, - STATE(4696), 1, - aux_sym_object_expression_repeat1, - STATE(4697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222737] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6690), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4698), 1, - sym_attribute, - STATE(4790), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6688), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222779] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6686), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222839] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6692), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222899] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6694), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [222959] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6585), 1, - anon_sym_end, - STATE(4701), 1, - aux_sym_object_expression_repeat1, - STATE(4702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223019] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4703), 1, - sym_attribute, - STATE(4887), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6754), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [223079] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6122), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223139] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6696), 1, - anon_sym_end, - STATE(4660), 1, - aux_sym_object_expression_repeat1, - STATE(4705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223199] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5643), 1, - anon_sym_STAR, - ACTIONS(6495), 1, - anon_sym_LBRACK_AT_AT, - STATE(4706), 1, - sym_attribute, - STATE(4714), 1, - aux_sym__constructor_argument_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6493), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [223239] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4707), 1, - sym_attribute, - STATE(4881), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6767), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [223299] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6700), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6698), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223341] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6702), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223401] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6533), 1, - anon_sym_end, - STATE(4709), 1, - aux_sym_object_expression_repeat1, - STATE(4710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223461] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6650), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223521] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - STATE(3763), 1, - sym_type_constructor_path, - STATE(4712), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 6, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5339), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [223567] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6704), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223627] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5668), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6706), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4714), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(5666), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [223665] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6709), 1, - anon_sym_end, - STATE(4715), 1, - sym_attribute, - STATE(4738), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223725] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6711), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223785] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6223), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223845] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6713), 1, - anon_sym_end, - STATE(4699), 1, - aux_sym_object_expression_repeat1, - STATE(4718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223905] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6128), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [223965] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6715), 1, - anon_sym_end, - STATE(4625), 1, - aux_sym_object_expression_repeat1, - STATE(4720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224025] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6717), 1, - anon_sym_end, - STATE(4626), 1, - aux_sym_object_expression_repeat1, - STATE(4721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224085] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3986), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(3988), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - [224121] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6719), 1, - anon_sym_end, - STATE(4723), 1, - sym_attribute, - STATE(4726), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224181] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6719), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224241] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6721), 1, - anon_sym_end, - STATE(4724), 1, - aux_sym_object_expression_repeat1, - STATE(4725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224301] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6717), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224361] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6723), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224421] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6725), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224481] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6727), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224541] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6219), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224601] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6227), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224661] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6729), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224721] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6731), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224781] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6733), 1, - anon_sym_end, - STATE(4733), 1, - aux_sym_object_expression_repeat1, - STATE(4734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224841] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6733), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224901] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6735), 1, - anon_sym_end, - STATE(4674), 1, - aux_sym_object_expression_repeat1, - STATE(4736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [224961] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6704), 1, - anon_sym_end, - STATE(4735), 1, - aux_sym_object_expression_repeat1, - STATE(4737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225021] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6715), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225081] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6737), 1, - anon_sym_end, - STATE(4713), 1, - aux_sym_object_expression_repeat1, - STATE(4739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225141] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6739), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225201] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6215), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225261] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6136), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225321] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6713), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225381] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6741), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225441] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6743), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225501] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6745), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225561] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6727), 1, - anon_sym_end, - STATE(4746), 1, - aux_sym_object_expression_repeat1, - STATE(4747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225621] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6747), 1, - anon_sym_end, - STATE(4745), 1, - aux_sym_object_expression_repeat1, - STATE(4748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225681] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6749), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225741] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2458), 1, - anon_sym_let, - ACTIONS(2460), 1, - anon_sym_EQ, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4613), 1, - aux_sym_expression_item_repeat1, - STATE(4750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2456), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225785] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6753), 1, - anon_sym_BANG, - ACTIONS(6755), 1, - anon_sym_functor, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - STATE(4751), 1, - sym_attribute, - STATE(4983), 1, - sym__attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5134), 2, - sym__module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [225845] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6761), 1, - anon_sym_end, - STATE(4729), 1, - aux_sym_object_expression_repeat1, - STATE(4752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225905] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6761), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225965] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - ACTIONS(6171), 1, - anon_sym_with, - ACTIONS(6765), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4657), 1, - aux_sym_expression_item_repeat1, - STATE(4754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6763), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [226011] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6767), 1, - anon_sym_end, - STATE(4753), 1, - aux_sym_object_expression_repeat1, - STATE(4755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226071] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6769), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226131] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6195), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226191] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6771), 1, - anon_sym_end, - STATE(4743), 1, - aux_sym_object_expression_repeat1, - STATE(4758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226251] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6773), 1, - anon_sym_end, - STATE(4759), 1, - sym_attribute, - STATE(4775), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226311] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6773), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226371] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6775), 1, - anon_sym_end, - STATE(4760), 1, - aux_sym_object_expression_repeat1, - STATE(4761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226431] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6777), 1, - anon_sym_end, - STATE(4762), 1, - sym_attribute, - STATE(4766), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226491] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6775), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226551] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6779), 1, - anon_sym_end, - STATE(4763), 1, - aux_sym_object_expression_repeat1, - STATE(4764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226611] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6781), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226671] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6783), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226731] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6783), 1, - anon_sym_end, - STATE(4767), 1, - sym_attribute, - STATE(4768), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226791] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6785), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226851] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6785), 1, - anon_sym_end, - STATE(4769), 1, - sym_attribute, - STATE(4770), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226911] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6787), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226971] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4771), 1, - sym_attribute, - STATE(4926), 1, - sym__attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6691), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [227031] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6789), 1, - anon_sym_BANG, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4772), 1, - sym_attribute, - STATE(4971), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3968), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [227091] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6191), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227151] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5250), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5248), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227193] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6793), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227253] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6795), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227313] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6781), 1, - anon_sym_end, - STATE(4776), 1, - aux_sym_object_expression_repeat1, - STATE(4777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227373] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6797), 1, - anon_sym_end, - STATE(4778), 1, - sym_attribute, - STATE(4796), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227433] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6799), 1, - anon_sym_end, - STATE(4765), 1, - aux_sym_object_expression_repeat1, - STATE(4779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227493] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6175), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227553] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6801), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227613] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6799), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227673] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6803), 1, - anon_sym_end, - STATE(4782), 1, - aux_sym_object_expression_repeat1, - STATE(4783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227733] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5075), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5073), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227769] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6805), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227829] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6807), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227889] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6155), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227949] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6809), 1, - anon_sym_end, - STATE(4788), 1, - sym_attribute, - STATE(4792), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228009] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6813), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4651), 1, - aux_sym_expression_item_repeat1, - STATE(4789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6811), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228051] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6813), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6811), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228093] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6815), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228153] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6797), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228213] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6819), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6817), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228255] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6821), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228315] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5019), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5017), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228351] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6747), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228411] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6823), 1, - anon_sym_end, - STATE(4794), 1, - aux_sym_object_expression_repeat1, - STATE(4797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228471] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6823), 1, - anon_sym_end, - STATE(4656), 1, - aux_sym_object_expression_repeat1, - STATE(4798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228531] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(5820), 1, - anon_sym_val, - ACTIONS(5824), 1, - anon_sym_inherit, - ACTIONS(5826), 1, - anon_sym_method, - ACTIONS(5828), 1, - anon_sym_initializer, - ACTIONS(6652), 1, - anon_sym_end, - STATE(4798), 1, - aux_sym_object_expression_repeat1, - STATE(4799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5575), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(5576), 2, - sym__class_field, - sym__item_extension, - STATE(5577), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228591] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5892), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(5890), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [228626] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6827), 1, - anon_sym_let, - ACTIONS(6829), 1, - anon_sym_and, - STATE(4801), 1, - sym_attribute, - STATE(4864), 1, - aux_sym_class_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6825), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228665] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6046), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6044), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [228704] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4653), 1, - aux_sym_expression_item_repeat1, - STATE(4803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6833), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6676), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [228745] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6829), 1, - anon_sym_and, - ACTIONS(6837), 1, - anon_sym_let, - STATE(4804), 1, - sym_attribute, - STATE(4806), 1, - aux_sym_class_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6835), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228784] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4339), 1, - sym_item_attribute, - STATE(4805), 1, - sym_attribute, - STATE(5019), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6839), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [228827] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6843), 1, - anon_sym_let, - ACTIONS(6845), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4806), 2, - sym_attribute, - aux_sym_class_type_definition_repeat1, - ACTIONS(6841), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228864] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4675), 1, - aux_sym_expression_item_repeat1, - STATE(4807), 1, - sym_attribute, - STATE(4853), 1, - sym_string, - STATE(5020), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6240), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [228909] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6848), 1, - anon_sym_DQUOTE, - STATE(4808), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7898), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [228954] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(6856), 1, - anon_sym_LPAREN, - ACTIONS(6858), 1, - anon_sym_val, - ACTIONS(6860), 1, - anon_sym_end, - ACTIONS(6862), 1, - anon_sym_inherit, - ACTIONS(6864), 1, - anon_sym_method, - STATE(4809), 1, - sym_attribute, - STATE(4935), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5642), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(5646), 2, - sym__class_field_specification, - sym__item_extension, - STATE(5640), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [229013] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6866), 1, - anon_sym_DQUOTE, - STATE(4810), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8605), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [229058] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4811), 1, - sym_attribute, - STATE(4968), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5177), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229115] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6868), 1, - anon_sym_DQUOTE, - STATE(4812), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8339), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [229160] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4813), 1, - sym_attribute, - STATE(5031), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5208), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229217] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4814), 1, - sym_attribute, - STATE(5027), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5193), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229274] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4815), 1, - sym_attribute, - STATE(4993), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3937), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229331] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4816), 1, - sym_attribute, - STATE(5038), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5161), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229388] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6870), 1, - anon_sym_DQUOTE, - STATE(4817), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8346), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [229433] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6872), 1, - anon_sym_RPAREN, - ACTIONS(6874), 1, - anon_sym_val, - STATE(3915), 1, - sym_module_path, - STATE(4818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5181), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229490] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6876), 1, - anon_sym_DQUOTE, - STATE(4819), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7531), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [229535] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5715), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6878), 1, - anon_sym_PIPE, - STATE(4820), 1, - sym_attribute, - STATE(4862), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5713), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [229574] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4821), 1, - sym_attribute, - STATE(4822), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6882), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6880), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229615] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6892), 1, - anon_sym_and, - ACTIONS(6895), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6890), 2, - anon_sym_let, - anon_sym_in, - STATE(4822), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(6888), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229654] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6755), 1, - anon_sym_functor, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - STATE(4823), 1, - sym_attribute, - STATE(5023), 1, - sym__attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5147), 2, - sym__module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229711] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4824), 1, - sym_attribute, - STATE(4878), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6882), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6880), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229752] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6898), 1, - anon_sym_DQUOTE, - STATE(4825), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8452), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [229797] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4826), 1, - sym_attribute, - STATE(4841), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6902), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6900), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229838] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(4815), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [229873] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4828), 1, - sym_attribute, - STATE(4969), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5206), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229930] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6904), 1, - anon_sym_RPAREN, - ACTIONS(6906), 1, - anon_sym_val, - STATE(3915), 1, - sym_module_path, - STATE(4829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5188), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [229987] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6908), 1, - anon_sym_DQUOTE, - STATE(4830), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8555), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230032] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6910), 1, - anon_sym_DQUOTE, - STATE(4831), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8227), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230077] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6912), 1, - anon_sym_DQUOTE, - STATE(4832), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8150), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5924), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(5922), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [230157] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6914), 1, - anon_sym_DQUOTE, - STATE(4834), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8621), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230202] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4835), 1, - sym_attribute, - STATE(4984), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3924), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [230259] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6056), 1, - anon_sym_EQ, - ACTIONS(6916), 1, - anon_sym_of, - ACTIONS(6918), 1, - anon_sym_COLON2, - STATE(4836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6054), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6052), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230300] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6920), 1, - anon_sym_DQUOTE, - STATE(4837), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7872), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230345] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4339), 1, - sym_item_attribute, - STATE(4657), 1, - aux_sym_expression_item_repeat1, - STATE(4838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6763), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [230388] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4839), 1, - sym_attribute, - STATE(5002), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5168), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [230445] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4821), 1, - aux_sym_value_definition_repeat1, - STATE(4840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6924), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6922), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230486] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4822), 1, - aux_sym_value_definition_repeat1, - STATE(4841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6924), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6922), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230527] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6926), 1, - anon_sym_DQUOTE, - STATE(4842), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7861), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230572] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4339), 1, - sym_item_attribute, - STATE(4843), 1, - sym_attribute, - STATE(5039), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6928), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [230615] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6930), 1, - anon_sym_DQUOTE, - STATE(4844), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7774), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230660] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4845), 1, - sym_attribute, - STATE(4985), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5183), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [230717] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6932), 1, - anon_sym_DQUOTE, - STATE(4846), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7721), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230762] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6934), 1, - anon_sym_DQUOTE, - STATE(4847), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7646), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230807] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6936), 1, - anon_sym_DQUOTE, - STATE(4848), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7415), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230852] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6938), 1, - anon_sym_DQUOTE, - STATE(4849), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7539), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230897] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6940), 1, - anon_sym_DQUOTE, - STATE(4850), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7444), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [230942] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4851), 1, - sym_attribute, - STATE(4976), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5180), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [230999] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6942), 1, - anon_sym_DQUOTE, - STATE(4852), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7397), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [231044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6946), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6944), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [231079] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4854), 1, - sym_attribute, - STATE(5032), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4005), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231136] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4855), 1, - sym_attribute, - STATE(5004), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5158), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231193] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6948), 1, - anon_sym_DQUOTE, - STATE(4856), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7377), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [231238] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6829), 1, - anon_sym_and, - ACTIONS(6952), 1, - anon_sym_let, - STATE(4804), 1, - aux_sym_class_type_definition_repeat1, - STATE(4857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6950), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231277] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4858), 1, - sym_attribute, - STATE(4981), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5156), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231334] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5967), 1, - anon_sym_EQ, - ACTIONS(6954), 1, - anon_sym_of, - ACTIONS(6956), 1, - anon_sym_COLON2, - STATE(4859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5965), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5963), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231375] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6577), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6878), 1, - anon_sym_PIPE, - STATE(4860), 1, - sym_attribute, - STATE(4872), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6575), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [231414] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4861), 1, - sym_attribute, - STATE(5006), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5178), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231471] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6577), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6878), 1, - anon_sym_PIPE, - STATE(4862), 1, - sym_attribute, - STATE(4874), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6575), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [231510] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4863), 1, - sym_attribute, - STATE(5001), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5169), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231567] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6829), 1, - anon_sym_and, - ACTIONS(6952), 1, - anon_sym_let, - STATE(4806), 1, - aux_sym_class_type_definition_repeat1, - STATE(4864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6950), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231606] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4865), 1, - sym_attribute, - STATE(4996), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5154), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231663] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5902), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(5900), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [231698] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4867), 1, - sym_attribute, - STATE(4991), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5184), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [231755] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6958), 1, - anon_sym_DQUOTE, - STATE(4868), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(8012), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [231800] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6964), 1, - anon_sym_DQUOTE, - STATE(4853), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6962), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4869), 2, - sym_attribute, - aux_sym_external_repeat1, - ACTIONS(6960), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231839] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(6967), 1, - anon_sym_of, - ACTIONS(6969), 1, - anon_sym_COLON2, - STATE(4870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5729), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5727), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231880] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6015), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6009), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [231919] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6645), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6878), 1, - anon_sym_PIPE, - STATE(4872), 1, - sym_attribute, - STATE(4874), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6643), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [231958] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6971), 1, - anon_sym_DQUOTE, - STATE(4873), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7953), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [232003] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6272), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6973), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4874), 2, - sym_attribute, - aux_sym_variant_declaration_repeat1, - ACTIONS(6270), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232040] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6976), 1, - anon_sym_DQUOTE, - STATE(4875), 1, - sym_attribute, - STATE(4954), 1, - aux_sym_string_content_repeat1, - STATE(5081), 1, - sym_escape_sequence, - STATE(7881), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [232085] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4339), 1, - sym_item_attribute, - STATE(4629), 1, - aux_sym_expression_item_repeat1, - STATE(4876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6545), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232128] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4708), 1, - aux_sym_expression_item_repeat1, - STATE(4877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6978), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6666), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232169] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6884), 1, - anon_sym_and, - ACTIONS(6886), 1, - sym_and_operator, - STATE(4822), 1, - aux_sym_value_definition_repeat1, - STATE(4878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6982), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(6980), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232210] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4639), 1, - aux_sym_expression_item_repeat1, - STATE(4853), 1, - sym_string, - STATE(4879), 1, - sym_attribute, - STATE(5020), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6246), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232255] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4880), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6226), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232309] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4881), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6787), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232363] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2630), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4597), 1, - aux_sym_expression_item_repeat1, - STATE(4882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2522), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232403] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6986), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6984), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232443] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1743), 1, - aux_sym_number_token1, - ACTIONS(1745), 1, - anon_sym_SQUOTE, - ACTIONS(1747), 1, - anon_sym_DQUOTE, - ACTIONS(6988), 1, - anon_sym_LPAREN, - ACTIONS(6992), 1, - anon_sym_LBRACE, - ACTIONS(6994), 1, - anon_sym_begin, - STATE(4884), 1, - sym_attribute, - STATE(5457), 1, - sym__signed_constant, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3206), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6990), 2, - anon_sym_true, - anon_sym_false, - STATE(5269), 2, - sym__constant, - sym_signed_number, - STATE(5057), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [232495] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4885), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4802), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232549] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4886), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6724), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232603] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4887), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6860), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232657] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6996), 1, - sym__identifier, - ACTIONS(6998), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_module, - ACTIONS(7002), 1, - anon_sym_sig, - ACTIONS(7004), 1, - anon_sym_functor, - ACTIONS(7006), 1, - sym__capitalized_identifier, - STATE(4888), 1, - sym_attribute, - STATE(7263), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5672), 2, - sym__module_type, - sym__extension, - STATE(5696), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232711] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2087), 1, - aux_sym_number_token1, - ACTIONS(2089), 1, - anon_sym_SQUOTE, - ACTIONS(2091), 1, - anon_sym_DQUOTE, - ACTIONS(7008), 1, - anon_sym_LPAREN, - ACTIONS(7012), 1, - anon_sym_LBRACE, - ACTIONS(7014), 1, - anon_sym_begin, - STATE(2543), 1, - sym__signed_constant, - STATE(4889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2067), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7010), 2, - anon_sym_true, - anon_sym_false, - STATE(2508), 2, - sym__constant, - sym_signed_number, - STATE(2519), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [232763] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6906), 1, - anon_sym_val, - STATE(3915), 1, - sym_module_path, - STATE(4890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5188), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [232817] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6924), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4891), 1, - sym_attribute, - STATE(4913), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6922), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232857] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4892), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4227), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [232911] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5289), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5287), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232951] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7024), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4617), 1, - aux_sym_expression_item_repeat1, - STATE(4894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6454), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232991] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7028), 1, - anon_sym_let, - STATE(4895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7026), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233025] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7030), 1, - anon_sym_DQUOTE, - STATE(5081), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7035), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - STATE(4896), 2, - sym_attribute, - aux_sym_string_content_repeat1, - ACTIONS(7038), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7032), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [233065] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7043), 1, - anon_sym_let, - STATE(4897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7041), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233099] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4898), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6536), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233153] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4899), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6577), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233207] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2558), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4613), 1, - aux_sym_expression_item_repeat1, - STATE(4900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2456), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [233247] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4901), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6867), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233301] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7045), 1, - anon_sym_functor, - STATE(4902), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4414), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233355] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4903), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4871), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233409] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6924), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4904), 1, - sym_attribute, - STATE(4931), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6922), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233449] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3079), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [233483] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4906), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4631), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233537] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6996), 1, - sym__identifier, - ACTIONS(6998), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_module, - ACTIONS(7002), 1, - anon_sym_sig, - ACTIONS(7004), 1, - anon_sym_functor, - ACTIONS(7006), 1, - sym__capitalized_identifier, - STATE(4907), 1, - sym_attribute, - STATE(7263), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5797), 2, - sym__module_type, - sym__extension, - STATE(5696), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233591] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2941), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [233625] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6890), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6888), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [233659] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7045), 1, - anon_sym_functor, - STATE(4910), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4655), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233713] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7047), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4561), 1, - aux_sym_expression_item_repeat1, - STATE(4911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6181), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [233753] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7049), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5668), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4912), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(5666), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233789] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6882), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4913), 1, - sym_attribute, - STATE(4931), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6880), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233829] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6902), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4904), 1, - aux_sym_value_definition_repeat1, - STATE(4914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6900), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233869] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4915), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4754), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [233923] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3083), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [233957] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7054), 1, - anon_sym_let, - STATE(4339), 1, - sym_item_attribute, - STATE(4883), 1, - aux_sym_expression_item_repeat1, - STATE(4917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7052), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233997] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7056), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4573), 1, - aux_sym_expression_item_repeat1, - STATE(4918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [234037] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4919), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4838), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234091] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6982), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4920), 1, - sym_attribute, - STATE(4931), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6980), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234131] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6996), 1, - sym__identifier, - ACTIONS(6998), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_module, - ACTIONS(7002), 1, - anon_sym_sig, - ACTIONS(7004), 1, - anon_sym_functor, - ACTIONS(7006), 1, - sym__capitalized_identifier, - STATE(4921), 1, - sym_attribute, - STATE(7263), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5650), 2, - sym__module_type, - sym__extension, - STATE(5696), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234185] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4922), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6857), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234239] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3440), 1, - aux_sym_number_token1, - ACTIONS(3442), 1, - anon_sym_SQUOTE, - ACTIONS(3444), 1, - anon_sym_DQUOTE, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7062), 1, - anon_sym_LBRACE, - ACTIONS(7064), 1, - anon_sym_begin, - STATE(4923), 1, - sym_attribute, - STATE(5996), 1, - sym__signed_constant, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3418), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7060), 2, - anon_sym_true, - anon_sym_false, - STATE(5740), 2, - sym__constant, - sym_signed_number, - STATE(5720), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [234291] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5668), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7066), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4924), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(5666), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [234327] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2740), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [234361] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4926), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6678), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234415] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6843), 1, - anon_sym_let, - STATE(4927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6841), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234449] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7071), 1, - anon_sym_let, - STATE(4928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7069), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234483] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4929), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4484), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234537] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4930), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4486), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234591] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6890), 1, - anon_sym_let, - ACTIONS(7073), 1, - anon_sym_and, - ACTIONS(7076), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4931), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(6888), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234629] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2809), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [234663] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7045), 1, - anon_sym_functor, - STATE(4933), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4404), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234717] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2642), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4568), 1, - aux_sym_expression_item_repeat1, - STATE(4934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2534), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [234757] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(6858), 1, - anon_sym_val, - ACTIONS(6862), 1, - anon_sym_inherit, - ACTIONS(6864), 1, - anon_sym_method, - ACTIONS(7079), 1, - anon_sym_end, - STATE(4935), 1, - sym_attribute, - STATE(4941), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5642), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(5646), 2, - sym__class_field_specification, - sym__item_extension, - STATE(5640), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [234813] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6882), 1, - anon_sym_let, - ACTIONS(7016), 1, - anon_sym_and, - ACTIONS(7018), 1, - sym_and_operator, - STATE(4920), 1, - aux_sym_value_definition_repeat1, - STATE(4936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6880), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234853] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7083), 1, - anon_sym_let, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7081), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234893] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7085), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4545), 1, - aux_sym_expression_item_repeat1, - STATE(4938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6374), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [234933] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4939), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6552), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [234987] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7022), 1, - anon_sym_functor, - STATE(4940), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4618), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235041] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7087), 1, - anon_sym_constraint, - ACTIONS(7090), 1, - anon_sym_val, - ACTIONS(7093), 1, - anon_sym_end, - ACTIONS(7095), 1, - anon_sym_inherit, - ACTIONS(7098), 1, - anon_sym_method, - ACTIONS(7101), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(7104), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(7107), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(4941), 2, - sym_attribute, - aux_sym_class_body_type_repeat1, - STATE(5642), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(5646), 2, - sym__class_field_specification, - sym__item_extension, - STATE(5640), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [235095] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5936), 1, - anon_sym_STAR, - STATE(4912), 1, - aux_sym__constructor_argument_repeat1, - STATE(4942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6495), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6493), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235133] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(6858), 1, - anon_sym_val, - ACTIONS(6862), 1, - anon_sym_inherit, - ACTIONS(6864), 1, - anon_sym_method, - ACTIONS(7110), 1, - anon_sym_end, - STATE(4943), 1, - sym_attribute, - STATE(4959), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5642), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(5646), 2, - sym__class_field_specification, - sym__item_extension, - STATE(5640), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [235189] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(7020), 1, - anon_sym_module, - ACTIONS(7045), 1, - anon_sym_functor, - STATE(4944), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4227), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235243] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4945), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6567), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235297] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4946), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6804), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235351] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2588), 1, - anon_sym_DQUOTE, - STATE(4339), 1, - sym_item_attribute, - STATE(4675), 1, - aux_sym_expression_item_repeat1, - STATE(4853), 1, - sym_string, - STATE(4947), 1, - sym_attribute, - STATE(5069), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6240), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [235395] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4948), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4805), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235449] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7112), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4492), 1, - aux_sym_expression_item_repeat1, - STATE(4949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6145), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [235489] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2588), 1, - anon_sym_DQUOTE, - STATE(4339), 1, - sym_item_attribute, - STATE(4639), 1, - aux_sym_expression_item_repeat1, - STATE(4853), 1, - sym_string, - STATE(4950), 1, - sym_attribute, - STATE(5069), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6246), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [235533] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2640), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4491), 1, - aux_sym_expression_item_repeat1, - STATE(4951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2510), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [235573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4279), 13, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [235607] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2612), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4471), 1, - aux_sym_expression_item_repeat1, - STATE(4953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2546), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [235647] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7114), 1, - anon_sym_DQUOTE, - STATE(4896), 1, - aux_sym_string_content_repeat1, - STATE(4954), 1, - sym_attribute, - STATE(5081), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6852), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(6854), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(6850), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [235689] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4955), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(6530), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235743] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6996), 1, - sym__identifier, - ACTIONS(6998), 1, - anon_sym_LPAREN, - ACTIONS(7000), 1, - anon_sym_module, - ACTIONS(7002), 1, - anon_sym_sig, - ACTIONS(7004), 1, - anon_sym_functor, - ACTIONS(7006), 1, - sym__capitalized_identifier, - STATE(4956), 1, - sym_attribute, - STATE(7263), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5739), 2, - sym__module_type, - sym__extension, - STATE(5696), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235797] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2646), 16, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__capitalized_identifier, - [235831] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6874), 1, - anon_sym_val, - STATE(3915), 1, - sym_module_path, - STATE(4958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5181), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [235885] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(27), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(29), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(31), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5818), 1, - anon_sym_constraint, - ACTIONS(6858), 1, - anon_sym_val, - ACTIONS(6862), 1, - anon_sym_inherit, - ACTIONS(6864), 1, - anon_sym_method, - ACTIONS(7116), 1, - anon_sym_end, - STATE(4941), 1, - aux_sym_class_body_type_repeat1, - STATE(4959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4429), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5642), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(5646), 2, - sym__class_field_specification, - sym__item_extension, - STATE(5640), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [235941] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6591), 1, - sym__identifier, - ACTIONS(6593), 1, - anon_sym_LPAREN, - ACTIONS(6595), 1, - anon_sym_module, - ACTIONS(6597), 1, - anon_sym_sig, - ACTIONS(6599), 1, - anon_sym_functor, - ACTIONS(6601), 1, - sym__capitalized_identifier, - STATE(4960), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4876), 2, - sym__module_type, - sym__extension, - STATE(4214), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [235995] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3278), 1, - aux_sym_number_token1, - ACTIONS(3280), 1, - anon_sym_SQUOTE, - ACTIONS(3282), 1, - anon_sym_DQUOTE, - ACTIONS(7118), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_LBRACE, - ACTIONS(7124), 1, - anon_sym_begin, - STATE(3860), 1, - sym__signed_constant, - STATE(4961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3258), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7120), 2, - anon_sym_true, - anon_sym_false, - STATE(3820), 2, - sym__constant, - sym_signed_number, - STATE(3832), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [236047] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(6495), 1, - anon_sym_LBRACK_AT_AT, - STATE(4924), 1, - aux_sym__constructor_argument_repeat1, - STATE(4962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6493), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236085] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 7, - anon_sym_and, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4319), 11, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [236118] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(4964), 1, - sym_attribute, - STATE(4965), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7126), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236155] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(4965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7128), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236192] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6054), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7130), 1, - anon_sym_EQ, - ACTIONS(7132), 1, - anon_sym_of, - ACTIONS(7134), 1, - anon_sym_COLON2, - STATE(4966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6052), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236231] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7136), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4573), 1, - aux_sym_expression_item_repeat1, - STATE(4967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236270] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5172), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236321] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5194), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236372] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2983), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4568), 1, - aux_sym_expression_item_repeat1, - STATE(4970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2534), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236411] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3937), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236462] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7140), 1, - anon_sym_let, - ACTIONS(7142), 1, - anon_sym_and, - STATE(4972), 1, - sym_attribute, - STATE(5009), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7138), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236499] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3702), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236550] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - STATE(4974), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4793), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [236595] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3805), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236646] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5200), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236697] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - STATE(4977), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(4772), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [236742] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - ACTIONS(7146), 1, - anon_sym_functor, - STATE(4978), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4974), 2, - sym__module_expression, - sym__extension, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236793] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4005), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236844] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7142), 1, - anon_sym_and, - ACTIONS(7150), 1, - anon_sym_let, - STATE(4980), 1, - sym_attribute, - STATE(5009), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7148), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236881] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5173), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [236932] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2895), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4491), 1, - aux_sym_expression_item_repeat1, - STATE(4982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2510), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236971] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6755), 1, - anon_sym_functor, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - STATE(4983), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5147), 2, - sym__module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237022] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3976), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237073] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5164), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237124] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - ACTIONS(7146), 1, - anon_sym_functor, - STATE(4986), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5092), 2, - sym__module_expression, - sym__extension, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237175] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2686), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [237208] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2857), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [237241] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - ACTIONS(7146), 1, - anon_sym_functor, - STATE(4989), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5107), 2, - sym__module_expression, - sym__extension, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237292] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7154), 1, - anon_sym_let, - ACTIONS(7156), 1, - anon_sym_and, - STATE(4990), 1, - sym_attribute, - STATE(5040), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7152), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237329] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5150), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237380] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7142), 1, - anon_sym_and, - ACTIONS(7160), 1, - anon_sym_let, - STATE(4972), 1, - aux_sym_type_definition_repeat1, - STATE(4992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7158), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237417] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3931), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237468] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4617), 1, - aux_sym_expression_item_repeat1, - STATE(4994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6454), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237507] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7164), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4545), 1, - aux_sym_expression_item_repeat1, - STATE(4995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6374), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237546] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(4996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5152), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237597] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7156), 1, - anon_sym_and, - ACTIONS(7168), 1, - anon_sym_let, - STATE(4997), 1, - sym_attribute, - STATE(5034), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7166), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237634] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7170), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4561), 1, - aux_sym_expression_item_repeat1, - STATE(4998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6181), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237673] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(4999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3711), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237724] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7156), 1, - anon_sym_and, - ACTIONS(7174), 1, - anon_sym_let, - STATE(5000), 1, - sym_attribute, - STATE(5024), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7172), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237761] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5204), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237812] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5175), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237863] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7140), 1, - anon_sym_let, - ACTIONS(7142), 1, - anon_sym_and, - STATE(5003), 1, - sym_attribute, - STATE(5017), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7138), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237900] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5192), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [237951] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7126), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237988] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5190), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238039] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5965), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7176), 1, - anon_sym_EQ, - ACTIONS(7178), 1, - anon_sym_of, - ACTIONS(7180), 1, - anon_sym_COLON2, - STATE(5007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5963), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238078] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7142), 1, - anon_sym_and, - ACTIONS(7184), 1, - anon_sym_let, - STATE(4980), 1, - aux_sym_type_definition_repeat1, - STATE(5008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7182), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238115] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7028), 1, - anon_sym_let, - ACTIONS(7186), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5009), 2, - sym_attribute, - aux_sym_type_definition_repeat1, - ACTIONS(7026), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238150] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - ACTIONS(7146), 1, - anon_sym_functor, - STATE(5010), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5104), 2, - sym__module_expression, - sym__extension, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238201] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7191), 1, - anon_sym_let, - ACTIONS(7193), 1, - anon_sym_and, - STATE(5011), 1, - sym_attribute, - STATE(5015), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238238] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5005), 1, - aux_sym_expression_item_repeat1, - STATE(5012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7195), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238275] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7191), 1, - anon_sym_let, - ACTIONS(7193), 1, - anon_sym_and, - STATE(5013), 1, - sym_attribute, - STATE(5014), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238312] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7193), 1, - anon_sym_and, - ACTIONS(7199), 1, - anon_sym_let, - STATE(5014), 1, - sym_attribute, - STATE(5015), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7197), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238349] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7043), 1, - anon_sym_let, - ACTIONS(7201), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5015), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7041), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238384] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2648), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4597), 1, - aux_sym_expression_item_repeat1, - STATE(5016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2522), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238423] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7142), 1, - anon_sym_and, - ACTIONS(7184), 1, - anon_sym_let, - STATE(5009), 1, - aux_sym_type_definition_repeat1, - STATE(5017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7182), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238460] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7193), 1, - anon_sym_and, - ACTIONS(7206), 1, - anon_sym_let, - STATE(5011), 1, - aux_sym_class_definition_repeat1, - STATE(5018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7204), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238497] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7208), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238534] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6962), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7210), 1, - anon_sym_DQUOTE, - STATE(4853), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5020), 2, - sym_attribute, - aux_sym_external_repeat1, - ACTIONS(6960), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238571] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(5021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3264), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238622] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7156), 1, - anon_sym_and, - ACTIONS(7215), 1, - anon_sym_let, - STATE(5000), 1, - aux_sym_module_definition_repeat1, - STATE(5022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7213), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238659] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6755), 1, - anon_sym_functor, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - STATE(5023), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5131), 2, - sym__module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238710] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7071), 1, - anon_sym_let, - ACTIONS(7217), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5024), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - ACTIONS(7069), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238745] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7220), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4492), 1, - aux_sym_expression_item_repeat1, - STATE(5025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6145), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238784] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(5026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3720), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238835] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5176), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238886] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2859), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4471), 1, - aux_sym_expression_item_repeat1, - STATE(5028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2546), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238925] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6755), 1, - anon_sym_functor, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - STATE(5029), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5263), 2, - sym__module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [238976] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6559), 1, - anon_sym_struct, - ACTIONS(6791), 1, - anon_sym_functor, - STATE(3915), 1, - sym_module_path, - STATE(5030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3248), 2, - sym__module_expression, - sym__extension, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239027] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5165), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239078] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4010), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239129] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2995), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(4613), 1, - aux_sym_expression_item_repeat1, - STATE(5033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2456), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239168] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7154), 1, - anon_sym_let, - ACTIONS(7156), 1, - anon_sym_and, - STATE(5024), 1, - aux_sym_module_definition_repeat1, - STATE(5034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7152), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239205] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5729), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7222), 1, - anon_sym_EQ, - ACTIONS(7224), 1, - anon_sym_of, - ACTIONS(7226), 1, - anon_sym_COLON2, - STATE(5035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5727), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239244] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6751), 1, - anon_sym_LPAREN, - ACTIONS(6757), 1, - anon_sym_struct, - ACTIONS(6759), 1, - sym__capitalized_identifier, - ACTIONS(7146), 1, - anon_sym_functor, - STATE(5036), 1, - sym_attribute, - STATE(5478), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4977), 2, - sym__module_expression, - sym__extension, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(5495), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239295] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3871), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239346] = 14, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(6553), 1, - anon_sym_LPAREN, - ACTIONS(6557), 1, - anon_sym_functor, - ACTIONS(6559), 1, - anon_sym_struct, - STATE(3915), 1, - sym_module_path, - STATE(5038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(5198), 2, - sym__module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(3949), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [239397] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6839), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239434] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7156), 1, - anon_sym_and, - ACTIONS(7215), 1, - anon_sym_let, - STATE(5024), 1, - aux_sym_module_definition_repeat1, - STATE(5040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7213), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239471] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5965), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5967), 1, - anon_sym_EQ, - ACTIONS(7178), 1, - anon_sym_of, - ACTIONS(7180), 1, - anon_sym_COLON2, - STATE(5041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5963), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239509] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2887), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2889), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [239541] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5043), 1, - sym_attribute, - STATE(5068), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7152), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239575] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(7230), 1, - sym__identifier, - ACTIONS(7232), 1, - anon_sym_LBRACK, - STATE(5044), 1, - sym_attribute, - STATE(5476), 1, - sym__simple_class_type_ext, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [239627] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7234), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5045), 2, - sym_attribute, - aux_sym_type_definition_repeat1, - ACTIONS(7026), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239659] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4555), 1, - sym__simple_class_type_ext, - STATE(5046), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [239711] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5045), 1, - aux_sym_type_definition_repeat1, - STATE(5047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7182), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239745] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5048), 1, - sym_attribute, - STATE(5056), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7152), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239779] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2855), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2857), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [239811] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3005), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3007), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [239843] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5045), 1, - aux_sym_type_definition_repeat1, - STATE(5051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7138), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239877] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5047), 1, - aux_sym_type_definition_repeat1, - STATE(5052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7138), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239911] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4482), 1, - sym__simple_class_type_ext, - STATE(5053), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [239963] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7245), 1, - anon_sym_let, - ACTIONS(7247), 1, - anon_sym_in, - STATE(5054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7243), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239997] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7249), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7253), 1, - anon_sym_nonrec, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5055), 1, - sym_attribute, - STATE(5075), 1, - sym_type_binding, - STATE(5132), 1, - sym__attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6267), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8416), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [240057] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5056), 1, - sym_attribute, - STATE(5068), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7213), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240091] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2734), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2736), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240123] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6054), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6056), 1, - anon_sym_EQ, - ACTIONS(7132), 1, - anon_sym_of, - ACTIONS(7134), 1, - anon_sym_COLON2, - STATE(5058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6052), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240161] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4276), 1, - sym__simple_class_type_ext, - STATE(5059), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [240213] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2742), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2744), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240245] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4615), 1, - sym__simple_class_type_ext, - STATE(5061), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [240297] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5062), 1, - sym_attribute, - STATE(5078), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7182), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240331] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3097), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3099), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240363] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4553), 1, - sym__simple_class_type_ext, - STATE(5064), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [240415] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3093), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3095), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240447] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5066), 1, - sym_attribute, - STATE(5073), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7213), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240481] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2684), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2686), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240513] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7261), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5068), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - ACTIONS(7069), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240545] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6962), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7264), 1, - anon_sym_DQUOTE, - STATE(4853), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5069), 2, - sym_attribute, - aux_sym_external_repeat1, - ACTIONS(6960), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240581] = 19, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7267), 1, - sym__identifier, - ACTIONS(7269), 1, - anon_sym_nonrec, - STATE(4992), 1, - sym_type_binding, - STATE(5070), 1, - sym_attribute, - STATE(5145), 1, - sym__attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6120), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8521), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [240641] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4691), 1, - anon_sym_let, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(5429), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7237), 1, - sym__identifier, - ACTIONS(7239), 1, - anon_sym_LBRACK, - STATE(4590), 1, - sym__simple_class_type_ext, - STATE(5071), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3990), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [240693] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7273), 1, - anon_sym_let, - ACTIONS(7275), 1, - anon_sym_DOT, - STATE(5072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7271), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240727] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5068), 1, - aux_sym_module_definition_repeat1, - STATE(5073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7172), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240761] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4697), 1, - anon_sym_object, - ACTIONS(4703), 1, - anon_sym_let, - ACTIONS(7230), 1, - sym__identifier, - ACTIONS(7232), 1, - anon_sym_LBRACK, - STATE(4276), 1, - sym__simple_class_type_ext, - STATE(5074), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(4293), 2, - sym__simple_class_type, - sym__extension, - STATE(4292), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [240813] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5051), 1, - aux_sym_type_definition_repeat1, - STATE(5075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7158), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240847] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2688), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(2690), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [240879] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7228), 1, - anon_sym_and, - STATE(5043), 1, - aux_sym_module_definition_repeat1, - STATE(5077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7166), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240913] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7241), 1, - anon_sym_and, - STATE(5045), 1, - aux_sym_type_definition_repeat1, - STATE(5078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7148), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [240947] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7279), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7277), 15, - anon_sym_DQUOTE, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - sym_conversion_specification, - sym_pretty_printing_indication, - [240979] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5729), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5731), 1, - anon_sym_EQ, - ACTIONS(7224), 1, - anon_sym_of, - ACTIONS(7226), 1, - anon_sym_COLON2, - STATE(5080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5727), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241017] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7283), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7281), 15, - anon_sym_DQUOTE, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - sym_conversion_specification, - sym_pretty_printing_indication, - [241049] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7285), 1, - anon_sym_let, - STATE(5082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2734), 1, - anon_sym_let, - STATE(5083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241111] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2807), 1, - anon_sym_PIPE, - STATE(5084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2809), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [241142] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2887), 1, - anon_sym_let, - STATE(5085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241173] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4945), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4943), 10, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [241204] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7287), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5087), 2, - sym_attribute, - aux_sym__structure_repeat1, - ACTIONS(4016), 14, - ts_builtin_sym_end, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241235] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3081), 1, - anon_sym_PIPE, - STATE(5088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3083), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [241266] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3093), 1, - anon_sym_let, - STATE(5089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241297] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7273), 1, - anon_sym_let, - STATE(5090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7271), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241328] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2811), 1, - anon_sym_let, - STATE(5091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241359] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5092), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6024), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5085), 2, - anon_sym_and, - anon_sym_in, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [241408] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2947), 1, - anon_sym_let, - STATE(5093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241439] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2819), 1, - anon_sym_let, - STATE(5094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241470] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2873), 1, - anon_sym_let, - STATE(5095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241501] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4319), 13, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [241532] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3073), 1, - anon_sym_let, - STATE(5097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3097), 1, - anon_sym_let, - STATE(5098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241594] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7292), 1, - anon_sym_and, - STATE(5099), 1, - sym_attribute, - STATE(5101), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7197), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241627] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2855), 1, - anon_sym_let, - STATE(5100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241658] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7294), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5101), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7041), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241689] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7299), 1, - anon_sym_let, - STATE(5102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7297), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241720] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2742), 1, - anon_sym_let, - STATE(5103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241751] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5104), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6053), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5089), 2, - anon_sym_and, - anon_sym_in, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [241800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2738), 1, - anon_sym_PIPE, - STATE(5105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2740), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [241831] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7301), 1, - anon_sym_COLON_GT, - ACTIONS(7303), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON2, - STATE(4339), 1, - sym_item_attribute, - STATE(5106), 1, - sym_attribute, - STATE(5185), 1, - sym__typed, - STATE(5424), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7307), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241874] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3436), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3438), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5107), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6066), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5097), 2, - anon_sym_and, - anon_sym_in, - STATE(5112), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [241923] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2923), 1, - anon_sym_let, - STATE(5108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2925), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241954] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7311), 1, - anon_sym_let, - STATE(5109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7309), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2688), 1, - anon_sym_let, - STATE(5110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242016] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2939), 1, - anon_sym_PIPE, - STATE(5111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2941), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [242047] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3077), 1, - anon_sym_PIPE, - STATE(5112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3079), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [242078] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7245), 1, - anon_sym_let, - STATE(5113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7243), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2684), 1, - anon_sym_let, - STATE(5114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242140] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2644), 1, - anon_sym_PIPE, - STATE(5115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2646), 15, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [242171] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4277), 4, - anon_sym_PIPE, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4279), 12, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [242202] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7292), 1, - anon_sym_and, - STATE(5101), 1, - aux_sym_class_definition_repeat1, - STATE(5117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242235] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3005), 1, - anon_sym_let, - STATE(5118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242266] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7292), 1, - anon_sym_and, - STATE(5099), 1, - aux_sym_class_definition_repeat1, - STATE(5119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242299] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7313), 1, - anon_sym_COLON_GT, - ACTIONS(7315), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5120), 1, - sym_attribute, - STATE(5155), 1, - sym__typed, - STATE(5427), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7317), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242342] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7292), 1, - anon_sym_and, - STATE(5117), 1, - aux_sym_class_definition_repeat1, - STATE(5121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7204), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242375] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2899), 1, - anon_sym_let, - STATE(5122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2901), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242406] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7319), 1, - anon_sym_COLON_GT, - ACTIONS(7321), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5123), 1, - sym_attribute, - STATE(5201), 1, - sym__typed, - STATE(5356), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7323), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242449] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7325), 1, - anon_sym_and, - STATE(5124), 1, - sym_attribute, - STATE(5141), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242481] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4871), 1, - anon_sym_STAR, - ACTIONS(7327), 1, - sym__identifier, - ACTIONS(7329), 1, - anon_sym_POUND, - STATE(5125), 1, - sym_attribute, - STATE(5311), 1, - sym_type_constructor_path, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 4, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT, - ACTIONS(4959), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [242523] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7331), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5126), 1, - sym_attribute, - STATE(5364), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7333), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242563] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(7327), 1, - sym__identifier, - ACTIONS(7335), 1, - anon_sym_POUND, - STATE(5127), 1, - sym_attribute, - STATE(5308), 1, - sym_type_constructor_path, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4923), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(4927), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [242603] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7337), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242631] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7339), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242659] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7341), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5130), 1, - sym_attribute, - STATE(5357), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7343), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242699] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5238), 1, - anon_sym_in, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5131), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6243), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [242747] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7249), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7345), 1, - anon_sym_nonrec, - STATE(5052), 1, - sym_type_binding, - STATE(5132), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6267), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8416), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [242801] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7325), 1, - anon_sym_and, - STATE(5133), 1, - sym_attribute, - STATE(5135), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7204), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242833] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5275), 1, - anon_sym_in, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5134), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6115), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [242881] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7325), 1, - anon_sym_and, - STATE(5135), 1, - sym_attribute, - STATE(5149), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7189), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242913] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7347), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5136), 1, - sym_attribute, - STATE(5335), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7349), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242953] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7351), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [242981] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7355), 1, - anon_sym_LBRACK_AT_AT, - STATE(5138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7353), 12, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243015] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(7327), 1, - sym__identifier, - ACTIONS(7329), 1, - anon_sym_POUND, - STATE(5139), 1, - sym_attribute, - STATE(5311), 1, - sym_type_constructor_path, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(4919), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [243055] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7357), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5140), 1, - sym_attribute, - STATE(5351), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7359), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243095] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7325), 1, - anon_sym_and, - STATE(5141), 1, - sym_attribute, - STATE(5149), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7197), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243127] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7361), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5142), 1, - sym_attribute, - STATE(5390), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7363), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243167] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(7327), 1, - sym__identifier, - ACTIONS(7329), 1, - anon_sym_POUND, - STATE(5143), 1, - sym_attribute, - STATE(5311), 1, - sym_type_constructor_path, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4933), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(4935), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [243207] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4044), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243235] = 17, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7267), 1, - sym__identifier, - ACTIONS(7365), 1, - anon_sym_nonrec, - STATE(5003), 1, - sym_type_binding, - STATE(5145), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6120), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8521), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [243289] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(7367), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5146), 1, - sym_attribute, - STATE(5379), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7369), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243329] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5248), 1, - anon_sym_in, - ACTIONS(7144), 1, - anon_sym_LPAREN, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5147), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - STATE(6155), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243377] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5148), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243405] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7371), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5149), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7041), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243435] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7374), 1, - anon_sym_RPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5150), 1, - sym_attribute, - STATE(8204), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243480] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - STATE(4339), 1, - sym_item_attribute, - STATE(5151), 1, - sym_attribute, - STATE(5440), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7378), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243517] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7380), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5152), 1, - sym_attribute, - STATE(8092), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243562] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7267), 1, - sym__identifier, - STATE(5003), 1, - sym_type_binding, - STATE(5153), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6120), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8521), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [243613] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7382), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5154), 1, - sym_attribute, - STATE(8143), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243658] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7384), 1, - anon_sym_COLON_GT, - ACTIONS(7386), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5155), 1, - sym_attribute, - STATE(5350), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7388), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243695] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7390), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5156), 1, - sym_attribute, - STATE(8011), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243740] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4945), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4943), 11, - anon_sym_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [243769] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7392), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5158), 1, - sym_attribute, - STATE(8064), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243814] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(359), 1, - anon_sym_LBRACK, - ACTIONS(369), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(389), 1, - anon_sym_LBRACE_LT, - ACTIONS(7394), 1, - sym__identifier, - ACTIONS(7396), 1, - anon_sym_LPAREN, - ACTIONS(7398), 1, - anon_sym_LBRACE, - ACTIONS(7400), 1, - sym__capitalized_identifier, - STATE(1178), 1, - sym_parenthesized_operator, - STATE(1196), 1, - sym__value_name, - STATE(5159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1193), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [243859] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2700), 1, - anon_sym_LBRACK, - ACTIONS(2708), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2712), 1, - anon_sym_LBRACE_LT, - ACTIONS(7402), 1, - sym__identifier, - ACTIONS(7404), 1, - anon_sym_LPAREN, - ACTIONS(7406), 1, - anon_sym_LBRACE, - ACTIONS(7408), 1, - sym__capitalized_identifier, - STATE(3380), 1, - sym__value_name, - STATE(3432), 1, - sym_parenthesized_operator, - STATE(5160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3339), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [243904] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7410), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5161), 1, - sym_attribute, - STATE(7745), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [243949] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5005), 1, - anon_sym_COLON2, - STATE(5162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4319), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [243980] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(827), 1, - anon_sym_LBRACK, - ACTIONS(837), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(849), 1, - anon_sym_LBRACE_LT, - ACTIONS(7412), 1, - sym__identifier, - ACTIONS(7414), 1, - anon_sym_LPAREN, - ACTIONS(7416), 1, - anon_sym_LBRACE, - ACTIONS(7418), 1, - sym__capitalized_identifier, - STATE(2058), 1, - sym__value_name, - STATE(2091), 1, - sym_parenthesized_operator, - STATE(5163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2109), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [244025] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7420), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5164), 1, - sym_attribute, - STATE(8134), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244070] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7422), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5165), 1, - sym_attribute, - STATE(8573), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244115] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(767), 1, - anon_sym_LBRACK, - ACTIONS(777), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(797), 1, - anon_sym_LBRACE_LT, - ACTIONS(7424), 1, - sym__identifier, - ACTIONS(7426), 1, - anon_sym_LPAREN, - ACTIONS(7428), 1, - anon_sym_LBRACE, - ACTIONS(7430), 1, - sym__capitalized_identifier, - STATE(1881), 1, - sym_parenthesized_operator, - STATE(1957), 1, - sym__value_name, - STATE(5166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1937), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [244160] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3664), 1, - anon_sym_LBRACK, - ACTIONS(3672), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3676), 1, - anon_sym_LBRACE_LT, - ACTIONS(7432), 1, - sym__identifier, - ACTIONS(7434), 1, - anon_sym_LPAREN, - ACTIONS(7436), 1, - anon_sym_LBRACE, - ACTIONS(7438), 1, - sym__capitalized_identifier, - STATE(3286), 1, - sym_parenthesized_operator, - STATE(3324), 1, - sym__value_name, - STATE(5167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3363), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [244205] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7440), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5168), 1, - sym_attribute, - STATE(8427), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244250] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7442), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5169), 1, - sym_attribute, - STATE(8628), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244295] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7249), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5052), 1, - sym_type_binding, - STATE(5170), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6267), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8416), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [244346] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7249), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(4895), 1, - sym_type_binding, - STATE(5171), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6267), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8416), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [244397] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7444), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5172), 1, - sym_attribute, - STATE(8345), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244442] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7446), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5173), 1, - sym_attribute, - STATE(8096), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244487] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7249), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5062), 1, - sym_type_binding, - STATE(5174), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6267), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8416), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [244538] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7448), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5175), 1, - sym_attribute, - STATE(8528), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244583] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7450), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5176), 1, - sym_attribute, - STATE(7624), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244628] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7452), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5177), 1, - sym_attribute, - STATE(8401), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244673] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7454), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5178), 1, - sym_attribute, - STATE(8408), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244718] = 13, - ACTIONS(273), 1, - anon_sym_LBRACK, - ACTIONS(283), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(303), 1, - anon_sym_LBRACE_LT, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7456), 1, - sym__identifier, - ACTIONS(7458), 1, - anon_sym_LPAREN, - ACTIONS(7460), 1, - anon_sym_LBRACE, - ACTIONS(7462), 1, - sym__capitalized_identifier, - STATE(1295), 1, - sym_parenthesized_operator, - STATE(1341), 1, - sym__value_name, - STATE(5179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1264), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [244763] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7464), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5180), 1, - sym_attribute, - STATE(7880), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244808] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7466), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5181), 1, - sym_attribute, - STATE(8051), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244853] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3742), 1, - anon_sym_LBRACK, - ACTIONS(3750), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3754), 1, - anon_sym_LBRACE_LT, - ACTIONS(7468), 1, - sym__identifier, - ACTIONS(7470), 1, - anon_sym_LPAREN, - ACTIONS(7472), 1, - anon_sym_LBRACE, - ACTIONS(7474), 1, - sym__capitalized_identifier, - STATE(2438), 1, - sym__value_name, - STATE(2480), 1, - sym_parenthesized_operator, - STATE(5182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2482), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [244898] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7476), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5183), 1, - sym_attribute, - STATE(8034), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244943] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7478), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5184), 1, - sym_attribute, - STATE(8347), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [244988] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7480), 1, - anon_sym_COLON_GT, - ACTIONS(7482), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5185), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7484), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [245025] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2161), 1, - anon_sym_LBRACK, - ACTIONS(2169), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2173), 1, - anon_sym_LBRACE_LT, - ACTIONS(7486), 1, - sym__identifier, - ACTIONS(7488), 1, - anon_sym_LPAREN, - ACTIONS(7490), 1, - anon_sym_LBRACE, - ACTIONS(7492), 1, - sym__capitalized_identifier, - STATE(2689), 1, - sym_parenthesized_operator, - STATE(2699), 1, - sym__value_name, - STATE(5186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2735), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245070] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2363), 1, - anon_sym_LBRACK, - ACTIONS(2371), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2375), 1, - anon_sym_LBRACE_LT, - ACTIONS(7494), 1, - sym__identifier, - ACTIONS(7496), 1, - anon_sym_LPAREN, - ACTIONS(7498), 1, - anon_sym_LBRACE, - ACTIONS(7500), 1, - sym__capitalized_identifier, - STATE(3041), 1, - sym_parenthesized_operator, - STATE(3059), 1, - sym__value_name, - STATE(5187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3029), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245115] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7502), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5188), 1, - sym_attribute, - STATE(7557), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245160] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7506), 1, - anon_sym_POUND, - STATE(5189), 1, - sym_attribute, - STATE(5471), 1, - sym_type_constructor_path, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4927), 2, - anon_sym_in, - anon_sym_as, - ACTIONS(4923), 7, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [245199] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7508), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5190), 1, - sym_attribute, - STATE(8457), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245244] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(7510), 1, - sym__identifier, - ACTIONS(7512), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - anon_sym_LBRACE, - ACTIONS(7516), 1, - sym__capitalized_identifier, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2305), 1, - sym__value_name, - STATE(5191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2234), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245289] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7518), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5192), 1, - sym_attribute, - STATE(8211), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245334] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7520), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5193), 1, - sym_attribute, - STATE(7506), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245379] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7522), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5194), 1, - sym_attribute, - STATE(7959), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245424] = 13, - ACTIONS(45), 1, - anon_sym_LBRACK, - ACTIONS(55), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(75), 1, - anon_sym_LBRACE_LT, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7524), 1, - sym__identifier, - ACTIONS(7526), 1, - anon_sym_LPAREN, - ACTIONS(7528), 1, - anon_sym_LBRACE, - ACTIONS(7530), 1, - sym__capitalized_identifier, - STATE(1296), 1, - sym_parenthesized_operator, - STATE(1313), 1, - sym__value_name, - STATE(5195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1271), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245469] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(7512), 1, - anon_sym_LPAREN, - ACTIONS(7514), 1, - anon_sym_LBRACE, - ACTIONS(7516), 1, - sym__capitalized_identifier, - ACTIONS(7532), 1, - sym__identifier, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2305), 1, - sym__value_name, - STATE(5196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2234), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245514] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3704), 1, - anon_sym_LBRACK, - ACTIONS(3712), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3716), 1, - anon_sym_LBRACE_LT, - ACTIONS(7534), 1, - sym__identifier, - ACTIONS(7536), 1, - anon_sym_LPAREN, - ACTIONS(7538), 1, - anon_sym_LBRACE, - ACTIONS(7540), 1, - sym__capitalized_identifier, - STATE(2248), 1, - sym_parenthesized_operator, - STATE(2287), 1, - sym__value_name, - STATE(5197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2332), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245559] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7542), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5198), 1, - sym_attribute, - STATE(7659), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245604] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3540), 1, - anon_sym_LBRACK, - ACTIONS(3546), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3550), 1, - anon_sym_LBRACE_LT, - ACTIONS(7514), 1, - anon_sym_LBRACE, - ACTIONS(7516), 1, - sym__capitalized_identifier, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(7544), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(2305), 1, - sym__value_name, - STATE(5199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2234), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245649] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7546), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5200), 1, - sym_attribute, - STATE(7652), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245694] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7548), 1, - anon_sym_COLON_GT, - ACTIONS(7550), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5201), 1, - sym_attribute, - STATE(5395), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7552), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [245731] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7267), 1, - sym__identifier, - STATE(4895), 1, - sym_type_binding, - STATE(5202), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6120), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8521), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [245782] = 13, - ACTIONS(125), 1, - anon_sym_LBRACK, - ACTIONS(135), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(147), 1, - anon_sym_LBRACE_LT, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7554), 1, - sym__identifier, - ACTIONS(7556), 1, - anon_sym_LPAREN, - ACTIONS(7558), 1, - anon_sym_LBRACE, - ACTIONS(7560), 1, - sym__capitalized_identifier, - STATE(1468), 1, - sym__value_name, - STATE(1478), 1, - sym_parenthesized_operator, - STATE(5203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1469), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245827] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7562), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5204), 1, - sym_attribute, - STATE(8322), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245872] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2325), 1, - anon_sym_LBRACK, - ACTIONS(2333), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2337), 1, - anon_sym_LBRACE_LT, - ACTIONS(7564), 1, - sym__identifier, - ACTIONS(7566), 1, - anon_sym_LPAREN, - ACTIONS(7568), 1, - anon_sym_LBRACE, - ACTIONS(7570), 1, - sym__capitalized_identifier, - STATE(2926), 1, - sym__value_name, - STATE(2939), 1, - sym_parenthesized_operator, - STATE(5205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2869), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [245917] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7572), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5206), 1, - sym_attribute, - STATE(7369), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [245962] = 16, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - ACTIONS(7267), 1, - sym__identifier, - STATE(5008), 1, - sym_type_binding, - STATE(5207), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6120), 1, - sym__type_params, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - STATE(8521), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [246013] = 13, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1739), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1741), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4776), 1, - anon_sym_LPAREN, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(7574), 1, - anon_sym_RPAREN, - STATE(3965), 1, - sym__simple_module_expression_ext, - STATE(5208), 1, - sym_attribute, - STATE(8593), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3085), 2, - sym_extension, - sym_quoted_extension, - STATE(3935), 2, - sym__simple_module_expression, - sym__extension, - STATE(3922), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [246058] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7580), 1, - sym__right_quoted_string_delimiter, - STATE(5209), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7989), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5047), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5045), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [246120] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7582), 1, - sym__right_quoted_string_delimiter, - STATE(5211), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7971), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246154] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7584), 1, - sym__right_quoted_string_delimiter, - STATE(5212), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7420), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246188] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7586), 1, - sym__right_quoted_string_delimiter, - STATE(5213), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7963), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246222] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7588), 1, - sym__right_quoted_string_delimiter, - STATE(5214), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7961), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246256] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7590), 1, - sym__right_quoted_string_delimiter, - STATE(5215), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7957), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246290] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7592), 1, - sym__right_quoted_string_delimiter, - STATE(5216), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7949), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246324] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7594), 1, - sym__right_quoted_string_delimiter, - STATE(5217), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7947), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246358] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7596), 1, - sym__right_quoted_string_delimiter, - STATE(5218), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7943), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246392] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7598), 1, - sym__right_quoted_string_delimiter, - STATE(5219), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7427), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246426] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7600), 1, - sym__right_quoted_string_delimiter, - STATE(5220), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7935), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246460] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7602), 1, - sym__right_quoted_string_delimiter, - STATE(5221), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7933), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246494] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7604), 1, - sym__right_quoted_string_delimiter, - STATE(5222), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7929), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246528] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5019), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5017), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [246556] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7606), 1, - sym__right_quoted_string_delimiter, - STATE(5224), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7442), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246590] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7608), 1, - sym__right_quoted_string_delimiter, - STATE(5225), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7920), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246624] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7610), 1, - sym__right_quoted_string_delimiter, - STATE(5226), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7916), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246658] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7612), 1, - sym__right_quoted_string_delimiter, - STATE(5227), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7910), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246692] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7614), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5228), 1, - sym_attribute, - STATE(5376), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7616), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [246726] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7618), 1, - sym__right_quoted_string_delimiter, - STATE(5229), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7459), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246760] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7620), 1, - sym__right_quoted_string_delimiter, - STATE(5230), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7900), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246794] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7622), 1, - sym__right_quoted_string_delimiter, - STATE(5231), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8559), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246828] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5232), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6263), 1, - sym__type_params, - STATE(6714), 1, - sym_type_constructor_path, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [246876] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7624), 1, - sym__right_quoted_string_delimiter, - STATE(5233), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7824), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246910] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7626), 1, - sym__right_quoted_string_delimiter, - STATE(5234), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7892), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246944] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7628), 1, - sym__right_quoted_string_delimiter, - STATE(5235), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7651), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [246978] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7630), 1, - sym__right_quoted_string_delimiter, - STATE(5236), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7882), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247012] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7632), 1, - sym__right_quoted_string_delimiter, - STATE(5237), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8047), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247046] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7634), 1, - sym__right_quoted_string_delimiter, - STATE(5238), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7977), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247080] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7636), 1, - sym__right_quoted_string_delimiter, - STATE(5239), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7985), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247114] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7638), 1, - sym__right_quoted_string_delimiter, - STATE(5240), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7991), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247148] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7640), 1, - sym__right_quoted_string_delimiter, - STATE(5241), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7999), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247182] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7642), 1, - sym__right_quoted_string_delimiter, - STATE(5242), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8003), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247216] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7644), 1, - sym__right_quoted_string_delimiter, - STATE(5243), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8005), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3077), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3079), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [247278] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7646), 1, - sym__right_quoted_string_delimiter, - STATE(5245), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7484), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247312] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7648), 1, - sym__right_quoted_string_delimiter, - STATE(5246), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8013), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247346] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3236), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5247), 1, - sym_attribute, - STATE(5371), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3240), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [247380] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7650), 1, - sym__right_quoted_string_delimiter, - STATE(5248), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7496), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247414] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7652), 1, - sym__right_quoted_string_delimiter, - STATE(5249), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8017), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247448] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7654), 1, - sym__right_quoted_string_delimiter, - STATE(5250), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7867), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247482] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7656), 1, - sym__right_quoted_string_delimiter, - STATE(5251), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8019), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247516] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7658), 1, - sym__right_quoted_string_delimiter, - STATE(5252), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7607), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247550] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7660), 1, - sym__right_quoted_string_delimiter, - STATE(5253), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8025), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247584] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - sym__right_quoted_string_delimiter, - STATE(5254), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8027), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247618] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7664), 1, - sym__right_quoted_string_delimiter, - STATE(5255), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8030), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247652] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7666), 1, - sym__right_quoted_string_delimiter, - STATE(5256), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8032), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247686] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5257), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6333), 1, - sym__type_params, - STATE(6469), 1, - sym_type_constructor_path, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [247734] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7668), 1, - sym__right_quoted_string_delimiter, - STATE(5258), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8035), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247768] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7670), 1, - sym__right_quoted_string_delimiter, - STATE(5259), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8037), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247802] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7672), 1, - sym__right_quoted_string_delimiter, - STATE(5260), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8040), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247836] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7674), 1, - sym__right_quoted_string_delimiter, - STATE(5261), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7859), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247870] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7676), 1, - sym__right_quoted_string_delimiter, - STATE(5262), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7849), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247904] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3410), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3412), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7144), 1, - anon_sym_LPAREN, - STATE(5263), 1, - sym_attribute, - STATE(5510), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4793), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - STATE(4905), 2, - sym_extension, - sym_quoted_extension, - STATE(5521), 2, - sym__simple_module_expression, - sym__extension, - STATE(5514), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [247944] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7678), 1, - sym__right_quoted_string_delimiter, - STATE(5264), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8042), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [247978] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5075), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5073), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248006] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7680), 1, - sym__right_quoted_string_delimiter, - STATE(5266), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8045), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248040] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7682), 1, - sym__right_quoted_string_delimiter, - STATE(5267), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7660), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248074] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7684), 1, - sym__right_quoted_string_delimiter, - STATE(5268), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7511), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248108] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4060), 1, - anon_sym_COLON2, - STATE(5269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4062), 12, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [248136] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4064), 1, - anon_sym_COLON2, - STATE(5270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4066), 12, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [248164] = 15, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(4925), 1, - sym__identifier, - ACTIONS(7251), 1, - anon_sym_LPAREN, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(7259), 1, - anon_sym__, - STATE(5271), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6153), 1, - sym__type_params, - STATE(6624), 1, - sym_type_constructor_path, - STATE(6983), 1, - sym__type_param, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [248212] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7686), 1, - sym__right_quoted_string_delimiter, - STATE(5272), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8417), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248246] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7688), 1, - sym__right_quoted_string_delimiter, - STATE(5273), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7833), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248280] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7690), 1, - sym__right_quoted_string_delimiter, - STATE(5274), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7544), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248314] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7692), 1, - sym__right_quoted_string_delimiter, - STATE(5275), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7556), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248348] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5111), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5109), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248376] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7694), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5277), 1, - sym_attribute, - STATE(5448), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7696), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [248410] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7698), 1, - sym__right_quoted_string_delimiter, - STATE(5278), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7825), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248444] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7700), 1, - sym__right_quoted_string_delimiter, - STATE(5279), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7813), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248478] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7702), 1, - sym__right_quoted_string_delimiter, - STATE(5280), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7975), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2644), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2646), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248540] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5115), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5113), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248568] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5107), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5105), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248596] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5103), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5101), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248624] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7704), 1, - sym__right_quoted_string_delimiter, - STATE(5285), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8224), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248658] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7706), 1, - sym__right_quoted_string_delimiter, - STATE(5286), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7553), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248692] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5083), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5081), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248720] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5071), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5069), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248748] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7708), 1, - sym__right_quoted_string_delimiter, - STATE(5289), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7569), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248782] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5067), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5065), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248810] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7710), 1, - sym__right_quoted_string_delimiter, - STATE(5291), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7792), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4871), 1, - anon_sym_STAR, - STATE(5292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4867), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [248872] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5063), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5061), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [248900] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7712), 1, - sym__right_quoted_string_delimiter, - STATE(5294), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7596), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248934] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7714), 1, - sym__right_quoted_string_delimiter, - STATE(5295), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7608), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [248968] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7716), 1, - sym__right_quoted_string_delimiter, - STATE(5296), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7771), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249002] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2807), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2809), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249030] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7718), 1, - sym__right_quoted_string_delimiter, - STATE(5298), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7784), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5059), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5057), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5123), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5121), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249120] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7720), 1, - sym__right_quoted_string_delimiter, - STATE(5301), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7384), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249154] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7722), 1, - sym__right_quoted_string_delimiter, - STATE(5302), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7772), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5039), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5037), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249216] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7724), 1, - sym__right_quoted_string_delimiter, - STATE(5304), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7618), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249250] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5123), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5121), 8, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249280] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7728), 1, - anon_sym_as, - STATE(4339), 1, - sym_item_attribute, - STATE(5306), 1, - sym_attribute, - STATE(5355), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7726), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [249314] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5035), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5033), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249342] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5025), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5023), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249370] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5079), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5077), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249398] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5095), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5093), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5119), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5117), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249454] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7730), 1, - sym__right_quoted_string_delimiter, - STATE(5312), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7641), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249488] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7734), 1, - anon_sym_as, - STATE(4339), 1, - sym_item_attribute, - STATE(5313), 1, - sym_attribute, - STATE(5409), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7732), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [249522] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7736), 1, - sym__right_quoted_string_delimiter, - STATE(5314), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7653), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249556] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3224), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5315), 1, - sym_attribute, - STATE(5421), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3228), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [249590] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5031), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5029), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249618] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7738), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5317), 1, - sym_attribute, - STATE(5354), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7740), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [249652] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7742), 1, - sym__right_quoted_string_delimiter, - STATE(5318), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7749), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249686] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3210), 1, - anon_sym_COLON2, - ACTIONS(7744), 1, - anon_sym_DOT_DOT, - STATE(5319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [249716] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7746), 1, - sym__right_quoted_string_delimiter, - STATE(5320), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7662), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249750] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5043), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5041), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249778] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5015), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5013), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249806] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2939), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2941), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249834] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3083), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249862] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7748), 1, - sym__right_quoted_string_delimiter, - STATE(5325), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7685), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249896] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2738), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(2740), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [249924] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7750), 1, - sym__right_quoted_string_delimiter, - STATE(5327), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7741), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249958] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7752), 1, - sym__right_quoted_string_delimiter, - STATE(5328), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7697), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [249992] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3242), 1, - anon_sym_EQ, - STATE(4339), 1, - sym_item_attribute, - STATE(5329), 1, - sym_attribute, - STATE(5437), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3246), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250026] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7754), 1, - sym__right_quoted_string_delimiter, - STATE(5330), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7729), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [250060] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 13, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [250086] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7756), 1, - sym__right_quoted_string_delimiter, - STATE(5332), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_quoted_string_content_repeat1, - STATE(7706), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [250120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5051), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5049), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [250148] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7758), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250179] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7343), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250210] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4132), 1, - anon_sym_COLON2, - STATE(5336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4134), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [250237] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5337), 1, - sym_attribute, - STATE(5389), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7760), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250268] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7762), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250299] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5339), 1, - sym_attribute, - STATE(5386), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7764), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250330] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5340), 1, - sym_attribute, - STATE(5388), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7766), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250361] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5083), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5081), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [250388] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7768), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250419] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5343), 1, - sym_attribute, - STATE(5385), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7770), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250450] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7772), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250481] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5345), 1, - sym_attribute, - STATE(5381), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7774), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5019), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5017), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [250539] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7776), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250570] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5348), 1, - sym_attribute, - STATE(5387), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7778), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250601] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7782), 1, - anon_sym_COLON2, - STATE(5349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7780), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [250628] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7349), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250659] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7369), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250690] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7786), 1, - anon_sym_COLON2, - STATE(5352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7784), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [250717] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7788), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250748] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7790), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250779] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7732), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250810] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7552), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250841] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7792), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250872] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5358), 1, - sym_attribute, - STATE(5430), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7794), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250903] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4615), 1, - anon_sym_COLON2, - STATE(5359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4617), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [250930] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7796), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250961] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7766), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250992] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4469), 1, - anon_sym_DOT_DOT, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(7798), 1, - anon_sym_private, - ACTIONS(7800), 1, - anon_sym_LBRACE, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4408), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [251033] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5063), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5061), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [251060] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7363), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251091] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5365), 1, - sym_attribute, - STATE(5377), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7802), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251122] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5360), 1, - aux_sym_expression_item_repeat1, - STATE(5366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7804), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251153] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5367), 1, - sym_attribute, - STATE(5401), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7806), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251184] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5368), 1, - sym_attribute, - STATE(5404), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7808), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251215] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7810), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251246] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7814), 1, - anon_sym_COLON2, - STATE(5370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7812), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [251273] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7740), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251304] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [251329] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5338), 1, - aux_sym_expression_item_repeat1, - STATE(5373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7816), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251360] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5103), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5101), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [251387] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4325), 1, - anon_sym_COLON2, - STATE(5375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4327), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [251414] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7818), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251445] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7820), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251476] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4333), 1, - anon_sym_COLON2, - STATE(5378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4335), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [251503] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7822), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251534] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5342), 1, - aux_sym_expression_item_repeat1, - STATE(5380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7824), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251565] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7826), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251596] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7828), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251627] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7832), 1, - anon_sym_COLON2, - STATE(5383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7830), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [251654] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7836), 1, - anon_sym_COLON2, - STATE(5384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7834), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [251681] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7838), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251712] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7840), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251743] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7842), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251774] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7844), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251805] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7846), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251836] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7848), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251867] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5391), 1, - sym_attribute, - STATE(5411), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7850), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251898] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5344), 1, - aux_sym_expression_item_repeat1, - STATE(5392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7852), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251929] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3246), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251960] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5394), 1, - sym_attribute, - STATE(5408), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7854), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251991] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7359), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252022] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5347), 1, - aux_sym_expression_item_repeat1, - STATE(5396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7856), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252053] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4871), 1, - anon_sym_STAR, - ACTIONS(4959), 1, - anon_sym_as, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5397), 1, - sym_attribute, - STATE(5462), 1, - sym_type_constructor_path, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4957), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [252092] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4164), 1, - anon_sym_COLON2, - STATE(5398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4166), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252119] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7860), 1, - sym__right_quoted_string_delimiter, - STATE(5399), 1, - sym_attribute, - STATE(5458), 1, - aux_sym_quoted_string_content_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7578), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [252150] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5400), 1, - sym_attribute, - STATE(5426), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7862), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252181] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7864), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252212] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7868), 1, - anon_sym_LPAREN, - ACTIONS(7870), 1, - anon_sym_COLON2, - STATE(5402), 1, - sym_attribute, - STATE(5583), 1, - aux_sym_module_binding_repeat1, - STATE(5674), 1, - sym__module_typed, - STATE(5688), 1, - sym_module_parameter, - STATE(6030), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5530), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(7866), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [252255] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5361), 1, - aux_sym_expression_item_repeat1, - STATE(5403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7872), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252286] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7874), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252317] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5405), 1, - sym_attribute, - STATE(5453), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7876), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252348] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5353), 1, - aux_sym_expression_item_repeat1, - STATE(5406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7878), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252379] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3228), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252410] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7880), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252441] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7872), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252472] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_COLON2, - STATE(5410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7882), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252499] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7886), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252530] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4919), 1, - anon_sym_as, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5412), 1, - sym_attribute, - STATE(5462), 1, - sym_type_constructor_path, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4917), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [252567] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7333), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252598] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4455), 1, - anon_sym_DOT_DOT, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7888), 1, - anon_sym_private, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4434), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [252639] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4867), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [252664] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4611), 1, - anon_sym_COLON2, - STATE(5416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4613), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252691] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4519), 1, - anon_sym_COLON2, - STATE(5417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4521), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252718] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4523), 1, - anon_sym_COLON2, - STATE(5418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4525), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252745] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5071), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5069), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [252772] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5334), 1, - aux_sym_expression_item_repeat1, - STATE(5420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7890), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252803] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7696), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252834] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4619), 1, - anon_sym_COLON2, - STATE(5422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4621), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [252861] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_DOT_DOT, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7892), 1, - anon_sym_private, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4417), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [252902] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7484), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252933] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5107), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5105), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [252960] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7894), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252991] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7388), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5075), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5073), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253049] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4230), 1, - anon_sym_COLON2, - STATE(5429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4232), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253076] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7896), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253107] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5067), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5065), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253134] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5382), 1, - aux_sym_expression_item_repeat1, - STATE(5432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7898), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253165] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5123), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5121), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253192] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4587), 1, - anon_sym_COLON2, - STATE(5434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4589), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253219] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4603), 1, - anon_sym_COLON2, - STATE(5435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4605), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253246] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5015), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5013), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253273] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7616), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253304] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7868), 1, - anon_sym_LPAREN, - ACTIONS(7870), 1, - anon_sym_COLON2, - STATE(5402), 1, - aux_sym_module_binding_repeat1, - STATE(5438), 1, - sym_attribute, - STATE(5687), 1, - sym__module_typed, - STATE(5688), 1, - sym_module_parameter, - STATE(6009), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5592), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(7900), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [253347] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(4459), 1, - anon_sym_DOT_DOT, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7902), 1, - anon_sym_private, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4539), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [253388] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7904), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253419] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5079), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5077), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253446] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4607), 1, - anon_sym_COLON2, - STATE(5442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4609), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253473] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5059), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5057), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253500] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4555), 1, - anon_sym_COLON2, - STATE(5444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4557), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253527] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4939), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [253552] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4477), 1, - anon_sym_COLON2, - STATE(5446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4479), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253579] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3210), 1, - anon_sym_COLON2, - STATE(5447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253606] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7906), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253637] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5369), 1, - aux_sym_expression_item_repeat1, - STATE(5449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7908), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253668] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5095), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5093), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253695] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4563), 1, - anon_sym_COLON2, - STATE(5451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4565), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253722] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4567), 1, - anon_sym_COLON2, - STATE(5452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4569), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253749] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7910), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253780] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7914), 1, - anon_sym_COLON2, - STATE(5454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7912), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253807] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4571), 1, - anon_sym_COLON2, - STATE(5455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4573), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253834] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3240), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253865] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4148), 1, - anon_sym_COLON2, - STATE(5457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4150), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253892] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7922), 1, - sym__right_quoted_string_delimiter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7919), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - STATE(5458), 2, - sym_attribute, - aux_sym_quoted_string_content_repeat1, - ACTIONS(7916), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [253921] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4575), 1, - anon_sym_COLON2, - STATE(5459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4577), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253948] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4579), 1, - anon_sym_COLON2, - STATE(5460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4581), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [253975] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4935), 1, - anon_sym_as, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5461), 1, - sym_attribute, - STATE(5462), 1, - sym_type_constructor_path, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4933), 6, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [254012] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5119), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5117), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254039] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5115), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5113), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254066] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7926), 1, - anon_sym_COLON2, - STATE(5464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7924), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [254093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5043), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5041), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5047), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5045), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254147] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5051), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5049), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254174] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5031), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5029), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254201] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4583), 1, - anon_sym_COLON2, - STATE(5469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4585), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [254228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5039), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5037), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254255] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5025), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5023), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254282] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5111), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5109), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254309] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4591), 1, - anon_sym_COLON2, - STATE(5473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4593), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [254336] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4543), 1, - anon_sym_COLON2, - STATE(5474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4545), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [254363] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5035), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5033), 9, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [254390] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5476), 1, - sym_attribute, - STATE(5480), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7928), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254420] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7930), 1, - anon_sym_DOT_DOT, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4588), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [254458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7932), 1, - anon_sym_DOT, - STATE(5478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5216), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [254484] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5479), 1, - sym_attribute, - STATE(5484), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7934), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254514] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7936), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254544] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5481), 1, - sym_attribute, - STATE(5487), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7938), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254574] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2849), 11, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [254598] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7940), 1, - anon_sym_DOT_DOT, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4537), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [254636] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7942), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254666] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7944), 1, - anon_sym_COLON2, - STATE(5485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4317), 2, - anon_sym_as, - sym__identifier, - ACTIONS(4319), 8, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - sym__capitalized_identifier, - [254694] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5486), 1, - sym_attribute, - STATE(5491), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7946), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254724] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7948), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254754] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4339), 1, - sym_item_attribute, - STATE(5488), 1, - sym_attribute, - STATE(5492), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7950), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254784] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 11, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [254808] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7954), 3, - sym__right_quoted_string_delimiter, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7952), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [254834] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7956), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254864] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2482), 1, - anon_sym_LBRACK_AT_AT, - STATE(4242), 1, - aux_sym_expression_item_repeat1, - STATE(4339), 1, - sym_item_attribute, - STATE(5492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7958), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254894] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7960), 1, - anon_sym_DOT_DOT, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4409), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [254932] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(7800), 1, - anon_sym_LBRACE, - ACTIONS(7962), 1, - anon_sym_DOT_DOT, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4400), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [254970] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5216), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [254993] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7968), 1, - anon_sym_COLON2, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - STATE(5496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7964), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_as, - anon_sym_when, - [255022] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5291), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255045] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_constraint, - STATE(5498), 1, - sym_attribute, - STATE(5501), 1, - aux_sym_type_binding_repeat1, - STATE(5622), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5658), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [255074] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5222), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255097] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_constraint, - STATE(5500), 1, - sym_attribute, - STATE(5503), 1, - aux_sym_type_binding_repeat1, - STATE(5622), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5633), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [255126] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_constraint, - STATE(5501), 1, - sym_attribute, - STATE(5509), 1, - aux_sym_type_binding_repeat1, - STATE(5622), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5633), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [255155] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5279), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255178] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_constraint, - STATE(5503), 1, - sym_attribute, - STATE(5509), 1, - aux_sym_type_binding_repeat1, - STATE(5622), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5602), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [255207] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5295), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255230] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5254), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255253] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5283), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255276] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5267), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255299] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5263), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255322] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7974), 1, - anon_sym_constraint, - STATE(5622), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5509), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(5651), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [255349] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5271), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255372] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7979), 1, - anon_sym_COLON2, - STATE(5511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7977), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_as, - anon_sym_when, - [255399] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7985), 1, - anon_sym_COLON2, - ACTIONS(7987), 1, - anon_sym_as, - STATE(5512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7981), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_when, - [255432] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2063), 1, - anon_sym_COLON2, - ACTIONS(7744), 1, - anon_sym_DOT_DOT, - STATE(5513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2061), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [255459] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5226), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255482] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5407), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5409), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5515), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255523] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5345), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5347), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5516), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255564] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5388), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5517), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255605] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5299), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255628] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(7991), 1, - anon_sym_COLON2, - STATE(5519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7989), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_when, - [255661] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5319), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5321), 1, - anon_sym_in, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5520), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255702] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5244), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [255725] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5415), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5417), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5522), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255766] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_DASH_GT, - ACTIONS(5325), 1, - anon_sym_STAR, - ACTIONS(5337), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5339), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(4962), 1, - aux_sym__constructor_argument_repeat1, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5523), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255807] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7995), 1, - anon_sym_COLON2, - STATE(5524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7993), 8, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_as, - anon_sym_when, - [255834] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4172), 1, - anon_sym_COLON2, - STATE(5525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4174), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [255858] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7997), 1, - anon_sym_DASH_GT, - STATE(5526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5303), 8, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [255882] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(7999), 1, - sym__identifier, - ACTIONS(8001), 1, - anon_sym_LPAREN, - ACTIONS(8003), 1, - anon_sym_LBRACK, - ACTIONS(8005), 1, - anon_sym_LBRACE, - ACTIONS(8007), 1, - sym_indexing_operator, - STATE(2741), 1, - sym_field_path, - STATE(5527), 1, - sym_attribute, - STATE(6460), 1, - sym_indexing_operator_path, - STATE(7821), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255920] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8009), 1, - sym__identifier, - ACTIONS(8011), 1, - anon_sym_LPAREN, - ACTIONS(8013), 1, - anon_sym_LBRACK, - ACTIONS(8015), 1, - anon_sym_LBRACE, - STATE(1126), 1, - sym_field_path, - STATE(5528), 1, - sym_attribute, - STATE(6556), 1, - sym_indexing_operator_path, - STATE(8249), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255958] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8019), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_LBRACK, - ACTIONS(8023), 1, - anon_sym_LBRACE, - STATE(2341), 1, - sym_field_path, - STATE(5529), 1, - sym_attribute, - STATE(6517), 1, - sym_indexing_operator_path, - STATE(7610), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [255996] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4289), 1, - anon_sym_COLON2, - STATE(5530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4291), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256020] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4301), 1, - anon_sym_COLON2, - STATE(5531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4303), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256044] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4309), 1, - anon_sym_COLON2, - STATE(5532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4311), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256068] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4329), 1, - anon_sym_COLON2, - STATE(5533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4331), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256092] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4090), 1, - anon_sym_COLON2, - STATE(5534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4092), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256116] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8025), 1, - anon_sym_LPAREN, - ACTIONS(8027), 1, - anon_sym_DOT, - STATE(5535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5380), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [256142] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4152), 1, - anon_sym_COLON2, - STATE(5536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4154), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256166] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - anon_sym_COLON2, - STATE(5537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4126), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256190] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5323), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5471), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8029), 1, - anon_sym_STAR, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5538), 1, - sym_attribute, - STATE(6178), 1, - aux_sym__constructor_argument_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256228] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8031), 1, - sym__identifier, - ACTIONS(8033), 1, - anon_sym_LPAREN, - ACTIONS(8035), 1, - anon_sym_LBRACK, - ACTIONS(8037), 1, - anon_sym_LBRACE, - STATE(3366), 1, - sym_field_path, - STATE(5539), 1, - sym_attribute, - STATE(6454), 1, - sym_indexing_operator_path, - STATE(7855), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256266] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4074), 1, - anon_sym_COLON2, - STATE(5540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4076), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256290] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8039), 1, - sym__identifier, - ACTIONS(8041), 1, - anon_sym_LPAREN, - ACTIONS(8043), 1, - anon_sym_LBRACK, - ACTIONS(8045), 1, - anon_sym_LBRACE, - STATE(3397), 1, - sym_field_path, - STATE(5541), 1, - sym_attribute, - STATE(6497), 1, - sym_indexing_operator_path, - STATE(7649), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256328] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4108), 1, - anon_sym_COLON2, - STATE(5542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4110), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256352] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4176), 1, - anon_sym_COLON2, - STATE(5543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4178), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5333), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5329), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [256400] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4078), 1, - anon_sym_COLON2, - STATE(5545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4080), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256424] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8019), 1, - anon_sym_LPAREN, - ACTIONS(8021), 1, - anon_sym_LBRACK, - ACTIONS(8023), 1, - anon_sym_LBRACE, - ACTIONS(8047), 1, - sym__identifier, - STATE(2341), 1, - sym_field_path, - STATE(5546), 1, - sym_attribute, - STATE(6517), 1, - sym_indexing_operator_path, - STATE(7426), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256462] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4086), 1, - anon_sym_COLON2, - STATE(5547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4088), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256486] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4112), 1, - anon_sym_COLON2, - STATE(5548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4114), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256510] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4218), 1, - anon_sym_COLON2, - STATE(5549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4220), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256534] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4222), 1, - anon_sym_COLON2, - STATE(5550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4224), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256558] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4234), 1, - anon_sym_COLON2, - STATE(5551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4236), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256582] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8049), 1, - sym__identifier, - ACTIONS(8051), 1, - anon_sym_LPAREN, - ACTIONS(8053), 1, - anon_sym_LBRACK, - ACTIONS(8055), 1, - anon_sym_LBRACE, - STATE(1225), 1, - sym_field_path, - STATE(5552), 1, - sym_attribute, - STATE(6467), 1, - sym_indexing_operator_path, - STATE(7780), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256620] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8057), 1, - sym__identifier, - ACTIONS(8059), 1, - anon_sym_LPAREN, - ACTIONS(8061), 1, - anon_sym_LBRACK, - ACTIONS(8063), 1, - anon_sym_LBRACE, - STATE(3056), 1, - sym_field_path, - STATE(5553), 1, - sym_attribute, - STATE(6508), 1, - sym_indexing_operator_path, - STATE(7552), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256658] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4196), 1, - anon_sym_COLON2, - STATE(5554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4198), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256682] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4238), 1, - anon_sym_COLON2, - STATE(5555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4240), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256706] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8065), 1, - sym__identifier, - ACTIONS(8067), 1, - anon_sym_LPAREN, - ACTIONS(8069), 1, - anon_sym_LBRACK, - ACTIONS(8071), 1, - anon_sym_LBRACE, - STATE(2486), 1, - sym_field_path, - STATE(5556), 1, - sym_attribute, - STATE(6447), 1, - sym_indexing_operator_path, - STATE(7912), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256744] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8073), 1, - sym__identifier, - ACTIONS(8075), 1, - anon_sym_LPAREN, - ACTIONS(8077), 1, - anon_sym_LBRACK, - ACTIONS(8079), 1, - anon_sym_LBRACE, - STATE(2866), 1, - sym_field_path, - STATE(5557), 1, - sym_attribute, - STATE(6452), 1, - sym_indexing_operator_path, - STATE(7888), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256782] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5373), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [256804] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4943), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [256826] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4156), 1, - anon_sym_COLON2, - STATE(5560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4158), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256850] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(8081), 1, - anon_sym_private, - STATE(4571), 1, - sym_variant_declaration, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [256884] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8083), 1, - sym__identifier, - ACTIONS(8085), 1, - anon_sym_LPAREN, - ACTIONS(8087), 1, - anon_sym_LBRACK, - ACTIONS(8089), 1, - anon_sym_LBRACE, - STATE(1926), 1, - sym_field_path, - STATE(5562), 1, - sym_attribute, - STATE(6488), 1, - sym_indexing_operator_path, - STATE(7693), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [256922] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4214), 1, - anon_sym_COLON2, - STATE(5563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4216), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256946] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2063), 1, - anon_sym_COLON2, - STATE(5564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2061), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [256970] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7997), 1, - anon_sym_DASH_GT, - ACTIONS(8091), 1, - anon_sym_as, - STATE(5565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5689), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [256996] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4070), 1, - anon_sym_COLON2, - STATE(5566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4072), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257020] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(8093), 1, - anon_sym_private, - STATE(4452), 1, - sym_variant_declaration, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257054] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4184), 1, - anon_sym_COLON2, - STATE(5568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4186), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257078] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5333), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257100] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - ACTIONS(8095), 1, - anon_sym_private, - STATE(4452), 1, - sym_variant_declaration, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257134] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4269), 1, - anon_sym_COLON2, - STATE(5571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4271), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257158] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8097), 1, - sym__identifier, - ACTIONS(8099), 1, - anon_sym_LPAREN, - ACTIONS(8101), 1, - anon_sym_LBRACK, - ACTIONS(8103), 1, - anon_sym_LBRACE, - STATE(1149), 1, - sym_field_path, - STATE(5572), 1, - sym_attribute, - STATE(6502), 1, - sym_indexing_operator_path, - STATE(7604), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [257196] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4168), 1, - anon_sym_COLON2, - STATE(5573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4170), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257220] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8105), 1, - sym__identifier, - ACTIONS(8107), 1, - anon_sym_LPAREN, - ACTIONS(8109), 1, - anon_sym_LBRACK, - ACTIONS(8111), 1, - anon_sym_LBRACE, - STATE(1417), 1, - sym_field_path, - STATE(5574), 1, - sym_attribute, - STATE(6716), 1, - sym_indexing_operator_path, - STATE(7550), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [257258] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8113), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [257280] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8115), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [257302] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8117), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [257324] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4136), 1, - anon_sym_COLON2, - STATE(5578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4138), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257348] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7997), 1, - anon_sym_DASH_GT, - ACTIONS(8091), 1, - anon_sym_as, - STATE(5579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5744), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257374] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4140), 1, - anon_sym_COLON2, - STATE(5580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4142), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [257398] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8119), 1, - sym__identifier, - ACTIONS(8121), 1, - anon_sym_LPAREN, - ACTIONS(8123), 1, - anon_sym_LBRACK, - ACTIONS(8125), 1, - anon_sym_LBRACE, - STATE(2368), 1, - sym_field_path, - STATE(5581), 1, - sym_attribute, - STATE(6511), 1, - sym_indexing_operator_path, - STATE(7492), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [257436] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5315), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257458] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5485), 1, - anon_sym_COLON2, - ACTIONS(8127), 1, - anon_sym_LPAREN, - STATE(5688), 1, - sym_module_parameter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5583), 2, - sym_attribute, - aux_sym_module_binding_repeat1, - ACTIONS(5483), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257486] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7997), 1, - anon_sym_DASH_GT, - ACTIONS(8091), 1, - anon_sym_as, - STATE(5584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5770), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257512] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - ACTIONS(8130), 1, - anon_sym_private, - STATE(4571), 1, - sym_variant_declaration, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257546] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5315), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5411), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257570] = 12, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8007), 1, - sym_indexing_operator, - ACTIONS(8132), 1, - sym__identifier, - ACTIONS(8134), 1, - anon_sym_LPAREN, - ACTIONS(8136), 1, - anon_sym_LBRACK, - ACTIONS(8138), 1, - anon_sym_LBRACE, - STATE(1822), 1, - sym_field_path, - STATE(5587), 1, - sym_attribute, - STATE(6484), 1, - sym_indexing_operator_path, - STATE(7737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [257608] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2801), 1, - anon_sym_POUND, - STATE(5588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 3, - anon_sym_DOT, - anon_sym_with, - sym_hash_operator, - ACTIONS(2554), 4, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_RBRACE, - [257633] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8140), 1, - anon_sym_LPAREN, - ACTIONS(8142), 1, - anon_sym_LBRACK, - STATE(4698), 1, - sym_constructor_declaration, - STATE(5589), 1, - sym_attribute, - STATE(5941), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8144), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257664] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8146), 1, - anon_sym_and, - STATE(5590), 1, - sym_attribute, - STATE(5613), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5882), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [257689] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5591), 1, - sym_attribute, - STATE(7883), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [257718] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5592), 1, - sym_attribute, - STATE(8015), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [257747] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8154), 1, - anon_sym_SEMI, - ACTIONS(8156), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5593), 1, - sym_attribute, - STATE(6759), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [257782] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2468), 1, - anon_sym_LBRACK, - ACTIONS(2478), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8158), 1, - anon_sym_LPAREN, - ACTIONS(8160), 1, - anon_sym_LBRACE, - ACTIONS(8162), 1, - sym__capitalized_identifier, - STATE(5594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3066), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [257813] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2801), 1, - anon_sym_POUND, - STATE(5595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 3, - anon_sym_DOT, - anon_sym_with, - sym_hash_operator, - ACTIONS(2624), 4, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_RBRACE, - [257838] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5596), 1, - sym_attribute, - STATE(7530), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [257867] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5597), 1, - sym_attribute, - STATE(8152), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [257896] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5327), 1, - sym__identifier, - ACTIONS(5639), 1, - anon_sym_RPAREN, - STATE(3763), 1, - sym_type_constructor_path, - STATE(5598), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4871), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [257929] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - STATE(4543), 1, - sym_variant_declaration, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257960] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4393), 1, - anon_sym_PIPE, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - STATE(4456), 1, - sym_variant_declaration, - STATE(4673), 1, - sym_constructor_declaration, - STATE(5600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [257991] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - STATE(4456), 1, - sym_variant_declaration, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [258022] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8164), 1, - anon_sym_LPAREN, - ACTIONS(8166), 1, - anon_sym_LBRACK, - STATE(5602), 1, - sym_attribute, - STATE(5949), 1, - sym__attribute, - STATE(6172), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8168), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [258053] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8170), 1, - anon_sym_LPAREN, - ACTIONS(8172), 1, - anon_sym_LBRACK, - STATE(4698), 1, - sym_constructor_declaration, - STATE(5603), 1, - sym_attribute, - STATE(5865), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8174), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [258084] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8176), 1, - anon_sym_SEMI, - ACTIONS(8178), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5604), 1, - sym_attribute, - STATE(6874), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258119] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5605), 1, - sym_attribute, - STATE(7401), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258148] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1719), 1, - anon_sym_LBRACK, - ACTIONS(1733), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8180), 1, - anon_sym_LPAREN, - ACTIONS(8182), 1, - anon_sym_LBRACE, - ACTIONS(8184), 1, - sym__capitalized_identifier, - STATE(5606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5460), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [258179] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2025), 1, - anon_sym_LBRACK, - ACTIONS(2029), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8184), 1, - sym__capitalized_identifier, - ACTIONS(8186), 1, - anon_sym_LPAREN, - ACTIONS(8188), 1, - anon_sym_LBRACE, - STATE(5607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5536), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [258210] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8190), 1, - anon_sym_EQ, - ACTIONS(8192), 1, - anon_sym_RPAREN, - STATE(5608), 1, - sym_attribute, - STATE(6984), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258245] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5609), 1, - sym_attribute, - STATE(7450), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258274] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5610), 1, - sym_attribute, - STATE(7545), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258303] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5611), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8549), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258332] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5612), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8607), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258361] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8146), 1, - anon_sym_and, - STATE(5613), 1, - sym_attribute, - STATE(5647), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5836), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [258386] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5614), 1, - sym_attribute, - STATE(7647), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258415] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8194), 1, - anon_sym_EQ, - ACTIONS(8196), 1, - anon_sym_RPAREN, - STATE(5615), 1, - sym_attribute, - STATE(7065), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258450] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5616), 1, - sym_attribute, - STATE(7727), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258479] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5617), 1, - sym_attribute, - STATE(7788), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258508] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5618), 1, - sym_attribute, - STATE(7743), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258537] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5619), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8622), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258566] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5668), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5620), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 2, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - [258599] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5621), 1, - sym_attribute, - STATE(8009), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258628] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5512), 8, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [258649] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2552), 1, - anon_sym_POUND, - STATE(5623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2554), 7, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - sym_hash_operator, - [258672] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5624), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8230), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258701] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3420), 1, - anon_sym_LBRACK, - ACTIONS(3430), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(7408), 1, - sym__capitalized_identifier, - ACTIONS(8198), 1, - anon_sym_LPAREN, - ACTIONS(8200), 1, - anon_sym_LBRACE, - STATE(5625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5956), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [258732] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3260), 1, - anon_sym_LBRACK, - ACTIONS(3268), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8202), 1, - anon_sym_LPAREN, - ACTIONS(8204), 1, - anon_sym_LBRACE, - ACTIONS(8206), 1, - sym__capitalized_identifier, - STATE(5626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3875), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [258763] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8208), 1, - anon_sym_SEMI, - ACTIONS(8210), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5627), 1, - sym_attribute, - STATE(6524), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258798] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5628), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8458), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [258827] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8212), 1, - anon_sym_SEMI, - ACTIONS(8214), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5629), 1, - sym_attribute, - STATE(6772), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258862] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2622), 1, - anon_sym_POUND, - STATE(5630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2624), 7, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - sym_hash_operator, - [258885] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3506), 1, - anon_sym_LBRACK, - ACTIONS(3510), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(7408), 1, - sym__capitalized_identifier, - ACTIONS(8216), 1, - anon_sym_LPAREN, - ACTIONS(8218), 1, - anon_sym_LBRACE, - STATE(5631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6001), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [258916] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8220), 1, - anon_sym_SEMI, - ACTIONS(8222), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5632), 1, - sym_attribute, - STATE(6665), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [258951] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8224), 1, - anon_sym_LPAREN, - ACTIONS(8226), 1, - anon_sym_LBRACK, - STATE(4698), 1, - sym_constructor_declaration, - STATE(5633), 1, - sym_attribute, - STATE(5812), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8228), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [258982] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5634), 1, - sym_attribute, - STATE(7945), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [259011] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4429), 1, - anon_sym_PIPE, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - STATE(4543), 1, - sym_variant_declaration, - STATE(4820), 1, - sym_constructor_declaration, - STATE(5635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [259042] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5636), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8343), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [259071] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2566), 1, - anon_sym_LBRACK, - ACTIONS(2576), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8230), 1, - anon_sym_LPAREN, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - sym__capitalized_identifier, - STATE(5637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3188), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [259102] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2117), 1, - anon_sym_LBRACK, - ACTIONS(2131), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8184), 1, - sym__capitalized_identifier, - ACTIONS(8236), 1, - anon_sym_LPAREN, - ACTIONS(8238), 1, - anon_sym_LBRACE, - STATE(5638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3584), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [259133] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - ACTIONS(8240), 1, - anon_sym_SEMI, - ACTIONS(8242), 1, - anon_sym_GT, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5639), 1, - sym_attribute, - STATE(6586), 1, - aux_sym_object_type_repeat1, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259168] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8244), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259189] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5641), 1, - sym_attribute, - STATE(8154), 1, - sym_escape_sequence, - STATE(8334), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [259218] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8246), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259239] = 11, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8248), 1, - anon_sym_EQ, - ACTIONS(8250), 1, - anon_sym_RPAREN, - STATE(5643), 1, - sym_attribute, - STATE(6979), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259274] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5644), 1, - sym_attribute, - STATE(7416), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [259303] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2069), 1, - anon_sym_LBRACK, - ACTIONS(2077), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8252), 1, - anon_sym_LPAREN, - ACTIONS(8254), 1, - anon_sym_LBRACE, - ACTIONS(8256), 1, - sym__capitalized_identifier, - STATE(5645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2544), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [259334] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8258), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259355] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8260), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5647), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5662), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259378] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8148), 1, - aux_sym_character_content_token1, - ACTIONS(8152), 1, - sym__null, - STATE(5648), 1, - sym_attribute, - STATE(7878), 1, - sym_character_content, - STATE(8154), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8150), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [259407] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8263), 1, - anon_sym_RPAREN, - STATE(5649), 1, - sym_attribute, - STATE(7862), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259439] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5629), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259459] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5651), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6705), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [259489] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5758), 1, - anon_sym_COLON2, - STATE(5652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5756), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259511] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3210), 1, - anon_sym_PIPE, - ACTIONS(8267), 1, - anon_sym_DOT_DOT, - STATE(5653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [259535] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8271), 1, - anon_sym__, - ACTIONS(8273), 1, - anon_sym_RBRACE, - STATE(5654), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259567] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8275), 1, - anon_sym__, - ACTIONS(8277), 1, - anon_sym_RBRACE, - STATE(5655), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259599] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8279), 1, - anon_sym_DASH_GT, - ACTIONS(8281), 1, - anon_sym_when, - STATE(5656), 1, - sym_attribute, - STATE(7584), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259631] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5657), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6849), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [259661] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8283), 1, - anon_sym_DASH_GT, - STATE(5658), 1, - sym_attribute, - STATE(7931), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259693] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8285), 1, - anon_sym_RBRACK, - ACTIONS(8287), 1, - anon_sym_when, - STATE(5659), 1, - sym_attribute, - STATE(7728), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259725] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5660), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6806), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [259755] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8289), 1, - anon_sym_DASH_GT, - STATE(5661), 1, - sym_attribute, - STATE(8438), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259787] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - STATE(5662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7977), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [259809] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5662), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259829] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5625), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259849] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5327), 1, - sym__identifier, - STATE(3763), 1, - sym_type_constructor_path, - STATE(5665), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4871), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [259879] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8293), 1, - anon_sym__, - ACTIONS(8295), 1, - anon_sym_RBRACE, - STATE(5666), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [259911] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - STATE(5667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7964), 5, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [259935] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5762), 1, - anon_sym_COLON2, - STATE(5668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5760), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [259957] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - STATE(5669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7993), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [259979] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5670), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6426), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [260009] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5671), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6429), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [260039] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8299), 1, - anon_sym_DASH_GT, - ACTIONS(8301), 1, - anon_sym_with, - STATE(5672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6509), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [260063] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - STATE(5673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7989), 3, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - [260091] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5674), 1, - sym_attribute, - STATE(6078), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5949), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(8305), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [260119] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8307), 1, - anon_sym__, - ACTIONS(8309), 1, - anon_sym_RBRACE, - STATE(5675), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260151] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8311), 1, - anon_sym__, - ACTIONS(8313), 1, - anon_sym_RBRACE, - STATE(5676), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260183] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - STATE(5677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7981), 3, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - [260211] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [260231] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8315), 1, - anon_sym__, - ACTIONS(8317), 1, - anon_sym_RBRACE, - STATE(5679), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260263] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8319), 1, - anon_sym_RPAREN, - STATE(5680), 1, - sym_attribute, - STATE(7921), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260295] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 7, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [260315] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8250), 1, - anon_sym_RPAREN, - STATE(5682), 1, - sym_attribute, - STATE(8396), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260347] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8321), 1, - anon_sym_RPAREN, - STATE(5683), 1, - sym_attribute, - STATE(7918), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260379] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8323), 1, - anon_sym_RPAREN, - STATE(5684), 1, - sym_attribute, - STATE(8599), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260411] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8325), 1, - anon_sym_DASH_GT, - STATE(5685), 1, - sym_attribute, - STATE(8046), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260443] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2688), 1, - anon_sym_PIPE, - STATE(5686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2690), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [260465] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(5687), 1, - sym_attribute, - STATE(6030), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5530), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(7866), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [260493] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5703), 1, - anon_sym_COLON2, - STATE(5688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5701), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [260515] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8327), 1, - anon_sym__, - ACTIONS(8329), 1, - anon_sym_RBRACE, - STATE(5689), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260547] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8331), 1, - anon_sym_RPAREN, - STATE(5690), 1, - sym_attribute, - STATE(7901), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260579] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8333), 1, - anon_sym_DASH_GT, - STATE(5691), 1, - sym_attribute, - STATE(7800), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260611] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - ACTIONS(8335), 1, - anon_sym_RBRACK, - ACTIONS(8337), 1, - anon_sym_SEMI, - STATE(5692), 1, - sym_attribute, - STATE(6478), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260643] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8339), 1, - anon_sym_RPAREN, - STATE(5693), 1, - sym_attribute, - STATE(7895), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260675] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5415), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5417), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5694), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260707] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5695), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6721), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [260737] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5598), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [260757] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8341), 1, - anon_sym_RPAREN, - STATE(5697), 1, - sym_attribute, - STATE(7773), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260789] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8347), 1, - anon_sym_SEMI, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - ACTIONS(8353), 1, - anon_sym_PIPE_RBRACK, - STATE(5698), 1, - sym_attribute, - STATE(6487), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260821] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3093), 1, - anon_sym_PIPE, - STATE(5699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3095), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [260843] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8357), 1, - anon_sym_AMP, - STATE(5700), 1, - sym_attribute, - STATE(6050), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8355), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [260871] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - ACTIONS(8359), 1, - anon_sym_RBRACK, - ACTIONS(8361), 1, - anon_sym_SEMI, - STATE(5701), 1, - sym_attribute, - STATE(6649), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260903] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5388), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5702), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260935] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2887), 1, - anon_sym_PIPE, - STATE(5703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2889), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [260957] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8363), 1, - anon_sym_RPAREN, - STATE(5704), 1, - sym_attribute, - STATE(7868), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [260989] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8365), 1, - anon_sym_RPAREN, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - STATE(5705), 1, - sym_attribute, - STATE(8369), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261021] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8379), 1, - anon_sym_RBRACK, - ACTIONS(8381), 1, - anon_sym_SEMI, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5706), 1, - sym_attribute, - STATE(6494), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261053] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - ACTIONS(8387), 1, - anon_sym_SEMI, - ACTIONS(8389), 1, - anon_sym_PIPE_RBRACK, - STATE(5707), 1, - sym_attribute, - STATE(6652), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261085] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5708), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8391), 2, - anon_sym_SEMI, - anon_sym_GT, - [261115] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8393), 1, - anon_sym_RPAREN, - STATE(5709), 1, - sym_attribute, - STATE(7762), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261147] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5329), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [261167] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8395), 1, - anon_sym_RPAREN, - STATE(5711), 1, - sym_attribute, - STATE(8537), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261199] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2684), 1, - anon_sym_PIPE, - STATE(5712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2686), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261221] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - ACTIONS(8397), 1, - anon_sym_RBRACK, - ACTIONS(8399), 1, - anon_sym_SEMI, - STATE(5713), 1, - sym_attribute, - STATE(6653), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261253] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8403), 1, - anon_sym_PIPE, - ACTIONS(8405), 1, - anon_sym_SEMI, - ACTIONS(8407), 1, - anon_sym_as, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - ACTIONS(8411), 1, - anon_sym_PIPE_RBRACK, - STATE(5714), 1, - sym_attribute, - STATE(6657), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261285] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2855), 1, - anon_sym_PIPE, - STATE(5715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2857), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261307] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8413), 1, - anon_sym__, - ACTIONS(8415), 1, - anon_sym_RBRACE, - STATE(5716), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261339] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2742), 1, - anon_sym_PIPE, - STATE(5717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2744), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261361] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8417), 1, - anon_sym__, - ACTIONS(8419), 1, - anon_sym_RBRACE, - STATE(5718), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261393] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8421), 1, - anon_sym_RPAREN, - STATE(5719), 1, - sym_attribute, - STATE(7576), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261425] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2734), 1, - anon_sym_PIPE, - STATE(5720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2736), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261447] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5721), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6631), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [261477] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5722), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6627), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [261507] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8196), 1, - anon_sym_RPAREN, - STATE(5723), 1, - sym_attribute, - STATE(7413), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261539] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - ACTIONS(8423), 1, - anon_sym_RBRACK, - ACTIONS(8425), 1, - anon_sym_SEMI, - STATE(5724), 1, - sym_attribute, - STATE(6730), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261571] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3005), 1, - anon_sym_PIPE, - STATE(5725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3007), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261593] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3097), 1, - anon_sym_PIPE, - STATE(5726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3099), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [261615] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5621), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [261635] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8427), 1, - anon_sym_RPAREN, - STATE(5728), 1, - sym_attribute, - STATE(7834), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261667] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8403), 1, - anon_sym_PIPE, - ACTIONS(8407), 1, - anon_sym_as, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - ACTIONS(8429), 1, - anon_sym_SEMI, - ACTIONS(8431), 1, - anon_sym_PIPE_RBRACK, - STATE(5729), 1, - sym_attribute, - STATE(6496), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261699] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8433), 1, - anon_sym_RPAREN, - STATE(5730), 1, - sym_attribute, - STATE(7536), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261731] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8435), 1, - anon_sym_rec, - ACTIONS(8437), 1, - anon_sym_type, - STATE(5077), 1, - sym_module_binding, - STATE(5731), 1, - sym_attribute, - STATE(6256), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8439), 2, - anon_sym__, - sym__capitalized_identifier, - [261761] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5337), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5339), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5732), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261793] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8441), 1, - anon_sym_DASH_GT, - STATE(5733), 1, - sym_attribute, - STATE(8615), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261825] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5723), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5725), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5734), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261857] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5748), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5750), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5735), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261889] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5677), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5679), 1, - anon_sym_in, - ACTIONS(7504), 1, - sym__identifier, - ACTIONS(7858), 1, - anon_sym_POUND, - STATE(5462), 1, - sym_type_constructor_path, - STATE(5736), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261921] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5617), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [261941] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8443), 1, - anon_sym_RPAREN, - STATE(5738), 1, - sym_attribute, - STATE(7828), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [261973] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8299), 1, - anon_sym_DASH_GT, - ACTIONS(8301), 1, - anon_sym_with, - STATE(5739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6009), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [261997] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4060), 1, - anon_sym_PIPE, - STATE(5740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4062), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [262019] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - ACTIONS(8445), 1, - anon_sym_SEMI, - ACTIONS(8447), 1, - anon_sym_PIPE_RBRACK, - STATE(5741), 1, - sym_attribute, - STATE(6739), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262051] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8449), 1, - sym__identifier, - ACTIONS(8451), 1, - anon_sym_type, - ACTIONS(8453), 1, - anon_sym_LBRACK, - ACTIONS(8455), 1, - anon_sym_virtual, - STATE(5018), 1, - sym_class_binding, - STATE(5742), 1, - sym_attribute, - STATE(6160), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262083] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8457), 1, - anon_sym__, - ACTIONS(8459), 1, - anon_sym_RBRACE, - STATE(5743), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262115] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8461), 1, - anon_sym_RPAREN, - STATE(5744), 1, - sym_attribute, - STATE(7793), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262147] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5411), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [262167] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8463), 1, - anon_sym_RPAREN, - STATE(5746), 1, - sym_attribute, - STATE(7787), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262199] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8465), 1, - anon_sym__, - ACTIONS(8467), 1, - anon_sym_RBRACE, - STATE(5747), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262231] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8469), 1, - anon_sym_RPAREN, - STATE(5748), 1, - sym_attribute, - STATE(7383), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262263] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - ACTIONS(8471), 1, - anon_sym_RBRACK, - ACTIONS(8473), 1, - anon_sym_SEMI, - STATE(5749), 1, - sym_attribute, - STATE(6741), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262295] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8451), 1, - anon_sym_type, - ACTIONS(8475), 1, - sym__identifier, - ACTIONS(8477), 1, - anon_sym_LBRACK, - ACTIONS(8479), 1, - anon_sym_virtual, - STATE(5133), 1, - sym_class_binding, - STATE(5750), 1, - sym_attribute, - STATE(6221), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262327] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4064), 1, - anon_sym_PIPE, - STATE(5751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4066), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [262349] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8481), 1, - anon_sym__, - ACTIONS(8483), 1, - anon_sym_RBRACE, - STATE(5752), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262381] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8485), 1, - anon_sym__, - ACTIONS(8487), 1, - anon_sym_RBRACE, - STATE(5753), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262413] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8403), 1, - anon_sym_PIPE, - ACTIONS(8407), 1, - anon_sym_as, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - ACTIONS(8489), 1, - anon_sym_SEMI, - ACTIONS(8491), 1, - anon_sym_PIPE_RBRACK, - STATE(5754), 1, - sym_attribute, - STATE(6744), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262445] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8493), 1, - anon_sym_RPAREN, - STATE(5755), 1, - sym_attribute, - STATE(7750), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262477] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8495), 1, - anon_sym_RPAREN, - STATE(5756), 1, - sym_attribute, - STATE(7744), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262509] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8497), 1, - anon_sym_RPAREN, - STATE(5757), 1, - sym_attribute, - STATE(7707), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262541] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8499), 1, - anon_sym_RPAREN, - STATE(5758), 1, - sym_attribute, - STATE(7700), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262573] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8501), 1, - anon_sym_COLON2, - STATE(5759), 1, - sym_attribute, - STATE(7331), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 5, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [262597] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8357), 1, - anon_sym_AMP, - STATE(5760), 1, - sym_attribute, - STATE(6073), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8503), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [262625] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8505), 1, - anon_sym__, - ACTIONS(8507), 1, - anon_sym_RBRACE, - STATE(5761), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262657] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8403), 1, - anon_sym_PIPE, - ACTIONS(8407), 1, - anon_sym_as, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - ACTIONS(8509), 1, - anon_sym_SEMI, - ACTIONS(8511), 1, - anon_sym_PIPE_RBRACK, - STATE(5762), 1, - sym_attribute, - STATE(6604), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262689] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8513), 1, - anon_sym__, - ACTIONS(8515), 1, - anon_sym_RBRACE, - STATE(5763), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262721] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8517), 1, - anon_sym_RPAREN, - STATE(5764), 1, - sym_attribute, - STATE(7663), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262753] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8519), 1, - anon_sym__, - ACTIONS(8521), 1, - anon_sym_RBRACE, - STATE(5765), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262785] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8451), 1, - anon_sym_type, - ACTIONS(8523), 1, - sym__identifier, - ACTIONS(8525), 1, - anon_sym_LBRACK, - ACTIONS(8527), 1, - anon_sym_virtual, - STATE(5121), 1, - sym_class_binding, - STATE(5766), 1, - sym_attribute, - STATE(6132), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262817] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8529), 1, - anon_sym_RPAREN, - STATE(5767), 1, - sym_attribute, - STATE(7656), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262849] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - ACTIONS(8531), 1, - anon_sym_RBRACK, - ACTIONS(8533), 1, - anon_sym_SEMI, - STATE(5768), 1, - sym_attribute, - STATE(6607), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262881] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8535), 1, - anon_sym_RPAREN, - STATE(5769), 1, - sym_attribute, - STATE(7969), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262913] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8537), 1, - anon_sym_RPAREN, - STATE(5770), 1, - sym_attribute, - STATE(7495), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262945] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8539), 1, - anon_sym_RPAREN, - STATE(5771), 1, - sym_attribute, - STATE(7619), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [262977] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5073), 1, - anon_sym_RPAREN, - ACTIONS(8541), 1, - anon_sym_COLON2, - STATE(5772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4319), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [263001] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8543), 1, - anon_sym__, - ACTIONS(8545), 1, - anon_sym_RBRACE, - STATE(5773), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263033] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - ACTIONS(8547), 1, - anon_sym_SEMI, - ACTIONS(8549), 1, - anon_sym_PIPE_RBRACK, - STATE(5774), 1, - sym_attribute, - STATE(6609), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263065] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - ACTIONS(8551), 1, - anon_sym_SEMI, - ACTIONS(8553), 1, - anon_sym_PIPE_RBRACK, - STATE(5775), 1, - sym_attribute, - STATE(6765), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263097] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8555), 1, - anon_sym_RPAREN, - STATE(5776), 1, - sym_attribute, - STATE(7612), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263129] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - ACTIONS(8557), 1, - anon_sym_RBRACK, - ACTIONS(8559), 1, - anon_sym_SEMI, - STATE(5777), 1, - sym_attribute, - STATE(6763), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263161] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8192), 1, - anon_sym_RPAREN, - STATE(5778), 1, - sym_attribute, - STATE(7491), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263193] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - ACTIONS(8561), 1, - anon_sym_RBRACK, - ACTIONS(8563), 1, - anon_sym_SEMI, - STATE(5779), 1, - sym_attribute, - STATE(6615), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263225] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8565), 1, - anon_sym_rec, - ACTIONS(8567), 1, - anon_sym_type, - STATE(4997), 1, - sym_module_binding, - STATE(5780), 1, - sym_attribute, - STATE(6350), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8569), 2, - anon_sym__, - sym__capitalized_identifier, - [263255] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8571), 1, - anon_sym_RPAREN, - STATE(5781), 1, - sym_attribute, - STATE(7928), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263287] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8573), 1, - anon_sym_RPAREN, - STATE(5782), 1, - sym_attribute, - STATE(7571), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263319] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5783), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6533), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [263349] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8575), 1, - anon_sym_RPAREN, - STATE(5784), 1, - sym_attribute, - STATE(7563), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263381] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2063), 1, - anon_sym_PIPE, - ACTIONS(8267), 1, - anon_sym_DOT_DOT, - STATE(5785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2061), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [263405] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4118), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [263427] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(7257), 1, - anon_sym_BANG, - ACTIONS(8265), 1, - anon_sym__, - STATE(5787), 1, - sym_attribute, - STATE(6087), 1, - sym_type_variable, - STATE(6513), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7255), 2, - anon_sym_PLUS, - anon_sym_DASH, - [263457] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4122), 5, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [263481] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4146), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [263503] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8577), 1, - anon_sym_DASH_GT, - STATE(5790), 1, - sym_attribute, - STATE(8380), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263535] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8579), 1, - anon_sym_RPAREN, - STATE(5791), 1, - sym_attribute, - STATE(8084), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263567] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8581), 1, - anon_sym_DASH_GT, - STATE(5792), 1, - sym_attribute, - STATE(7376), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263599] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8583), 1, - anon_sym_RPAREN, - STATE(5793), 1, - sym_attribute, - STATE(7436), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263631] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8585), 1, - anon_sym_RPAREN, - STATE(5794), 1, - sym_attribute, - STATE(7505), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263663] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8269), 1, - sym__identifier, - ACTIONS(8587), 1, - anon_sym__, - ACTIONS(8589), 1, - anon_sym_RBRACE, - STATE(5795), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263695] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8591), 1, - anon_sym_RPAREN, - STATE(5796), 1, - sym_attribute, - STATE(7513), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263727] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8299), 1, - anon_sym_DASH_GT, - ACTIONS(8301), 1, - anon_sym_with, - STATE(5797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6044), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [263751] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8593), 1, - anon_sym_RPAREN, - STATE(5798), 1, - sym_attribute, - STATE(7445), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263783] = 10, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8281), 1, - anon_sym_when, - ACTIONS(8595), 1, - anon_sym_DASH_GT, - STATE(5799), 1, - sym_attribute, - STATE(7810), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263815] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4615), 1, - anon_sym_PIPE, - STATE(5800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4617), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [263836] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8597), 1, - anon_sym_RBRACE, - STATE(5801), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263865] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8599), 1, - anon_sym_RBRACE, - STATE(5802), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263894] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4238), 1, - anon_sym_PIPE, - STATE(5803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4240), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [263915] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3618), 1, - sym__left_quoted_string_delimiter, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(5804), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6712), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263944] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5717), 1, - anon_sym_LPAREN, - ACTIONS(5719), 1, - anon_sym_LBRACK, - STATE(4534), 1, - sym_constructor_declaration, - STATE(5805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [263969] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8601), 1, - anon_sym_RBRACE, - STATE(5806), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [263998] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8603), 1, - anon_sym_RBRACE, - STATE(5807), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264027] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8605), 1, - anon_sym_RBRACE, - STATE(5808), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264056] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8607), 1, - sym__identifier, - STATE(3464), 1, - sym_class_path, - STATE(5809), 1, - sym_attribute, - STATE(6369), 1, - sym__attribute, - STATE(7473), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264085] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3618), 1, - sym__left_quoted_string_delimiter, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(5810), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6675), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264114] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7832), 1, - anon_sym_PIPE, - STATE(5811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7830), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264135] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8224), 1, - anon_sym_LPAREN, - ACTIONS(8226), 1, - anon_sym_LBRACK, - STATE(4789), 1, - sym_constructor_declaration, - STATE(5812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8228), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [264160] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8609), 1, - sym__left_quoted_string_delimiter, - STATE(5813), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6731), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264189] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8611), 1, - sym__identifier, - STATE(2502), 1, - sym_class_path, - STATE(5814), 1, - sym_attribute, - STATE(6329), 1, - sym__attribute, - STATE(7908), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264218] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6531), 1, - anon_sym_and, - STATE(5815), 1, - sym_attribute, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6529), 2, - anon_sym_in, - sym_and_operator, - [264245] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6519), 1, - anon_sym_and, - STATE(5816), 1, - sym_attribute, - STATE(5817), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6517), 2, - anon_sym_in, - sym_and_operator, - [264272] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6340), 1, - anon_sym_and, - STATE(5817), 1, - sym_attribute, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 2, - anon_sym_in, - sym_and_operator, - [264299] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7836), 1, - anon_sym_PIPE, - STATE(5818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7834), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264320] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8613), 1, - anon_sym_RBRACE, - STATE(5819), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264349] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6074), 1, - anon_sym_and, - STATE(5820), 1, - sym_attribute, - STATE(5822), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6072), 2, - anon_sym_in, - sym_and_operator, - [264376] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8615), 1, - sym__identifier, - STATE(2948), 1, - sym_class_path, - STATE(5821), 1, - sym_attribute, - STATE(6179), 1, - sym__attribute, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264405] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6284), 1, - anon_sym_and, - STATE(5822), 1, - sym_attribute, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 2, - anon_sym_in, - sym_and_operator, - [264432] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8617), 1, - sym__identifier, - STATE(2761), 1, - sym_class_path, - STATE(5823), 1, - sym_attribute, - STATE(6128), 1, - sym__attribute, - STATE(7808), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264461] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5866), 1, - anon_sym_LPAREN, - ACTIONS(5868), 1, - anon_sym_LBRACK, - STATE(4534), 1, - sym_constructor_declaration, - STATE(5824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [264486] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4112), 1, - anon_sym_PIPE, - STATE(5825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4114), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264507] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4214), 1, - anon_sym_PIPE, - STATE(5826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4216), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264528] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2063), 1, - anon_sym_PIPE, - STATE(5827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2061), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264549] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4070), 1, - anon_sym_PIPE, - STATE(5828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4072), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264570] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4184), 1, - anon_sym_PIPE, - STATE(5829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4186), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264591] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4172), 1, - anon_sym_PIPE, - STATE(5830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4174), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264612] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4132), 1, - anon_sym_PIPE, - STATE(5831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4134), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264633] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8619), 1, - sym__left_quoted_string_delimiter, - STATE(5832), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6635), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264662] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4078), 1, - anon_sym_PIPE, - STATE(5833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4080), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264683] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8621), 1, - anon_sym_RBRACE, - STATE(5834), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264712] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4481), 1, - anon_sym_PIPE, - STATE(5835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4483), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264733] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6476), 1, - anon_sym_and, - STATE(5836), 1, - sym_attribute, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6474), 2, - anon_sym_in, - sym_and_operator, - [264760] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3210), 1, - anon_sym_PIPE, - STATE(5837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3202), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264781] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4487), 1, - anon_sym_PIPE, - STATE(5838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4489), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [264802] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - STATE(5839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8623), 4, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - [264825] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6472), 1, - anon_sym_and, - STATE(5815), 1, - aux_sym_expression_item_repeat1, - STATE(5840), 1, - sym_attribute, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6470), 2, - anon_sym_in, - sym_and_operator, - [264852] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8625), 1, - anon_sym_RBRACE, - STATE(5841), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264881] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8629), 1, - anon_sym_PIPE, - ACTIONS(8631), 1, - anon_sym_RBRACK, - STATE(5842), 1, - sym_attribute, - STATE(6812), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264910] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8633), 1, - sym__identifier, - ACTIONS(8635), 1, - anon_sym_LBRACK, - ACTIONS(8637), 1, - anon_sym_virtual, - STATE(4801), 1, - sym_class_type_binding, - STATE(5843), 1, - sym_attribute, - STATE(6163), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264939] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8639), 1, - anon_sym_RBRACE, - STATE(5844), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [264968] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - STATE(5845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8641), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - [264995] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4196), 1, - anon_sym_PIPE, - STATE(5846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4198), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265016] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8643), 1, - anon_sym_RBRACE, - STATE(5847), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265045] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8645), 1, - anon_sym_RBRACE, - STATE(5848), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265074] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8647), 1, - anon_sym_RBRACE, - STATE(5849), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265103] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(5850), 1, - sym_attribute, - STATE(6294), 1, - sym__attribute, - STATE(7115), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265132] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8651), 1, - sym__identifier, - STATE(2321), 1, - sym_class_path, - STATE(5851), 1, - sym_attribute, - STATE(6242), 1, - sym__attribute, - STATE(7412), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265161] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8653), 1, - anon_sym_RBRACE, - STATE(5852), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265190] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8655), 1, - anon_sym_RBRACE, - STATE(5853), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265219] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8657), 1, - anon_sym_RBRACE, - STATE(5854), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265248] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8659), 1, - anon_sym_RBRACE, - STATE(5855), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265277] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4325), 1, - anon_sym_PIPE, - STATE(5856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4327), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265298] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4333), 1, - anon_sym_PIPE, - STATE(5857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4335), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265319] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4176), 1, - anon_sym_PIPE, - STATE(5858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4178), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265340] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8661), 1, - sym__left_quoted_string_delimiter, - STATE(5859), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6629), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265369] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6211), 1, - anon_sym_and, - STATE(5860), 1, - sym_attribute, - STATE(5975), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 2, - anon_sym_in, - sym_and_operator, - [265396] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8663), 1, - anon_sym_RBRACE, - STATE(5861), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265425] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4116), 1, - anon_sym_COLON2, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - STATE(5862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4118), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - [265448] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8665), 1, - anon_sym_RBRACE, - STATE(5863), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265477] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8667), 1, - anon_sym_RBRACE, - STATE(5864), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265506] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8170), 1, - anon_sym_LPAREN, - ACTIONS(8172), 1, - anon_sym_LBRACK, - STATE(4789), 1, - sym_constructor_declaration, - STATE(5865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8174), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [265531] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5866), 1, - sym_attribute, - STATE(6110), 1, - sym__attribute, - STATE(8164), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265560] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8671), 1, - sym__identifier, - STATE(1437), 1, - sym_class_path, - STATE(5867), 1, - sym_attribute, - STATE(6109), 1, - sym__attribute, - STATE(8159), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265589] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8673), 1, - anon_sym_RBRACE, - STATE(5868), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265618] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8675), 1, - anon_sym_RBRACE, - STATE(5869), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265647] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8677), 1, - anon_sym_RBRACE, - STATE(5870), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265676] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8679), 1, - sym__identifier, - STATE(1190), 1, - sym_class_path, - STATE(5871), 1, - sym_attribute, - STATE(6108), 1, - sym__attribute, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265705] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5872), 1, - sym_attribute, - STATE(6365), 1, - sym__attribute, - STATE(8618), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265734] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8681), 1, - anon_sym_RBRACE, - STATE(5873), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265763] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7782), 1, - anon_sym_PIPE, - STATE(5874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7780), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265784] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8683), 1, - anon_sym_RBRACE, - STATE(5875), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265813] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4164), 1, - anon_sym_PIPE, - STATE(5876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4166), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265834] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8685), 1, - anon_sym_RBRACE, - STATE(5877), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265863] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8687), 1, - anon_sym_RBRACE, - STATE(5878), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265892] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4120), 1, - anon_sym_COLON2, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - STATE(5879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4122), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_as, - [265917] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8689), 1, - anon_sym_RBRACE, - STATE(5880), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265946] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4234), 1, - anon_sym_PIPE, - STATE(5881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4236), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [265967] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8691), 1, - anon_sym_RBRACE, - STATE(5882), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [265996] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7786), 1, - anon_sym_PIPE, - STATE(5883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7784), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266017] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5884), 1, - sym_attribute, - STATE(6363), 1, - sym__attribute, - STATE(8616), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266046] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4090), 1, - anon_sym_PIPE, - STATE(5885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4092), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266067] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8693), 1, - anon_sym_RBRACE, - STATE(5886), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266096] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8695), 1, - anon_sym_RBRACE, - STATE(5887), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266125] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4074), 1, - anon_sym_PIPE, - STATE(5888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4076), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266146] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7814), 1, - anon_sym_PIPE, - STATE(5889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7812), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266167] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7981), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [266194] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8697), 1, - anon_sym_RBRACE, - STATE(5891), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266223] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4329), 1, - anon_sym_PIPE, - STATE(5892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4331), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266244] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4309), 1, - anon_sym_PIPE, - STATE(5893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4311), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266265] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8699), 1, - anon_sym_RBRACE, - STATE(5894), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266294] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4156), 1, - anon_sym_PIPE, - STATE(5895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4158), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266315] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4140), 1, - anon_sym_PIPE, - STATE(5896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4142), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266336] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8701), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [266363] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4519), 1, - anon_sym_PIPE, - STATE(5898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4521), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266384] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4301), 1, - anon_sym_PIPE, - STATE(5899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4303), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266405] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8703), 1, - anon_sym_RBRACE, - STATE(5900), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266434] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8705), 1, - anon_sym_RBRACE, - STATE(5901), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266463] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4289), 1, - anon_sym_PIPE, - STATE(5902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4291), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266484] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6114), 1, - anon_sym_and, - STATE(5903), 1, - sym_attribute, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6112), 2, - anon_sym_in, - sym_and_operator, - [266511] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4136), 1, - anon_sym_PIPE, - STATE(5904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4138), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266532] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8707), 1, - anon_sym_RBRACE, - STATE(5905), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266561] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5672), 1, - anon_sym_and, - ACTIONS(8709), 1, - anon_sym_LBRACK_AT_AT, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5670), 2, - anon_sym_in, - sym_and_operator, - STATE(5906), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - [266586] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8712), 1, - anon_sym_RBRACE, - STATE(5907), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266615] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8714), 1, - anon_sym_RBRACE, - STATE(5908), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266644] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5017), 1, - anon_sym_RPAREN, - STATE(5909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4279), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [266665] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - STATE(5910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8716), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [266692] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4269), 1, - anon_sym_PIPE, - STATE(5911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4271), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266713] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4168), 1, - anon_sym_PIPE, - STATE(5912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4170), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266734] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8718), 1, - sym__identifier, - STATE(1310), 1, - sym_class_path, - STATE(5913), 1, - sym_attribute, - STATE(6146), 1, - sym__attribute, - STATE(7767), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266763] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(5914), 1, - sym_attribute, - STATE(6218), 1, - sym__attribute, - STATE(7007), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266792] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8720), 1, - anon_sym_RBRACE, - STATE(5915), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266821] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5916), 1, - sym_attribute, - STATE(6358), 1, - sym__attribute, - STATE(8609), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266850] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4230), 1, - anon_sym_PIPE, - STATE(5917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4232), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266871] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8722), 1, - anon_sym_RBRACE, - STATE(5918), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266900] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8724), 1, - anon_sym_rec, - STATE(5919), 1, - sym_attribute, - STATE(6170), 1, - sym__attribute, - STATE(6916), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8726), 2, - anon_sym__, - sym__capitalized_identifier, - [266927] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8728), 1, - sym__identifier, - STATE(2126), 1, - sym_class_path, - STATE(5920), 1, - sym_attribute, - STATE(6279), 1, - sym__attribute, - STATE(7680), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [266956] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3073), 1, - anon_sym_PIPE, - STATE(5921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3075), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266977] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2873), 1, - anon_sym_PIPE, - STATE(5922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2875), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [266998] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4144), 1, - anon_sym_COLON2, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - STATE(5923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4146), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - [267021] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7989), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [267048] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2819), 1, - anon_sym_PIPE, - STATE(5925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2821), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267069] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7926), 1, - anon_sym_PIPE, - STATE(5926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7924), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267090] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8730), 1, - anon_sym_RBRACE, - STATE(5927), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267119] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7995), 1, - anon_sym_PIPE, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7993), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [267142] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8732), 1, - anon_sym_RBRACE, - STATE(5929), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267171] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8734), 1, - anon_sym_RBRACE, - STATE(5930), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267200] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8736), 1, - anon_sym_RBRACE, - STATE(5931), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267229] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8738), 1, - anon_sym_RBRACE, - STATE(5932), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267258] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8740), 1, - sym__identifier, - STATE(2373), 1, - sym_class_path, - STATE(5933), 1, - sym_attribute, - STATE(6097), 1, - sym__attribute, - STATE(7534), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267287] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2811), 1, - anon_sym_PIPE, - STATE(5934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2813), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267308] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8742), 1, - sym__left_quoted_string_delimiter, - STATE(5935), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6654), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267337] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7968), 1, - anon_sym_PIPE, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7964), 3, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [267362] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7914), 1, - anon_sym_PIPE, - STATE(5937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7912), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267383] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7979), 1, - anon_sym_PIPE, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7977), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [267406] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8744), 1, - sym__identifier, - STATE(1872), 1, - sym_class_path, - STATE(5939), 1, - sym_attribute, - STATE(6191), 1, - sym__attribute, - STATE(7724), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267435] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8746), 1, - anon_sym_RBRACE, - STATE(5940), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267464] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8140), 1, - anon_sym_LPAREN, - ACTIONS(8142), 1, - anon_sym_LBRACK, - STATE(4789), 1, - sym_constructor_declaration, - STATE(5941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8144), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [267489] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4555), 1, - anon_sym_PIPE, - STATE(5942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4557), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267510] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8748), 1, - sym__identifier, - STATE(2856), 1, - sym_class_path, - STATE(5943), 1, - sym_attribute, - STATE(6330), 1, - sym__attribute, - STATE(7877), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267539] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4477), 1, - anon_sym_PIPE, - STATE(5944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4479), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267560] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4563), 1, - anon_sym_PIPE, - STATE(5945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4565), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267581] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8750), 1, - anon_sym_RBRACE, - STATE(5946), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267610] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4567), 1, - anon_sym_PIPE, - STATE(5947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4569), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267631] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8752), 1, - anon_sym_RBRACE, - STATE(5948), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267660] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8164), 1, - anon_sym_LPAREN, - ACTIONS(8166), 1, - anon_sym_LBRACK, - STATE(5949), 1, - sym_attribute, - STATE(6156), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8168), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [267685] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8754), 1, - anon_sym_RBRACE, - STATE(5950), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267714] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4571), 1, - anon_sym_PIPE, - STATE(5951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4573), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267735] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(5952), 1, - sym_attribute, - STATE(6283), 1, - sym__attribute, - STATE(6970), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267764] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4575), 1, - anon_sym_PIPE, - STATE(5953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4577), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267785] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_PIPE, - STATE(5954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7882), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267806] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_PIPE, - ACTIONS(8349), 1, - anon_sym_as, - ACTIONS(8351), 1, - anon_sym_COLON_COLON, - STATE(5955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8641), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [267833] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4579), 1, - anon_sym_PIPE, - STATE(5956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4581), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267854] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2947), 1, - anon_sym_PIPE, - STATE(5957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2949), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267875] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8756), 1, - sym__left_quoted_string_delimiter, - STATE(5958), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6641), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267904] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(4937), 1, - anon_sym_POUND, - ACTIONS(5327), 1, - sym__identifier, - ACTIONS(8758), 1, - anon_sym_DASH_GT, - STATE(3763), 1, - sym_type_constructor_path, - STATE(5959), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267933] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8760), 1, - sym__identifier, - STATE(1312), 1, - sym_class_path, - STATE(5960), 1, - sym_attribute, - STATE(6225), 1, - sym__attribute, - STATE(7636), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [267962] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4583), 1, - anon_sym_PIPE, - STATE(5961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4585), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [267983] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8762), 1, - anon_sym_RBRACE, - STATE(5962), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268012] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - STATE(5963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5303), 5, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_GT, - [268033] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8766), 1, - anon_sym_RBRACE, - STATE(5964), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268062] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4523), 1, - anon_sym_PIPE, - STATE(5965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4525), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268083] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4587), 1, - anon_sym_PIPE, - STATE(5966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4589), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268104] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4591), 1, - anon_sym_PIPE, - STATE(5967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4593), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268125] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8768), 1, - anon_sym_RBRACE, - STATE(5968), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268154] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4543), 1, - anon_sym_PIPE, - STATE(5969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4545), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268175] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8770), 1, - anon_sym_RBRACE, - STATE(5970), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268204] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(8772), 1, - sym__identifier, - STATE(3381), 1, - sym_class_path, - STATE(5971), 1, - sym_attribute, - STATE(6230), 1, - sym__attribute, - STATE(7844), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268233] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(5972), 1, - sym_attribute, - STATE(6344), 1, - sym__attribute, - STATE(6948), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268262] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6380), 1, - anon_sym_and, - STATE(5836), 1, - aux_sym_expression_item_repeat1, - STATE(5973), 1, - sym_attribute, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6378), 2, - anon_sym_in, - sym_and_operator, - [268289] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8774), 1, - anon_sym_RBRACE, - STATE(5974), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268318] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3354), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6372), 1, - anon_sym_and, - STATE(5906), 1, - aux_sym_expression_item_repeat1, - STATE(5975), 1, - sym_attribute, - STATE(6099), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6370), 2, - anon_sym_in, - sym_and_operator, - [268345] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4222), 1, - anon_sym_PIPE, - STATE(5976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4224), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268366] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4218), 1, - anon_sym_PIPE, - STATE(5977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4220), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268387] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4086), 1, - anon_sym_PIPE, - STATE(5978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4088), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268408] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4619), 1, - anon_sym_PIPE, - STATE(5979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4621), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268429] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8291), 1, - anon_sym_COLON_COLON, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8303), 1, - anon_sym_PIPE, - STATE(5980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8776), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [268456] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4108), 1, - anon_sym_PIPE, - STATE(5981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4110), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268477] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8629), 1, - anon_sym_PIPE, - ACTIONS(8778), 1, - anon_sym_RBRACK, - STATE(5982), 1, - sym_attribute, - STATE(6571), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268506] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4116), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - STATE(5983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4118), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [268529] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2851), 1, - anon_sym_PIPE, - STATE(5984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2853), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268550] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4611), 1, - anon_sym_PIPE, - STATE(5985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4613), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268571] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2801), 1, - anon_sym_PIPE, - STATE(5986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2803), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268592] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4120), 1, - anon_sym_PIPE, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - STATE(5987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4122), 3, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [268617] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8780), 1, - anon_sym_RBRACE, - STATE(5988), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268646] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4607), 1, - anon_sym_PIPE, - STATE(5989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4609), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268667] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - anon_sym_PIPE, - STATE(5990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4126), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268688] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4603), 1, - anon_sym_PIPE, - STATE(5991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4605), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268709] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8401), 1, - anon_sym_COMMA, - ACTIONS(8403), 1, - anon_sym_PIPE, - ACTIONS(8407), 1, - anon_sym_as, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - STATE(5992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8782), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [268736] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8784), 1, - anon_sym_RBRACE, - STATE(5993), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268765] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8786), 1, - anon_sym_RBRACE, - STATE(5994), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268794] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4144), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, - anon_sym_COLON_COLON, - STATE(5995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4146), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [268817] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4148), 1, - anon_sym_PIPE, - STATE(5996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4150), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268838] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8788), 1, - sym__left_quoted_string_delimiter, - STATE(5997), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6381), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268867] = 9, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - ACTIONS(8661), 1, - sym__left_quoted_string_delimiter, - STATE(5998), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6382), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [268896] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(5999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8782), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - [268923] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8375), 1, - anon_sym_COMMA, - ACTIONS(8377), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_as, - ACTIONS(8385), 1, - anon_sym_COLON_COLON, - STATE(6000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8790), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [268950] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4152), 1, - anon_sym_PIPE, - STATE(6001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4154), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [268971] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - STATE(6002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8629), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [268993] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8792), 1, - anon_sym_type, - ACTIONS(8794), 1, - anon_sym_module, - STATE(6003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5663), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [269015] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - STATE(6004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8796), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [269037] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8798), 1, - anon_sym_type, - ACTIONS(8800), 1, - anon_sym_module, - STATE(6005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4238), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [269059] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6006), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6584), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269085] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6007), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6558), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269111] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8802), 1, - anon_sym_RPAREN, - STATE(6008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269137] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6009), 1, - sym_attribute, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5530), 2, - anon_sym_and, - anon_sym_in, - [269161] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8804), 1, - anon_sym_RPAREN, - STATE(6010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269187] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8806), 1, - anon_sym_EQ, - ACTIONS(8808), 1, - anon_sym_of, - ACTIONS(8810), 1, - anon_sym_COLON2, - STATE(6011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6052), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [269211] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5327), 1, - sym__identifier, - ACTIONS(8812), 1, - anon_sym_POUND, - STATE(3657), 1, - sym_type_constructor_path, - STATE(6012), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269237] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8814), 1, - anon_sym_RBRACK, - STATE(6013), 1, - sym_attribute, - STATE(6900), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269263] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - ACTIONS(8816), 1, - anon_sym_as, - STATE(6014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [269285] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8818), 1, - anon_sym_RPAREN, - STATE(6015), 1, - sym_attribute, - STATE(6852), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269311] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6016), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(7325), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269337] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6017), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6712), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269363] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8820), 1, - anon_sym_RPAREN, - STATE(6018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269389] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5311), 1, - sym__identifier, - ACTIONS(8822), 1, - anon_sym_POUND, - STATE(3925), 1, - sym_type_constructor_path, - STATE(6019), 1, - sym_attribute, - STATE(7301), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269415] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6020), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6514), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269441] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6021), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6475), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269467] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6022), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6675), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269493] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8824), 1, - anon_sym_RPAREN, - STATE(6023), 1, - sym_attribute, - STATE(6661), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269519] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6024), 1, - sym_attribute, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6442), 2, - anon_sym_and, - anon_sym_in, - [269543] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - ACTIONS(8816), 1, - anon_sym_as, - STATE(6025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [269565] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - ACTIONS(8816), 1, - anon_sym_as, - STATE(6026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5848), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [269587] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - ACTIONS(8816), 1, - anon_sym_as, - STATE(6027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7353), 3, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - [269609] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8826), 1, - anon_sym_type, - ACTIONS(8828), 1, - anon_sym_module, - STATE(6028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4330), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [269631] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8830), 1, - anon_sym_EQ, - ACTIONS(8832), 1, - anon_sym_of, - ACTIONS(8834), 1, - anon_sym_COLON2, - STATE(6029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5727), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [269655] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6030), 1, - sym_attribute, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5949), 2, - anon_sym_and, - anon_sym_in, - [269679] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6031), 1, - sym_attribute, - STATE(6033), 1, - sym_field_path, - STATE(6731), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269705] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6032), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6398), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269731] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8836), 1, - anon_sym_EQ, - ACTIONS(8838), 1, - anon_sym_COLON2, - STATE(6033), 1, - sym_attribute, - STATE(6738), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8840), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [269755] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6034), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6451), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269781] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6033), 1, - sym_field_path, - STATE(6035), 1, - sym_attribute, - STATE(6629), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269807] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8842), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [269825] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6037), 1, - sym_attribute, - STATE(6038), 1, - sym_field_path, - STATE(6654), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269851] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8838), 1, - anon_sym_COLON2, - ACTIONS(8844), 1, - anon_sym_EQ, - STATE(6038), 1, - sym_attribute, - STATE(6743), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8846), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [269875] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6033), 1, - sym_field_path, - STATE(6039), 1, - sym_attribute, - STATE(6641), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269901] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8848), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [269919] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6038), 1, - sym_field_path, - STATE(6041), 1, - sym_attribute, - STATE(6635), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269945] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6038), 1, - sym_field_path, - STATE(6042), 1, - sym_attribute, - STATE(7158), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269971] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6043), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6588), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [269997] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8850), 1, - anon_sym_RPAREN, - STATE(6044), 1, - sym_attribute, - STATE(6593), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270023] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8852), 1, - anon_sym_RPAREN, - STATE(6045), 1, - sym_attribute, - STATE(6755), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270049] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8854), 1, - anon_sym_RBRACK, - STATE(6046), 1, - sym_attribute, - STATE(6775), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270075] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8856), 1, - anon_sym_RPAREN, - STATE(6047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270101] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8631), 1, - anon_sym_RBRACK, - STATE(6048), 1, - sym_attribute, - STATE(6812), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270127] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6049), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6807), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270153] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8357), 1, - anon_sym_AMP, - STATE(6050), 1, - sym_attribute, - STATE(6071), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8503), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [270175] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8858), 1, - anon_sym_RPAREN, - STATE(6051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270201] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8860), 1, - anon_sym_EQ, - ACTIONS(8862), 1, - anon_sym_of, - ACTIONS(8864), 1, - anon_sym_COLON2, - STATE(6052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5963), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [270225] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6053), 1, - sym_attribute, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 2, - anon_sym_and, - anon_sym_in, - [270249] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8866), 1, - anon_sym_RPAREN, - STATE(6054), 1, - sym_attribute, - STATE(6503), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270275] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6055), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6760), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270301] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8868), 1, - sym__identifier, - ACTIONS(8870), 1, - anon_sym_BANG, - STATE(6056), 1, - sym_attribute, - STATE(6215), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [270325] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8874), 1, - anon_sym_RPAREN, - STATE(6057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270351] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8798), 1, - anon_sym_type, - ACTIONS(8800), 1, - anon_sym_module, - STATE(6058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4421), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [270373] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8778), 1, - anon_sym_RBRACK, - STATE(6059), 1, - sym_attribute, - STATE(6571), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270399] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6060), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6898), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270425] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8876), 1, - anon_sym_RPAREN, - STATE(6061), 1, - sym_attribute, - STATE(6769), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270451] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6038), 1, - sym_field_path, - STATE(6062), 1, - sym_attribute, - STATE(6382), 1, - sym_field_binding_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270477] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8878), 1, - anon_sym_RPAREN, - STATE(6063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270503] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5343), 1, - sym__identifier, - ACTIONS(8880), 1, - anon_sym_POUND, - STATE(4016), 1, - sym_type_constructor_path, - STATE(6064), 1, - sym_attribute, - STATE(7254), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270529] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6065), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6890), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270555] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6066), 1, - sym_attribute, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6130), 2, - anon_sym_and, - anon_sym_in, - [270579] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8882), 1, - sym__identifier, - ACTIONS(8884), 1, - anon_sym_LPAREN, - ACTIONS(8886), 1, - sym__capitalized_identifier, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5122), 1, - sym__value_name, - STATE(6067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270605] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7966), 1, - anon_sym_COMMA, - ACTIONS(7970), 1, - anon_sym_COLON_COLON, - ACTIONS(7983), 1, - anon_sym_PIPE, - ACTIONS(7987), 1, - anon_sym_as, - ACTIONS(8888), 1, - anon_sym_RPAREN, - STATE(6068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270631] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8890), 1, - anon_sym_LBRACK_AT_AT, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5670), 2, - anon_sym_and, - anon_sym_in, - STATE(6069), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - [270653] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5351), 1, - sym__identifier, - ACTIONS(8893), 1, - anon_sym_POUND, - STATE(4444), 1, - sym_type_constructor_path, - STATE(6070), 1, - sym_attribute, - STATE(7241), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270679] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8895), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6071), 2, - sym_attribute, - aux_sym_tag_specification_repeat1, - ACTIONS(8623), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [270699] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8367), 1, - anon_sym_COMMA, - ACTIONS(8369), 1, - anon_sym_PIPE, - ACTIONS(8371), 1, - anon_sym_as, - ACTIONS(8373), 1, - anon_sym_COLON_COLON, - ACTIONS(8898), 1, - anon_sym_RPAREN, - STATE(6072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270725] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8357), 1, - anon_sym_AMP, - STATE(6071), 1, - aux_sym_tag_specification_repeat1, - STATE(6073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8900), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [270747] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6074), 1, - sym_attribute, - STATE(6075), 1, - sym_field_path, - STATE(6858), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270773] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8838), 1, - anon_sym_COLON2, - ACTIONS(8902), 1, - anon_sym_EQ, - STATE(6075), 1, - sym_attribute, - STATE(6684), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8904), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [270797] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8906), 1, - anon_sym_RBRACK, - STATE(6076), 1, - sym_attribute, - STATE(6808), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270823] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6075), 1, - sym_field_path, - STATE(6077), 1, - sym_attribute, - STATE(6666), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270849] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6078), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6149), 2, - anon_sym_and, - anon_sym_in, - [270873] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6033), 1, - sym_field_path, - STATE(6079), 1, - sym_attribute, - STATE(6381), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270899] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6075), 1, - sym_field_path, - STATE(6080), 1, - sym_attribute, - STATE(6774), 1, - sym_field_expression, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270925] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8908), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [270943] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8017), 1, - sym__identifier, - STATE(6033), 1, - sym_field_path, - STATE(6082), 1, - sym_attribute, - STATE(7169), 1, - sym_field_pattern, - STATE(7805), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [270969] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8792), 1, - anon_sym_type, - ACTIONS(8794), 1, - anon_sym_module, - STATE(6083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5590), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [270991] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5880), 1, - sym__identifier, - ACTIONS(8910), 1, - anon_sym_POUND, - STATE(5290), 1, - sym_type_constructor_path, - STATE(6084), 1, - sym_attribute, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271017] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - ACTIONS(8912), 1, - anon_sym_POUND, - STATE(5431), 1, - sym_type_constructor_path, - STATE(6085), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271043] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8914), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [271061] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8916), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [271079] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8918), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [271097] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8920), 1, - sym__identifier, - ACTIONS(8924), 1, - anon_sym_BANG, - STATE(6089), 1, - sym_attribute, - STATE(6217), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [271121] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(8928), 1, - anon_sym__, - STATE(6036), 1, - sym_type_variable, - STATE(6090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8926), 2, - anon_sym_PLUS, - anon_sym_DASH, - [271145] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8826), 1, - anon_sym_type, - ACTIONS(8828), 1, - anon_sym_module, - STATE(6091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4238), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [271167] = 8, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(8930), 1, - anon_sym_RBRACK, - STATE(6092), 1, - sym_attribute, - STATE(6719), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271193] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6093), 1, - sym_attribute, - STATE(7295), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8932), 2, - anon_sym__, - sym__capitalized_identifier, - [271214] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6900), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6094), 1, - sym_attribute, - STATE(6196), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271237] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8938), 1, - anon_sym_LPAREN, - ACTIONS(8940), 1, - sym__capitalized_identifier, - STATE(4445), 1, - sym_constructor_path, - STATE(6095), 1, - sym_attribute, - STATE(8074), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271260] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8944), 1, - anon_sym_with, - ACTIONS(8946), 1, - sym_hash_operator, - STATE(6096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271283] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8740), 1, - sym__identifier, - STATE(2338), 1, - sym_class_path, - STATE(6097), 1, - sym_attribute, - STATE(7534), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271306] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8950), 1, - anon_sym_RBRACK, - ACTIONS(8952), 1, - anon_sym_GT, - STATE(6098), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271329] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5902), 1, - anon_sym_and, - STATE(6099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [271348] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(6100), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271371] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(8954), 1, - anon_sym_RBRACK, - STATE(6101), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271394] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(8956), 1, - anon_sym_DOT, - STATE(6102), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271417] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8960), 1, - anon_sym_RBRACE, - ACTIONS(8962), 1, - anon_sym_mutable, - STATE(6103), 1, - sym_attribute, - STATE(7092), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271440] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(8964), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271463] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(8966), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271486] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8968), 1, - sym__identifier, - STATE(5374), 1, - sym_class_type_path, - STATE(6106), 1, - sym_attribute, - STATE(7342), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271509] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(8970), 1, - anon_sym_RBRACK, - STATE(6107), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271532] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8679), 1, - sym__identifier, - STATE(1191), 1, - sym_class_path, - STATE(6108), 1, - sym_attribute, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271555] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8671), 1, - sym__identifier, - STATE(1482), 1, - sym_class_path, - STATE(6109), 1, - sym_attribute, - STATE(8159), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271578] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(6110), 1, - sym_attribute, - STATE(7590), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271601] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8679), 1, - sym__identifier, - STATE(3474), 1, - sym_class_path, - STATE(6111), 1, - sym_attribute, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271624] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8607), 1, - sym__identifier, - STATE(3474), 1, - sym_class_path, - STATE(6112), 1, - sym_attribute, - STATE(7473), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271647] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(8972), 1, - anon_sym_with, - STATE(6113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271670] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(6011), 1, - anon_sym_DASH_GT, - STATE(4253), 1, - sym_module_parameter, - STATE(6104), 1, - aux_sym_module_binding_repeat1, - STATE(6114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271693] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5248), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6115), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271716] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(8974), 1, - anon_sym_with, - STATE(6116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271739] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8976), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3988), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - STATE(6117), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - [271758] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(3712), 1, - sym_class_type_path, - STATE(6118), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271781] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8981), 1, - anon_sym_COLON_GT, - ACTIONS(8983), 1, - anon_sym_RPAREN, - STATE(6119), 1, - sym_attribute, - STATE(7240), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271804] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8985), 1, - sym__identifier, - STATE(6120), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - STATE(8527), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271827] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8607), 1, - sym__identifier, - STATE(3511), 1, - sym_class_path, - STATE(6121), 1, - sym_attribute, - STATE(7473), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271850] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8523), 1, - sym__identifier, - ACTIONS(8525), 1, - anon_sym_LBRACK, - ACTIONS(8527), 1, - anon_sym_virtual, - STATE(4897), 1, - sym_class_binding, - STATE(6122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271873] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8987), 1, - sym__identifier, - STATE(4428), 1, - sym_class_type_path, - STATE(6123), 1, - sym_attribute, - STATE(7299), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271896] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8987), 1, - sym__identifier, - STATE(4443), 1, - sym_class_type_path, - STATE(6124), 1, - sym_attribute, - STATE(7299), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271919] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8987), 1, - sym__identifier, - STATE(4453), 1, - sym_class_type_path, - STATE(6125), 1, - sym_attribute, - STATE(7299), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271942] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(8989), 1, - anon_sym_RBRACK, - STATE(6126), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271965] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6581), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6127), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [271988] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8617), 1, - sym__identifier, - STATE(2743), 1, - sym_class_path, - STATE(6128), 1, - sym_attribute, - STATE(7808), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272011] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8968), 1, - sym__identifier, - STATE(5363), 1, - sym_class_type_path, - STATE(6129), 1, - sym_attribute, - STATE(7342), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272034] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(8991), 1, - anon_sym_DOT, - STATE(6130), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272057] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - ACTIONS(8993), 1, - anon_sym_RBRACE, - STATE(6131), 1, - sym_attribute, - STATE(7092), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272080] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8523), 1, - sym__identifier, - ACTIONS(8525), 1, - anon_sym_LBRACK, - ACTIONS(8527), 1, - anon_sym_virtual, - STATE(5119), 1, - sym_class_binding, - STATE(6132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272103] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8449), 1, - sym__identifier, - ACTIONS(8453), 1, - anon_sym_LBRACK, - ACTIONS(8455), 1, - anon_sym_virtual, - STATE(4897), 1, - sym_class_binding, - STATE(6133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272126] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(8995), 1, - anon_sym_COLON_GT, - ACTIONS(8997), 1, - anon_sym_RPAREN, - STATE(6134), 1, - sym_attribute, - STATE(7150), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272149] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6135), 1, - sym_attribute, - STATE(7109), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8999), 2, - sym__identifier, - sym__capitalized_identifier, - [272170] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9001), 1, - anon_sym_RBRACK, - ACTIONS(9003), 1, - anon_sym_GT, - STATE(6136), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272193] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9007), 1, - anon_sym_SEMI, - ACTIONS(9009), 1, - anon_sym_GT_RBRACE, - STATE(6137), 1, - sym_attribute, - STATE(6646), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272216] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8989), 1, - anon_sym_RBRACK, - ACTIONS(9011), 1, - anon_sym_GT, - STATE(6138), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272239] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9013), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5666), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - STATE(6139), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - [272258] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9001), 1, - anon_sym_RBRACK, - ACTIONS(9003), 1, - anon_sym_GT, - STATE(6098), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272281] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5454), 1, - sym__value_pattern, - STATE(6141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272304] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6142), 1, - sym_attribute, - STATE(6922), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9016), 2, - anon_sym__, - sym__capitalized_identifier, - [272325] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9018), 1, - anon_sym_SEMI, - ACTIONS(9020), 1, - anon_sym_GT_RBRACE, - STATE(6143), 1, - sym_attribute, - STATE(6625), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272348] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5924), 1, - anon_sym_and, - STATE(6144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5922), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [272367] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9022), 1, - anon_sym_SEMI, - ACTIONS(9024), 1, - anon_sym_GT_RBRACE, - STATE(6145), 1, - sym_attribute, - STATE(6840), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272390] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8718), 1, - sym__identifier, - STATE(1269), 1, - sym_class_path, - STATE(6146), 1, - sym_attribute, - STATE(7767), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272413] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9026), 1, - sym__identifier, - STATE(3520), 1, - sym_type_constructor_path, - STATE(6147), 1, - sym_attribute, - STATE(7309), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272436] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9028), 1, - anon_sym_COLON_GT, - ACTIONS(9030), 1, - anon_sym_RPAREN, - STATE(6148), 1, - sym_attribute, - STATE(7192), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272459] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9032), 1, - sym__identifier, - STATE(4006), 1, - sym_class_type_path, - STATE(6149), 1, - sym_attribute, - STATE(7326), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272482] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9034), 1, - anon_sym_EQ, - ACTIONS(9036), 1, - anon_sym_RPAREN, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(6150), 1, - sym_attribute, - STATE(7103), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272505] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8475), 1, - sym__identifier, - ACTIONS(8477), 1, - anon_sym_LBRACK, - ACTIONS(8479), 1, - anon_sym_virtual, - STATE(4897), 1, - sym_class_binding, - STATE(6151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272528] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9040), 1, - anon_sym_COLON_GT, - ACTIONS(9042), 1, - anon_sym_RPAREN, - STATE(6152), 1, - sym_attribute, - STATE(7164), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272551] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5327), 1, - sym__identifier, - STATE(6153), 1, - sym_attribute, - STATE(6576), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272574] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(9044), 1, - sym__identifier, - STATE(6154), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - STATE(7106), 1, - sym_module_type_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272597] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5238), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6155), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272620] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6811), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6127), 1, - aux_sym_expression_item_repeat1, - STATE(6156), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272643] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6811), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6157), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272666] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9046), 1, - anon_sym_DOT, - STATE(6158), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272689] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9048), 1, - aux_sym_attribute_id_token1, - STATE(6117), 1, - aux_sym_attribute_id_repeat1, - STATE(6159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3964), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [272710] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8449), 1, - sym__identifier, - ACTIONS(8453), 1, - anon_sym_LBRACK, - ACTIONS(8455), 1, - anon_sym_virtual, - STATE(5013), 1, - sym_class_binding, - STATE(6160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272733] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9050), 1, - anon_sym_DOT, - STATE(6161), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272756] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8633), 1, - sym__identifier, - ACTIONS(8635), 1, - anon_sym_LBRACK, - ACTIONS(8637), 1, - anon_sym_virtual, - STATE(4927), 1, - sym_class_type_binding, - STATE(6162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272779] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8633), 1, - sym__identifier, - ACTIONS(8635), 1, - anon_sym_LBRACK, - ACTIONS(8637), 1, - anon_sym_virtual, - STATE(4857), 1, - sym_class_type_binding, - STATE(6163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272802] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9052), 1, - sym__identifier, - STATE(3113), 1, - sym_type_constructor_path, - STATE(6164), 1, - sym_attribute, - STATE(7215), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272825] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9054), 1, - anon_sym_DOT, - STATE(6165), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272848] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9056), 1, - sym__identifier, - ACTIONS(9058), 1, - anon_sym_LPAREN, - STATE(5984), 1, - sym_parenthesized_operator, - STATE(5990), 1, - sym__value_name, - STATE(6166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272871] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6167), 1, - sym_attribute, - STATE(7354), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9060), 2, - anon_sym__, - sym__capitalized_identifier, - [272892] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(9062), 1, - anon_sym_LPAREN, - STATE(4546), 1, - sym_constructor_path, - STATE(6168), 1, - sym_attribute, - STATE(8033), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272915] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8679), 1, - sym__identifier, - STATE(3511), 1, - sym_class_path, - STATE(6169), 1, - sym_attribute, - STATE(7695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272938] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9064), 1, - anon_sym_rec, - STATE(6170), 1, - sym_attribute, - STATE(6888), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8726), 2, - anon_sym__, - sym__capitalized_identifier, - [272959] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9066), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [272982] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6688), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6157), 1, - aux_sym_expression_item_repeat1, - STATE(6172), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273005] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9068), 1, - anon_sym_COLON_GT, - ACTIONS(9070), 1, - anon_sym_RPAREN, - STATE(6173), 1, - sym_attribute, - STATE(6932), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273028] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9072), 1, - anon_sym_RBRACK, - STATE(6174), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273051] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9074), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273074] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5892), 1, - anon_sym_and, - STATE(6176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [273093] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9048), 1, - aux_sym_attribute_id_token1, - STATE(6159), 1, - aux_sym_attribute_id_repeat1, - STATE(6177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3995), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [273114] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8029), 1, - anon_sym_STAR, - STATE(6139), 1, - aux_sym__constructor_argument_repeat1, - STATE(6178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6493), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [273135] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8615), 1, - sym__identifier, - STATE(3031), 1, - sym_class_path, - STATE(6179), 1, - sym_attribute, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273158] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9076), 1, - anon_sym_DOT, - STATE(6180), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273181] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2823), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - STATE(6181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2825), 2, - anon_sym_with, - sym_hash_operator, - [273202] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8938), 1, - anon_sym_LPAREN, - ACTIONS(8940), 1, - sym__capitalized_identifier, - STATE(4564), 1, - sym_constructor_path, - STATE(6182), 1, - sym_attribute, - STATE(8074), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273225] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9078), 1, - anon_sym_with, - STATE(6183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273248] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8968), 1, - sym__identifier, - STATE(5467), 1, - sym_class_type_path, - STATE(6184), 1, - sym_attribute, - STATE(7342), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273271] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9080), 1, - sym__identifier, - STATE(2962), 1, - sym_type_constructor_path, - STATE(6185), 1, - sym_attribute, - STATE(7229), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273294] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9082), 1, - anon_sym_DOT, - STATE(6186), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273317] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9084), 1, - anon_sym_SEMI, - ACTIONS(9086), 1, - anon_sym_GT_RBRACE, - STATE(6187), 1, - sym_attribute, - STATE(6903), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273340] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6922), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6188), 1, - sym_attribute, - STATE(6268), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273363] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4739), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9088), 1, - anon_sym_GT, - STATE(6136), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273386] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9090), 1, - sym__identifier, - ACTIONS(9092), 1, - anon_sym_LPAREN, - STATE(2535), 1, - sym_parenthesized_operator, - STATE(2537), 1, - sym__value_name, - STATE(6190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273409] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8744), 1, - sym__identifier, - STATE(1898), 1, - sym_class_path, - STATE(6191), 1, - sym_attribute, - STATE(7724), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273432] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9094), 1, - anon_sym_with, - STATE(6192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273455] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9096), 1, - anon_sym_with, - STATE(6193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273478] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9098), 1, - anon_sym_RBRACK, - ACTIONS(9100), 1, - anon_sym_GT, - STATE(6194), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273501] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9102), 1, - sym__identifier, - STATE(3947), 1, - sym_class_type_path, - STATE(6195), 1, - sym_attribute, - STATE(7051), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273524] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6922), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6196), 1, - sym_attribute, - STATE(6287), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273547] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9104), 1, - anon_sym_RBRACK, - ACTIONS(9106), 1, - anon_sym_GT, - STATE(6197), 1, - sym_attribute, - STATE(6210), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273570] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9104), 1, - anon_sym_RBRACK, - ACTIONS(9106), 1, - anon_sym_GT, - STATE(6198), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273593] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9058), 1, - anon_sym_LPAREN, - ACTIONS(9108), 1, - sym__identifier, - STATE(5838), 1, - sym_parenthesized_operator, - STATE(5937), 1, - sym__value_pattern, - STATE(6199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273616] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9098), 1, - anon_sym_RBRACK, - ACTIONS(9100), 1, - anon_sym_GT, - STATE(6138), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273639] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9112), 1, - anon_sym_of, - STATE(6201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9110), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [273658] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9114), 1, - anon_sym_with, - STATE(6202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273681] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9116), 1, - anon_sym_SEMI, - ACTIONS(9118), 1, - anon_sym_GT_RBRACE, - STATE(6203), 1, - sym_attribute, - STATE(6549), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273704] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8968), 1, - sym__identifier, - STATE(5450), 1, - sym_class_type_path, - STATE(6204), 1, - sym_attribute, - STATE(7342), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273727] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4741), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9120), 1, - anon_sym_GT, - STATE(6205), 1, - sym_attribute, - STATE(6312), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273750] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9122), 1, - anon_sym_DOT, - STATE(6206), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273773] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(9124), 1, - sym__identifier, - STATE(3039), 1, - sym_class_path, - STATE(6207), 1, - sym_attribute, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273796] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8882), 1, - sym__identifier, - STATE(4612), 1, - sym_parenthesized_operator, - STATE(5537), 1, - sym__value_name, - STATE(6208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273819] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(3639), 1, - sym_class_type_path, - STATE(6209), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273842] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9126), 1, - anon_sym_RBRACK, - ACTIONS(9128), 1, - anon_sym_GT, - STATE(6210), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273865] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9126), 1, - anon_sym_RBRACK, - STATE(6211), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273888] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9130), 1, - sym__identifier, - STATE(6212), 1, - sym_attribute, - STATE(6314), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [273909] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(9124), 1, - sym__identifier, - STATE(3009), 1, - sym_class_path, - STATE(6213), 1, - sym_attribute, - STATE(7589), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273932] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9132), 1, - anon_sym_with, - STATE(6214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [273955] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9130), 1, - sym__identifier, - STATE(6215), 1, - sym_attribute, - STATE(6324), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [273976] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9134), 1, - sym__identifier, - STATE(6216), 1, - sym_attribute, - STATE(6326), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [273997] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9134), 1, - sym__identifier, - STATE(6217), 1, - sym_attribute, - STATE(6327), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [274018] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(6218), 1, - sym_attribute, - STATE(7061), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274041] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9136), 1, - anon_sym_with, - STATE(6219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274064] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9138), 1, - anon_sym_RBRACK, - STATE(6220), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274087] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8475), 1, - sym__identifier, - ACTIONS(8477), 1, - anon_sym_LBRACK, - ACTIONS(8479), 1, - anon_sym_virtual, - STATE(5124), 1, - sym_class_binding, - STATE(6221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274110] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4731), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9140), 1, - anon_sym_GT, - STATE(6198), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274133] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9142), 1, - anon_sym_RBRACK, - STATE(6223), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274156] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9144), 1, - anon_sym_RBRACK, - STATE(6224), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274179] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8760), 1, - sym__identifier, - STATE(1327), 1, - sym_class_path, - STATE(6225), 1, - sym_attribute, - STATE(7636), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274202] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(6226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6509), 2, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [274223] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9146), 1, - anon_sym_DOT, - STATE(6227), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274246] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9148), 1, - anon_sym_RBRACK, - STATE(6228), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274269] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(9062), 1, - anon_sym_LPAREN, - STATE(4445), 1, - sym_constructor_path, - STATE(6229), 1, - sym_attribute, - STATE(8033), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274292] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8772), 1, - sym__identifier, - STATE(3371), 1, - sym_class_path, - STATE(6230), 1, - sym_attribute, - STATE(7844), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274315] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9150), 1, - sym__identifier, - STATE(5333), 1, - sym_class_type_path, - STATE(6231), 1, - sym_attribute, - STATE(7284), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274338] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9152), 1, - anon_sym_DOT, - STATE(6232), 1, - sym_attribute, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274361] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9150), 1, - sym__identifier, - STATE(5293), 1, - sym_class_type_path, - STATE(6233), 1, - sym_attribute, - STATE(7284), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274384] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9150), 1, - sym__identifier, - STATE(5284), 1, - sym_class_type_path, - STATE(6234), 1, - sym_attribute, - STATE(7284), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274407] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - sym__identifier, - STATE(6235), 1, - sym_attribute, - STATE(6348), 1, - aux_sym__abstract_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9156), 2, - anon_sym_RPAREN, - anon_sym_DOT, - [274428] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9158), 1, - anon_sym_DOT, - ACTIONS(9160), 1, - aux_sym_type_variable_token1, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6236), 2, - sym_attribute, - aux_sym_constructor_declaration_repeat1, - [274449] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9165), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9163), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(6237), 2, - sym_attribute, - aux_sym__type_params_repeat1, - [274468] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9168), 1, - anon_sym_SEMI, - ACTIONS(9170), 1, - anon_sym_GT_RBRACE, - STATE(6238), 1, - sym_attribute, - STATE(6507), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274491] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9172), 1, - anon_sym_COLON_GT, - ACTIONS(9174), 1, - anon_sym_RPAREN, - STATE(6239), 1, - sym_attribute, - STATE(7062), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274514] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9176), 1, - anon_sym_COLON_GT, - ACTIONS(9178), 1, - anon_sym_RPAREN, - STATE(6240), 1, - sym_attribute, - STATE(7006), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274537] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(9044), 1, - sym__identifier, - STATE(6241), 1, - sym_attribute, - STATE(6923), 1, - sym_module_type_path, - STATE(7002), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274560] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8651), 1, - sym__identifier, - STATE(2377), 1, - sym_class_path, - STATE(6242), 1, - sym_attribute, - STATE(7412), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274583] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6817), 1, - anon_sym_in, - ACTIONS(7290), 1, - anon_sym_LBRACK_AT_AT, - STATE(6069), 1, - aux_sym_expression_item_repeat1, - STATE(6243), 1, - sym_attribute, - STATE(6522), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274606] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9180), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6244), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274629] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - STATE(4253), 1, - sym_module_parameter, - STATE(6171), 1, - aux_sym_module_binding_repeat1, - STATE(6245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274652] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9182), 1, - anon_sym_SEMI, - ACTIONS(9184), 1, - anon_sym_GT_RBRACE, - STATE(6246), 1, - sym_attribute, - STATE(6728), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274675] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9186), 1, - anon_sym_COLON_GT, - ACTIONS(9188), 1, - anon_sym_RPAREN, - STATE(6247), 1, - sym_attribute, - STATE(7239), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274698] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9190), 1, - anon_sym_SEMI, - ACTIONS(9192), 1, - anon_sym_GT_RBRACE, - STATE(6248), 1, - sym_attribute, - STATE(6529), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274721] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9194), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6249), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274744] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9196), 1, - anon_sym_with, - STATE(6250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274767] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - ACTIONS(9198), 1, - anon_sym_EQ, - ACTIONS(9200), 1, - anon_sym_RPAREN, - STATE(6251), 1, - sym_attribute, - STATE(7048), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274790] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9202), 1, - anon_sym_COLON_GT, - ACTIONS(9204), 1, - anon_sym_RPAREN, - STATE(6252), 1, - sym_attribute, - STATE(7010), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274813] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9206), 1, - sym__identifier, - STATE(3850), 1, - sym_type_constructor_path, - STATE(6253), 1, - sym_attribute, - STATE(7267), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274836] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8938), 1, - anon_sym_LPAREN, - ACTIONS(8940), 1, - sym__capitalized_identifier, - STATE(4546), 1, - sym_constructor_path, - STATE(6254), 1, - sym_attribute, - STATE(8074), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274859] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6255), 1, - sym_attribute, - STATE(7318), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9208), 2, - anon_sym__, - sym__capitalized_identifier, - [274880] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9210), 1, - anon_sym_rec, - STATE(5048), 1, - sym_module_binding, - STATE(6256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8439), 2, - anon_sym__, - sym__capitalized_identifier, - [274901] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6257), 1, - sym_attribute, - STATE(7043), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9212), 2, - sym__identifier, - sym__capitalized_identifier, - [274922] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5309), 1, - sym__identifier, - STATE(5429), 1, - sym_type_constructor_path, - STATE(6258), 1, - sym_attribute, - STATE(7290), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274945] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9214), 1, - sym__identifier, - STATE(2569), 1, - sym_type_constructor_path, - STATE(6259), 1, - sym_attribute, - STATE(7355), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274968] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(6260), 1, - sym_attribute, - STATE(6934), 1, - sym_constructor_path, - STATE(7676), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [274991] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9218), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6261), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275014] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9220), 1, - anon_sym_with, - STATE(6262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275037] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5327), 1, - sym__identifier, - STATE(6263), 1, - sym_attribute, - STATE(6805), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275060] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9222), 1, - anon_sym_SEMI, - ACTIONS(9224), 1, - anon_sym_GT_RBRACE, - STATE(6264), 1, - sym_attribute, - STATE(6880), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275083] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9032), 1, - sym__identifier, - STATE(4002), 1, - sym_class_type_path, - STATE(6265), 1, - sym_attribute, - STATE(7326), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275106] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9226), 1, - anon_sym_with, - STATE(6266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275129] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9228), 1, - sym__identifier, - STATE(6267), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - STATE(8267), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275152] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6880), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6268), 1, - sym_attribute, - STATE(6287), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275175] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6601), 1, - sym__capitalized_identifier, - ACTIONS(9044), 1, - sym__identifier, - STATE(6269), 1, - sym_attribute, - STATE(7002), 1, - sym_extended_module_path, - STATE(7199), 1, - sym_module_type_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275198] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9230), 1, - anon_sym_COLON_GT, - ACTIONS(9232), 1, - anon_sym_RPAREN, - STATE(6270), 1, - sym_attribute, - STATE(6919), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275221] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9234), 1, - anon_sym_with, - STATE(6271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275244] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9032), 1, - sym__identifier, - STATE(4017), 1, - sym_class_type_path, - STATE(6272), 1, - sym_attribute, - STATE(7326), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275267] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9102), 1, - sym__identifier, - STATE(3918), 1, - sym_class_type_path, - STATE(6273), 1, - sym_attribute, - STATE(7051), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275290] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9236), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275313] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8987), 1, - sym__identifier, - STATE(4437), 1, - sym_class_type_path, - STATE(6275), 1, - sym_attribute, - STATE(7299), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275336] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9238), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275359] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(8926), 1, - anon_sym_BANG, - ACTIONS(8928), 1, - anon_sym__, - STATE(6036), 1, - sym_type_variable, - STATE(6277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275382] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4050), 1, - anon_sym_POUND, - ACTIONS(8942), 1, - anon_sym_DOT, - ACTIONS(8946), 1, - sym_hash_operator, - ACTIONS(9240), 1, - anon_sym_with, - STATE(6278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275405] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8728), 1, - sym__identifier, - STATE(2116), 1, - sym_class_path, - STATE(6279), 1, - sym_attribute, - STATE(7680), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275428] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9242), 1, - anon_sym_RBRACK, - STATE(6280), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275451] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - ACTIONS(9244), 1, - anon_sym_EQ, - ACTIONS(9246), 1, - anon_sym_RPAREN, - STATE(6281), 1, - sym_attribute, - STATE(7188), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275474] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6282), 1, - sym_attribute, - STATE(7357), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9248), 2, - anon_sym__, - sym__capitalized_identifier, - [275495] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(6283), 1, - sym_attribute, - STATE(7024), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275518] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3562), 1, - sym__capitalized_identifier, - ACTIONS(9062), 1, - anon_sym_LPAREN, - STATE(4564), 1, - sym_constructor_path, - STATE(6284), 1, - sym_attribute, - STATE(8033), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275541] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9250), 1, - anon_sym_RBRACK, - STATE(6285), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275564] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9252), 1, - sym__identifier, - STATE(6286), 1, - sym_attribute, - STATE(6362), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [275585] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6888), 1, - anon_sym_in, - ACTIONS(9254), 1, - anon_sym_and, - ACTIONS(9257), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6287), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - [275606] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9260), 1, - anon_sym_SEMI, - ACTIONS(9262), 1, - anon_sym_GT_RBRACE, - STATE(6288), 1, - sym_attribute, - STATE(6818), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275629] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9264), 1, - sym__identifier, - STATE(6289), 1, - sym_attribute, - STATE(6360), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [275650] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9266), 1, - sym__identifier, - ACTIONS(9268), 1, - anon_sym_LPAREN, - STATE(3866), 1, - sym_parenthesized_operator, - STATE(3878), 1, - sym__value_name, - STATE(6290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275673] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9270), 1, - anon_sym_SEMI, - ACTIONS(9272), 1, - anon_sym_GT_RBRACE, - STATE(6291), 1, - sym_attribute, - STATE(6704), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275696] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6292), 1, - sym_attribute, - STATE(7274), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9274), 2, - anon_sym__, - sym__capitalized_identifier, - [275717] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9276), 1, - anon_sym_RBRACK, - STATE(6293), 1, - sym_attribute, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275740] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(6294), 1, - sym_attribute, - STATE(7110), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275763] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4699), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9278), 1, - anon_sym_GT, - STATE(6194), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275786] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9280), 1, - anon_sym_SEMI, - ACTIONS(9282), 1, - anon_sym_GT_RBRACE, - STATE(6296), 1, - sym_attribute, - STATE(6375), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275809] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9276), 1, - anon_sym_RBRACK, - ACTIONS(9284), 1, - anon_sym_GT, - STATE(6297), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275832] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9286), 1, - anon_sym_RBRACK, - ACTIONS(9288), 1, - aux_sym_tag_token1, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6298), 2, - sym_attribute, - aux_sym_polymorphic_variant_type_repeat2, - [275853] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9291), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6299), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275876] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(3734), 1, - sym_class_type_path, - STATE(6300), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275899] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8615), 1, - sym__identifier, - STATE(3154), 1, - sym_class_path, - STATE(6301), 1, - sym_attribute, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275922] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(4290), 1, - sym_class_type_path, - STATE(6302), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275945] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(6303), 1, - sym_attribute, - STATE(7316), 1, - sym_constructor_path, - STATE(7676), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275968] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9293), 1, - sym__identifier, - STATE(4290), 1, - sym_class_type_path, - STATE(6304), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [275991] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6880), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6305), 1, - sym_attribute, - STATE(6338), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276014] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9295), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276037] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9102), 1, - sym__identifier, - STATE(3942), 1, - sym_class_type_path, - STATE(6307), 1, - sym_attribute, - STATE(7051), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276060] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(8299), 1, - anon_sym_DASH_GT, - STATE(4253), 1, - sym_module_parameter, - STATE(6274), 1, - aux_sym_module_binding_repeat1, - STATE(6308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276083] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9297), 1, - anon_sym_COLON_GT, - ACTIONS(9299), 1, - anon_sym_RPAREN, - STATE(6309), 1, - sym_attribute, - STATE(6976), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276106] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9301), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6310), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276129] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9303), 1, - anon_sym_RBRACK, - ACTIONS(9305), 1, - anon_sym_GT, - STATE(6311), 1, - sym_attribute, - STATE(6341), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276152] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9303), 1, - anon_sym_RBRACK, - ACTIONS(9305), 1, - anon_sym_GT, - STATE(6312), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276175] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - ACTIONS(9307), 1, - anon_sym_RBRACE, - STATE(6313), 1, - sym_attribute, - STATE(7092), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276198] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9309), 1, - sym__identifier, - STATE(6314), 1, - sym_attribute, - STATE(6324), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [276219] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9311), 1, - anon_sym_RBRACK, - ACTIONS(9313), 1, - anon_sym_GT, - STATE(6315), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276242] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(6169), 1, - anon_sym_DASH_GT, - STATE(4253), 1, - sym_module_parameter, - STATE(6316), 1, - sym_attribute, - STATE(6317), 1, - aux_sym_module_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276265] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - ACTIONS(9315), 1, - anon_sym_DASH_GT, - STATE(4095), 1, - aux_sym_module_binding_repeat1, - STATE(4253), 1, - sym_module_parameter, - STATE(6317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276288] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5327), 1, - sym__identifier, - STATE(5429), 1, - sym_type_constructor_path, - STATE(6318), 1, - sym_attribute, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276311] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9317), 1, - anon_sym_SEMI, - ACTIONS(9319), 1, - anon_sym_GT_RBRACE, - STATE(6319), 1, - sym_attribute, - STATE(6445), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276334] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9311), 1, - anon_sym_RBRACK, - ACTIONS(9313), 1, - anon_sym_GT, - STATE(6297), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276357] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9321), 1, - anon_sym_RBRACK, - ACTIONS(9323), 1, - anon_sym_GT, - STATE(6321), 1, - sym_attribute, - STATE(6337), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276380] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(9325), 1, - sym__identifier, - STATE(5537), 1, - sym__value_name, - STATE(5681), 1, - sym_parenthesized_operator, - STATE(6322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276403] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9321), 1, - anon_sym_RBRACK, - ACTIONS(9323), 1, - anon_sym_GT, - STATE(6323), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276426] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9327), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9329), 2, - anon_sym_mutable, - anon_sym_virtual, - STATE(6324), 2, - sym_attribute, - aux_sym_instance_variable_specification_repeat1, - [276445] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5403), 1, - sym__value_pattern, - STATE(6325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276468] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9332), 1, - sym__identifier, - STATE(6326), 1, - sym_attribute, - STATE(6327), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [276489] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9334), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9336), 2, - anon_sym_private, - anon_sym_virtual, - STATE(6327), 2, - sym_attribute, - aux_sym_method_specification_repeat1, - [276508] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4725), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9339), 1, - anon_sym_GT, - STATE(6323), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276531] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8611), 1, - sym__identifier, - STATE(2489), 1, - sym_class_path, - STATE(6329), 1, - sym_attribute, - STATE(7908), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276554] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8748), 1, - sym__identifier, - STATE(2819), 1, - sym_class_path, - STATE(6330), 1, - sym_attribute, - STATE(7877), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276577] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(5340), 1, - sym__value_pattern, - STATE(6331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276600] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9341), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6332), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276623] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5327), 1, - sym__identifier, - STATE(6333), 1, - sym_attribute, - STATE(6528), 1, - sym_type_constructor_path, - STATE(6987), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276646] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9102), 1, - sym__identifier, - STATE(3926), 1, - sym_class_type_path, - STATE(6334), 1, - sym_attribute, - STATE(7051), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276669] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5830), 1, - anon_sym_PERCENT, - STATE(6335), 1, - sym_attribute, - STATE(7286), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9343), 2, - anon_sym__, - sym__capitalized_identifier, - [276690] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9345), 1, - anon_sym_SEMI, - ACTIONS(9347), 1, - anon_sym_GT_RBRACE, - STATE(6336), 1, - sym_attribute, - STATE(6378), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276713] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9349), 1, - anon_sym_RBRACK, - ACTIONS(9351), 1, - anon_sym_GT, - STATE(6337), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276736] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6980), 1, - anon_sym_in, - ACTIONS(8934), 1, - anon_sym_and, - ACTIONS(8936), 1, - sym_and_operator, - STATE(6287), 1, - aux_sym_value_definition_repeat1, - STATE(6338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276759] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9353), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6339), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276782] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4671), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9355), 1, - anon_sym_GT, - STATE(6315), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276805] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9353), 1, - anon_sym_RBRACK, - ACTIONS(9357), 1, - anon_sym_GT, - STATE(6341), 1, - sym_attribute, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276828] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9359), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9362), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(6342), 2, - sym_attribute, - aux_sym_polymorphic_variant_type_repeat1, - [276847] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9364), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8796), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(6343), 2, - sym_attribute, - aux_sym_instantiated_class_type_repeat1, - [276866] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7532), 1, - sym__identifier, - ACTIONS(8649), 1, - anon_sym_LPAREN, - STATE(2224), 1, - sym_parenthesized_operator, - STATE(6344), 1, - sym_attribute, - STATE(6945), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276889] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9349), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6345), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276912] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9367), 1, - anon_sym_COLON_GT, - ACTIONS(9369), 1, - anon_sym_RPAREN, - STATE(6346), 1, - sym_attribute, - STATE(6928), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276935] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(3655), 1, - sym_class_type_path, - STATE(6347), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [276958] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9371), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9374), 2, - anon_sym_RPAREN, - anon_sym_DOT, - STATE(6348), 2, - sym_attribute, - aux_sym__abstract_type_repeat1, - [276977] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - ACTIONS(9376), 1, - anon_sym_RBRACE, - STATE(6349), 1, - sym_attribute, - STATE(7092), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277000] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9378), 1, - anon_sym_rec, - STATE(4990), 1, - sym_module_binding, - STATE(6350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8569), 2, - anon_sym__, - sym__capitalized_identifier, - [277021] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9150), 1, - sym__identifier, - STATE(5310), 1, - sym_class_type_path, - STATE(6351), 1, - sym_attribute, - STATE(7284), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277044] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9380), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6352), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277067] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9382), 1, - anon_sym_COLON_GT, - ACTIONS(9384), 1, - anon_sym_RPAREN, - STATE(6353), 1, - sym_attribute, - STATE(7144), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277090] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9032), 1, - sym__identifier, - STATE(4022), 1, - sym_class_type_path, - STATE(6354), 1, - sym_attribute, - STATE(7326), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277113] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3696), 1, - sym__capitalized_identifier, - ACTIONS(9216), 1, - anon_sym_LPAREN, - STATE(6355), 1, - sym_attribute, - STATE(7064), 1, - sym_constructor_path, - STATE(7676), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277136] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7305), 1, - anon_sym_COLON2, - ACTIONS(9386), 1, - anon_sym_COLON_GT, - ACTIONS(9388), 1, - anon_sym_RPAREN, - STATE(6356), 1, - sym_attribute, - STATE(6940), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277159] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9390), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6357), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277182] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(6358), 1, - sym_attribute, - STATE(8613), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277205] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9392), 1, - anon_sym_DOT, - STATE(6236), 1, - aux_sym_constructor_declaration_repeat1, - STATE(6359), 1, - sym_attribute, - STATE(7305), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277228] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9394), 1, - sym__identifier, - STATE(6327), 1, - aux_sym_method_specification_repeat1, - STATE(6360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8922), 2, - anon_sym_private, - anon_sym_virtual, - [277249] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(5880), 1, - sym__identifier, - STATE(5917), 1, - sym_type_constructor_path, - STATE(6361), 1, - sym_attribute, - STATE(7336), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277272] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9396), 1, - sym__identifier, - STATE(6324), 1, - aux_sym_instance_variable_specification_repeat1, - STATE(6362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8872), 2, - anon_sym_mutable, - anon_sym_virtual, - [277293] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(6363), 1, - sym_attribute, - STATE(8617), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277316] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2867), 4, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_of, - anon_sym_GT, - [277333] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8649), 1, - anon_sym_LPAREN, - ACTIONS(8669), 1, - sym__identifier, - STATE(4522), 1, - sym_parenthesized_operator, - STATE(6365), 1, - sym_attribute, - STATE(8619), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277356] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(8979), 1, - sym__identifier, - STATE(4277), 1, - sym_class_type_path, - STATE(6366), 1, - sym_attribute, - STATE(7252), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277379] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - ACTIONS(9293), 1, - sym__identifier, - STATE(4277), 1, - sym_class_type_path, - STATE(6367), 1, - sym_attribute, - STATE(7265), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277402] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - ACTIONS(9398), 1, - anon_sym_RBRACK, - STATE(6298), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6368), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277425] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8607), 1, - sym__identifier, - STATE(3413), 1, - sym_class_path, - STATE(6369), 1, - sym_attribute, - STATE(7473), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277448] = 7, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(8615), 1, - sym__identifier, - STATE(3114), 1, - sym_class_path, - STATE(6370), 1, - sym_attribute, - STATE(7986), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277471] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4741), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6371), 1, - sym_attribute, - STATE(6761), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277491] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6174), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6372), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277511] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(9400), 1, - anon_sym_type, - STATE(6373), 1, - sym_attribute, - STATE(6715), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277531] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9402), 1, - anon_sym_SEMI, - ACTIONS(9404), 1, - anon_sym_RBRACE, - STATE(6374), 1, - sym_attribute, - STATE(6434), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277551] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - anon_sym_SEMI, - ACTIONS(9408), 1, - anon_sym_GT_RBRACE, - STATE(6375), 1, - sym_attribute, - STATE(6458), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277571] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9410), 1, - anon_sym_SEMI, - ACTIONS(9412), 1, - anon_sym_RBRACE, - STATE(6376), 1, - sym_attribute, - STATE(6387), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277591] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4990), 1, - sym_module_binding, - STATE(6377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8569), 2, - anon_sym__, - sym__capitalized_identifier, - [277609] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9414), 1, - anon_sym_SEMI, - ACTIONS(9416), 1, - anon_sym_GT_RBRACE, - STATE(6378), 1, - sym_attribute, - STATE(6391), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277629] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5022), 1, - sym_module_binding, - STATE(6379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8569), 2, - anon_sym__, - sym__capitalized_identifier, - [277647] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4928), 1, - sym_module_binding, - STATE(6380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8569), 2, - anon_sym__, - sym__capitalized_identifier, - [277665] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9418), 1, - anon_sym_SEMI, - ACTIONS(9420), 1, - anon_sym_RBRACE, - STATE(6381), 1, - sym_attribute, - STATE(6486), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277685] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9422), 1, - anon_sym_SEMI, - ACTIONS(9424), 1, - anon_sym_RBRACE, - STATE(6382), 1, - sym_attribute, - STATE(6495), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277705] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6383), 1, - sym_attribute, - STATE(6951), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277723] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6384), 1, - sym_attribute, - STATE(6952), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277741] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1797), 1, - anon_sym_RBRACK, - ACTIONS(9428), 1, - anon_sym_SEMI, - STATE(6385), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277761] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6386), 1, - sym_attribute, - STATE(6954), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277779] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8605), 1, - anon_sym_RBRACE, - ACTIONS(9430), 1, - anon_sym_SEMI, - STATE(6387), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277799] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1897), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9432), 1, - anon_sym_SEMI, - STATE(6388), 1, - sym_attribute, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277819] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6389), 1, - sym_attribute, - STATE(6956), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277837] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9434), 1, - anon_sym_GT_RBRACE, - STATE(6390), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277857] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9434), 1, - anon_sym_GT_RBRACE, - ACTIONS(9436), 1, - anon_sym_SEMI, - STATE(6391), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277877] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6392), 1, - sym_attribute, - STATE(6958), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277895] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6393), 1, - sym_attribute, - STATE(6961), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277913] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6394), 1, - sym_attribute, - STATE(6962), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277931] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9438), 1, - anon_sym_RPAREN, - STATE(6395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [277951] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6396), 1, - sym_attribute, - STATE(6963), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277969] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6397), 1, - sym_attribute, - STATE(6964), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [277987] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8762), 1, - anon_sym_RBRACE, - ACTIONS(9440), 1, - anon_sym_SEMI, - STATE(6398), 1, - sym_attribute, - STATE(6410), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278007] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9442), 1, - anon_sym_GT_RBRACE, - STATE(6399), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278027] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6400), 1, - sym_attribute, - STATE(6965), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278045] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6401), 1, - sym_attribute, - STATE(6966), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278063] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6402), 1, - sym_attribute, - STATE(6967), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278081] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9444), 1, - sym__identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - STATE(6403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278101] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6404), 1, - sym_attribute, - STATE(6971), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278119] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6405), 1, - sym_attribute, - STATE(6973), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278137] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6406), 1, - sym_attribute, - STATE(6978), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278155] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6407), 1, - sym_attribute, - STATE(6982), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278173] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6408), 1, - sym_attribute, - STATE(6990), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278191] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9448), 1, - anon_sym_RPAREN, - STATE(6409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278211] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8659), 1, - anon_sym_RBRACE, - ACTIONS(9450), 1, - anon_sym_SEMI, - STATE(6410), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278231] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6411), 1, - sym_attribute, - STATE(6994), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278249] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6412), 1, - sym_attribute, - STATE(7000), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278267] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6413), 1, - sym_attribute, - STATE(7004), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278285] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6414), 1, - sym_attribute, - STATE(7012), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278303] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6415), 1, - sym_attribute, - STATE(7015), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278321] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6416), 1, - sym_attribute, - STATE(7020), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278339] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6417), 1, - sym_attribute, - STATE(7026), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278357] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6418), 1, - sym_attribute, - STATE(7042), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278375] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1825), 1, - anon_sym_RBRACK, - ACTIONS(9452), 1, - anon_sym_SEMI, - STATE(6419), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278395] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9454), 1, - anon_sym_RPAREN, - STATE(6420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278415] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(25), 1, - sym_attribute_id, - STATE(6421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [278433] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(29), 1, - sym_attribute_id, - STATE(6422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [278451] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6423), 1, - sym_attribute, - STATE(7008), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278469] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9460), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278489] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4699), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6425), 1, - sym_attribute, - STATE(6506), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278509] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RBRACK, - STATE(6424), 1, - aux_sym__type_params_repeat1, - STATE(6426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278529] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9462), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278549] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8746), 1, - anon_sym_RBRACE, - ACTIONS(9464), 1, - anon_sym_SEMI, - STATE(6428), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278569] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9466), 1, - anon_sym_RBRACK, - STATE(6427), 1, - aux_sym__type_params_repeat1, - STATE(6429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278589] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5), 1, - sym_attribute_id, - STATE(6430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [278607] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9468), 1, - anon_sym_RPAREN, - STATE(6431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278627] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8208), 1, - anon_sym_SEMI, - ACTIONS(8210), 1, - anon_sym_GT, - STATE(6432), 1, - sym_attribute, - STATE(6524), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278647] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6433), 1, - sym_attribute, - STATE(7108), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [278665] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8663), 1, - anon_sym_RBRACE, - ACTIONS(9470), 1, - anon_sym_SEMI, - STATE(6434), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278685] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9472), 1, - anon_sym_LPAREN, - ACTIONS(9474), 1, - anon_sym_LBRACK, - ACTIONS(9476), 1, - anon_sym_LBRACE, - STATE(6435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278705] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9478), 1, - anon_sym_LPAREN, - ACTIONS(9480), 1, - anon_sym_LBRACK, - ACTIONS(9482), 1, - anon_sym_LBRACE, - STATE(6436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278725] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9484), 1, - anon_sym_LPAREN, - ACTIONS(9486), 1, - anon_sym_LBRACK, - ACTIONS(9488), 1, - anon_sym_LBRACE, - STATE(6437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278745] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9490), 1, - sym__identifier, - STATE(6438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278765] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9492), 1, - anon_sym_SEMI, - ACTIONS(9494), 1, - anon_sym_RBRACE, - STATE(6439), 1, - sym_attribute, - STATE(6459), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278785] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9496), 1, - anon_sym_LPAREN, - ACTIONS(9498), 1, - anon_sym_LBRACK, - ACTIONS(9500), 1, - anon_sym_LBRACE, - STATE(6440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278805] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9502), 1, - anon_sym_LPAREN, - ACTIONS(9504), 1, - anon_sym_LBRACK, - ACTIONS(9506), 1, - anon_sym_LBRACE, - STATE(6441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278825] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9508), 1, - anon_sym_LPAREN, - ACTIONS(9510), 1, - anon_sym_LBRACK, - ACTIONS(9512), 1, - anon_sym_LBRACE, - STATE(6442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278845] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9514), 1, - anon_sym_GT_RBRACE, - STATE(6443), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278865] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9516), 1, - anon_sym_LPAREN, - ACTIONS(9518), 1, - anon_sym_LBRACK, - ACTIONS(9520), 1, - anon_sym_LBRACE, - STATE(6444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278885] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9522), 1, - anon_sym_SEMI, - ACTIONS(9524), 1, - anon_sym_GT_RBRACE, - STATE(6445), 1, - sym_attribute, - STATE(6465), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278905] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9526), 1, - anon_sym_LPAREN, - ACTIONS(9528), 1, - anon_sym_LBRACK, - ACTIONS(9530), 1, - anon_sym_LBRACE, - STATE(6446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278925] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9532), 1, - anon_sym_LPAREN, - ACTIONS(9534), 1, - anon_sym_LBRACK, - ACTIONS(9536), 1, - anon_sym_LBRACE, - STATE(6447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278945] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1819), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9538), 1, - anon_sym_SEMI, - STATE(6448), 1, - sym_attribute, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278965] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9540), 1, - anon_sym_LPAREN, - ACTIONS(9542), 1, - anon_sym_LBRACK, - ACTIONS(9544), 1, - anon_sym_LBRACE, - STATE(6449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [278985] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4827), 1, - sym_attribute_id, - STATE(6450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9546), 2, - sym__identifier, - sym__capitalized_identifier, - [279003] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8695), 1, - anon_sym_RBRACE, - ACTIONS(9548), 1, - anon_sym_SEMI, - STATE(6428), 1, - aux_sym_record_expression_repeat1, - STATE(6451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279023] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9550), 1, - anon_sym_LPAREN, - ACTIONS(9552), 1, - anon_sym_LBRACK, - ACTIONS(9554), 1, - anon_sym_LBRACE, - STATE(6452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279043] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9556), 1, - anon_sym_LPAREN, - ACTIONS(9558), 1, - anon_sym_LBRACK, - ACTIONS(9560), 1, - anon_sym_LBRACE, - STATE(6453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279063] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9562), 1, - anon_sym_LPAREN, - ACTIONS(9564), 1, - anon_sym_LBRACK, - ACTIONS(9566), 1, - anon_sym_LBRACE, - STATE(6454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279083] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9568), 1, - anon_sym_LPAREN, - ACTIONS(9570), 1, - anon_sym_LBRACK, - ACTIONS(9572), 1, - anon_sym_LBRACE, - STATE(6455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279103] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1887), 1, - anon_sym_RBRACK, - ACTIONS(9574), 1, - anon_sym_SEMI, - STATE(6456), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279123] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9576), 1, - anon_sym_GT_RBRACE, - STATE(6457), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279143] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9576), 1, - anon_sym_GT_RBRACE, - ACTIONS(9578), 1, - anon_sym_SEMI, - STATE(6458), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279163] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8685), 1, - anon_sym_RBRACE, - ACTIONS(9580), 1, - anon_sym_SEMI, - STATE(6459), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279183] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9582), 1, - anon_sym_LPAREN, - ACTIONS(9584), 1, - anon_sym_LBRACK, - ACTIONS(9586), 1, - anon_sym_LBRACE, - STATE(6460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279203] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9588), 1, - anon_sym_GT_RBRACE, - STATE(6461), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279223] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1885), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9590), 1, - anon_sym_SEMI, - STATE(6462), 1, - sym_attribute, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279243] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9592), 1, - anon_sym_LPAREN, - ACTIONS(9594), 1, - anon_sym_LBRACK, - ACTIONS(9596), 1, - anon_sym_LBRACE, - STATE(6463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279263] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9598), 1, - anon_sym_GT_RBRACE, - STATE(6464), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279283] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9598), 1, - anon_sym_GT_RBRACE, - ACTIONS(9600), 1, - anon_sym_SEMI, - STATE(6465), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279303] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5048), 1, - sym_module_binding, - STATE(6466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8439), 2, - anon_sym__, - sym__capitalized_identifier, - [279321] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9602), 1, - anon_sym_LPAREN, - ACTIONS(9604), 1, - anon_sym_LBRACK, - ACTIONS(9606), 1, - anon_sym_LBRACE, - STATE(6467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279341] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6890), 1, - anon_sym_and, - STATE(6468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6888), 2, - anon_sym_in, - sym_and_operator, - [279359] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5498), 1, - sym__type_equation, - STATE(6469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9608), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [279377] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9610), 1, - anon_sym_LPAREN, - ACTIONS(9612), 1, - anon_sym_LBRACK, - ACTIONS(9614), 1, - anon_sym_LBRACE, - STATE(6470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279397] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9616), 1, - anon_sym_SEMI, - ACTIONS(9618), 1, - anon_sym_GT_RBRACE, - STATE(6471), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279417] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9620), 1, - anon_sym_RPAREN, - STATE(6472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279437] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9618), 1, - anon_sym_GT_RBRACE, - STATE(6473), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279457] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9622), 1, - anon_sym_RPAREN, - ACTIONS(9624), 1, - anon_sym_COLON2, - STATE(6474), 1, - sym_attribute, - STATE(8226), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279477] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8645), 1, - anon_sym_RBRACE, - ACTIONS(9626), 1, - anon_sym_SEMI, - STATE(6475), 1, - sym_attribute, - STATE(6491), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279497] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(9628), 1, - anon_sym_RPAREN, - STATE(6476), 1, - sym_attribute, - STATE(8222), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279517] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1773), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9630), 1, - anon_sym_SEMI, - STATE(6477), 1, - sym_attribute, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279537] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3530), 1, - anon_sym_RBRACK, - ACTIONS(9632), 1, - anon_sym_SEMI, - STATE(6478), 1, - sym_attribute, - STATE(6811), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279557] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9634), 1, - anon_sym_GT_RBRACE, - STATE(6479), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279577] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(4253), 1, - sym_module_parameter, - STATE(6175), 1, - aux_sym_module_binding_repeat1, - STATE(6480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279597] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(32), 1, - sym_attribute_id, - STATE(6481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [279615] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6482), 1, - sym_attribute, - STATE(7045), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9426), 2, - sym__identifier, - sym__capitalized_identifier, - [279633] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9636), 1, - sym__identifier, - STATE(6483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279653] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9638), 1, - anon_sym_LPAREN, - ACTIONS(9640), 1, - anon_sym_LBRACK, - ACTIONS(9642), 1, - anon_sym_LBRACE, - STATE(6484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279673] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9644), 1, - anon_sym_LPAREN, - ACTIONS(9646), 1, - anon_sym_LBRACK, - ACTIONS(9648), 1, - anon_sym_LBRACE, - STATE(6485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279693] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8589), 1, - anon_sym_RBRACE, - ACTIONS(9650), 1, - anon_sym_SEMI, - STATE(6486), 1, - sym_attribute, - STATE(6815), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279713] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3648), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9652), 1, - anon_sym_SEMI, - STATE(6487), 1, - sym_attribute, - STATE(6904), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279733] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9654), 1, - anon_sym_LPAREN, - ACTIONS(9656), 1, - anon_sym_LBRACK, - ACTIONS(9658), 1, - anon_sym_LBRACE, - STATE(6488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279753] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9660), 1, - anon_sym_RPAREN, - STATE(6489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279773] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8752), 1, - anon_sym_RBRACE, - ACTIONS(9662), 1, - anon_sym_SEMI, - STATE(6490), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279793] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8599), 1, - anon_sym_RBRACE, - ACTIONS(9664), 1, - anon_sym_SEMI, - STATE(6491), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279813] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9666), 1, - anon_sym_LPAREN, - ACTIONS(9668), 1, - anon_sym_LBRACK, - ACTIONS(9670), 1, - anon_sym_LBRACE, - STATE(6492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279833] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1759), 1, - anon_sym_RBRACK, - ACTIONS(9672), 1, - anon_sym_SEMI, - STATE(6493), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279853] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3954), 1, - anon_sym_RBRACK, - ACTIONS(9674), 1, - anon_sym_SEMI, - STATE(6494), 1, - sym_attribute, - STATE(6819), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279873] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8545), 1, - anon_sym_RBRACE, - ACTIONS(9676), 1, - anon_sym_SEMI, - STATE(6495), 1, - sym_attribute, - STATE(6821), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279893] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3952), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9678), 1, - anon_sym_SEMI, - STATE(6496), 1, - sym_attribute, - STATE(6906), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279913] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9680), 1, - anon_sym_LPAREN, - ACTIONS(9682), 1, - anon_sym_LBRACK, - ACTIONS(9684), 1, - anon_sym_LBRACE, - STATE(6497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279933] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9686), 1, - anon_sym_LPAREN, - ACTIONS(9688), 1, - anon_sym_LBRACK, - ACTIONS(9690), 1, - anon_sym_LBRACE, - STATE(6498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279953] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3991), 1, - sym_attribute_id, - STATE(6499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9692), 2, - sym__identifier, - sym__capitalized_identifier, - [279971] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9694), 1, - anon_sym_RPAREN, - STATE(6500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [279991] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9696), 1, - anon_sym_RPAREN, - STATE(6501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280011] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9698), 1, - anon_sym_LPAREN, - ACTIONS(9700), 1, - anon_sym_LBRACK, - ACTIONS(9702), 1, - anon_sym_LBRACE, - STATE(6502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280031] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(9704), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280051] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9706), 1, - anon_sym_LPAREN, - ACTIONS(9708), 1, - anon_sym_LBRACK, - ACTIONS(9710), 1, - anon_sym_LBRACE, - STATE(6504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280071] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9098), 1, - anon_sym_RBRACK, - STATE(6505), 1, - sym_attribute, - STATE(6537), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280091] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9098), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280111] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9712), 1, - anon_sym_SEMI, - ACTIONS(9714), 1, - anon_sym_GT_RBRACE, - STATE(6471), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280131] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9716), 1, - anon_sym_LPAREN, - ACTIONS(9718), 1, - anon_sym_LBRACK, - ACTIONS(9720), 1, - anon_sym_LBRACE, - STATE(6508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280151] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9722), 1, - anon_sym_LPAREN, - ACTIONS(9724), 1, - anon_sym_LBRACK, - ACTIONS(9726), 1, - anon_sym_LBRACE, - STATE(6509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280171] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9728), 1, - anon_sym_SEMI, - ACTIONS(9730), 1, - anon_sym_RBRACE, - STATE(6490), 1, - aux_sym_record_expression_repeat1, - STATE(6510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280191] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9732), 1, - anon_sym_LPAREN, - ACTIONS(9734), 1, - anon_sym_LBRACK, - ACTIONS(9736), 1, - anon_sym_LBRACE, - STATE(6511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280211] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9738), 1, - anon_sym_LPAREN, - ACTIONS(9740), 1, - anon_sym_LBRACK, - ACTIONS(9742), 1, - anon_sym_LBRACE, - STATE(6512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280231] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9744), 1, - anon_sym_RPAREN, - STATE(6513), 1, - sym_attribute, - STATE(6559), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280251] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8714), 1, - anon_sym_RBRACE, - ACTIONS(9746), 1, - anon_sym_SEMI, - STATE(6514), 1, - sym_attribute, - STATE(6540), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280271] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - ACTIONS(9748), 1, - anon_sym__, - STATE(6081), 1, - sym_type_variable, - STATE(6515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280291] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(23), 1, - sym_attribute_id, - STATE(6516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [280309] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9750), 1, - anon_sym_LPAREN, - ACTIONS(9752), 1, - anon_sym_LBRACK, - ACTIONS(9754), 1, - anon_sym_LBRACE, - STATE(6517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280329] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9756), 1, - anon_sym_GT_RBRACE, - STATE(6518), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280349] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9758), 1, - anon_sym_LPAREN, - ACTIONS(9760), 1, - anon_sym_LBRACK, - ACTIONS(9762), 1, - anon_sym_LBRACE, - STATE(6519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280369] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9764), 1, - sym__identifier, - STATE(6520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280389] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7172), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6521), 1, - sym_attribute, - STATE(6682), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280409] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [280425] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9768), 1, - anon_sym_SEMI, - ACTIONS(9770), 1, - anon_sym_RBRACE, - STATE(6523), 1, - sym_attribute, - STATE(6542), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280445] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5465), 1, - anon_sym_GT, - ACTIONS(9772), 1, - anon_sym_SEMI, - STATE(6524), 1, - sym_attribute, - STATE(6838), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280465] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9774), 1, - anon_sym_RPAREN, - STATE(6525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9776), 2, - anon_sym__, - sym__capitalized_identifier, - [280483] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4928), 1, - sym_module_binding, - STATE(6526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8439), 2, - anon_sym__, - sym__capitalized_identifier, - [280501] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5066), 1, - sym_module_binding, - STATE(6527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8439), 2, - anon_sym__, - sym__capitalized_identifier, - [280519] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(5500), 1, - sym__type_equation, - STATE(6528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9608), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [280537] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9778), 1, - anon_sym_SEMI, - ACTIONS(9780), 1, - anon_sym_GT_RBRACE, - STATE(6529), 1, - sym_attribute, - STATE(6548), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280557] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9782), 1, - anon_sym_RPAREN, - STATE(6530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280577] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9072), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280597] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9784), 1, - anon_sym_EQ, - STATE(6532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280617] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9786), 1, - anon_sym_RBRACK, - STATE(6533), 1, - sym_attribute, - STATE(6630), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280637] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(9788), 1, - anon_sym_RPAREN, - STATE(6534), 1, - sym_attribute, - STATE(8168), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280657] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9790), 1, - anon_sym_RPAREN, - STATE(6535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280677] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9792), 1, - anon_sym_RPAREN, - STATE(6536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280697] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8989), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280717] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8989), 1, - anon_sym_RBRACK, - STATE(6538), 1, - sym_attribute, - STATE(6551), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280737] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1855), 1, - anon_sym_RBRACK, - ACTIONS(9794), 1, - anon_sym_SEMI, - STATE(6539), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280757] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8673), 1, - anon_sym_RBRACE, - ACTIONS(9796), 1, - anon_sym_SEMI, - STATE(6540), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280777] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(8285), 1, - anon_sym_RBRACK, - STATE(6541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280797] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8665), 1, - anon_sym_RBRACE, - ACTIONS(9798), 1, - anon_sym_SEMI, - STATE(6542), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280817] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9800), 1, - anon_sym_SEMI, - ACTIONS(9802), 1, - anon_sym_RBRACE, - STATE(6543), 1, - sym_attribute, - STATE(6681), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280837] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8667), 1, - anon_sym_RBRACE, - ACTIONS(9804), 1, - anon_sym_SEMI, - STATE(6544), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280857] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1853), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9806), 1, - anon_sym_SEMI, - STATE(6545), 1, - sym_attribute, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280877] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9808), 1, - anon_sym_EQ, - STATE(6546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9810), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - [280895] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9812), 1, - anon_sym_GT_RBRACE, - STATE(6547), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280915] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9812), 1, - anon_sym_GT_RBRACE, - ACTIONS(9814), 1, - anon_sym_SEMI, - STATE(6548), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280935] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9816), 1, - anon_sym_SEMI, - ACTIONS(9818), 1, - anon_sym_GT_RBRACE, - STATE(6549), 1, - sym_attribute, - STATE(6694), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280955] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9820), 1, - anon_sym_RPAREN, - STATE(6550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280975] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8970), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [280995] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9822), 1, - anon_sym_RPAREN, - STATE(6552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281015] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1645), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9824), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6553), 2, - sym_attribute, - aux_sym_list_expression_repeat1, - [281033] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9827), 1, - anon_sym_LPAREN, - ACTIONS(9829), 1, - anon_sym_LBRACK, - ACTIONS(9831), 1, - anon_sym_LBRACE, - STATE(6554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281053] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9833), 1, - anon_sym_RPAREN, - STATE(6555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281073] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9835), 1, - anon_sym_LPAREN, - ACTIONS(9837), 1, - anon_sym_LBRACK, - ACTIONS(9839), 1, - anon_sym_LBRACE, - STATE(6556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281093] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2588), 1, - anon_sym_DQUOTE, - STATE(4853), 1, - sym_string, - STATE(4947), 1, - aux_sym_external_repeat1, - STATE(6557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281113] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8681), 1, - anon_sym_RBRACE, - ACTIONS(9841), 1, - anon_sym_SEMI, - STATE(6558), 1, - sym_attribute, - STATE(6574), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281133] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9843), 1, - anon_sym_RPAREN, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281153] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8613), 1, - anon_sym_RBRACE, - ACTIONS(9845), 1, - anon_sym_SEMI, - STATE(6560), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281173] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - STATE(6561), 1, - sym_attribute, - STATE(6709), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281193] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9847), 1, - anon_sym_GT_RBRACE, - STATE(6562), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281213] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9849), 1, - anon_sym_EQ, - STATE(6563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281233] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(6531), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281253] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281273] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9851), 1, - sym__identifier, - STATE(6566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281293] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9853), 1, - anon_sym_RPAREN, - STATE(6567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281313] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9855), 1, - anon_sym_RPAREN, - STATE(6568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281333] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9857), 1, - anon_sym_LPAREN, - ACTIONS(9859), 1, - anon_sym_LBRACK, - ACTIONS(9861), 1, - anon_sym_LBRACE, - STATE(6569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281353] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9863), 1, - anon_sym_EQ, - STATE(6570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281373] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(9865), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281393] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9867), 1, - anon_sym_RPAREN, - STATE(6572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281413] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9869), 1, - sym__identifier, - STATE(6573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281433] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8693), 1, - anon_sym_RBRACE, - ACTIONS(9871), 1, - anon_sym_SEMI, - STATE(6574), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281453] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(9873), 1, - anon_sym_RPAREN, - STATE(6575), 1, - sym_attribute, - STATE(8187), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281473] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4261), 1, - sym__type_equation, - STATE(6576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5508), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [281491] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9875), 1, - anon_sym_RPAREN, - STATE(6577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281511] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8993), 1, - anon_sym_RBRACE, - ACTIONS(9877), 1, - anon_sym_SEMI, - STATE(6578), 1, - sym_attribute, - STATE(6856), 1, - aux_sym_record_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281531] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9879), 1, - anon_sym_GT_RBRACE, - STATE(6579), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281551] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(5386), 1, - anon_sym_DOT, - ACTIONS(9881), 1, - anon_sym_RPAREN, - STATE(6580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281571] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9883), 1, - sym__identifier, - STATE(6581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281591] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(4253), 1, - sym_module_parameter, - STATE(6105), 1, - aux_sym_module_binding_repeat1, - STATE(6582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281611] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9885), 1, - anon_sym_GT_RBRACE, - STATE(6583), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281631] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8712), 1, - anon_sym_RBRACE, - ACTIONS(9887), 1, - anon_sym_SEMI, - STATE(6560), 1, - aux_sym_record_expression_repeat1, - STATE(6584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281651] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(16), 1, - sym_attribute_id, - STATE(6585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281669] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5542), 1, - anon_sym_GT, - ACTIONS(9889), 1, - anon_sym_SEMI, - STATE(6586), 1, - sym_attribute, - STATE(6838), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281689] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(22), 1, - sym_attribute_id, - STATE(6587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281707] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8703), 1, - anon_sym_RBRACE, - ACTIONS(9891), 1, - anon_sym_SEMI, - STATE(6544), 1, - aux_sym_record_expression_repeat1, - STATE(6588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281727] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9001), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281747] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9893), 1, - anon_sym_RPAREN, - STATE(6590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281767] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(38), 1, - sym_attribute_id, - STATE(6591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281785] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9001), 1, - anon_sym_RBRACK, - STATE(6565), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281805] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(9895), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281825] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(37), 1, - sym_attribute_id, - STATE(6594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281843] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(9897), 1, - anon_sym_RPAREN, - STATE(6595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281863] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9899), 1, - anon_sym_RPAREN, - STATE(6596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281883] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9901), 1, - anon_sym_SEMI, - ACTIONS(9903), 1, - anon_sym_GT_RBRACE, - STATE(6597), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281903] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9903), 1, - anon_sym_GT_RBRACE, - STATE(6598), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281923] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(35), 1, - sym_attribute_id, - STATE(6599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281941] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(30), 1, - sym_attribute_id, - STATE(6600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281959] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(12), 1, - sym_attribute_id, - STATE(6601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [281977] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(9905), 1, - anon_sym_EQ, - STATE(6602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [281997] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1661), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9907), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282017] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3846), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9909), 1, - anon_sym_SEMI, - STATE(6604), 1, - sym_attribute, - STATE(6906), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282037] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8309), 1, - anon_sym_RBRACE, - ACTIONS(9911), 1, - anon_sym_SEMI, - STATE(6605), 1, - sym_attribute, - STATE(6821), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282057] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(26), 1, - sym_attribute_id, - STATE(6606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282075] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3848), 1, - anon_sym_RBRACK, - ACTIONS(9913), 1, - anon_sym_SEMI, - STATE(6607), 1, - sym_attribute, - STATE(6819), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282095] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8738), 1, - anon_sym_RBRACE, - ACTIONS(9915), 1, - anon_sym_SEMI, - STATE(6608), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282115] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3622), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9917), 1, - anon_sym_SEMI, - STATE(6609), 1, - sym_attribute, - STATE(6904), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282135] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(21), 1, - sym_attribute_id, - STATE(6610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282153] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8313), 1, - anon_sym_RBRACE, - ACTIONS(9919), 1, - anon_sym_SEMI, - STATE(6611), 1, - sym_attribute, - STATE(6815), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282173] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(9921), 1, - sym__identifier, - STATE(6612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282193] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(20), 1, - sym_attribute_id, - STATE(6613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282211] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(19), 1, - sym_attribute_id, - STATE(6614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282229] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3606), 1, - anon_sym_RBRACK, - ACTIONS(9923), 1, - anon_sym_SEMI, - STATE(6615), 1, - sym_attribute, - STATE(6811), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282249] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1685), 1, - anon_sym_RBRACK, - ACTIONS(9925), 1, - anon_sym_SEMI, - STATE(6616), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282269] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5922), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [282285] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(9927), 1, - anon_sym_RPAREN, - STATE(6618), 1, - sym_attribute, - STATE(8085), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282305] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(17), 1, - sym_attribute_id, - STATE(6619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282323] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9929), 1, - anon_sym_SEMI, - ACTIONS(9931), 1, - anon_sym_RBRACE, - STATE(6620), 1, - sym_attribute, - STATE(6638), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282343] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9624), 1, - anon_sym_COLON2, - ACTIONS(9933), 1, - anon_sym_RPAREN, - STATE(6621), 1, - sym_attribute, - STATE(8083), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282363] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5220), 1, - anon_sym_DOT, - STATE(6622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9935), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [282381] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6), 1, - sym_attribute_id, - STATE(6623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282399] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4267), 1, - sym__type_equation, - STATE(6624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5508), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [282417] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9937), 1, - anon_sym_SEMI, - ACTIONS(9939), 1, - anon_sym_GT_RBRACE, - STATE(6625), 1, - sym_attribute, - STATE(6645), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282437] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(9941), 1, - anon_sym_type, - STATE(6626), 1, - sym_attribute, - STATE(6715), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282457] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9943), 1, - anon_sym_RBRACK, - STATE(6627), 1, - sym_attribute, - STATE(6720), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282477] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(14), 1, - sym_attribute_id, - STATE(6628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282495] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9945), 1, - anon_sym_SEMI, - ACTIONS(9947), 1, - anon_sym_RBRACE, - STATE(6629), 1, - sym_attribute, - STATE(6650), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282515] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282535] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(9949), 1, - anon_sym_RBRACK, - STATE(6631), 1, - sym_attribute, - STATE(6725), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282555] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9951), 1, - anon_sym_SEMI, - ACTIONS(9953), 1, - anon_sym_RBRACE, - STATE(6578), 1, - aux_sym_record_declaration_repeat1, - STATE(6632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282575] = 6, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4853), 1, - sym_string, - STATE(4879), 1, - aux_sym_external_repeat1, - STATE(6633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282595] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1757), 1, - anon_sym_RBRACK, - ACTIONS(9955), 1, - anon_sym_SEMI, - STATE(6634), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282615] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9957), 1, - anon_sym_SEMI, - ACTIONS(9959), 1, - anon_sym_RBRACE, - STATE(6635), 1, - sym_attribute, - STATE(6655), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282635] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(10), 1, - sym_attribute_id, - STATE(6636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282653] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8220), 1, - anon_sym_SEMI, - ACTIONS(8222), 1, - anon_sym_GT, - STATE(6637), 1, - sym_attribute, - STATE(6665), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282673] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8750), 1, - anon_sym_RBRACE, - ACTIONS(9961), 1, - anon_sym_SEMI, - STATE(6638), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282693] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9879), 1, - anon_sym_GT_RBRACE, - ACTIONS(9963), 1, - anon_sym_SEMI, - STATE(6639), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282713] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1755), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9965), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282733] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9967), 1, - anon_sym_SEMI, - ACTIONS(9969), 1, - anon_sym_RBRACE, - STATE(6641), 1, - sym_attribute, - STATE(6737), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282753] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1801), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9971), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282773] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(9), 1, - sym_attribute_id, - STATE(6643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [282791] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(9973), 1, - anon_sym_GT_RBRACE, - STATE(6644), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282811] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9973), 1, - anon_sym_GT_RBRACE, - ACTIONS(9975), 1, - anon_sym_SEMI, - STATE(6645), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282831] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9977), 1, - anon_sym_SEMI, - ACTIONS(9979), 1, - anon_sym_GT_RBRACE, - STATE(6597), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282851] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8732), 1, - anon_sym_RBRACE, - ACTIONS(9981), 1, - anon_sym_SEMI, - STATE(6647), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282871] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(9983), 1, - anon_sym_RPAREN, - STATE(6648), 1, - sym_attribute, - STATE(7682), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282891] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3572), 1, - anon_sym_RBRACK, - ACTIONS(9985), 1, - anon_sym_SEMI, - STATE(6649), 1, - sym_attribute, - STATE(6811), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282911] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8467), 1, - anon_sym_RBRACE, - ACTIONS(9987), 1, - anon_sym_SEMI, - STATE(6650), 1, - sym_attribute, - STATE(6815), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282931] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8240), 1, - anon_sym_SEMI, - ACTIONS(8242), 1, - anon_sym_GT, - STATE(6586), 1, - aux_sym_object_type_repeat1, - STATE(6651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282951] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3532), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9989), 1, - anon_sym_SEMI, - STATE(6652), 1, - sym_attribute, - STATE(6904), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282971] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3924), 1, - anon_sym_RBRACK, - ACTIONS(9991), 1, - anon_sym_SEMI, - STATE(6653), 1, - sym_attribute, - STATE(6819), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [282991] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9993), 1, - anon_sym_SEMI, - ACTIONS(9995), 1, - anon_sym_RBRACE, - STATE(6654), 1, - sym_attribute, - STATE(6742), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283011] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8487), 1, - anon_sym_RBRACE, - ACTIONS(9997), 1, - anon_sym_SEMI, - STATE(6655), 1, - sym_attribute, - STATE(6821), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283031] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(8), 1, - sym_attribute_id, - STATE(6656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [283049] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3930), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(9999), 1, - anon_sym_SEMI, - STATE(6657), 1, - sym_attribute, - STATE(6906), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283069] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4739), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6589), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283089] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10001), 1, - anon_sym_RPAREN, - STATE(6659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283109] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4731), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6660), 1, - sym_attribute, - STATE(6663), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283129] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10003), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283149] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9104), 1, - anon_sym_RBRACK, - STATE(6662), 1, - sym_attribute, - STATE(6680), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283169] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9104), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283189] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10005), 1, - anon_sym_SEMI, - ACTIONS(10007), 1, - anon_sym_RBRACE, - STATE(6608), 1, - aux_sym_record_expression_repeat1, - STATE(6664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283209] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5566), 1, - anon_sym_GT, - ACTIONS(10009), 1, - anon_sym_SEMI, - STATE(6665), 1, - sym_attribute, - STATE(6838), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283229] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8705), 1, - anon_sym_RBRACE, - ACTIONS(10011), 1, - anon_sym_SEMI, - STATE(6666), 1, - sym_attribute, - STATE(6685), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283249] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1703), 1, - anon_sym_RBRACK, - ACTIONS(10013), 1, - anon_sym_SEMI, - STATE(6667), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283269] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1691), 1, - anon_sym_RBRACK, - ACTIONS(10015), 1, - anon_sym_SEMI, - STATE(6668), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283289] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(36), 1, - sym_attribute_id, - STATE(6669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [283307] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10017), 1, - anon_sym_GT_RBRACE, - STATE(6670), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283327] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10019), 1, - sym__identifier, - STATE(6671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283347] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8629), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [283363] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10021), 1, - anon_sym_RPAREN, - STATE(6673), 1, - sym_attribute, - STATE(7627), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283383] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8154), 1, - anon_sym_SEMI, - ACTIONS(8156), 1, - anon_sym_GT, - STATE(6674), 1, - sym_attribute, - STATE(6759), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283403] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10023), 1, - anon_sym_SEMI, - ACTIONS(10025), 1, - anon_sym_RBRACE, - STATE(6605), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(6675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283423] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(34), 1, - sym_attribute_id, - STATE(6676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [283441] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10027), 1, - anon_sym_RPAREN, - STATE(6677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283461] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10029), 1, - anon_sym_RPAREN, - STATE(6678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283481] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7213), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6521), 1, - aux_sym_module_definition_repeat1, - STATE(6679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283501] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9126), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283521] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8687), 1, - anon_sym_RBRACE, - ACTIONS(10031), 1, - anon_sym_SEMI, - STATE(6681), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283541] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7069), 1, - anon_sym_in, - ACTIONS(10033), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6682), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - [283559] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9126), 1, - anon_sym_RBRACK, - STATE(6683), 1, - sym_attribute, - STATE(6690), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283579] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10036), 1, - anon_sym_EQ, - STATE(6684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10038), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [283597] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8677), 1, - anon_sym_RBRACE, - ACTIONS(10040), 1, - anon_sym_SEMI, - STATE(6685), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283617] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10042), 1, - anon_sym_EQ, - STATE(6686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283637] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10044), 3, - anon_sym_mutable, - anon_sym_virtual, - sym__identifier, - [283653] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(15), 1, - sym_attribute_id, - STATE(6688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [283671] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10046), 3, - anon_sym_private, - anon_sym_virtual, - sym__identifier, - [283687] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9138), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283707] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10048), 1, - anon_sym_RPAREN, - STATE(6691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283727] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1671), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10050), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283747] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7), 1, - sym_attribute_id, - STATE(6693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [283765] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10052), 1, - anon_sym_SEMI, - ACTIONS(10054), 1, - anon_sym_GT_RBRACE, - STATE(6694), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283785] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6280), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6695), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283805] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6285), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6696), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283825] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6293), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6697), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283845] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10058), 1, - anon_sym_LBRACK, - STATE(6698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10056), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - [283863] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10054), 1, - anon_sym_GT_RBRACE, - STATE(6699), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283883] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(5386), 1, - anon_sym_DOT, - ACTIONS(10060), 1, - anon_sym_RPAREN, - STATE(6700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283903] = 6, - ACTIONS(161), 1, - anon_sym_DQUOTE, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4807), 1, - aux_sym_external_repeat1, - STATE(4853), 1, - sym_string, - STATE(6701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283923] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2588), 1, - anon_sym_DQUOTE, - STATE(4853), 1, - sym_string, - STATE(4950), 1, - aux_sym_external_repeat1, - STATE(6702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283943] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10062), 3, - anon_sym_RPAREN, - anon_sym_DOT, - sym__identifier, - [283959] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10064), 1, - anon_sym_SEMI, - ACTIONS(10066), 1, - anon_sym_GT_RBRACE, - STATE(6639), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283979] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9163), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [283995] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(31), 1, - sym_attribute_id, - STATE(6706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [284013] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6368), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6707), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284033] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6357), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6708), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284053] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10068), 1, - anon_sym_SEMI, - ACTIONS(10070), 1, - anon_sym_RBRACE, - STATE(6709), 1, - sym_attribute, - STATE(6801), 1, - aux_sym_record_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284073] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6345), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6710), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284093] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10072), 1, - anon_sym_SEMI, - ACTIONS(10074), 1, - anon_sym_RBRACE, - STATE(6647), 1, - aux_sym_record_expression_repeat1, - STATE(6711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284113] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10076), 1, - anon_sym_SEMI, - ACTIONS(10078), 1, - anon_sym_RBRACE, - STATE(6611), 1, - aux_sym_record_pattern_repeat1, - STATE(6712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284133] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(28), 1, - sym_attribute_id, - STATE(6713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [284151] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4237), 1, - sym__type_equation, - STATE(6714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5613), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [284169] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5220), 1, - anon_sym_DOT, - STATE(6715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10080), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [284187] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10082), 1, - anon_sym_LPAREN, - ACTIONS(10084), 1, - anon_sym_LBRACK, - ACTIONS(10086), 1, - anon_sym_LBRACE, - STATE(6716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284207] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6224), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6717), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284227] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6220), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6718), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284247] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10088), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284267] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284287] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACK, - STATE(6721), 1, - sym_attribute, - STATE(6826), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284307] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6211), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6722), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284327] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10092), 1, - anon_sym_SEMI, - ACTIONS(10094), 1, - anon_sym_RBRACE, - STATE(6723), 1, - sym_attribute, - STATE(6740), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284347] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10096), 1, - anon_sym_RPAREN, - STATE(6724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284367] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10098), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284387] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9624), 1, - anon_sym_COLON2, - ACTIONS(10100), 1, - anon_sym_RPAREN, - STATE(6726), 1, - sym_attribute, - STATE(7857), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284407] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10102), 1, - anon_sym_RPAREN, - STATE(6727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10104), 2, - anon_sym__, - sym__capitalized_identifier, - [284425] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10106), 1, - anon_sym_SEMI, - ACTIONS(10108), 1, - anon_sym_GT_RBRACE, - STATE(6728), 1, - sym_attribute, - STATE(6750), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284445] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10110), 1, - anon_sym_RPAREN, - STATE(6729), 1, - sym_attribute, - STATE(7875), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284465] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3600), 1, - anon_sym_RBRACK, - ACTIONS(10112), 1, - anon_sym_SEMI, - STATE(6730), 1, - sym_attribute, - STATE(6811), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284485] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10114), 1, - anon_sym_SEMI, - ACTIONS(10116), 1, - anon_sym_RBRACE, - STATE(6731), 1, - sym_attribute, - STATE(6764), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284505] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [284521] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(27), 1, - sym_attribute_id, - STATE(6733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [284539] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1883), 1, - anon_sym_RBRACK, - ACTIONS(10118), 1, - anon_sym_SEMI, - STATE(6734), 1, - sym_attribute, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284559] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(13), 1, - sym_attribute_id, - STATE(6735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [284577] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8212), 1, - anon_sym_SEMI, - ACTIONS(8214), 1, - anon_sym_GT, - STATE(6736), 1, - sym_attribute, - STATE(6772), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284597] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8521), 1, - anon_sym_RBRACE, - ACTIONS(10120), 1, - anon_sym_SEMI, - STATE(6737), 1, - sym_attribute, - STATE(6815), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284617] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10122), 1, - anon_sym_EQ, - STATE(6738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10124), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [284635] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3570), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10126), 1, - anon_sym_SEMI, - STATE(6739), 1, - sym_attribute, - STATE(6904), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284655] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8722), 1, - anon_sym_RBRACE, - ACTIONS(10128), 1, - anon_sym_SEMI, - STATE(6740), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284675] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3868), 1, - anon_sym_RBRACK, - ACTIONS(10130), 1, - anon_sym_SEMI, - STATE(6741), 1, - sym_attribute, - STATE(6819), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284695] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8483), 1, - anon_sym_RBRACE, - ACTIONS(10132), 1, - anon_sym_SEMI, - STATE(6742), 1, - sym_attribute, - STATE(6821), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284715] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10134), 1, - anon_sym_EQ, - STATE(6743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10136), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [284733] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3870), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10138), 1, - anon_sym_SEMI, - STATE(6744), 1, - sym_attribute, - STATE(6906), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284753] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10140), 1, - anon_sym_EQ, - STATE(6745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284773] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1899), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10142), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284793] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6747), 1, - sym_attribute, - STATE(6888), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8726), 2, - anon_sym__, - sym__capitalized_identifier, - [284811] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4725), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6748), 1, - sym_attribute, - STATE(6771), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284831] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10144), 1, - anon_sym_GT_RBRACE, - STATE(6749), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284851] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10144), 1, - anon_sym_GT_RBRACE, - ACTIONS(10146), 1, - anon_sym_SEMI, - STATE(6750), 1, - sym_attribute, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284871] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10148), 1, - anon_sym_RPAREN, - STATE(6751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284891] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7213), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6682), 1, - aux_sym_module_definition_repeat1, - STATE(6752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284911] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1645), 1, - anon_sym_RBRACK, - ACTIONS(10150), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6753), 2, - sym_attribute, - aux_sym_list_expression_repeat1, - [284929] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10153), 1, - anon_sym_RPAREN, - STATE(6754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284949] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10155), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284969] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9303), 1, - anon_sym_RBRACK, - STATE(6756), 1, - sym_attribute, - STATE(6828), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284989] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6339), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6757), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285009] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10157), 1, - anon_sym_RPAREN, - STATE(6758), 1, - sym_attribute, - STATE(7540), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285029] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5562), 1, - anon_sym_GT, - ACTIONS(10159), 1, - anon_sym_SEMI, - STATE(6759), 1, - sym_attribute, - STATE(6838), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285049] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_RBRACE, - ACTIONS(10161), 1, - anon_sym_SEMI, - STATE(6760), 1, - sym_attribute, - STATE(6841), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285069] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9303), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285089] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4340), 1, - sym_attribute_id, - STATE(6762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10163), 2, - sym__identifier, - sym__capitalized_identifier, - [285107] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3616), 1, - anon_sym_RBRACK, - ACTIONS(10165), 1, - anon_sym_SEMI, - STATE(6763), 1, - sym_attribute, - STATE(6811), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285127] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8459), 1, - anon_sym_RBRACE, - ACTIONS(10167), 1, - anon_sym_SEMI, - STATE(6764), 1, - sym_attribute, - STATE(6815), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285147] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3614), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10169), 1, - anon_sym_SEMI, - STATE(6765), 1, - sym_attribute, - STATE(6904), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285167] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10171), 1, - anon_sym_RPAREN, - STATE(6766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285187] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10173), 1, - anon_sym_RPAREN, - STATE(6767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285207] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6101), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6768), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285227] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10175), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285247] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9321), 1, - anon_sym_RBRACK, - STATE(6770), 1, - sym_attribute, - STATE(6790), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285267] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9321), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285287] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5582), 1, - anon_sym_GT, - ACTIONS(10177), 1, - anon_sym_SEMI, - STATE(6772), 1, - sym_attribute, - STATE(6838), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285307] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6107), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6773), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285327] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8754), 1, - anon_sym_RBRACE, - ACTIONS(10179), 1, - anon_sym_SEMI, - STATE(6774), 1, - sym_attribute, - STATE(6792), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285347] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10181), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285367] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10183), 1, - anon_sym_GT_RBRACE, - STATE(6776), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285387] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6126), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6777), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285407] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10185), 1, - sym__identifier, - STATE(6778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285427] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10187), 1, - anon_sym_RPAREN, - STATE(6779), 1, - sym_attribute, - STATE(7783), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285447] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(4253), 1, - sym_module_parameter, - STATE(6276), 1, - aux_sym_module_binding_repeat1, - STATE(6780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285467] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(24), 1, - sym_attribute_id, - STATE(6781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [285485] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10189), 1, - anon_sym_RPAREN, - STATE(6782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285505] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10191), 1, - anon_sym_GT_RBRACE, - STATE(6783), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285525] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8603), 1, - anon_sym_RBRACE, - ACTIONS(10193), 1, - anon_sym_SEMI, - STATE(6784), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285545] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10195), 1, - anon_sym_SEMI, - ACTIONS(10198), 1, - anon_sym_GT_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6785), 2, - sym_attribute, - aux_sym_object_copy_expression_repeat1, - [285563] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10200), 1, - anon_sym_RPAREN, - STATE(6786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285583] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10202), 1, - anon_sym_RPAREN, - STATE(6787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285603] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [285619] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6438), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [285635] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9349), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285655] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9349), 1, - anon_sym_RBRACK, - STATE(6791), 1, - sym_attribute, - STATE(6800), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285675] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8784), 1, - anon_sym_RBRACE, - ACTIONS(10204), 1, - anon_sym_SEMI, - STATE(6792), 1, - sym_attribute, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285695] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10206), 1, - anon_sym_EQ, - STATE(6793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285715] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(33), 1, - sym_attribute_id, - STATE(6794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [285733] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10208), 1, - sym__identifier, - STATE(6795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285753] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(18), 1, - sym_attribute_id, - STATE(6796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [285771] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10210), 1, - sym__identifier, - STATE(6797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285791] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(11), 1, - sym_attribute_id, - STATE(6798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [285809] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5536), 1, - anon_sym_LPAREN, - STATE(4253), 1, - sym_module_parameter, - STATE(6306), 1, - aux_sym_module_binding_repeat1, - STATE(6799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285829] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9390), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285849] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9376), 1, - anon_sym_RBRACE, - ACTIONS(10212), 1, - anon_sym_SEMI, - STATE(6801), 1, - sym_attribute, - STATE(6856), 1, - aux_sym_record_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285869] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10214), 1, - anon_sym_SEMI, - ACTIONS(10217), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6802), 2, - sym_attribute, - aux_sym_record_expression_repeat1, - [285887] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10219), 1, - anon_sym_GT_RBRACE, - STATE(6803), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285907] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10221), 1, - anon_sym_RPAREN, - STATE(6804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285927] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(4231), 1, - sym__type_equation, - STATE(6805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5613), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [285945] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10223), 1, - anon_sym_RBRACK, - STATE(6806), 1, - sym_attribute, - STATE(6848), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285965] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8655), 1, - anon_sym_RBRACE, - ACTIONS(10225), 1, - anon_sym_SEMI, - STATE(6784), 1, - aux_sym_record_expression_repeat1, - STATE(6807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285985] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10227), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286005] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10229), 1, - anon_sym_RPAREN, - STATE(6809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286025] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10231), 1, - anon_sym_RPAREN, - STATE(6810), 1, - sym_attribute, - STATE(8160), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286045] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8641), 1, - anon_sym_RBRACK, - ACTIONS(10233), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6811), 2, - sym_attribute, - aux_sym_list_pattern_repeat1, - [286063] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10236), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286083] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10238), 1, - anon_sym_RPAREN, - STATE(6813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286103] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10240), 1, - anon_sym_SEMI, - ACTIONS(10242), 1, - anon_sym_GT_RBRACE, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286123] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10244), 1, - anon_sym_SEMI, - ACTIONS(10247), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6815), 2, - sym_attribute, - aux_sym_record_pattern_repeat1, - [286141] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10242), 1, - anon_sym_GT_RBRACE, - STATE(6816), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286161] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10249), 1, - anon_sym_SEMI, - ACTIONS(10251), 1, - anon_sym_RBRACE, - STATE(6817), 1, - sym_attribute, - STATE(6839), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286181] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10253), 1, - anon_sym_SEMI, - ACTIONS(10255), 1, - anon_sym_GT_RBRACE, - STATE(6818), 1, - sym_attribute, - STATE(6844), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286201] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8782), 1, - anon_sym_RBRACK, - ACTIONS(10257), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6819), 2, - sym_attribute, - aux_sym_list_binding_pattern_repeat1, - [286219] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1811), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10260), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286239] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10262), 1, - anon_sym_SEMI, - ACTIONS(10265), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6821), 2, - sym_attribute, - aux_sym_record_binding_pattern_repeat1, - [286257] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8625), 1, - anon_sym_RBRACE, - ACTIONS(10267), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286277] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10269), 1, - anon_sym_EQ, - STATE(6823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286297] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10271), 1, - anon_sym_RPAREN, - STATE(6824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286317] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1809), 1, - anon_sym_RBRACK, - ACTIONS(10273), 1, - anon_sym_SEMI, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - STATE(6825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286337] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10275), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286357] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1839), 1, - anon_sym_RBRACK, - ACTIONS(10277), 1, - anon_sym_SEMI, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - STATE(6827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286377] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9353), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286397] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9353), 1, - anon_sym_RBRACK, - STATE(6829), 1, - sym_attribute, - STATE(6864), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286417] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9362), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [286433] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6244), 1, - anon_sym_DQUOTE, - STATE(4524), 1, - aux_sym_external_repeat1, - STATE(4853), 1, - sym_string, - STATE(6831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286453] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4671), 1, - anon_sym_RBRACK, - ACTIONS(8948), 1, - anon_sym_PIPE, - STATE(6832), 1, - sym_attribute, - STATE(6854), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286473] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3986), 1, - aux_sym_attribute_id_token1, - STATE(6833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3988), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [286491] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6299), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6834), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286511] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - STATE(6632), 1, - sym_field_declaration, - STATE(6835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286531] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8176), 1, - anon_sym_SEMI, - ACTIONS(8178), 1, - anon_sym_GT, - STATE(6836), 1, - sym_attribute, - STATE(6874), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286551] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10279), 1, - anon_sym_EQ, - STATE(6837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286571] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8391), 1, - anon_sym_GT, - ACTIONS(10281), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6838), 2, - sym_attribute, - aux_sym_object_type_repeat1, - [286589] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8768), 1, - anon_sym_RBRACE, - ACTIONS(10284), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286609] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10286), 1, - anon_sym_SEMI, - ACTIONS(10288), 1, - anon_sym_GT_RBRACE, - STATE(6814), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286629] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8770), 1, - anon_sym_RBRACE, - ACTIONS(10290), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286649] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1857), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10292), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286669] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10294), 1, - anon_sym_GT_RBRACE, - STATE(6843), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286689] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10294), 1, - anon_sym_GT_RBRACE, - ACTIONS(10296), 1, - anon_sym_SEMI, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286709] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10298), 1, - anon_sym_SEMI, - ACTIONS(10300), 1, - anon_sym_RBRACE, - STATE(6822), 1, - aux_sym_record_expression_repeat1, - STATE(6845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286729] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10302), 1, - anon_sym_RPAREN, - STATE(6846), 1, - sym_attribute, - STATE(8207), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286749] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4770), 1, - sym__capitalized_identifier, - ACTIONS(10304), 1, - anon_sym_type, - STATE(6622), 1, - sym_module_path, - STATE(6847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286769] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10306), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286789] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10306), 1, - anon_sym_RBRACK, - STATE(6849), 1, - sym_attribute, - STATE(6899), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286809] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10308), 1, - anon_sym_RPAREN, - STATE(6850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286829] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10310), 1, - anon_sym_RPAREN, - STATE(6851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286849] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10312), 1, - anon_sym_RPAREN, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286869] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9311), 1, - anon_sym_RBRACK, - STATE(6853), 1, - sym_attribute, - STATE(6871), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286889] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9311), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286909] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10316), 1, - anon_sym_LBRACK, - STATE(6855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10314), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - [286927] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10318), 1, - anon_sym_SEMI, - ACTIONS(10321), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6856), 2, - sym_attribute, - aux_sym_record_declaration_repeat1, - [286945] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10323), 1, - anon_sym_RPAREN, - STATE(6857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286965] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8736), 1, - anon_sym_RBRACE, - ACTIONS(10325), 1, - anon_sym_SEMI, - STATE(6858), 1, - sym_attribute, - STATE(6873), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286985] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10327), 1, - anon_sym_GT_RBRACE, - STATE(6859), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287005] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10329), 1, - anon_sym_RPAREN, - STATE(6860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287025] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10331), 1, - sym__identifier, - STATE(6861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287045] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10333), 1, - anon_sym_EQ, - STATE(6862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287065] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10335), 1, - anon_sym_RPAREN, - STATE(6863), 1, - sym_attribute, - STATE(8263), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287085] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9291), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287105] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10337), 1, - anon_sym_RPAREN, - STATE(6865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287125] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6679), 1, - sym_module_binding, - STATE(6866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8726), 2, - anon_sym__, - sym__capitalized_identifier, - [287143] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6013), 1, - anon_sym_with, - ACTIONS(6831), 1, - anon_sym_DASH_GT, - ACTIONS(10339), 1, - anon_sym_RPAREN, - STATE(6867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287163] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6228), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6868), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287183] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7152), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6682), 1, - aux_sym_module_definition_repeat1, - STATE(6869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287203] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6870), 1, - sym_attribute, - STATE(7116), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8726), 2, - anon_sym__, - sym__capitalized_identifier, - [287221] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9276), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287241] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9276), 1, - anon_sym_RBRACK, - STATE(6872), 1, - sym_attribute, - STATE(6875), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287261] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8675), 1, - anon_sym_RBRACE, - ACTIONS(10341), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287281] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5528), 1, - anon_sym_GT, - ACTIONS(10343), 1, - anon_sym_SEMI, - STATE(6838), 1, - aux_sym_object_type_repeat1, - STATE(6874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287301] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8948), 1, - anon_sym_PIPE, - ACTIONS(9250), 1, - anon_sym_RBRACK, - STATE(6342), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287321] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8786), 1, - anon_sym_RBRACE, - ACTIONS(10345), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287341] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8958), 1, - sym__identifier, - ACTIONS(8962), 1, - anon_sym_mutable, - STATE(6877), 1, - sym_attribute, - STATE(7092), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287361] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10347), 1, - anon_sym_RPAREN, - STATE(6878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287381] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10349), 1, - anon_sym_SEMI, - ACTIONS(10351), 1, - anon_sym_RBRACE, - STATE(6879), 1, - sym_attribute, - STATE(6882), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287401] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10353), 1, - anon_sym_SEMI, - ACTIONS(10355), 1, - anon_sym_GT_RBRACE, - STATE(6880), 1, - sym_attribute, - STATE(6885), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287421] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1663), 1, - anon_sym_RBRACK, - ACTIONS(10357), 1, - anon_sym_SEMI, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - STATE(6881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287441] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8647), 1, - anon_sym_RBRACE, - ACTIONS(10359), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287461] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1799), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10361), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287481] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10363), 1, - anon_sym_GT_RBRACE, - STATE(6884), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287501] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10363), 1, - anon_sym_GT_RBRACE, - ACTIONS(10365), 1, - anon_sym_SEMI, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287521] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10367), 1, - anon_sym_RPAREN, - STATE(6886), 1, - sym_attribute, - STATE(8447), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287541] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(6244), 1, - anon_sym_DQUOTE, - STATE(4525), 1, - aux_sym_external_repeat1, - STATE(4853), 1, - sym_string, - STATE(6887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287561] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7152), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6752), 1, - aux_sym_module_definition_repeat1, - STATE(6888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287581] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10369), 1, - anon_sym_RPAREN, - STATE(6889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287601] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8683), 1, - anon_sym_RBRACE, - ACTIONS(10371), 1, - anon_sym_SEMI, - STATE(6890), 1, - sym_attribute, - STATE(6897), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287621] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10373), 1, - anon_sym_GT_RBRACE, - STATE(6891), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287641] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10375), 1, - sym__identifier, - STATE(6892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287661] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9446), 1, - sym_indexing_operator, - ACTIONS(10377), 1, - sym__identifier, - STATE(6893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287681] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - ACTIONS(10379), 1, - anon_sym_RPAREN, - STATE(6894), 1, - sym_attribute, - STATE(8500), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287701] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10381), 1, - anon_sym_RPAREN, - STATE(6895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287721] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10383), 1, - anon_sym_GT_RBRACE, - STATE(6896), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287741] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8699), 1, - anon_sym_RBRACE, - ACTIONS(10385), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287761] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8780), 1, - anon_sym_RBRACE, - ACTIONS(10387), 1, - anon_sym_SEMI, - STATE(6876), 1, - aux_sym_record_expression_repeat1, - STATE(6898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287781] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9458), 1, - anon_sym_COMMA, - ACTIONS(10389), 1, - anon_sym_RBRACK, - STATE(6237), 1, - aux_sym__type_params_repeat1, - STATE(6899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287801] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8627), 1, - anon_sym_COMMA, - ACTIONS(10391), 1, - anon_sym_RBRACK, - STATE(6343), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(6900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287821] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1699), 1, - anon_sym_RBRACK, - ACTIONS(10393), 1, - anon_sym_SEMI, - STATE(6753), 1, - aux_sym_list_expression_repeat1, - STATE(6901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287841] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10395), 1, - anon_sym_RPAREN, - STATE(6902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287861] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10397), 1, - anon_sym_SEMI, - ACTIONS(10399), 1, - anon_sym_GT_RBRACE, - STATE(6903), 1, - sym_attribute, - STATE(6907), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287881] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8641), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10401), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6904), 2, - sym_attribute, - aux_sym_list_pattern_repeat1, - [287899] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10404), 1, - anon_sym_EQ, - STATE(6905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287919] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8782), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10406), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6906), 2, - sym_attribute, - aux_sym_list_binding_pattern_repeat1, - [287937] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10409), 1, - anon_sym_SEMI, - ACTIONS(10411), 1, - anon_sym_GT_RBRACE, - STATE(6785), 1, - aux_sym_object_copy_expression_repeat1, - STATE(6907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287957] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10413), 1, - anon_sym_EQ, - STATE(6908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287977] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - ACTIONS(10411), 1, - anon_sym_GT_RBRACE, - STATE(6909), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287997] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10415), 1, - anon_sym_EQ, - STATE(6910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288017] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10417), 1, - anon_sym_SEMI, - ACTIONS(10419), 1, - anon_sym_RBRACE, - STATE(6911), 1, - sym_attribute, - STATE(6917), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288037] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(3367), 1, - sym_attribute_id, - STATE(6912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9456), 2, - sym__identifier, - sym__capitalized_identifier, - [288055] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1697), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10421), 1, - anon_sym_SEMI, - STATE(6553), 1, - aux_sym_list_expression_repeat1, - STATE(6913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288075] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6223), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6914), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288095] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3564), 1, - aux_sym_tag_token1, - STATE(6100), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(6915), 1, - sym_attribute, - STATE(7130), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288115] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7166), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - STATE(6869), 1, - aux_sym_module_definition_repeat1, - STATE(6916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288135] = 6, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8766), 1, - anon_sym_RBRACE, - ACTIONS(10423), 1, - anon_sym_SEMI, - STATE(6802), 1, - aux_sym_record_expression_repeat1, - STATE(6917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288155] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10425), 1, - anon_sym_then, - STATE(3458), 1, - sym_then_clause, - STATE(6918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288172] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10427), 1, - anon_sym_COLON_GT, - ACTIONS(10429), 1, - anon_sym_RPAREN, - STATE(6919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288189] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10431), 1, - anon_sym_then, - STATE(2559), 1, - sym_then_clause, - STATE(6920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288206] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10433), 1, - anon_sym_do, - STATE(3608), 1, - sym_do_clause, - STATE(6921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288223] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10435), 2, - anon_sym__, - sym__capitalized_identifier, - [288238] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10437), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [288253] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10439), 1, - sym__identifier, - ACTIONS(10441), 1, - anon_sym_LPAREN, - STATE(6924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288270] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10413), 1, - anon_sym_EQ, - ACTIONS(10443), 1, - anon_sym_COLON_GT, - STATE(6925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288287] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10445), 1, - sym__identifier, - STATE(6926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288304] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10447), 1, - anon_sym_DASH_GT, - ACTIONS(10449), 1, - anon_sym_STAR, - STATE(6927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288321] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10451), 1, - anon_sym_COLON_GT, - ACTIONS(10453), 1, - anon_sym_RPAREN, - STATE(6928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288338] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10455), 1, - sym__identifier, - STATE(6929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288355] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(6930), 1, - sym_attribute, - STATE(8107), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288372] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10457), 1, - sym__capitalized_identifier, - STATE(5535), 1, - sym_extended_module_path, - STATE(6931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288389] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10459), 1, - anon_sym_COLON_GT, - ACTIONS(10461), 1, - anon_sym_RPAREN, - STATE(6932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288406] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10463), 1, - anon_sym_RPAREN, - ACTIONS(10465), 1, - anon_sym_LT_DASH, - STATE(6933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288423] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5407), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288438] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10467), 1, - anon_sym_RPAREN, - ACTIONS(10469), 1, - anon_sym_LT_DASH, - STATE(6935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288455] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10471), 1, - sym__identifier, - ACTIONS(10473), 1, - anon_sym_LPAREN, - STATE(6936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288472] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6017), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288487] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10475), 1, - sym__identifier, - ACTIONS(10477), 1, - anon_sym_LPAREN, - STATE(6938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288504] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10479), 1, - sym__identifier, - ACTIONS(10481), 1, - sym__capitalized_identifier, - STATE(6939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288521] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10483), 1, - anon_sym_COLON_GT, - ACTIONS(10485), 1, - anon_sym_RPAREN, - STATE(6940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288538] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10487), 2, - sym__identifier, - sym__capitalized_identifier, - [288553] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10489), 1, - anon_sym_RPAREN, - ACTIONS(10491), 1, - anon_sym_LT_DASH, - STATE(6942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288570] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4699), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(6943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288587] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10493), 2, - sym__identifier, - sym__capitalized_identifier, - [288602] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(6945), 1, - sym_attribute, - STATE(8095), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288619] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4983), 1, - aux_sym_type_variable_token1, - STATE(5445), 1, - sym_type_variable, - STATE(6946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288636] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10495), 1, - sym__identifier, - ACTIONS(10497), 1, - anon_sym_LBRACK, - STATE(6947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288653] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(6948), 1, - sym_attribute, - STATE(8070), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288670] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10499), 2, - sym__identifier, - sym__capitalized_identifier, - [288685] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10501), 2, - sym__identifier, - sym__capitalized_identifier, - [288700] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10503), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10505), 1, - sym__left_quoted_string_delimiter, - STATE(6951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288717] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10507), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10509), 1, - sym__left_quoted_string_delimiter, - STATE(6952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288734] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10511), 1, - sym__identifier, - STATE(6953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288751] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10513), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10515), 1, - sym__left_quoted_string_delimiter, - STATE(6954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288768] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10517), 2, - sym__identifier, - sym__capitalized_identifier, - [288783] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10519), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10521), 1, - sym__left_quoted_string_delimiter, - STATE(6956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288800] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10523), 2, - sym__identifier, - sym__capitalized_identifier, - [288815] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10525), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10527), 1, - sym__left_quoted_string_delimiter, - STATE(6958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288832] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10529), 1, - anon_sym_then, - STATE(3927), 1, - sym_then_clause, - STATE(6959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288849] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10531), 1, - anon_sym_RPAREN, - ACTIONS(10533), 1, - anon_sym_LT_DASH, - STATE(6960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288866] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10535), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10537), 1, - sym__left_quoted_string_delimiter, - STATE(6961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288883] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10539), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10541), 1, - sym__left_quoted_string_delimiter, - STATE(6962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288900] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10543), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10545), 1, - sym__left_quoted_string_delimiter, - STATE(6963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288917] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10547), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10549), 1, - sym__left_quoted_string_delimiter, - STATE(6964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10551), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10553), 1, - sym__left_quoted_string_delimiter, - STATE(6965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288951] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10555), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10557), 1, - sym__left_quoted_string_delimiter, - STATE(6966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288968] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10559), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10561), 1, - sym__left_quoted_string_delimiter, - STATE(6967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288985] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10563), 2, - sym__identifier, - sym__capitalized_identifier, - [289000] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10565), 1, - anon_sym_RBRACK, - ACTIONS(10567), 1, - anon_sym_SEMI, - STATE(6969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289017] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(6970), 1, - sym_attribute, - STATE(8288), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289034] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10569), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10571), 1, - sym__left_quoted_string_delimiter, - STATE(6971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289051] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10433), 1, - anon_sym_do, - STATE(3672), 1, - sym_do_clause, - STATE(6972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289068] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10573), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10575), 1, - sym__left_quoted_string_delimiter, - STATE(6973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289085] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10577), 1, - anon_sym_then, - STATE(3245), 1, - sym_then_clause, - STATE(6974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289102] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10579), 1, - anon_sym_RPAREN, - ACTIONS(10581), 1, - anon_sym_LT_DASH, - STATE(6975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289119] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10583), 1, - anon_sym_COLON_GT, - ACTIONS(10585), 1, - anon_sym_RPAREN, - STATE(6976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289136] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10587), 1, - anon_sym_do, - STATE(2585), 1, - sym_do_clause, - STATE(6977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289153] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10589), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10591), 1, - sym__left_quoted_string_delimiter, - STATE(6978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289170] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10593), 1, - anon_sym_EQ, - ACTIONS(10595), 1, - anon_sym_RPAREN, - STATE(6979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289187] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10597), 1, - sym__identifier, - STATE(6980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289204] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10599), 2, - sym__identifier, - sym__capitalized_identifier, - [289219] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10601), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10603), 1, - sym__left_quoted_string_delimiter, - STATE(6982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289236] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(6983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10605), 2, - sym__identifier, - sym__capitalized_identifier, - [289251] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10607), 1, - anon_sym_EQ, - ACTIONS(10609), 1, - anon_sym_RPAREN, - STATE(6984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289268] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10611), 1, - anon_sym_do, - STATE(2667), 1, - sym_do_clause, - STATE(6985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289285] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10613), 1, - anon_sym_then, - STATE(4067), 1, - sym_then_clause, - STATE(6986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289302] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(10615), 1, - anon_sym_DOT, - STATE(6987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289319] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10617), 1, - sym__identifier, - STATE(6988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289336] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10619), 1, - anon_sym_RPAREN, - ACTIONS(10621), 1, - anon_sym_COLON_COLON, - STATE(6989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289353] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10623), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10625), 1, - sym__left_quoted_string_delimiter, - STATE(6990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289370] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10627), 1, - sym__identifier, - STATE(6991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289387] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7438), 1, - sym__capitalized_identifier, - ACTIONS(10629), 1, - anon_sym_LPAREN, - STATE(6992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289404] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10631), 1, - sym__identifier, - STATE(6993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289421] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10633), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10635), 1, - sym__left_quoted_string_delimiter, - STATE(6994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289438] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10637), 1, - sym__identifier, - STATE(6995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289455] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10639), 1, - anon_sym_RPAREN, - ACTIONS(10641), 1, - anon_sym_LT_DASH, - STATE(6996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289472] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10565), 1, - anon_sym_RBRACE, - ACTIONS(10643), 1, - anon_sym_SEMI, - STATE(6997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289489] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10645), 1, - anon_sym_RPAREN, - ACTIONS(10647), 1, - anon_sym_LT_DASH, - STATE(6998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289506] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10649), 1, - sym__identifier, - STATE(6999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289523] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10651), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10653), 1, - sym__left_quoted_string_delimiter, - STATE(7000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289540] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10565), 1, - anon_sym_RPAREN, - ACTIONS(10655), 1, - anon_sym_SEMI, - STATE(7001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289557] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(10657), 1, - anon_sym_DOT, - STATE(7002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289574] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10659), 1, - sym__identifier, - ACTIONS(10661), 1, - anon_sym_LBRACK, - STATE(7003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289591] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10663), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10665), 1, - sym__left_quoted_string_delimiter, - STATE(7004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289608] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10667), 1, - anon_sym_RPAREN, - ACTIONS(10669), 1, - anon_sym_LT_DASH, - STATE(7005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289625] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10671), 1, - anon_sym_COLON_GT, - ACTIONS(10673), 1, - anon_sym_RPAREN, - STATE(7006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289642] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(5012), 1, - sym__polymorphic_typed, - STATE(7007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289659] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10675), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10677), 1, - sym__left_quoted_string_delimiter, - STATE(7008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289676] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10679), 1, - sym__identifier, - ACTIONS(10681), 1, - anon_sym_LPAREN, - STATE(7009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289693] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10683), 1, - anon_sym_COLON_GT, - ACTIONS(10685), 1, - anon_sym_RPAREN, - STATE(7010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289710] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10687), 2, - sym__identifier, - sym__capitalized_identifier, - [289725] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10689), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10691), 1, - sym__left_quoted_string_delimiter, - STATE(7012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289742] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10693), 1, - anon_sym_RPAREN, - ACTIONS(10695), 1, - anon_sym_LT_DASH, - STATE(7013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289759] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10697), 2, - sym__identifier, - sym__capitalized_identifier, - [289774] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10699), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10701), 1, - sym__left_quoted_string_delimiter, - STATE(7015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289791] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10587), 1, - anon_sym_do, - STATE(2525), 1, - sym_do_clause, - STATE(7016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289808] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5973), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [289823] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10703), 1, - anon_sym_then, - STATE(4038), 1, - sym_then_clause, - STATE(7018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289840] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10705), 1, - sym__identifier, - STATE(7019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289857] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10707), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10709), 1, - sym__left_quoted_string_delimiter, - STATE(7020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289874] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4653), 1, - anon_sym_RPAREN, - ACTIONS(4865), 1, - anon_sym_COLON_COLON, - STATE(7021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289891] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10711), 2, - anon_sym_to, - anon_sym_downto, - [289906] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10713), 2, - anon_sym_to, - anon_sym_downto, - [289921] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(7024), 1, - sym_attribute, - STATE(8125), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289938] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10715), 2, - sym__identifier, - sym__capitalized_identifier, - [289953] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10717), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10719), 1, - sym__left_quoted_string_delimiter, - STATE(7026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289970] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10721), 1, - anon_sym_RPAREN, - ACTIONS(10723), 1, - anon_sym_LT_DASH, - STATE(7027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289987] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10725), 1, - anon_sym_RPAREN, - ACTIONS(10727), 1, - anon_sym_LT_DASH, - STATE(7028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290004] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10611), 1, - anon_sym_do, - STATE(2666), 1, - sym_do_clause, - STATE(7029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290021] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10729), 1, - anon_sym_RPAREN, - ACTIONS(10731), 1, - anon_sym_COLON_COLON, - STATE(7030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290038] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10733), 1, - anon_sym_DASH_GT, - STATE(7031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290055] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10735), 2, - anon_sym_to, - anon_sym_downto, - [290070] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10737), 1, - sym__identifier, - STATE(7033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290087] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10739), 2, - anon_sym_to, - anon_sym_downto, - [290102] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10741), 2, - sym__identifier, - sym__capitalized_identifier, - [290117] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10743), 2, - sym__identifier, - sym__capitalized_identifier, - [290132] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10745), 1, - sym__identifier, - STATE(7037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290149] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10747), 1, - anon_sym_RPAREN, - ACTIONS(10749), 1, - anon_sym_LT_DASH, - STATE(7038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290166] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - STATE(6580), 1, - sym_extended_module_path, - STATE(7039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290183] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10751), 1, - sym__identifier, - STATE(7040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290200] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10753), 2, - sym__identifier, - sym__capitalized_identifier, - [290215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10755), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10757), 1, - sym__left_quoted_string_delimiter, - STATE(7042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290232] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10759), 2, - sym__identifier, - sym__capitalized_identifier, - [290247] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4667), 1, - anon_sym_RPAREN, - ACTIONS(4839), 1, - anon_sym_COLON_COLON, - STATE(7044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290264] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10761), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10763), 1, - sym__left_quoted_string_delimiter, - STATE(7045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290281] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10765), 1, - anon_sym_then, - STATE(2644), 1, - sym_then_clause, - STATE(7046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290298] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10767), 1, - anon_sym_then, - STATE(4161), 1, - sym_then_clause, - STATE(7047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290315] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10769), 1, - anon_sym_EQ, - ACTIONS(10771), 1, - anon_sym_RPAREN, - STATE(7048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290332] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10773), 1, - sym__identifier, - ACTIONS(10775), 1, - sym__capitalized_identifier, - STATE(7049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290349] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10777), 1, - sym__identifier, - ACTIONS(10779), 1, - anon_sym_LBRACK, - STATE(7050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290366] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(10781), 1, - anon_sym_DOT, - STATE(7051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290383] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10783), 2, - sym__identifier, - sym__capitalized_identifier, - [290398] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10785), 1, - sym__identifier, - ACTIONS(10787), 1, - anon_sym_LPAREN, - STATE(7053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290415] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10789), 1, - anon_sym_SEMI, - ACTIONS(10791), 1, - anon_sym_RBRACE, - STATE(7054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290432] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10793), 1, - anon_sym_DASH_GT, - STATE(7055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290449] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8415), 1, - anon_sym_RBRACE, - ACTIONS(10795), 1, - anon_sym_SEMI, - STATE(7056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290466] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10797), 1, - anon_sym_SEMI, - ACTIONS(10799), 1, - anon_sym_RBRACE, - STATE(7057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290483] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8317), 1, - anon_sym_RBRACE, - ACTIONS(10801), 1, - anon_sym_SEMI, - STATE(7058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290500] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3804), 1, - anon_sym_COLON_GT, - ACTIONS(3806), 1, - anon_sym_EQ, - STATE(7059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290517] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10803), 1, - anon_sym_RPAREN, - ACTIONS(10805), 1, - anon_sym_LT_DASH, - STATE(7060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290534] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(4964), 1, - sym__polymorphic_typed, - STATE(7061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290551] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10807), 1, - anon_sym_COLON_GT, - ACTIONS(10809), 1, - anon_sym_RPAREN, - STATE(7062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290568] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10811), 1, - anon_sym_SEMI, - ACTIONS(10813), 1, - anon_sym_RBRACE, - STATE(7063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290585] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5319), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [290600] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10815), 1, - anon_sym_EQ, - ACTIONS(10817), 1, - anon_sym_RPAREN, - STATE(7065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290617] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10819), 1, - anon_sym_RPAREN, - ACTIONS(10821), 1, - anon_sym_LT_DASH, - STATE(7066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290634] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10823), 1, - anon_sym_DASH_GT, - STATE(7067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290651] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10825), 1, - anon_sym_SEMI, - ACTIONS(10827), 1, - anon_sym_RBRACE, - STATE(7068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290668] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10767), 1, - anon_sym_then, - STATE(4116), 1, - sym_then_clause, - STATE(7069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290685] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(5488), 1, - sym__polymorphic_typed, - STATE(7070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290702] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10829), 1, - sym__identifier, - STATE(7071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290719] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10831), 1, - anon_sym_then, - STATE(2680), 1, - sym_then_clause, - STATE(7072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290736] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(5486), 1, - sym__typed, - STATE(7073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290753] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10611), 1, - anon_sym_do, - STATE(2658), 1, - sym_do_clause, - STATE(7074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290770] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10833), 1, - anon_sym_DASH_GT, - STATE(7075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290787] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10835), 1, - anon_sym_SEMI, - ACTIONS(10837), 1, - anon_sym_RBRACE, - STATE(7076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290804] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(10839), 1, - anon_sym_DASH_GT, - STATE(7077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290821] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10425), 1, - anon_sym_then, - STATE(3399), 1, - sym_then_clause, - STATE(7078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290838] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10841), 2, - anon_sym_to, - anon_sym_downto, - [290853] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10843), 2, - sym__identifier, - sym__capitalized_identifier, - [290868] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10845), 1, - anon_sym_SEMI, - ACTIONS(10847), 1, - anon_sym_RBRACE, - STATE(7081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290885] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10849), 1, - sym__identifier, - ACTIONS(10851), 1, - anon_sym_LPAREN, - STATE(7082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290902] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10433), 1, - anon_sym_do, - STATE(3750), 1, - sym_do_clause, - STATE(7083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290919] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10853), 2, - anon_sym_to, - anon_sym_downto, - [290934] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(10855), 1, - anon_sym_DOT, - STATE(7085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290951] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10857), 1, - anon_sym_RPAREN, - ACTIONS(10859), 1, - anon_sym_LT_DASH, - STATE(7086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290968] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10861), 1, - anon_sym_RPAREN, - ACTIONS(10863), 1, - anon_sym_LT_DASH, - STATE(7087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290985] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10865), 1, - sym__identifier, - STATE(7088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291002] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - sym__identifier, - STATE(6235), 1, - aux_sym__abstract_type_repeat1, - STATE(7089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291019] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10867), 1, - anon_sym_open, - STATE(7090), 1, - sym_attribute, - STATE(7940), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291036] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10869), 1, - sym__identifier, - STATE(7091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291053] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10321), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [291068] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10871), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [291083] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10873), 1, - anon_sym_RPAREN, - ACTIONS(10875), 1, - anon_sym_LT_DASH, - STATE(7094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291100] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10877), 1, - anon_sym_RPAREN, - ACTIONS(10879), 1, - anon_sym_LT_DASH, - STATE(7095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291117] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10881), 2, - sym__identifier, - sym__capitalized_identifier, - [291132] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10433), 1, - anon_sym_do, - STATE(3760), 1, - sym_do_clause, - STATE(7097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291149] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - STATE(6700), 1, - sym_extended_module_path, - STATE(7098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291166] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10883), 1, - anon_sym_RPAREN, - ACTIONS(10885), 1, - anon_sym_LT_DASH, - STATE(7099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291183] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8273), 1, - anon_sym_RBRACE, - ACTIONS(10887), 1, - anon_sym_SEMI, - STATE(7100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291200] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8277), 1, - anon_sym_RBRACE, - ACTIONS(10889), 1, - anon_sym_SEMI, - STATE(7101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291217] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10891), 1, - anon_sym_then, - STATE(3881), 1, - sym_then_clause, - STATE(7102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291234] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10893), 1, - anon_sym_EQ, - ACTIONS(10895), 1, - anon_sym_RPAREN, - STATE(7103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291251] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - sym__identifier, - STATE(7104), 1, - sym_attribute, - STATE(7264), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291268] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10897), 2, - anon_sym_to, - anon_sym_downto, - [291283] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10899), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [291298] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10901), 2, - sym__identifier, - sym__capitalized_identifier, - [291313] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10903), 1, - aux_sym_quoted_extension_token1, - ACTIONS(10905), 1, - sym__left_quoted_string_delimiter, - STATE(7108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291330] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10907), 2, - sym__identifier, - sym__capitalized_identifier, - [291345] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(7110), 1, - sym_attribute, - STATE(7988), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291362] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - STATE(7111), 1, - sym_attribute, - STATE(7470), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291379] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10909), 1, - anon_sym_RPAREN, - ACTIONS(10911), 1, - anon_sym_LT_DASH, - STATE(7112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291396] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10913), 1, - anon_sym_RPAREN, - ACTIONS(10915), 1, - anon_sym_COLON_COLON, - STATE(7113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291413] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10917), 1, - anon_sym_then, - STATE(3936), 1, - sym_then_clause, - STATE(7114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291430] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(7115), 1, - sym_attribute, - STATE(7673), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291447] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7069), 2, - anon_sym_and, - anon_sym_in, - [291462] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10919), 1, - anon_sym_RPAREN, - ACTIONS(10921), 1, - anon_sym_LT_DASH, - STATE(7117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291479] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7376), 1, - anon_sym_COLON2, - STATE(7118), 1, - sym_attribute, - STATE(7876), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291496] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10923), 1, - sym__identifier, - STATE(7119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291513] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10925), 1, - sym__identifier, - STATE(7120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291530] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10703), 1, - anon_sym_then, - STATE(4057), 1, - sym_then_clause, - STATE(7121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291547] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10927), 2, - sym__identifier, - sym__capitalized_identifier, - [291562] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10929), 1, - sym__identifier, - STATE(7123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291579] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10431), 1, - anon_sym_then, - STATE(2528), 1, - sym_then_clause, - STATE(7124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291596] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10931), 2, - sym__identifier, - sym__capitalized_identifier, - [291611] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8391), 2, - anon_sym_SEMI, - anon_sym_GT, - [291626] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10933), 1, - anon_sym_SEMI, - ACTIONS(10935), 1, - anon_sym_RBRACE, - STATE(7127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291643] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10935), 1, - anon_sym_RBRACK, - ACTIONS(10937), 1, - anon_sym_SEMI, - STATE(7128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291660] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10935), 1, - anon_sym_RPAREN, - ACTIONS(10939), 1, - anon_sym_SEMI, - STATE(7129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291677] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10941), 2, - anon_sym_RBRACK, - aux_sym_tag_token1, - [291692] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10943), 2, - sym__identifier, - sym__capitalized_identifier, - [291707] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10945), 2, - sym__identifier, - sym__capitalized_identifier, - [291722] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10947), 1, - sym__identifier, - ACTIONS(10949), 1, - anon_sym_LPAREN, - STATE(7133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291739] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10951), 1, - anon_sym_SEMI, - ACTIONS(10953), 1, - anon_sym_RBRACE, - STATE(7134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291756] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10953), 1, - anon_sym_RBRACK, - ACTIONS(10955), 1, - anon_sym_SEMI, - STATE(7135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291773] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10953), 1, - anon_sym_RPAREN, - ACTIONS(10957), 1, - anon_sym_SEMI, - STATE(7136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291790] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(10959), 1, - sym__identifier, - STATE(7137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291807] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10961), 1, - anon_sym_SEMI, - ACTIONS(10963), 1, - anon_sym_RBRACE, - STATE(7138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291824] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4671), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(7139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291841] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10613), 1, - anon_sym_then, - STATE(4029), 1, - sym_then_clause, - STATE(7140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291858] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10963), 1, - anon_sym_RBRACK, - ACTIONS(10965), 1, - anon_sym_SEMI, - STATE(7141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291875] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10963), 1, - anon_sym_RPAREN, - ACTIONS(10967), 1, - anon_sym_SEMI, - STATE(7142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291892] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(10969), 1, - sym__identifier, - STATE(7143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291909] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10971), 1, - anon_sym_COLON_GT, - ACTIONS(10973), 1, - anon_sym_RPAREN, - STATE(7144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291926] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10975), 1, - anon_sym_SEMI, - ACTIONS(10977), 1, - anon_sym_RBRACE, - STATE(7145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291943] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10977), 1, - anon_sym_RBRACK, - ACTIONS(10979), 1, - anon_sym_SEMI, - STATE(7146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291960] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10977), 1, - anon_sym_RPAREN, - ACTIONS(10981), 1, - anon_sym_SEMI, - STATE(7147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291977] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10983), 1, - anon_sym_SEMI, - ACTIONS(10985), 1, - anon_sym_RBRACE, - STATE(7148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291994] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(10987), 1, - anon_sym_DASH_GT, - STATE(7149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292011] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10989), 1, - anon_sym_COLON_GT, - ACTIONS(10991), 1, - anon_sym_RPAREN, - STATE(7150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292028] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10985), 1, - anon_sym_RBRACK, - ACTIONS(10993), 1, - anon_sym_SEMI, - STATE(7151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292045] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10985), 1, - anon_sym_RPAREN, - ACTIONS(10995), 1, - anon_sym_SEMI, - STATE(7152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292062] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10997), 1, - sym__identifier, - ACTIONS(10999), 1, - anon_sym_LPAREN, - STATE(7153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292079] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11001), 1, - anon_sym_RPAREN, - ACTIONS(11003), 1, - anon_sym_LT_DASH, - STATE(7154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292096] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11005), 1, - anon_sym_SEMI, - ACTIONS(11007), 1, - anon_sym_RBRACE, - STATE(7155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292113] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11007), 1, - anon_sym_RBRACK, - ACTIONS(11009), 1, - anon_sym_SEMI, - STATE(7156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292130] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11007), 1, - anon_sym_RPAREN, - ACTIONS(11011), 1, - anon_sym_SEMI, - STATE(7157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292147] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10265), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [292162] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8329), 1, - anon_sym_RBRACE, - ACTIONS(11013), 1, - anon_sym_SEMI, - STATE(7159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292179] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11015), 1, - sym__identifier, - STATE(7160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292196] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11017), 1, - anon_sym_SEMI, - ACTIONS(11019), 1, - anon_sym_RBRACE, - STATE(7161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292213] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11019), 1, - anon_sym_RBRACK, - ACTIONS(11021), 1, - anon_sym_SEMI, - STATE(7162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292230] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11019), 1, - anon_sym_RPAREN, - ACTIONS(11023), 1, - anon_sym_SEMI, - STATE(7163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292247] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11025), 1, - anon_sym_COLON_GT, - ACTIONS(11027), 1, - anon_sym_RPAREN, - STATE(7164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292264] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10577), 1, - anon_sym_then, - STATE(3238), 1, - sym_then_clause, - STATE(7165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292281] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(11029), 1, - sym__identifier, - STATE(7166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292298] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11031), 1, - anon_sym_SEMI, - ACTIONS(11033), 1, - anon_sym_RBRACE, - STATE(7167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292315] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11033), 1, - anon_sym_RBRACK, - ACTIONS(11035), 1, - anon_sym_SEMI, - STATE(7168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292332] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10247), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [292347] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8295), 1, - anon_sym_RBRACE, - ACTIONS(11037), 1, - anon_sym_SEMI, - STATE(7170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292364] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11033), 1, - anon_sym_RPAREN, - ACTIONS(11039), 1, - anon_sym_SEMI, - STATE(7171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292381] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(11041), 1, - anon_sym_DASH_GT, - STATE(7172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292398] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11043), 1, - anon_sym_RPAREN, - ACTIONS(11045), 1, - anon_sym_LT_DASH, - STATE(7173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292415] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11047), 1, - anon_sym_then, - STATE(3251), 1, - sym_then_clause, - STATE(7174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292432] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10917), 1, - anon_sym_then, - STATE(3933), 1, - sym_then_clause, - STATE(7175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292449] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3218), 1, - anon_sym_COLON2, - STATE(5481), 1, - sym__polymorphic_typed, - STATE(7176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292466] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11049), 1, - anon_sym_do, - STATE(2655), 1, - sym_do_clause, - STATE(7177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292483] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11051), 1, - anon_sym_COLON_GT, - ACTIONS(11053), 1, - anon_sym_RPAREN, - STATE(7178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292500] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(5479), 1, - sym__typed, - STATE(7179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292517] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11055), 1, - anon_sym_SEMI, - ACTIONS(11057), 1, - anon_sym_RBRACE, - STATE(7180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292534] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11057), 1, - anon_sym_RBRACK, - ACTIONS(11059), 1, - anon_sym_SEMI, - STATE(7181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292551] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11057), 1, - anon_sym_RPAREN, - ACTIONS(11061), 1, - anon_sym_SEMI, - STATE(7182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292568] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11063), 1, - sym__identifier, - STATE(7183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292585] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11065), 2, - sym__identifier, - sym__capitalized_identifier, - [292600] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11067), 1, - sym__identifier, - ACTIONS(11069), 1, - anon_sym_LPAREN, - STATE(7185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292617] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7516), 1, - sym__capitalized_identifier, - ACTIONS(11071), 1, - anon_sym_LPAREN, - STATE(7186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292634] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9905), 1, - anon_sym_EQ, - ACTIONS(11073), 1, - anon_sym_COLON_GT, - STATE(7187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292651] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11075), 1, - anon_sym_EQ, - ACTIONS(11077), 1, - anon_sym_RPAREN, - STATE(7188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292668] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11079), 1, - anon_sym_SEMI, - ACTIONS(11081), 1, - anon_sym_RBRACE, - STATE(7189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292685] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11081), 1, - anon_sym_RBRACK, - ACTIONS(11083), 1, - anon_sym_SEMI, - STATE(7190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292702] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11081), 1, - anon_sym_RPAREN, - ACTIONS(11085), 1, - anon_sym_SEMI, - STATE(7191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292719] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11087), 1, - anon_sym_COLON_GT, - ACTIONS(11089), 1, - anon_sym_RPAREN, - STATE(7192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292736] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11091), 2, - sym__identifier, - sym__capitalized_identifier, - [292751] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4788), 1, - anon_sym_RPAREN, - ACTIONS(11093), 1, - aux_sym_number_token1, - STATE(7194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292768] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4731), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(7195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292785] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11095), 1, - anon_sym_RPAREN, - ACTIONS(11097), 1, - anon_sym_LT_DASH, - STATE(7196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292802] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10867), 1, - anon_sym_open, - STATE(7197), 1, - sym_attribute, - STATE(7408), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292819] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3400), 1, - sym__capitalized_identifier, - STATE(4054), 1, - sym_extended_module_path, - STATE(7198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292836] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11099), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [292851] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11101), 1, - anon_sym_SEMI, - ACTIONS(11103), 1, - anon_sym_RBRACE, - STATE(7200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292868] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11103), 1, - anon_sym_RBRACK, - ACTIONS(11105), 1, - anon_sym_SEMI, - STATE(7201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292885] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11103), 1, - anon_sym_RPAREN, - ACTIONS(11107), 1, - anon_sym_SEMI, - STATE(7202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292902] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4871), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [292917] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(11109), 1, - anon_sym_DASH_GT, - STATE(7204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292934] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10765), 1, - anon_sym_then, - STATE(2615), 1, - sym_then_clause, - STATE(7205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292951] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11111), 1, - anon_sym_DOT, - STATE(7206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292968] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11113), 1, - aux_sym_type_variable_token1, - STATE(5445), 1, - sym_type_variable, - STATE(7207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292985] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(11115), 1, - sym__identifier, - STATE(7208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293002] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - ACTIONS(11117), 1, - anon_sym_DASH_GT, - STATE(7209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293019] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10891), 1, - anon_sym_then, - STATE(3869), 1, - sym_then_clause, - STATE(7210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293036] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11119), 1, - anon_sym_RPAREN, - ACTIONS(11121), 1, - anon_sym_LT_DASH, - STATE(7211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293053] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11047), 1, - anon_sym_then, - STATE(3256), 1, - sym_then_clause, - STATE(7212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293070] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11123), 1, - anon_sym_RPAREN, - ACTIONS(11125), 1, - anon_sym_LT_DASH, - STATE(7213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293087] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11049), 1, - anon_sym_do, - STATE(2654), 1, - sym_do_clause, - STATE(7214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293104] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11127), 1, - anon_sym_DOT, - STATE(7215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293121] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10587), 1, - anon_sym_do, - STATE(2529), 1, - sym_do_clause, - STATE(7216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293138] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(11129), 1, - sym__identifier, - STATE(7217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293155] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11131), 2, - sym__identifier, - sym__capitalized_identifier, - [293170] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11133), 1, - anon_sym_SEMI, - ACTIONS(11135), 1, - anon_sym_RBRACE, - STATE(7219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293187] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11137), 1, - anon_sym_SEMI, - ACTIONS(11139), 1, - anon_sym_RBRACE, - STATE(7220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293204] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11141), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [293219] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8501), 1, - anon_sym_COLON2, - STATE(7093), 1, - sym__polymorphic_typed, - STATE(7222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293236] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(11143), 1, - sym__identifier, - STATE(7223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293253] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11135), 1, - anon_sym_RBRACK, - ACTIONS(11145), 1, - anon_sym_SEMI, - STATE(7224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293270] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11135), 1, - anon_sym_RPAREN, - ACTIONS(11147), 1, - anon_sym_SEMI, - STATE(7225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293287] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11149), 1, - aux_sym_type_variable_token1, - STATE(3480), 1, - sym_type_variable, - STATE(7226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293304] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11151), 2, - sym__identifier, - sym__capitalized_identifier, - [293319] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11153), 1, - anon_sym_RPAREN, - ACTIONS(11155), 1, - anon_sym_LT_DASH, - STATE(7228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293336] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11157), 1, - anon_sym_DOT, - STATE(7229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293353] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3810), 1, - anon_sym_COLON_GT, - ACTIONS(3812), 1, - anon_sym_EQ, - STATE(7230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293370] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11159), 1, - anon_sym_RPAREN, - ACTIONS(11161), 1, - anon_sym_LT_DASH, - STATE(7231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293387] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4739), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(7232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293404] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11163), 1, - anon_sym_SEMI, - ACTIONS(11165), 1, - anon_sym_RBRACE, - STATE(7233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293421] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11165), 1, - anon_sym_RBRACK, - ACTIONS(11167), 1, - anon_sym_SEMI, - STATE(7234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293438] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11165), 1, - anon_sym_RPAREN, - ACTIONS(11169), 1, - anon_sym_SEMI, - STATE(7235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293455] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11171), 2, - sym__identifier, - sym__capitalized_identifier, - [293470] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11173), 1, - sym__identifier, - STATE(7237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293487] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11175), 1, - anon_sym_RPAREN, - ACTIONS(11177), 1, - anon_sym_LT_DASH, - STATE(7238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293504] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11179), 1, - anon_sym_COLON_GT, - ACTIONS(11181), 1, - anon_sym_RPAREN, - STATE(7239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293521] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11183), 1, - anon_sym_COLON_GT, - ACTIONS(11185), 1, - anon_sym_RPAREN, - STATE(7240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293538] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11187), 1, - anon_sym_DOT, - STATE(7241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293555] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7242), 1, - sym_attribute, - STATE(7606), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293572] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4741), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(7243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293589] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11189), 1, - anon_sym_SEMI, - ACTIONS(11191), 1, - anon_sym_RBRACE, - STATE(7244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293606] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11191), 1, - anon_sym_RBRACK, - ACTIONS(11193), 1, - anon_sym_SEMI, - STATE(7245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293623] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11191), 1, - anon_sym_RPAREN, - ACTIONS(11195), 1, - anon_sym_SEMI, - STATE(7246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293640] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11197), 1, - anon_sym_RPAREN, - ACTIONS(11199), 1, - anon_sym_LT_DASH, - STATE(7247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293657] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11201), 1, - anon_sym_RPAREN, - ACTIONS(11203), 1, - anon_sym_LT_DASH, - STATE(7248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293674] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_COLON_GT, - ACTIONS(3826), 1, - anon_sym_EQ, - STATE(7249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293691] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8507), 1, - anon_sym_RBRACE, - ACTIONS(11205), 1, - anon_sym_SEMI, - STATE(7250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293708] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8515), 1, - anon_sym_RBRACE, - ACTIONS(11207), 1, - anon_sym_SEMI, - STATE(7251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293725] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11209), 1, - anon_sym_DOT, - STATE(7252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293742] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11211), 1, - anon_sym_RPAREN, - ACTIONS(11213), 1, - anon_sym_LT_DASH, - STATE(7253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293759] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11215), 1, - anon_sym_DOT, - STATE(7254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293776] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3402), 1, - aux_sym_type_variable_token1, - STATE(3480), 1, - sym_type_variable, - STATE(7255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293793] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7256), 1, - sym_attribute, - STATE(8255), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293810] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11217), 2, - sym__identifier, - sym__capitalized_identifier, - [293825] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11219), 1, - anon_sym_DOT, - STATE(7258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293842] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11221), 1, - anon_sym_RPAREN, - ACTIONS(11223), 1, - anon_sym_LT_DASH, - STATE(7259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293859] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11225), 1, - anon_sym_SEMI, - ACTIONS(11227), 1, - anon_sym_RBRACE, - STATE(7260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293876] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7261), 1, - sym_attribute, - STATE(8089), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293893] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11227), 1, - anon_sym_RBRACK, - ACTIONS(11229), 1, - anon_sym_SEMI, - STATE(7262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293910] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11231), 1, - anon_sym_DOT, - STATE(7263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293927] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10198), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - [293942] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11233), 1, - anon_sym_DOT, - STATE(7265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293959] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11227), 1, - anon_sym_RPAREN, - ACTIONS(11235), 1, - anon_sym_SEMI, - STATE(7266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293976] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11237), 1, - anon_sym_DOT, - STATE(7267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293993] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11239), 1, - anon_sym_SEMI, - ACTIONS(11241), 1, - anon_sym_RBRACE, - STATE(7268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294010] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11243), 1, - anon_sym_SEMI, - ACTIONS(11245), 1, - anon_sym_RBRACE, - STATE(7269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294027] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11247), 2, - anon_sym_to, - anon_sym_downto, - [294042] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7271), 1, - sym_attribute, - STATE(8464), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294059] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11249), 1, - anon_sym_RPAREN, - ACTIONS(11251), 1, - anon_sym_LT_DASH, - STATE(7272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294076] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8419), 1, - anon_sym_RBRACE, - ACTIONS(11253), 1, - anon_sym_SEMI, - STATE(7273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294093] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11255), 2, - anon_sym__, - sym__capitalized_identifier, - [294108] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11257), 1, - anon_sym_SEMI, - ACTIONS(11259), 1, - anon_sym_RBRACE, - STATE(7275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294125] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11261), 1, - anon_sym_RPAREN, - ACTIONS(11263), 1, - anon_sym_SEMI, - STATE(7276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294142] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11261), 1, - anon_sym_RBRACK, - ACTIONS(11265), 1, - anon_sym_SEMI, - STATE(7277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294159] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11261), 1, - anon_sym_RBRACE, - ACTIONS(11267), 1, - anon_sym_SEMI, - STATE(7278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294176] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11259), 1, - anon_sym_RBRACK, - ACTIONS(11269), 1, - anon_sym_SEMI, - STATE(7279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294193] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11259), 1, - anon_sym_RPAREN, - ACTIONS(11271), 1, - anon_sym_SEMI, - STATE(7280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294210] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10831), 1, - anon_sym_then, - STATE(2683), 1, - sym_then_clause, - STATE(7281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294227] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11049), 1, - anon_sym_do, - STATE(2609), 1, - sym_do_clause, - STATE(7282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294244] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11273), 1, - anon_sym_RPAREN, - ACTIONS(11275), 1, - anon_sym_LT_DASH, - STATE(7283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294261] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11277), 1, - anon_sym_DOT, - STATE(7284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294278] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10611), 1, - anon_sym_do, - STATE(2606), 1, - sym_do_clause, - STATE(7285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294295] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11279), 2, - anon_sym__, - sym__capitalized_identifier, - [294310] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11281), 1, - anon_sym_RPAREN, - ACTIONS(11283), 1, - anon_sym_LT_DASH, - STATE(7287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294327] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11049), 1, - anon_sym_do, - STATE(2611), 1, - sym_do_clause, - STATE(7288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294344] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(11285), 1, - sym__identifier, - STATE(7289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294361] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11287), 1, - anon_sym_DOT, - STATE(7290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294378] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11289), 1, - anon_sym_RPAREN, - ACTIONS(11291), 1, - anon_sym_LT_DASH, - STATE(7291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294395] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7292), 1, - sym_attribute, - STATE(8117), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294412] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11293), 2, - sym__identifier, - sym__capitalized_identifier, - [294427] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7294), 1, - sym_attribute, - STATE(8179), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294444] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11295), 2, - anon_sym__, - sym__capitalized_identifier, - [294459] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11297), 1, - anon_sym_SEMI, - ACTIONS(11299), 1, - anon_sym_RBRACE, - STATE(7296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294476] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11299), 1, - anon_sym_RBRACK, - ACTIONS(11301), 1, - anon_sym_SEMI, - STATE(7297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294493] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11299), 1, - anon_sym_RPAREN, - ACTIONS(11303), 1, - anon_sym_SEMI, - STATE(7298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294510] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11305), 1, - anon_sym_DOT, - STATE(7299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294527] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11307), 1, - anon_sym_RPAREN, - ACTIONS(11309), 1, - anon_sym_SEMI, - STATE(7300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294544] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11311), 1, - anon_sym_DOT, - STATE(7301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294561] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11307), 1, - anon_sym_RBRACK, - ACTIONS(11313), 1, - anon_sym_SEMI, - STATE(7302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294578] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11307), 1, - anon_sym_RBRACE, - ACTIONS(11315), 1, - anon_sym_SEMI, - STATE(7303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294595] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11317), 1, - sym__identifier, - ACTIONS(11319), 1, - anon_sym_LPAREN, - STATE(7304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294612] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5258), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - [294627] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11321), 1, - sym__identifier, - STATE(7306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294644] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11323), 2, - sym__identifier, - sym__capitalized_identifier, - [294659] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10587), 1, - anon_sym_do, - STATE(2560), 1, - sym_do_clause, - STATE(7308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294676] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11325), 1, - anon_sym_DOT, - STATE(7309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294693] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11327), 1, - anon_sym_RPAREN, - ACTIONS(11329), 1, - anon_sym_LT_DASH, - STATE(7310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294710] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8501), 1, - anon_sym_COLON2, - STATE(7221), 1, - sym__polymorphic_typed, - STATE(7311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294727] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11331), 1, - anon_sym_RPAREN, - ACTIONS(11333), 1, - anon_sym_LT_DASH, - STATE(7312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294744] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11335), 2, - sym__identifier, - sym__capitalized_identifier, - [294759] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7314), 1, - sym_attribute, - STATE(7675), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294776] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11337), 2, - sym__identifier, - sym__capitalized_identifier, - [294791] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5345), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [294806] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5983), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [294821] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11339), 2, - anon_sym__, - sym__capitalized_identifier, - [294836] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11341), 1, - anon_sym_SEMI, - ACTIONS(11343), 1, - anon_sym_RBRACE, - STATE(7319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294853] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11343), 1, - anon_sym_RBRACK, - ACTIONS(11345), 1, - anon_sym_SEMI, - STATE(7320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294870] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11343), 1, - anon_sym_RPAREN, - ACTIONS(11347), 1, - anon_sym_SEMI, - STATE(7321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294887] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11349), 2, - sym__identifier, - sym__capitalized_identifier, - [294902] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5323), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [294917] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11351), 1, - sym__identifier, - STATE(7324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294934] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10217), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [294949] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11353), 1, - anon_sym_DOT, - STATE(7326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294966] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11355), 1, - anon_sym_LPAREN, - ACTIONS(11357), 1, - sym__capitalized_identifier, - STATE(7327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294983] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5844), 1, - anon_sym_as, - ACTIONS(11359), 1, - anon_sym_DASH_GT, - STATE(7328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295000] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11361), 1, - sym__identifier, - STATE(7329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295017] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11363), 1, - anon_sym_RPAREN, - ACTIONS(11365), 1, - anon_sym_LT_DASH, - STATE(7330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295034] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11367), 2, - anon_sym_SEMI, - anon_sym_GT, - [295049] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11369), 1, - anon_sym_COLON_GT, - ACTIONS(11371), 1, - anon_sym_RPAREN, - STATE(7332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295066] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11373), 1, - sym__identifier, - ACTIONS(11375), 1, - anon_sym_LPAREN, - STATE(7333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295083] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11377), 2, - sym__identifier, - sym__capitalized_identifier, - [295098] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11379), 1, - sym__identifier, - ACTIONS(11381), 1, - sym__capitalized_identifier, - STATE(7335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295115] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11383), 1, - anon_sym_DOT, - STATE(7336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295132] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11385), 1, - anon_sym_then, - STATE(3270), 1, - sym_then_clause, - STATE(7337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295149] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9038), 1, - anon_sym_COLON2, - STATE(7338), 1, - sym_attribute, - STATE(7640), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295166] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11387), 1, - anon_sym_RPAREN, - ACTIONS(11389), 1, - anon_sym_LT_DASH, - STATE(7339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295183] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11391), 2, - sym__identifier, - sym__capitalized_identifier, - [295198] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11393), 2, - sym__identifier, - sym__capitalized_identifier, - [295213] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11395), 1, - anon_sym_DOT, - STATE(7342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295230] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11397), 1, - sym__identifier, - ACTIONS(11399), 1, - anon_sym_LPAREN, - STATE(7343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295247] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11401), 1, - anon_sym_RPAREN, - ACTIONS(11403), 1, - anon_sym_COLON_COLON, - STATE(7344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295264] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11405), 1, - anon_sym_SEMI, - ACTIONS(11407), 1, - anon_sym_RBRACE, - STATE(7345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295281] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10529), 1, - anon_sym_then, - STATE(3970), 1, - sym_then_clause, - STATE(7346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295298] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11409), 2, - anon_sym_RBRACK, - anon_sym_DASH_GT, - [295313] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11411), 1, - anon_sym_RPAREN, - ACTIONS(11413), 1, - anon_sym_LT_DASH, - STATE(7348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295330] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(7349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295347] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11415), 1, - anon_sym_RPAREN, - ACTIONS(11417), 1, - anon_sym_LT_DASH, - STATE(7350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295364] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11385), 1, - anon_sym_then, - STATE(3435), 1, - sym_then_clause, - STATE(7351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295381] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11419), 1, - sym__identifier, - STATE(7352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295398] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11421), 1, - sym__identifier, - STATE(7353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295415] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11423), 2, - anon_sym__, - sym__capitalized_identifier, - [295430] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5384), 1, - anon_sym_LPAREN, - ACTIONS(11425), 1, - anon_sym_DOT, - STATE(7355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295447] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10140), 1, - anon_sym_EQ, - ACTIONS(11427), 1, - anon_sym_COLON_GT, - STATE(7356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295464] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - STATE(7357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11429), 2, - anon_sym__, - sym__capitalized_identifier, - [295479] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11431), 1, - sym__identifier, - ACTIONS(11433), 1, - anon_sym_LBRACK, - STATE(7358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295496] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - ACTIONS(11435), 1, - sym__identifier, - STATE(7359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295513] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11407), 1, - anon_sym_RPAREN, - ACTIONS(11437), 1, - anon_sym_SEMI, - STATE(7360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295530] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11439), 1, - anon_sym_RPAREN, - ACTIONS(11441), 1, - anon_sym_LT_DASH, - STATE(7361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295547] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4725), 1, - anon_sym_RBRACK, - ACTIONS(8629), 1, - anon_sym_PIPE, - STATE(7362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295564] = 5, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11407), 1, - anon_sym_RBRACK, - ACTIONS(11443), 1, - anon_sym_SEMI, - STATE(7363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295581] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11445), 1, - anon_sym_with, - STATE(7364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295595] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11447), 1, - anon_sym_RPAREN, - STATE(7365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295609] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_RBRACE, - STATE(7366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295623] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11451), 1, - anon_sym_DASH_GT, - STATE(7367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295637] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11453), 1, - anon_sym_RBRACK, - STATE(7368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295651] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7522), 1, - anon_sym_RPAREN, - STATE(7369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295665] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11401), 1, - anon_sym_RBRACK, - STATE(7370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295679] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11455), 1, - anon_sym_end, - STATE(7371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295693] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11457), 1, - anon_sym_RBRACE, - STATE(7372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295707] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11459), 1, - anon_sym_RBRACE, - STATE(7373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295721] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11461), 1, - anon_sym_RBRACE, - STATE(7374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295735] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11463), 1, - anon_sym_RBRACE, - STATE(7375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295749] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11465), 1, - anon_sym_DASH_GT, - STATE(7376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295763] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - anon_sym_DQUOTE, - STATE(7377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295777] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2033), 1, - anon_sym_RPAREN, - STATE(7378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295791] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11469), 1, - anon_sym_RPAREN, - STATE(7379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295805] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11471), 1, - anon_sym_RPAREN, - STATE(7380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295819] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3844), 1, - anon_sym_DASH_GT, - STATE(7381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295833] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11473), 1, - anon_sym_RBRACE, - STATE(7382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295847] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11475), 1, - anon_sym_RPAREN, - STATE(7383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295861] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11477), 1, - sym__right_quoted_string_delimiter, - STATE(7384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295875] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11479), 1, - anon_sym_RBRACE, - STATE(7385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295889] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11481), 1, - anon_sym_RPAREN, - STATE(7386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295903] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11483), 1, - anon_sym_RBRACE, - STATE(7387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295917] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11485), 1, - anon_sym_RBRACE, - STATE(7388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295931] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11487), 1, - anon_sym_RBRACE, - STATE(7389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295945] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11489), 1, - anon_sym_RBRACE, - STATE(7390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295959] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8214), 1, - anon_sym_GT, - STATE(7391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295973] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11491), 1, - anon_sym_in, - STATE(7392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295987] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11493), 1, - anon_sym_RBRACE, - STATE(7393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296001] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11495), 1, - anon_sym_RBRACK, - STATE(7394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296015] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11497), 1, - anon_sym_DOT, - STATE(7395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296029] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11499), 1, - anon_sym_DOT, - STATE(7396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296043] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11501), 1, - anon_sym_DQUOTE, - STATE(7397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296057] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1503), 1, - anon_sym_RPAREN, - STATE(7398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296071] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11503), 1, - anon_sym_RPAREN, - STATE(7399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296085] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11505), 1, - anon_sym_DOT, - STATE(7400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296099] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11507), 1, - anon_sym_SQUOTE, - STATE(7401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296113] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11509), 1, - anon_sym_DOT, - STATE(7402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296127] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11511), 1, - anon_sym_RBRACK, - STATE(7403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296141] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11513), 1, - anon_sym_DASH_GT, - STATE(7404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296155] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11515), 1, - anon_sym_RPAREN, - STATE(7405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296169] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11517), 1, - anon_sym_COLON2, - STATE(7406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296183] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11519), 1, - sym__identifier, - STATE(7407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296197] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11521), 1, - anon_sym_in, - STATE(7408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296211] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1481), 1, - anon_sym_RPAREN, - STATE(7409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296225] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11523), 1, - anon_sym_with, - STATE(7410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296239] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11525), 1, - anon_sym_with, - STATE(7411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296253] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11527), 1, - anon_sym_DOT, - STATE(7412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296267] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10817), 1, - anon_sym_RPAREN, - STATE(7413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296281] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11529), 1, - anon_sym_in, - STATE(7414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296295] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11531), 1, - anon_sym_DQUOTE, - STATE(7415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296309] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11533), 1, - anon_sym_SQUOTE, - STATE(7416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296323] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11535), 1, - anon_sym_in, - STATE(7417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296337] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9232), 1, - anon_sym_end, - STATE(7418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296351] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11537), 1, - anon_sym_RPAREN, - STATE(7419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296365] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11539), 1, - sym__right_quoted_string_delimiter, - STATE(7420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296379] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10108), 1, - anon_sym_GT_RBRACE, - STATE(7421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296393] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11541), 1, - anon_sym_with, - STATE(7422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296407] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11543), 1, - anon_sym_with, - STATE(7423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296421] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11545), 1, - anon_sym_RBRACE, - STATE(7424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296435] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11547), 1, - anon_sym_in, - STATE(7425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296449] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11549), 1, - anon_sym_DOT, - STATE(7426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296463] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7606), 1, - sym__right_quoted_string_delimiter, - STATE(7427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296477] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11551), 1, - anon_sym_end, - STATE(7428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296491] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11553), 1, - anon_sym_in, - STATE(7429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296505] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11555), 1, - sym__capitalized_identifier, - STATE(7430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296519] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11557), 1, - anon_sym_RPAREN, - STATE(7431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296533] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11559), 1, - anon_sym_RBRACE, - STATE(7432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296547] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11561), 1, - anon_sym_RBRACE, - STATE(7433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296561] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7997), 1, - anon_sym_DASH_GT, - STATE(7434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296575] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11563), 1, - anon_sym_RBRACE, - STATE(7435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296589] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8593), 1, - anon_sym_RPAREN, - STATE(7436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296603] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11565), 1, - anon_sym_STAR, - STATE(7437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296617] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11567), 1, - anon_sym_RBRACE, - STATE(7438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296631] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11569), 1, - anon_sym_of, - STATE(7439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296645] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11571), 1, - anon_sym_RBRACE, - STATE(7440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296659] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11573), 1, - anon_sym_RBRACE, - STATE(7441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296673] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11575), 1, - sym__right_quoted_string_delimiter, - STATE(7442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296687] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11577), 1, - anon_sym_RBRACK, - STATE(7443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296701] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11579), 1, - anon_sym_DQUOTE, - STATE(7444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296715] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11581), 1, - anon_sym_RPAREN, - STATE(7445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296729] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11583), 1, - sym__identifier, - STATE(7446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296743] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11585), 1, - anon_sym_RPAREN, - STATE(7447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296757] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11585), 1, - anon_sym_RBRACK, - STATE(7448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296771] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11585), 1, - anon_sym_RBRACE, - STATE(7449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296785] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11587), 1, - anon_sym_SQUOTE, - STATE(7450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296799] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11589), 1, - anon_sym_in, - STATE(7451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296813] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1505), 1, - anon_sym_RPAREN, - STATE(7452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296827] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11591), 1, - anon_sym_end, - STATE(7453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296841] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11593), 1, - anon_sym_RBRACE, - STATE(7454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296855] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8997), 1, - anon_sym_end, - STATE(7455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296869] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11595), 1, - anon_sym_RPAREN, - STATE(7456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296883] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11597), 1, - anon_sym_in, - STATE(7457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296897] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11599), 1, - anon_sym_RBRACK, - STATE(7458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296911] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7624), 1, - sym__right_quoted_string_delimiter, - STATE(7459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296925] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11601), 1, - sym__identifier, - STATE(7460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296939] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11603), 1, - anon_sym_DOT, - STATE(7461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296953] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11605), 1, - anon_sym_RBRACE, - STATE(7462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296967] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11607), 1, - anon_sym_RPAREN, - STATE(7463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296981] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11609), 1, - anon_sym_DOT, - STATE(7464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296995] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11611), 1, - anon_sym_RBRACK, - STATE(7465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297009] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11613), 1, - anon_sym_in, - STATE(7466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297023] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11615), 1, - anon_sym_in, - STATE(7467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297037] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11617), 1, - anon_sym_in, - STATE(7468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297051] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11619), 1, - aux_sym_number_token1, - STATE(7469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297065] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11621), 1, - anon_sym_RPAREN, - STATE(7470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297079] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11623), 1, - anon_sym_with, - STATE(7471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297093] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11625), 1, - anon_sym_with, - STATE(7472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297107] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11627), 1, - anon_sym_DOT, - STATE(7473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297121] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4947), 1, - anon_sym_end, - STATE(7474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297135] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2033), 1, - anon_sym_end, - STATE(7475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297149] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11629), 1, - anon_sym_in, - STATE(7476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297163] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11631), 1, - aux_sym_number_token1, - STATE(7477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297177] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11633), 1, - anon_sym_COLON, - STATE(7478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297191] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11635), 1, - anon_sym_RBRACE, - STATE(7479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297205] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11637), 1, - anon_sym_RBRACE, - STATE(7480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297219] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11639), 1, - anon_sym_in, - STATE(7481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297233] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11641), 1, - anon_sym_in, - STATE(7482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297247] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11643), 1, - anon_sym_RBRACE, - STATE(7483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297261] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11645), 1, - sym__right_quoted_string_delimiter, - STATE(7484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297275] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11647), 1, - anon_sym_RBRACE, - STATE(7485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297289] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1507), 1, - anon_sym_RPAREN, - STATE(7486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297303] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11649), 1, - anon_sym_with, - STATE(7487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297317] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11651), 1, - anon_sym_with, - STATE(7488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297331] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11653), 1, - anon_sym_DASH_GT, - STATE(7489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297345] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10481), 1, - sym__capitalized_identifier, - STATE(7490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297359] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10609), 1, - anon_sym_RPAREN, - STATE(7491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297373] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11655), 1, - anon_sym_DOT, - STATE(7492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297387] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11657), 1, - anon_sym_RBRACK, - STATE(7493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297401] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11659), 1, - anon_sym_RBRACE, - STATE(7494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297415] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8579), 1, - anon_sym_RPAREN, - STATE(7495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297429] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7684), 1, - sym__right_quoted_string_delimiter, - STATE(7496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297443] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11661), 1, - anon_sym_in, - STATE(7497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297457] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11663), 1, - anon_sym_in, - STATE(7498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297471] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11665), 1, - anon_sym_STAR, - STATE(7499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297485] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11667), 1, - anon_sym_RBRACE, - STATE(7500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297499] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_DASH_GT, - STATE(7501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297513] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11669), 1, - anon_sym_RBRACE, - STATE(7502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297527] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11671), 1, - anon_sym_RBRACE, - STATE(7503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297541] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11673), 1, - anon_sym_RPAREN, - STATE(7504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297555] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8591), 1, - anon_sym_RPAREN, - STATE(7505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297569] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_RPAREN, - STATE(7506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297583] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11675), 1, - anon_sym_RBRACK, - STATE(7507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297597] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11677), 1, - anon_sym_RBRACK, - STATE(7508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297611] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11679), 1, - anon_sym_RBRACE, - STATE(7509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297625] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11681), 1, - anon_sym_RBRACE, - STATE(7510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297639] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11683), 1, - sym__right_quoted_string_delimiter, - STATE(7511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297653] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11685), 1, - anon_sym_RBRACE, - STATE(7512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297667] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11687), 1, - anon_sym_RPAREN, - STATE(7513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297681] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11689), 1, - anon_sym_RPAREN, - STATE(7514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297695] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11689), 1, - anon_sym_RBRACK, - STATE(7515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297709] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11689), 1, - anon_sym_RBRACE, - STATE(7516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297723] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11691), 1, - anon_sym_RPAREN, - STATE(7517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297737] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11693), 1, - anon_sym_RBRACE, - STATE(7518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297751] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11695), 1, - anon_sym_RPAREN, - STATE(7519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297765] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11697), 1, - anon_sym_RBRACE, - STATE(7520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297779] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11699), 1, - sym__identifier, - STATE(7521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297793] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11701), 1, - anon_sym_RBRACE, - STATE(7522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297807] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11701), 1, - anon_sym_RBRACK, - STATE(7523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297821] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10066), 1, - anon_sym_GT_RBRACE, - STATE(7524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297835] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11703), 1, - anon_sym_DOT, - STATE(7525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297849] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11705), 1, - anon_sym_RBRACE, - STATE(7526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297863] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11707), 1, - anon_sym_RBRACE, - STATE(7527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297877] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9188), 1, - anon_sym_end, - STATE(7528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297891] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11701), 1, - anon_sym_RPAREN, - STATE(7529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297905] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11709), 1, - anon_sym_SQUOTE, - STATE(7530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297919] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11711), 1, - anon_sym_DQUOTE, - STATE(7531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297933] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11713), 1, - anon_sym_with, - STATE(7532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297947] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11715), 1, - anon_sym_with, - STATE(7533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297961] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11717), 1, - anon_sym_DOT, - STATE(7534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297975] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11719), 1, - anon_sym_RBRACK, - STATE(7535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297989] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11721), 1, - anon_sym_RPAREN, - STATE(7536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298003] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11723), 1, - sym__identifier, - STATE(7537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298017] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11725), 1, - anon_sym_DOT, - STATE(7538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298031] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11727), 1, - anon_sym_DQUOTE, - STATE(7539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298045] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11729), 1, - anon_sym_RPAREN, - STATE(7540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298059] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11731), 1, - anon_sym_RBRACE, - STATE(7541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298073] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11733), 1, - anon_sym_RPAREN, - STATE(7542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298087] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11735), 1, - anon_sym_DASH_GT, - STATE(7543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298101] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11737), 1, - sym__right_quoted_string_delimiter, - STATE(7544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298115] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11739), 1, - anon_sym_SQUOTE, - STATE(7545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298129] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11741), 1, - anon_sym_RPAREN, - STATE(7546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298143] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11743), 1, - anon_sym_with, - STATE(7547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298157] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11745), 1, - anon_sym_with, - STATE(7548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298171] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11747), 1, - anon_sym_DASH_GT, - STATE(7549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298185] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11749), 1, - anon_sym_DOT, - STATE(7550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298199] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11751), 1, - anon_sym_RPAREN, - STATE(7551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298213] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11753), 1, - anon_sym_DOT, - STATE(7552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298227] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11755), 1, - sym__right_quoted_string_delimiter, - STATE(7553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298241] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(655), 1, - anon_sym_COLON_COLON, - STATE(7554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298255] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11757), 1, - anon_sym_RBRACE, - STATE(7555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298269] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7708), 1, - sym__right_quoted_string_delimiter, - STATE(7556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298283] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11759), 1, - anon_sym_RPAREN, - STATE(7557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298297] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11761), 1, - anon_sym_RPAREN, - STATE(7558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298311] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1509), 1, - anon_sym_RPAREN, - STATE(7559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298325] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11763), 1, - anon_sym_RBRACK, - STATE(7560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298339] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11765), 1, - sym__identifier, - STATE(7561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298353] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11767), 1, - anon_sym_RBRACK, - STATE(7562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298367] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8573), 1, - anon_sym_RPAREN, - STATE(7563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298381] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11769), 1, - sym__identifier, - STATE(7564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298395] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11771), 1, - anon_sym_RBRACE, - STATE(7565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298409] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11773), 1, - anon_sym_RPAREN, - STATE(7566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298423] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11775), 1, - anon_sym_RPAREN, - STATE(7567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298437] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11777), 1, - anon_sym_end, - STATE(7568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298451] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11779), 1, - sym__right_quoted_string_delimiter, - STATE(7569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298465] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11781), 1, - anon_sym_in, - STATE(7570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298479] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11783), 1, - anon_sym_RPAREN, - STATE(7571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298493] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11785), 1, - anon_sym_RPAREN, - STATE(7572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298507] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11785), 1, - anon_sym_RBRACK, - STATE(7573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298521] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11785), 1, - anon_sym_RBRACE, - STATE(7574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298535] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11787), 1, - anon_sym_RPAREN, - STATE(7575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298549] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8433), 1, - anon_sym_RPAREN, - STATE(7576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298563] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11789), 1, - anon_sym_RBRACK, - STATE(7577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298577] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11791), 1, - anon_sym_RBRACE, - STATE(7578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298591] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11793), 1, - anon_sym_COLON2, - STATE(7579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298605] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11795), 1, - anon_sym_RPAREN, - STATE(7580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298619] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11797), 1, - anon_sym_with, - STATE(7581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298633] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11799), 1, - anon_sym_RPAREN, - STATE(7582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298647] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11801), 1, - anon_sym_DOT, - STATE(7583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298661] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11803), 1, - anon_sym_DASH_GT, - STATE(7584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298675] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11805), 1, - anon_sym_RPAREN, - STATE(7585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298689] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11807), 1, - anon_sym_with, - STATE(7586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298703] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11809), 1, - anon_sym_with, - STATE(7587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298717] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11811), 1, - anon_sym_with, - STATE(7588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298731] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11813), 1, - anon_sym_DOT, - STATE(7589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298745] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11815), 1, - anon_sym_EQ, - STATE(7590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298759] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11817), 1, - anon_sym_RBRACE, - STATE(7591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298773] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11819), 1, - anon_sym_RBRACE, - STATE(7592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298787] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11821), 1, - anon_sym_DASH_GT, - STATE(7593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298801] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11823), 1, - anon_sym_RPAREN, - STATE(7594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298815] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11825), 1, - anon_sym_DASH_GT, - STATE(7595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298829] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11827), 1, - sym__right_quoted_string_delimiter, - STATE(7596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298843] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11829), 1, - anon_sym_DASH_GT, - STATE(7597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298857] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11831), 1, - anon_sym_in, - STATE(7598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298871] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11833), 1, - anon_sym_with, - STATE(7599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298885] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11835), 1, - anon_sym_with, - STATE(7600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298899] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11837), 1, - anon_sym_RBRACE, - STATE(7601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298913] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11839), 1, - anon_sym_RPAREN, - STATE(7602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298927] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3922), 1, - anon_sym_DASH_GT, - STATE(7603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298941] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11841), 1, - anon_sym_DOT, - STATE(7604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298955] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11843), 1, - anon_sym_DOT_DOT, - STATE(7605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298969] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11845), 1, - anon_sym_RPAREN, - STATE(7606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298983] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7706), 1, - sym__right_quoted_string_delimiter, - STATE(7607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298997] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7724), 1, - sym__right_quoted_string_delimiter, - STATE(7608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299011] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11847), 1, - anon_sym_RPAREN, - STATE(7609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299025] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11849), 1, - anon_sym_DOT, - STATE(7610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299039] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11851), 1, - anon_sym_GT, - STATE(7611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299053] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8539), 1, - anon_sym_RPAREN, - STATE(7612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299067] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11853), 1, - anon_sym_DASH_GT, - STATE(7613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299081] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11855), 1, - anon_sym_done, - STATE(7614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299095] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11857), 1, - anon_sym_with, - STATE(7615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299109] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11245), 1, - anon_sym_RBRACE, - STATE(7616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299123] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11859), 1, - anon_sym_RPAREN, - STATE(7617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299137] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11861), 1, - sym__right_quoted_string_delimiter, - STATE(7618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299151] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11863), 1, - anon_sym_RPAREN, - STATE(7619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299165] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11865), 1, - anon_sym_RPAREN, - STATE(7620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299179] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11865), 1, - anon_sym_RBRACK, - STATE(7621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299193] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11865), 1, - anon_sym_RBRACE, - STATE(7622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299207] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11867), 1, - anon_sym_with, - STATE(7623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299221] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11869), 1, - anon_sym_RPAREN, - STATE(7624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299235] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11871), 1, - anon_sym_RBRACE, - STATE(7625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299249] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11241), 1, - anon_sym_RBRACE, - STATE(7626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299263] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11873), 1, - anon_sym_RPAREN, - STATE(7627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299277] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11875), 1, - anon_sym_RBRACE, - STATE(7628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299291] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11877), 1, - anon_sym_RBRACE, - STATE(7629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299305] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11879), 1, - anon_sym_DOT, - STATE(7630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299319] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11881), 1, - anon_sym_DASH_GT, - STATE(7631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299333] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11883), 1, - anon_sym_RPAREN, - STATE(7632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299347] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11885), 1, - anon_sym_RBRACE, - STATE(7633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299361] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11887), 1, - anon_sym_with, - STATE(7634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299375] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11889), 1, - anon_sym_with, - STATE(7635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299389] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11891), 1, - anon_sym_DOT, - STATE(7636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299403] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11893), 1, - anon_sym_RBRACE, - STATE(7637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299417] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11895), 1, - anon_sym_RBRACK, - STATE(7638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299431] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11897), 1, - anon_sym_RPAREN, - STATE(7639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299445] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11899), 1, - anon_sym_RPAREN, - STATE(7640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299459] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11901), 1, - sym__right_quoted_string_delimiter, - STATE(7641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299473] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11903), 1, - anon_sym_RBRACK, - STATE(7642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299487] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5558), 1, - anon_sym_GT, - STATE(7643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299501] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11905), 1, - anon_sym_with, - STATE(7644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299515] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11907), 1, - anon_sym_with, - STATE(7645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299529] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11909), 1, - anon_sym_DQUOTE, - STATE(7646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299543] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11911), 1, - anon_sym_SQUOTE, - STATE(7647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299557] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11913), 1, - anon_sym_RPAREN, - STATE(7648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299571] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11915), 1, - anon_sym_DOT, - STATE(7649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299585] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11917), 1, - anon_sym_type, - STATE(7650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299599] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11919), 1, - sym__right_quoted_string_delimiter, - STATE(7651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299613] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11921), 1, - anon_sym_RPAREN, - STATE(7652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299627] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7746), 1, - sym__right_quoted_string_delimiter, - STATE(7653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299641] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1489), 1, - anon_sym_RPAREN, - STATE(7654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299655] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11923), 1, - anon_sym_RBRACE, - STATE(7655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299669] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8517), 1, - anon_sym_RPAREN, - STATE(7656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299683] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11925), 1, - anon_sym_RPAREN, - STATE(7657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299697] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11927), 1, - anon_sym_DOT, - STATE(7658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299711] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11929), 1, - anon_sym_RPAREN, - STATE(7659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299725] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11931), 1, - sym__right_quoted_string_delimiter, - STATE(7660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299739] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11933), 1, - anon_sym_RBRACE, - STATE(7661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299753] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11935), 1, - sym__right_quoted_string_delimiter, - STATE(7662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299767] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11937), 1, - anon_sym_RPAREN, - STATE(7663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299781] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11939), 1, - anon_sym_RPAREN, - STATE(7664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299795] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11939), 1, - anon_sym_RBRACK, - STATE(7665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299809] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11939), 1, - anon_sym_RBRACE, - STATE(7666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299823] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11941), 1, - sym__identifier, - STATE(7667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299837] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11943), 1, - anon_sym_in, - STATE(7668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299851] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11945), 1, - anon_sym_RPAREN, - STATE(7669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299865] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11947), 1, - anon_sym_RBRACE, - STATE(7670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299879] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5570), 1, - anon_sym_GT, - STATE(7671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299893] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11949), 1, - anon_sym_RPAREN, - STATE(7672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299907] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11951), 1, - anon_sym_EQ, - STATE(7673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299921] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11953), 1, - anon_sym_DOT, - STATE(7674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299935] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11955), 1, - anon_sym_RPAREN, - STATE(7675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299949] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11957), 1, - anon_sym_DOT, - STATE(7676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299963] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11959), 1, - anon_sym_RBRACE, - STATE(7677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299977] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11961), 1, - anon_sym_with, - STATE(7678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299991] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11963), 1, - anon_sym_with, - STATE(7679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300005] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11965), 1, - anon_sym_DOT, - STATE(7680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300019] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8156), 1, - anon_sym_GT, - STATE(7681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300033] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11967), 1, - anon_sym_RPAREN, - STATE(7682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300047] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11969), 1, - anon_sym_RBRACE, - STATE(7683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300061] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11971), 1, - anon_sym_DASH_GT, - STATE(7684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300075] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11973), 1, - sym__right_quoted_string_delimiter, - STATE(7685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300089] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11975), 1, - anon_sym_DASH_GT, - STATE(7686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300103] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(643), 1, - anon_sym_COLON_COLON, - STATE(7687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300117] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11977), 1, - anon_sym_with, - STATE(7688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300131] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11979), 1, - anon_sym_with, - STATE(7689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300145] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11981), 1, - anon_sym_RPAREN, - STATE(7690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300159] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11983), 1, - anon_sym_RPAREN, - STATE(7691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300173] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11985), 1, - anon_sym_RPAREN, - STATE(7692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300187] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11987), 1, - anon_sym_DOT, - STATE(7693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300201] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11989), 1, - anon_sym_RBRACK, - STATE(7694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300215] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11991), 1, - anon_sym_DOT, - STATE(7695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300229] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11993), 1, - anon_sym_with, - STATE(7696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300243] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7756), 1, - sym__right_quoted_string_delimiter, - STATE(7697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300257] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11995), 1, - anon_sym_RPAREN, - STATE(7698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300271] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11997), 1, - anon_sym_RBRACE, - STATE(7699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300285] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8497), 1, - anon_sym_RPAREN, - STATE(7700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300299] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11999), 1, - anon_sym_RBRACE, - STATE(7701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300313] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12001), 1, - anon_sym_RPAREN, - STATE(7702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300327] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12003), 1, - anon_sym_PIPE, - STATE(7703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300341] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12005), 1, - anon_sym_RBRACK, - STATE(7704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300355] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12007), 1, - anon_sym_RPAREN, - STATE(7705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300369] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12009), 1, - sym__right_quoted_string_delimiter, - STATE(7706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300383] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12011), 1, - anon_sym_RPAREN, - STATE(7707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300397] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12013), 1, - anon_sym_RPAREN, - STATE(7708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300411] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12013), 1, - anon_sym_RBRACK, - STATE(7709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300425] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12013), 1, - anon_sym_RBRACE, - STATE(7710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300439] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12015), 1, - anon_sym_RBRACE, - STATE(7711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300453] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12017), 1, - anon_sym_with, - STATE(7712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300467] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12019), 1, - anon_sym_RBRACE, - STATE(7713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300481] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12021), 1, - anon_sym_RBRACE, - STATE(7714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300495] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12023), 1, - anon_sym_RPAREN, - STATE(7715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300509] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12025), 1, - anon_sym_done, - STATE(7716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300523] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12027), 1, - anon_sym_RPAREN, - STATE(7717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300537] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12029), 1, - anon_sym_DOT, - STATE(7718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300551] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12031), 1, - anon_sym_DASH_GT, - STATE(7719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300565] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12033), 1, - anon_sym_RBRACK, - STATE(7720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300579] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12035), 1, - anon_sym_DQUOTE, - STATE(7721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300593] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12037), 1, - anon_sym_with, - STATE(7722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300607] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12039), 1, - anon_sym_with, - STATE(7723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300621] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12041), 1, - anon_sym_DOT, - STATE(7724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300635] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12043), 1, - anon_sym_RBRACE, - STATE(7725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300649] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12045), 1, - anon_sym_RPAREN, - STATE(7726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300663] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12047), 1, - anon_sym_SQUOTE, - STATE(7727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300677] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12049), 1, - anon_sym_RBRACK, - STATE(7728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300691] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12051), 1, - sym__right_quoted_string_delimiter, - STATE(7729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300705] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12053), 1, - anon_sym_RPAREN, - STATE(7730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300719] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1499), 1, - anon_sym_RPAREN, - STATE(7731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300733] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12055), 1, - anon_sym_with, - STATE(7732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300747] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12057), 1, - anon_sym_with, - STATE(7733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300761] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12059), 1, - anon_sym_DOT, - STATE(7734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300775] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12061), 1, - anon_sym_in, - STATE(7735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300789] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12063), 1, - anon_sym_RPAREN, - STATE(7736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300803] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12065), 1, - anon_sym_DOT, - STATE(7737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300817] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12067), 1, - anon_sym_DOT_DOT, - STATE(7738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300831] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12069), 1, - anon_sym_DOT_DOT, - STATE(7739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300845] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12071), 1, - anon_sym_DOT, - STATE(7740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300859] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7742), 1, - sym__right_quoted_string_delimiter, - STATE(7741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300873] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12073), 1, - anon_sym_RBRACK, - STATE(7742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300887] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12075), 1, - anon_sym_SQUOTE, - STATE(7743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300901] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8493), 1, - anon_sym_RPAREN, - STATE(7744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300915] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7542), 1, - anon_sym_RPAREN, - STATE(7745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300929] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12077), 1, - anon_sym_DOT, - STATE(7746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300943] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12079), 1, - anon_sym_RBRACE, - STATE(7747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300957] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2043), 1, - anon_sym_RPAREN, - STATE(7748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300971] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12081), 1, - sym__right_quoted_string_delimiter, - STATE(7749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300985] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12083), 1, - anon_sym_RPAREN, - STATE(7750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300999] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12085), 1, - anon_sym_RPAREN, - STATE(7751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301013] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12085), 1, - anon_sym_RBRACK, - STATE(7752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301027] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12085), 1, - anon_sym_RBRACE, - STATE(7753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301041] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12087), 1, - anon_sym_RBRACE, - STATE(7754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301055] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12089), 1, - anon_sym_RPAREN, - STATE(7755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301069] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12091), 1, - anon_sym_RPAREN, - STATE(7756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301083] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12093), 1, - anon_sym_RBRACE, - STATE(7757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301097] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12095), 1, - anon_sym_RPAREN, - STATE(7758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301111] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12097), 1, - anon_sym_RPAREN, - STATE(7759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301125] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8242), 1, - anon_sym_GT, - STATE(7760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301139] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12099), 1, - anon_sym_DOT, - STATE(7761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301153] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12101), 1, - anon_sym_RPAREN, - STATE(7762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301167] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12103), 1, - anon_sym_RBRACE, - STATE(7763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301181] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12105), 1, - anon_sym_RBRACE, - STATE(7764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301195] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12107), 1, - anon_sym_with, - STATE(7765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301209] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12109), 1, - anon_sym_with, - STATE(7766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301223] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12111), 1, - anon_sym_DOT, - STATE(7767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301237] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12113), 1, - anon_sym_RBRACE, - STATE(7768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301251] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12115), 1, - anon_sym_RBRACK, - STATE(7769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301265] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12117), 1, - anon_sym_DASH_GT, - STATE(7770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301279] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7720), 1, - sym__right_quoted_string_delimiter, - STATE(7771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301293] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12119), 1, - sym__right_quoted_string_delimiter, - STATE(7772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301307] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12121), 1, - anon_sym_RPAREN, - STATE(7773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301321] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12123), 1, - anon_sym_DQUOTE, - STATE(7774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301335] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12125), 1, - anon_sym_RBRACE, - STATE(7775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301349] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12127), 1, - anon_sym_with, - STATE(7776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301363] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12129), 1, - anon_sym_RBRACE, - STATE(7777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301377] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12131), 1, - anon_sym_RBRACE, - STATE(7778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301391] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12133), 1, - anon_sym_RBRACE, - STATE(7779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301405] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12135), 1, - anon_sym_DOT, - STATE(7780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301419] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12137), 1, - anon_sym_DOT, - STATE(7781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301433] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12139), 1, - anon_sym_RBRACE, - STATE(7782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301447] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12141), 1, - anon_sym_RPAREN, - STATE(7783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301461] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7710), 1, - sym__right_quoted_string_delimiter, - STATE(7784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301475] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12143), 1, - anon_sym_DASH_GT, - STATE(7785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301489] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12145), 1, - anon_sym_RBRACK, - STATE(7786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301503] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8461), 1, - anon_sym_RPAREN, - STATE(7787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301517] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12147), 1, - anon_sym_SQUOTE, - STATE(7788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301531] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12149), 1, - anon_sym_end, - STATE(7789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301545] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12151), 1, - anon_sym_RPAREN, - STATE(7790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301559] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1491), 1, - anon_sym_RPAREN, - STATE(7791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301573] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12153), 1, - sym__right_quoted_string_delimiter, - STATE(7792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301587] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12155), 1, - anon_sym_RPAREN, - STATE(7793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301601] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12157), 1, - anon_sym_RPAREN, - STATE(7794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301615] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12157), 1, - anon_sym_RBRACK, - STATE(7795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301629] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12157), 1, - anon_sym_RBRACE, - STATE(7796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301643] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12159), 1, - anon_sym_RBRACE, - STATE(7797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301657] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12161), 1, - anon_sym_RPAREN, - STATE(7798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301671] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3900), 1, - anon_sym_DASH_GT, - STATE(7799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301685] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12163), 1, - anon_sym_DASH_GT, - STATE(7800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301699] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9042), 1, - anon_sym_end, - STATE(7801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301713] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12165), 1, - anon_sym_DOT, - STATE(7802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301727] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12167), 1, - anon_sym_RBRACK, - STATE(7803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301741] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12169), 1, - anon_sym_RPAREN, - STATE(7804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301755] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12171), 1, - anon_sym_DOT, - STATE(7805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301769] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12173), 1, - anon_sym_with, - STATE(7806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301783] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12175), 1, - anon_sym_with, - STATE(7807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301797] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12177), 1, - anon_sym_DOT, - STATE(7808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301811] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12179), 1, - anon_sym_RPAREN, - STATE(7809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301825] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12181), 1, - anon_sym_DASH_GT, - STATE(7810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301839] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12183), 1, - anon_sym_GT, - STATE(7811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301853] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12185), 1, - anon_sym_of, - STATE(7812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301867] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12187), 1, - sym__right_quoted_string_delimiter, - STATE(7813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301881] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3888), 1, - anon_sym_DASH_GT, - STATE(7814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301895] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12189), 1, - anon_sym_COLON_COLON, - STATE(7815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301909] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12191), 1, - anon_sym_with, - STATE(7816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301923] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12193), 1, - anon_sym_with, - STATE(7817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301937] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12195), 1, - anon_sym_DASH_GT, - STATE(7818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301951] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12197), 1, - anon_sym_DASH_GT, - STATE(7819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301965] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12199), 1, - anon_sym_DASH_GT, - STATE(7820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301979] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12201), 1, - anon_sym_DOT, - STATE(7821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301993] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12203), 1, - anon_sym_RBRACE, - STATE(7822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302007] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12205), 1, - anon_sym_RBRACE, - STATE(7823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302021] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12207), 1, - sym__right_quoted_string_delimiter, - STATE(7824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302035] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7688), 1, - sym__right_quoted_string_delimiter, - STATE(7825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302049] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12209), 1, - anon_sym_RBRACE, - STATE(7826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302063] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12211), 1, - sym__identifier, - STATE(7827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302077] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8427), 1, - anon_sym_RPAREN, - STATE(7828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302091] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12213), 1, - anon_sym_RPAREN, - STATE(7829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302105] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12215), 1, - anon_sym_RBRACE, - STATE(7830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302119] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12217), 1, - anon_sym_RBRACE, - STATE(7831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302133] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12219), 1, - anon_sym_RBRACE, - STATE(7832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302147] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12221), 1, - sym__right_quoted_string_delimiter, - STATE(7833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302161] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12223), 1, - anon_sym_RPAREN, - STATE(7834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302175] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12225), 1, - anon_sym_RPAREN, - STATE(7835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302189] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12225), 1, - anon_sym_RBRACK, - STATE(7836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302203] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12225), 1, - anon_sym_RBRACE, - STATE(7837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302217] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12227), 1, - anon_sym_EQ, - STATE(7838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302231] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8222), 1, - anon_sym_GT, - STATE(7839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302245] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12229), 1, - anon_sym_RPAREN, - STATE(7840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302259] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12231), 1, - anon_sym_DOT, - STATE(7841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302273] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12233), 1, - anon_sym_end, - STATE(7842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302287] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12235), 1, - sym__identifier, - STATE(7843), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302301] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12237), 1, - anon_sym_DOT, - STATE(7844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302315] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12239), 1, - anon_sym_DASH_GT, - STATE(7845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302329] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12241), 1, - anon_sym_RBRACE, - STATE(7846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302343] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12243), 1, - anon_sym_RBRACE, - STATE(7847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302357] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12245), 1, - sym__identifier, - STATE(7848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302371] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12247), 1, - sym__right_quoted_string_delimiter, - STATE(7849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302385] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12249), 1, - anon_sym_RPAREN, - STATE(7850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302399] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12251), 1, - anon_sym_RBRACE, - STATE(7851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302413] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12253), 1, - anon_sym_in, - STATE(7852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302427] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12255), 1, - anon_sym_RBRACK, - STATE(7853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302441] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12257), 1, - anon_sym_RBRACK, - STATE(7854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302455] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12259), 1, - anon_sym_DOT, - STATE(7855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302469] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12261), 1, - sym__identifier, - STATE(7856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302483] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12263), 1, - anon_sym_RPAREN, - STATE(7857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302497] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11139), 1, - anon_sym_RBRACE, - STATE(7858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302511] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7654), 1, - sym__right_quoted_string_delimiter, - STATE(7859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302525] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12265), 1, - anon_sym_DASH_GT, - STATE(7860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302539] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12267), 1, - anon_sym_DQUOTE, - STATE(7861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302553] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8363), 1, - anon_sym_RPAREN, - STATE(7862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302567] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12269), 1, - anon_sym_in, - STATE(7863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302581] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12271), 1, - sym__identifier, - STATE(7864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302595] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12273), 1, - anon_sym_RPAREN, - STATE(7865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302609] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12275), 1, - anon_sym_RBRACK, - STATE(7866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302623] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12277), 1, - sym__right_quoted_string_delimiter, - STATE(7867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302637] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12279), 1, - anon_sym_RPAREN, - STATE(7868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302651] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12281), 1, - anon_sym_RPAREN, - STATE(7869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302665] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12281), 1, - anon_sym_RBRACK, - STATE(7870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302679] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12281), 1, - anon_sym_RBRACE, - STATE(7871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302693] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12283), 1, - anon_sym_DQUOTE, - STATE(7872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302707] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12285), 1, - anon_sym_EQ, - STATE(7873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302721] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12287), 1, - anon_sym_DASH_GT, - STATE(7874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302735] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12289), 1, - anon_sym_RPAREN, - STATE(7875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302749] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12291), 1, - anon_sym_RPAREN, - STATE(7876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302763] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12293), 1, - anon_sym_DOT, - STATE(7877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302777] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12295), 1, - anon_sym_SQUOTE, - STATE(7878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302791] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12297), 1, - sym__identifier, - STATE(7879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302805] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7546), 1, - anon_sym_RPAREN, - STATE(7880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302819] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12299), 1, - anon_sym_DQUOTE, - STATE(7881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302833] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12301), 1, - sym__right_quoted_string_delimiter, - STATE(7882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302847] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12303), 1, - anon_sym_SQUOTE, - STATE(7883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302861] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9030), 1, - anon_sym_end, - STATE(7884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302875] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1501), 1, - anon_sym_RPAREN, - STATE(7885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302889] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12305), 1, - anon_sym_RPAREN, - STATE(7886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302903] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9939), 1, - anon_sym_GT_RBRACE, - STATE(7887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302917] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12307), 1, - anon_sym_DOT, - STATE(7888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302931] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12309), 1, - anon_sym_RBRACE, - STATE(7889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302945] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12311), 1, - aux_sym_number_token1, - STATE(7890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302959] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12313), 1, - anon_sym_end, - STATE(7891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302973] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7620), 1, - sym__right_quoted_string_delimiter, - STATE(7892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302987] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12315), 1, - anon_sym_DOT, - STATE(7893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303001] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12317), 1, - anon_sym_RBRACE, - STATE(7894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303015] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8331), 1, - anon_sym_RPAREN, - STATE(7895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303029] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1843), 1, - anon_sym_end, - STATE(7896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303043] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12319), 1, - sym__left_quoted_string_delimiter, - STATE(7897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303057] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12321), 1, - anon_sym_DQUOTE, - STATE(7898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303071] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12323), 1, - anon_sym_RBRACK, - STATE(7899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303085] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12325), 1, - sym__right_quoted_string_delimiter, - STATE(7900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303099] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12327), 1, - anon_sym_RPAREN, - STATE(7901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303113] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12329), 1, - anon_sym_RPAREN, - STATE(7902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303127] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12329), 1, - anon_sym_RBRACK, - STATE(7903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303141] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12329), 1, - anon_sym_RBRACE, - STATE(7904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303155] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12331), 1, - anon_sym_RPAREN, - STATE(7905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303169] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12333), 1, - anon_sym_in, - STATE(7906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303183] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12335), 1, - sym__identifier, - STATE(7907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303197] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12337), 1, - anon_sym_DOT, - STATE(7908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303211] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12339), 1, - sym__identifier, - STATE(7909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303225] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12341), 1, - sym__right_quoted_string_delimiter, - STATE(7910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303239] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12343), 1, - anon_sym_in, - STATE(7911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303253] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12345), 1, - anon_sym_DOT, - STATE(7912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303267] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12347), 1, - anon_sym_in, - STATE(7913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303281] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12349), 1, - anon_sym_RPAREN, - STATE(7914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303295] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12351), 1, - anon_sym_in, - STATE(7915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303309] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7608), 1, - sym__right_quoted_string_delimiter, - STATE(7916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303323] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12353), 1, - anon_sym_RBRACK, - STATE(7917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303337] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8319), 1, - anon_sym_RPAREN, - STATE(7918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303351] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8764), 1, - anon_sym_DASH_GT, - STATE(7919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303365] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12355), 1, - sym__right_quoted_string_delimiter, - STATE(7920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303379] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12357), 1, - anon_sym_RPAREN, - STATE(7921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303393] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12359), 1, - anon_sym_RPAREN, - STATE(7922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303407] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12359), 1, - anon_sym_RBRACK, - STATE(7923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303421] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12359), 1, - anon_sym_RBRACE, - STATE(7924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303435] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12361), 1, - anon_sym_in, - STATE(7925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303449] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12363), 1, - anon_sym_STAR, - STATE(7926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303463] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12365), 1, - anon_sym_RBRACE, - STATE(7927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303477] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12367), 1, - anon_sym_RPAREN, - STATE(7928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303491] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12369), 1, - sym__right_quoted_string_delimiter, - STATE(7929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303505] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10255), 1, - anon_sym_GT_RBRACE, - STATE(7930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303519] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12371), 1, - anon_sym_DASH_GT, - STATE(7931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303533] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12373), 1, - anon_sym_RBRACE, - STATE(7932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303547] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7600), 1, - sym__right_quoted_string_delimiter, - STATE(7933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303561] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12375), 1, - anon_sym_RPAREN, - STATE(7934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303575] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12377), 1, - sym__right_quoted_string_delimiter, - STATE(7935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303589] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12379), 1, - anon_sym_RPAREN, - STATE(7936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303603] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12379), 1, - anon_sym_RBRACK, - STATE(7937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303617] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12379), 1, - anon_sym_RBRACE, - STATE(7938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303631] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12381), 1, - anon_sym_RBRACE, - STATE(7939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303645] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12383), 1, - anon_sym_in, - STATE(7940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303659] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12385), 1, - anon_sym_in, - STATE(7941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303673] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9384), 1, - anon_sym_end, - STATE(7942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303687] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12387), 1, - sym__right_quoted_string_delimiter, - STATE(7943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303701] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3932), 1, - anon_sym_DASH_GT, - STATE(7944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303715] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12389), 1, - anon_sym_SQUOTE, - STATE(7945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303729] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12391), 1, - anon_sym_RBRACE, - STATE(7946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303743] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7592), 1, - sym__right_quoted_string_delimiter, - STATE(7947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303757] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12393), 1, - anon_sym_RPAREN, - STATE(7948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303771] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12395), 1, - sym__right_quoted_string_delimiter, - STATE(7949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303785] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12397), 1, - anon_sym_RPAREN, - STATE(7950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303799] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12397), 1, - anon_sym_RBRACK, - STATE(7951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303813] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12397), 1, - anon_sym_RBRACE, - STATE(7952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303827] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12399), 1, - anon_sym_DQUOTE, - STATE(7953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303841] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12401), 1, - anon_sym_in, - STATE(7954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303855] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12403), 1, - anon_sym_in, - STATE(7955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303869] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12405), 1, - anon_sym_in, - STATE(7956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303883] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12407), 1, - sym__right_quoted_string_delimiter, - STATE(7957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303897] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12409), 1, - anon_sym_with, - STATE(7958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303911] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12411), 1, - anon_sym_RPAREN, - STATE(7959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303925] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12413), 1, - anon_sym_DASH_GT, - STATE(7960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303939] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7586), 1, - sym__right_quoted_string_delimiter, - STATE(7961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303953] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12415), 1, - anon_sym_RPAREN, - STATE(7962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303967] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12417), 1, - sym__right_quoted_string_delimiter, - STATE(7963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303981] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12419), 1, - anon_sym_RPAREN, - STATE(7964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303995] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12419), 1, - anon_sym_RBRACK, - STATE(7965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304009] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12419), 1, - anon_sym_RBRACE, - STATE(7966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304023] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12421), 1, - anon_sym_RBRACE, - STATE(7967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304037] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12423), 1, - anon_sym_RBRACE, - STATE(7968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304051] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12425), 1, - anon_sym_RPAREN, - STATE(7969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304065] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1861), 1, - anon_sym_end, - STATE(7970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304079] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12427), 1, - sym__right_quoted_string_delimiter, - STATE(7971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304093] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12429), 1, - anon_sym_with, - STATE(7972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304107] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12431), 1, - sym__identifier, - STATE(7973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304121] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12433), 1, - anon_sym_RBRACK, - STATE(7974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304135] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7634), 1, - sym__right_quoted_string_delimiter, - STATE(7975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304149] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12435), 1, - anon_sym_RBRACE, - STATE(7976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304163] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12437), 1, - sym__right_quoted_string_delimiter, - STATE(7977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304177] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12439), 1, - anon_sym_RPAREN, - STATE(7978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304191] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12439), 1, - anon_sym_RBRACK, - STATE(7979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304205] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12439), 1, - anon_sym_RBRACE, - STATE(7980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304219] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3956), 1, - anon_sym_DASH_GT, - STATE(7981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304233] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12441), 1, - aux_sym_number_token1, - STATE(7982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304247] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3860), 1, - anon_sym_DASH_GT, - STATE(7983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304261] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12443), 1, - anon_sym_RBRACE, - STATE(7984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304275] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12445), 1, - sym__right_quoted_string_delimiter, - STATE(7985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304289] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12447), 1, - anon_sym_DOT, - STATE(7986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304303] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12449), 1, - anon_sym_RBRACK, - STATE(7987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304317] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12451), 1, - anon_sym_EQ, - STATE(7988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304331] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7638), 1, - sym__right_quoted_string_delimiter, - STATE(7989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304345] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12453), 1, - anon_sym_RBRACK, - STATE(7990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304359] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12455), 1, - sym__right_quoted_string_delimiter, - STATE(7991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304373] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12457), 1, - anon_sym_RPAREN, - STATE(7992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304387] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12457), 1, - anon_sym_RBRACK, - STATE(7993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304401] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12457), 1, - anon_sym_RBRACE, - STATE(7994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304415] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12459), 1, - anon_sym_RBRACE, - STATE(7995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304429] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12461), 1, - anon_sym_RBRACE, - STATE(7996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304443] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12463), 1, - anon_sym_RBRACE, - STATE(7997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304457] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12465), 1, - anon_sym_RPAREN, - STATE(7998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304471] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12467), 1, - sym__right_quoted_string_delimiter, - STATE(7999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304485] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12469), 1, - anon_sym_in, - STATE(8000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304499] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12471), 1, - anon_sym_in, - STATE(8001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304513] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12473), 1, - anon_sym_DOT, - STATE(8002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304527] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7644), 1, - sym__right_quoted_string_delimiter, - STATE(8003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304541] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(697), 1, - anon_sym_RPAREN, - STATE(8004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304555] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12475), 1, - sym__right_quoted_string_delimiter, - STATE(8005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304569] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12477), 1, - anon_sym_RPAREN, - STATE(8006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304583] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12477), 1, - anon_sym_RBRACK, - STATE(8007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304597] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12477), 1, - anon_sym_RBRACE, - STATE(8008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304611] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12479), 1, - anon_sym_SQUOTE, - STATE(8009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304625] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12481), 1, - sym__identifier, - STATE(8010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304639] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7446), 1, - anon_sym_RPAREN, - STATE(8011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304653] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12483), 1, - anon_sym_DQUOTE, - STATE(8012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304667] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12485), 1, - sym__right_quoted_string_delimiter, - STATE(8013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304681] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8178), 1, - anon_sym_GT, - STATE(8014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304695] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12487), 1, - anon_sym_SQUOTE, - STATE(8015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304709] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5578), 1, - anon_sym_GT, - STATE(8016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304723] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7656), 1, - sym__right_quoted_string_delimiter, - STATE(8017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304737] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12489), 1, - anon_sym_RBRACE, - STATE(8018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304751] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12491), 1, - sym__right_quoted_string_delimiter, - STATE(8019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304765] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12493), 1, - anon_sym_RPAREN, - STATE(8020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304779] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12493), 1, - anon_sym_RBRACK, - STATE(8021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304793] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12493), 1, - anon_sym_RBRACE, - STATE(8022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304807] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12495), 1, - anon_sym_RPAREN, - STATE(8023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304821] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(699), 1, - anon_sym_COLON_COLON, - STATE(8024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304835] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - sym__right_quoted_string_delimiter, - STATE(8025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304849] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12497), 1, - anon_sym_end, - STATE(8026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304863] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12499), 1, - sym__right_quoted_string_delimiter, - STATE(8027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304877] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12501), 1, - anon_sym_RPAREN, - STATE(8028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304891] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12503), 1, - anon_sym_RBRACE, - STATE(8029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304905] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7666), 1, - sym__right_quoted_string_delimiter, - STATE(8030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304919] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1465), 1, - anon_sym_RPAREN, - STATE(8031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304933] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12505), 1, - sym__right_quoted_string_delimiter, - STATE(8032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304947] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12507), 1, - anon_sym_DOT, - STATE(8033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304961] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7420), 1, - anon_sym_RPAREN, - STATE(8034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304975] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7670), 1, - sym__right_quoted_string_delimiter, - STATE(8035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304989] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3944), 1, - anon_sym_DASH_GT, - STATE(8036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305003] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12509), 1, - sym__right_quoted_string_delimiter, - STATE(8037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305017] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12511), 1, - anon_sym_RBRACE, - STATE(8038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305031] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12513), 1, - anon_sym_RPAREN, - STATE(8039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305045] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7678), 1, - sym__right_quoted_string_delimiter, - STATE(8040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305059] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10288), 1, - anon_sym_GT_RBRACE, - STATE(8041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305073] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12515), 1, - sym__right_quoted_string_delimiter, - STATE(8042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305087] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12517), 1, - anon_sym_DASH_GT, - STATE(8043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305101] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12519), 1, - anon_sym_RBRACE, - STATE(8044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305115] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7632), 1, - sym__right_quoted_string_delimiter, - STATE(8045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305129] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12521), 1, - anon_sym_DASH_GT, - STATE(8046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305143] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12523), 1, - sym__right_quoted_string_delimiter, - STATE(8047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305157] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12525), 1, - anon_sym_DASH_GT, - STATE(8048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305171] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12527), 1, - anon_sym_done, - STATE(8049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305185] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12529), 1, - anon_sym_in, - STATE(8050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305199] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12531), 1, - anon_sym_RPAREN, - STATE(8051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305213] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12533), 1, - anon_sym_end, - STATE(8052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305227] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12535), 1, - anon_sym_RPAREN, - STATE(8053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305241] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12537), 1, - anon_sym_RBRACK, - STATE(8054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305255] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12539), 1, - anon_sym_RBRACE, - STATE(8055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305269] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10913), 1, - anon_sym_RBRACK, - STATE(8056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305283] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12541), 1, - anon_sym_RBRACE, - STATE(8057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305297] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9979), 1, - anon_sym_GT_RBRACE, - STATE(8058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305311] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12543), 1, - anon_sym_type, - STATE(8059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305325] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12545), 1, - anon_sym_RPAREN, - STATE(8060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305339] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12547), 1, - anon_sym_RPAREN, - STATE(8061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305353] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12549), 1, - anon_sym_RPAREN, - STATE(8062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305367] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12551), 1, - anon_sym_RBRACE, - STATE(8063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305381] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7518), 1, - anon_sym_RPAREN, - STATE(8064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305395] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12553), 1, - anon_sym_RPAREN, - STATE(8065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305409] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12555), 1, - anon_sym_RPAREN, - STATE(8066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305423] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12557), 1, - anon_sym_RBRACE, - STATE(8067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305437] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12559), 1, - anon_sym_DASH_GT, - STATE(8068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305451] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12561), 1, - anon_sym_in, - STATE(8069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305465] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12563), 1, - anon_sym_EQ, - STATE(8070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305479] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12565), 1, - anon_sym_DASH_GT, - STATE(8071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305493] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12567), 1, - anon_sym_RBRACK, - STATE(8072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305507] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12569), 1, - anon_sym_DASH_GT, - STATE(8073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305521] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12571), 1, - anon_sym_DOT, - STATE(8074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305535] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12573), 1, - anon_sym_RPAREN, - STATE(8075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305549] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12575), 1, - anon_sym_RPAREN, - STATE(8076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305563] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12577), 1, - anon_sym_in, - STATE(8077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305577] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12579), 1, - anon_sym_in, - STATE(8078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305591] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12581), 1, - anon_sym_RPAREN, - STATE(8079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305605] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12583), 1, - sym__identifier, - STATE(8080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305619] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12585), 1, - anon_sym_COLON_COLON, - STATE(8081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305633] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12587), 1, - sym__identifier, - STATE(8082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305647] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12589), 1, - anon_sym_RPAREN, - STATE(8083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305661] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12591), 1, - anon_sym_RPAREN, - STATE(8084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305675] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12593), 1, - anon_sym_RPAREN, - STATE(8085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305689] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12595), 1, - anon_sym_RBRACK, - STATE(8086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305703] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12597), 1, - anon_sym_RBRACE, - STATE(8087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305717] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12599), 1, - anon_sym_in, - STATE(8088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305731] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12601), 1, - anon_sym_RPAREN, - STATE(8089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305745] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12603), 1, - anon_sym_RPAREN, - STATE(8090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305759] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9818), 1, - anon_sym_GT_RBRACE, - STATE(8091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305773] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12605), 1, - anon_sym_RPAREN, - STATE(8092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305787] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8742), 1, - sym__left_quoted_string_delimiter, - STATE(8093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305801] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12607), 1, - anon_sym_RBRACE, - STATE(8094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305815] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12609), 1, - anon_sym_EQ, - STATE(8095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305829] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12611), 1, - anon_sym_RPAREN, - STATE(8096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305843] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12613), 1, - anon_sym_RBRACK, - STATE(8097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305857] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12615), 1, - anon_sym_RPAREN, - STATE(8098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305871] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12617), 1, - anon_sym_RPAREN, - STATE(8099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305885] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12619), 1, - anon_sym_RBRACE, - STATE(8100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305899] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12621), 1, - anon_sym_RBRACK, - STATE(8101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305913] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12623), 1, - anon_sym_RPAREN, - STATE(8102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305927] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5500), 1, - anon_sym_GT, - STATE(8103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305941] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12625), 1, - anon_sym_RPAREN, - STATE(8104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305955] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12627), 1, - anon_sym_RPAREN, - STATE(8105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305969] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12629), 1, - sym__left_quoted_string_delimiter, - STATE(8106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305983] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12631), 1, - anon_sym_RPAREN, - STATE(8107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305997] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12633), 1, - sym__identifier, - STATE(8108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306011] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12635), 1, - anon_sym_RPAREN, - STATE(8109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306025] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12637), 1, - anon_sym_RPAREN, - STATE(8110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306039] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12639), 1, - anon_sym_RPAREN, - STATE(8111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306053] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12641), 1, - anon_sym_RBRACE, - STATE(8112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306067] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12643), 1, - anon_sym_RBRACK, - STATE(8113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306081] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12645), 1, - anon_sym_RBRACE, - STATE(8114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306095] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12647), 1, - anon_sym_RPAREN, - STATE(8115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306109] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12649), 1, - anon_sym_PIPE, - STATE(8116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306123] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12651), 1, - anon_sym_RPAREN, - STATE(8117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306137] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12653), 1, - sym__identifier, - STATE(8118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306151] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12655), 1, - anon_sym_RBRACE, - STATE(8119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306165] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11447), 1, - anon_sym_RBRACK, - STATE(8120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306179] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12657), 1, - anon_sym_DOT, - STATE(8121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306193] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12659), 1, - anon_sym_RBRACE, - STATE(8122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306207] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11447), 1, - anon_sym_RBRACE, - STATE(8123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306221] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12661), 1, - anon_sym_RPAREN, - STATE(8124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306235] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12663), 1, - anon_sym_EQ, - STATE(8125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306249] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12665), 1, - anon_sym_RBRACE, - STATE(8126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306263] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12667), 1, - anon_sym_DASH_GT, - STATE(8127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306277] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12669), 1, - anon_sym_RPAREN, - STATE(8128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306291] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12671), 1, - sym__identifier, - STATE(8129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306305] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12673), 1, - anon_sym_COLON2, - STATE(8130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306319] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12675), 1, - anon_sym_DASH_GT, - STATE(8131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306333] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12677), 1, - anon_sym_RBRACE, - STATE(8132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306347] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12679), 1, - sym__left_quoted_string_delimiter, - STATE(8133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306361] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12681), 1, - anon_sym_RPAREN, - STATE(8134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306375] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12683), 1, - anon_sym_RBRACE, - STATE(8135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306389] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12685), 1, - anon_sym_DOT_DOT, - STATE(8136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306403] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12687), 1, - anon_sym_DOT_DOT, - STATE(8137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306417] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12689), 1, - anon_sym_DOT_DOT, - STATE(8138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306431] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12691), 1, - anon_sym_EQ, - STATE(8139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306445] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12693), 1, - anon_sym_RPAREN, - STATE(8140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306459] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12695), 1, - anon_sym_DASH_GT, - STATE(8141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306473] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12697), 1, - sym__identifier, - STATE(8142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306487] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7380), 1, - anon_sym_RPAREN, - STATE(8143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306501] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12699), 1, - sym__identifier, - STATE(8144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306515] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12701), 1, - anon_sym_GT, - STATE(8145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306529] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12703), 1, - anon_sym_RBRACE, - STATE(8146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306543] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12705), 1, - sym__identifier, - STATE(8147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306557] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12707), 1, - anon_sym_DASH_GT, - STATE(8148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306571] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3656), 1, - anon_sym_DASH_GT, - STATE(8149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306585] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12709), 1, - anon_sym_DQUOTE, - STATE(8150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306599] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10847), 1, - anon_sym_RBRACE, - STATE(8151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306613] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12711), 1, - anon_sym_SQUOTE, - STATE(8152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306627] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7279), 1, - anon_sym_SQUOTE, - STATE(8153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306641] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12713), 1, - anon_sym_SQUOTE, - STATE(8154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306655] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8983), 1, - anon_sym_end, - STATE(8155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306669] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12715), 1, - anon_sym_RPAREN, - STATE(8156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306683] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12717), 1, - anon_sym_end, - STATE(8157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306697] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12719), 1, - anon_sym_DOT, - STATE(8158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306711] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12721), 1, - anon_sym_DOT, - STATE(8159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306725] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12723), 1, - anon_sym_RPAREN, - STATE(8160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306739] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12725), 1, - anon_sym_with, - STATE(8161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306753] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10837), 1, - anon_sym_RBRACE, - STATE(8162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306767] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12727), 1, - anon_sym_with, - STATE(8163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306781] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12729), 1, - anon_sym_EQ, - STATE(8164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306795] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12731), 1, - anon_sym_RPAREN, - STATE(8165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306809] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12733), 1, - anon_sym_RBRACK, - STATE(8166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306823] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12735), 1, - anon_sym_RBRACE, - STATE(8167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306837] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12737), 1, - anon_sym_RPAREN, - STATE(8168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306851] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12739), 1, - anon_sym_RPAREN, - STATE(8169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306865] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12741), 1, - anon_sym_RBRACE, - STATE(8170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306879] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12743), 1, - anon_sym_RBRACE, - STATE(8171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306893] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12745), 1, - anon_sym_DASH_GT, - STATE(8172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306907] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12747), 1, - anon_sym_RPAREN, - STATE(8173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306921] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12749), 1, - anon_sym_RBRACE, - STATE(8174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306935] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12751), 1, - anon_sym_DOT, - STATE(8175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306949] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12753), 1, - anon_sym_RPAREN, - STATE(8176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306963] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12755), 1, - anon_sym_RBRACK, - STATE(8177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306977] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12757), 1, - anon_sym_RPAREN, - STATE(8178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306991] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12759), 1, - anon_sym_RPAREN, - STATE(8179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307005] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5305), 1, - anon_sym_DASH_GT, - STATE(8180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307019] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12761), 1, - sym__capitalized_identifier, - STATE(8181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307033] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10449), 1, - anon_sym_STAR, - STATE(8182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307047] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8285), 1, - anon_sym_RBRACK, - STATE(8183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307061] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12763), 1, - anon_sym_RPAREN, - STATE(8184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307075] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12765), 1, - anon_sym_RPAREN, - STATE(8185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307089] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12767), 1, - sym__identifier, - STATE(8186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307103] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12769), 1, - anon_sym_RPAREN, - STATE(8187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307117] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12771), 1, - anon_sym_in, - STATE(8188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307131] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12773), 1, - anon_sym_RPAREN, - STATE(8189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307145] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12775), 1, - anon_sym_RPAREN, - STATE(8190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307159] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10827), 1, - anon_sym_RBRACE, - STATE(8191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307173] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5492), 1, - anon_sym_GT, - STATE(8192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307187] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12777), 1, - anon_sym_RBRACE, - STATE(8193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307201] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12779), 1, - anon_sym_DOT, - STATE(8194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307215] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12781), 1, - anon_sym_in, - STATE(8195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307229] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12783), 1, - anon_sym_in, - STATE(8196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307243] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12785), 1, - anon_sym_in, - STATE(8197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307257] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12787), 1, - anon_sym_RPAREN, - STATE(8198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307271] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10813), 1, - anon_sym_RBRACE, - STATE(8199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307285] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12789), 1, - sym__left_quoted_string_delimiter, - STATE(8200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307299] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12791), 1, - anon_sym_RBRACK, - STATE(8201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307313] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12793), 1, - anon_sym_RBRACK, - STATE(8202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307327] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12795), 1, - anon_sym_RBRACK, - STATE(8203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307341] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12797), 1, - anon_sym_RPAREN, - STATE(8204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307355] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12799), 1, - anon_sym_RBRACE, - STATE(8205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307369] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10799), 1, - anon_sym_RBRACE, - STATE(8206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307383] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12801), 1, - anon_sym_RPAREN, - STATE(8207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307397] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12803), 1, - anon_sym_RBRACE, - STATE(8208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307411] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12805), 1, - anon_sym_COLON, - STATE(8209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307425] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10791), 1, - anon_sym_RBRACE, - STATE(8210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307439] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12807), 1, - anon_sym_RPAREN, - STATE(8211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307453] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1783), 1, - anon_sym_end, - STATE(8212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307467] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12809), 1, - anon_sym_RPAREN, - STATE(8213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307481] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12811), 1, - anon_sym_RBRACE, - STATE(8214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307495] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12813), 1, - aux_sym_number_token1, - STATE(8215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307509] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12815), 1, - anon_sym_RBRACK, - STATE(8216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307523] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12817), 1, - anon_sym_RBRACK, - STATE(8217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307537] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12819), 1, - sym__identifier, - STATE(8218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307551] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12821), 1, - anon_sym_RPAREN, - STATE(8219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307565] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12823), 1, - anon_sym_EQ, - STATE(8220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307579] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12825), 1, - anon_sym_GT, - STATE(8221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307593] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12827), 1, - anon_sym_RPAREN, - STATE(8222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307607] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5477), 1, - anon_sym_GT, - STATE(8223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307621] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12829), 1, - sym__right_quoted_string_delimiter, - STATE(8224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307635] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12831), 1, - anon_sym_RBRACE, - STATE(8225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307649] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12833), 1, - anon_sym_RPAREN, - STATE(8226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307663] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12835), 1, - anon_sym_DQUOTE, - STATE(8227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307677] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12837), 1, - anon_sym_end, - STATE(8228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307691] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12839), 1, - anon_sym_of, - STATE(8229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307705] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12841), 1, - anon_sym_SQUOTE, - STATE(8230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307719] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12843), 1, - anon_sym_in, - STATE(8231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307733] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12845), 1, - anon_sym_in, - STATE(8232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307747] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12847), 1, - anon_sym_in, - STATE(8233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307761] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8886), 1, - sym__capitalized_identifier, - STATE(8234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307775] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12849), 1, - anon_sym_RBRACK, - STATE(8235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307789] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12851), 1, - anon_sym_RPAREN, - STATE(8236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307803] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12853), 1, - anon_sym_end, - STATE(8237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307817] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12855), 1, - anon_sym_GT, - STATE(8238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307831] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3882), 1, - anon_sym_DASH_GT, - STATE(8239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307845] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9174), 1, - anon_sym_end, - STATE(8240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307859] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12857), 1, - anon_sym_DASH_GT, - STATE(8241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307873] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12859), 1, - anon_sym_RBRACE, - STATE(8242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307887] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9780), 1, - anon_sym_GT_RBRACE, - STATE(8243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307901] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12861), 1, - anon_sym_DASH_GT, - STATE(8244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307915] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12863), 1, - anon_sym_RPAREN, - STATE(8245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307929] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12865), 1, - anon_sym_DASH_GT, - STATE(8246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307943] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12867), 1, - anon_sym_RBRACE, - STATE(8247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307957] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12869), 1, - sym__identifier, - STATE(8248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307971] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12871), 1, - anon_sym_DOT, - STATE(8249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307985] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4667), 1, - anon_sym_RBRACK, - STATE(8250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307999] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12873), 1, - anon_sym_RPAREN, - STATE(8251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308013] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12875), 1, - anon_sym_RBRACE, - STATE(8252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308027] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12877), 1, - anon_sym_RPAREN, - STATE(8253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308041] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12879), 1, - anon_sym_RPAREN, - STATE(8254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308055] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12881), 1, - anon_sym_RPAREN, - STATE(8255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308069] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12883), 1, - anon_sym_RBRACE, - STATE(8256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308083] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12885), 1, - anon_sym_RPAREN, - STATE(8257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308097] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12887), 1, - anon_sym_RBRACK, - STATE(8258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308111] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12889), 1, - anon_sym_RPAREN, - STATE(8259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308125] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3618), 1, - sym__left_quoted_string_delimiter, - STATE(8260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308139] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12891), 1, - anon_sym_RBRACE, - STATE(8261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308153] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12893), 1, - sym__left_quoted_string_delimiter, - STATE(8262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308167] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12895), 1, - anon_sym_RPAREN, - STATE(8263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308181] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12897), 1, - anon_sym_with, - STATE(8264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308195] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1517), 1, - anon_sym_RPAREN, - STATE(8265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308209] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12899), 1, - anon_sym_PIPE, - STATE(8266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308223] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12901), 1, - anon_sym_PLUS_EQ, - STATE(8267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308237] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12903), 1, - sym__identifier, - STATE(8268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308251] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12905), 1, - anon_sym_GT, - STATE(8269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308265] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12907), 1, - anon_sym_COLON2, - STATE(8270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308279] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12909), 1, - anon_sym_RPAREN, - STATE(8271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308293] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12911), 1, - anon_sym_DOT_DOT, - STATE(8272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308307] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12913), 1, - anon_sym_DOT_DOT, - STATE(8273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308321] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12915), 1, - anon_sym_DOT_DOT, - STATE(8274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308335] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1467), 1, - anon_sym_RPAREN, - STATE(8275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308349] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12917), 1, - aux_sym_number_token1, - STATE(8276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308363] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12919), 1, - anon_sym_done, - STATE(8277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308377] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12921), 1, - anon_sym_in, - STATE(8278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308391] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(2043), 1, - anon_sym_end, - STATE(8279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308405] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10729), 1, - anon_sym_RBRACK, - STATE(8280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308419] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12923), 1, - anon_sym_in, - STATE(8281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308433] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12925), 1, - anon_sym_DASH_GT, - STATE(8282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308447] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12927), 1, - anon_sym_RPAREN, - STATE(8283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308461] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12929), 1, - anon_sym_with, - STATE(8284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308475] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12931), 1, - anon_sym_DASH_GT, - STATE(8285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308489] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12933), 1, - anon_sym_in, - STATE(8286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308503] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1493), 1, - anon_sym_RPAREN, - STATE(8287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308517] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12935), 1, - anon_sym_EQ, - STATE(8288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308531] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8661), 1, - sym__left_quoted_string_delimiter, - STATE(8289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308545] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12937), 1, - anon_sym_DASH_GT, - STATE(8290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308559] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12939), 1, - sym__left_quoted_string_delimiter, - STATE(8291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308573] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12941), 1, - anon_sym_in, - STATE(8292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308587] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4861), 1, - anon_sym_RPAREN, - STATE(8293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308601] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12943), 1, - anon_sym_RPAREN, - STATE(8294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308615] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12945), 1, - anon_sym_PIPE, - STATE(8295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308629] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4857), 1, - anon_sym_RPAREN, - STATE(8296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308643] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12947), 1, - sym__identifier, - STATE(8297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308657] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12949), 1, - anon_sym_in, - STATE(8298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308671] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12951), 1, - anon_sym_EQ, - STATE(8299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308685] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12953), 1, - anon_sym_DOT_DOT, - STATE(8300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308699] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12955), 1, - anon_sym_DOT_DOT, - STATE(8301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308713] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12957), 1, - anon_sym_DOT_DOT, - STATE(8302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308727] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12959), 1, - anon_sym_in, - STATE(8303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308741] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12961), 1, - anon_sym_RPAREN, - STATE(8304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308755] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4653), 1, - anon_sym_RBRACK, - STATE(8305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308769] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4853), 1, - anon_sym_RPAREN, - STATE(8306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308783] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1471), 1, - anon_sym_RPAREN, - STATE(8307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308797] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4849), 1, - anon_sym_RPAREN, - STATE(8308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308811] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12963), 1, - anon_sym_RPAREN, - STATE(8309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308825] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12965), 1, - anon_sym_RBRACE, - STATE(8310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308839] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12967), 1, - sym_indexing_operator, - STATE(8311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308853] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4845), 1, - anon_sym_RPAREN, - STATE(8312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308867] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(4788), 1, - anon_sym_RPAREN, - STATE(8313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308881] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8619), 1, - sym__left_quoted_string_delimiter, - STATE(8314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308895] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12969), 1, - anon_sym_RPAREN, - STATE(8315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308909] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12971), 1, - sym__left_quoted_string_delimiter, - STATE(8316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308923] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12973), 1, - anon_sym_DOT, - STATE(8317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308937] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12975), 1, - anon_sym_RBRACK, - STATE(8318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308951] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12977), 1, - anon_sym_PIPE, - STATE(8319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308965] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12979), 1, - anon_sym_in, - STATE(8320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308979] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12981), 1, - sym__identifier, - STATE(8321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308993] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12983), 1, - anon_sym_RPAREN, - STATE(8322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309007] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12985), 1, - anon_sym_DOT_DOT, - STATE(8323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309021] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12987), 1, - anon_sym_DOT_DOT, - STATE(8324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309035] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12989), 1, - anon_sym_DOT_DOT, - STATE(8325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309049] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10355), 1, - anon_sym_GT_RBRACE, - STATE(8326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309063] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12991), 1, - anon_sym_RPAREN, - STATE(8327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309077] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9714), 1, - anon_sym_GT_RBRACE, - STATE(8328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309091] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12993), 1, - anon_sym_RBRACE, - STATE(8329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309105] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9204), 1, - anon_sym_end, - STATE(8330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309119] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3374), 1, - anon_sym_RBRACK, - STATE(8331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309133] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(5860), 1, - anon_sym_DASH_GT, - STATE(8332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309147] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9178), 1, - anon_sym_end, - STATE(8333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309161] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12995), 1, - anon_sym_SQUOTE, - STATE(8334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309175] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12997), 1, - sym__left_quoted_string_delimiter, - STATE(8335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309189] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(12999), 1, - anon_sym_PIPE, - STATE(8336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309203] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13001), 1, - anon_sym_RPAREN, - STATE(8337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309217] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13003), 1, - sym__identifier, - STATE(8338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309231] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13005), 1, - anon_sym_DQUOTE, - STATE(8339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309245] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13007), 1, - anon_sym_DOT_DOT, - STATE(8340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309259] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13009), 1, - anon_sym_DOT_DOT, - STATE(8341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309273] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13011), 1, - anon_sym_DOT_DOT, - STATE(8342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309287] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13013), 1, - anon_sym_SQUOTE, - STATE(8343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309301] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13015), 1, - anon_sym_RBRACE, - STATE(8344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309315] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13017), 1, - anon_sym_RPAREN, - STATE(8345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309329] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13019), 1, - anon_sym_DQUOTE, - STATE(8346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309343] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7374), 1, - anon_sym_RPAREN, - STATE(8347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309357] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13021), 1, - anon_sym_RBRACK, - STATE(8348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309371] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13023), 1, - anon_sym_RBRACE, - STATE(8349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309385] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13025), 1, - anon_sym_RPAREN, - STATE(8350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309399] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13027), 1, - anon_sym_RPAREN, - STATE(8351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309413] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13029), 1, - sym__left_quoted_string_delimiter, - STATE(8352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309427] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(8353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309441] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13031), 1, - sym__identifier, - STATE(8354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309455] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13033), 1, - anon_sym_RBRACE, - STATE(8355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309469] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13035), 1, - anon_sym_DOT_DOT, - STATE(8356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309483] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13037), 1, - anon_sym_DOT_DOT, - STATE(8357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309497] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13039), 1, - anon_sym_DOT_DOT, - STATE(8358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309511] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13041), 1, - anon_sym_RBRACE, - STATE(8359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309525] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13043), 1, - sym__identifier, - STATE(8360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309539] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13045), 1, - anon_sym_RPAREN, - STATE(8361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309553] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13047), 1, - anon_sym_RBRACK, - STATE(8362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309567] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13049), 1, - anon_sym_RBRACE, - STATE(8363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309581] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13051), 1, - anon_sym_RBRACE, - STATE(8364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309595] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13053), 1, - anon_sym_RBRACK, - STATE(8365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309609] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13055), 1, - anon_sym_RBRACE, - STATE(8366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309623] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13057), 1, - anon_sym_RPAREN, - STATE(8367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309637] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13059), 1, - sym__left_quoted_string_delimiter, - STATE(8368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309651] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13061), 1, - anon_sym_RPAREN, - STATE(8369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309665] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13063), 1, - sym__identifier, - STATE(8370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309679] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13065), 1, - anon_sym_RBRACE, - STATE(8371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309693] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13067), 1, - anon_sym_DOT_DOT, - STATE(8372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309707] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13069), 1, - anon_sym_DOT_DOT, - STATE(8373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309721] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13071), 1, - anon_sym_DOT_DOT, - STATE(8374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309735] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3936), 1, - anon_sym_DASH_GT, - STATE(8375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309749] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13073), 1, - anon_sym_RPAREN, - STATE(8376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309763] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13075), 1, - anon_sym_RPAREN, - STATE(8377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309777] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3854), 1, - anon_sym_DASH_GT, - STATE(8378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309791] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13077), 1, - anon_sym_RPAREN, - STATE(8379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309805] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13079), 1, - anon_sym_DASH_GT, - STATE(8380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309819] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13081), 1, - anon_sym_type, - STATE(8381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309833] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13083), 1, - anon_sym_RBRACE, - STATE(8382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309847] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13085), 1, - anon_sym_in, - STATE(8383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309861] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13087), 1, - sym__left_quoted_string_delimiter, - STATE(8384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309875] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13089), 1, - anon_sym_end, - STATE(8385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309889] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13091), 1, - sym__identifier, - STATE(8386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309903] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13093), 1, - anon_sym_RPAREN, - STATE(8387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309917] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13095), 1, - anon_sym_DOT_DOT, - STATE(8388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309931] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13097), 1, - anon_sym_DOT_DOT, - STATE(8389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309945] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13099), 1, - anon_sym_DOT_DOT, - STATE(8390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309959] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13101), 1, - anon_sym_RPAREN, - STATE(8391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309973] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13103), 1, - anon_sym_RBRACE, - STATE(8392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309987] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13105), 1, - anon_sym_RBRACK, - STATE(8393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310001] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13107), 1, - anon_sym_RBRACE, - STATE(8394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310015] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13109), 1, - anon_sym_RPAREN, - STATE(8395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310029] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10595), 1, - anon_sym_RPAREN, - STATE(8396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310043] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3862), 1, - anon_sym_DASH_GT, - STATE(8397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310057] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13111), 1, - anon_sym_RPAREN, - STATE(8398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310071] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13113), 1, - anon_sym_RBRACE, - STATE(8399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310085] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13115), 1, - sym__left_quoted_string_delimiter, - STATE(8400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310099] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7444), 1, - anon_sym_RPAREN, - STATE(8401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310113] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13117), 1, - anon_sym_RBRACE, - STATE(8402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310127] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13119), 1, - anon_sym_DOT_DOT, - STATE(8403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310141] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13121), 1, - anon_sym_DOT_DOT, - STATE(8404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310155] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13123), 1, - anon_sym_DOT_DOT, - STATE(8405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310169] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13125), 1, - anon_sym_end, - STATE(8406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310183] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13127), 1, - anon_sym_RBRACE, - STATE(8407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310197] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7508), 1, - anon_sym_RPAREN, - STATE(8408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310211] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13129), 1, - anon_sym_RPAREN, - STATE(8409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310225] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13131), 1, - anon_sym_DASH_GT, - STATE(8410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310239] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10619), 1, - anon_sym_RBRACK, - STATE(8411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310253] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13133), 1, - anon_sym_RBRACE, - STATE(8412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310267] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13135), 1, - anon_sym_RBRACK, - STATE(8413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310281] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13137), 1, - anon_sym_end, - STATE(8414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310295] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13139), 1, - sym__left_quoted_string_delimiter, - STATE(8415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310309] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13141), 1, - anon_sym_PLUS_EQ, - STATE(8416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310323] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7622), 1, - sym__right_quoted_string_delimiter, - STATE(8417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310337] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13143), 1, - anon_sym_DOT_DOT, - STATE(8418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310351] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13145), 1, - anon_sym_DOT_DOT, - STATE(8419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310365] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13147), 1, - anon_sym_DOT_DOT, - STATE(8420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310379] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13149), 1, - anon_sym_DASH_GT, - STATE(8421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310393] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3776), 1, - anon_sym_DASH_GT, - STATE(8422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310407] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13151), 1, - anon_sym_RPAREN, - STATE(8423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310421] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13153), 1, - anon_sym_RBRACE, - STATE(8424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310435] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13155), 1, - anon_sym_end, - STATE(8425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310449] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13157), 1, - anon_sym_RBRACE, - STATE(8426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310463] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7448), 1, - anon_sym_RPAREN, - STATE(8427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310477] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13159), 1, - anon_sym_RPAREN, - STATE(8428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310491] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13161), 1, - anon_sym_RBRACE, - STATE(8429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310505] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13163), 1, - sym__left_quoted_string_delimiter, - STATE(8430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310519] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13165), 1, - anon_sym_RBRACK, - STATE(8431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310533] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13167), 1, - anon_sym_RBRACE, - STATE(8432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310547] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13169), 1, - anon_sym_DOT_DOT, - STATE(8433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310561] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13171), 1, - anon_sym_DOT_DOT, - STATE(8434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310575] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13173), 1, - anon_sym_DOT_DOT, - STATE(8435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310589] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13175), 1, - anon_sym_RBRACK, - STATE(8436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310603] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13177), 1, - anon_sym_RPAREN, - STATE(8437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310617] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13179), 1, - anon_sym_DASH_GT, - STATE(8438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310631] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13181), 1, - anon_sym_RPAREN, - STATE(8439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310645] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13183), 1, - sym__left_quoted_string_delimiter, - STATE(8440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310659] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13185), 1, - anon_sym_RPAREN, - STATE(8441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310673] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13187), 1, - anon_sym_RBRACE, - STATE(8442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310687] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13189), 1, - anon_sym_DOT_DOT, - STATE(8443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310701] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13191), 1, - anon_sym_DOT_DOT, - STATE(8444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310715] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13193), 1, - anon_sym_DOT_DOT, - STATE(8445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310729] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13195), 1, - anon_sym_RBRACE, - STATE(8446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310743] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13197), 1, - anon_sym_RPAREN, - STATE(8447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310757] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13199), 1, - anon_sym_RBRACK, - STATE(8448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310771] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13201), 1, - sym__identifier, - STATE(8449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310785] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13203), 1, - sym__left_quoted_string_delimiter, - STATE(8450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310799] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13205), 1, - anon_sym_DASH_GT, - STATE(8451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310813] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13207), 1, - anon_sym_DQUOTE, - STATE(8452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310827] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13209), 1, - anon_sym_DOT_DOT, - STATE(8453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310841] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13211), 1, - anon_sym_DOT_DOT, - STATE(8454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310855] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13213), 1, - anon_sym_DOT_DOT, - STATE(8455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310869] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13215), 1, - anon_sym_RPAREN, - STATE(8456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310883] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13217), 1, - anon_sym_RPAREN, - STATE(8457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310897] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13219), 1, - anon_sym_SQUOTE, - STATE(8458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310911] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13221), 1, - sym__left_quoted_string_delimiter, - STATE(8459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310925] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13223), 1, - anon_sym_DASH_GT, - STATE(8460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310939] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13225), 1, - anon_sym_DOT_DOT, - STATE(8461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310953] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13227), 1, - anon_sym_DOT_DOT, - STATE(8462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310967] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13229), 1, - anon_sym_DOT_DOT, - STATE(8463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310981] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13231), 1, - anon_sym_RPAREN, - STATE(8464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310995] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9299), 1, - anon_sym_end, - STATE(8465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311009] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13233), 1, - sym__left_quoted_string_delimiter, - STATE(8466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311023] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13235), 1, - anon_sym_DOT_DOT, - STATE(8467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311037] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13237), 1, - anon_sym_DOT_DOT, - STATE(8468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311051] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13239), 1, - anon_sym_DOT_DOT, - STATE(8469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311065] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13241), 1, - anon_sym_RPAREN, - STATE(8470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311079] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9524), 1, - anon_sym_GT_RBRACE, - STATE(8471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311093] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13243), 1, - sym__left_quoted_string_delimiter, - STATE(8472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311107] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13245), 1, - anon_sym_DOT_DOT, - STATE(8473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311121] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13247), 1, - anon_sym_DOT_DOT, - STATE(8474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311135] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13249), 1, - anon_sym_DOT_DOT, - STATE(8475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311149] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13251), 1, - anon_sym_RBRACK, - STATE(8476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311163] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13253), 1, - anon_sym_RPAREN, - STATE(8477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311177] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13255), 1, - sym__left_quoted_string_delimiter, - STATE(8478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311191] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13257), 1, - anon_sym_DOT_DOT, - STATE(8479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311205] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13259), 1, - anon_sym_DOT_DOT, - STATE(8480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311219] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13261), 1, - anon_sym_DOT_DOT, - STATE(8481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311233] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13263), 1, - anon_sym_RBRACE, - STATE(8482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311247] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13265), 1, - anon_sym_RBRACK, - STATE(8483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311261] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13267), 1, - sym__left_quoted_string_delimiter, - STATE(8484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311275] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13269), 1, - anon_sym_DOT_DOT, - STATE(8485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311289] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13271), 1, - anon_sym_DOT_DOT, - STATE(8486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311303] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13273), 1, - anon_sym_DOT_DOT, - STATE(8487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311317] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13275), 1, - anon_sym_RPAREN, - STATE(8488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311331] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13277), 1, - anon_sym_RBRACE, - STATE(8489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311345] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13279), 1, - sym__left_quoted_string_delimiter, - STATE(8490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311359] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13281), 1, - anon_sym_DOT_DOT, - STATE(8491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311373] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13283), 1, - anon_sym_DOT_DOT, - STATE(8492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311387] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13285), 1, - anon_sym_DOT_DOT, - STATE(8493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311401] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13287), 1, - anon_sym_RBRACE, - STATE(8494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311415] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13289), 1, - anon_sym_RPAREN, - STATE(8495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311429] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13291), 1, - sym__left_quoted_string_delimiter, - STATE(8496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311443] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13293), 1, - anon_sym_DOT_DOT, - STATE(8497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311457] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13295), 1, - anon_sym_DOT_DOT, - STATE(8498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311471] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13297), 1, - anon_sym_DOT_DOT, - STATE(8499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311485] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13299), 1, - anon_sym_RPAREN, - STATE(8500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311499] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13301), 1, - anon_sym_RPAREN, - STATE(8501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311513] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13303), 1, - sym__left_quoted_string_delimiter, - STATE(8502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311527] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13305), 1, - anon_sym_DOT_DOT, - STATE(8503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311541] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13307), 1, - anon_sym_DOT_DOT, - STATE(8504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311555] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13309), 1, - anon_sym_DOT_DOT, - STATE(8505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311569] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13311), 1, - anon_sym_in, - STATE(8506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311583] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13313), 1, - sym__left_quoted_string_delimiter, - STATE(8507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311597] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13315), 1, - anon_sym_RPAREN, - STATE(8508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311611] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13317), 1, - sym__left_quoted_string_delimiter, - STATE(8509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311625] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3652), 1, - anon_sym_DASH_GT, - STATE(8510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311639] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13319), 1, - sym__left_quoted_string_delimiter, - STATE(8511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311653] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13321), 1, - anon_sym_RPAREN, - STATE(8512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311667] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13323), 1, - sym__left_quoted_string_delimiter, - STATE(8513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311681] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1763), 1, - anon_sym_end, - STATE(8514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311695] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13325), 1, - sym__left_quoted_string_delimiter, - STATE(8515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311709] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13327), 1, - anon_sym_STAR, - STATE(8516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311723] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13329), 1, - anon_sym_in, - STATE(8517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311737] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13331), 1, - anon_sym_in, - STATE(8518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311751] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13333), 1, - anon_sym_RBRACE, - STATE(8519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311765] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13335), 1, - anon_sym_in, - STATE(8520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311779] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13337), 1, - anon_sym_PLUS_EQ, - STATE(8521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311793] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13339), 1, - anon_sym_RBRACE, - STATE(8522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311807] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13341), 1, - anon_sym_RPAREN, - STATE(8523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311821] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13343), 1, - anon_sym_RBRACE, - STATE(8524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311835] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13345), 1, - sym_indexing_operator, - STATE(8525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311849] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13343), 1, - anon_sym_RBRACK, - STATE(8526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311863] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13347), 1, - anon_sym_PLUS_EQ, - STATE(8527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311877] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13349), 1, - anon_sym_RPAREN, - STATE(8528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311891] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13351), 1, - anon_sym_RPAREN, - STATE(8529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311905] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(1487), 1, - anon_sym_RPAREN, - STATE(8530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311919] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13353), 1, - anon_sym_in, - STATE(8531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311933] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8210), 1, - anon_sym_GT, - STATE(8532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311947] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13343), 1, - anon_sym_RPAREN, - STATE(8533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311961] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13355), 1, - anon_sym_RPAREN, - STATE(8534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311975] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13357), 1, - sym__identifier, - STATE(8535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311989] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13359), 1, - anon_sym_RBRACK, - STATE(8536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312003] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13361), 1, - anon_sym_RPAREN, - STATE(8537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312017] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13363), 1, - anon_sym_RBRACE, - STATE(8538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312031] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13365), 1, - ts_builtin_sym_end, - STATE(8539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312045] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13367), 1, - ts_builtin_sym_end, - STATE(8540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312059] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13369), 1, - anon_sym_RPAREN, - STATE(8541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312073] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13371), 1, - anon_sym_RBRACE, - STATE(8542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312087] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13373), 1, - anon_sym_in, - STATE(8543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312101] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13375), 1, - anon_sym_RPAREN, - STATE(8544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312115] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(995), 1, - anon_sym_DASH_GT, - STATE(8545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312129] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(10399), 1, - anon_sym_GT_RBRACE, - STATE(8546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312143] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13377), 1, - anon_sym_RPAREN, - STATE(8547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312157] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9070), 1, - anon_sym_end, - STATE(8548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312171] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13379), 1, - anon_sym_SQUOTE, - STATE(8549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312185] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13381), 1, - anon_sym_RPAREN, - STATE(8550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312199] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13383), 1, - sym_indexing_operator, - STATE(8551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312213] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13385), 1, - sym__identifier, - STATE(8552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312227] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(11093), 1, - aux_sym_number_token1, - STATE(8553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312241] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(697), 1, - anon_sym_end, - STATE(8554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312255] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13387), 1, - anon_sym_DQUOTE, - STATE(8555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312269] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13389), 1, - sym_indexing_operator, - STATE(8556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312283] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13391), 1, - anon_sym_COLON, - STATE(8557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312297] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13393), 1, - anon_sym_in, - STATE(8558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312311] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13395), 1, - sym__right_quoted_string_delimiter, - STATE(8559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312325] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13397), 1, - sym_indexing_operator, - STATE(8560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312339] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(587), 1, - anon_sym_COLON_COLON, - STATE(8561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312353] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13399), 1, - sym_indexing_operator, - STATE(8562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312367] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13401), 1, - anon_sym_RBRACE, - STATE(8563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312381] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13403), 1, - sym_indexing_operator, - STATE(8564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312395] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13405), 1, - anon_sym_RPAREN, - STATE(8565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312409] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13407), 1, - sym_indexing_operator, - STATE(8566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312423] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13409), 1, - anon_sym_RBRACE, - STATE(8567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312437] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13411), 1, - sym_indexing_operator, - STATE(8568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312451] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13413), 1, - anon_sym_RBRACK, - STATE(8569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312465] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13415), 1, - sym_indexing_operator, - STATE(8570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312479] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13417), 1, - anon_sym_RPAREN, - STATE(8571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312493] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13419), 1, - sym_indexing_operator, - STATE(8572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312507] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13421), 1, - anon_sym_RPAREN, - STATE(8573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312521] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13423), 1, - sym_indexing_operator, - STATE(8574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312535] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13425), 1, - anon_sym_RBRACE, - STATE(8575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312549] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13427), 1, - sym_indexing_operator, - STATE(8576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312563] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13429), 1, - sym__identifier, - STATE(8577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312577] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13431), 1, - sym_indexing_operator, - STATE(8578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312591] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13433), 1, - anon_sym_RPAREN, - STATE(8579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312605] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13435), 1, - sym_indexing_operator, - STATE(8580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312619] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13437), 1, - anon_sym_RPAREN, - STATE(8581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312633] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13439), 1, - sym_indexing_operator, - STATE(8582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312647] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13441), 1, - anon_sym_RBRACE, - STATE(8583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312661] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13443), 1, - sym_indexing_operator, - STATE(8584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312675] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13445), 1, - anon_sym_RBRACK, - STATE(8585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312689] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13447), 1, - sym_indexing_operator, - STATE(8586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312703] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13449), 1, - anon_sym_RPAREN, - STATE(8587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312717] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13451), 1, - sym_indexing_operator, - STATE(8588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312731] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13453), 1, - anon_sym_RBRACE, - STATE(8589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312745] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13455), 1, - sym_indexing_operator, - STATE(8590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312759] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13457), 1, - anon_sym_RBRACK, - STATE(8591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312773] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13459), 1, - sym_indexing_operator, - STATE(8592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312787] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7422), 1, - anon_sym_RPAREN, - STATE(8593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312801] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13461), 1, - sym_indexing_operator, - STATE(8594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312815] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13463), 1, - anon_sym_RBRACE, - STATE(8595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312829] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13465), 1, - anon_sym_end, - STATE(8596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312843] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13467), 1, - anon_sym_RBRACE, - STATE(8597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312857] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13469), 1, - anon_sym_RBRACE, - STATE(8598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312871] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(8395), 1, - anon_sym_RPAREN, - STATE(8599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312885] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13471), 1, - anon_sym_RBRACK, - STATE(8600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312899] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13473), 1, - anon_sym_in, - STATE(8601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312913] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13475), 1, - sym__identifier, - STATE(8602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312927] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(3912), 1, - anon_sym_DASH_GT, - STATE(8603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312941] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13477), 1, - anon_sym_RPAREN, - STATE(8604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312955] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13479), 1, - anon_sym_DQUOTE, - STATE(8605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312969] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13481), 1, - anon_sym_RBRACK, - STATE(8606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312983] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13483), 1, - anon_sym_SQUOTE, - STATE(8607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312997] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13485), 1, - anon_sym_DASH_GT, - STATE(8608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313011] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13487), 1, - anon_sym_EQ, - STATE(8609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313025] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13489), 1, - anon_sym_in, - STATE(8610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313039] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13491), 1, - anon_sym_RPAREN, - STATE(8611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313053] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13493), 1, - anon_sym_in, - STATE(8612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313067] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13495), 1, - anon_sym_EQ, - STATE(8613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313081] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13497), 1, - sym__identifier, - STATE(8614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313095] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13499), 1, - anon_sym_DASH_GT, - STATE(8615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313109] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13501), 1, - anon_sym_EQ, - STATE(8616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313123] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13503), 1, - anon_sym_EQ, - STATE(8617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313137] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13505), 1, - anon_sym_EQ, - STATE(8618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313151] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13507), 1, - anon_sym_EQ, - STATE(8619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313165] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9369), 1, - anon_sym_end, - STATE(8620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313179] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13509), 1, - anon_sym_DQUOTE, - STATE(8621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313193] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13511), 1, - anon_sym_SQUOTE, - STATE(8622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313207] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9388), 1, - anon_sym_end, - STATE(8623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313221] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9416), 1, - anon_sym_GT_RBRACE, - STATE(8624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313235] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13513), 1, - anon_sym_end, - STATE(8625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313249] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(9408), 1, - anon_sym_GT_RBRACE, - STATE(8626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313263] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13515), 1, - anon_sym_RBRACE, - STATE(8627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313277] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(7562), 1, - anon_sym_RPAREN, - STATE(8628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313291] = 4, - ACTIONS(309), 1, - anon_sym_LBRACK_AT, - ACTIONS(13517), 1, - anon_sym_RPAREN, - STATE(8629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313305] = 1, - ACTIONS(13519), 1, - ts_builtin_sym_end, - [313309] = 1, - ACTIONS(13521), 1, - ts_builtin_sym_end, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1560)] = 0, - [SMALL_STATE(1561)] = 137, - [SMALL_STATE(1562)] = 274, - [SMALL_STATE(1563)] = 411, - [SMALL_STATE(1564)] = 548, - [SMALL_STATE(1565)] = 693, - [SMALL_STATE(1566)] = 838, - [SMALL_STATE(1567)] = 975, - [SMALL_STATE(1568)] = 1112, - [SMALL_STATE(1569)] = 1249, - [SMALL_STATE(1570)] = 1386, - [SMALL_STATE(1571)] = 1523, - [SMALL_STATE(1572)] = 1660, - [SMALL_STATE(1573)] = 1797, - [SMALL_STATE(1574)] = 1934, - [SMALL_STATE(1575)] = 2071, - [SMALL_STATE(1576)] = 2216, - [SMALL_STATE(1577)] = 2353, - [SMALL_STATE(1578)] = 2490, - [SMALL_STATE(1579)] = 2627, - [SMALL_STATE(1580)] = 2764, - [SMALL_STATE(1581)] = 2901, - [SMALL_STATE(1582)] = 3038, - [SMALL_STATE(1583)] = 3175, - [SMALL_STATE(1584)] = 3312, - [SMALL_STATE(1585)] = 3449, - [SMALL_STATE(1586)] = 3586, - [SMALL_STATE(1587)] = 3723, - [SMALL_STATE(1588)] = 3860, - [SMALL_STATE(1589)] = 3997, - [SMALL_STATE(1590)] = 4134, - [SMALL_STATE(1591)] = 4271, - [SMALL_STATE(1592)] = 4408, - [SMALL_STATE(1593)] = 4543, - [SMALL_STATE(1594)] = 4680, - [SMALL_STATE(1595)] = 4815, - [SMALL_STATE(1596)] = 4952, - [SMALL_STATE(1597)] = 5089, - [SMALL_STATE(1598)] = 5226, - [SMALL_STATE(1599)] = 5363, - [SMALL_STATE(1600)] = 5500, - [SMALL_STATE(1601)] = 5637, - [SMALL_STATE(1602)] = 5774, - [SMALL_STATE(1603)] = 5911, - [SMALL_STATE(1604)] = 6048, - [SMALL_STATE(1605)] = 6185, - [SMALL_STATE(1606)] = 6322, - [SMALL_STATE(1607)] = 6459, - [SMALL_STATE(1608)] = 6596, - [SMALL_STATE(1609)] = 6733, - [SMALL_STATE(1610)] = 6870, - [SMALL_STATE(1611)] = 7007, - [SMALL_STATE(1612)] = 7142, - [SMALL_STATE(1613)] = 7277, - [SMALL_STATE(1614)] = 7414, - [SMALL_STATE(1615)] = 7559, - [SMALL_STATE(1616)] = 7696, - [SMALL_STATE(1617)] = 7833, - [SMALL_STATE(1618)] = 7970, - [SMALL_STATE(1619)] = 8107, - [SMALL_STATE(1620)] = 8244, - [SMALL_STATE(1621)] = 8389, - [SMALL_STATE(1622)] = 8526, - [SMALL_STATE(1623)] = 8663, - [SMALL_STATE(1624)] = 8800, - [SMALL_STATE(1625)] = 8937, - [SMALL_STATE(1626)] = 9074, - [SMALL_STATE(1627)] = 9211, - [SMALL_STATE(1628)] = 9348, - [SMALL_STATE(1629)] = 9485, - [SMALL_STATE(1630)] = 9619, - [SMALL_STATE(1631)] = 9753, - [SMALL_STATE(1632)] = 9887, - [SMALL_STATE(1633)] = 10021, - [SMALL_STATE(1634)] = 10155, - [SMALL_STATE(1635)] = 10289, - [SMALL_STATE(1636)] = 10423, - [SMALL_STATE(1637)] = 10557, - [SMALL_STATE(1638)] = 10691, - [SMALL_STATE(1639)] = 10825, - [SMALL_STATE(1640)] = 10959, - [SMALL_STATE(1641)] = 11090, - [SMALL_STATE(1642)] = 11221, - [SMALL_STATE(1643)] = 11352, - [SMALL_STATE(1644)] = 11483, - [SMALL_STATE(1645)] = 11614, - [SMALL_STATE(1646)] = 11745, - [SMALL_STATE(1647)] = 11876, - [SMALL_STATE(1648)] = 12007, - [SMALL_STATE(1649)] = 12134, - [SMALL_STATE(1650)] = 12265, - [SMALL_STATE(1651)] = 12396, - [SMALL_STATE(1652)] = 12527, - [SMALL_STATE(1653)] = 12658, - [SMALL_STATE(1654)] = 12785, - [SMALL_STATE(1655)] = 12916, - [SMALL_STATE(1656)] = 13047, - [SMALL_STATE(1657)] = 13174, - [SMALL_STATE(1658)] = 13305, - [SMALL_STATE(1659)] = 13436, - [SMALL_STATE(1660)] = 13563, - [SMALL_STATE(1661)] = 13690, - [SMALL_STATE(1662)] = 13817, - [SMALL_STATE(1663)] = 13948, - [SMALL_STATE(1664)] = 14075, - [SMALL_STATE(1665)] = 14214, - [SMALL_STATE(1666)] = 14345, - [SMALL_STATE(1667)] = 14476, - [SMALL_STATE(1668)] = 14607, - [SMALL_STATE(1669)] = 14734, - [SMALL_STATE(1670)] = 14861, - [SMALL_STATE(1671)] = 14992, - [SMALL_STATE(1672)] = 15119, - [SMALL_STATE(1673)] = 15246, - [SMALL_STATE(1674)] = 15377, - [SMALL_STATE(1675)] = 15508, - [SMALL_STATE(1676)] = 15639, - [SMALL_STATE(1677)] = 15770, - [SMALL_STATE(1678)] = 15897, - [SMALL_STATE(1679)] = 16028, - [SMALL_STATE(1680)] = 16159, - [SMALL_STATE(1681)] = 16290, - [SMALL_STATE(1682)] = 16421, - [SMALL_STATE(1683)] = 16552, - [SMALL_STATE(1684)] = 16679, - [SMALL_STATE(1685)] = 16810, - [SMALL_STATE(1686)] = 16941, - [SMALL_STATE(1687)] = 17072, - [SMALL_STATE(1688)] = 17203, - [SMALL_STATE(1689)] = 17334, - [SMALL_STATE(1690)] = 17465, - [SMALL_STATE(1691)] = 17596, - [SMALL_STATE(1692)] = 17727, - [SMALL_STATE(1693)] = 17858, - [SMALL_STATE(1694)] = 17989, - [SMALL_STATE(1695)] = 18116, - [SMALL_STATE(1696)] = 18247, - [SMALL_STATE(1697)] = 18378, - [SMALL_STATE(1698)] = 18509, - [SMALL_STATE(1699)] = 18640, - [SMALL_STATE(1700)] = 18767, - [SMALL_STATE(1701)] = 18898, - [SMALL_STATE(1702)] = 19029, - [SMALL_STATE(1703)] = 19160, - [SMALL_STATE(1704)] = 19291, - [SMALL_STATE(1705)] = 19419, - [SMALL_STATE(1706)] = 19547, - [SMALL_STATE(1707)] = 19675, - [SMALL_STATE(1708)] = 19799, - [SMALL_STATE(1709)] = 19927, - [SMALL_STATE(1710)] = 20055, - [SMALL_STATE(1711)] = 20183, - [SMALL_STATE(1712)] = 20311, - [SMALL_STATE(1713)] = 20439, - [SMALL_STATE(1714)] = 20511, - [SMALL_STATE(1715)] = 20583, - [SMALL_STATE(1716)] = 20711, - [SMALL_STATE(1717)] = 20835, - [SMALL_STATE(1718)] = 20963, - [SMALL_STATE(1719)] = 21091, - [SMALL_STATE(1720)] = 21219, - [SMALL_STATE(1721)] = 21347, - [SMALL_STATE(1722)] = 21475, - [SMALL_STATE(1723)] = 21599, - [SMALL_STATE(1724)] = 21723, - [SMALL_STATE(1725)] = 21851, - [SMALL_STATE(1726)] = 21975, - [SMALL_STATE(1727)] = 22099, - [SMALL_STATE(1728)] = 22227, - [SMALL_STATE(1729)] = 22355, - [SMALL_STATE(1730)] = 22483, - [SMALL_STATE(1731)] = 22611, - [SMALL_STATE(1732)] = 22683, - [SMALL_STATE(1733)] = 22807, - [SMALL_STATE(1734)] = 22935, - [SMALL_STATE(1735)] = 23063, - [SMALL_STATE(1736)] = 23187, - [SMALL_STATE(1737)] = 23311, - [SMALL_STATE(1738)] = 23439, - [SMALL_STATE(1739)] = 23563, - [SMALL_STATE(1740)] = 23691, - [SMALL_STATE(1741)] = 23819, - [SMALL_STATE(1742)] = 23891, - [SMALL_STATE(1743)] = 24015, - [SMALL_STATE(1744)] = 24139, - [SMALL_STATE(1745)] = 24263, - [SMALL_STATE(1746)] = 24387, - [SMALL_STATE(1747)] = 24515, - [SMALL_STATE(1748)] = 24643, - [SMALL_STATE(1749)] = 24771, - [SMALL_STATE(1750)] = 24899, - [SMALL_STATE(1751)] = 25027, - [SMALL_STATE(1752)] = 25155, - [SMALL_STATE(1753)] = 25283, - [SMALL_STATE(1754)] = 25407, - [SMALL_STATE(1755)] = 25535, - [SMALL_STATE(1756)] = 25663, - [SMALL_STATE(1757)] = 25791, - [SMALL_STATE(1758)] = 25919, - [SMALL_STATE(1759)] = 26047, - [SMALL_STATE(1760)] = 26171, - [SMALL_STATE(1761)] = 26299, - [SMALL_STATE(1762)] = 26427, - [SMALL_STATE(1763)] = 26555, - [SMALL_STATE(1764)] = 26683, - [SMALL_STATE(1765)] = 26807, - [SMALL_STATE(1766)] = 26935, - [SMALL_STATE(1767)] = 27063, - [SMALL_STATE(1768)] = 27191, - [SMALL_STATE(1769)] = 27319, - [SMALL_STATE(1770)] = 27447, - [SMALL_STATE(1771)] = 27575, - [SMALL_STATE(1772)] = 27703, - [SMALL_STATE(1773)] = 27827, - [SMALL_STATE(1774)] = 27955, - [SMALL_STATE(1775)] = 28079, - [SMALL_STATE(1776)] = 28207, - [SMALL_STATE(1777)] = 28335, - [SMALL_STATE(1778)] = 28459, - [SMALL_STATE(1779)] = 28587, - [SMALL_STATE(1780)] = 28715, - [SMALL_STATE(1781)] = 28839, - [SMALL_STATE(1782)] = 28967, - [SMALL_STATE(1783)] = 29091, - [SMALL_STATE(1784)] = 29164, - [SMALL_STATE(1785)] = 29237, - [SMALL_STATE(1786)] = 29370, - [SMALL_STATE(1787)] = 29491, - [SMALL_STATE(1788)] = 29612, - [SMALL_STATE(1789)] = 29745, - [SMALL_STATE(1790)] = 29866, - [SMALL_STATE(1791)] = 29999, - [SMALL_STATE(1792)] = 30120, - [SMALL_STATE(1793)] = 30253, - [SMALL_STATE(1794)] = 30386, - [SMALL_STATE(1795)] = 30507, - [SMALL_STATE(1796)] = 30640, - [SMALL_STATE(1797)] = 30773, - [SMALL_STATE(1798)] = 30906, - [SMALL_STATE(1799)] = 31039, - [SMALL_STATE(1800)] = 31172, - [SMALL_STATE(1801)] = 31305, - [SMALL_STATE(1802)] = 31426, - [SMALL_STATE(1803)] = 31559, - [SMALL_STATE(1804)] = 31692, - [SMALL_STATE(1805)] = 31825, - [SMALL_STATE(1806)] = 31958, - [SMALL_STATE(1807)] = 32091, - [SMALL_STATE(1808)] = 32212, - [SMALL_STATE(1809)] = 32283, - [SMALL_STATE(1810)] = 32354, - [SMALL_STATE(1811)] = 32425, - [SMALL_STATE(1812)] = 32496, - [SMALL_STATE(1813)] = 32629, - [SMALL_STATE(1814)] = 32700, - [SMALL_STATE(1815)] = 32771, - [SMALL_STATE(1816)] = 32904, - [SMALL_STATE(1817)] = 33037, - [SMALL_STATE(1818)] = 33170, - [SMALL_STATE(1819)] = 33291, - [SMALL_STATE(1820)] = 33424, - [SMALL_STATE(1821)] = 33557, - [SMALL_STATE(1822)] = 33678, - [SMALL_STATE(1823)] = 33749, - [SMALL_STATE(1824)] = 33882, - [SMALL_STATE(1825)] = 34015, - [SMALL_STATE(1826)] = 34136, - [SMALL_STATE(1827)] = 34207, - [SMALL_STATE(1828)] = 34278, - [SMALL_STATE(1829)] = 34411, - [SMALL_STATE(1830)] = 34532, - [SMALL_STATE(1831)] = 34653, - [SMALL_STATE(1832)] = 34774, - [SMALL_STATE(1833)] = 34907, - [SMALL_STATE(1834)] = 35040, - [SMALL_STATE(1835)] = 35173, - [SMALL_STATE(1836)] = 35294, - [SMALL_STATE(1837)] = 35427, - [SMALL_STATE(1838)] = 35548, - [SMALL_STATE(1839)] = 35681, - [SMALL_STATE(1840)] = 35751, - [SMALL_STATE(1841)] = 35869, - [SMALL_STATE(1842)] = 35999, - [SMALL_STATE(1843)] = 36075, - [SMALL_STATE(1844)] = 36205, - [SMALL_STATE(1845)] = 36323, - [SMALL_STATE(1846)] = 36441, - [SMALL_STATE(1847)] = 36573, - [SMALL_STATE(1848)] = 36691, - [SMALL_STATE(1849)] = 36823, - [SMALL_STATE(1850)] = 36941, - [SMALL_STATE(1851)] = 37073, - [SMALL_STATE(1852)] = 37203, - [SMALL_STATE(1853)] = 37333, - [SMALL_STATE(1854)] = 37463, - [SMALL_STATE(1855)] = 37535, - [SMALL_STATE(1856)] = 37667, - [SMALL_STATE(1857)] = 37797, - [SMALL_STATE(1858)] = 37915, - [SMALL_STATE(1859)] = 38045, - [SMALL_STATE(1860)] = 38175, - [SMALL_STATE(1861)] = 38305, - [SMALL_STATE(1862)] = 38375, - [SMALL_STATE(1863)] = 38505, - [SMALL_STATE(1864)] = 38637, - [SMALL_STATE(1865)] = 38767, - [SMALL_STATE(1866)] = 38897, - [SMALL_STATE(1867)] = 39029, - [SMALL_STATE(1868)] = 39161, - [SMALL_STATE(1869)] = 39279, - [SMALL_STATE(1870)] = 39349, - [SMALL_STATE(1871)] = 39419, - [SMALL_STATE(1872)] = 39489, - [SMALL_STATE(1873)] = 39559, - [SMALL_STATE(1874)] = 39635, - [SMALL_STATE(1875)] = 39705, - [SMALL_STATE(1876)] = 39775, - [SMALL_STATE(1877)] = 39905, - [SMALL_STATE(1878)] = 40035, - [SMALL_STATE(1879)] = 40153, - [SMALL_STATE(1880)] = 40271, - [SMALL_STATE(1881)] = 40389, - [SMALL_STATE(1882)] = 40459, - [SMALL_STATE(1883)] = 40591, - [SMALL_STATE(1884)] = 40723, - [SMALL_STATE(1885)] = 40793, - [SMALL_STATE(1886)] = 40863, - [SMALL_STATE(1887)] = 40933, - [SMALL_STATE(1888)] = 41003, - [SMALL_STATE(1889)] = 41133, - [SMALL_STATE(1890)] = 41265, - [SMALL_STATE(1891)] = 41397, - [SMALL_STATE(1892)] = 41527, - [SMALL_STATE(1893)] = 41645, - [SMALL_STATE(1894)] = 41763, - [SMALL_STATE(1895)] = 41833, - [SMALL_STATE(1896)] = 41965, - [SMALL_STATE(1897)] = 42035, - [SMALL_STATE(1898)] = 42105, - [SMALL_STATE(1899)] = 42175, - [SMALL_STATE(1900)] = 42247, - [SMALL_STATE(1901)] = 42377, - [SMALL_STATE(1902)] = 42447, - [SMALL_STATE(1903)] = 42565, - [SMALL_STATE(1904)] = 42697, - [SMALL_STATE(1905)] = 42815, - [SMALL_STATE(1906)] = 42933, - [SMALL_STATE(1907)] = 43063, - [SMALL_STATE(1908)] = 43181, - [SMALL_STATE(1909)] = 43313, - [SMALL_STATE(1910)] = 43431, - [SMALL_STATE(1911)] = 43549, - [SMALL_STATE(1912)] = 43667, - [SMALL_STATE(1913)] = 43737, - [SMALL_STATE(1914)] = 43807, - [SMALL_STATE(1915)] = 43939, - [SMALL_STATE(1916)] = 44069, - [SMALL_STATE(1917)] = 44187, - [SMALL_STATE(1918)] = 44317, - [SMALL_STATE(1919)] = 44435, - [SMALL_STATE(1920)] = 44565, - [SMALL_STATE(1921)] = 44683, - [SMALL_STATE(1922)] = 44813, - [SMALL_STATE(1923)] = 44883, - [SMALL_STATE(1924)] = 45001, - [SMALL_STATE(1925)] = 45119, - [SMALL_STATE(1926)] = 45237, - [SMALL_STATE(1927)] = 45307, - [SMALL_STATE(1928)] = 45425, - [SMALL_STATE(1929)] = 45543, - [SMALL_STATE(1930)] = 45613, - [SMALL_STATE(1931)] = 45731, - [SMALL_STATE(1932)] = 45863, - [SMALL_STATE(1933)] = 45981, - [SMALL_STATE(1934)] = 46099, - [SMALL_STATE(1935)] = 46217, - [SMALL_STATE(1936)] = 46287, - [SMALL_STATE(1937)] = 46359, - [SMALL_STATE(1938)] = 46429, - [SMALL_STATE(1939)] = 46499, - [SMALL_STATE(1940)] = 46569, - [SMALL_STATE(1941)] = 46639, - [SMALL_STATE(1942)] = 46709, - [SMALL_STATE(1943)] = 46779, - [SMALL_STATE(1944)] = 46849, - [SMALL_STATE(1945)] = 46919, - [SMALL_STATE(1946)] = 46989, - [SMALL_STATE(1947)] = 47121, - [SMALL_STATE(1948)] = 47191, - [SMALL_STATE(1949)] = 47323, - [SMALL_STATE(1950)] = 47441, - [SMALL_STATE(1951)] = 47571, - [SMALL_STATE(1952)] = 47703, - [SMALL_STATE(1953)] = 47775, - [SMALL_STATE(1954)] = 47845, - [SMALL_STATE(1955)] = 47963, - [SMALL_STATE(1956)] = 48033, - [SMALL_STATE(1957)] = 48163, - [SMALL_STATE(1958)] = 48233, - [SMALL_STATE(1959)] = 48303, - [SMALL_STATE(1960)] = 48433, - [SMALL_STATE(1961)] = 48503, - [SMALL_STATE(1962)] = 48621, - [SMALL_STATE(1963)] = 48753, - [SMALL_STATE(1964)] = 48823, - [SMALL_STATE(1965)] = 48941, - [SMALL_STATE(1966)] = 49059, - [SMALL_STATE(1967)] = 49129, - [SMALL_STATE(1968)] = 49199, - [SMALL_STATE(1969)] = 49269, - [SMALL_STATE(1970)] = 49339, - [SMALL_STATE(1971)] = 49409, - [SMALL_STATE(1972)] = 49539, - [SMALL_STATE(1973)] = 49657, - [SMALL_STATE(1974)] = 49787, - [SMALL_STATE(1975)] = 49905, - [SMALL_STATE(1976)] = 49975, - [SMALL_STATE(1977)] = 50045, - [SMALL_STATE(1978)] = 50115, - [SMALL_STATE(1979)] = 50185, - [SMALL_STATE(1980)] = 50317, - [SMALL_STATE(1981)] = 50387, - [SMALL_STATE(1982)] = 50457, - [SMALL_STATE(1983)] = 50527, - [SMALL_STATE(1984)] = 50597, - [SMALL_STATE(1985)] = 50667, - [SMALL_STATE(1986)] = 50737, - [SMALL_STATE(1987)] = 50855, - [SMALL_STATE(1988)] = 50987, - [SMALL_STATE(1989)] = 51057, - [SMALL_STATE(1990)] = 51187, - [SMALL_STATE(1991)] = 51259, - [SMALL_STATE(1992)] = 51391, - [SMALL_STATE(1993)] = 51461, - [SMALL_STATE(1994)] = 51531, - [SMALL_STATE(1995)] = 51601, - [SMALL_STATE(1996)] = 51671, - [SMALL_STATE(1997)] = 51741, - [SMALL_STATE(1998)] = 51811, - [SMALL_STATE(1999)] = 51941, - [SMALL_STATE(2000)] = 52059, - [SMALL_STATE(2001)] = 52189, - [SMALL_STATE(2002)] = 52307, - [SMALL_STATE(2003)] = 52379, - [SMALL_STATE(2004)] = 52511, - [SMALL_STATE(2005)] = 52629, - [SMALL_STATE(2006)] = 52759, - [SMALL_STATE(2007)] = 52829, - [SMALL_STATE(2008)] = 52899, - [SMALL_STATE(2009)] = 52969, - [SMALL_STATE(2010)] = 53039, - [SMALL_STATE(2011)] = 53157, - [SMALL_STATE(2012)] = 53227, - [SMALL_STATE(2013)] = 53299, - [SMALL_STATE(2014)] = 53417, - [SMALL_STATE(2015)] = 53487, - [SMALL_STATE(2016)] = 53557, - [SMALL_STATE(2017)] = 53687, - [SMALL_STATE(2018)] = 53817, - [SMALL_STATE(2019)] = 53935, - [SMALL_STATE(2020)] = 54053, - [SMALL_STATE(2021)] = 54123, - [SMALL_STATE(2022)] = 54193, - [SMALL_STATE(2023)] = 54263, - [SMALL_STATE(2024)] = 54333, - [SMALL_STATE(2025)] = 54463, - [SMALL_STATE(2026)] = 54593, - [SMALL_STATE(2027)] = 54723, - [SMALL_STATE(2028)] = 54793, - [SMALL_STATE(2029)] = 54863, - [SMALL_STATE(2030)] = 54933, - [SMALL_STATE(2031)] = 55065, - [SMALL_STATE(2032)] = 55135, - [SMALL_STATE(2033)] = 55267, - [SMALL_STATE(2034)] = 55385, - [SMALL_STATE(2035)] = 55455, - [SMALL_STATE(2036)] = 55573, - [SMALL_STATE(2037)] = 55691, - [SMALL_STATE(2038)] = 55760, - [SMALL_STATE(2039)] = 55829, - [SMALL_STATE(2040)] = 55956, - [SMALL_STATE(2041)] = 56083, - [SMALL_STATE(2042)] = 56152, - [SMALL_STATE(2043)] = 56279, - [SMALL_STATE(2044)] = 56348, - [SMALL_STATE(2045)] = 56475, - [SMALL_STATE(2046)] = 56602, - [SMALL_STATE(2047)] = 56729, - [SMALL_STATE(2048)] = 56798, - [SMALL_STATE(2049)] = 56925, - [SMALL_STATE(2050)] = 57052, - [SMALL_STATE(2051)] = 57179, - [SMALL_STATE(2052)] = 57306, - [SMALL_STATE(2053)] = 57433, - [SMALL_STATE(2054)] = 57502, - [SMALL_STATE(2055)] = 57629, - [SMALL_STATE(2056)] = 57698, - [SMALL_STATE(2057)] = 57825, - [SMALL_STATE(2058)] = 57894, - [SMALL_STATE(2059)] = 57963, - [SMALL_STATE(2060)] = 58090, - [SMALL_STATE(2061)] = 58159, - [SMALL_STATE(2062)] = 58228, - [SMALL_STATE(2063)] = 58297, - [SMALL_STATE(2064)] = 58366, - [SMALL_STATE(2065)] = 58435, - [SMALL_STATE(2066)] = 58504, - [SMALL_STATE(2067)] = 58573, - [SMALL_STATE(2068)] = 58700, - [SMALL_STATE(2069)] = 58827, - [SMALL_STATE(2070)] = 58954, - [SMALL_STATE(2071)] = 59081, - [SMALL_STATE(2072)] = 59208, - [SMALL_STATE(2073)] = 59277, - [SMALL_STATE(2074)] = 59346, - [SMALL_STATE(2075)] = 59415, - [SMALL_STATE(2076)] = 59542, - [SMALL_STATE(2077)] = 59669, - [SMALL_STATE(2078)] = 59738, - [SMALL_STATE(2079)] = 59865, - [SMALL_STATE(2080)] = 59934, - [SMALL_STATE(2081)] = 60003, - [SMALL_STATE(2082)] = 60072, - [SMALL_STATE(2083)] = 60141, - [SMALL_STATE(2084)] = 60268, - [SMALL_STATE(2085)] = 60337, - [SMALL_STATE(2086)] = 60406, - [SMALL_STATE(2087)] = 60475, - [SMALL_STATE(2088)] = 60544, - [SMALL_STATE(2089)] = 60613, - [SMALL_STATE(2090)] = 60682, - [SMALL_STATE(2091)] = 60751, - [SMALL_STATE(2092)] = 60820, - [SMALL_STATE(2093)] = 60889, - [SMALL_STATE(2094)] = 60958, - [SMALL_STATE(2095)] = 61033, - [SMALL_STATE(2096)] = 61102, - [SMALL_STATE(2097)] = 61171, - [SMALL_STATE(2098)] = 61240, - [SMALL_STATE(2099)] = 61309, - [SMALL_STATE(2100)] = 61378, - [SMALL_STATE(2101)] = 61447, - [SMALL_STATE(2102)] = 61516, - [SMALL_STATE(2103)] = 61585, - [SMALL_STATE(2104)] = 61654, - [SMALL_STATE(2105)] = 61723, - [SMALL_STATE(2106)] = 61792, - [SMALL_STATE(2107)] = 61861, - [SMALL_STATE(2108)] = 61932, - [SMALL_STATE(2109)] = 62001, - [SMALL_STATE(2110)] = 62070, - [SMALL_STATE(2111)] = 62139, - [SMALL_STATE(2112)] = 62266, - [SMALL_STATE(2113)] = 62337, - [SMALL_STATE(2114)] = 62406, - [SMALL_STATE(2115)] = 62475, - [SMALL_STATE(2116)] = 62544, - [SMALL_STATE(2117)] = 62613, - [SMALL_STATE(2118)] = 62682, - [SMALL_STATE(2119)] = 62751, - [SMALL_STATE(2120)] = 62820, - [SMALL_STATE(2121)] = 62889, - [SMALL_STATE(2122)] = 62960, - [SMALL_STATE(2123)] = 63087, - [SMALL_STATE(2124)] = 63156, - [SMALL_STATE(2125)] = 63225, - [SMALL_STATE(2126)] = 63294, - [SMALL_STATE(2127)] = 63363, - [SMALL_STATE(2128)] = 63432, - [SMALL_STATE(2129)] = 63559, - [SMALL_STATE(2130)] = 63686, - [SMALL_STATE(2131)] = 63755, - [SMALL_STATE(2132)] = 63882, - [SMALL_STATE(2133)] = 63951, - [SMALL_STATE(2134)] = 64078, - [SMALL_STATE(2135)] = 64205, - [SMALL_STATE(2136)] = 64332, - [SMALL_STATE(2137)] = 64459, - [SMALL_STATE(2138)] = 64586, - [SMALL_STATE(2139)] = 64655, - [SMALL_STATE(2140)] = 64730, - [SMALL_STATE(2141)] = 64799, - [SMALL_STATE(2142)] = 64868, - [SMALL_STATE(2143)] = 64995, - [SMALL_STATE(2144)] = 65122, - [SMALL_STATE(2145)] = 65191, - [SMALL_STATE(2146)] = 65318, - [SMALL_STATE(2147)] = 65445, - [SMALL_STATE(2148)] = 65514, - [SMALL_STATE(2149)] = 65640, - [SMALL_STATE(2150)] = 65712, - [SMALL_STATE(2151)] = 65782, - [SMALL_STATE(2152)] = 65908, - [SMALL_STATE(2153)] = 66034, - [SMALL_STATE(2154)] = 66160, - [SMALL_STATE(2155)] = 66230, - [SMALL_STATE(2156)] = 66300, - [SMALL_STATE(2157)] = 66370, - [SMALL_STATE(2158)] = 66496, - [SMALL_STATE(2159)] = 66564, - [SMALL_STATE(2160)] = 66634, - [SMALL_STATE(2161)] = 66704, - [SMALL_STATE(2162)] = 66776, - [SMALL_STATE(2163)] = 66897, - [SMALL_STATE(2164)] = 67018, - [SMALL_STATE(2165)] = 67139, - [SMALL_STATE(2166)] = 67238, - [SMALL_STATE(2167)] = 67333, - [SMALL_STATE(2168)] = 67424, - [SMALL_STATE(2169)] = 67515, - [SMALL_STATE(2170)] = 67636, - [SMALL_STATE(2171)] = 67725, - [SMALL_STATE(2172)] = 67846, - [SMALL_STATE(2173)] = 67967, - [SMALL_STATE(2174)] = 68046, - [SMALL_STATE(2175)] = 68167, - [SMALL_STATE(2176)] = 68252, - [SMALL_STATE(2177)] = 68333, - [SMALL_STATE(2178)] = 68454, - [SMALL_STATE(2179)] = 68575, - [SMALL_STATE(2180)] = 68696, - [SMALL_STATE(2181)] = 68799, - [SMALL_STATE(2182)] = 68902, - [SMALL_STATE(2183)] = 69023, - [SMALL_STATE(2184)] = 69144, - [SMALL_STATE(2185)] = 69225, - [SMALL_STATE(2186)] = 69328, - [SMALL_STATE(2187)] = 69449, - [SMALL_STATE(2188)] = 69518, - [SMALL_STATE(2189)] = 69623, - [SMALL_STATE(2190)] = 69744, - [SMALL_STATE(2191)] = 69813, - [SMALL_STATE(2192)] = 69916, - [SMALL_STATE(2193)] = 69985, - [SMALL_STATE(2194)] = 70052, - [SMALL_STATE(2195)] = 70119, - [SMALL_STATE(2196)] = 70218, - [SMALL_STATE(2197)] = 70285, - [SMALL_STATE(2198)] = 70388, - [SMALL_STATE(2199)] = 70509, - [SMALL_STATE(2200)] = 70582, - [SMALL_STATE(2201)] = 70649, - [SMALL_STATE(2202)] = 70770, - [SMALL_STATE(2203)] = 70843, - [SMALL_STATE(2204)] = 70964, - [SMALL_STATE(2205)] = 71031, - [SMALL_STATE(2206)] = 71152, - [SMALL_STATE(2207)] = 71218, - [SMALL_STATE(2208)] = 71320, - [SMALL_STATE(2209)] = 71388, - [SMALL_STATE(2210)] = 71492, - [SMALL_STATE(2211)] = 71558, - [SMALL_STATE(2212)] = 71642, - [SMALL_STATE(2213)] = 71722, - [SMALL_STATE(2214)] = 71790, - [SMALL_STATE(2215)] = 71870, - [SMALL_STATE(2216)] = 71936, - [SMALL_STATE(2217)] = 72002, - [SMALL_STATE(2218)] = 72080, - [SMALL_STATE(2219)] = 72146, - [SMALL_STATE(2220)] = 72212, - [SMALL_STATE(2221)] = 72310, - [SMALL_STATE(2222)] = 72408, - [SMALL_STATE(2223)] = 72496, - [SMALL_STATE(2224)] = 72586, - [SMALL_STATE(2225)] = 72652, - [SMALL_STATE(2226)] = 72718, - [SMALL_STATE(2227)] = 72786, - [SMALL_STATE(2228)] = 72888, - [SMALL_STATE(2229)] = 72982, - [SMALL_STATE(2230)] = 73072, - [SMALL_STATE(2231)] = 73174, - [SMALL_STATE(2232)] = 73276, - [SMALL_STATE(2233)] = 73378, - [SMALL_STATE(2234)] = 73443, - [SMALL_STATE(2235)] = 73508, - [SMALL_STATE(2236)] = 73573, - [SMALL_STATE(2237)] = 73638, - [SMALL_STATE(2238)] = 73703, - [SMALL_STATE(2239)] = 73768, - [SMALL_STATE(2240)] = 73833, - [SMALL_STATE(2241)] = 73898, - [SMALL_STATE(2242)] = 73963, - [SMALL_STATE(2243)] = 74028, - [SMALL_STATE(2244)] = 74093, - [SMALL_STATE(2245)] = 74158, - [SMALL_STATE(2246)] = 74223, - [SMALL_STATE(2247)] = 74288, - [SMALL_STATE(2248)] = 74353, - [SMALL_STATE(2249)] = 74418, - [SMALL_STATE(2250)] = 74483, - [SMALL_STATE(2251)] = 74548, - [SMALL_STATE(2252)] = 74613, - [SMALL_STATE(2253)] = 74678, - [SMALL_STATE(2254)] = 74743, - [SMALL_STATE(2255)] = 74808, - [SMALL_STATE(2256)] = 74873, - [SMALL_STATE(2257)] = 74938, - [SMALL_STATE(2258)] = 75003, - [SMALL_STATE(2259)] = 75068, - [SMALL_STATE(2260)] = 75133, - [SMALL_STATE(2261)] = 75198, - [SMALL_STATE(2262)] = 75263, - [SMALL_STATE(2263)] = 75328, - [SMALL_STATE(2264)] = 75393, - [SMALL_STATE(2265)] = 75458, - [SMALL_STATE(2266)] = 75523, - [SMALL_STATE(2267)] = 75588, - [SMALL_STATE(2268)] = 75653, - [SMALL_STATE(2269)] = 75756, - [SMALL_STATE(2270)] = 75821, - [SMALL_STATE(2271)] = 75886, - [SMALL_STATE(2272)] = 75951, - [SMALL_STATE(2273)] = 76016, - [SMALL_STATE(2274)] = 76081, - [SMALL_STATE(2275)] = 76146, - [SMALL_STATE(2276)] = 76211, - [SMALL_STATE(2277)] = 76276, - [SMALL_STATE(2278)] = 76341, - [SMALL_STATE(2279)] = 76406, - [SMALL_STATE(2280)] = 76471, - [SMALL_STATE(2281)] = 76538, - [SMALL_STATE(2282)] = 76603, - [SMALL_STATE(2283)] = 76668, - [SMALL_STATE(2284)] = 76733, - [SMALL_STATE(2285)] = 76798, - [SMALL_STATE(2286)] = 76863, - [SMALL_STATE(2287)] = 76930, - [SMALL_STATE(2288)] = 76995, - [SMALL_STATE(2289)] = 77060, - [SMALL_STATE(2290)] = 77125, - [SMALL_STATE(2291)] = 77196, - [SMALL_STATE(2292)] = 77261, - [SMALL_STATE(2293)] = 77332, - [SMALL_STATE(2294)] = 77397, - [SMALL_STATE(2295)] = 77462, - [SMALL_STATE(2296)] = 77527, - [SMALL_STATE(2297)] = 77592, - [SMALL_STATE(2298)] = 77657, - [SMALL_STATE(2299)] = 77722, - [SMALL_STATE(2300)] = 77787, - [SMALL_STATE(2301)] = 77852, - [SMALL_STATE(2302)] = 77917, - [SMALL_STATE(2303)] = 77982, - [SMALL_STATE(2304)] = 78047, - [SMALL_STATE(2305)] = 78112, - [SMALL_STATE(2306)] = 78177, - [SMALL_STATE(2307)] = 78242, - [SMALL_STATE(2308)] = 78307, - [SMALL_STATE(2309)] = 78372, - [SMALL_STATE(2310)] = 78437, - [SMALL_STATE(2311)] = 78502, - [SMALL_STATE(2312)] = 78567, - [SMALL_STATE(2313)] = 78632, - [SMALL_STATE(2314)] = 78697, - [SMALL_STATE(2315)] = 78762, - [SMALL_STATE(2316)] = 78827, - [SMALL_STATE(2317)] = 78892, - [SMALL_STATE(2318)] = 78957, - [SMALL_STATE(2319)] = 79022, - [SMALL_STATE(2320)] = 79087, - [SMALL_STATE(2321)] = 79152, - [SMALL_STATE(2322)] = 79217, - [SMALL_STATE(2323)] = 79282, - [SMALL_STATE(2324)] = 79347, - [SMALL_STATE(2325)] = 79412, - [SMALL_STATE(2326)] = 79477, - [SMALL_STATE(2327)] = 79542, - [SMALL_STATE(2328)] = 79607, - [SMALL_STATE(2329)] = 79672, - [SMALL_STATE(2330)] = 79737, - [SMALL_STATE(2331)] = 79802, - [SMALL_STATE(2332)] = 79867, - [SMALL_STATE(2333)] = 79932, - [SMALL_STATE(2334)] = 79999, - [SMALL_STATE(2335)] = 80064, - [SMALL_STATE(2336)] = 80129, - [SMALL_STATE(2337)] = 80194, - [SMALL_STATE(2338)] = 80259, - [SMALL_STATE(2339)] = 80324, - [SMALL_STATE(2340)] = 80389, - [SMALL_STATE(2341)] = 80454, - [SMALL_STATE(2342)] = 80519, - [SMALL_STATE(2343)] = 80584, - [SMALL_STATE(2344)] = 80649, - [SMALL_STATE(2345)] = 80716, - [SMALL_STATE(2346)] = 80781, - [SMALL_STATE(2347)] = 80846, - [SMALL_STATE(2348)] = 80911, - [SMALL_STATE(2349)] = 80976, - [SMALL_STATE(2350)] = 81041, - [SMALL_STATE(2351)] = 81112, - [SMALL_STATE(2352)] = 81183, - [SMALL_STATE(2353)] = 81248, - [SMALL_STATE(2354)] = 81313, - [SMALL_STATE(2355)] = 81378, - [SMALL_STATE(2356)] = 81443, - [SMALL_STATE(2357)] = 81508, - [SMALL_STATE(2358)] = 81573, - [SMALL_STATE(2359)] = 81638, - [SMALL_STATE(2360)] = 81703, - [SMALL_STATE(2361)] = 81768, - [SMALL_STATE(2362)] = 81833, - [SMALL_STATE(2363)] = 81898, - [SMALL_STATE(2364)] = 81963, - [SMALL_STATE(2365)] = 82028, - [SMALL_STATE(2366)] = 82093, - [SMALL_STATE(2367)] = 82158, - [SMALL_STATE(2368)] = 82223, - [SMALL_STATE(2369)] = 82288, - [SMALL_STATE(2370)] = 82353, - [SMALL_STATE(2371)] = 82418, - [SMALL_STATE(2372)] = 82483, - [SMALL_STATE(2373)] = 82548, - [SMALL_STATE(2374)] = 82613, - [SMALL_STATE(2375)] = 82678, - [SMALL_STATE(2376)] = 82743, - [SMALL_STATE(2377)] = 82808, - [SMALL_STATE(2378)] = 82873, - [SMALL_STATE(2379)] = 82937, - [SMALL_STATE(2380)] = 83001, - [SMALL_STATE(2381)] = 83101, - [SMALL_STATE(2382)] = 83203, - [SMALL_STATE(2383)] = 83273, - [SMALL_STATE(2384)] = 83337, - [SMALL_STATE(2385)] = 83401, - [SMALL_STATE(2386)] = 83465, - [SMALL_STATE(2387)] = 83529, - [SMALL_STATE(2388)] = 83625, - [SMALL_STATE(2389)] = 83691, - [SMALL_STATE(2390)] = 83755, - [SMALL_STATE(2391)] = 83819, - [SMALL_STATE(2392)] = 83883, - [SMALL_STATE(2393)] = 83953, - [SMALL_STATE(2394)] = 84017, - [SMALL_STATE(2395)] = 84103, - [SMALL_STATE(2396)] = 84167, - [SMALL_STATE(2397)] = 84231, - [SMALL_STATE(2398)] = 84295, - [SMALL_STATE(2399)] = 84365, - [SMALL_STATE(2400)] = 84435, - [SMALL_STATE(2401)] = 84499, - [SMALL_STATE(2402)] = 84563, - [SMALL_STATE(2403)] = 84627, - [SMALL_STATE(2404)] = 84691, - [SMALL_STATE(2405)] = 84773, - [SMALL_STATE(2406)] = 84861, - [SMALL_STATE(2407)] = 84925, - [SMALL_STATE(2408)] = 85013, - [SMALL_STATE(2409)] = 85077, - [SMALL_STATE(2410)] = 85155, - [SMALL_STATE(2411)] = 85219, - [SMALL_STATE(2412)] = 85297, - [SMALL_STATE(2413)] = 85361, - [SMALL_STATE(2414)] = 85425, - [SMALL_STATE(2415)] = 85489, - [SMALL_STATE(2416)] = 85553, - [SMALL_STATE(2417)] = 85617, - [SMALL_STATE(2418)] = 85709, - [SMALL_STATE(2419)] = 85773, - [SMALL_STATE(2420)] = 85837, - [SMALL_STATE(2421)] = 85933, - [SMALL_STATE(2422)] = 85997, - [SMALL_STATE(2423)] = 86097, - [SMALL_STATE(2424)] = 86197, - [SMALL_STATE(2425)] = 86261, - [SMALL_STATE(2426)] = 86325, - [SMALL_STATE(2427)] = 86389, - [SMALL_STATE(2428)] = 86453, - [SMALL_STATE(2429)] = 86519, - [SMALL_STATE(2430)] = 86583, - [SMALL_STATE(2431)] = 86653, - [SMALL_STATE(2432)] = 86723, - [SMALL_STATE(2433)] = 86823, - [SMALL_STATE(2434)] = 86887, - [SMALL_STATE(2435)] = 86951, - [SMALL_STATE(2436)] = 87015, - [SMALL_STATE(2437)] = 87079, - [SMALL_STATE(2438)] = 87145, - [SMALL_STATE(2439)] = 87209, - [SMALL_STATE(2440)] = 87273, - [SMALL_STATE(2441)] = 87375, - [SMALL_STATE(2442)] = 87439, - [SMALL_STATE(2443)] = 87503, - [SMALL_STATE(2444)] = 87567, - [SMALL_STATE(2445)] = 87631, - [SMALL_STATE(2446)] = 87695, - [SMALL_STATE(2447)] = 87759, - [SMALL_STATE(2448)] = 87823, - [SMALL_STATE(2449)] = 87887, - [SMALL_STATE(2450)] = 87951, - [SMALL_STATE(2451)] = 88015, - [SMALL_STATE(2452)] = 88079, - [SMALL_STATE(2453)] = 88143, - [SMALL_STATE(2454)] = 88207, - [SMALL_STATE(2455)] = 88271, - [SMALL_STATE(2456)] = 88335, - [SMALL_STATE(2457)] = 88399, - [SMALL_STATE(2458)] = 88463, - [SMALL_STATE(2459)] = 88527, - [SMALL_STATE(2460)] = 88597, - [SMALL_STATE(2461)] = 88697, - [SMALL_STATE(2462)] = 88761, - [SMALL_STATE(2463)] = 88825, - [SMALL_STATE(2464)] = 88889, - [SMALL_STATE(2465)] = 88953, - [SMALL_STATE(2466)] = 89017, - [SMALL_STATE(2467)] = 89081, - [SMALL_STATE(2468)] = 89151, - [SMALL_STATE(2469)] = 89215, - [SMALL_STATE(2470)] = 89279, - [SMALL_STATE(2471)] = 89343, - [SMALL_STATE(2472)] = 89409, - [SMALL_STATE(2473)] = 89475, - [SMALL_STATE(2474)] = 89539, - [SMALL_STATE(2475)] = 89615, - [SMALL_STATE(2476)] = 89679, - [SMALL_STATE(2477)] = 89743, - [SMALL_STATE(2478)] = 89807, - [SMALL_STATE(2479)] = 89871, - [SMALL_STATE(2480)] = 89935, - [SMALL_STATE(2481)] = 89999, - [SMALL_STATE(2482)] = 90063, - [SMALL_STATE(2483)] = 90127, - [SMALL_STATE(2484)] = 90191, - [SMALL_STATE(2485)] = 90257, - [SMALL_STATE(2486)] = 90321, - [SMALL_STATE(2487)] = 90385, - [SMALL_STATE(2488)] = 90449, - [SMALL_STATE(2489)] = 90513, - [SMALL_STATE(2490)] = 90577, - [SMALL_STATE(2491)] = 90641, - [SMALL_STATE(2492)] = 90705, - [SMALL_STATE(2493)] = 90769, - [SMALL_STATE(2494)] = 90833, - [SMALL_STATE(2495)] = 90897, - [SMALL_STATE(2496)] = 90961, - [SMALL_STATE(2497)] = 91025, - [SMALL_STATE(2498)] = 91089, - [SMALL_STATE(2499)] = 91153, - [SMALL_STATE(2500)] = 91217, - [SMALL_STATE(2501)] = 91281, - [SMALL_STATE(2502)] = 91345, - [SMALL_STATE(2503)] = 91409, - [SMALL_STATE(2504)] = 91473, - [SMALL_STATE(2505)] = 91537, - [SMALL_STATE(2506)] = 91601, - [SMALL_STATE(2507)] = 91665, - [SMALL_STATE(2508)] = 91728, - [SMALL_STATE(2509)] = 91791, - [SMALL_STATE(2510)] = 91854, - [SMALL_STATE(2511)] = 91917, - [SMALL_STATE(2512)] = 91980, - [SMALL_STATE(2513)] = 92043, - [SMALL_STATE(2514)] = 92106, - [SMALL_STATE(2515)] = 92169, - [SMALL_STATE(2516)] = 92232, - [SMALL_STATE(2517)] = 92295, - [SMALL_STATE(2518)] = 92358, - [SMALL_STATE(2519)] = 92423, - [SMALL_STATE(2520)] = 92486, - [SMALL_STATE(2521)] = 92549, - [SMALL_STATE(2522)] = 92612, - [SMALL_STATE(2523)] = 92674, - [SMALL_STATE(2524)] = 92736, - [SMALL_STATE(2525)] = 92798, - [SMALL_STATE(2526)] = 92860, - [SMALL_STATE(2527)] = 92922, - [SMALL_STATE(2528)] = 92984, - [SMALL_STATE(2529)] = 93050, - [SMALL_STATE(2530)] = 93112, - [SMALL_STATE(2531)] = 93174, - [SMALL_STATE(2532)] = 93236, - [SMALL_STATE(2533)] = 93298, - [SMALL_STATE(2534)] = 93360, - [SMALL_STATE(2535)] = 93424, - [SMALL_STATE(2536)] = 93486, - [SMALL_STATE(2537)] = 93552, - [SMALL_STATE(2538)] = 93614, - [SMALL_STATE(2539)] = 93676, - [SMALL_STATE(2540)] = 93738, - [SMALL_STATE(2541)] = 93800, - [SMALL_STATE(2542)] = 93862, - [SMALL_STATE(2543)] = 93926, - [SMALL_STATE(2544)] = 93988, - [SMALL_STATE(2545)] = 94050, - [SMALL_STATE(2546)] = 94112, - [SMALL_STATE(2547)] = 94174, - [SMALL_STATE(2548)] = 94236, - [SMALL_STATE(2549)] = 94298, - [SMALL_STATE(2550)] = 94360, - [SMALL_STATE(2551)] = 94422, - [SMALL_STATE(2552)] = 94484, - [SMALL_STATE(2553)] = 94546, - [SMALL_STATE(2554)] = 94646, - [SMALL_STATE(2555)] = 94708, - [SMALL_STATE(2556)] = 94770, - [SMALL_STATE(2557)] = 94832, - [SMALL_STATE(2558)] = 94894, - [SMALL_STATE(2559)] = 94956, - [SMALL_STATE(2560)] = 95022, - [SMALL_STATE(2561)] = 95084, - [SMALL_STATE(2562)] = 95150, - [SMALL_STATE(2563)] = 95212, - [SMALL_STATE(2564)] = 95274, - [SMALL_STATE(2565)] = 95336, - [SMALL_STATE(2566)] = 95398, - [SMALL_STATE(2567)] = 95460, - [SMALL_STATE(2568)] = 95522, - [SMALL_STATE(2569)] = 95584, - [SMALL_STATE(2570)] = 95646, - [SMALL_STATE(2571)] = 95708, - [SMALL_STATE(2572)] = 95770, - [SMALL_STATE(2573)] = 95832, - [SMALL_STATE(2574)] = 95894, - [SMALL_STATE(2575)] = 95956, - [SMALL_STATE(2576)] = 96018, - [SMALL_STATE(2577)] = 96080, - [SMALL_STATE(2578)] = 96142, - [SMALL_STATE(2579)] = 96206, - [SMALL_STATE(2580)] = 96268, - [SMALL_STATE(2581)] = 96330, - [SMALL_STATE(2582)] = 96392, - [SMALL_STATE(2583)] = 96454, - [SMALL_STATE(2584)] = 96516, - [SMALL_STATE(2585)] = 96578, - [SMALL_STATE(2586)] = 96640, - [SMALL_STATE(2587)] = 96706, - [SMALL_STATE(2588)] = 96768, - [SMALL_STATE(2589)] = 96830, - [SMALL_STATE(2590)] = 96892, - [SMALL_STATE(2591)] = 96954, - [SMALL_STATE(2592)] = 97020, - [SMALL_STATE(2593)] = 97082, - [SMALL_STATE(2594)] = 97144, - [SMALL_STATE(2595)] = 97210, - [SMALL_STATE(2596)] = 97272, - [SMALL_STATE(2597)] = 97334, - [SMALL_STATE(2598)] = 97396, - [SMALL_STATE(2599)] = 97458, - [SMALL_STATE(2600)] = 97520, - [SMALL_STATE(2601)] = 97582, - [SMALL_STATE(2602)] = 97644, - [SMALL_STATE(2603)] = 97706, - [SMALL_STATE(2604)] = 97768, - [SMALL_STATE(2605)] = 97829, - [SMALL_STATE(2606)] = 97890, - [SMALL_STATE(2607)] = 97951, - [SMALL_STATE(2608)] = 98014, - [SMALL_STATE(2609)] = 98075, - [SMALL_STATE(2610)] = 98136, - [SMALL_STATE(2611)] = 98201, - [SMALL_STATE(2612)] = 98262, - [SMALL_STATE(2613)] = 98323, - [SMALL_STATE(2614)] = 98384, - [SMALL_STATE(2615)] = 98449, - [SMALL_STATE(2616)] = 98514, - [SMALL_STATE(2617)] = 98575, - [SMALL_STATE(2618)] = 98636, - [SMALL_STATE(2619)] = 98697, - [SMALL_STATE(2620)] = 98758, - [SMALL_STATE(2621)] = 98819, - [SMALL_STATE(2622)] = 98880, - [SMALL_STATE(2623)] = 98941, - [SMALL_STATE(2624)] = 99002, - [SMALL_STATE(2625)] = 99063, - [SMALL_STATE(2626)] = 99126, - [SMALL_STATE(2627)] = 99187, - [SMALL_STATE(2628)] = 99248, - [SMALL_STATE(2629)] = 99309, - [SMALL_STATE(2630)] = 99372, - [SMALL_STATE(2631)] = 99433, - [SMALL_STATE(2632)] = 99494, - [SMALL_STATE(2633)] = 99555, - [SMALL_STATE(2634)] = 99616, - [SMALL_STATE(2635)] = 99677, - [SMALL_STATE(2636)] = 99738, - [SMALL_STATE(2637)] = 99799, - [SMALL_STATE(2638)] = 99860, - [SMALL_STATE(2639)] = 99921, - [SMALL_STATE(2640)] = 99982, - [SMALL_STATE(2641)] = 100043, - [SMALL_STATE(2642)] = 100104, - [SMALL_STATE(2643)] = 100165, - [SMALL_STATE(2644)] = 100226, - [SMALL_STATE(2645)] = 100291, - [SMALL_STATE(2646)] = 100356, - [SMALL_STATE(2647)] = 100417, - [SMALL_STATE(2648)] = 100478, - [SMALL_STATE(2649)] = 100539, - [SMALL_STATE(2650)] = 100600, - [SMALL_STATE(2651)] = 100665, - [SMALL_STATE(2652)] = 100726, - [SMALL_STATE(2653)] = 100787, - [SMALL_STATE(2654)] = 100848, - [SMALL_STATE(2655)] = 100909, - [SMALL_STATE(2656)] = 100970, - [SMALL_STATE(2657)] = 101031, - [SMALL_STATE(2658)] = 101092, - [SMALL_STATE(2659)] = 101153, - [SMALL_STATE(2660)] = 101214, - [SMALL_STATE(2661)] = 101275, - [SMALL_STATE(2662)] = 101336, - [SMALL_STATE(2663)] = 101397, - [SMALL_STATE(2664)] = 101458, - [SMALL_STATE(2665)] = 101519, - [SMALL_STATE(2666)] = 101580, - [SMALL_STATE(2667)] = 101641, - [SMALL_STATE(2668)] = 101702, - [SMALL_STATE(2669)] = 101763, - [SMALL_STATE(2670)] = 101867, - [SMALL_STATE(2671)] = 101927, - [SMALL_STATE(2672)] = 101987, - [SMALL_STATE(2673)] = 102091, - [SMALL_STATE(2674)] = 102151, - [SMALL_STATE(2675)] = 102211, - [SMALL_STATE(2676)] = 102273, - [SMALL_STATE(2677)] = 102333, - [SMALL_STATE(2678)] = 102395, - [SMALL_STATE(2679)] = 102455, - [SMALL_STATE(2680)] = 102559, - [SMALL_STATE(2681)] = 102622, - [SMALL_STATE(2682)] = 102685, - [SMALL_STATE(2683)] = 102748, - [SMALL_STATE(2684)] = 102811, - [SMALL_STATE(2685)] = 102872, - [SMALL_STATE(2686)] = 102935, - [SMALL_STATE(2687)] = 102998, - [SMALL_STATE(2688)] = 103056, - [SMALL_STATE(2689)] = 103114, - [SMALL_STATE(2690)] = 103172, - [SMALL_STATE(2691)] = 103230, - [SMALL_STATE(2692)] = 103288, - [SMALL_STATE(2693)] = 103346, - [SMALL_STATE(2694)] = 103404, - [SMALL_STATE(2695)] = 103462, - [SMALL_STATE(2696)] = 103520, - [SMALL_STATE(2697)] = 103578, - [SMALL_STATE(2698)] = 103636, - [SMALL_STATE(2699)] = 103694, - [SMALL_STATE(2700)] = 103752, - [SMALL_STATE(2701)] = 103810, - [SMALL_STATE(2702)] = 103868, - [SMALL_STATE(2703)] = 103926, - [SMALL_STATE(2704)] = 103984, - [SMALL_STATE(2705)] = 104042, - [SMALL_STATE(2706)] = 104100, - [SMALL_STATE(2707)] = 104158, - [SMALL_STATE(2708)] = 104216, - [SMALL_STATE(2709)] = 104274, - [SMALL_STATE(2710)] = 104332, - [SMALL_STATE(2711)] = 104390, - [SMALL_STATE(2712)] = 104448, - [SMALL_STATE(2713)] = 104506, - [SMALL_STATE(2714)] = 104564, - [SMALL_STATE(2715)] = 104622, - [SMALL_STATE(2716)] = 104680, - [SMALL_STATE(2717)] = 104738, - [SMALL_STATE(2718)] = 104796, - [SMALL_STATE(2719)] = 104854, - [SMALL_STATE(2720)] = 104912, - [SMALL_STATE(2721)] = 104976, - [SMALL_STATE(2722)] = 105034, - [SMALL_STATE(2723)] = 105092, - [SMALL_STATE(2724)] = 105150, - [SMALL_STATE(2725)] = 105208, - [SMALL_STATE(2726)] = 105266, - [SMALL_STATE(2727)] = 105324, - [SMALL_STATE(2728)] = 105382, - [SMALL_STATE(2729)] = 105440, - [SMALL_STATE(2730)] = 105498, - [SMALL_STATE(2731)] = 105556, - [SMALL_STATE(2732)] = 105614, - [SMALL_STATE(2733)] = 105672, - [SMALL_STATE(2734)] = 105730, - [SMALL_STATE(2735)] = 105788, - [SMALL_STATE(2736)] = 105846, - [SMALL_STATE(2737)] = 105904, - [SMALL_STATE(2738)] = 105962, - [SMALL_STATE(2739)] = 106022, - [SMALL_STATE(2740)] = 106080, - [SMALL_STATE(2741)] = 106138, - [SMALL_STATE(2742)] = 106196, - [SMALL_STATE(2743)] = 106254, - [SMALL_STATE(2744)] = 106312, - [SMALL_STATE(2745)] = 106370, - [SMALL_STATE(2746)] = 106428, - [SMALL_STATE(2747)] = 106486, - [SMALL_STATE(2748)] = 106544, - [SMALL_STATE(2749)] = 106602, - [SMALL_STATE(2750)] = 106660, - [SMALL_STATE(2751)] = 106718, - [SMALL_STATE(2752)] = 106776, - [SMALL_STATE(2753)] = 106834, - [SMALL_STATE(2754)] = 106892, - [SMALL_STATE(2755)] = 106950, - [SMALL_STATE(2756)] = 107008, - [SMALL_STATE(2757)] = 107066, - [SMALL_STATE(2758)] = 107124, - [SMALL_STATE(2759)] = 107182, - [SMALL_STATE(2760)] = 107242, - [SMALL_STATE(2761)] = 107300, - [SMALL_STATE(2762)] = 107358, - [SMALL_STATE(2763)] = 107416, - [SMALL_STATE(2764)] = 107474, - [SMALL_STATE(2765)] = 107532, - [SMALL_STATE(2766)] = 107596, - [SMALL_STATE(2767)] = 107654, - [SMALL_STATE(2768)] = 107712, - [SMALL_STATE(2769)] = 107770, - [SMALL_STATE(2770)] = 107830, - [SMALL_STATE(2771)] = 107911, - [SMALL_STATE(2772)] = 108004, - [SMALL_STATE(2773)] = 108119, - [SMALL_STATE(2774)] = 108198, - [SMALL_STATE(2775)] = 108293, - [SMALL_STATE(2776)] = 108368, - [SMALL_STATE(2777)] = 108439, - [SMALL_STATE(2778)] = 108520, - [SMALL_STATE(2779)] = 108609, - [SMALL_STATE(2780)] = 108702, - [SMALL_STATE(2781)] = 108773, - [SMALL_STATE(2782)] = 108842, - [SMALL_STATE(2783)] = 108923, - [SMALL_STATE(2784)] = 108980, - [SMALL_STATE(2785)] = 109037, - [SMALL_STATE(2786)] = 109094, - [SMALL_STATE(2787)] = 109163, - [SMALL_STATE(2788)] = 109248, - [SMALL_STATE(2789)] = 109337, - [SMALL_STATE(2790)] = 109430, - [SMALL_STATE(2791)] = 109523, - [SMALL_STATE(2792)] = 109594, - [SMALL_STATE(2793)] = 109665, - [SMALL_STATE(2794)] = 109740, - [SMALL_STATE(2795)] = 109833, - [SMALL_STATE(2796)] = 109926, - [SMALL_STATE(2797)] = 110041, - [SMALL_STATE(2798)] = 110098, - [SMALL_STATE(2799)] = 110155, - [SMALL_STATE(2800)] = 110212, - [SMALL_STATE(2801)] = 110327, - [SMALL_STATE(2802)] = 110384, - [SMALL_STATE(2803)] = 110479, - [SMALL_STATE(2804)] = 110594, - [SMALL_STATE(2805)] = 110687, - [SMALL_STATE(2806)] = 110776, - [SMALL_STATE(2807)] = 110833, - [SMALL_STATE(2808)] = 110912, - [SMALL_STATE(2809)] = 110993, - [SMALL_STATE(2810)] = 111050, - [SMALL_STATE(2811)] = 111107, - [SMALL_STATE(2812)] = 111192, - [SMALL_STATE(2813)] = 111281, - [SMALL_STATE(2814)] = 111338, - [SMALL_STATE(2815)] = 111395, - [SMALL_STATE(2816)] = 111488, - [SMALL_STATE(2817)] = 111545, - [SMALL_STATE(2818)] = 111638, - [SMALL_STATE(2819)] = 111731, - [SMALL_STATE(2820)] = 111787, - [SMALL_STATE(2821)] = 111899, - [SMALL_STATE(2822)] = 112011, - [SMALL_STATE(2823)] = 112103, - [SMALL_STATE(2824)] = 112215, - [SMALL_STATE(2825)] = 112271, - [SMALL_STATE(2826)] = 112363, - [SMALL_STATE(2827)] = 112433, - [SMALL_STATE(2828)] = 112495, - [SMALL_STATE(2829)] = 112587, - [SMALL_STATE(2830)] = 112679, - [SMALL_STATE(2831)] = 112767, - [SMALL_STATE(2832)] = 112851, - [SMALL_STATE(2833)] = 112943, - [SMALL_STATE(2834)] = 113055, - [SMALL_STATE(2835)] = 113113, - [SMALL_STATE(2836)] = 113187, - [SMALL_STATE(2837)] = 113257, - [SMALL_STATE(2838)] = 113337, - [SMALL_STATE(2839)] = 113429, - [SMALL_STATE(2840)] = 113507, - [SMALL_STATE(2841)] = 113595, - [SMALL_STATE(2842)] = 113687, - [SMALL_STATE(2843)] = 113779, - [SMALL_STATE(2844)] = 113841, - [SMALL_STATE(2845)] = 113933, - [SMALL_STATE(2846)] = 114021, - [SMALL_STATE(2847)] = 114077, - [SMALL_STATE(2848)] = 114133, - [SMALL_STATE(2849)] = 114217, - [SMALL_STATE(2850)] = 114273, - [SMALL_STATE(2851)] = 114343, - [SMALL_STATE(2852)] = 114413, - [SMALL_STATE(2853)] = 114493, - [SMALL_STATE(2854)] = 114573, - [SMALL_STATE(2855)] = 114651, - [SMALL_STATE(2856)] = 114739, - [SMALL_STATE(2857)] = 114795, - [SMALL_STATE(2858)] = 114887, - [SMALL_STATE(2859)] = 114943, - [SMALL_STATE(2860)] = 115001, - [SMALL_STATE(2861)] = 115057, - [SMALL_STATE(2862)] = 115113, - [SMALL_STATE(2863)] = 115169, - [SMALL_STATE(2864)] = 115225, - [SMALL_STATE(2865)] = 115281, - [SMALL_STATE(2866)] = 115337, - [SMALL_STATE(2867)] = 115393, - [SMALL_STATE(2868)] = 115449, - [SMALL_STATE(2869)] = 115507, - [SMALL_STATE(2870)] = 115563, - [SMALL_STATE(2871)] = 115619, - [SMALL_STATE(2872)] = 115675, - [SMALL_STATE(2873)] = 115731, - [SMALL_STATE(2874)] = 115787, - [SMALL_STATE(2875)] = 115843, - [SMALL_STATE(2876)] = 115899, - [SMALL_STATE(2877)] = 115955, - [SMALL_STATE(2878)] = 116011, - [SMALL_STATE(2879)] = 116067, - [SMALL_STATE(2880)] = 116135, - [SMALL_STATE(2881)] = 116191, - [SMALL_STATE(2882)] = 116259, - [SMALL_STATE(2883)] = 116315, - [SMALL_STATE(2884)] = 116371, - [SMALL_STATE(2885)] = 116427, - [SMALL_STATE(2886)] = 116483, - [SMALL_STATE(2887)] = 116539, - [SMALL_STATE(2888)] = 116595, - [SMALL_STATE(2889)] = 116651, - [SMALL_STATE(2890)] = 116707, - [SMALL_STATE(2891)] = 116763, - [SMALL_STATE(2892)] = 116819, - [SMALL_STATE(2893)] = 116875, - [SMALL_STATE(2894)] = 116931, - [SMALL_STATE(2895)] = 116987, - [SMALL_STATE(2896)] = 117043, - [SMALL_STATE(2897)] = 117099, - [SMALL_STATE(2898)] = 117155, - [SMALL_STATE(2899)] = 117211, - [SMALL_STATE(2900)] = 117267, - [SMALL_STATE(2901)] = 117323, - [SMALL_STATE(2902)] = 117379, - [SMALL_STATE(2903)] = 117435, - [SMALL_STATE(2904)] = 117491, - [SMALL_STATE(2905)] = 117547, - [SMALL_STATE(2906)] = 117603, - [SMALL_STATE(2907)] = 117659, - [SMALL_STATE(2908)] = 117715, - [SMALL_STATE(2909)] = 117771, - [SMALL_STATE(2910)] = 117827, - [SMALL_STATE(2911)] = 117883, - [SMALL_STATE(2912)] = 117939, - [SMALL_STATE(2913)] = 117997, - [SMALL_STATE(2914)] = 118053, - [SMALL_STATE(2915)] = 118109, - [SMALL_STATE(2916)] = 118167, - [SMALL_STATE(2917)] = 118223, - [SMALL_STATE(2918)] = 118281, - [SMALL_STATE(2919)] = 118337, - [SMALL_STATE(2920)] = 118393, - [SMALL_STATE(2921)] = 118449, - [SMALL_STATE(2922)] = 118505, - [SMALL_STATE(2923)] = 118599, - [SMALL_STATE(2924)] = 118655, - [SMALL_STATE(2925)] = 118713, - [SMALL_STATE(2926)] = 118769, - [SMALL_STATE(2927)] = 118825, - [SMALL_STATE(2928)] = 118881, - [SMALL_STATE(2929)] = 118955, - [SMALL_STATE(2930)] = 119011, - [SMALL_STATE(2931)] = 119067, - [SMALL_STATE(2932)] = 119147, - [SMALL_STATE(2933)] = 119203, - [SMALL_STATE(2934)] = 119259, - [SMALL_STATE(2935)] = 119315, - [SMALL_STATE(2936)] = 119371, - [SMALL_STATE(2937)] = 119427, - [SMALL_STATE(2938)] = 119483, - [SMALL_STATE(2939)] = 119539, - [SMALL_STATE(2940)] = 119595, - [SMALL_STATE(2941)] = 119651, - [SMALL_STATE(2942)] = 119707, - [SMALL_STATE(2943)] = 119801, - [SMALL_STATE(2944)] = 119856, - [SMALL_STATE(2945)] = 119911, - [SMALL_STATE(2946)] = 119966, - [SMALL_STATE(2947)] = 120021, - [SMALL_STATE(2948)] = 120076, - [SMALL_STATE(2949)] = 120131, - [SMALL_STATE(2950)] = 120186, - [SMALL_STATE(2951)] = 120241, - [SMALL_STATE(2952)] = 120296, - [SMALL_STATE(2953)] = 120351, - [SMALL_STATE(2954)] = 120406, - [SMALL_STATE(2955)] = 120461, - [SMALL_STATE(2956)] = 120518, - [SMALL_STATE(2957)] = 120573, - [SMALL_STATE(2958)] = 120628, - [SMALL_STATE(2959)] = 120683, - [SMALL_STATE(2960)] = 120738, - [SMALL_STATE(2961)] = 120793, - [SMALL_STATE(2962)] = 120848, - [SMALL_STATE(2963)] = 120903, - [SMALL_STATE(2964)] = 120958, - [SMALL_STATE(2965)] = 121013, - [SMALL_STATE(2966)] = 121068, - [SMALL_STATE(2967)] = 121123, - [SMALL_STATE(2968)] = 121178, - [SMALL_STATE(2969)] = 121233, - [SMALL_STATE(2970)] = 121288, - [SMALL_STATE(2971)] = 121343, - [SMALL_STATE(2972)] = 121398, - [SMALL_STATE(2973)] = 121453, - [SMALL_STATE(2974)] = 121508, - [SMALL_STATE(2975)] = 121563, - [SMALL_STATE(2976)] = 121618, - [SMALL_STATE(2977)] = 121673, - [SMALL_STATE(2978)] = 121728, - [SMALL_STATE(2979)] = 121783, - [SMALL_STATE(2980)] = 121838, - [SMALL_STATE(2981)] = 121893, - [SMALL_STATE(2982)] = 121948, - [SMALL_STATE(2983)] = 122003, - [SMALL_STATE(2984)] = 122058, - [SMALL_STATE(2985)] = 122113, - [SMALL_STATE(2986)] = 122168, - [SMALL_STATE(2987)] = 122223, - [SMALL_STATE(2988)] = 122278, - [SMALL_STATE(2989)] = 122333, - [SMALL_STATE(2990)] = 122388, - [SMALL_STATE(2991)] = 122443, - [SMALL_STATE(2992)] = 122498, - [SMALL_STATE(2993)] = 122553, - [SMALL_STATE(2994)] = 122608, - [SMALL_STATE(2995)] = 122663, - [SMALL_STATE(2996)] = 122718, - [SMALL_STATE(2997)] = 122773, - [SMALL_STATE(2998)] = 122828, - [SMALL_STATE(2999)] = 122885, - [SMALL_STATE(3000)] = 122940, - [SMALL_STATE(3001)] = 122995, - [SMALL_STATE(3002)] = 123050, - [SMALL_STATE(3003)] = 123105, - [SMALL_STATE(3004)] = 123160, - [SMALL_STATE(3005)] = 123215, - [SMALL_STATE(3006)] = 123270, - [SMALL_STATE(3007)] = 123325, - [SMALL_STATE(3008)] = 123380, - [SMALL_STATE(3009)] = 123435, - [SMALL_STATE(3010)] = 123490, - [SMALL_STATE(3011)] = 123547, - [SMALL_STATE(3012)] = 123602, - [SMALL_STATE(3013)] = 123657, - [SMALL_STATE(3014)] = 123712, - [SMALL_STATE(3015)] = 123767, - [SMALL_STATE(3016)] = 123824, - [SMALL_STATE(3017)] = 123879, - [SMALL_STATE(3018)] = 123934, - [SMALL_STATE(3019)] = 123989, - [SMALL_STATE(3020)] = 124044, - [SMALL_STATE(3021)] = 124099, - [SMALL_STATE(3022)] = 124154, - [SMALL_STATE(3023)] = 124209, - [SMALL_STATE(3024)] = 124264, - [SMALL_STATE(3025)] = 124319, - [SMALL_STATE(3026)] = 124380, - [SMALL_STATE(3027)] = 124435, - [SMALL_STATE(3028)] = 124490, - [SMALL_STATE(3029)] = 124545, - [SMALL_STATE(3030)] = 124600, - [SMALL_STATE(3031)] = 124657, - [SMALL_STATE(3032)] = 124712, - [SMALL_STATE(3033)] = 124767, - [SMALL_STATE(3034)] = 124822, - [SMALL_STATE(3035)] = 124877, - [SMALL_STATE(3036)] = 124932, - [SMALL_STATE(3037)] = 124987, - [SMALL_STATE(3038)] = 125042, - [SMALL_STATE(3039)] = 125097, - [SMALL_STATE(3040)] = 125152, - [SMALL_STATE(3041)] = 125207, - [SMALL_STATE(3042)] = 125262, - [SMALL_STATE(3043)] = 125317, - [SMALL_STATE(3044)] = 125372, - [SMALL_STATE(3045)] = 125427, - [SMALL_STATE(3046)] = 125482, - [SMALL_STATE(3047)] = 125537, - [SMALL_STATE(3048)] = 125592, - [SMALL_STATE(3049)] = 125649, - [SMALL_STATE(3050)] = 125704, - [SMALL_STATE(3051)] = 125759, - [SMALL_STATE(3052)] = 125814, - [SMALL_STATE(3053)] = 125869, - [SMALL_STATE(3054)] = 125924, - [SMALL_STATE(3055)] = 125979, - [SMALL_STATE(3056)] = 126034, - [SMALL_STATE(3057)] = 126089, - [SMALL_STATE(3058)] = 126144, - [SMALL_STATE(3059)] = 126199, - [SMALL_STATE(3060)] = 126254, - [SMALL_STATE(3061)] = 126309, - [SMALL_STATE(3062)] = 126364, - [SMALL_STATE(3063)] = 126419, - [SMALL_STATE(3064)] = 126474, - [SMALL_STATE(3065)] = 126529, - [SMALL_STATE(3066)] = 126584, - [SMALL_STATE(3067)] = 126639, - [SMALL_STATE(3068)] = 126694, - [SMALL_STATE(3069)] = 126749, - [SMALL_STATE(3070)] = 126804, - [SMALL_STATE(3071)] = 126859, - [SMALL_STATE(3072)] = 126952, - [SMALL_STATE(3073)] = 127007, - [SMALL_STATE(3074)] = 127062, - [SMALL_STATE(3075)] = 127117, - [SMALL_STATE(3076)] = 127172, - [SMALL_STATE(3077)] = 127227, - [SMALL_STATE(3078)] = 127282, - [SMALL_STATE(3079)] = 127337, - [SMALL_STATE(3080)] = 127392, - [SMALL_STATE(3081)] = 127447, - [SMALL_STATE(3082)] = 127502, - [SMALL_STATE(3083)] = 127557, - [SMALL_STATE(3084)] = 127618, - [SMALL_STATE(3085)] = 127673, - [SMALL_STATE(3086)] = 127728, - [SMALL_STATE(3087)] = 127783, - [SMALL_STATE(3088)] = 127838, - [SMALL_STATE(3089)] = 127893, - [SMALL_STATE(3090)] = 127948, - [SMALL_STATE(3091)] = 128003, - [SMALL_STATE(3092)] = 128058, - [SMALL_STATE(3093)] = 128113, - [SMALL_STATE(3094)] = 128168, - [SMALL_STATE(3095)] = 128223, - [SMALL_STATE(3096)] = 128278, - [SMALL_STATE(3097)] = 128333, - [SMALL_STATE(3098)] = 128388, - [SMALL_STATE(3099)] = 128443, - [SMALL_STATE(3100)] = 128498, - [SMALL_STATE(3101)] = 128553, - [SMALL_STATE(3102)] = 128608, - [SMALL_STATE(3103)] = 128663, - [SMALL_STATE(3104)] = 128718, - [SMALL_STATE(3105)] = 128773, - [SMALL_STATE(3106)] = 128828, - [SMALL_STATE(3107)] = 128883, - [SMALL_STATE(3108)] = 128938, - [SMALL_STATE(3109)] = 128993, - [SMALL_STATE(3110)] = 129048, - [SMALL_STATE(3111)] = 129102, - [SMALL_STATE(3112)] = 129156, - [SMALL_STATE(3113)] = 129210, - [SMALL_STATE(3114)] = 129264, - [SMALL_STATE(3115)] = 129318, - [SMALL_STATE(3116)] = 129372, - [SMALL_STATE(3117)] = 129426, - [SMALL_STATE(3118)] = 129480, - [SMALL_STATE(3119)] = 129534, - [SMALL_STATE(3120)] = 129588, - [SMALL_STATE(3121)] = 129642, - [SMALL_STATE(3122)] = 129752, - [SMALL_STATE(3123)] = 129806, - [SMALL_STATE(3124)] = 129860, - [SMALL_STATE(3125)] = 129970, - [SMALL_STATE(3126)] = 130024, - [SMALL_STATE(3127)] = 130078, - [SMALL_STATE(3128)] = 130132, - [SMALL_STATE(3129)] = 130186, - [SMALL_STATE(3130)] = 130296, - [SMALL_STATE(3131)] = 130350, - [SMALL_STATE(3132)] = 130404, - [SMALL_STATE(3133)] = 130458, - [SMALL_STATE(3134)] = 130512, - [SMALL_STATE(3135)] = 130566, - [SMALL_STATE(3136)] = 130620, - [SMALL_STATE(3137)] = 130674, - [SMALL_STATE(3138)] = 130728, - [SMALL_STATE(3139)] = 130782, - [SMALL_STATE(3140)] = 130836, - [SMALL_STATE(3141)] = 130946, - [SMALL_STATE(3142)] = 131000, - [SMALL_STATE(3143)] = 131054, - [SMALL_STATE(3144)] = 131108, - [SMALL_STATE(3145)] = 131162, - [SMALL_STATE(3146)] = 131216, - [SMALL_STATE(3147)] = 131270, - [SMALL_STATE(3148)] = 131324, - [SMALL_STATE(3149)] = 131434, - [SMALL_STATE(3150)] = 131488, - [SMALL_STATE(3151)] = 131598, - [SMALL_STATE(3152)] = 131652, - [SMALL_STATE(3153)] = 131706, - [SMALL_STATE(3154)] = 131762, - [SMALL_STATE(3155)] = 131816, - [SMALL_STATE(3156)] = 131870, - [SMALL_STATE(3157)] = 131924, - [SMALL_STATE(3158)] = 131978, - [SMALL_STATE(3159)] = 132032, - [SMALL_STATE(3160)] = 132086, - [SMALL_STATE(3161)] = 132140, - [SMALL_STATE(3162)] = 132194, - [SMALL_STATE(3163)] = 132248, - [SMALL_STATE(3164)] = 132302, - [SMALL_STATE(3165)] = 132356, - [SMALL_STATE(3166)] = 132410, - [SMALL_STATE(3167)] = 132464, - [SMALL_STATE(3168)] = 132518, - [SMALL_STATE(3169)] = 132572, - [SMALL_STATE(3170)] = 132626, - [SMALL_STATE(3171)] = 132680, - [SMALL_STATE(3172)] = 132734, - [SMALL_STATE(3173)] = 132788, - [SMALL_STATE(3174)] = 132842, - [SMALL_STATE(3175)] = 132896, - [SMALL_STATE(3176)] = 132950, - [SMALL_STATE(3177)] = 133060, - [SMALL_STATE(3178)] = 133114, - [SMALL_STATE(3179)] = 133168, - [SMALL_STATE(3180)] = 133222, - [SMALL_STATE(3181)] = 133276, - [SMALL_STATE(3182)] = 133330, - [SMALL_STATE(3183)] = 133384, - [SMALL_STATE(3184)] = 133494, - [SMALL_STATE(3185)] = 133548, - [SMALL_STATE(3186)] = 133602, - [SMALL_STATE(3187)] = 133656, - [SMALL_STATE(3188)] = 133710, - [SMALL_STATE(3189)] = 133764, - [SMALL_STATE(3190)] = 133818, - [SMALL_STATE(3191)] = 133872, - [SMALL_STATE(3192)] = 133926, - [SMALL_STATE(3193)] = 134033, - [SMALL_STATE(3194)] = 134142, - [SMALL_STATE(3195)] = 134249, - [SMALL_STATE(3196)] = 134358, - [SMALL_STATE(3197)] = 134459, - [SMALL_STATE(3198)] = 134566, - [SMALL_STATE(3199)] = 134667, - [SMALL_STATE(3200)] = 134774, - [SMALL_STATE(3201)] = 134881, - [SMALL_STATE(3202)] = 134982, - [SMALL_STATE(3203)] = 135037, - [SMALL_STATE(3204)] = 135144, - [SMALL_STATE(3205)] = 135235, - [SMALL_STATE(3206)] = 135336, - [SMALL_STATE(3207)] = 135443, - [SMALL_STATE(3208)] = 135550, - [SMALL_STATE(3209)] = 135651, - [SMALL_STATE(3210)] = 135752, - [SMALL_STATE(3211)] = 135859, - [SMALL_STATE(3212)] = 135960, - [SMALL_STATE(3213)] = 136067, - [SMALL_STATE(3214)] = 136120, - [SMALL_STATE(3215)] = 136221, - [SMALL_STATE(3216)] = 136322, - [SMALL_STATE(3217)] = 136423, - [SMALL_STATE(3218)] = 136530, - [SMALL_STATE(3219)] = 136637, - [SMALL_STATE(3220)] = 136744, - [SMALL_STATE(3221)] = 136851, - [SMALL_STATE(3222)] = 136958, - [SMALL_STATE(3223)] = 137065, - [SMALL_STATE(3224)] = 137166, - [SMALL_STATE(3225)] = 137273, - [SMALL_STATE(3226)] = 137380, - [SMALL_STATE(3227)] = 137481, - [SMALL_STATE(3228)] = 137588, - [SMALL_STATE(3229)] = 137695, - [SMALL_STATE(3230)] = 137751, - [SMALL_STATE(3231)] = 137855, - [SMALL_STATE(3232)] = 137959, - [SMALL_STATE(3233)] = 138063, - [SMALL_STATE(3234)] = 138167, - [SMALL_STATE(3235)] = 138219, - [SMALL_STATE(3236)] = 138273, - [SMALL_STATE(3237)] = 138329, - [SMALL_STATE(3238)] = 138385, - [SMALL_STATE(3239)] = 138441, - [SMALL_STATE(3240)] = 138545, - [SMALL_STATE(3241)] = 138649, - [SMALL_STATE(3242)] = 138753, - [SMALL_STATE(3243)] = 138809, - [SMALL_STATE(3244)] = 138913, - [SMALL_STATE(3245)] = 138993, - [SMALL_STATE(3246)] = 139049, - [SMALL_STATE(3247)] = 139153, - [SMALL_STATE(3248)] = 139257, - [SMALL_STATE(3249)] = 139323, - [SMALL_STATE(3250)] = 139427, - [SMALL_STATE(3251)] = 139531, - [SMALL_STATE(3252)] = 139587, - [SMALL_STATE(3253)] = 139691, - [SMALL_STATE(3254)] = 139795, - [SMALL_STATE(3255)] = 139849, - [SMALL_STATE(3256)] = 139953, - [SMALL_STATE(3257)] = 140009, - [SMALL_STATE(3258)] = 140113, - [SMALL_STATE(3259)] = 140169, - [SMALL_STATE(3260)] = 140225, - [SMALL_STATE(3261)] = 140329, - [SMALL_STATE(3262)] = 140433, - [SMALL_STATE(3263)] = 140487, - [SMALL_STATE(3264)] = 140543, - [SMALL_STATE(3265)] = 140609, - [SMALL_STATE(3266)] = 140713, - [SMALL_STATE(3267)] = 140769, - [SMALL_STATE(3268)] = 140820, - [SMALL_STATE(3269)] = 140871, - [SMALL_STATE(3270)] = 140922, - [SMALL_STATE(3271)] = 140977, - [SMALL_STATE(3272)] = 141034, - [SMALL_STATE(3273)] = 141091, - [SMALL_STATE(3274)] = 141148, - [SMALL_STATE(3275)] = 141199, - [SMALL_STATE(3276)] = 141250, - [SMALL_STATE(3277)] = 141301, - [SMALL_STATE(3278)] = 141354, - [SMALL_STATE(3279)] = 141405, - [SMALL_STATE(3280)] = 141456, - [SMALL_STATE(3281)] = 141507, - [SMALL_STATE(3282)] = 141558, - [SMALL_STATE(3283)] = 141609, - [SMALL_STATE(3284)] = 141660, - [SMALL_STATE(3285)] = 141713, - [SMALL_STATE(3286)] = 141802, - [SMALL_STATE(3287)] = 141853, - [SMALL_STATE(3288)] = 141904, - [SMALL_STATE(3289)] = 141955, - [SMALL_STATE(3290)] = 142006, - [SMALL_STATE(3291)] = 142057, - [SMALL_STATE(3292)] = 142108, - [SMALL_STATE(3293)] = 142159, - [SMALL_STATE(3294)] = 142210, - [SMALL_STATE(3295)] = 142261, - [SMALL_STATE(3296)] = 142312, - [SMALL_STATE(3297)] = 142363, - [SMALL_STATE(3298)] = 142414, - [SMALL_STATE(3299)] = 142465, - [SMALL_STATE(3300)] = 142516, - [SMALL_STATE(3301)] = 142567, - [SMALL_STATE(3302)] = 142618, - [SMALL_STATE(3303)] = 142669, - [SMALL_STATE(3304)] = 142720, - [SMALL_STATE(3305)] = 142771, - [SMALL_STATE(3306)] = 142822, - [SMALL_STATE(3307)] = 142873, - [SMALL_STATE(3308)] = 142924, - [SMALL_STATE(3309)] = 142975, - [SMALL_STATE(3310)] = 143026, - [SMALL_STATE(3311)] = 143077, - [SMALL_STATE(3312)] = 143128, - [SMALL_STATE(3313)] = 143179, - [SMALL_STATE(3314)] = 143230, - [SMALL_STATE(3315)] = 143281, - [SMALL_STATE(3316)] = 143332, - [SMALL_STATE(3317)] = 143383, - [SMALL_STATE(3318)] = 143434, - [SMALL_STATE(3319)] = 143485, - [SMALL_STATE(3320)] = 143536, - [SMALL_STATE(3321)] = 143587, - [SMALL_STATE(3322)] = 143638, - [SMALL_STATE(3323)] = 143689, - [SMALL_STATE(3324)] = 143740, - [SMALL_STATE(3325)] = 143791, - [SMALL_STATE(3326)] = 143842, - [SMALL_STATE(3327)] = 143893, - [SMALL_STATE(3328)] = 143944, - [SMALL_STATE(3329)] = 143995, - [SMALL_STATE(3330)] = 144046, - [SMALL_STATE(3331)] = 144097, - [SMALL_STATE(3332)] = 144148, - [SMALL_STATE(3333)] = 144199, - [SMALL_STATE(3334)] = 144250, - [SMALL_STATE(3335)] = 144301, - [SMALL_STATE(3336)] = 144352, - [SMALL_STATE(3337)] = 144403, - [SMALL_STATE(3338)] = 144454, - [SMALL_STATE(3339)] = 144505, - [SMALL_STATE(3340)] = 144556, - [SMALL_STATE(3341)] = 144607, - [SMALL_STATE(3342)] = 144670, - [SMALL_STATE(3343)] = 144721, - [SMALL_STATE(3344)] = 144772, - [SMALL_STATE(3345)] = 144823, - [SMALL_STATE(3346)] = 144874, - [SMALL_STATE(3347)] = 144925, - [SMALL_STATE(3348)] = 144976, - [SMALL_STATE(3349)] = 145027, - [SMALL_STATE(3350)] = 145078, - [SMALL_STATE(3351)] = 145129, - [SMALL_STATE(3352)] = 145180, - [SMALL_STATE(3353)] = 145231, - [SMALL_STATE(3354)] = 145282, - [SMALL_STATE(3355)] = 145333, - [SMALL_STATE(3356)] = 145384, - [SMALL_STATE(3357)] = 145435, - [SMALL_STATE(3358)] = 145486, - [SMALL_STATE(3359)] = 145537, - [SMALL_STATE(3360)] = 145588, - [SMALL_STATE(3361)] = 145639, - [SMALL_STATE(3362)] = 145690, - [SMALL_STATE(3363)] = 145741, - [SMALL_STATE(3364)] = 145792, - [SMALL_STATE(3365)] = 145845, - [SMALL_STATE(3366)] = 145896, - [SMALL_STATE(3367)] = 145947, - [SMALL_STATE(3368)] = 145998, - [SMALL_STATE(3369)] = 146049, - [SMALL_STATE(3370)] = 146100, - [SMALL_STATE(3371)] = 146151, - [SMALL_STATE(3372)] = 146202, - [SMALL_STATE(3373)] = 146253, - [SMALL_STATE(3374)] = 146304, - [SMALL_STATE(3375)] = 146355, - [SMALL_STATE(3376)] = 146406, - [SMALL_STATE(3377)] = 146457, - [SMALL_STATE(3378)] = 146508, - [SMALL_STATE(3379)] = 146559, - [SMALL_STATE(3380)] = 146610, - [SMALL_STATE(3381)] = 146661, - [SMALL_STATE(3382)] = 146712, - [SMALL_STATE(3383)] = 146803, - [SMALL_STATE(3384)] = 146854, - [SMALL_STATE(3385)] = 146905, - [SMALL_STATE(3386)] = 146956, - [SMALL_STATE(3387)] = 147007, - [SMALL_STATE(3388)] = 147058, - [SMALL_STATE(3389)] = 147109, - [SMALL_STATE(3390)] = 147160, - [SMALL_STATE(3391)] = 147247, - [SMALL_STATE(3392)] = 147334, - [SMALL_STATE(3393)] = 147421, - [SMALL_STATE(3394)] = 147508, - [SMALL_STATE(3395)] = 147591, - [SMALL_STATE(3396)] = 147644, - [SMALL_STATE(3397)] = 147695, - [SMALL_STATE(3398)] = 147746, - [SMALL_STATE(3399)] = 147825, - [SMALL_STATE(3400)] = 147880, - [SMALL_STATE(3401)] = 147955, - [SMALL_STATE(3402)] = 148030, - [SMALL_STATE(3403)] = 148103, - [SMALL_STATE(3404)] = 148154, - [SMALL_STATE(3405)] = 148237, - [SMALL_STATE(3406)] = 148324, - [SMALL_STATE(3407)] = 148375, - [SMALL_STATE(3408)] = 148432, - [SMALL_STATE(3409)] = 148483, - [SMALL_STATE(3410)] = 148534, - [SMALL_STATE(3411)] = 148585, - [SMALL_STATE(3412)] = 148636, - [SMALL_STATE(3413)] = 148687, - [SMALL_STATE(3414)] = 148738, - [SMALL_STATE(3415)] = 148789, - [SMALL_STATE(3416)] = 148846, - [SMALL_STATE(3417)] = 148897, - [SMALL_STATE(3418)] = 148954, - [SMALL_STATE(3419)] = 149019, - [SMALL_STATE(3420)] = 149070, - [SMALL_STATE(3421)] = 149121, - [SMALL_STATE(3422)] = 149172, - [SMALL_STATE(3423)] = 149223, - [SMALL_STATE(3424)] = 149274, - [SMALL_STATE(3425)] = 149375, - [SMALL_STATE(3426)] = 149426, - [SMALL_STATE(3427)] = 149477, - [SMALL_STATE(3428)] = 149528, - [SMALL_STATE(3429)] = 149579, - [SMALL_STATE(3430)] = 149630, - [SMALL_STATE(3431)] = 149681, - [SMALL_STATE(3432)] = 149732, - [SMALL_STATE(3433)] = 149783, - [SMALL_STATE(3434)] = 149874, - [SMALL_STATE(3435)] = 149925, - [SMALL_STATE(3436)] = 149980, - [SMALL_STATE(3437)] = 150031, - [SMALL_STATE(3438)] = 150122, - [SMALL_STATE(3439)] = 150173, - [SMALL_STATE(3440)] = 150224, - [SMALL_STATE(3441)] = 150275, - [SMALL_STATE(3442)] = 150326, - [SMALL_STATE(3443)] = 150377, - [SMALL_STATE(3444)] = 150428, - [SMALL_STATE(3445)] = 150479, - [SMALL_STATE(3446)] = 150530, - [SMALL_STATE(3447)] = 150581, - [SMALL_STATE(3448)] = 150682, - [SMALL_STATE(3449)] = 150733, - [SMALL_STATE(3450)] = 150784, - [SMALL_STATE(3451)] = 150835, - [SMALL_STATE(3452)] = 150886, - [SMALL_STATE(3453)] = 150937, - [SMALL_STATE(3454)] = 150988, - [SMALL_STATE(3455)] = 151039, - [SMALL_STATE(3456)] = 151092, - [SMALL_STATE(3457)] = 151157, - [SMALL_STATE(3458)] = 151248, - [SMALL_STATE(3459)] = 151303, - [SMALL_STATE(3460)] = 151354, - [SMALL_STATE(3461)] = 151405, - [SMALL_STATE(3462)] = 151494, - [SMALL_STATE(3463)] = 151545, - [SMALL_STATE(3464)] = 151614, - [SMALL_STATE(3465)] = 151665, - [SMALL_STATE(3466)] = 151716, - [SMALL_STATE(3467)] = 151767, - [SMALL_STATE(3468)] = 151818, - [SMALL_STATE(3469)] = 151892, - [SMALL_STATE(3470)] = 151942, - [SMALL_STATE(3471)] = 152004, - [SMALL_STATE(3472)] = 152086, - [SMALL_STATE(3473)] = 152172, - [SMALL_STATE(3474)] = 152232, - [SMALL_STATE(3475)] = 152282, - [SMALL_STATE(3476)] = 152368, - [SMALL_STATE(3477)] = 152454, - [SMALL_STATE(3478)] = 152540, - [SMALL_STATE(3479)] = 152626, - [SMALL_STATE(3480)] = 152686, - [SMALL_STATE(3481)] = 152736, - [SMALL_STATE(3482)] = 152814, - [SMALL_STATE(3483)] = 152900, - [SMALL_STATE(3484)] = 152986, - [SMALL_STATE(3485)] = 153074, - [SMALL_STATE(3486)] = 153156, - [SMALL_STATE(3487)] = 153234, - [SMALL_STATE(3488)] = 153308, - [SMALL_STATE(3489)] = 153382, - [SMALL_STATE(3490)] = 153468, - [SMALL_STATE(3491)] = 153540, - [SMALL_STATE(3492)] = 153590, - [SMALL_STATE(3493)] = 153672, - [SMALL_STATE(3494)] = 153758, - [SMALL_STATE(3495)] = 153834, - [SMALL_STATE(3496)] = 153902, - [SMALL_STATE(3497)] = 153966, - [SMALL_STATE(3498)] = 154052, - [SMALL_STATE(3499)] = 154114, - [SMALL_STATE(3500)] = 154176, - [SMALL_STATE(3501)] = 154244, - [SMALL_STATE(3502)] = 154294, - [SMALL_STATE(3503)] = 154354, - [SMALL_STATE(3504)] = 154436, - [SMALL_STATE(3505)] = 154510, - [SMALL_STATE(3506)] = 154582, - [SMALL_STATE(3507)] = 154646, - [SMALL_STATE(3508)] = 154734, - [SMALL_STATE(3509)] = 154798, - [SMALL_STATE(3510)] = 154862, - [SMALL_STATE(3511)] = 154912, - [SMALL_STATE(3512)] = 154962, - [SMALL_STATE(3513)] = 155014, - [SMALL_STATE(3514)] = 155064, - [SMALL_STATE(3515)] = 155114, - [SMALL_STATE(3516)] = 155165, - [SMALL_STATE(3517)] = 155214, - [SMALL_STATE(3518)] = 155263, - [SMALL_STATE(3519)] = 155312, - [SMALL_STATE(3520)] = 155361, - [SMALL_STATE(3521)] = 155410, - [SMALL_STATE(3522)] = 155459, - [SMALL_STATE(3523)] = 155508, - [SMALL_STATE(3524)] = 155557, - [SMALL_STATE(3525)] = 155606, - [SMALL_STATE(3526)] = 155655, - [SMALL_STATE(3527)] = 155704, - [SMALL_STATE(3528)] = 155753, - [SMALL_STATE(3529)] = 155802, - [SMALL_STATE(3530)] = 155851, - [SMALL_STATE(3531)] = 155900, - [SMALL_STATE(3532)] = 155995, - [SMALL_STATE(3533)] = 156044, - [SMALL_STATE(3534)] = 156093, - [SMALL_STATE(3535)] = 156142, - [SMALL_STATE(3536)] = 156215, - [SMALL_STATE(3537)] = 156310, - [SMALL_STATE(3538)] = 156359, - [SMALL_STATE(3539)] = 156408, - [SMALL_STATE(3540)] = 156457, - [SMALL_STATE(3541)] = 156506, - [SMALL_STATE(3542)] = 156593, - [SMALL_STATE(3543)] = 156688, - [SMALL_STATE(3544)] = 156737, - [SMALL_STATE(3545)] = 156810, - [SMALL_STATE(3546)] = 156859, - [SMALL_STATE(3547)] = 156908, - [SMALL_STATE(3548)] = 157003, - [SMALL_STATE(3549)] = 157052, - [SMALL_STATE(3550)] = 157101, - [SMALL_STATE(3551)] = 157196, - [SMALL_STATE(3552)] = 157245, - [SMALL_STATE(3553)] = 157294, - [SMALL_STATE(3554)] = 157389, - [SMALL_STATE(3555)] = 157438, - [SMALL_STATE(3556)] = 157487, - [SMALL_STATE(3557)] = 157536, - [SMALL_STATE(3558)] = 157609, - [SMALL_STATE(3559)] = 157658, - [SMALL_STATE(3560)] = 157707, - [SMALL_STATE(3561)] = 157802, - [SMALL_STATE(3562)] = 157897, - [SMALL_STATE(3563)] = 157946, - [SMALL_STATE(3564)] = 157995, - [SMALL_STATE(3565)] = 158044, - [SMALL_STATE(3566)] = 158093, - [SMALL_STATE(3567)] = 158142, - [SMALL_STATE(3568)] = 158215, - [SMALL_STATE(3569)] = 158264, - [SMALL_STATE(3570)] = 158313, - [SMALL_STATE(3571)] = 158408, - [SMALL_STATE(3572)] = 158457, - [SMALL_STATE(3573)] = 158506, - [SMALL_STATE(3574)] = 158555, - [SMALL_STATE(3575)] = 158604, - [SMALL_STATE(3576)] = 158653, - [SMALL_STATE(3577)] = 158702, - [SMALL_STATE(3578)] = 158751, - [SMALL_STATE(3579)] = 158800, - [SMALL_STATE(3580)] = 158851, - [SMALL_STATE(3581)] = 158900, - [SMALL_STATE(3582)] = 158949, - [SMALL_STATE(3583)] = 159022, - [SMALL_STATE(3584)] = 159071, - [SMALL_STATE(3585)] = 159120, - [SMALL_STATE(3586)] = 159169, - [SMALL_STATE(3587)] = 159218, - [SMALL_STATE(3588)] = 159267, - [SMALL_STATE(3589)] = 159316, - [SMALL_STATE(3590)] = 159365, - [SMALL_STATE(3591)] = 159414, - [SMALL_STATE(3592)] = 159463, - [SMALL_STATE(3593)] = 159512, - [SMALL_STATE(3594)] = 159607, - [SMALL_STATE(3595)] = 159656, - [SMALL_STATE(3596)] = 159748, - [SMALL_STATE(3597)] = 159832, - [SMALL_STATE(3598)] = 159924, - [SMALL_STATE(3599)] = 160016, - [SMALL_STATE(3600)] = 160108, - [SMALL_STATE(3601)] = 160200, - [SMALL_STATE(3602)] = 160292, - [SMALL_STATE(3603)] = 160340, - [SMALL_STATE(3604)] = 160388, - [SMALL_STATE(3605)] = 160436, - [SMALL_STATE(3606)] = 160528, - [SMALL_STATE(3607)] = 160576, - [SMALL_STATE(3608)] = 160656, - [SMALL_STATE(3609)] = 160704, - [SMALL_STATE(3610)] = 160752, - [SMALL_STATE(3611)] = 160800, - [SMALL_STATE(3612)] = 160892, - [SMALL_STATE(3613)] = 160984, - [SMALL_STATE(3614)] = 161032, - [SMALL_STATE(3615)] = 161080, - [SMALL_STATE(3616)] = 161172, - [SMALL_STATE(3617)] = 161264, - [SMALL_STATE(3618)] = 161356, - [SMALL_STATE(3619)] = 161404, - [SMALL_STATE(3620)] = 161496, - [SMALL_STATE(3621)] = 161588, - [SMALL_STATE(3622)] = 161636, - [SMALL_STATE(3623)] = 161684, - [SMALL_STATE(3624)] = 161776, - [SMALL_STATE(3625)] = 161868, - [SMALL_STATE(3626)] = 161960, - [SMALL_STATE(3627)] = 162052, - [SMALL_STATE(3628)] = 162100, - [SMALL_STATE(3629)] = 162192, - [SMALL_STATE(3630)] = 162284, - [SMALL_STATE(3631)] = 162376, - [SMALL_STATE(3632)] = 162424, - [SMALL_STATE(3633)] = 162472, - [SMALL_STATE(3634)] = 162520, - [SMALL_STATE(3635)] = 162604, - [SMALL_STATE(3636)] = 162696, - [SMALL_STATE(3637)] = 162744, - [SMALL_STATE(3638)] = 162792, - [SMALL_STATE(3639)] = 162884, - [SMALL_STATE(3640)] = 162932, - [SMALL_STATE(3641)] = 163020, - [SMALL_STATE(3642)] = 163112, - [SMALL_STATE(3643)] = 163204, - [SMALL_STATE(3644)] = 163270, - [SMALL_STATE(3645)] = 163362, - [SMALL_STATE(3646)] = 163424, - [SMALL_STATE(3647)] = 163516, - [SMALL_STATE(3648)] = 163608, - [SMALL_STATE(3649)] = 163700, - [SMALL_STATE(3650)] = 163748, - [SMALL_STATE(3651)] = 163840, - [SMALL_STATE(3652)] = 163888, - [SMALL_STATE(3653)] = 163936, - [SMALL_STATE(3654)] = 164028, - [SMALL_STATE(3655)] = 164120, - [SMALL_STATE(3656)] = 164168, - [SMALL_STATE(3657)] = 164230, - [SMALL_STATE(3658)] = 164278, - [SMALL_STATE(3659)] = 164326, - [SMALL_STATE(3660)] = 164418, - [SMALL_STATE(3661)] = 164510, - [SMALL_STATE(3662)] = 164602, - [SMALL_STATE(3663)] = 164650, - [SMALL_STATE(3664)] = 164742, - [SMALL_STATE(3665)] = 164790, - [SMALL_STATE(3666)] = 164838, - [SMALL_STATE(3667)] = 164886, - [SMALL_STATE(3668)] = 164978, - [SMALL_STATE(3669)] = 165070, - [SMALL_STATE(3670)] = 165162, - [SMALL_STATE(3671)] = 165254, - [SMALL_STATE(3672)] = 165304, - [SMALL_STATE(3673)] = 165352, - [SMALL_STATE(3674)] = 165444, - [SMALL_STATE(3675)] = 165504, - [SMALL_STATE(3676)] = 165590, - [SMALL_STATE(3677)] = 165674, - [SMALL_STATE(3678)] = 165722, - [SMALL_STATE(3679)] = 165814, - [SMALL_STATE(3680)] = 165884, - [SMALL_STATE(3681)] = 165932, - [SMALL_STATE(3682)] = 166024, - [SMALL_STATE(3683)] = 166116, - [SMALL_STATE(3684)] = 166164, - [SMALL_STATE(3685)] = 166256, - [SMALL_STATE(3686)] = 166304, - [SMALL_STATE(3687)] = 166352, - [SMALL_STATE(3688)] = 166444, - [SMALL_STATE(3689)] = 166536, - [SMALL_STATE(3690)] = 166628, - [SMALL_STATE(3691)] = 166720, - [SMALL_STATE(3692)] = 166808, - [SMALL_STATE(3693)] = 166900, - [SMALL_STATE(3694)] = 166950, - [SMALL_STATE(3695)] = 167042, - [SMALL_STATE(3696)] = 167090, - [SMALL_STATE(3697)] = 167138, - [SMALL_STATE(3698)] = 167222, - [SMALL_STATE(3699)] = 167314, - [SMALL_STATE(3700)] = 167406, - [SMALL_STATE(3701)] = 167454, - [SMALL_STATE(3702)] = 167538, - [SMALL_STATE(3703)] = 167606, - [SMALL_STATE(3704)] = 167698, - [SMALL_STATE(3705)] = 167770, - [SMALL_STATE(3706)] = 167862, - [SMALL_STATE(3707)] = 167934, - [SMALL_STATE(3708)] = 168026, - [SMALL_STATE(3709)] = 168118, - [SMALL_STATE(3710)] = 168166, - [SMALL_STATE(3711)] = 168258, - [SMALL_STATE(3712)] = 168326, - [SMALL_STATE(3713)] = 168374, - [SMALL_STATE(3714)] = 168466, - [SMALL_STATE(3715)] = 168558, - [SMALL_STATE(3716)] = 168606, - [SMALL_STATE(3717)] = 168698, - [SMALL_STATE(3718)] = 168790, - [SMALL_STATE(3719)] = 168838, - [SMALL_STATE(3720)] = 168922, - [SMALL_STATE(3721)] = 168990, - [SMALL_STATE(3722)] = 169038, - [SMALL_STATE(3723)] = 169122, - [SMALL_STATE(3724)] = 169214, - [SMALL_STATE(3725)] = 169262, - [SMALL_STATE(3726)] = 169310, - [SMALL_STATE(3727)] = 169358, - [SMALL_STATE(3728)] = 169442, - [SMALL_STATE(3729)] = 169518, - [SMALL_STATE(3730)] = 169610, - [SMALL_STATE(3731)] = 169702, - [SMALL_STATE(3732)] = 169750, - [SMALL_STATE(3733)] = 169836, - [SMALL_STATE(3734)] = 169928, - [SMALL_STATE(3735)] = 169976, - [SMALL_STATE(3736)] = 170024, - [SMALL_STATE(3737)] = 170104, - [SMALL_STATE(3738)] = 170184, - [SMALL_STATE(3739)] = 170260, - [SMALL_STATE(3740)] = 170308, - [SMALL_STATE(3741)] = 170356, - [SMALL_STATE(3742)] = 170448, - [SMALL_STATE(3743)] = 170540, - [SMALL_STATE(3744)] = 170632, - [SMALL_STATE(3745)] = 170698, - [SMALL_STATE(3746)] = 170758, - [SMALL_STATE(3747)] = 170806, - [SMALL_STATE(3748)] = 170898, - [SMALL_STATE(3749)] = 170960, - [SMALL_STATE(3750)] = 171052, - [SMALL_STATE(3751)] = 171100, - [SMALL_STATE(3752)] = 171162, - [SMALL_STATE(3753)] = 171254, - [SMALL_STATE(3754)] = 171346, - [SMALL_STATE(3755)] = 171438, - [SMALL_STATE(3756)] = 171530, - [SMALL_STATE(3757)] = 171602, - [SMALL_STATE(3758)] = 171674, - [SMALL_STATE(3759)] = 171758, - [SMALL_STATE(3760)] = 171828, - [SMALL_STATE(3761)] = 171876, - [SMALL_STATE(3762)] = 171956, - [SMALL_STATE(3763)] = 172040, - [SMALL_STATE(3764)] = 172088, - [SMALL_STATE(3765)] = 172136, - [SMALL_STATE(3766)] = 172220, - [SMALL_STATE(3767)] = 172312, - [SMALL_STATE(3768)] = 172404, - [SMALL_STATE(3769)] = 172469, - [SMALL_STATE(3770)] = 172554, - [SMALL_STATE(3771)] = 172601, - [SMALL_STATE(3772)] = 172686, - [SMALL_STATE(3773)] = 172771, - [SMALL_STATE(3774)] = 172856, - [SMALL_STATE(3775)] = 172937, - [SMALL_STATE(3776)] = 173022, - [SMALL_STATE(3777)] = 173069, - [SMALL_STATE(3778)] = 173116, - [SMALL_STATE(3779)] = 173163, - [SMALL_STATE(3780)] = 173240, - [SMALL_STATE(3781)] = 173287, - [SMALL_STATE(3782)] = 173344, - [SMALL_STATE(3783)] = 173391, - [SMALL_STATE(3784)] = 173468, - [SMALL_STATE(3785)] = 173549, - [SMALL_STATE(3786)] = 173634, - [SMALL_STATE(3787)] = 173719, - [SMALL_STATE(3788)] = 173800, - [SMALL_STATE(3789)] = 173861, - [SMALL_STATE(3790)] = 173946, - [SMALL_STATE(3791)] = 173993, - [SMALL_STATE(3792)] = 174054, - [SMALL_STATE(3793)] = 174125, - [SMALL_STATE(3794)] = 174200, - [SMALL_STATE(3795)] = 174285, - [SMALL_STATE(3796)] = 174370, - [SMALL_STATE(3797)] = 174455, - [SMALL_STATE(3798)] = 174514, - [SMALL_STATE(3799)] = 174599, - [SMALL_STATE(3800)] = 174684, - [SMALL_STATE(3801)] = 174767, - [SMALL_STATE(3802)] = 174850, - [SMALL_STATE(3803)] = 174935, - [SMALL_STATE(3804)] = 175020, - [SMALL_STATE(3805)] = 175105, - [SMALL_STATE(3806)] = 175166, - [SMALL_STATE(3807)] = 175237, - [SMALL_STATE(3808)] = 175284, - [SMALL_STATE(3809)] = 175369, - [SMALL_STATE(3810)] = 175448, - [SMALL_STATE(3811)] = 175533, - [SMALL_STATE(3812)] = 175618, - [SMALL_STATE(3813)] = 175665, - [SMALL_STATE(3814)] = 175750, - [SMALL_STATE(3815)] = 175831, - [SMALL_STATE(3816)] = 175916, - [SMALL_STATE(3817)] = 175985, - [SMALL_STATE(3818)] = 176070, - [SMALL_STATE(3819)] = 176155, - [SMALL_STATE(3820)] = 176240, - [SMALL_STATE(3821)] = 176287, - [SMALL_STATE(3822)] = 176372, - [SMALL_STATE(3823)] = 176419, - [SMALL_STATE(3824)] = 176504, - [SMALL_STATE(3825)] = 176585, - [SMALL_STATE(3826)] = 176670, - [SMALL_STATE(3827)] = 176719, - [SMALL_STATE(3828)] = 176766, - [SMALL_STATE(3829)] = 176851, - [SMALL_STATE(3830)] = 176932, - [SMALL_STATE(3831)] = 176979, - [SMALL_STATE(3832)] = 177062, - [SMALL_STATE(3833)] = 177109, - [SMALL_STATE(3834)] = 177156, - [SMALL_STATE(3835)] = 177236, - [SMALL_STATE(3836)] = 177286, - [SMALL_STATE(3837)] = 177332, - [SMALL_STATE(3838)] = 177388, - [SMALL_STATE(3839)] = 177434, - [SMALL_STATE(3840)] = 177512, - [SMALL_STATE(3841)] = 177558, - [SMALL_STATE(3842)] = 177604, - [SMALL_STATE(3843)] = 177650, - [SMALL_STATE(3844)] = 177728, - [SMALL_STATE(3845)] = 177774, - [SMALL_STATE(3846)] = 177820, - [SMALL_STATE(3847)] = 177866, - [SMALL_STATE(3848)] = 177944, - [SMALL_STATE(3849)] = 177990, - [SMALL_STATE(3850)] = 178038, - [SMALL_STATE(3851)] = 178084, - [SMALL_STATE(3852)] = 178130, - [SMALL_STATE(3853)] = 178176, - [SMALL_STATE(3854)] = 178222, - [SMALL_STATE(3855)] = 178268, - [SMALL_STATE(3856)] = 178350, - [SMALL_STATE(3857)] = 178396, - [SMALL_STATE(3858)] = 178442, - [SMALL_STATE(3859)] = 178488, - [SMALL_STATE(3860)] = 178534, - [SMALL_STATE(3861)] = 178580, - [SMALL_STATE(3862)] = 178626, - [SMALL_STATE(3863)] = 178672, - [SMALL_STATE(3864)] = 178718, - [SMALL_STATE(3865)] = 178764, - [SMALL_STATE(3866)] = 178844, - [SMALL_STATE(3867)] = 178890, - [SMALL_STATE(3868)] = 178936, - [SMALL_STATE(3869)] = 178982, - [SMALL_STATE(3870)] = 179032, - [SMALL_STATE(3871)] = 179112, - [SMALL_STATE(3872)] = 179172, - [SMALL_STATE(3873)] = 179220, - [SMALL_STATE(3874)] = 179302, - [SMALL_STATE(3875)] = 179348, - [SMALL_STATE(3876)] = 179394, - [SMALL_STATE(3877)] = 179440, - [SMALL_STATE(3878)] = 179486, - [SMALL_STATE(3879)] = 179532, - [SMALL_STATE(3880)] = 179578, - [SMALL_STATE(3881)] = 179628, - [SMALL_STATE(3882)] = 179678, - [SMALL_STATE(3883)] = 179724, - [SMALL_STATE(3884)] = 179780, - [SMALL_STATE(3885)] = 179830, - [SMALL_STATE(3886)] = 179878, - [SMALL_STATE(3887)] = 179924, - [SMALL_STATE(3888)] = 179980, - [SMALL_STATE(3889)] = 180026, - [SMALL_STATE(3890)] = 180072, - [SMALL_STATE(3891)] = 180118, - [SMALL_STATE(3892)] = 180168, - [SMALL_STATE(3893)] = 180214, - [SMALL_STATE(3894)] = 180264, - [SMALL_STATE(3895)] = 180314, - [SMALL_STATE(3896)] = 180360, - [SMALL_STATE(3897)] = 180406, - [SMALL_STATE(3898)] = 180452, - [SMALL_STATE(3899)] = 180502, - [SMALL_STATE(3900)] = 180550, - [SMALL_STATE(3901)] = 180596, - [SMALL_STATE(3902)] = 180642, - [SMALL_STATE(3903)] = 180688, - [SMALL_STATE(3904)] = 180734, - [SMALL_STATE(3905)] = 180792, - [SMALL_STATE(3906)] = 180838, - [SMALL_STATE(3907)] = 180918, - [SMALL_STATE(3908)] = 180964, - [SMALL_STATE(3909)] = 181044, - [SMALL_STATE(3910)] = 181090, - [SMALL_STATE(3911)] = 181136, - [SMALL_STATE(3912)] = 181182, - [SMALL_STATE(3913)] = 181228, - [SMALL_STATE(3914)] = 181274, - [SMALL_STATE(3915)] = 181354, - [SMALL_STATE(3916)] = 181402, - [SMALL_STATE(3917)] = 181447, - [SMALL_STATE(3918)] = 181492, - [SMALL_STATE(3919)] = 181537, - [SMALL_STATE(3920)] = 181582, - [SMALL_STATE(3921)] = 181627, - [SMALL_STATE(3922)] = 181704, - [SMALL_STATE(3923)] = 181749, - [SMALL_STATE(3924)] = 181798, - [SMALL_STATE(3925)] = 181863, - [SMALL_STATE(3926)] = 181908, - [SMALL_STATE(3927)] = 181953, - [SMALL_STATE(3928)] = 182002, - [SMALL_STATE(3929)] = 182051, - [SMALL_STATE(3930)] = 182100, - [SMALL_STATE(3931)] = 182145, - [SMALL_STATE(3932)] = 182210, - [SMALL_STATE(3933)] = 182255, - [SMALL_STATE(3934)] = 182304, - [SMALL_STATE(3935)] = 182349, - [SMALL_STATE(3936)] = 182394, - [SMALL_STATE(3937)] = 182443, - [SMALL_STATE(3938)] = 182508, - [SMALL_STATE(3939)] = 182563, - [SMALL_STATE(3940)] = 182608, - [SMALL_STATE(3941)] = 182657, - [SMALL_STATE(3942)] = 182702, - [SMALL_STATE(3943)] = 182747, - [SMALL_STATE(3944)] = 182792, - [SMALL_STATE(3945)] = 182837, - [SMALL_STATE(3946)] = 182882, - [SMALL_STATE(3947)] = 182927, - [SMALL_STATE(3948)] = 182972, - [SMALL_STATE(3949)] = 183019, - [SMALL_STATE(3950)] = 183064, - [SMALL_STATE(3951)] = 183111, - [SMALL_STATE(3952)] = 183156, - [SMALL_STATE(3953)] = 183233, - [SMALL_STATE(3954)] = 183278, - [SMALL_STATE(3955)] = 183323, - [SMALL_STATE(3956)] = 183368, - [SMALL_STATE(3957)] = 183415, - [SMALL_STATE(3958)] = 183470, - [SMALL_STATE(3959)] = 183515, - [SMALL_STATE(3960)] = 183560, - [SMALL_STATE(3961)] = 183605, - [SMALL_STATE(3962)] = 183650, - [SMALL_STATE(3963)] = 183695, - [SMALL_STATE(3964)] = 183740, - [SMALL_STATE(3965)] = 183785, - [SMALL_STATE(3966)] = 183830, - [SMALL_STATE(3967)] = 183887, - [SMALL_STATE(3968)] = 183932, - [SMALL_STATE(3969)] = 183997, - [SMALL_STATE(3970)] = 184042, - [SMALL_STATE(3971)] = 184091, - [SMALL_STATE(3972)] = 184136, - [SMALL_STATE(3973)] = 184181, - [SMALL_STATE(3974)] = 184226, - [SMALL_STATE(3975)] = 184271, - [SMALL_STATE(3976)] = 184316, - [SMALL_STATE(3977)] = 184381, - [SMALL_STATE(3978)] = 184426, - [SMALL_STATE(3979)] = 184471, - [SMALL_STATE(3980)] = 184516, - [SMALL_STATE(3981)] = 184561, - [SMALL_STATE(3982)] = 184606, - [SMALL_STATE(3983)] = 184650, - [SMALL_STATE(3984)] = 184694, - [SMALL_STATE(3985)] = 184738, - [SMALL_STATE(3986)] = 184782, - [SMALL_STATE(3987)] = 184826, - [SMALL_STATE(3988)] = 184870, - [SMALL_STATE(3989)] = 184914, - [SMALL_STATE(3990)] = 184958, - [SMALL_STATE(3991)] = 185002, - [SMALL_STATE(3992)] = 185046, - [SMALL_STATE(3993)] = 185090, - [SMALL_STATE(3994)] = 185134, - [SMALL_STATE(3995)] = 185196, - [SMALL_STATE(3996)] = 185240, - [SMALL_STATE(3997)] = 185284, - [SMALL_STATE(3998)] = 185358, - [SMALL_STATE(3999)] = 185402, - [SMALL_STATE(4000)] = 185448, - [SMALL_STATE(4001)] = 185492, - [SMALL_STATE(4002)] = 185536, - [SMALL_STATE(4003)] = 185580, - [SMALL_STATE(4004)] = 185624, - [SMALL_STATE(4005)] = 185670, - [SMALL_STATE(4006)] = 185732, - [SMALL_STATE(4007)] = 185776, - [SMALL_STATE(4008)] = 185820, - [SMALL_STATE(4009)] = 185864, - [SMALL_STATE(4010)] = 185908, - [SMALL_STATE(4011)] = 185970, - [SMALL_STATE(4012)] = 186014, - [SMALL_STATE(4013)] = 186058, - [SMALL_STATE(4014)] = 186102, - [SMALL_STATE(4015)] = 186146, - [SMALL_STATE(4016)] = 186190, - [SMALL_STATE(4017)] = 186234, - [SMALL_STATE(4018)] = 186278, - [SMALL_STATE(4019)] = 186322, - [SMALL_STATE(4020)] = 186366, - [SMALL_STATE(4021)] = 186410, - [SMALL_STATE(4022)] = 186454, - [SMALL_STATE(4023)] = 186498, - [SMALL_STATE(4024)] = 186542, - [SMALL_STATE(4025)] = 186586, - [SMALL_STATE(4026)] = 186630, - [SMALL_STATE(4027)] = 186704, - [SMALL_STATE(4028)] = 186783, - [SMALL_STATE(4029)] = 186862, - [SMALL_STATE(4030)] = 186909, - [SMALL_STATE(4031)] = 186952, - [SMALL_STATE(4032)] = 187011, - [SMALL_STATE(4033)] = 187090, - [SMALL_STATE(4034)] = 187169, - [SMALL_STATE(4035)] = 187214, - [SMALL_STATE(4036)] = 187257, - [SMALL_STATE(4037)] = 187336, - [SMALL_STATE(4038)] = 187395, - [SMALL_STATE(4039)] = 187442, - [SMALL_STATE(4040)] = 187521, - [SMALL_STATE(4041)] = 187580, - [SMALL_STATE(4042)] = 187627, - [SMALL_STATE(4043)] = 187706, - [SMALL_STATE(4044)] = 187753, - [SMALL_STATE(4045)] = 187832, - [SMALL_STATE(4046)] = 187879, - [SMALL_STATE(4047)] = 187958, - [SMALL_STATE(4048)] = 188001, - [SMALL_STATE(4049)] = 188048, - [SMALL_STATE(4050)] = 188127, - [SMALL_STATE(4051)] = 188174, - [SMALL_STATE(4052)] = 188253, - [SMALL_STATE(4053)] = 188332, - [SMALL_STATE(4054)] = 188377, - [SMALL_STATE(4055)] = 188424, - [SMALL_STATE(4056)] = 188483, - [SMALL_STATE(4057)] = 188562, - [SMALL_STATE(4058)] = 188609, - [SMALL_STATE(4059)] = 188688, - [SMALL_STATE(4060)] = 188765, - [SMALL_STATE(4061)] = 188810, - [SMALL_STATE(4062)] = 188853, - [SMALL_STATE(4063)] = 188912, - [SMALL_STATE(4064)] = 188991, - [SMALL_STATE(4065)] = 189036, - [SMALL_STATE(4066)] = 189083, - [SMALL_STATE(4067)] = 189142, - [SMALL_STATE(4068)] = 189189, - [SMALL_STATE(4069)] = 189236, - [SMALL_STATE(4070)] = 189283, - [SMALL_STATE(4071)] = 189357, - [SMALL_STATE(4072)] = 189431, - [SMALL_STATE(4073)] = 189505, - [SMALL_STATE(4074)] = 189579, - [SMALL_STATE(4075)] = 189653, - [SMALL_STATE(4076)] = 189727, - [SMALL_STATE(4077)] = 189801, - [SMALL_STATE(4078)] = 189875, - [SMALL_STATE(4079)] = 189949, - [SMALL_STATE(4080)] = 190007, - [SMALL_STATE(4081)] = 190081, - [SMALL_STATE(4082)] = 190155, - [SMALL_STATE(4083)] = 190229, - [SMALL_STATE(4084)] = 190303, - [SMALL_STATE(4085)] = 190377, - [SMALL_STATE(4086)] = 190433, - [SMALL_STATE(4087)] = 190507, - [SMALL_STATE(4088)] = 190581, - [SMALL_STATE(4089)] = 190655, - [SMALL_STATE(4090)] = 190729, - [SMALL_STATE(4091)] = 190803, - [SMALL_STATE(4092)] = 190877, - [SMALL_STATE(4093)] = 190951, - [SMALL_STATE(4094)] = 191025, - [SMALL_STATE(4095)] = 191067, - [SMALL_STATE(4096)] = 191113, - [SMALL_STATE(4097)] = 191187, - [SMALL_STATE(4098)] = 191261, - [SMALL_STATE(4099)] = 191335, - [SMALL_STATE(4100)] = 191409, - [SMALL_STATE(4101)] = 191483, - [SMALL_STATE(4102)] = 191559, - [SMALL_STATE(4103)] = 191633, - [SMALL_STATE(4104)] = 191707, - [SMALL_STATE(4105)] = 191781, - [SMALL_STATE(4106)] = 191855, - [SMALL_STATE(4107)] = 191929, - [SMALL_STATE(4108)] = 192003, - [SMALL_STATE(4109)] = 192077, - [SMALL_STATE(4110)] = 192151, - [SMALL_STATE(4111)] = 192225, - [SMALL_STATE(4112)] = 192299, - [SMALL_STATE(4113)] = 192375, - [SMALL_STATE(4114)] = 192449, - [SMALL_STATE(4115)] = 192523, - [SMALL_STATE(4116)] = 192597, - [SMALL_STATE(4117)] = 192643, - [SMALL_STATE(4118)] = 192717, - [SMALL_STATE(4119)] = 192791, - [SMALL_STATE(4120)] = 192865, - [SMALL_STATE(4121)] = 192939, - [SMALL_STATE(4122)] = 193015, - [SMALL_STATE(4123)] = 193089, - [SMALL_STATE(4124)] = 193163, - [SMALL_STATE(4125)] = 193237, - [SMALL_STATE(4126)] = 193311, - [SMALL_STATE(4127)] = 193385, - [SMALL_STATE(4128)] = 193459, - [SMALL_STATE(4129)] = 193533, - [SMALL_STATE(4130)] = 193607, - [SMALL_STATE(4131)] = 193681, - [SMALL_STATE(4132)] = 193755, - [SMALL_STATE(4133)] = 193817, - [SMALL_STATE(4134)] = 193859, - [SMALL_STATE(4135)] = 193901, - [SMALL_STATE(4136)] = 193975, - [SMALL_STATE(4137)] = 194049, - [SMALL_STATE(4138)] = 194111, - [SMALL_STATE(4139)] = 194185, - [SMALL_STATE(4140)] = 194259, - [SMALL_STATE(4141)] = 194333, - [SMALL_STATE(4142)] = 194393, - [SMALL_STATE(4143)] = 194467, - [SMALL_STATE(4144)] = 194541, - [SMALL_STATE(4145)] = 194615, - [SMALL_STATE(4146)] = 194689, - [SMALL_STATE(4147)] = 194763, - [SMALL_STATE(4148)] = 194837, - [SMALL_STATE(4149)] = 194911, - [SMALL_STATE(4150)] = 194969, - [SMALL_STATE(4151)] = 195011, - [SMALL_STATE(4152)] = 195085, - [SMALL_STATE(4153)] = 195159, - [SMALL_STATE(4154)] = 195233, - [SMALL_STATE(4155)] = 195307, - [SMALL_STATE(4156)] = 195381, - [SMALL_STATE(4157)] = 195457, - [SMALL_STATE(4158)] = 195531, - [SMALL_STATE(4159)] = 195605, - [SMALL_STATE(4160)] = 195681, - [SMALL_STATE(4161)] = 195755, - [SMALL_STATE(4162)] = 195801, - [SMALL_STATE(4163)] = 195875, - [SMALL_STATE(4164)] = 195933, - [SMALL_STATE(4165)] = 196007, - [SMALL_STATE(4166)] = 196081, - [SMALL_STATE(4167)] = 196155, - [SMALL_STATE(4168)] = 196229, - [SMALL_STATE(4169)] = 196303, - [SMALL_STATE(4170)] = 196345, - [SMALL_STATE(4171)] = 196419, - [SMALL_STATE(4172)] = 196463, - [SMALL_STATE(4173)] = 196537, - [SMALL_STATE(4174)] = 196611, - [SMALL_STATE(4175)] = 196685, - [SMALL_STATE(4176)] = 196759, - [SMALL_STATE(4177)] = 196833, - [SMALL_STATE(4178)] = 196907, - [SMALL_STATE(4179)] = 196981, - [SMALL_STATE(4180)] = 197055, - [SMALL_STATE(4181)] = 197129, - [SMALL_STATE(4182)] = 197203, - [SMALL_STATE(4183)] = 197277, - [SMALL_STATE(4184)] = 197351, - [SMALL_STATE(4185)] = 197425, - [SMALL_STATE(4186)] = 197499, - [SMALL_STATE(4187)] = 197573, - [SMALL_STATE(4188)] = 197647, - [SMALL_STATE(4189)] = 197721, - [SMALL_STATE(4190)] = 197795, - [SMALL_STATE(4191)] = 197853, - [SMALL_STATE(4192)] = 197911, - [SMALL_STATE(4193)] = 197985, - [SMALL_STATE(4194)] = 198059, - [SMALL_STATE(4195)] = 198135, - [SMALL_STATE(4196)] = 198209, - [SMALL_STATE(4197)] = 198283, - [SMALL_STATE(4198)] = 198357, - [SMALL_STATE(4199)] = 198415, - [SMALL_STATE(4200)] = 198457, - [SMALL_STATE(4201)] = 198531, - [SMALL_STATE(4202)] = 198605, - [SMALL_STATE(4203)] = 198679, - [SMALL_STATE(4204)] = 198753, - [SMALL_STATE(4205)] = 198827, - [SMALL_STATE(4206)] = 198869, - [SMALL_STATE(4207)] = 198943, - [SMALL_STATE(4208)] = 198985, - [SMALL_STATE(4209)] = 199027, - [SMALL_STATE(4210)] = 199087, - [SMALL_STATE(4211)] = 199129, - [SMALL_STATE(4212)] = 199203, - [SMALL_STATE(4213)] = 199277, - [SMALL_STATE(4214)] = 199318, - [SMALL_STATE(4215)] = 199359, - [SMALL_STATE(4216)] = 199406, - [SMALL_STATE(4217)] = 199449, - [SMALL_STATE(4218)] = 199508, - [SMALL_STATE(4219)] = 199553, - [SMALL_STATE(4220)] = 199594, - [SMALL_STATE(4221)] = 199635, - [SMALL_STATE(4222)] = 199680, - [SMALL_STATE(4223)] = 199721, - [SMALL_STATE(4224)] = 199762, - [SMALL_STATE(4225)] = 199803, - [SMALL_STATE(4226)] = 199844, - [SMALL_STATE(4227)] = 199885, - [SMALL_STATE(4228)] = 199926, - [SMALL_STATE(4229)] = 199973, - [SMALL_STATE(4230)] = 200030, - [SMALL_STATE(4231)] = 200083, - [SMALL_STATE(4232)] = 200130, - [SMALL_STATE(4233)] = 200173, - [SMALL_STATE(4234)] = 200228, - [SMALL_STATE(4235)] = 200269, - [SMALL_STATE(4236)] = 200328, - [SMALL_STATE(4237)] = 200373, - [SMALL_STATE(4238)] = 200420, - [SMALL_STATE(4239)] = 200461, - [SMALL_STATE(4240)] = 200502, - [SMALL_STATE(4241)] = 200559, - [SMALL_STATE(4242)] = 200610, - [SMALL_STATE(4243)] = 200655, - [SMALL_STATE(4244)] = 200696, - [SMALL_STATE(4245)] = 200746, - [SMALL_STATE(4246)] = 200792, - [SMALL_STATE(4247)] = 200842, - [SMALL_STATE(4248)] = 200882, - [SMALL_STATE(4249)] = 200926, - [SMALL_STATE(4250)] = 200976, - [SMALL_STATE(4251)] = 201026, - [SMALL_STATE(4252)] = 201072, - [SMALL_STATE(4253)] = 201118, - [SMALL_STATE(4254)] = 201158, - [SMALL_STATE(4255)] = 201204, - [SMALL_STATE(4256)] = 201254, - [SMALL_STATE(4257)] = 201294, - [SMALL_STATE(4258)] = 201340, - [SMALL_STATE(4259)] = 201388, - [SMALL_STATE(4260)] = 201438, - [SMALL_STATE(4261)] = 201486, - [SMALL_STATE(4262)] = 201532, - [SMALL_STATE(4263)] = 201576, - [SMALL_STATE(4264)] = 201632, - [SMALL_STATE(4265)] = 201676, - [SMALL_STATE(4266)] = 201726, - [SMALL_STATE(4267)] = 201772, - [SMALL_STATE(4268)] = 201818, - [SMALL_STATE(4269)] = 201858, - [SMALL_STATE(4270)] = 201898, - [SMALL_STATE(4271)] = 201938, - [SMALL_STATE(4272)] = 201984, - [SMALL_STATE(4273)] = 202030, - [SMALL_STATE(4274)] = 202086, - [SMALL_STATE(4275)] = 202130, - [SMALL_STATE(4276)] = 202172, - [SMALL_STATE(4277)] = 202212, - [SMALL_STATE(4278)] = 202252, - [SMALL_STATE(4279)] = 202298, - [SMALL_STATE(4280)] = 202344, - [SMALL_STATE(4281)] = 202390, - [SMALL_STATE(4282)] = 202436, - [SMALL_STATE(4283)] = 202492, - [SMALL_STATE(4284)] = 202560, - [SMALL_STATE(4285)] = 202606, - [SMALL_STATE(4286)] = 202662, - [SMALL_STATE(4287)] = 202714, - [SMALL_STATE(4288)] = 202770, - [SMALL_STATE(4289)] = 202810, - [SMALL_STATE(4290)] = 202850, - [SMALL_STATE(4291)] = 202890, - [SMALL_STATE(4292)] = 202946, - [SMALL_STATE(4293)] = 202986, - [SMALL_STATE(4294)] = 203026, - [SMALL_STATE(4295)] = 203091, - [SMALL_STATE(4296)] = 203138, - [SMALL_STATE(4297)] = 203203, - [SMALL_STATE(4298)] = 203268, - [SMALL_STATE(4299)] = 203333, - [SMALL_STATE(4300)] = 203398, - [SMALL_STATE(4301)] = 203463, - [SMALL_STATE(4302)] = 203528, - [SMALL_STATE(4303)] = 203583, - [SMALL_STATE(4304)] = 203628, - [SMALL_STATE(4305)] = 203693, - [SMALL_STATE(4306)] = 203762, - [SMALL_STATE(4307)] = 203831, - [SMALL_STATE(4308)] = 203874, - [SMALL_STATE(4309)] = 203939, - [SMALL_STATE(4310)] = 204004, - [SMALL_STATE(4311)] = 204043, - [SMALL_STATE(4312)] = 204108, - [SMALL_STATE(4313)] = 204173, - [SMALL_STATE(4314)] = 204216, - [SMALL_STATE(4315)] = 204281, - [SMALL_STATE(4316)] = 204324, - [SMALL_STATE(4317)] = 204373, - [SMALL_STATE(4318)] = 204438, - [SMALL_STATE(4319)] = 204507, - [SMALL_STATE(4320)] = 204576, - [SMALL_STATE(4321)] = 204619, - [SMALL_STATE(4322)] = 204684, - [SMALL_STATE(4323)] = 204727, - [SMALL_STATE(4324)] = 204770, - [SMALL_STATE(4325)] = 204817, - [SMALL_STATE(4326)] = 204886, - [SMALL_STATE(4327)] = 204955, - [SMALL_STATE(4328)] = 205004, - [SMALL_STATE(4329)] = 205069, - [SMALL_STATE(4330)] = 205118, - [SMALL_STATE(4331)] = 205161, - [SMALL_STATE(4332)] = 205226, - [SMALL_STATE(4333)] = 205295, - [SMALL_STATE(4334)] = 205334, - [SMALL_STATE(4335)] = 205387, - [SMALL_STATE(4336)] = 205452, - [SMALL_STATE(4337)] = 205517, - [SMALL_STATE(4338)] = 205582, - [SMALL_STATE(4339)] = 205631, - [SMALL_STATE(4340)] = 205670, - [SMALL_STATE(4341)] = 205709, - [SMALL_STATE(4342)] = 205774, - [SMALL_STATE(4343)] = 205839, - [SMALL_STATE(4344)] = 205888, - [SMALL_STATE(4345)] = 205943, - [SMALL_STATE(4346)] = 205998, - [SMALL_STATE(4347)] = 206063, - [SMALL_STATE(4348)] = 206132, - [SMALL_STATE(4349)] = 206201, - [SMALL_STATE(4350)] = 206244, - [SMALL_STATE(4351)] = 206309, - [SMALL_STATE(4352)] = 206374, - [SMALL_STATE(4353)] = 206439, - [SMALL_STATE(4354)] = 206508, - [SMALL_STATE(4355)] = 206577, - [SMALL_STATE(4356)] = 206626, - [SMALL_STATE(4357)] = 206675, - [SMALL_STATE(4358)] = 206740, - [SMALL_STATE(4359)] = 206805, - [SMALL_STATE(4360)] = 206870, - [SMALL_STATE(4361)] = 206909, - [SMALL_STATE(4362)] = 206950, - [SMALL_STATE(4363)] = 206997, - [SMALL_STATE(4364)] = 207038, - [SMALL_STATE(4365)] = 207091, - [SMALL_STATE(4366)] = 207160, - [SMALL_STATE(4367)] = 207215, - [SMALL_STATE(4368)] = 207268, - [SMALL_STATE(4369)] = 207309, - [SMALL_STATE(4370)] = 207374, - [SMALL_STATE(4371)] = 207443, - [SMALL_STATE(4372)] = 207512, - [SMALL_STATE(4373)] = 207559, - [SMALL_STATE(4374)] = 207624, - [SMALL_STATE(4375)] = 207689, - [SMALL_STATE(4376)] = 207754, - [SMALL_STATE(4377)] = 207809, - [SMALL_STATE(4378)] = 207864, - [SMALL_STATE(4379)] = 207929, - [SMALL_STATE(4380)] = 207994, - [SMALL_STATE(4381)] = 208063, - [SMALL_STATE(4382)] = 208106, - [SMALL_STATE(4383)] = 208171, - [SMALL_STATE(4384)] = 208236, - [SMALL_STATE(4385)] = 208301, - [SMALL_STATE(4386)] = 208366, - [SMALL_STATE(4387)] = 208431, - [SMALL_STATE(4388)] = 208496, - [SMALL_STATE(4389)] = 208546, - [SMALL_STATE(4390)] = 208588, - [SMALL_STATE(4391)] = 208632, - [SMALL_STATE(4392)] = 208680, - [SMALL_STATE(4393)] = 208718, - [SMALL_STATE(4394)] = 208768, - [SMALL_STATE(4395)] = 208806, - [SMALL_STATE(4396)] = 208856, - [SMALL_STATE(4397)] = 208906, - [SMALL_STATE(4398)] = 208944, - [SMALL_STATE(4399)] = 208994, - [SMALL_STATE(4400)] = 209044, - [SMALL_STATE(4401)] = 209094, - [SMALL_STATE(4402)] = 209144, - [SMALL_STATE(4403)] = 209194, - [SMALL_STATE(4404)] = 209244, - [SMALL_STATE(4405)] = 209286, - [SMALL_STATE(4406)] = 209324, - [SMALL_STATE(4407)] = 209364, - [SMALL_STATE(4408)] = 209414, - [SMALL_STATE(4409)] = 209464, - [SMALL_STATE(4410)] = 209514, - [SMALL_STATE(4411)] = 209562, - [SMALL_STATE(4412)] = 209602, - [SMALL_STATE(4413)] = 209652, - [SMALL_STATE(4414)] = 209702, - [SMALL_STATE(4415)] = 209744, - [SMALL_STATE(4416)] = 209794, - [SMALL_STATE(4417)] = 209838, - [SMALL_STATE(4418)] = 209888, - [SMALL_STATE(4419)] = 209930, - [SMALL_STATE(4420)] = 209970, - [SMALL_STATE(4421)] = 210014, - [SMALL_STATE(4422)] = 210056, - [SMALL_STATE(4423)] = 210106, - [SMALL_STATE(4424)] = 210158, - [SMALL_STATE(4425)] = 210201, - [SMALL_STATE(4426)] = 210244, - [SMALL_STATE(4427)] = 210307, - [SMALL_STATE(4428)] = 210344, - [SMALL_STATE(4429)] = 210381, - [SMALL_STATE(4430)] = 210418, - [SMALL_STATE(4431)] = 210455, - [SMALL_STATE(4432)] = 210492, - [SMALL_STATE(4433)] = 210529, - [SMALL_STATE(4434)] = 210566, - [SMALL_STATE(4435)] = 210613, - [SMALL_STATE(4436)] = 210656, - [SMALL_STATE(4437)] = 210693, - [SMALL_STATE(4438)] = 210730, - [SMALL_STATE(4439)] = 210767, - [SMALL_STATE(4440)] = 210804, - [SMALL_STATE(4441)] = 210847, - [SMALL_STATE(4442)] = 210884, - [SMALL_STATE(4443)] = 210947, - [SMALL_STATE(4444)] = 210984, - [SMALL_STATE(4445)] = 211021, - [SMALL_STATE(4446)] = 211058, - [SMALL_STATE(4447)] = 211101, - [SMALL_STATE(4448)] = 211138, - [SMALL_STATE(4449)] = 211185, - [SMALL_STATE(4450)] = 211228, - [SMALL_STATE(4451)] = 211265, - [SMALL_STATE(4452)] = 211312, - [SMALL_STATE(4453)] = 211355, - [SMALL_STATE(4454)] = 211392, - [SMALL_STATE(4455)] = 211429, - [SMALL_STATE(4456)] = 211472, - [SMALL_STATE(4457)] = 211515, - [SMALL_STATE(4458)] = 211558, - [SMALL_STATE(4459)] = 211601, - [SMALL_STATE(4460)] = 211644, - [SMALL_STATE(4461)] = 211681, - [SMALL_STATE(4462)] = 211744, - [SMALL_STATE(4463)] = 211781, - [SMALL_STATE(4464)] = 211822, - [SMALL_STATE(4465)] = 211859, - [SMALL_STATE(4466)] = 211922, - [SMALL_STATE(4467)] = 211965, - [SMALL_STATE(4468)] = 212028, - [SMALL_STATE(4469)] = 212065, - [SMALL_STATE(4470)] = 212104, - [SMALL_STATE(4471)] = 212141, - [SMALL_STATE(4472)] = 212184, - [SMALL_STATE(4473)] = 212221, - [SMALL_STATE(4474)] = 212264, - [SMALL_STATE(4475)] = 212307, - [SMALL_STATE(4476)] = 212354, - [SMALL_STATE(4477)] = 212395, - [SMALL_STATE(4478)] = 212458, - [SMALL_STATE(4479)] = 212495, - [SMALL_STATE(4480)] = 212532, - [SMALL_STATE(4481)] = 212569, - [SMALL_STATE(4482)] = 212606, - [SMALL_STATE(4483)] = 212649, - [SMALL_STATE(4484)] = 212692, - [SMALL_STATE(4485)] = 212733, - [SMALL_STATE(4486)] = 212796, - [SMALL_STATE(4487)] = 212837, - [SMALL_STATE(4488)] = 212884, - [SMALL_STATE(4489)] = 212927, - [SMALL_STATE(4490)] = 212974, - [SMALL_STATE(4491)] = 213021, - [SMALL_STATE(4492)] = 213064, - [SMALL_STATE(4493)] = 213107, - [SMALL_STATE(4494)] = 213170, - [SMALL_STATE(4495)] = 213217, - [SMALL_STATE(4496)] = 213264, - [SMALL_STATE(4497)] = 213311, - [SMALL_STATE(4498)] = 213348, - [SMALL_STATE(4499)] = 213411, - [SMALL_STATE(4500)] = 213448, - [SMALL_STATE(4501)] = 213485, - [SMALL_STATE(4502)] = 213522, - [SMALL_STATE(4503)] = 213559, - [SMALL_STATE(4504)] = 213606, - [SMALL_STATE(4505)] = 213643, - [SMALL_STATE(4506)] = 213680, - [SMALL_STATE(4507)] = 213723, - [SMALL_STATE(4508)] = 213766, - [SMALL_STATE(4509)] = 213809, - [SMALL_STATE(4510)] = 213852, - [SMALL_STATE(4511)] = 213889, - [SMALL_STATE(4512)] = 213932, - [SMALL_STATE(4513)] = 213969, - [SMALL_STATE(4514)] = 214032, - [SMALL_STATE(4515)] = 214095, - [SMALL_STATE(4516)] = 214158, - [SMALL_STATE(4517)] = 214221, - [SMALL_STATE(4518)] = 214258, - [SMALL_STATE(4519)] = 214295, - [SMALL_STATE(4520)] = 214336, - [SMALL_STATE(4521)] = 214399, - [SMALL_STATE(4522)] = 214442, - [SMALL_STATE(4523)] = 214479, - [SMALL_STATE(4524)] = 214516, - [SMALL_STATE(4525)] = 214565, - [SMALL_STATE(4526)] = 214614, - [SMALL_STATE(4527)] = 214657, - [SMALL_STATE(4528)] = 214700, - [SMALL_STATE(4529)] = 214743, - [SMALL_STATE(4530)] = 214786, - [SMALL_STATE(4531)] = 214833, - [SMALL_STATE(4532)] = 214876, - [SMALL_STATE(4533)] = 214919, - [SMALL_STATE(4534)] = 214962, - [SMALL_STATE(4535)] = 214999, - [SMALL_STATE(4536)] = 215042, - [SMALL_STATE(4537)] = 215085, - [SMALL_STATE(4538)] = 215132, - [SMALL_STATE(4539)] = 215175, - [SMALL_STATE(4540)] = 215222, - [SMALL_STATE(4541)] = 215265, - [SMALL_STATE(4542)] = 215312, - [SMALL_STATE(4543)] = 215355, - [SMALL_STATE(4544)] = 215398, - [SMALL_STATE(4545)] = 215441, - [SMALL_STATE(4546)] = 215484, - [SMALL_STATE(4547)] = 215521, - [SMALL_STATE(4548)] = 215564, - [SMALL_STATE(4549)] = 215607, - [SMALL_STATE(4550)] = 215650, - [SMALL_STATE(4551)] = 215693, - [SMALL_STATE(4552)] = 215736, - [SMALL_STATE(4553)] = 215779, - [SMALL_STATE(4554)] = 215822, - [SMALL_STATE(4555)] = 215865, - [SMALL_STATE(4556)] = 215908, - [SMALL_STATE(4557)] = 215951, - [SMALL_STATE(4558)] = 215994, - [SMALL_STATE(4559)] = 216037, - [SMALL_STATE(4560)] = 216080, - [SMALL_STATE(4561)] = 216123, - [SMALL_STATE(4562)] = 216166, - [SMALL_STATE(4563)] = 216203, - [SMALL_STATE(4564)] = 216246, - [SMALL_STATE(4565)] = 216283, - [SMALL_STATE(4566)] = 216326, - [SMALL_STATE(4567)] = 216363, - [SMALL_STATE(4568)] = 216406, - [SMALL_STATE(4569)] = 216449, - [SMALL_STATE(4570)] = 216492, - [SMALL_STATE(4571)] = 216555, - [SMALL_STATE(4572)] = 216598, - [SMALL_STATE(4573)] = 216641, - [SMALL_STATE(4574)] = 216684, - [SMALL_STATE(4575)] = 216731, - [SMALL_STATE(4576)] = 216774, - [SMALL_STATE(4577)] = 216817, - [SMALL_STATE(4578)] = 216860, - [SMALL_STATE(4579)] = 216903, - [SMALL_STATE(4580)] = 216946, - [SMALL_STATE(4581)] = 216989, - [SMALL_STATE(4582)] = 217036, - [SMALL_STATE(4583)] = 217083, - [SMALL_STATE(4584)] = 217126, - [SMALL_STATE(4585)] = 217169, - [SMALL_STATE(4586)] = 217212, - [SMALL_STATE(4587)] = 217259, - [SMALL_STATE(4588)] = 217302, - [SMALL_STATE(4589)] = 217349, - [SMALL_STATE(4590)] = 217392, - [SMALL_STATE(4591)] = 217435, - [SMALL_STATE(4592)] = 217478, - [SMALL_STATE(4593)] = 217521, - [SMALL_STATE(4594)] = 217558, - [SMALL_STATE(4595)] = 217601, - [SMALL_STATE(4596)] = 217644, - [SMALL_STATE(4597)] = 217687, - [SMALL_STATE(4598)] = 217730, - [SMALL_STATE(4599)] = 217773, - [SMALL_STATE(4600)] = 217816, - [SMALL_STATE(4601)] = 217859, - [SMALL_STATE(4602)] = 217902, - [SMALL_STATE(4603)] = 217945, - [SMALL_STATE(4604)] = 217988, - [SMALL_STATE(4605)] = 218025, - [SMALL_STATE(4606)] = 218062, - [SMALL_STATE(4607)] = 218101, - [SMALL_STATE(4608)] = 218144, - [SMALL_STATE(4609)] = 218191, - [SMALL_STATE(4610)] = 218234, - [SMALL_STATE(4611)] = 218277, - [SMALL_STATE(4612)] = 218324, - [SMALL_STATE(4613)] = 218361, - [SMALL_STATE(4614)] = 218404, - [SMALL_STATE(4615)] = 218445, - [SMALL_STATE(4616)] = 218488, - [SMALL_STATE(4617)] = 218531, - [SMALL_STATE(4618)] = 218574, - [SMALL_STATE(4619)] = 218615, - [SMALL_STATE(4620)] = 218658, - [SMALL_STATE(4621)] = 218701, - [SMALL_STATE(4622)] = 218744, - [SMALL_STATE(4623)] = 218787, - [SMALL_STATE(4624)] = 218824, - [SMALL_STATE(4625)] = 218867, - [SMALL_STATE(4626)] = 218927, - [SMALL_STATE(4627)] = 218987, - [SMALL_STATE(4628)] = 219047, - [SMALL_STATE(4629)] = 219107, - [SMALL_STATE(4630)] = 219149, - [SMALL_STATE(4631)] = 219209, - [SMALL_STATE(4632)] = 219255, - [SMALL_STATE(4633)] = 219301, - [SMALL_STATE(4634)] = 219361, - [SMALL_STATE(4635)] = 219421, - [SMALL_STATE(4636)] = 219467, - [SMALL_STATE(4637)] = 219527, - [SMALL_STATE(4638)] = 219587, - [SMALL_STATE(4639)] = 219647, - [SMALL_STATE(4640)] = 219689, - [SMALL_STATE(4641)] = 219749, - [SMALL_STATE(4642)] = 219809, - [SMALL_STATE(4643)] = 219869, - [SMALL_STATE(4644)] = 219929, - [SMALL_STATE(4645)] = 219989, - [SMALL_STATE(4646)] = 220049, - [SMALL_STATE(4647)] = 220109, - [SMALL_STATE(4648)] = 220169, - [SMALL_STATE(4649)] = 220229, - [SMALL_STATE(4650)] = 220275, - [SMALL_STATE(4651)] = 220315, - [SMALL_STATE(4652)] = 220357, - [SMALL_STATE(4653)] = 220417, - [SMALL_STATE(4654)] = 220459, - [SMALL_STATE(4655)] = 220519, - [SMALL_STATE(4656)] = 220559, - [SMALL_STATE(4657)] = 220617, - [SMALL_STATE(4658)] = 220659, - [SMALL_STATE(4659)] = 220705, - [SMALL_STATE(4660)] = 220751, - [SMALL_STATE(4661)] = 220811, - [SMALL_STATE(4662)] = 220853, - [SMALL_STATE(4663)] = 220913, - [SMALL_STATE(4664)] = 220973, - [SMALL_STATE(4665)] = 221017, - [SMALL_STATE(4666)] = 221077, - [SMALL_STATE(4667)] = 221121, - [SMALL_STATE(4668)] = 221165, - [SMALL_STATE(4669)] = 221205, - [SMALL_STATE(4670)] = 221265, - [SMALL_STATE(4671)] = 221305, - [SMALL_STATE(4672)] = 221343, - [SMALL_STATE(4673)] = 221403, - [SMALL_STATE(4674)] = 221443, - [SMALL_STATE(4675)] = 221503, - [SMALL_STATE(4676)] = 221545, - [SMALL_STATE(4677)] = 221605, - [SMALL_STATE(4678)] = 221649, - [SMALL_STATE(4679)] = 221693, - [SMALL_STATE(4680)] = 221753, - [SMALL_STATE(4681)] = 221813, - [SMALL_STATE(4682)] = 221857, - [SMALL_STATE(4683)] = 221917, - [SMALL_STATE(4684)] = 221977, - [SMALL_STATE(4685)] = 222037, - [SMALL_STATE(4686)] = 222081, - [SMALL_STATE(4687)] = 222125, - [SMALL_STATE(4688)] = 222185, - [SMALL_STATE(4689)] = 222229, - [SMALL_STATE(4690)] = 222289, - [SMALL_STATE(4691)] = 222349, - [SMALL_STATE(4692)] = 222409, - [SMALL_STATE(4693)] = 222453, - [SMALL_STATE(4694)] = 222497, - [SMALL_STATE(4695)] = 222557, - [SMALL_STATE(4696)] = 222617, - [SMALL_STATE(4697)] = 222677, - [SMALL_STATE(4698)] = 222737, - [SMALL_STATE(4699)] = 222779, - [SMALL_STATE(4700)] = 222839, - [SMALL_STATE(4701)] = 222899, - [SMALL_STATE(4702)] = 222959, - [SMALL_STATE(4703)] = 223019, - [SMALL_STATE(4704)] = 223079, - [SMALL_STATE(4705)] = 223139, - [SMALL_STATE(4706)] = 223199, - [SMALL_STATE(4707)] = 223239, - [SMALL_STATE(4708)] = 223299, - [SMALL_STATE(4709)] = 223341, - [SMALL_STATE(4710)] = 223401, - [SMALL_STATE(4711)] = 223461, - [SMALL_STATE(4712)] = 223521, - [SMALL_STATE(4713)] = 223567, - [SMALL_STATE(4714)] = 223627, - [SMALL_STATE(4715)] = 223665, - [SMALL_STATE(4716)] = 223725, - [SMALL_STATE(4717)] = 223785, - [SMALL_STATE(4718)] = 223845, - [SMALL_STATE(4719)] = 223905, - [SMALL_STATE(4720)] = 223965, - [SMALL_STATE(4721)] = 224025, - [SMALL_STATE(4722)] = 224085, - [SMALL_STATE(4723)] = 224121, - [SMALL_STATE(4724)] = 224181, - [SMALL_STATE(4725)] = 224241, - [SMALL_STATE(4726)] = 224301, - [SMALL_STATE(4727)] = 224361, - [SMALL_STATE(4728)] = 224421, - [SMALL_STATE(4729)] = 224481, - [SMALL_STATE(4730)] = 224541, - [SMALL_STATE(4731)] = 224601, - [SMALL_STATE(4732)] = 224661, - [SMALL_STATE(4733)] = 224721, - [SMALL_STATE(4734)] = 224781, - [SMALL_STATE(4735)] = 224841, - [SMALL_STATE(4736)] = 224901, - [SMALL_STATE(4737)] = 224961, - [SMALL_STATE(4738)] = 225021, - [SMALL_STATE(4739)] = 225081, - [SMALL_STATE(4740)] = 225141, - [SMALL_STATE(4741)] = 225201, - [SMALL_STATE(4742)] = 225261, - [SMALL_STATE(4743)] = 225321, - [SMALL_STATE(4744)] = 225381, - [SMALL_STATE(4745)] = 225441, - [SMALL_STATE(4746)] = 225501, - [SMALL_STATE(4747)] = 225561, - [SMALL_STATE(4748)] = 225621, - [SMALL_STATE(4749)] = 225681, - [SMALL_STATE(4750)] = 225741, - [SMALL_STATE(4751)] = 225785, - [SMALL_STATE(4752)] = 225845, - [SMALL_STATE(4753)] = 225905, - [SMALL_STATE(4754)] = 225965, - [SMALL_STATE(4755)] = 226011, - [SMALL_STATE(4756)] = 226071, - [SMALL_STATE(4757)] = 226131, - [SMALL_STATE(4758)] = 226191, - [SMALL_STATE(4759)] = 226251, - [SMALL_STATE(4760)] = 226311, - [SMALL_STATE(4761)] = 226371, - [SMALL_STATE(4762)] = 226431, - [SMALL_STATE(4763)] = 226491, - [SMALL_STATE(4764)] = 226551, - [SMALL_STATE(4765)] = 226611, - [SMALL_STATE(4766)] = 226671, - [SMALL_STATE(4767)] = 226731, - [SMALL_STATE(4768)] = 226791, - [SMALL_STATE(4769)] = 226851, - [SMALL_STATE(4770)] = 226911, - [SMALL_STATE(4771)] = 226971, - [SMALL_STATE(4772)] = 227031, - [SMALL_STATE(4773)] = 227091, - [SMALL_STATE(4774)] = 227151, - [SMALL_STATE(4775)] = 227193, - [SMALL_STATE(4776)] = 227253, - [SMALL_STATE(4777)] = 227313, - [SMALL_STATE(4778)] = 227373, - [SMALL_STATE(4779)] = 227433, - [SMALL_STATE(4780)] = 227493, - [SMALL_STATE(4781)] = 227553, - [SMALL_STATE(4782)] = 227613, - [SMALL_STATE(4783)] = 227673, - [SMALL_STATE(4784)] = 227733, - [SMALL_STATE(4785)] = 227769, - [SMALL_STATE(4786)] = 227829, - [SMALL_STATE(4787)] = 227889, - [SMALL_STATE(4788)] = 227949, - [SMALL_STATE(4789)] = 228009, - [SMALL_STATE(4790)] = 228051, - [SMALL_STATE(4791)] = 228093, - [SMALL_STATE(4792)] = 228153, - [SMALL_STATE(4793)] = 228213, - [SMALL_STATE(4794)] = 228255, - [SMALL_STATE(4795)] = 228315, - [SMALL_STATE(4796)] = 228351, - [SMALL_STATE(4797)] = 228411, - [SMALL_STATE(4798)] = 228471, - [SMALL_STATE(4799)] = 228531, - [SMALL_STATE(4800)] = 228591, - [SMALL_STATE(4801)] = 228626, - [SMALL_STATE(4802)] = 228665, - [SMALL_STATE(4803)] = 228704, - [SMALL_STATE(4804)] = 228745, - [SMALL_STATE(4805)] = 228784, - [SMALL_STATE(4806)] = 228827, - [SMALL_STATE(4807)] = 228864, - [SMALL_STATE(4808)] = 228909, - [SMALL_STATE(4809)] = 228954, - [SMALL_STATE(4810)] = 229013, - [SMALL_STATE(4811)] = 229058, - [SMALL_STATE(4812)] = 229115, - [SMALL_STATE(4813)] = 229160, - [SMALL_STATE(4814)] = 229217, - [SMALL_STATE(4815)] = 229274, - [SMALL_STATE(4816)] = 229331, - [SMALL_STATE(4817)] = 229388, - [SMALL_STATE(4818)] = 229433, - [SMALL_STATE(4819)] = 229490, - [SMALL_STATE(4820)] = 229535, - [SMALL_STATE(4821)] = 229574, - [SMALL_STATE(4822)] = 229615, - [SMALL_STATE(4823)] = 229654, - [SMALL_STATE(4824)] = 229711, - [SMALL_STATE(4825)] = 229752, - [SMALL_STATE(4826)] = 229797, - [SMALL_STATE(4827)] = 229838, - [SMALL_STATE(4828)] = 229873, - [SMALL_STATE(4829)] = 229930, - [SMALL_STATE(4830)] = 229987, - [SMALL_STATE(4831)] = 230032, - [SMALL_STATE(4832)] = 230077, - [SMALL_STATE(4833)] = 230122, - [SMALL_STATE(4834)] = 230157, - [SMALL_STATE(4835)] = 230202, - [SMALL_STATE(4836)] = 230259, - [SMALL_STATE(4837)] = 230300, - [SMALL_STATE(4838)] = 230345, - [SMALL_STATE(4839)] = 230388, - [SMALL_STATE(4840)] = 230445, - [SMALL_STATE(4841)] = 230486, - [SMALL_STATE(4842)] = 230527, - [SMALL_STATE(4843)] = 230572, - [SMALL_STATE(4844)] = 230615, - [SMALL_STATE(4845)] = 230660, - [SMALL_STATE(4846)] = 230717, - [SMALL_STATE(4847)] = 230762, - [SMALL_STATE(4848)] = 230807, - [SMALL_STATE(4849)] = 230852, - [SMALL_STATE(4850)] = 230897, - [SMALL_STATE(4851)] = 230942, - [SMALL_STATE(4852)] = 230999, - [SMALL_STATE(4853)] = 231044, - [SMALL_STATE(4854)] = 231079, - [SMALL_STATE(4855)] = 231136, - [SMALL_STATE(4856)] = 231193, - [SMALL_STATE(4857)] = 231238, - [SMALL_STATE(4858)] = 231277, - [SMALL_STATE(4859)] = 231334, - [SMALL_STATE(4860)] = 231375, - [SMALL_STATE(4861)] = 231414, - [SMALL_STATE(4862)] = 231471, - [SMALL_STATE(4863)] = 231510, - [SMALL_STATE(4864)] = 231567, - [SMALL_STATE(4865)] = 231606, - [SMALL_STATE(4866)] = 231663, - [SMALL_STATE(4867)] = 231698, - [SMALL_STATE(4868)] = 231755, - [SMALL_STATE(4869)] = 231800, - [SMALL_STATE(4870)] = 231839, - [SMALL_STATE(4871)] = 231880, - [SMALL_STATE(4872)] = 231919, - [SMALL_STATE(4873)] = 231958, - [SMALL_STATE(4874)] = 232003, - [SMALL_STATE(4875)] = 232040, - [SMALL_STATE(4876)] = 232085, - [SMALL_STATE(4877)] = 232128, - [SMALL_STATE(4878)] = 232169, - [SMALL_STATE(4879)] = 232210, - [SMALL_STATE(4880)] = 232255, - [SMALL_STATE(4881)] = 232309, - [SMALL_STATE(4882)] = 232363, - [SMALL_STATE(4883)] = 232403, - [SMALL_STATE(4884)] = 232443, - [SMALL_STATE(4885)] = 232495, - [SMALL_STATE(4886)] = 232549, - [SMALL_STATE(4887)] = 232603, - [SMALL_STATE(4888)] = 232657, - [SMALL_STATE(4889)] = 232711, - [SMALL_STATE(4890)] = 232763, - [SMALL_STATE(4891)] = 232817, - [SMALL_STATE(4892)] = 232857, - [SMALL_STATE(4893)] = 232911, - [SMALL_STATE(4894)] = 232951, - [SMALL_STATE(4895)] = 232991, - [SMALL_STATE(4896)] = 233025, - [SMALL_STATE(4897)] = 233065, - [SMALL_STATE(4898)] = 233099, - [SMALL_STATE(4899)] = 233153, - [SMALL_STATE(4900)] = 233207, - [SMALL_STATE(4901)] = 233247, - [SMALL_STATE(4902)] = 233301, - [SMALL_STATE(4903)] = 233355, - [SMALL_STATE(4904)] = 233409, - [SMALL_STATE(4905)] = 233449, - [SMALL_STATE(4906)] = 233483, - [SMALL_STATE(4907)] = 233537, - [SMALL_STATE(4908)] = 233591, - [SMALL_STATE(4909)] = 233625, - [SMALL_STATE(4910)] = 233659, - [SMALL_STATE(4911)] = 233713, - [SMALL_STATE(4912)] = 233753, - [SMALL_STATE(4913)] = 233789, - [SMALL_STATE(4914)] = 233829, - [SMALL_STATE(4915)] = 233869, - [SMALL_STATE(4916)] = 233923, - [SMALL_STATE(4917)] = 233957, - [SMALL_STATE(4918)] = 233997, - [SMALL_STATE(4919)] = 234037, - [SMALL_STATE(4920)] = 234091, - [SMALL_STATE(4921)] = 234131, - [SMALL_STATE(4922)] = 234185, - [SMALL_STATE(4923)] = 234239, - [SMALL_STATE(4924)] = 234291, - [SMALL_STATE(4925)] = 234327, - [SMALL_STATE(4926)] = 234361, - [SMALL_STATE(4927)] = 234415, - [SMALL_STATE(4928)] = 234449, - [SMALL_STATE(4929)] = 234483, - [SMALL_STATE(4930)] = 234537, - [SMALL_STATE(4931)] = 234591, - [SMALL_STATE(4932)] = 234629, - [SMALL_STATE(4933)] = 234663, - [SMALL_STATE(4934)] = 234717, - [SMALL_STATE(4935)] = 234757, - [SMALL_STATE(4936)] = 234813, - [SMALL_STATE(4937)] = 234853, - [SMALL_STATE(4938)] = 234893, - [SMALL_STATE(4939)] = 234933, - [SMALL_STATE(4940)] = 234987, - [SMALL_STATE(4941)] = 235041, - [SMALL_STATE(4942)] = 235095, - [SMALL_STATE(4943)] = 235133, - [SMALL_STATE(4944)] = 235189, - [SMALL_STATE(4945)] = 235243, - [SMALL_STATE(4946)] = 235297, - [SMALL_STATE(4947)] = 235351, - [SMALL_STATE(4948)] = 235395, - [SMALL_STATE(4949)] = 235449, - [SMALL_STATE(4950)] = 235489, - [SMALL_STATE(4951)] = 235533, - [SMALL_STATE(4952)] = 235573, - [SMALL_STATE(4953)] = 235607, - [SMALL_STATE(4954)] = 235647, - [SMALL_STATE(4955)] = 235689, - [SMALL_STATE(4956)] = 235743, - [SMALL_STATE(4957)] = 235797, - [SMALL_STATE(4958)] = 235831, - [SMALL_STATE(4959)] = 235885, - [SMALL_STATE(4960)] = 235941, - [SMALL_STATE(4961)] = 235995, - [SMALL_STATE(4962)] = 236047, - [SMALL_STATE(4963)] = 236085, - [SMALL_STATE(4964)] = 236118, - [SMALL_STATE(4965)] = 236155, - [SMALL_STATE(4966)] = 236192, - [SMALL_STATE(4967)] = 236231, - [SMALL_STATE(4968)] = 236270, - [SMALL_STATE(4969)] = 236321, - [SMALL_STATE(4970)] = 236372, - [SMALL_STATE(4971)] = 236411, - [SMALL_STATE(4972)] = 236462, - [SMALL_STATE(4973)] = 236499, - [SMALL_STATE(4974)] = 236550, - [SMALL_STATE(4975)] = 236595, - [SMALL_STATE(4976)] = 236646, - [SMALL_STATE(4977)] = 236697, - [SMALL_STATE(4978)] = 236742, - [SMALL_STATE(4979)] = 236793, - [SMALL_STATE(4980)] = 236844, - [SMALL_STATE(4981)] = 236881, - [SMALL_STATE(4982)] = 236932, - [SMALL_STATE(4983)] = 236971, - [SMALL_STATE(4984)] = 237022, - [SMALL_STATE(4985)] = 237073, - [SMALL_STATE(4986)] = 237124, - [SMALL_STATE(4987)] = 237175, - [SMALL_STATE(4988)] = 237208, - [SMALL_STATE(4989)] = 237241, - [SMALL_STATE(4990)] = 237292, - [SMALL_STATE(4991)] = 237329, - [SMALL_STATE(4992)] = 237380, - [SMALL_STATE(4993)] = 237417, - [SMALL_STATE(4994)] = 237468, - [SMALL_STATE(4995)] = 237507, - [SMALL_STATE(4996)] = 237546, - [SMALL_STATE(4997)] = 237597, - [SMALL_STATE(4998)] = 237634, - [SMALL_STATE(4999)] = 237673, - [SMALL_STATE(5000)] = 237724, - [SMALL_STATE(5001)] = 237761, - [SMALL_STATE(5002)] = 237812, - [SMALL_STATE(5003)] = 237863, - [SMALL_STATE(5004)] = 237900, - [SMALL_STATE(5005)] = 237951, - [SMALL_STATE(5006)] = 237988, - [SMALL_STATE(5007)] = 238039, - [SMALL_STATE(5008)] = 238078, - [SMALL_STATE(5009)] = 238115, - [SMALL_STATE(5010)] = 238150, - [SMALL_STATE(5011)] = 238201, - [SMALL_STATE(5012)] = 238238, - [SMALL_STATE(5013)] = 238275, - [SMALL_STATE(5014)] = 238312, - [SMALL_STATE(5015)] = 238349, - [SMALL_STATE(5016)] = 238384, - [SMALL_STATE(5017)] = 238423, - [SMALL_STATE(5018)] = 238460, - [SMALL_STATE(5019)] = 238497, - [SMALL_STATE(5020)] = 238534, - [SMALL_STATE(5021)] = 238571, - [SMALL_STATE(5022)] = 238622, - [SMALL_STATE(5023)] = 238659, - [SMALL_STATE(5024)] = 238710, - [SMALL_STATE(5025)] = 238745, - [SMALL_STATE(5026)] = 238784, - [SMALL_STATE(5027)] = 238835, - [SMALL_STATE(5028)] = 238886, - [SMALL_STATE(5029)] = 238925, - [SMALL_STATE(5030)] = 238976, - [SMALL_STATE(5031)] = 239027, - [SMALL_STATE(5032)] = 239078, - [SMALL_STATE(5033)] = 239129, - [SMALL_STATE(5034)] = 239168, - [SMALL_STATE(5035)] = 239205, - [SMALL_STATE(5036)] = 239244, - [SMALL_STATE(5037)] = 239295, - [SMALL_STATE(5038)] = 239346, - [SMALL_STATE(5039)] = 239397, - [SMALL_STATE(5040)] = 239434, - [SMALL_STATE(5041)] = 239471, - [SMALL_STATE(5042)] = 239509, - [SMALL_STATE(5043)] = 239541, - [SMALL_STATE(5044)] = 239575, - [SMALL_STATE(5045)] = 239627, - [SMALL_STATE(5046)] = 239659, - [SMALL_STATE(5047)] = 239711, - [SMALL_STATE(5048)] = 239745, - [SMALL_STATE(5049)] = 239779, - [SMALL_STATE(5050)] = 239811, - [SMALL_STATE(5051)] = 239843, - [SMALL_STATE(5052)] = 239877, - [SMALL_STATE(5053)] = 239911, - [SMALL_STATE(5054)] = 239963, - [SMALL_STATE(5055)] = 239997, - [SMALL_STATE(5056)] = 240057, - [SMALL_STATE(5057)] = 240091, - [SMALL_STATE(5058)] = 240123, - [SMALL_STATE(5059)] = 240161, - [SMALL_STATE(5060)] = 240213, - [SMALL_STATE(5061)] = 240245, - [SMALL_STATE(5062)] = 240297, - [SMALL_STATE(5063)] = 240331, - [SMALL_STATE(5064)] = 240363, - [SMALL_STATE(5065)] = 240415, - [SMALL_STATE(5066)] = 240447, - [SMALL_STATE(5067)] = 240481, - [SMALL_STATE(5068)] = 240513, - [SMALL_STATE(5069)] = 240545, - [SMALL_STATE(5070)] = 240581, - [SMALL_STATE(5071)] = 240641, - [SMALL_STATE(5072)] = 240693, - [SMALL_STATE(5073)] = 240727, - [SMALL_STATE(5074)] = 240761, - [SMALL_STATE(5075)] = 240813, - [SMALL_STATE(5076)] = 240847, - [SMALL_STATE(5077)] = 240879, - [SMALL_STATE(5078)] = 240913, - [SMALL_STATE(5079)] = 240947, - [SMALL_STATE(5080)] = 240979, - [SMALL_STATE(5081)] = 241017, - [SMALL_STATE(5082)] = 241049, - [SMALL_STATE(5083)] = 241080, - [SMALL_STATE(5084)] = 241111, - [SMALL_STATE(5085)] = 241142, - [SMALL_STATE(5086)] = 241173, - [SMALL_STATE(5087)] = 241204, - [SMALL_STATE(5088)] = 241235, - [SMALL_STATE(5089)] = 241266, - [SMALL_STATE(5090)] = 241297, - [SMALL_STATE(5091)] = 241328, - [SMALL_STATE(5092)] = 241359, - [SMALL_STATE(5093)] = 241408, - [SMALL_STATE(5094)] = 241439, - [SMALL_STATE(5095)] = 241470, - [SMALL_STATE(5096)] = 241501, - [SMALL_STATE(5097)] = 241532, - [SMALL_STATE(5098)] = 241563, - [SMALL_STATE(5099)] = 241594, - [SMALL_STATE(5100)] = 241627, - [SMALL_STATE(5101)] = 241658, - [SMALL_STATE(5102)] = 241689, - [SMALL_STATE(5103)] = 241720, - [SMALL_STATE(5104)] = 241751, - [SMALL_STATE(5105)] = 241800, - [SMALL_STATE(5106)] = 241831, - [SMALL_STATE(5107)] = 241874, - [SMALL_STATE(5108)] = 241923, - [SMALL_STATE(5109)] = 241954, - [SMALL_STATE(5110)] = 241985, - [SMALL_STATE(5111)] = 242016, - [SMALL_STATE(5112)] = 242047, - [SMALL_STATE(5113)] = 242078, - [SMALL_STATE(5114)] = 242109, - [SMALL_STATE(5115)] = 242140, - [SMALL_STATE(5116)] = 242171, - [SMALL_STATE(5117)] = 242202, - [SMALL_STATE(5118)] = 242235, - [SMALL_STATE(5119)] = 242266, - [SMALL_STATE(5120)] = 242299, - [SMALL_STATE(5121)] = 242342, - [SMALL_STATE(5122)] = 242375, - [SMALL_STATE(5123)] = 242406, - [SMALL_STATE(5124)] = 242449, - [SMALL_STATE(5125)] = 242481, - [SMALL_STATE(5126)] = 242523, - [SMALL_STATE(5127)] = 242563, - [SMALL_STATE(5128)] = 242603, - [SMALL_STATE(5129)] = 242631, - [SMALL_STATE(5130)] = 242659, - [SMALL_STATE(5131)] = 242699, - [SMALL_STATE(5132)] = 242747, - [SMALL_STATE(5133)] = 242801, - [SMALL_STATE(5134)] = 242833, - [SMALL_STATE(5135)] = 242881, - [SMALL_STATE(5136)] = 242913, - [SMALL_STATE(5137)] = 242953, - [SMALL_STATE(5138)] = 242981, - [SMALL_STATE(5139)] = 243015, - [SMALL_STATE(5140)] = 243055, - [SMALL_STATE(5141)] = 243095, - [SMALL_STATE(5142)] = 243127, - [SMALL_STATE(5143)] = 243167, - [SMALL_STATE(5144)] = 243207, - [SMALL_STATE(5145)] = 243235, - [SMALL_STATE(5146)] = 243289, - [SMALL_STATE(5147)] = 243329, - [SMALL_STATE(5148)] = 243377, - [SMALL_STATE(5149)] = 243405, - [SMALL_STATE(5150)] = 243435, - [SMALL_STATE(5151)] = 243480, - [SMALL_STATE(5152)] = 243517, - [SMALL_STATE(5153)] = 243562, - [SMALL_STATE(5154)] = 243613, - [SMALL_STATE(5155)] = 243658, - [SMALL_STATE(5156)] = 243695, - [SMALL_STATE(5157)] = 243740, - [SMALL_STATE(5158)] = 243769, - [SMALL_STATE(5159)] = 243814, - [SMALL_STATE(5160)] = 243859, - [SMALL_STATE(5161)] = 243904, - [SMALL_STATE(5162)] = 243949, - [SMALL_STATE(5163)] = 243980, - [SMALL_STATE(5164)] = 244025, - [SMALL_STATE(5165)] = 244070, - [SMALL_STATE(5166)] = 244115, - [SMALL_STATE(5167)] = 244160, - [SMALL_STATE(5168)] = 244205, - [SMALL_STATE(5169)] = 244250, - [SMALL_STATE(5170)] = 244295, - [SMALL_STATE(5171)] = 244346, - [SMALL_STATE(5172)] = 244397, - [SMALL_STATE(5173)] = 244442, - [SMALL_STATE(5174)] = 244487, - [SMALL_STATE(5175)] = 244538, - [SMALL_STATE(5176)] = 244583, - [SMALL_STATE(5177)] = 244628, - [SMALL_STATE(5178)] = 244673, - [SMALL_STATE(5179)] = 244718, - [SMALL_STATE(5180)] = 244763, - [SMALL_STATE(5181)] = 244808, - [SMALL_STATE(5182)] = 244853, - [SMALL_STATE(5183)] = 244898, - [SMALL_STATE(5184)] = 244943, - [SMALL_STATE(5185)] = 244988, - [SMALL_STATE(5186)] = 245025, - [SMALL_STATE(5187)] = 245070, - [SMALL_STATE(5188)] = 245115, - [SMALL_STATE(5189)] = 245160, - [SMALL_STATE(5190)] = 245199, - [SMALL_STATE(5191)] = 245244, - [SMALL_STATE(5192)] = 245289, - [SMALL_STATE(5193)] = 245334, - [SMALL_STATE(5194)] = 245379, - [SMALL_STATE(5195)] = 245424, - [SMALL_STATE(5196)] = 245469, - [SMALL_STATE(5197)] = 245514, - [SMALL_STATE(5198)] = 245559, - [SMALL_STATE(5199)] = 245604, - [SMALL_STATE(5200)] = 245649, - [SMALL_STATE(5201)] = 245694, - [SMALL_STATE(5202)] = 245731, - [SMALL_STATE(5203)] = 245782, - [SMALL_STATE(5204)] = 245827, - [SMALL_STATE(5205)] = 245872, - [SMALL_STATE(5206)] = 245917, - [SMALL_STATE(5207)] = 245962, - [SMALL_STATE(5208)] = 246013, - [SMALL_STATE(5209)] = 246058, - [SMALL_STATE(5210)] = 246092, - [SMALL_STATE(5211)] = 246120, - [SMALL_STATE(5212)] = 246154, - [SMALL_STATE(5213)] = 246188, - [SMALL_STATE(5214)] = 246222, - [SMALL_STATE(5215)] = 246256, - [SMALL_STATE(5216)] = 246290, - [SMALL_STATE(5217)] = 246324, - [SMALL_STATE(5218)] = 246358, - [SMALL_STATE(5219)] = 246392, - [SMALL_STATE(5220)] = 246426, - [SMALL_STATE(5221)] = 246460, - [SMALL_STATE(5222)] = 246494, - [SMALL_STATE(5223)] = 246528, - [SMALL_STATE(5224)] = 246556, - [SMALL_STATE(5225)] = 246590, - [SMALL_STATE(5226)] = 246624, - [SMALL_STATE(5227)] = 246658, - [SMALL_STATE(5228)] = 246692, - [SMALL_STATE(5229)] = 246726, - [SMALL_STATE(5230)] = 246760, - [SMALL_STATE(5231)] = 246794, - [SMALL_STATE(5232)] = 246828, - [SMALL_STATE(5233)] = 246876, - [SMALL_STATE(5234)] = 246910, - [SMALL_STATE(5235)] = 246944, - [SMALL_STATE(5236)] = 246978, - [SMALL_STATE(5237)] = 247012, - [SMALL_STATE(5238)] = 247046, - [SMALL_STATE(5239)] = 247080, - [SMALL_STATE(5240)] = 247114, - [SMALL_STATE(5241)] = 247148, - [SMALL_STATE(5242)] = 247182, - [SMALL_STATE(5243)] = 247216, - [SMALL_STATE(5244)] = 247250, - [SMALL_STATE(5245)] = 247278, - [SMALL_STATE(5246)] = 247312, - [SMALL_STATE(5247)] = 247346, - [SMALL_STATE(5248)] = 247380, - [SMALL_STATE(5249)] = 247414, - [SMALL_STATE(5250)] = 247448, - [SMALL_STATE(5251)] = 247482, - [SMALL_STATE(5252)] = 247516, - [SMALL_STATE(5253)] = 247550, - [SMALL_STATE(5254)] = 247584, - [SMALL_STATE(5255)] = 247618, - [SMALL_STATE(5256)] = 247652, - [SMALL_STATE(5257)] = 247686, - [SMALL_STATE(5258)] = 247734, - [SMALL_STATE(5259)] = 247768, - [SMALL_STATE(5260)] = 247802, - [SMALL_STATE(5261)] = 247836, - [SMALL_STATE(5262)] = 247870, - [SMALL_STATE(5263)] = 247904, - [SMALL_STATE(5264)] = 247944, - [SMALL_STATE(5265)] = 247978, - [SMALL_STATE(5266)] = 248006, - [SMALL_STATE(5267)] = 248040, - [SMALL_STATE(5268)] = 248074, - [SMALL_STATE(5269)] = 248108, - [SMALL_STATE(5270)] = 248136, - [SMALL_STATE(5271)] = 248164, - [SMALL_STATE(5272)] = 248212, - [SMALL_STATE(5273)] = 248246, - [SMALL_STATE(5274)] = 248280, - [SMALL_STATE(5275)] = 248314, - [SMALL_STATE(5276)] = 248348, - [SMALL_STATE(5277)] = 248376, - [SMALL_STATE(5278)] = 248410, - [SMALL_STATE(5279)] = 248444, - [SMALL_STATE(5280)] = 248478, - [SMALL_STATE(5281)] = 248512, - [SMALL_STATE(5282)] = 248540, - [SMALL_STATE(5283)] = 248568, - [SMALL_STATE(5284)] = 248596, - [SMALL_STATE(5285)] = 248624, - [SMALL_STATE(5286)] = 248658, - [SMALL_STATE(5287)] = 248692, - [SMALL_STATE(5288)] = 248720, - [SMALL_STATE(5289)] = 248748, - [SMALL_STATE(5290)] = 248782, - [SMALL_STATE(5291)] = 248810, - [SMALL_STATE(5292)] = 248844, - [SMALL_STATE(5293)] = 248872, - [SMALL_STATE(5294)] = 248900, - [SMALL_STATE(5295)] = 248934, - [SMALL_STATE(5296)] = 248968, - [SMALL_STATE(5297)] = 249002, - [SMALL_STATE(5298)] = 249030, - [SMALL_STATE(5299)] = 249064, - [SMALL_STATE(5300)] = 249092, - [SMALL_STATE(5301)] = 249120, - [SMALL_STATE(5302)] = 249154, - [SMALL_STATE(5303)] = 249188, - [SMALL_STATE(5304)] = 249216, - [SMALL_STATE(5305)] = 249250, - [SMALL_STATE(5306)] = 249280, - [SMALL_STATE(5307)] = 249314, - [SMALL_STATE(5308)] = 249342, - [SMALL_STATE(5309)] = 249370, - [SMALL_STATE(5310)] = 249398, - [SMALL_STATE(5311)] = 249426, - [SMALL_STATE(5312)] = 249454, - [SMALL_STATE(5313)] = 249488, - [SMALL_STATE(5314)] = 249522, - [SMALL_STATE(5315)] = 249556, - [SMALL_STATE(5316)] = 249590, - [SMALL_STATE(5317)] = 249618, - [SMALL_STATE(5318)] = 249652, - [SMALL_STATE(5319)] = 249686, - [SMALL_STATE(5320)] = 249716, - [SMALL_STATE(5321)] = 249750, - [SMALL_STATE(5322)] = 249778, - [SMALL_STATE(5323)] = 249806, - [SMALL_STATE(5324)] = 249834, - [SMALL_STATE(5325)] = 249862, - [SMALL_STATE(5326)] = 249896, - [SMALL_STATE(5327)] = 249924, - [SMALL_STATE(5328)] = 249958, - [SMALL_STATE(5329)] = 249992, - [SMALL_STATE(5330)] = 250026, - [SMALL_STATE(5331)] = 250060, - [SMALL_STATE(5332)] = 250086, - [SMALL_STATE(5333)] = 250120, - [SMALL_STATE(5334)] = 250148, - [SMALL_STATE(5335)] = 250179, - [SMALL_STATE(5336)] = 250210, - [SMALL_STATE(5337)] = 250237, - [SMALL_STATE(5338)] = 250268, - [SMALL_STATE(5339)] = 250299, - [SMALL_STATE(5340)] = 250330, - [SMALL_STATE(5341)] = 250361, - [SMALL_STATE(5342)] = 250388, - [SMALL_STATE(5343)] = 250419, - [SMALL_STATE(5344)] = 250450, - [SMALL_STATE(5345)] = 250481, - [SMALL_STATE(5346)] = 250512, - [SMALL_STATE(5347)] = 250539, - [SMALL_STATE(5348)] = 250570, - [SMALL_STATE(5349)] = 250601, - [SMALL_STATE(5350)] = 250628, - [SMALL_STATE(5351)] = 250659, - [SMALL_STATE(5352)] = 250690, - [SMALL_STATE(5353)] = 250717, - [SMALL_STATE(5354)] = 250748, - [SMALL_STATE(5355)] = 250779, - [SMALL_STATE(5356)] = 250810, - [SMALL_STATE(5357)] = 250841, - [SMALL_STATE(5358)] = 250872, - [SMALL_STATE(5359)] = 250903, - [SMALL_STATE(5360)] = 250930, - [SMALL_STATE(5361)] = 250961, - [SMALL_STATE(5362)] = 250992, - [SMALL_STATE(5363)] = 251033, - [SMALL_STATE(5364)] = 251060, - [SMALL_STATE(5365)] = 251091, - [SMALL_STATE(5366)] = 251122, - [SMALL_STATE(5367)] = 251153, - [SMALL_STATE(5368)] = 251184, - [SMALL_STATE(5369)] = 251215, - [SMALL_STATE(5370)] = 251246, - [SMALL_STATE(5371)] = 251273, - [SMALL_STATE(5372)] = 251304, - [SMALL_STATE(5373)] = 251329, - [SMALL_STATE(5374)] = 251360, - [SMALL_STATE(5375)] = 251387, - [SMALL_STATE(5376)] = 251414, - [SMALL_STATE(5377)] = 251445, - [SMALL_STATE(5378)] = 251476, - [SMALL_STATE(5379)] = 251503, - [SMALL_STATE(5380)] = 251534, - [SMALL_STATE(5381)] = 251565, - [SMALL_STATE(5382)] = 251596, - [SMALL_STATE(5383)] = 251627, - [SMALL_STATE(5384)] = 251654, - [SMALL_STATE(5385)] = 251681, - [SMALL_STATE(5386)] = 251712, - [SMALL_STATE(5387)] = 251743, - [SMALL_STATE(5388)] = 251774, - [SMALL_STATE(5389)] = 251805, - [SMALL_STATE(5390)] = 251836, - [SMALL_STATE(5391)] = 251867, - [SMALL_STATE(5392)] = 251898, - [SMALL_STATE(5393)] = 251929, - [SMALL_STATE(5394)] = 251960, - [SMALL_STATE(5395)] = 251991, - [SMALL_STATE(5396)] = 252022, - [SMALL_STATE(5397)] = 252053, - [SMALL_STATE(5398)] = 252092, - [SMALL_STATE(5399)] = 252119, - [SMALL_STATE(5400)] = 252150, - [SMALL_STATE(5401)] = 252181, - [SMALL_STATE(5402)] = 252212, - [SMALL_STATE(5403)] = 252255, - [SMALL_STATE(5404)] = 252286, - [SMALL_STATE(5405)] = 252317, - [SMALL_STATE(5406)] = 252348, - [SMALL_STATE(5407)] = 252379, - [SMALL_STATE(5408)] = 252410, - [SMALL_STATE(5409)] = 252441, - [SMALL_STATE(5410)] = 252472, - [SMALL_STATE(5411)] = 252499, - [SMALL_STATE(5412)] = 252530, - [SMALL_STATE(5413)] = 252567, - [SMALL_STATE(5414)] = 252598, - [SMALL_STATE(5415)] = 252639, - [SMALL_STATE(5416)] = 252664, - [SMALL_STATE(5417)] = 252691, - [SMALL_STATE(5418)] = 252718, - [SMALL_STATE(5419)] = 252745, - [SMALL_STATE(5420)] = 252772, - [SMALL_STATE(5421)] = 252803, - [SMALL_STATE(5422)] = 252834, - [SMALL_STATE(5423)] = 252861, - [SMALL_STATE(5424)] = 252902, - [SMALL_STATE(5425)] = 252933, - [SMALL_STATE(5426)] = 252960, - [SMALL_STATE(5427)] = 252991, - [SMALL_STATE(5428)] = 253022, - [SMALL_STATE(5429)] = 253049, - [SMALL_STATE(5430)] = 253076, - [SMALL_STATE(5431)] = 253107, - [SMALL_STATE(5432)] = 253134, - [SMALL_STATE(5433)] = 253165, - [SMALL_STATE(5434)] = 253192, - [SMALL_STATE(5435)] = 253219, - [SMALL_STATE(5436)] = 253246, - [SMALL_STATE(5437)] = 253273, - [SMALL_STATE(5438)] = 253304, - [SMALL_STATE(5439)] = 253347, - [SMALL_STATE(5440)] = 253388, - [SMALL_STATE(5441)] = 253419, - [SMALL_STATE(5442)] = 253446, - [SMALL_STATE(5443)] = 253473, - [SMALL_STATE(5444)] = 253500, - [SMALL_STATE(5445)] = 253527, - [SMALL_STATE(5446)] = 253552, - [SMALL_STATE(5447)] = 253579, - [SMALL_STATE(5448)] = 253606, - [SMALL_STATE(5449)] = 253637, - [SMALL_STATE(5450)] = 253668, - [SMALL_STATE(5451)] = 253695, - [SMALL_STATE(5452)] = 253722, - [SMALL_STATE(5453)] = 253749, - [SMALL_STATE(5454)] = 253780, - [SMALL_STATE(5455)] = 253807, - [SMALL_STATE(5456)] = 253834, - [SMALL_STATE(5457)] = 253865, - [SMALL_STATE(5458)] = 253892, - [SMALL_STATE(5459)] = 253921, - [SMALL_STATE(5460)] = 253948, - [SMALL_STATE(5461)] = 253975, - [SMALL_STATE(5462)] = 254012, - [SMALL_STATE(5463)] = 254039, - [SMALL_STATE(5464)] = 254066, - [SMALL_STATE(5465)] = 254093, - [SMALL_STATE(5466)] = 254120, - [SMALL_STATE(5467)] = 254147, - [SMALL_STATE(5468)] = 254174, - [SMALL_STATE(5469)] = 254201, - [SMALL_STATE(5470)] = 254228, - [SMALL_STATE(5471)] = 254255, - [SMALL_STATE(5472)] = 254282, - [SMALL_STATE(5473)] = 254309, - [SMALL_STATE(5474)] = 254336, - [SMALL_STATE(5475)] = 254363, - [SMALL_STATE(5476)] = 254390, - [SMALL_STATE(5477)] = 254420, - [SMALL_STATE(5478)] = 254458, - [SMALL_STATE(5479)] = 254484, - [SMALL_STATE(5480)] = 254514, - [SMALL_STATE(5481)] = 254544, - [SMALL_STATE(5482)] = 254574, - [SMALL_STATE(5483)] = 254598, - [SMALL_STATE(5484)] = 254636, - [SMALL_STATE(5485)] = 254666, - [SMALL_STATE(5486)] = 254694, - [SMALL_STATE(5487)] = 254724, - [SMALL_STATE(5488)] = 254754, - [SMALL_STATE(5489)] = 254784, - [SMALL_STATE(5490)] = 254808, - [SMALL_STATE(5491)] = 254834, - [SMALL_STATE(5492)] = 254864, - [SMALL_STATE(5493)] = 254894, - [SMALL_STATE(5494)] = 254932, - [SMALL_STATE(5495)] = 254970, - [SMALL_STATE(5496)] = 254993, - [SMALL_STATE(5497)] = 255022, - [SMALL_STATE(5498)] = 255045, - [SMALL_STATE(5499)] = 255074, - [SMALL_STATE(5500)] = 255097, - [SMALL_STATE(5501)] = 255126, - [SMALL_STATE(5502)] = 255155, - [SMALL_STATE(5503)] = 255178, - [SMALL_STATE(5504)] = 255207, - [SMALL_STATE(5505)] = 255230, - [SMALL_STATE(5506)] = 255253, - [SMALL_STATE(5507)] = 255276, - [SMALL_STATE(5508)] = 255299, - [SMALL_STATE(5509)] = 255322, - [SMALL_STATE(5510)] = 255349, - [SMALL_STATE(5511)] = 255372, - [SMALL_STATE(5512)] = 255399, - [SMALL_STATE(5513)] = 255432, - [SMALL_STATE(5514)] = 255459, - [SMALL_STATE(5515)] = 255482, - [SMALL_STATE(5516)] = 255523, - [SMALL_STATE(5517)] = 255564, - [SMALL_STATE(5518)] = 255605, - [SMALL_STATE(5519)] = 255628, - [SMALL_STATE(5520)] = 255661, - [SMALL_STATE(5521)] = 255702, - [SMALL_STATE(5522)] = 255725, - [SMALL_STATE(5523)] = 255766, - [SMALL_STATE(5524)] = 255807, - [SMALL_STATE(5525)] = 255834, - [SMALL_STATE(5526)] = 255858, - [SMALL_STATE(5527)] = 255882, - [SMALL_STATE(5528)] = 255920, - [SMALL_STATE(5529)] = 255958, - [SMALL_STATE(5530)] = 255996, - [SMALL_STATE(5531)] = 256020, - [SMALL_STATE(5532)] = 256044, - [SMALL_STATE(5533)] = 256068, - [SMALL_STATE(5534)] = 256092, - [SMALL_STATE(5535)] = 256116, - [SMALL_STATE(5536)] = 256142, - [SMALL_STATE(5537)] = 256166, - [SMALL_STATE(5538)] = 256190, - [SMALL_STATE(5539)] = 256228, - [SMALL_STATE(5540)] = 256266, - [SMALL_STATE(5541)] = 256290, - [SMALL_STATE(5542)] = 256328, - [SMALL_STATE(5543)] = 256352, - [SMALL_STATE(5544)] = 256376, - [SMALL_STATE(5545)] = 256400, - [SMALL_STATE(5546)] = 256424, - [SMALL_STATE(5547)] = 256462, - [SMALL_STATE(5548)] = 256486, - [SMALL_STATE(5549)] = 256510, - [SMALL_STATE(5550)] = 256534, - [SMALL_STATE(5551)] = 256558, - [SMALL_STATE(5552)] = 256582, - [SMALL_STATE(5553)] = 256620, - [SMALL_STATE(5554)] = 256658, - [SMALL_STATE(5555)] = 256682, - [SMALL_STATE(5556)] = 256706, - [SMALL_STATE(5557)] = 256744, - [SMALL_STATE(5558)] = 256782, - [SMALL_STATE(5559)] = 256804, - [SMALL_STATE(5560)] = 256826, - [SMALL_STATE(5561)] = 256850, - [SMALL_STATE(5562)] = 256884, - [SMALL_STATE(5563)] = 256922, - [SMALL_STATE(5564)] = 256946, - [SMALL_STATE(5565)] = 256970, - [SMALL_STATE(5566)] = 256996, - [SMALL_STATE(5567)] = 257020, - [SMALL_STATE(5568)] = 257054, - [SMALL_STATE(5569)] = 257078, - [SMALL_STATE(5570)] = 257100, - [SMALL_STATE(5571)] = 257134, - [SMALL_STATE(5572)] = 257158, - [SMALL_STATE(5573)] = 257196, - [SMALL_STATE(5574)] = 257220, - [SMALL_STATE(5575)] = 257258, - [SMALL_STATE(5576)] = 257280, - [SMALL_STATE(5577)] = 257302, - [SMALL_STATE(5578)] = 257324, - [SMALL_STATE(5579)] = 257348, - [SMALL_STATE(5580)] = 257374, - [SMALL_STATE(5581)] = 257398, - [SMALL_STATE(5582)] = 257436, - [SMALL_STATE(5583)] = 257458, - [SMALL_STATE(5584)] = 257486, - [SMALL_STATE(5585)] = 257512, - [SMALL_STATE(5586)] = 257546, - [SMALL_STATE(5587)] = 257570, - [SMALL_STATE(5588)] = 257608, - [SMALL_STATE(5589)] = 257633, - [SMALL_STATE(5590)] = 257664, - [SMALL_STATE(5591)] = 257689, - [SMALL_STATE(5592)] = 257718, - [SMALL_STATE(5593)] = 257747, - [SMALL_STATE(5594)] = 257782, - [SMALL_STATE(5595)] = 257813, - [SMALL_STATE(5596)] = 257838, - [SMALL_STATE(5597)] = 257867, - [SMALL_STATE(5598)] = 257896, - [SMALL_STATE(5599)] = 257929, - [SMALL_STATE(5600)] = 257960, - [SMALL_STATE(5601)] = 257991, - [SMALL_STATE(5602)] = 258022, - [SMALL_STATE(5603)] = 258053, - [SMALL_STATE(5604)] = 258084, - [SMALL_STATE(5605)] = 258119, - [SMALL_STATE(5606)] = 258148, - [SMALL_STATE(5607)] = 258179, - [SMALL_STATE(5608)] = 258210, - [SMALL_STATE(5609)] = 258245, - [SMALL_STATE(5610)] = 258274, - [SMALL_STATE(5611)] = 258303, - [SMALL_STATE(5612)] = 258332, - [SMALL_STATE(5613)] = 258361, - [SMALL_STATE(5614)] = 258386, - [SMALL_STATE(5615)] = 258415, - [SMALL_STATE(5616)] = 258450, - [SMALL_STATE(5617)] = 258479, - [SMALL_STATE(5618)] = 258508, - [SMALL_STATE(5619)] = 258537, - [SMALL_STATE(5620)] = 258566, - [SMALL_STATE(5621)] = 258599, - [SMALL_STATE(5622)] = 258628, - [SMALL_STATE(5623)] = 258649, - [SMALL_STATE(5624)] = 258672, - [SMALL_STATE(5625)] = 258701, - [SMALL_STATE(5626)] = 258732, - [SMALL_STATE(5627)] = 258763, - [SMALL_STATE(5628)] = 258798, - [SMALL_STATE(5629)] = 258827, - [SMALL_STATE(5630)] = 258862, - [SMALL_STATE(5631)] = 258885, - [SMALL_STATE(5632)] = 258916, - [SMALL_STATE(5633)] = 258951, - [SMALL_STATE(5634)] = 258982, - [SMALL_STATE(5635)] = 259011, - [SMALL_STATE(5636)] = 259042, - [SMALL_STATE(5637)] = 259071, - [SMALL_STATE(5638)] = 259102, - [SMALL_STATE(5639)] = 259133, - [SMALL_STATE(5640)] = 259168, - [SMALL_STATE(5641)] = 259189, - [SMALL_STATE(5642)] = 259218, - [SMALL_STATE(5643)] = 259239, - [SMALL_STATE(5644)] = 259274, - [SMALL_STATE(5645)] = 259303, - [SMALL_STATE(5646)] = 259334, - [SMALL_STATE(5647)] = 259355, - [SMALL_STATE(5648)] = 259378, - [SMALL_STATE(5649)] = 259407, - [SMALL_STATE(5650)] = 259439, - [SMALL_STATE(5651)] = 259459, - [SMALL_STATE(5652)] = 259489, - [SMALL_STATE(5653)] = 259511, - [SMALL_STATE(5654)] = 259535, - [SMALL_STATE(5655)] = 259567, - [SMALL_STATE(5656)] = 259599, - [SMALL_STATE(5657)] = 259631, - [SMALL_STATE(5658)] = 259661, - [SMALL_STATE(5659)] = 259693, - [SMALL_STATE(5660)] = 259725, - [SMALL_STATE(5661)] = 259755, - [SMALL_STATE(5662)] = 259787, - [SMALL_STATE(5663)] = 259809, - [SMALL_STATE(5664)] = 259829, - [SMALL_STATE(5665)] = 259849, - [SMALL_STATE(5666)] = 259879, - [SMALL_STATE(5667)] = 259911, - [SMALL_STATE(5668)] = 259935, - [SMALL_STATE(5669)] = 259957, - [SMALL_STATE(5670)] = 259979, - [SMALL_STATE(5671)] = 260009, - [SMALL_STATE(5672)] = 260039, - [SMALL_STATE(5673)] = 260063, - [SMALL_STATE(5674)] = 260091, - [SMALL_STATE(5675)] = 260119, - [SMALL_STATE(5676)] = 260151, - [SMALL_STATE(5677)] = 260183, - [SMALL_STATE(5678)] = 260211, - [SMALL_STATE(5679)] = 260231, - [SMALL_STATE(5680)] = 260263, - [SMALL_STATE(5681)] = 260295, - [SMALL_STATE(5682)] = 260315, - [SMALL_STATE(5683)] = 260347, - [SMALL_STATE(5684)] = 260379, - [SMALL_STATE(5685)] = 260411, - [SMALL_STATE(5686)] = 260443, - [SMALL_STATE(5687)] = 260465, - [SMALL_STATE(5688)] = 260493, - [SMALL_STATE(5689)] = 260515, - [SMALL_STATE(5690)] = 260547, - [SMALL_STATE(5691)] = 260579, - [SMALL_STATE(5692)] = 260611, - [SMALL_STATE(5693)] = 260643, - [SMALL_STATE(5694)] = 260675, - [SMALL_STATE(5695)] = 260707, - [SMALL_STATE(5696)] = 260737, - [SMALL_STATE(5697)] = 260757, - [SMALL_STATE(5698)] = 260789, - [SMALL_STATE(5699)] = 260821, - [SMALL_STATE(5700)] = 260843, - [SMALL_STATE(5701)] = 260871, - [SMALL_STATE(5702)] = 260903, - [SMALL_STATE(5703)] = 260935, - [SMALL_STATE(5704)] = 260957, - [SMALL_STATE(5705)] = 260989, - [SMALL_STATE(5706)] = 261021, - [SMALL_STATE(5707)] = 261053, - [SMALL_STATE(5708)] = 261085, - [SMALL_STATE(5709)] = 261115, - [SMALL_STATE(5710)] = 261147, - [SMALL_STATE(5711)] = 261167, - [SMALL_STATE(5712)] = 261199, - [SMALL_STATE(5713)] = 261221, - [SMALL_STATE(5714)] = 261253, - [SMALL_STATE(5715)] = 261285, - [SMALL_STATE(5716)] = 261307, - [SMALL_STATE(5717)] = 261339, - [SMALL_STATE(5718)] = 261361, - [SMALL_STATE(5719)] = 261393, - [SMALL_STATE(5720)] = 261425, - [SMALL_STATE(5721)] = 261447, - [SMALL_STATE(5722)] = 261477, - [SMALL_STATE(5723)] = 261507, - [SMALL_STATE(5724)] = 261539, - [SMALL_STATE(5725)] = 261571, - [SMALL_STATE(5726)] = 261593, - [SMALL_STATE(5727)] = 261615, - [SMALL_STATE(5728)] = 261635, - [SMALL_STATE(5729)] = 261667, - [SMALL_STATE(5730)] = 261699, - [SMALL_STATE(5731)] = 261731, - [SMALL_STATE(5732)] = 261761, - [SMALL_STATE(5733)] = 261793, - [SMALL_STATE(5734)] = 261825, - [SMALL_STATE(5735)] = 261857, - [SMALL_STATE(5736)] = 261889, - [SMALL_STATE(5737)] = 261921, - [SMALL_STATE(5738)] = 261941, - [SMALL_STATE(5739)] = 261973, - [SMALL_STATE(5740)] = 261997, - [SMALL_STATE(5741)] = 262019, - [SMALL_STATE(5742)] = 262051, - [SMALL_STATE(5743)] = 262083, - [SMALL_STATE(5744)] = 262115, - [SMALL_STATE(5745)] = 262147, - [SMALL_STATE(5746)] = 262167, - [SMALL_STATE(5747)] = 262199, - [SMALL_STATE(5748)] = 262231, - [SMALL_STATE(5749)] = 262263, - [SMALL_STATE(5750)] = 262295, - [SMALL_STATE(5751)] = 262327, - [SMALL_STATE(5752)] = 262349, - [SMALL_STATE(5753)] = 262381, - [SMALL_STATE(5754)] = 262413, - [SMALL_STATE(5755)] = 262445, - [SMALL_STATE(5756)] = 262477, - [SMALL_STATE(5757)] = 262509, - [SMALL_STATE(5758)] = 262541, - [SMALL_STATE(5759)] = 262573, - [SMALL_STATE(5760)] = 262597, - [SMALL_STATE(5761)] = 262625, - [SMALL_STATE(5762)] = 262657, - [SMALL_STATE(5763)] = 262689, - [SMALL_STATE(5764)] = 262721, - [SMALL_STATE(5765)] = 262753, - [SMALL_STATE(5766)] = 262785, - [SMALL_STATE(5767)] = 262817, - [SMALL_STATE(5768)] = 262849, - [SMALL_STATE(5769)] = 262881, - [SMALL_STATE(5770)] = 262913, - [SMALL_STATE(5771)] = 262945, - [SMALL_STATE(5772)] = 262977, - [SMALL_STATE(5773)] = 263001, - [SMALL_STATE(5774)] = 263033, - [SMALL_STATE(5775)] = 263065, - [SMALL_STATE(5776)] = 263097, - [SMALL_STATE(5777)] = 263129, - [SMALL_STATE(5778)] = 263161, - [SMALL_STATE(5779)] = 263193, - [SMALL_STATE(5780)] = 263225, - [SMALL_STATE(5781)] = 263255, - [SMALL_STATE(5782)] = 263287, - [SMALL_STATE(5783)] = 263319, - [SMALL_STATE(5784)] = 263349, - [SMALL_STATE(5785)] = 263381, - [SMALL_STATE(5786)] = 263405, - [SMALL_STATE(5787)] = 263427, - [SMALL_STATE(5788)] = 263457, - [SMALL_STATE(5789)] = 263481, - [SMALL_STATE(5790)] = 263503, - [SMALL_STATE(5791)] = 263535, - [SMALL_STATE(5792)] = 263567, - [SMALL_STATE(5793)] = 263599, - [SMALL_STATE(5794)] = 263631, - [SMALL_STATE(5795)] = 263663, - [SMALL_STATE(5796)] = 263695, - [SMALL_STATE(5797)] = 263727, - [SMALL_STATE(5798)] = 263751, - [SMALL_STATE(5799)] = 263783, - [SMALL_STATE(5800)] = 263815, - [SMALL_STATE(5801)] = 263836, - [SMALL_STATE(5802)] = 263865, - [SMALL_STATE(5803)] = 263894, - [SMALL_STATE(5804)] = 263915, - [SMALL_STATE(5805)] = 263944, - [SMALL_STATE(5806)] = 263969, - [SMALL_STATE(5807)] = 263998, - [SMALL_STATE(5808)] = 264027, - [SMALL_STATE(5809)] = 264056, - [SMALL_STATE(5810)] = 264085, - [SMALL_STATE(5811)] = 264114, - [SMALL_STATE(5812)] = 264135, - [SMALL_STATE(5813)] = 264160, - [SMALL_STATE(5814)] = 264189, - [SMALL_STATE(5815)] = 264218, - [SMALL_STATE(5816)] = 264245, - [SMALL_STATE(5817)] = 264272, - [SMALL_STATE(5818)] = 264299, - [SMALL_STATE(5819)] = 264320, - [SMALL_STATE(5820)] = 264349, - [SMALL_STATE(5821)] = 264376, - [SMALL_STATE(5822)] = 264405, - [SMALL_STATE(5823)] = 264432, - [SMALL_STATE(5824)] = 264461, - [SMALL_STATE(5825)] = 264486, - [SMALL_STATE(5826)] = 264507, - [SMALL_STATE(5827)] = 264528, - [SMALL_STATE(5828)] = 264549, - [SMALL_STATE(5829)] = 264570, - [SMALL_STATE(5830)] = 264591, - [SMALL_STATE(5831)] = 264612, - [SMALL_STATE(5832)] = 264633, - [SMALL_STATE(5833)] = 264662, - [SMALL_STATE(5834)] = 264683, - [SMALL_STATE(5835)] = 264712, - [SMALL_STATE(5836)] = 264733, - [SMALL_STATE(5837)] = 264760, - [SMALL_STATE(5838)] = 264781, - [SMALL_STATE(5839)] = 264802, - [SMALL_STATE(5840)] = 264825, - [SMALL_STATE(5841)] = 264852, - [SMALL_STATE(5842)] = 264881, - [SMALL_STATE(5843)] = 264910, - [SMALL_STATE(5844)] = 264939, - [SMALL_STATE(5845)] = 264968, - [SMALL_STATE(5846)] = 264995, - [SMALL_STATE(5847)] = 265016, - [SMALL_STATE(5848)] = 265045, - [SMALL_STATE(5849)] = 265074, - [SMALL_STATE(5850)] = 265103, - [SMALL_STATE(5851)] = 265132, - [SMALL_STATE(5852)] = 265161, - [SMALL_STATE(5853)] = 265190, - [SMALL_STATE(5854)] = 265219, - [SMALL_STATE(5855)] = 265248, - [SMALL_STATE(5856)] = 265277, - [SMALL_STATE(5857)] = 265298, - [SMALL_STATE(5858)] = 265319, - [SMALL_STATE(5859)] = 265340, - [SMALL_STATE(5860)] = 265369, - [SMALL_STATE(5861)] = 265396, - [SMALL_STATE(5862)] = 265425, - [SMALL_STATE(5863)] = 265448, - [SMALL_STATE(5864)] = 265477, - [SMALL_STATE(5865)] = 265506, - [SMALL_STATE(5866)] = 265531, - [SMALL_STATE(5867)] = 265560, - [SMALL_STATE(5868)] = 265589, - [SMALL_STATE(5869)] = 265618, - [SMALL_STATE(5870)] = 265647, - [SMALL_STATE(5871)] = 265676, - [SMALL_STATE(5872)] = 265705, - [SMALL_STATE(5873)] = 265734, - [SMALL_STATE(5874)] = 265763, - [SMALL_STATE(5875)] = 265784, - [SMALL_STATE(5876)] = 265813, - [SMALL_STATE(5877)] = 265834, - [SMALL_STATE(5878)] = 265863, - [SMALL_STATE(5879)] = 265892, - [SMALL_STATE(5880)] = 265917, - [SMALL_STATE(5881)] = 265946, - [SMALL_STATE(5882)] = 265967, - [SMALL_STATE(5883)] = 265996, - [SMALL_STATE(5884)] = 266017, - [SMALL_STATE(5885)] = 266046, - [SMALL_STATE(5886)] = 266067, - [SMALL_STATE(5887)] = 266096, - [SMALL_STATE(5888)] = 266125, - [SMALL_STATE(5889)] = 266146, - [SMALL_STATE(5890)] = 266167, - [SMALL_STATE(5891)] = 266194, - [SMALL_STATE(5892)] = 266223, - [SMALL_STATE(5893)] = 266244, - [SMALL_STATE(5894)] = 266265, - [SMALL_STATE(5895)] = 266294, - [SMALL_STATE(5896)] = 266315, - [SMALL_STATE(5897)] = 266336, - [SMALL_STATE(5898)] = 266363, - [SMALL_STATE(5899)] = 266384, - [SMALL_STATE(5900)] = 266405, - [SMALL_STATE(5901)] = 266434, - [SMALL_STATE(5902)] = 266463, - [SMALL_STATE(5903)] = 266484, - [SMALL_STATE(5904)] = 266511, - [SMALL_STATE(5905)] = 266532, - [SMALL_STATE(5906)] = 266561, - [SMALL_STATE(5907)] = 266586, - [SMALL_STATE(5908)] = 266615, - [SMALL_STATE(5909)] = 266644, - [SMALL_STATE(5910)] = 266665, - [SMALL_STATE(5911)] = 266692, - [SMALL_STATE(5912)] = 266713, - [SMALL_STATE(5913)] = 266734, - [SMALL_STATE(5914)] = 266763, - [SMALL_STATE(5915)] = 266792, - [SMALL_STATE(5916)] = 266821, - [SMALL_STATE(5917)] = 266850, - [SMALL_STATE(5918)] = 266871, - [SMALL_STATE(5919)] = 266900, - [SMALL_STATE(5920)] = 266927, - [SMALL_STATE(5921)] = 266956, - [SMALL_STATE(5922)] = 266977, - [SMALL_STATE(5923)] = 266998, - [SMALL_STATE(5924)] = 267021, - [SMALL_STATE(5925)] = 267048, - [SMALL_STATE(5926)] = 267069, - [SMALL_STATE(5927)] = 267090, - [SMALL_STATE(5928)] = 267119, - [SMALL_STATE(5929)] = 267142, - [SMALL_STATE(5930)] = 267171, - [SMALL_STATE(5931)] = 267200, - [SMALL_STATE(5932)] = 267229, - [SMALL_STATE(5933)] = 267258, - [SMALL_STATE(5934)] = 267287, - [SMALL_STATE(5935)] = 267308, - [SMALL_STATE(5936)] = 267337, - [SMALL_STATE(5937)] = 267362, - [SMALL_STATE(5938)] = 267383, - [SMALL_STATE(5939)] = 267406, - [SMALL_STATE(5940)] = 267435, - [SMALL_STATE(5941)] = 267464, - [SMALL_STATE(5942)] = 267489, - [SMALL_STATE(5943)] = 267510, - [SMALL_STATE(5944)] = 267539, - [SMALL_STATE(5945)] = 267560, - [SMALL_STATE(5946)] = 267581, - [SMALL_STATE(5947)] = 267610, - [SMALL_STATE(5948)] = 267631, - [SMALL_STATE(5949)] = 267660, - [SMALL_STATE(5950)] = 267685, - [SMALL_STATE(5951)] = 267714, - [SMALL_STATE(5952)] = 267735, - [SMALL_STATE(5953)] = 267764, - [SMALL_STATE(5954)] = 267785, - [SMALL_STATE(5955)] = 267806, - [SMALL_STATE(5956)] = 267833, - [SMALL_STATE(5957)] = 267854, - [SMALL_STATE(5958)] = 267875, - [SMALL_STATE(5959)] = 267904, - [SMALL_STATE(5960)] = 267933, - [SMALL_STATE(5961)] = 267962, - [SMALL_STATE(5962)] = 267983, - [SMALL_STATE(5963)] = 268012, - [SMALL_STATE(5964)] = 268033, - [SMALL_STATE(5965)] = 268062, - [SMALL_STATE(5966)] = 268083, - [SMALL_STATE(5967)] = 268104, - [SMALL_STATE(5968)] = 268125, - [SMALL_STATE(5969)] = 268154, - [SMALL_STATE(5970)] = 268175, - [SMALL_STATE(5971)] = 268204, - [SMALL_STATE(5972)] = 268233, - [SMALL_STATE(5973)] = 268262, - [SMALL_STATE(5974)] = 268289, - [SMALL_STATE(5975)] = 268318, - [SMALL_STATE(5976)] = 268345, - [SMALL_STATE(5977)] = 268366, - [SMALL_STATE(5978)] = 268387, - [SMALL_STATE(5979)] = 268408, - [SMALL_STATE(5980)] = 268429, - [SMALL_STATE(5981)] = 268456, - [SMALL_STATE(5982)] = 268477, - [SMALL_STATE(5983)] = 268506, - [SMALL_STATE(5984)] = 268529, - [SMALL_STATE(5985)] = 268550, - [SMALL_STATE(5986)] = 268571, - [SMALL_STATE(5987)] = 268592, - [SMALL_STATE(5988)] = 268617, - [SMALL_STATE(5989)] = 268646, - [SMALL_STATE(5990)] = 268667, - [SMALL_STATE(5991)] = 268688, - [SMALL_STATE(5992)] = 268709, - [SMALL_STATE(5993)] = 268736, - [SMALL_STATE(5994)] = 268765, - [SMALL_STATE(5995)] = 268794, - [SMALL_STATE(5996)] = 268817, - [SMALL_STATE(5997)] = 268838, - [SMALL_STATE(5998)] = 268867, - [SMALL_STATE(5999)] = 268896, - [SMALL_STATE(6000)] = 268923, - [SMALL_STATE(6001)] = 268950, - [SMALL_STATE(6002)] = 268971, - [SMALL_STATE(6003)] = 268993, - [SMALL_STATE(6004)] = 269015, - [SMALL_STATE(6005)] = 269037, - [SMALL_STATE(6006)] = 269059, - [SMALL_STATE(6007)] = 269085, - [SMALL_STATE(6008)] = 269111, - [SMALL_STATE(6009)] = 269137, - [SMALL_STATE(6010)] = 269161, - [SMALL_STATE(6011)] = 269187, - [SMALL_STATE(6012)] = 269211, - [SMALL_STATE(6013)] = 269237, - [SMALL_STATE(6014)] = 269263, - [SMALL_STATE(6015)] = 269285, - [SMALL_STATE(6016)] = 269311, - [SMALL_STATE(6017)] = 269337, - [SMALL_STATE(6018)] = 269363, - [SMALL_STATE(6019)] = 269389, - [SMALL_STATE(6020)] = 269415, - [SMALL_STATE(6021)] = 269441, - [SMALL_STATE(6022)] = 269467, - [SMALL_STATE(6023)] = 269493, - [SMALL_STATE(6024)] = 269519, - [SMALL_STATE(6025)] = 269543, - [SMALL_STATE(6026)] = 269565, - [SMALL_STATE(6027)] = 269587, - [SMALL_STATE(6028)] = 269609, - [SMALL_STATE(6029)] = 269631, - [SMALL_STATE(6030)] = 269655, - [SMALL_STATE(6031)] = 269679, - [SMALL_STATE(6032)] = 269705, - [SMALL_STATE(6033)] = 269731, - [SMALL_STATE(6034)] = 269755, - [SMALL_STATE(6035)] = 269781, - [SMALL_STATE(6036)] = 269807, - [SMALL_STATE(6037)] = 269825, - [SMALL_STATE(6038)] = 269851, - [SMALL_STATE(6039)] = 269875, - [SMALL_STATE(6040)] = 269901, - [SMALL_STATE(6041)] = 269919, - [SMALL_STATE(6042)] = 269945, - [SMALL_STATE(6043)] = 269971, - [SMALL_STATE(6044)] = 269997, - [SMALL_STATE(6045)] = 270023, - [SMALL_STATE(6046)] = 270049, - [SMALL_STATE(6047)] = 270075, - [SMALL_STATE(6048)] = 270101, - [SMALL_STATE(6049)] = 270127, - [SMALL_STATE(6050)] = 270153, - [SMALL_STATE(6051)] = 270175, - [SMALL_STATE(6052)] = 270201, - [SMALL_STATE(6053)] = 270225, - [SMALL_STATE(6054)] = 270249, - [SMALL_STATE(6055)] = 270275, - [SMALL_STATE(6056)] = 270301, - [SMALL_STATE(6057)] = 270325, - [SMALL_STATE(6058)] = 270351, - [SMALL_STATE(6059)] = 270373, - [SMALL_STATE(6060)] = 270399, - [SMALL_STATE(6061)] = 270425, - [SMALL_STATE(6062)] = 270451, - [SMALL_STATE(6063)] = 270477, - [SMALL_STATE(6064)] = 270503, - [SMALL_STATE(6065)] = 270529, - [SMALL_STATE(6066)] = 270555, - [SMALL_STATE(6067)] = 270579, - [SMALL_STATE(6068)] = 270605, - [SMALL_STATE(6069)] = 270631, - [SMALL_STATE(6070)] = 270653, - [SMALL_STATE(6071)] = 270679, - [SMALL_STATE(6072)] = 270699, - [SMALL_STATE(6073)] = 270725, - [SMALL_STATE(6074)] = 270747, - [SMALL_STATE(6075)] = 270773, - [SMALL_STATE(6076)] = 270797, - [SMALL_STATE(6077)] = 270823, - [SMALL_STATE(6078)] = 270849, - [SMALL_STATE(6079)] = 270873, - [SMALL_STATE(6080)] = 270899, - [SMALL_STATE(6081)] = 270925, - [SMALL_STATE(6082)] = 270943, - [SMALL_STATE(6083)] = 270969, - [SMALL_STATE(6084)] = 270991, - [SMALL_STATE(6085)] = 271017, - [SMALL_STATE(6086)] = 271043, - [SMALL_STATE(6087)] = 271061, - [SMALL_STATE(6088)] = 271079, - [SMALL_STATE(6089)] = 271097, - [SMALL_STATE(6090)] = 271121, - [SMALL_STATE(6091)] = 271145, - [SMALL_STATE(6092)] = 271167, - [SMALL_STATE(6093)] = 271193, - [SMALL_STATE(6094)] = 271214, - [SMALL_STATE(6095)] = 271237, - [SMALL_STATE(6096)] = 271260, - [SMALL_STATE(6097)] = 271283, - [SMALL_STATE(6098)] = 271306, - [SMALL_STATE(6099)] = 271329, - [SMALL_STATE(6100)] = 271348, - [SMALL_STATE(6101)] = 271371, - [SMALL_STATE(6102)] = 271394, - [SMALL_STATE(6103)] = 271417, - [SMALL_STATE(6104)] = 271440, - [SMALL_STATE(6105)] = 271463, - [SMALL_STATE(6106)] = 271486, - [SMALL_STATE(6107)] = 271509, - [SMALL_STATE(6108)] = 271532, - [SMALL_STATE(6109)] = 271555, - [SMALL_STATE(6110)] = 271578, - [SMALL_STATE(6111)] = 271601, - [SMALL_STATE(6112)] = 271624, - [SMALL_STATE(6113)] = 271647, - [SMALL_STATE(6114)] = 271670, - [SMALL_STATE(6115)] = 271693, - [SMALL_STATE(6116)] = 271716, - [SMALL_STATE(6117)] = 271739, - [SMALL_STATE(6118)] = 271758, - [SMALL_STATE(6119)] = 271781, - [SMALL_STATE(6120)] = 271804, - [SMALL_STATE(6121)] = 271827, - [SMALL_STATE(6122)] = 271850, - [SMALL_STATE(6123)] = 271873, - [SMALL_STATE(6124)] = 271896, - [SMALL_STATE(6125)] = 271919, - [SMALL_STATE(6126)] = 271942, - [SMALL_STATE(6127)] = 271965, - [SMALL_STATE(6128)] = 271988, - [SMALL_STATE(6129)] = 272011, - [SMALL_STATE(6130)] = 272034, - [SMALL_STATE(6131)] = 272057, - [SMALL_STATE(6132)] = 272080, - [SMALL_STATE(6133)] = 272103, - [SMALL_STATE(6134)] = 272126, - [SMALL_STATE(6135)] = 272149, - [SMALL_STATE(6136)] = 272170, - [SMALL_STATE(6137)] = 272193, - [SMALL_STATE(6138)] = 272216, - [SMALL_STATE(6139)] = 272239, - [SMALL_STATE(6140)] = 272258, - [SMALL_STATE(6141)] = 272281, - [SMALL_STATE(6142)] = 272304, - [SMALL_STATE(6143)] = 272325, - [SMALL_STATE(6144)] = 272348, - [SMALL_STATE(6145)] = 272367, - [SMALL_STATE(6146)] = 272390, - [SMALL_STATE(6147)] = 272413, - [SMALL_STATE(6148)] = 272436, - [SMALL_STATE(6149)] = 272459, - [SMALL_STATE(6150)] = 272482, - [SMALL_STATE(6151)] = 272505, - [SMALL_STATE(6152)] = 272528, - [SMALL_STATE(6153)] = 272551, - [SMALL_STATE(6154)] = 272574, - [SMALL_STATE(6155)] = 272597, - [SMALL_STATE(6156)] = 272620, - [SMALL_STATE(6157)] = 272643, - [SMALL_STATE(6158)] = 272666, - [SMALL_STATE(6159)] = 272689, - [SMALL_STATE(6160)] = 272710, - [SMALL_STATE(6161)] = 272733, - [SMALL_STATE(6162)] = 272756, - [SMALL_STATE(6163)] = 272779, - [SMALL_STATE(6164)] = 272802, - [SMALL_STATE(6165)] = 272825, - [SMALL_STATE(6166)] = 272848, - [SMALL_STATE(6167)] = 272871, - [SMALL_STATE(6168)] = 272892, - [SMALL_STATE(6169)] = 272915, - [SMALL_STATE(6170)] = 272938, - [SMALL_STATE(6171)] = 272959, - [SMALL_STATE(6172)] = 272982, - [SMALL_STATE(6173)] = 273005, - [SMALL_STATE(6174)] = 273028, - [SMALL_STATE(6175)] = 273051, - [SMALL_STATE(6176)] = 273074, - [SMALL_STATE(6177)] = 273093, - [SMALL_STATE(6178)] = 273114, - [SMALL_STATE(6179)] = 273135, - [SMALL_STATE(6180)] = 273158, - [SMALL_STATE(6181)] = 273181, - [SMALL_STATE(6182)] = 273202, - [SMALL_STATE(6183)] = 273225, - [SMALL_STATE(6184)] = 273248, - [SMALL_STATE(6185)] = 273271, - [SMALL_STATE(6186)] = 273294, - [SMALL_STATE(6187)] = 273317, - [SMALL_STATE(6188)] = 273340, - [SMALL_STATE(6189)] = 273363, - [SMALL_STATE(6190)] = 273386, - [SMALL_STATE(6191)] = 273409, - [SMALL_STATE(6192)] = 273432, - [SMALL_STATE(6193)] = 273455, - [SMALL_STATE(6194)] = 273478, - [SMALL_STATE(6195)] = 273501, - [SMALL_STATE(6196)] = 273524, - [SMALL_STATE(6197)] = 273547, - [SMALL_STATE(6198)] = 273570, - [SMALL_STATE(6199)] = 273593, - [SMALL_STATE(6200)] = 273616, - [SMALL_STATE(6201)] = 273639, - [SMALL_STATE(6202)] = 273658, - [SMALL_STATE(6203)] = 273681, - [SMALL_STATE(6204)] = 273704, - [SMALL_STATE(6205)] = 273727, - [SMALL_STATE(6206)] = 273750, - [SMALL_STATE(6207)] = 273773, - [SMALL_STATE(6208)] = 273796, - [SMALL_STATE(6209)] = 273819, - [SMALL_STATE(6210)] = 273842, - [SMALL_STATE(6211)] = 273865, - [SMALL_STATE(6212)] = 273888, - [SMALL_STATE(6213)] = 273909, - [SMALL_STATE(6214)] = 273932, - [SMALL_STATE(6215)] = 273955, - [SMALL_STATE(6216)] = 273976, - [SMALL_STATE(6217)] = 273997, - [SMALL_STATE(6218)] = 274018, - [SMALL_STATE(6219)] = 274041, - [SMALL_STATE(6220)] = 274064, - [SMALL_STATE(6221)] = 274087, - [SMALL_STATE(6222)] = 274110, - [SMALL_STATE(6223)] = 274133, - [SMALL_STATE(6224)] = 274156, - [SMALL_STATE(6225)] = 274179, - [SMALL_STATE(6226)] = 274202, - [SMALL_STATE(6227)] = 274223, - [SMALL_STATE(6228)] = 274246, - [SMALL_STATE(6229)] = 274269, - [SMALL_STATE(6230)] = 274292, - [SMALL_STATE(6231)] = 274315, - [SMALL_STATE(6232)] = 274338, - [SMALL_STATE(6233)] = 274361, - [SMALL_STATE(6234)] = 274384, - [SMALL_STATE(6235)] = 274407, - [SMALL_STATE(6236)] = 274428, - [SMALL_STATE(6237)] = 274449, - [SMALL_STATE(6238)] = 274468, - [SMALL_STATE(6239)] = 274491, - [SMALL_STATE(6240)] = 274514, - [SMALL_STATE(6241)] = 274537, - [SMALL_STATE(6242)] = 274560, - [SMALL_STATE(6243)] = 274583, - [SMALL_STATE(6244)] = 274606, - [SMALL_STATE(6245)] = 274629, - [SMALL_STATE(6246)] = 274652, - [SMALL_STATE(6247)] = 274675, - [SMALL_STATE(6248)] = 274698, - [SMALL_STATE(6249)] = 274721, - [SMALL_STATE(6250)] = 274744, - [SMALL_STATE(6251)] = 274767, - [SMALL_STATE(6252)] = 274790, - [SMALL_STATE(6253)] = 274813, - [SMALL_STATE(6254)] = 274836, - [SMALL_STATE(6255)] = 274859, - [SMALL_STATE(6256)] = 274880, - [SMALL_STATE(6257)] = 274901, - [SMALL_STATE(6258)] = 274922, - [SMALL_STATE(6259)] = 274945, - [SMALL_STATE(6260)] = 274968, - [SMALL_STATE(6261)] = 274991, - [SMALL_STATE(6262)] = 275014, - [SMALL_STATE(6263)] = 275037, - [SMALL_STATE(6264)] = 275060, - [SMALL_STATE(6265)] = 275083, - [SMALL_STATE(6266)] = 275106, - [SMALL_STATE(6267)] = 275129, - [SMALL_STATE(6268)] = 275152, - [SMALL_STATE(6269)] = 275175, - [SMALL_STATE(6270)] = 275198, - [SMALL_STATE(6271)] = 275221, - [SMALL_STATE(6272)] = 275244, - [SMALL_STATE(6273)] = 275267, - [SMALL_STATE(6274)] = 275290, - [SMALL_STATE(6275)] = 275313, - [SMALL_STATE(6276)] = 275336, - [SMALL_STATE(6277)] = 275359, - [SMALL_STATE(6278)] = 275382, - [SMALL_STATE(6279)] = 275405, - [SMALL_STATE(6280)] = 275428, - [SMALL_STATE(6281)] = 275451, - [SMALL_STATE(6282)] = 275474, - [SMALL_STATE(6283)] = 275495, - [SMALL_STATE(6284)] = 275518, - [SMALL_STATE(6285)] = 275541, - [SMALL_STATE(6286)] = 275564, - [SMALL_STATE(6287)] = 275585, - [SMALL_STATE(6288)] = 275606, - [SMALL_STATE(6289)] = 275629, - [SMALL_STATE(6290)] = 275650, - [SMALL_STATE(6291)] = 275673, - [SMALL_STATE(6292)] = 275696, - [SMALL_STATE(6293)] = 275717, - [SMALL_STATE(6294)] = 275740, - [SMALL_STATE(6295)] = 275763, - [SMALL_STATE(6296)] = 275786, - [SMALL_STATE(6297)] = 275809, - [SMALL_STATE(6298)] = 275832, - [SMALL_STATE(6299)] = 275853, - [SMALL_STATE(6300)] = 275876, - [SMALL_STATE(6301)] = 275899, - [SMALL_STATE(6302)] = 275922, - [SMALL_STATE(6303)] = 275945, - [SMALL_STATE(6304)] = 275968, - [SMALL_STATE(6305)] = 275991, - [SMALL_STATE(6306)] = 276014, - [SMALL_STATE(6307)] = 276037, - [SMALL_STATE(6308)] = 276060, - [SMALL_STATE(6309)] = 276083, - [SMALL_STATE(6310)] = 276106, - [SMALL_STATE(6311)] = 276129, - [SMALL_STATE(6312)] = 276152, - [SMALL_STATE(6313)] = 276175, - [SMALL_STATE(6314)] = 276198, - [SMALL_STATE(6315)] = 276219, - [SMALL_STATE(6316)] = 276242, - [SMALL_STATE(6317)] = 276265, - [SMALL_STATE(6318)] = 276288, - [SMALL_STATE(6319)] = 276311, - [SMALL_STATE(6320)] = 276334, - [SMALL_STATE(6321)] = 276357, - [SMALL_STATE(6322)] = 276380, - [SMALL_STATE(6323)] = 276403, - [SMALL_STATE(6324)] = 276426, - [SMALL_STATE(6325)] = 276445, - [SMALL_STATE(6326)] = 276468, - [SMALL_STATE(6327)] = 276489, - [SMALL_STATE(6328)] = 276508, - [SMALL_STATE(6329)] = 276531, - [SMALL_STATE(6330)] = 276554, - [SMALL_STATE(6331)] = 276577, - [SMALL_STATE(6332)] = 276600, - [SMALL_STATE(6333)] = 276623, - [SMALL_STATE(6334)] = 276646, - [SMALL_STATE(6335)] = 276669, - [SMALL_STATE(6336)] = 276690, - [SMALL_STATE(6337)] = 276713, - [SMALL_STATE(6338)] = 276736, - [SMALL_STATE(6339)] = 276759, - [SMALL_STATE(6340)] = 276782, - [SMALL_STATE(6341)] = 276805, - [SMALL_STATE(6342)] = 276828, - [SMALL_STATE(6343)] = 276847, - [SMALL_STATE(6344)] = 276866, - [SMALL_STATE(6345)] = 276889, - [SMALL_STATE(6346)] = 276912, - [SMALL_STATE(6347)] = 276935, - [SMALL_STATE(6348)] = 276958, - [SMALL_STATE(6349)] = 276977, - [SMALL_STATE(6350)] = 277000, - [SMALL_STATE(6351)] = 277021, - [SMALL_STATE(6352)] = 277044, - [SMALL_STATE(6353)] = 277067, - [SMALL_STATE(6354)] = 277090, - [SMALL_STATE(6355)] = 277113, - [SMALL_STATE(6356)] = 277136, - [SMALL_STATE(6357)] = 277159, - [SMALL_STATE(6358)] = 277182, - [SMALL_STATE(6359)] = 277205, - [SMALL_STATE(6360)] = 277228, - [SMALL_STATE(6361)] = 277249, - [SMALL_STATE(6362)] = 277272, - [SMALL_STATE(6363)] = 277293, - [SMALL_STATE(6364)] = 277316, - [SMALL_STATE(6365)] = 277333, - [SMALL_STATE(6366)] = 277356, - [SMALL_STATE(6367)] = 277379, - [SMALL_STATE(6368)] = 277402, - [SMALL_STATE(6369)] = 277425, - [SMALL_STATE(6370)] = 277448, - [SMALL_STATE(6371)] = 277471, - [SMALL_STATE(6372)] = 277491, - [SMALL_STATE(6373)] = 277511, - [SMALL_STATE(6374)] = 277531, - [SMALL_STATE(6375)] = 277551, - [SMALL_STATE(6376)] = 277571, - [SMALL_STATE(6377)] = 277591, - [SMALL_STATE(6378)] = 277609, - [SMALL_STATE(6379)] = 277629, - [SMALL_STATE(6380)] = 277647, - [SMALL_STATE(6381)] = 277665, - [SMALL_STATE(6382)] = 277685, - [SMALL_STATE(6383)] = 277705, - [SMALL_STATE(6384)] = 277723, - [SMALL_STATE(6385)] = 277741, - [SMALL_STATE(6386)] = 277761, - [SMALL_STATE(6387)] = 277779, - [SMALL_STATE(6388)] = 277799, - [SMALL_STATE(6389)] = 277819, - [SMALL_STATE(6390)] = 277837, - [SMALL_STATE(6391)] = 277857, - [SMALL_STATE(6392)] = 277877, - [SMALL_STATE(6393)] = 277895, - [SMALL_STATE(6394)] = 277913, - [SMALL_STATE(6395)] = 277931, - [SMALL_STATE(6396)] = 277951, - [SMALL_STATE(6397)] = 277969, - [SMALL_STATE(6398)] = 277987, - [SMALL_STATE(6399)] = 278007, - [SMALL_STATE(6400)] = 278027, - [SMALL_STATE(6401)] = 278045, - [SMALL_STATE(6402)] = 278063, - [SMALL_STATE(6403)] = 278081, - [SMALL_STATE(6404)] = 278101, - [SMALL_STATE(6405)] = 278119, - [SMALL_STATE(6406)] = 278137, - [SMALL_STATE(6407)] = 278155, - [SMALL_STATE(6408)] = 278173, - [SMALL_STATE(6409)] = 278191, - [SMALL_STATE(6410)] = 278211, - [SMALL_STATE(6411)] = 278231, - [SMALL_STATE(6412)] = 278249, - [SMALL_STATE(6413)] = 278267, - [SMALL_STATE(6414)] = 278285, - [SMALL_STATE(6415)] = 278303, - [SMALL_STATE(6416)] = 278321, - [SMALL_STATE(6417)] = 278339, - [SMALL_STATE(6418)] = 278357, - [SMALL_STATE(6419)] = 278375, - [SMALL_STATE(6420)] = 278395, - [SMALL_STATE(6421)] = 278415, - [SMALL_STATE(6422)] = 278433, - [SMALL_STATE(6423)] = 278451, - [SMALL_STATE(6424)] = 278469, - [SMALL_STATE(6425)] = 278489, - [SMALL_STATE(6426)] = 278509, - [SMALL_STATE(6427)] = 278529, - [SMALL_STATE(6428)] = 278549, - [SMALL_STATE(6429)] = 278569, - [SMALL_STATE(6430)] = 278589, - [SMALL_STATE(6431)] = 278607, - [SMALL_STATE(6432)] = 278627, - [SMALL_STATE(6433)] = 278647, - [SMALL_STATE(6434)] = 278665, - [SMALL_STATE(6435)] = 278685, - [SMALL_STATE(6436)] = 278705, - [SMALL_STATE(6437)] = 278725, - [SMALL_STATE(6438)] = 278745, - [SMALL_STATE(6439)] = 278765, - [SMALL_STATE(6440)] = 278785, - [SMALL_STATE(6441)] = 278805, - [SMALL_STATE(6442)] = 278825, - [SMALL_STATE(6443)] = 278845, - [SMALL_STATE(6444)] = 278865, - [SMALL_STATE(6445)] = 278885, - [SMALL_STATE(6446)] = 278905, - [SMALL_STATE(6447)] = 278925, - [SMALL_STATE(6448)] = 278945, - [SMALL_STATE(6449)] = 278965, - [SMALL_STATE(6450)] = 278985, - [SMALL_STATE(6451)] = 279003, - [SMALL_STATE(6452)] = 279023, - [SMALL_STATE(6453)] = 279043, - [SMALL_STATE(6454)] = 279063, - [SMALL_STATE(6455)] = 279083, - [SMALL_STATE(6456)] = 279103, - [SMALL_STATE(6457)] = 279123, - [SMALL_STATE(6458)] = 279143, - [SMALL_STATE(6459)] = 279163, - [SMALL_STATE(6460)] = 279183, - [SMALL_STATE(6461)] = 279203, - [SMALL_STATE(6462)] = 279223, - [SMALL_STATE(6463)] = 279243, - [SMALL_STATE(6464)] = 279263, - [SMALL_STATE(6465)] = 279283, - [SMALL_STATE(6466)] = 279303, - [SMALL_STATE(6467)] = 279321, - [SMALL_STATE(6468)] = 279341, - [SMALL_STATE(6469)] = 279359, - [SMALL_STATE(6470)] = 279377, - [SMALL_STATE(6471)] = 279397, - [SMALL_STATE(6472)] = 279417, - [SMALL_STATE(6473)] = 279437, - [SMALL_STATE(6474)] = 279457, - [SMALL_STATE(6475)] = 279477, - [SMALL_STATE(6476)] = 279497, - [SMALL_STATE(6477)] = 279517, - [SMALL_STATE(6478)] = 279537, - [SMALL_STATE(6479)] = 279557, - [SMALL_STATE(6480)] = 279577, - [SMALL_STATE(6481)] = 279597, - [SMALL_STATE(6482)] = 279615, - [SMALL_STATE(6483)] = 279633, - [SMALL_STATE(6484)] = 279653, - [SMALL_STATE(6485)] = 279673, - [SMALL_STATE(6486)] = 279693, - [SMALL_STATE(6487)] = 279713, - [SMALL_STATE(6488)] = 279733, - [SMALL_STATE(6489)] = 279753, - [SMALL_STATE(6490)] = 279773, - [SMALL_STATE(6491)] = 279793, - [SMALL_STATE(6492)] = 279813, - [SMALL_STATE(6493)] = 279833, - [SMALL_STATE(6494)] = 279853, - [SMALL_STATE(6495)] = 279873, - [SMALL_STATE(6496)] = 279893, - [SMALL_STATE(6497)] = 279913, - [SMALL_STATE(6498)] = 279933, - [SMALL_STATE(6499)] = 279953, - [SMALL_STATE(6500)] = 279971, - [SMALL_STATE(6501)] = 279991, - [SMALL_STATE(6502)] = 280011, - [SMALL_STATE(6503)] = 280031, - [SMALL_STATE(6504)] = 280051, - [SMALL_STATE(6505)] = 280071, - [SMALL_STATE(6506)] = 280091, - [SMALL_STATE(6507)] = 280111, - [SMALL_STATE(6508)] = 280131, - [SMALL_STATE(6509)] = 280151, - [SMALL_STATE(6510)] = 280171, - [SMALL_STATE(6511)] = 280191, - [SMALL_STATE(6512)] = 280211, - [SMALL_STATE(6513)] = 280231, - [SMALL_STATE(6514)] = 280251, - [SMALL_STATE(6515)] = 280271, - [SMALL_STATE(6516)] = 280291, - [SMALL_STATE(6517)] = 280309, - [SMALL_STATE(6518)] = 280329, - [SMALL_STATE(6519)] = 280349, - [SMALL_STATE(6520)] = 280369, - [SMALL_STATE(6521)] = 280389, - [SMALL_STATE(6522)] = 280409, - [SMALL_STATE(6523)] = 280425, - [SMALL_STATE(6524)] = 280445, - [SMALL_STATE(6525)] = 280465, - [SMALL_STATE(6526)] = 280483, - [SMALL_STATE(6527)] = 280501, - [SMALL_STATE(6528)] = 280519, - [SMALL_STATE(6529)] = 280537, - [SMALL_STATE(6530)] = 280557, - [SMALL_STATE(6531)] = 280577, - [SMALL_STATE(6532)] = 280597, - [SMALL_STATE(6533)] = 280617, - [SMALL_STATE(6534)] = 280637, - [SMALL_STATE(6535)] = 280657, - [SMALL_STATE(6536)] = 280677, - [SMALL_STATE(6537)] = 280697, - [SMALL_STATE(6538)] = 280717, - [SMALL_STATE(6539)] = 280737, - [SMALL_STATE(6540)] = 280757, - [SMALL_STATE(6541)] = 280777, - [SMALL_STATE(6542)] = 280797, - [SMALL_STATE(6543)] = 280817, - [SMALL_STATE(6544)] = 280837, - [SMALL_STATE(6545)] = 280857, - [SMALL_STATE(6546)] = 280877, - [SMALL_STATE(6547)] = 280895, - [SMALL_STATE(6548)] = 280915, - [SMALL_STATE(6549)] = 280935, - [SMALL_STATE(6550)] = 280955, - [SMALL_STATE(6551)] = 280975, - [SMALL_STATE(6552)] = 280995, - [SMALL_STATE(6553)] = 281015, - [SMALL_STATE(6554)] = 281033, - [SMALL_STATE(6555)] = 281053, - [SMALL_STATE(6556)] = 281073, - [SMALL_STATE(6557)] = 281093, - [SMALL_STATE(6558)] = 281113, - [SMALL_STATE(6559)] = 281133, - [SMALL_STATE(6560)] = 281153, - [SMALL_STATE(6561)] = 281173, - [SMALL_STATE(6562)] = 281193, - [SMALL_STATE(6563)] = 281213, - [SMALL_STATE(6564)] = 281233, - [SMALL_STATE(6565)] = 281253, - [SMALL_STATE(6566)] = 281273, - [SMALL_STATE(6567)] = 281293, - [SMALL_STATE(6568)] = 281313, - [SMALL_STATE(6569)] = 281333, - [SMALL_STATE(6570)] = 281353, - [SMALL_STATE(6571)] = 281373, - [SMALL_STATE(6572)] = 281393, - [SMALL_STATE(6573)] = 281413, - [SMALL_STATE(6574)] = 281433, - [SMALL_STATE(6575)] = 281453, - [SMALL_STATE(6576)] = 281473, - [SMALL_STATE(6577)] = 281491, - [SMALL_STATE(6578)] = 281511, - [SMALL_STATE(6579)] = 281531, - [SMALL_STATE(6580)] = 281551, - [SMALL_STATE(6581)] = 281571, - [SMALL_STATE(6582)] = 281591, - [SMALL_STATE(6583)] = 281611, - [SMALL_STATE(6584)] = 281631, - [SMALL_STATE(6585)] = 281651, - [SMALL_STATE(6586)] = 281669, - [SMALL_STATE(6587)] = 281689, - [SMALL_STATE(6588)] = 281707, - [SMALL_STATE(6589)] = 281727, - [SMALL_STATE(6590)] = 281747, - [SMALL_STATE(6591)] = 281767, - [SMALL_STATE(6592)] = 281785, - [SMALL_STATE(6593)] = 281805, - [SMALL_STATE(6594)] = 281825, - [SMALL_STATE(6595)] = 281843, - [SMALL_STATE(6596)] = 281863, - [SMALL_STATE(6597)] = 281883, - [SMALL_STATE(6598)] = 281903, - [SMALL_STATE(6599)] = 281923, - [SMALL_STATE(6600)] = 281941, - [SMALL_STATE(6601)] = 281959, - [SMALL_STATE(6602)] = 281977, - [SMALL_STATE(6603)] = 281997, - [SMALL_STATE(6604)] = 282017, - [SMALL_STATE(6605)] = 282037, - [SMALL_STATE(6606)] = 282057, - [SMALL_STATE(6607)] = 282075, - [SMALL_STATE(6608)] = 282095, - [SMALL_STATE(6609)] = 282115, - [SMALL_STATE(6610)] = 282135, - [SMALL_STATE(6611)] = 282153, - [SMALL_STATE(6612)] = 282173, - [SMALL_STATE(6613)] = 282193, - [SMALL_STATE(6614)] = 282211, - [SMALL_STATE(6615)] = 282229, - [SMALL_STATE(6616)] = 282249, - [SMALL_STATE(6617)] = 282269, - [SMALL_STATE(6618)] = 282285, - [SMALL_STATE(6619)] = 282305, - [SMALL_STATE(6620)] = 282323, - [SMALL_STATE(6621)] = 282343, - [SMALL_STATE(6622)] = 282363, - [SMALL_STATE(6623)] = 282381, - [SMALL_STATE(6624)] = 282399, - [SMALL_STATE(6625)] = 282417, - [SMALL_STATE(6626)] = 282437, - [SMALL_STATE(6627)] = 282457, - [SMALL_STATE(6628)] = 282477, - [SMALL_STATE(6629)] = 282495, - [SMALL_STATE(6630)] = 282515, - [SMALL_STATE(6631)] = 282535, - [SMALL_STATE(6632)] = 282555, - [SMALL_STATE(6633)] = 282575, - [SMALL_STATE(6634)] = 282595, - [SMALL_STATE(6635)] = 282615, - [SMALL_STATE(6636)] = 282635, - [SMALL_STATE(6637)] = 282653, - [SMALL_STATE(6638)] = 282673, - [SMALL_STATE(6639)] = 282693, - [SMALL_STATE(6640)] = 282713, - [SMALL_STATE(6641)] = 282733, - [SMALL_STATE(6642)] = 282753, - [SMALL_STATE(6643)] = 282773, - [SMALL_STATE(6644)] = 282791, - [SMALL_STATE(6645)] = 282811, - [SMALL_STATE(6646)] = 282831, - [SMALL_STATE(6647)] = 282851, - [SMALL_STATE(6648)] = 282871, - [SMALL_STATE(6649)] = 282891, - [SMALL_STATE(6650)] = 282911, - [SMALL_STATE(6651)] = 282931, - [SMALL_STATE(6652)] = 282951, - [SMALL_STATE(6653)] = 282971, - [SMALL_STATE(6654)] = 282991, - [SMALL_STATE(6655)] = 283011, - [SMALL_STATE(6656)] = 283031, - [SMALL_STATE(6657)] = 283049, - [SMALL_STATE(6658)] = 283069, - [SMALL_STATE(6659)] = 283089, - [SMALL_STATE(6660)] = 283109, - [SMALL_STATE(6661)] = 283129, - [SMALL_STATE(6662)] = 283149, - [SMALL_STATE(6663)] = 283169, - [SMALL_STATE(6664)] = 283189, - [SMALL_STATE(6665)] = 283209, - [SMALL_STATE(6666)] = 283229, - [SMALL_STATE(6667)] = 283249, - [SMALL_STATE(6668)] = 283269, - [SMALL_STATE(6669)] = 283289, - [SMALL_STATE(6670)] = 283307, - [SMALL_STATE(6671)] = 283327, - [SMALL_STATE(6672)] = 283347, - [SMALL_STATE(6673)] = 283363, - [SMALL_STATE(6674)] = 283383, - [SMALL_STATE(6675)] = 283403, - [SMALL_STATE(6676)] = 283423, - [SMALL_STATE(6677)] = 283441, - [SMALL_STATE(6678)] = 283461, - [SMALL_STATE(6679)] = 283481, - [SMALL_STATE(6680)] = 283501, - [SMALL_STATE(6681)] = 283521, - [SMALL_STATE(6682)] = 283541, - [SMALL_STATE(6683)] = 283559, - [SMALL_STATE(6684)] = 283579, - [SMALL_STATE(6685)] = 283597, - [SMALL_STATE(6686)] = 283617, - [SMALL_STATE(6687)] = 283637, - [SMALL_STATE(6688)] = 283653, - [SMALL_STATE(6689)] = 283671, - [SMALL_STATE(6690)] = 283687, - [SMALL_STATE(6691)] = 283707, - [SMALL_STATE(6692)] = 283727, - [SMALL_STATE(6693)] = 283747, - [SMALL_STATE(6694)] = 283765, - [SMALL_STATE(6695)] = 283785, - [SMALL_STATE(6696)] = 283805, - [SMALL_STATE(6697)] = 283825, - [SMALL_STATE(6698)] = 283845, - [SMALL_STATE(6699)] = 283863, - [SMALL_STATE(6700)] = 283883, - [SMALL_STATE(6701)] = 283903, - [SMALL_STATE(6702)] = 283923, - [SMALL_STATE(6703)] = 283943, - [SMALL_STATE(6704)] = 283959, - [SMALL_STATE(6705)] = 283979, - [SMALL_STATE(6706)] = 283995, - [SMALL_STATE(6707)] = 284013, - [SMALL_STATE(6708)] = 284033, - [SMALL_STATE(6709)] = 284053, - [SMALL_STATE(6710)] = 284073, - [SMALL_STATE(6711)] = 284093, - [SMALL_STATE(6712)] = 284113, - [SMALL_STATE(6713)] = 284133, - [SMALL_STATE(6714)] = 284151, - [SMALL_STATE(6715)] = 284169, - [SMALL_STATE(6716)] = 284187, - [SMALL_STATE(6717)] = 284207, - [SMALL_STATE(6718)] = 284227, - [SMALL_STATE(6719)] = 284247, - [SMALL_STATE(6720)] = 284267, - [SMALL_STATE(6721)] = 284287, - [SMALL_STATE(6722)] = 284307, - [SMALL_STATE(6723)] = 284327, - [SMALL_STATE(6724)] = 284347, - [SMALL_STATE(6725)] = 284367, - [SMALL_STATE(6726)] = 284387, - [SMALL_STATE(6727)] = 284407, - [SMALL_STATE(6728)] = 284425, - [SMALL_STATE(6729)] = 284445, - [SMALL_STATE(6730)] = 284465, - [SMALL_STATE(6731)] = 284485, - [SMALL_STATE(6732)] = 284505, - [SMALL_STATE(6733)] = 284521, - [SMALL_STATE(6734)] = 284539, - [SMALL_STATE(6735)] = 284559, - [SMALL_STATE(6736)] = 284577, - [SMALL_STATE(6737)] = 284597, - [SMALL_STATE(6738)] = 284617, - [SMALL_STATE(6739)] = 284635, - [SMALL_STATE(6740)] = 284655, - [SMALL_STATE(6741)] = 284675, - [SMALL_STATE(6742)] = 284695, - [SMALL_STATE(6743)] = 284715, - [SMALL_STATE(6744)] = 284733, - [SMALL_STATE(6745)] = 284753, - [SMALL_STATE(6746)] = 284773, - [SMALL_STATE(6747)] = 284793, - [SMALL_STATE(6748)] = 284811, - [SMALL_STATE(6749)] = 284831, - [SMALL_STATE(6750)] = 284851, - [SMALL_STATE(6751)] = 284871, - [SMALL_STATE(6752)] = 284891, - [SMALL_STATE(6753)] = 284911, - [SMALL_STATE(6754)] = 284929, - [SMALL_STATE(6755)] = 284949, - [SMALL_STATE(6756)] = 284969, - [SMALL_STATE(6757)] = 284989, - [SMALL_STATE(6758)] = 285009, - [SMALL_STATE(6759)] = 285029, - [SMALL_STATE(6760)] = 285049, - [SMALL_STATE(6761)] = 285069, - [SMALL_STATE(6762)] = 285089, - [SMALL_STATE(6763)] = 285107, - [SMALL_STATE(6764)] = 285127, - [SMALL_STATE(6765)] = 285147, - [SMALL_STATE(6766)] = 285167, - [SMALL_STATE(6767)] = 285187, - [SMALL_STATE(6768)] = 285207, - [SMALL_STATE(6769)] = 285227, - [SMALL_STATE(6770)] = 285247, - [SMALL_STATE(6771)] = 285267, - [SMALL_STATE(6772)] = 285287, - [SMALL_STATE(6773)] = 285307, - [SMALL_STATE(6774)] = 285327, - [SMALL_STATE(6775)] = 285347, - [SMALL_STATE(6776)] = 285367, - [SMALL_STATE(6777)] = 285387, - [SMALL_STATE(6778)] = 285407, - [SMALL_STATE(6779)] = 285427, - [SMALL_STATE(6780)] = 285447, - [SMALL_STATE(6781)] = 285467, - [SMALL_STATE(6782)] = 285485, - [SMALL_STATE(6783)] = 285505, - [SMALL_STATE(6784)] = 285525, - [SMALL_STATE(6785)] = 285545, - [SMALL_STATE(6786)] = 285563, - [SMALL_STATE(6787)] = 285583, - [SMALL_STATE(6788)] = 285603, - [SMALL_STATE(6789)] = 285619, - [SMALL_STATE(6790)] = 285635, - [SMALL_STATE(6791)] = 285655, - [SMALL_STATE(6792)] = 285675, - [SMALL_STATE(6793)] = 285695, - [SMALL_STATE(6794)] = 285715, - [SMALL_STATE(6795)] = 285733, - [SMALL_STATE(6796)] = 285753, - [SMALL_STATE(6797)] = 285771, - [SMALL_STATE(6798)] = 285791, - [SMALL_STATE(6799)] = 285809, - [SMALL_STATE(6800)] = 285829, - [SMALL_STATE(6801)] = 285849, - [SMALL_STATE(6802)] = 285869, - [SMALL_STATE(6803)] = 285887, - [SMALL_STATE(6804)] = 285907, - [SMALL_STATE(6805)] = 285927, - [SMALL_STATE(6806)] = 285945, - [SMALL_STATE(6807)] = 285965, - [SMALL_STATE(6808)] = 285985, - [SMALL_STATE(6809)] = 286005, - [SMALL_STATE(6810)] = 286025, - [SMALL_STATE(6811)] = 286045, - [SMALL_STATE(6812)] = 286063, - [SMALL_STATE(6813)] = 286083, - [SMALL_STATE(6814)] = 286103, - [SMALL_STATE(6815)] = 286123, - [SMALL_STATE(6816)] = 286141, - [SMALL_STATE(6817)] = 286161, - [SMALL_STATE(6818)] = 286181, - [SMALL_STATE(6819)] = 286201, - [SMALL_STATE(6820)] = 286219, - [SMALL_STATE(6821)] = 286239, - [SMALL_STATE(6822)] = 286257, - [SMALL_STATE(6823)] = 286277, - [SMALL_STATE(6824)] = 286297, - [SMALL_STATE(6825)] = 286317, - [SMALL_STATE(6826)] = 286337, - [SMALL_STATE(6827)] = 286357, - [SMALL_STATE(6828)] = 286377, - [SMALL_STATE(6829)] = 286397, - [SMALL_STATE(6830)] = 286417, - [SMALL_STATE(6831)] = 286433, - [SMALL_STATE(6832)] = 286453, - [SMALL_STATE(6833)] = 286473, - [SMALL_STATE(6834)] = 286491, - [SMALL_STATE(6835)] = 286511, - [SMALL_STATE(6836)] = 286531, - [SMALL_STATE(6837)] = 286551, - [SMALL_STATE(6838)] = 286571, - [SMALL_STATE(6839)] = 286589, - [SMALL_STATE(6840)] = 286609, - [SMALL_STATE(6841)] = 286629, - [SMALL_STATE(6842)] = 286649, - [SMALL_STATE(6843)] = 286669, - [SMALL_STATE(6844)] = 286689, - [SMALL_STATE(6845)] = 286709, - [SMALL_STATE(6846)] = 286729, - [SMALL_STATE(6847)] = 286749, - [SMALL_STATE(6848)] = 286769, - [SMALL_STATE(6849)] = 286789, - [SMALL_STATE(6850)] = 286809, - [SMALL_STATE(6851)] = 286829, - [SMALL_STATE(6852)] = 286849, - [SMALL_STATE(6853)] = 286869, - [SMALL_STATE(6854)] = 286889, - [SMALL_STATE(6855)] = 286909, - [SMALL_STATE(6856)] = 286927, - [SMALL_STATE(6857)] = 286945, - [SMALL_STATE(6858)] = 286965, - [SMALL_STATE(6859)] = 286985, - [SMALL_STATE(6860)] = 287005, - [SMALL_STATE(6861)] = 287025, - [SMALL_STATE(6862)] = 287045, - [SMALL_STATE(6863)] = 287065, - [SMALL_STATE(6864)] = 287085, - [SMALL_STATE(6865)] = 287105, - [SMALL_STATE(6866)] = 287125, - [SMALL_STATE(6867)] = 287143, - [SMALL_STATE(6868)] = 287163, - [SMALL_STATE(6869)] = 287183, - [SMALL_STATE(6870)] = 287203, - [SMALL_STATE(6871)] = 287221, - [SMALL_STATE(6872)] = 287241, - [SMALL_STATE(6873)] = 287261, - [SMALL_STATE(6874)] = 287281, - [SMALL_STATE(6875)] = 287301, - [SMALL_STATE(6876)] = 287321, - [SMALL_STATE(6877)] = 287341, - [SMALL_STATE(6878)] = 287361, - [SMALL_STATE(6879)] = 287381, - [SMALL_STATE(6880)] = 287401, - [SMALL_STATE(6881)] = 287421, - [SMALL_STATE(6882)] = 287441, - [SMALL_STATE(6883)] = 287461, - [SMALL_STATE(6884)] = 287481, - [SMALL_STATE(6885)] = 287501, - [SMALL_STATE(6886)] = 287521, - [SMALL_STATE(6887)] = 287541, - [SMALL_STATE(6888)] = 287561, - [SMALL_STATE(6889)] = 287581, - [SMALL_STATE(6890)] = 287601, - [SMALL_STATE(6891)] = 287621, - [SMALL_STATE(6892)] = 287641, - [SMALL_STATE(6893)] = 287661, - [SMALL_STATE(6894)] = 287681, - [SMALL_STATE(6895)] = 287701, - [SMALL_STATE(6896)] = 287721, - [SMALL_STATE(6897)] = 287741, - [SMALL_STATE(6898)] = 287761, - [SMALL_STATE(6899)] = 287781, - [SMALL_STATE(6900)] = 287801, - [SMALL_STATE(6901)] = 287821, - [SMALL_STATE(6902)] = 287841, - [SMALL_STATE(6903)] = 287861, - [SMALL_STATE(6904)] = 287881, - [SMALL_STATE(6905)] = 287899, - [SMALL_STATE(6906)] = 287919, - [SMALL_STATE(6907)] = 287937, - [SMALL_STATE(6908)] = 287957, - [SMALL_STATE(6909)] = 287977, - [SMALL_STATE(6910)] = 287997, - [SMALL_STATE(6911)] = 288017, - [SMALL_STATE(6912)] = 288037, - [SMALL_STATE(6913)] = 288055, - [SMALL_STATE(6914)] = 288075, - [SMALL_STATE(6915)] = 288095, - [SMALL_STATE(6916)] = 288115, - [SMALL_STATE(6917)] = 288135, - [SMALL_STATE(6918)] = 288155, - [SMALL_STATE(6919)] = 288172, - [SMALL_STATE(6920)] = 288189, - [SMALL_STATE(6921)] = 288206, - [SMALL_STATE(6922)] = 288223, - [SMALL_STATE(6923)] = 288238, - [SMALL_STATE(6924)] = 288253, - [SMALL_STATE(6925)] = 288270, - [SMALL_STATE(6926)] = 288287, - [SMALL_STATE(6927)] = 288304, - [SMALL_STATE(6928)] = 288321, - [SMALL_STATE(6929)] = 288338, - [SMALL_STATE(6930)] = 288355, - [SMALL_STATE(6931)] = 288372, - [SMALL_STATE(6932)] = 288389, - [SMALL_STATE(6933)] = 288406, - [SMALL_STATE(6934)] = 288423, - [SMALL_STATE(6935)] = 288438, - [SMALL_STATE(6936)] = 288455, - [SMALL_STATE(6937)] = 288472, - [SMALL_STATE(6938)] = 288487, - [SMALL_STATE(6939)] = 288504, - [SMALL_STATE(6940)] = 288521, - [SMALL_STATE(6941)] = 288538, - [SMALL_STATE(6942)] = 288553, - [SMALL_STATE(6943)] = 288570, - [SMALL_STATE(6944)] = 288587, - [SMALL_STATE(6945)] = 288602, - [SMALL_STATE(6946)] = 288619, - [SMALL_STATE(6947)] = 288636, - [SMALL_STATE(6948)] = 288653, - [SMALL_STATE(6949)] = 288670, - [SMALL_STATE(6950)] = 288685, - [SMALL_STATE(6951)] = 288700, - [SMALL_STATE(6952)] = 288717, - [SMALL_STATE(6953)] = 288734, - [SMALL_STATE(6954)] = 288751, - [SMALL_STATE(6955)] = 288768, - [SMALL_STATE(6956)] = 288783, - [SMALL_STATE(6957)] = 288800, - [SMALL_STATE(6958)] = 288815, - [SMALL_STATE(6959)] = 288832, - [SMALL_STATE(6960)] = 288849, - [SMALL_STATE(6961)] = 288866, - [SMALL_STATE(6962)] = 288883, - [SMALL_STATE(6963)] = 288900, - [SMALL_STATE(6964)] = 288917, - [SMALL_STATE(6965)] = 288934, - [SMALL_STATE(6966)] = 288951, - [SMALL_STATE(6967)] = 288968, - [SMALL_STATE(6968)] = 288985, - [SMALL_STATE(6969)] = 289000, - [SMALL_STATE(6970)] = 289017, - [SMALL_STATE(6971)] = 289034, - [SMALL_STATE(6972)] = 289051, - [SMALL_STATE(6973)] = 289068, - [SMALL_STATE(6974)] = 289085, - [SMALL_STATE(6975)] = 289102, - [SMALL_STATE(6976)] = 289119, - [SMALL_STATE(6977)] = 289136, - [SMALL_STATE(6978)] = 289153, - [SMALL_STATE(6979)] = 289170, - [SMALL_STATE(6980)] = 289187, - [SMALL_STATE(6981)] = 289204, - [SMALL_STATE(6982)] = 289219, - [SMALL_STATE(6983)] = 289236, - [SMALL_STATE(6984)] = 289251, - [SMALL_STATE(6985)] = 289268, - [SMALL_STATE(6986)] = 289285, - [SMALL_STATE(6987)] = 289302, - [SMALL_STATE(6988)] = 289319, - [SMALL_STATE(6989)] = 289336, - [SMALL_STATE(6990)] = 289353, - [SMALL_STATE(6991)] = 289370, - [SMALL_STATE(6992)] = 289387, - [SMALL_STATE(6993)] = 289404, - [SMALL_STATE(6994)] = 289421, - [SMALL_STATE(6995)] = 289438, - [SMALL_STATE(6996)] = 289455, - [SMALL_STATE(6997)] = 289472, - [SMALL_STATE(6998)] = 289489, - [SMALL_STATE(6999)] = 289506, - [SMALL_STATE(7000)] = 289523, - [SMALL_STATE(7001)] = 289540, - [SMALL_STATE(7002)] = 289557, - [SMALL_STATE(7003)] = 289574, - [SMALL_STATE(7004)] = 289591, - [SMALL_STATE(7005)] = 289608, - [SMALL_STATE(7006)] = 289625, - [SMALL_STATE(7007)] = 289642, - [SMALL_STATE(7008)] = 289659, - [SMALL_STATE(7009)] = 289676, - [SMALL_STATE(7010)] = 289693, - [SMALL_STATE(7011)] = 289710, - [SMALL_STATE(7012)] = 289725, - [SMALL_STATE(7013)] = 289742, - [SMALL_STATE(7014)] = 289759, - [SMALL_STATE(7015)] = 289774, - [SMALL_STATE(7016)] = 289791, - [SMALL_STATE(7017)] = 289808, - [SMALL_STATE(7018)] = 289823, - [SMALL_STATE(7019)] = 289840, - [SMALL_STATE(7020)] = 289857, - [SMALL_STATE(7021)] = 289874, - [SMALL_STATE(7022)] = 289891, - [SMALL_STATE(7023)] = 289906, - [SMALL_STATE(7024)] = 289921, - [SMALL_STATE(7025)] = 289938, - [SMALL_STATE(7026)] = 289953, - [SMALL_STATE(7027)] = 289970, - [SMALL_STATE(7028)] = 289987, - [SMALL_STATE(7029)] = 290004, - [SMALL_STATE(7030)] = 290021, - [SMALL_STATE(7031)] = 290038, - [SMALL_STATE(7032)] = 290055, - [SMALL_STATE(7033)] = 290070, - [SMALL_STATE(7034)] = 290087, - [SMALL_STATE(7035)] = 290102, - [SMALL_STATE(7036)] = 290117, - [SMALL_STATE(7037)] = 290132, - [SMALL_STATE(7038)] = 290149, - [SMALL_STATE(7039)] = 290166, - [SMALL_STATE(7040)] = 290183, - [SMALL_STATE(7041)] = 290200, - [SMALL_STATE(7042)] = 290215, - [SMALL_STATE(7043)] = 290232, - [SMALL_STATE(7044)] = 290247, - [SMALL_STATE(7045)] = 290264, - [SMALL_STATE(7046)] = 290281, - [SMALL_STATE(7047)] = 290298, - [SMALL_STATE(7048)] = 290315, - [SMALL_STATE(7049)] = 290332, - [SMALL_STATE(7050)] = 290349, - [SMALL_STATE(7051)] = 290366, - [SMALL_STATE(7052)] = 290383, - [SMALL_STATE(7053)] = 290398, - [SMALL_STATE(7054)] = 290415, - [SMALL_STATE(7055)] = 290432, - [SMALL_STATE(7056)] = 290449, - [SMALL_STATE(7057)] = 290466, - [SMALL_STATE(7058)] = 290483, - [SMALL_STATE(7059)] = 290500, - [SMALL_STATE(7060)] = 290517, - [SMALL_STATE(7061)] = 290534, - [SMALL_STATE(7062)] = 290551, - [SMALL_STATE(7063)] = 290568, - [SMALL_STATE(7064)] = 290585, - [SMALL_STATE(7065)] = 290600, - [SMALL_STATE(7066)] = 290617, - [SMALL_STATE(7067)] = 290634, - [SMALL_STATE(7068)] = 290651, - [SMALL_STATE(7069)] = 290668, - [SMALL_STATE(7070)] = 290685, - [SMALL_STATE(7071)] = 290702, - [SMALL_STATE(7072)] = 290719, - [SMALL_STATE(7073)] = 290736, - [SMALL_STATE(7074)] = 290753, - [SMALL_STATE(7075)] = 290770, - [SMALL_STATE(7076)] = 290787, - [SMALL_STATE(7077)] = 290804, - [SMALL_STATE(7078)] = 290821, - [SMALL_STATE(7079)] = 290838, - [SMALL_STATE(7080)] = 290853, - [SMALL_STATE(7081)] = 290868, - [SMALL_STATE(7082)] = 290885, - [SMALL_STATE(7083)] = 290902, - [SMALL_STATE(7084)] = 290919, - [SMALL_STATE(7085)] = 290934, - [SMALL_STATE(7086)] = 290951, - [SMALL_STATE(7087)] = 290968, - [SMALL_STATE(7088)] = 290985, - [SMALL_STATE(7089)] = 291002, - [SMALL_STATE(7090)] = 291019, - [SMALL_STATE(7091)] = 291036, - [SMALL_STATE(7092)] = 291053, - [SMALL_STATE(7093)] = 291068, - [SMALL_STATE(7094)] = 291083, - [SMALL_STATE(7095)] = 291100, - [SMALL_STATE(7096)] = 291117, - [SMALL_STATE(7097)] = 291132, - [SMALL_STATE(7098)] = 291149, - [SMALL_STATE(7099)] = 291166, - [SMALL_STATE(7100)] = 291183, - [SMALL_STATE(7101)] = 291200, - [SMALL_STATE(7102)] = 291217, - [SMALL_STATE(7103)] = 291234, - [SMALL_STATE(7104)] = 291251, - [SMALL_STATE(7105)] = 291268, - [SMALL_STATE(7106)] = 291283, - [SMALL_STATE(7107)] = 291298, - [SMALL_STATE(7108)] = 291313, - [SMALL_STATE(7109)] = 291330, - [SMALL_STATE(7110)] = 291345, - [SMALL_STATE(7111)] = 291362, - [SMALL_STATE(7112)] = 291379, - [SMALL_STATE(7113)] = 291396, - [SMALL_STATE(7114)] = 291413, - [SMALL_STATE(7115)] = 291430, - [SMALL_STATE(7116)] = 291447, - [SMALL_STATE(7117)] = 291462, - [SMALL_STATE(7118)] = 291479, - [SMALL_STATE(7119)] = 291496, - [SMALL_STATE(7120)] = 291513, - [SMALL_STATE(7121)] = 291530, - [SMALL_STATE(7122)] = 291547, - [SMALL_STATE(7123)] = 291562, - [SMALL_STATE(7124)] = 291579, - [SMALL_STATE(7125)] = 291596, - [SMALL_STATE(7126)] = 291611, - [SMALL_STATE(7127)] = 291626, - [SMALL_STATE(7128)] = 291643, - [SMALL_STATE(7129)] = 291660, - [SMALL_STATE(7130)] = 291677, - [SMALL_STATE(7131)] = 291692, - [SMALL_STATE(7132)] = 291707, - [SMALL_STATE(7133)] = 291722, - [SMALL_STATE(7134)] = 291739, - [SMALL_STATE(7135)] = 291756, - [SMALL_STATE(7136)] = 291773, - [SMALL_STATE(7137)] = 291790, - [SMALL_STATE(7138)] = 291807, - [SMALL_STATE(7139)] = 291824, - [SMALL_STATE(7140)] = 291841, - [SMALL_STATE(7141)] = 291858, - [SMALL_STATE(7142)] = 291875, - [SMALL_STATE(7143)] = 291892, - [SMALL_STATE(7144)] = 291909, - [SMALL_STATE(7145)] = 291926, - [SMALL_STATE(7146)] = 291943, - [SMALL_STATE(7147)] = 291960, - [SMALL_STATE(7148)] = 291977, - [SMALL_STATE(7149)] = 291994, - [SMALL_STATE(7150)] = 292011, - [SMALL_STATE(7151)] = 292028, - [SMALL_STATE(7152)] = 292045, - [SMALL_STATE(7153)] = 292062, - [SMALL_STATE(7154)] = 292079, - [SMALL_STATE(7155)] = 292096, - [SMALL_STATE(7156)] = 292113, - [SMALL_STATE(7157)] = 292130, - [SMALL_STATE(7158)] = 292147, - [SMALL_STATE(7159)] = 292162, - [SMALL_STATE(7160)] = 292179, - [SMALL_STATE(7161)] = 292196, - [SMALL_STATE(7162)] = 292213, - [SMALL_STATE(7163)] = 292230, - [SMALL_STATE(7164)] = 292247, - [SMALL_STATE(7165)] = 292264, - [SMALL_STATE(7166)] = 292281, - [SMALL_STATE(7167)] = 292298, - [SMALL_STATE(7168)] = 292315, - [SMALL_STATE(7169)] = 292332, - [SMALL_STATE(7170)] = 292347, - [SMALL_STATE(7171)] = 292364, - [SMALL_STATE(7172)] = 292381, - [SMALL_STATE(7173)] = 292398, - [SMALL_STATE(7174)] = 292415, - [SMALL_STATE(7175)] = 292432, - [SMALL_STATE(7176)] = 292449, - [SMALL_STATE(7177)] = 292466, - [SMALL_STATE(7178)] = 292483, - [SMALL_STATE(7179)] = 292500, - [SMALL_STATE(7180)] = 292517, - [SMALL_STATE(7181)] = 292534, - [SMALL_STATE(7182)] = 292551, - [SMALL_STATE(7183)] = 292568, - [SMALL_STATE(7184)] = 292585, - [SMALL_STATE(7185)] = 292600, - [SMALL_STATE(7186)] = 292617, - [SMALL_STATE(7187)] = 292634, - [SMALL_STATE(7188)] = 292651, - [SMALL_STATE(7189)] = 292668, - [SMALL_STATE(7190)] = 292685, - [SMALL_STATE(7191)] = 292702, - [SMALL_STATE(7192)] = 292719, - [SMALL_STATE(7193)] = 292736, - [SMALL_STATE(7194)] = 292751, - [SMALL_STATE(7195)] = 292768, - [SMALL_STATE(7196)] = 292785, - [SMALL_STATE(7197)] = 292802, - [SMALL_STATE(7198)] = 292819, - [SMALL_STATE(7199)] = 292836, - [SMALL_STATE(7200)] = 292851, - [SMALL_STATE(7201)] = 292868, - [SMALL_STATE(7202)] = 292885, - [SMALL_STATE(7203)] = 292902, - [SMALL_STATE(7204)] = 292917, - [SMALL_STATE(7205)] = 292934, - [SMALL_STATE(7206)] = 292951, - [SMALL_STATE(7207)] = 292968, - [SMALL_STATE(7208)] = 292985, - [SMALL_STATE(7209)] = 293002, - [SMALL_STATE(7210)] = 293019, - [SMALL_STATE(7211)] = 293036, - [SMALL_STATE(7212)] = 293053, - [SMALL_STATE(7213)] = 293070, - [SMALL_STATE(7214)] = 293087, - [SMALL_STATE(7215)] = 293104, - [SMALL_STATE(7216)] = 293121, - [SMALL_STATE(7217)] = 293138, - [SMALL_STATE(7218)] = 293155, - [SMALL_STATE(7219)] = 293170, - [SMALL_STATE(7220)] = 293187, - [SMALL_STATE(7221)] = 293204, - [SMALL_STATE(7222)] = 293219, - [SMALL_STATE(7223)] = 293236, - [SMALL_STATE(7224)] = 293253, - [SMALL_STATE(7225)] = 293270, - [SMALL_STATE(7226)] = 293287, - [SMALL_STATE(7227)] = 293304, - [SMALL_STATE(7228)] = 293319, - [SMALL_STATE(7229)] = 293336, - [SMALL_STATE(7230)] = 293353, - [SMALL_STATE(7231)] = 293370, - [SMALL_STATE(7232)] = 293387, - [SMALL_STATE(7233)] = 293404, - [SMALL_STATE(7234)] = 293421, - [SMALL_STATE(7235)] = 293438, - [SMALL_STATE(7236)] = 293455, - [SMALL_STATE(7237)] = 293470, - [SMALL_STATE(7238)] = 293487, - [SMALL_STATE(7239)] = 293504, - [SMALL_STATE(7240)] = 293521, - [SMALL_STATE(7241)] = 293538, - [SMALL_STATE(7242)] = 293555, - [SMALL_STATE(7243)] = 293572, - [SMALL_STATE(7244)] = 293589, - [SMALL_STATE(7245)] = 293606, - [SMALL_STATE(7246)] = 293623, - [SMALL_STATE(7247)] = 293640, - [SMALL_STATE(7248)] = 293657, - [SMALL_STATE(7249)] = 293674, - [SMALL_STATE(7250)] = 293691, - [SMALL_STATE(7251)] = 293708, - [SMALL_STATE(7252)] = 293725, - [SMALL_STATE(7253)] = 293742, - [SMALL_STATE(7254)] = 293759, - [SMALL_STATE(7255)] = 293776, - [SMALL_STATE(7256)] = 293793, - [SMALL_STATE(7257)] = 293810, - [SMALL_STATE(7258)] = 293825, - [SMALL_STATE(7259)] = 293842, - [SMALL_STATE(7260)] = 293859, - [SMALL_STATE(7261)] = 293876, - [SMALL_STATE(7262)] = 293893, - [SMALL_STATE(7263)] = 293910, - [SMALL_STATE(7264)] = 293927, - [SMALL_STATE(7265)] = 293942, - [SMALL_STATE(7266)] = 293959, - [SMALL_STATE(7267)] = 293976, - [SMALL_STATE(7268)] = 293993, - [SMALL_STATE(7269)] = 294010, - [SMALL_STATE(7270)] = 294027, - [SMALL_STATE(7271)] = 294042, - [SMALL_STATE(7272)] = 294059, - [SMALL_STATE(7273)] = 294076, - [SMALL_STATE(7274)] = 294093, - [SMALL_STATE(7275)] = 294108, - [SMALL_STATE(7276)] = 294125, - [SMALL_STATE(7277)] = 294142, - [SMALL_STATE(7278)] = 294159, - [SMALL_STATE(7279)] = 294176, - [SMALL_STATE(7280)] = 294193, - [SMALL_STATE(7281)] = 294210, - [SMALL_STATE(7282)] = 294227, - [SMALL_STATE(7283)] = 294244, - [SMALL_STATE(7284)] = 294261, - [SMALL_STATE(7285)] = 294278, - [SMALL_STATE(7286)] = 294295, - [SMALL_STATE(7287)] = 294310, - [SMALL_STATE(7288)] = 294327, - [SMALL_STATE(7289)] = 294344, - [SMALL_STATE(7290)] = 294361, - [SMALL_STATE(7291)] = 294378, - [SMALL_STATE(7292)] = 294395, - [SMALL_STATE(7293)] = 294412, - [SMALL_STATE(7294)] = 294427, - [SMALL_STATE(7295)] = 294444, - [SMALL_STATE(7296)] = 294459, - [SMALL_STATE(7297)] = 294476, - [SMALL_STATE(7298)] = 294493, - [SMALL_STATE(7299)] = 294510, - [SMALL_STATE(7300)] = 294527, - [SMALL_STATE(7301)] = 294544, - [SMALL_STATE(7302)] = 294561, - [SMALL_STATE(7303)] = 294578, - [SMALL_STATE(7304)] = 294595, - [SMALL_STATE(7305)] = 294612, - [SMALL_STATE(7306)] = 294627, - [SMALL_STATE(7307)] = 294644, - [SMALL_STATE(7308)] = 294659, - [SMALL_STATE(7309)] = 294676, - [SMALL_STATE(7310)] = 294693, - [SMALL_STATE(7311)] = 294710, - [SMALL_STATE(7312)] = 294727, - [SMALL_STATE(7313)] = 294744, - [SMALL_STATE(7314)] = 294759, - [SMALL_STATE(7315)] = 294776, - [SMALL_STATE(7316)] = 294791, - [SMALL_STATE(7317)] = 294806, - [SMALL_STATE(7318)] = 294821, - [SMALL_STATE(7319)] = 294836, - [SMALL_STATE(7320)] = 294853, - [SMALL_STATE(7321)] = 294870, - [SMALL_STATE(7322)] = 294887, - [SMALL_STATE(7323)] = 294902, - [SMALL_STATE(7324)] = 294917, - [SMALL_STATE(7325)] = 294934, - [SMALL_STATE(7326)] = 294949, - [SMALL_STATE(7327)] = 294966, - [SMALL_STATE(7328)] = 294983, - [SMALL_STATE(7329)] = 295000, - [SMALL_STATE(7330)] = 295017, - [SMALL_STATE(7331)] = 295034, - [SMALL_STATE(7332)] = 295049, - [SMALL_STATE(7333)] = 295066, - [SMALL_STATE(7334)] = 295083, - [SMALL_STATE(7335)] = 295098, - [SMALL_STATE(7336)] = 295115, - [SMALL_STATE(7337)] = 295132, - [SMALL_STATE(7338)] = 295149, - [SMALL_STATE(7339)] = 295166, - [SMALL_STATE(7340)] = 295183, - [SMALL_STATE(7341)] = 295198, - [SMALL_STATE(7342)] = 295213, - [SMALL_STATE(7343)] = 295230, - [SMALL_STATE(7344)] = 295247, - [SMALL_STATE(7345)] = 295264, - [SMALL_STATE(7346)] = 295281, - [SMALL_STATE(7347)] = 295298, - [SMALL_STATE(7348)] = 295313, - [SMALL_STATE(7349)] = 295330, - [SMALL_STATE(7350)] = 295347, - [SMALL_STATE(7351)] = 295364, - [SMALL_STATE(7352)] = 295381, - [SMALL_STATE(7353)] = 295398, - [SMALL_STATE(7354)] = 295415, - [SMALL_STATE(7355)] = 295430, - [SMALL_STATE(7356)] = 295447, - [SMALL_STATE(7357)] = 295464, - [SMALL_STATE(7358)] = 295479, - [SMALL_STATE(7359)] = 295496, - [SMALL_STATE(7360)] = 295513, - [SMALL_STATE(7361)] = 295530, - [SMALL_STATE(7362)] = 295547, - [SMALL_STATE(7363)] = 295564, - [SMALL_STATE(7364)] = 295581, - [SMALL_STATE(7365)] = 295595, - [SMALL_STATE(7366)] = 295609, - [SMALL_STATE(7367)] = 295623, - [SMALL_STATE(7368)] = 295637, - [SMALL_STATE(7369)] = 295651, - [SMALL_STATE(7370)] = 295665, - [SMALL_STATE(7371)] = 295679, - [SMALL_STATE(7372)] = 295693, - [SMALL_STATE(7373)] = 295707, - [SMALL_STATE(7374)] = 295721, - [SMALL_STATE(7375)] = 295735, - [SMALL_STATE(7376)] = 295749, - [SMALL_STATE(7377)] = 295763, - [SMALL_STATE(7378)] = 295777, - [SMALL_STATE(7379)] = 295791, - [SMALL_STATE(7380)] = 295805, - [SMALL_STATE(7381)] = 295819, - [SMALL_STATE(7382)] = 295833, - [SMALL_STATE(7383)] = 295847, - [SMALL_STATE(7384)] = 295861, - [SMALL_STATE(7385)] = 295875, - [SMALL_STATE(7386)] = 295889, - [SMALL_STATE(7387)] = 295903, - [SMALL_STATE(7388)] = 295917, - [SMALL_STATE(7389)] = 295931, - [SMALL_STATE(7390)] = 295945, - [SMALL_STATE(7391)] = 295959, - [SMALL_STATE(7392)] = 295973, - [SMALL_STATE(7393)] = 295987, - [SMALL_STATE(7394)] = 296001, - [SMALL_STATE(7395)] = 296015, - [SMALL_STATE(7396)] = 296029, - [SMALL_STATE(7397)] = 296043, - [SMALL_STATE(7398)] = 296057, - [SMALL_STATE(7399)] = 296071, - [SMALL_STATE(7400)] = 296085, - [SMALL_STATE(7401)] = 296099, - [SMALL_STATE(7402)] = 296113, - [SMALL_STATE(7403)] = 296127, - [SMALL_STATE(7404)] = 296141, - [SMALL_STATE(7405)] = 296155, - [SMALL_STATE(7406)] = 296169, - [SMALL_STATE(7407)] = 296183, - [SMALL_STATE(7408)] = 296197, - [SMALL_STATE(7409)] = 296211, - [SMALL_STATE(7410)] = 296225, - [SMALL_STATE(7411)] = 296239, - [SMALL_STATE(7412)] = 296253, - [SMALL_STATE(7413)] = 296267, - [SMALL_STATE(7414)] = 296281, - [SMALL_STATE(7415)] = 296295, - [SMALL_STATE(7416)] = 296309, - [SMALL_STATE(7417)] = 296323, - [SMALL_STATE(7418)] = 296337, - [SMALL_STATE(7419)] = 296351, - [SMALL_STATE(7420)] = 296365, - [SMALL_STATE(7421)] = 296379, - [SMALL_STATE(7422)] = 296393, - [SMALL_STATE(7423)] = 296407, - [SMALL_STATE(7424)] = 296421, - [SMALL_STATE(7425)] = 296435, - [SMALL_STATE(7426)] = 296449, - [SMALL_STATE(7427)] = 296463, - [SMALL_STATE(7428)] = 296477, - [SMALL_STATE(7429)] = 296491, - [SMALL_STATE(7430)] = 296505, - [SMALL_STATE(7431)] = 296519, - [SMALL_STATE(7432)] = 296533, - [SMALL_STATE(7433)] = 296547, - [SMALL_STATE(7434)] = 296561, - [SMALL_STATE(7435)] = 296575, - [SMALL_STATE(7436)] = 296589, - [SMALL_STATE(7437)] = 296603, - [SMALL_STATE(7438)] = 296617, - [SMALL_STATE(7439)] = 296631, - [SMALL_STATE(7440)] = 296645, - [SMALL_STATE(7441)] = 296659, - [SMALL_STATE(7442)] = 296673, - [SMALL_STATE(7443)] = 296687, - [SMALL_STATE(7444)] = 296701, - [SMALL_STATE(7445)] = 296715, - [SMALL_STATE(7446)] = 296729, - [SMALL_STATE(7447)] = 296743, - [SMALL_STATE(7448)] = 296757, - [SMALL_STATE(7449)] = 296771, - [SMALL_STATE(7450)] = 296785, - [SMALL_STATE(7451)] = 296799, - [SMALL_STATE(7452)] = 296813, - [SMALL_STATE(7453)] = 296827, - [SMALL_STATE(7454)] = 296841, - [SMALL_STATE(7455)] = 296855, - [SMALL_STATE(7456)] = 296869, - [SMALL_STATE(7457)] = 296883, - [SMALL_STATE(7458)] = 296897, - [SMALL_STATE(7459)] = 296911, - [SMALL_STATE(7460)] = 296925, - [SMALL_STATE(7461)] = 296939, - [SMALL_STATE(7462)] = 296953, - [SMALL_STATE(7463)] = 296967, - [SMALL_STATE(7464)] = 296981, - [SMALL_STATE(7465)] = 296995, - [SMALL_STATE(7466)] = 297009, - [SMALL_STATE(7467)] = 297023, - [SMALL_STATE(7468)] = 297037, - [SMALL_STATE(7469)] = 297051, - [SMALL_STATE(7470)] = 297065, - [SMALL_STATE(7471)] = 297079, - [SMALL_STATE(7472)] = 297093, - [SMALL_STATE(7473)] = 297107, - [SMALL_STATE(7474)] = 297121, - [SMALL_STATE(7475)] = 297135, - [SMALL_STATE(7476)] = 297149, - [SMALL_STATE(7477)] = 297163, - [SMALL_STATE(7478)] = 297177, - [SMALL_STATE(7479)] = 297191, - [SMALL_STATE(7480)] = 297205, - [SMALL_STATE(7481)] = 297219, - [SMALL_STATE(7482)] = 297233, - [SMALL_STATE(7483)] = 297247, - [SMALL_STATE(7484)] = 297261, - [SMALL_STATE(7485)] = 297275, - [SMALL_STATE(7486)] = 297289, - [SMALL_STATE(7487)] = 297303, - [SMALL_STATE(7488)] = 297317, - [SMALL_STATE(7489)] = 297331, - [SMALL_STATE(7490)] = 297345, - [SMALL_STATE(7491)] = 297359, - [SMALL_STATE(7492)] = 297373, - [SMALL_STATE(7493)] = 297387, - [SMALL_STATE(7494)] = 297401, - [SMALL_STATE(7495)] = 297415, - [SMALL_STATE(7496)] = 297429, - [SMALL_STATE(7497)] = 297443, - [SMALL_STATE(7498)] = 297457, - [SMALL_STATE(7499)] = 297471, - [SMALL_STATE(7500)] = 297485, - [SMALL_STATE(7501)] = 297499, - [SMALL_STATE(7502)] = 297513, - [SMALL_STATE(7503)] = 297527, - [SMALL_STATE(7504)] = 297541, - [SMALL_STATE(7505)] = 297555, - [SMALL_STATE(7506)] = 297569, - [SMALL_STATE(7507)] = 297583, - [SMALL_STATE(7508)] = 297597, - [SMALL_STATE(7509)] = 297611, - [SMALL_STATE(7510)] = 297625, - [SMALL_STATE(7511)] = 297639, - [SMALL_STATE(7512)] = 297653, - [SMALL_STATE(7513)] = 297667, - [SMALL_STATE(7514)] = 297681, - [SMALL_STATE(7515)] = 297695, - [SMALL_STATE(7516)] = 297709, - [SMALL_STATE(7517)] = 297723, - [SMALL_STATE(7518)] = 297737, - [SMALL_STATE(7519)] = 297751, - [SMALL_STATE(7520)] = 297765, - [SMALL_STATE(7521)] = 297779, - [SMALL_STATE(7522)] = 297793, - [SMALL_STATE(7523)] = 297807, - [SMALL_STATE(7524)] = 297821, - [SMALL_STATE(7525)] = 297835, - [SMALL_STATE(7526)] = 297849, - [SMALL_STATE(7527)] = 297863, - [SMALL_STATE(7528)] = 297877, - [SMALL_STATE(7529)] = 297891, - [SMALL_STATE(7530)] = 297905, - [SMALL_STATE(7531)] = 297919, - [SMALL_STATE(7532)] = 297933, - [SMALL_STATE(7533)] = 297947, - [SMALL_STATE(7534)] = 297961, - [SMALL_STATE(7535)] = 297975, - [SMALL_STATE(7536)] = 297989, - [SMALL_STATE(7537)] = 298003, - [SMALL_STATE(7538)] = 298017, - [SMALL_STATE(7539)] = 298031, - [SMALL_STATE(7540)] = 298045, - [SMALL_STATE(7541)] = 298059, - [SMALL_STATE(7542)] = 298073, - [SMALL_STATE(7543)] = 298087, - [SMALL_STATE(7544)] = 298101, - [SMALL_STATE(7545)] = 298115, - [SMALL_STATE(7546)] = 298129, - [SMALL_STATE(7547)] = 298143, - [SMALL_STATE(7548)] = 298157, - [SMALL_STATE(7549)] = 298171, - [SMALL_STATE(7550)] = 298185, - [SMALL_STATE(7551)] = 298199, - [SMALL_STATE(7552)] = 298213, - [SMALL_STATE(7553)] = 298227, - [SMALL_STATE(7554)] = 298241, - [SMALL_STATE(7555)] = 298255, - [SMALL_STATE(7556)] = 298269, - [SMALL_STATE(7557)] = 298283, - [SMALL_STATE(7558)] = 298297, - [SMALL_STATE(7559)] = 298311, - [SMALL_STATE(7560)] = 298325, - [SMALL_STATE(7561)] = 298339, - [SMALL_STATE(7562)] = 298353, - [SMALL_STATE(7563)] = 298367, - [SMALL_STATE(7564)] = 298381, - [SMALL_STATE(7565)] = 298395, - [SMALL_STATE(7566)] = 298409, - [SMALL_STATE(7567)] = 298423, - [SMALL_STATE(7568)] = 298437, - [SMALL_STATE(7569)] = 298451, - [SMALL_STATE(7570)] = 298465, - [SMALL_STATE(7571)] = 298479, - [SMALL_STATE(7572)] = 298493, - [SMALL_STATE(7573)] = 298507, - [SMALL_STATE(7574)] = 298521, - [SMALL_STATE(7575)] = 298535, - [SMALL_STATE(7576)] = 298549, - [SMALL_STATE(7577)] = 298563, - [SMALL_STATE(7578)] = 298577, - [SMALL_STATE(7579)] = 298591, - [SMALL_STATE(7580)] = 298605, - [SMALL_STATE(7581)] = 298619, - [SMALL_STATE(7582)] = 298633, - [SMALL_STATE(7583)] = 298647, - [SMALL_STATE(7584)] = 298661, - [SMALL_STATE(7585)] = 298675, - [SMALL_STATE(7586)] = 298689, - [SMALL_STATE(7587)] = 298703, - [SMALL_STATE(7588)] = 298717, - [SMALL_STATE(7589)] = 298731, - [SMALL_STATE(7590)] = 298745, - [SMALL_STATE(7591)] = 298759, - [SMALL_STATE(7592)] = 298773, - [SMALL_STATE(7593)] = 298787, - [SMALL_STATE(7594)] = 298801, - [SMALL_STATE(7595)] = 298815, - [SMALL_STATE(7596)] = 298829, - [SMALL_STATE(7597)] = 298843, - [SMALL_STATE(7598)] = 298857, - [SMALL_STATE(7599)] = 298871, - [SMALL_STATE(7600)] = 298885, - [SMALL_STATE(7601)] = 298899, - [SMALL_STATE(7602)] = 298913, - [SMALL_STATE(7603)] = 298927, - [SMALL_STATE(7604)] = 298941, - [SMALL_STATE(7605)] = 298955, - [SMALL_STATE(7606)] = 298969, - [SMALL_STATE(7607)] = 298983, - [SMALL_STATE(7608)] = 298997, - [SMALL_STATE(7609)] = 299011, - [SMALL_STATE(7610)] = 299025, - [SMALL_STATE(7611)] = 299039, - [SMALL_STATE(7612)] = 299053, - [SMALL_STATE(7613)] = 299067, - [SMALL_STATE(7614)] = 299081, - [SMALL_STATE(7615)] = 299095, - [SMALL_STATE(7616)] = 299109, - [SMALL_STATE(7617)] = 299123, - [SMALL_STATE(7618)] = 299137, - [SMALL_STATE(7619)] = 299151, - [SMALL_STATE(7620)] = 299165, - [SMALL_STATE(7621)] = 299179, - [SMALL_STATE(7622)] = 299193, - [SMALL_STATE(7623)] = 299207, - [SMALL_STATE(7624)] = 299221, - [SMALL_STATE(7625)] = 299235, - [SMALL_STATE(7626)] = 299249, - [SMALL_STATE(7627)] = 299263, - [SMALL_STATE(7628)] = 299277, - [SMALL_STATE(7629)] = 299291, - [SMALL_STATE(7630)] = 299305, - [SMALL_STATE(7631)] = 299319, - [SMALL_STATE(7632)] = 299333, - [SMALL_STATE(7633)] = 299347, - [SMALL_STATE(7634)] = 299361, - [SMALL_STATE(7635)] = 299375, - [SMALL_STATE(7636)] = 299389, - [SMALL_STATE(7637)] = 299403, - [SMALL_STATE(7638)] = 299417, - [SMALL_STATE(7639)] = 299431, - [SMALL_STATE(7640)] = 299445, - [SMALL_STATE(7641)] = 299459, - [SMALL_STATE(7642)] = 299473, - [SMALL_STATE(7643)] = 299487, - [SMALL_STATE(7644)] = 299501, - [SMALL_STATE(7645)] = 299515, - [SMALL_STATE(7646)] = 299529, - [SMALL_STATE(7647)] = 299543, - [SMALL_STATE(7648)] = 299557, - [SMALL_STATE(7649)] = 299571, - [SMALL_STATE(7650)] = 299585, - [SMALL_STATE(7651)] = 299599, - [SMALL_STATE(7652)] = 299613, - [SMALL_STATE(7653)] = 299627, - [SMALL_STATE(7654)] = 299641, - [SMALL_STATE(7655)] = 299655, - [SMALL_STATE(7656)] = 299669, - [SMALL_STATE(7657)] = 299683, - [SMALL_STATE(7658)] = 299697, - [SMALL_STATE(7659)] = 299711, - [SMALL_STATE(7660)] = 299725, - [SMALL_STATE(7661)] = 299739, - [SMALL_STATE(7662)] = 299753, - [SMALL_STATE(7663)] = 299767, - [SMALL_STATE(7664)] = 299781, - [SMALL_STATE(7665)] = 299795, - [SMALL_STATE(7666)] = 299809, - [SMALL_STATE(7667)] = 299823, - [SMALL_STATE(7668)] = 299837, - [SMALL_STATE(7669)] = 299851, - [SMALL_STATE(7670)] = 299865, - [SMALL_STATE(7671)] = 299879, - [SMALL_STATE(7672)] = 299893, - [SMALL_STATE(7673)] = 299907, - [SMALL_STATE(7674)] = 299921, - [SMALL_STATE(7675)] = 299935, - [SMALL_STATE(7676)] = 299949, - [SMALL_STATE(7677)] = 299963, - [SMALL_STATE(7678)] = 299977, - [SMALL_STATE(7679)] = 299991, - [SMALL_STATE(7680)] = 300005, - [SMALL_STATE(7681)] = 300019, - [SMALL_STATE(7682)] = 300033, - [SMALL_STATE(7683)] = 300047, - [SMALL_STATE(7684)] = 300061, - [SMALL_STATE(7685)] = 300075, - [SMALL_STATE(7686)] = 300089, - [SMALL_STATE(7687)] = 300103, - [SMALL_STATE(7688)] = 300117, - [SMALL_STATE(7689)] = 300131, - [SMALL_STATE(7690)] = 300145, - [SMALL_STATE(7691)] = 300159, - [SMALL_STATE(7692)] = 300173, - [SMALL_STATE(7693)] = 300187, - [SMALL_STATE(7694)] = 300201, - [SMALL_STATE(7695)] = 300215, - [SMALL_STATE(7696)] = 300229, - [SMALL_STATE(7697)] = 300243, - [SMALL_STATE(7698)] = 300257, - [SMALL_STATE(7699)] = 300271, - [SMALL_STATE(7700)] = 300285, - [SMALL_STATE(7701)] = 300299, - [SMALL_STATE(7702)] = 300313, - [SMALL_STATE(7703)] = 300327, - [SMALL_STATE(7704)] = 300341, - [SMALL_STATE(7705)] = 300355, - [SMALL_STATE(7706)] = 300369, - [SMALL_STATE(7707)] = 300383, - [SMALL_STATE(7708)] = 300397, - [SMALL_STATE(7709)] = 300411, - [SMALL_STATE(7710)] = 300425, - [SMALL_STATE(7711)] = 300439, - [SMALL_STATE(7712)] = 300453, - [SMALL_STATE(7713)] = 300467, - [SMALL_STATE(7714)] = 300481, - [SMALL_STATE(7715)] = 300495, - [SMALL_STATE(7716)] = 300509, - [SMALL_STATE(7717)] = 300523, - [SMALL_STATE(7718)] = 300537, - [SMALL_STATE(7719)] = 300551, - [SMALL_STATE(7720)] = 300565, - [SMALL_STATE(7721)] = 300579, - [SMALL_STATE(7722)] = 300593, - [SMALL_STATE(7723)] = 300607, - [SMALL_STATE(7724)] = 300621, - [SMALL_STATE(7725)] = 300635, - [SMALL_STATE(7726)] = 300649, - [SMALL_STATE(7727)] = 300663, - [SMALL_STATE(7728)] = 300677, - [SMALL_STATE(7729)] = 300691, - [SMALL_STATE(7730)] = 300705, - [SMALL_STATE(7731)] = 300719, - [SMALL_STATE(7732)] = 300733, - [SMALL_STATE(7733)] = 300747, - [SMALL_STATE(7734)] = 300761, - [SMALL_STATE(7735)] = 300775, - [SMALL_STATE(7736)] = 300789, - [SMALL_STATE(7737)] = 300803, - [SMALL_STATE(7738)] = 300817, - [SMALL_STATE(7739)] = 300831, - [SMALL_STATE(7740)] = 300845, - [SMALL_STATE(7741)] = 300859, - [SMALL_STATE(7742)] = 300873, - [SMALL_STATE(7743)] = 300887, - [SMALL_STATE(7744)] = 300901, - [SMALL_STATE(7745)] = 300915, - [SMALL_STATE(7746)] = 300929, - [SMALL_STATE(7747)] = 300943, - [SMALL_STATE(7748)] = 300957, - [SMALL_STATE(7749)] = 300971, - [SMALL_STATE(7750)] = 300985, - [SMALL_STATE(7751)] = 300999, - [SMALL_STATE(7752)] = 301013, - [SMALL_STATE(7753)] = 301027, - [SMALL_STATE(7754)] = 301041, - [SMALL_STATE(7755)] = 301055, - [SMALL_STATE(7756)] = 301069, - [SMALL_STATE(7757)] = 301083, - [SMALL_STATE(7758)] = 301097, - [SMALL_STATE(7759)] = 301111, - [SMALL_STATE(7760)] = 301125, - [SMALL_STATE(7761)] = 301139, - [SMALL_STATE(7762)] = 301153, - [SMALL_STATE(7763)] = 301167, - [SMALL_STATE(7764)] = 301181, - [SMALL_STATE(7765)] = 301195, - [SMALL_STATE(7766)] = 301209, - [SMALL_STATE(7767)] = 301223, - [SMALL_STATE(7768)] = 301237, - [SMALL_STATE(7769)] = 301251, - [SMALL_STATE(7770)] = 301265, - [SMALL_STATE(7771)] = 301279, - [SMALL_STATE(7772)] = 301293, - [SMALL_STATE(7773)] = 301307, - [SMALL_STATE(7774)] = 301321, - [SMALL_STATE(7775)] = 301335, - [SMALL_STATE(7776)] = 301349, - [SMALL_STATE(7777)] = 301363, - [SMALL_STATE(7778)] = 301377, - [SMALL_STATE(7779)] = 301391, - [SMALL_STATE(7780)] = 301405, - [SMALL_STATE(7781)] = 301419, - [SMALL_STATE(7782)] = 301433, - [SMALL_STATE(7783)] = 301447, - [SMALL_STATE(7784)] = 301461, - [SMALL_STATE(7785)] = 301475, - [SMALL_STATE(7786)] = 301489, - [SMALL_STATE(7787)] = 301503, - [SMALL_STATE(7788)] = 301517, - [SMALL_STATE(7789)] = 301531, - [SMALL_STATE(7790)] = 301545, - [SMALL_STATE(7791)] = 301559, - [SMALL_STATE(7792)] = 301573, - [SMALL_STATE(7793)] = 301587, - [SMALL_STATE(7794)] = 301601, - [SMALL_STATE(7795)] = 301615, - [SMALL_STATE(7796)] = 301629, - [SMALL_STATE(7797)] = 301643, - [SMALL_STATE(7798)] = 301657, - [SMALL_STATE(7799)] = 301671, - [SMALL_STATE(7800)] = 301685, - [SMALL_STATE(7801)] = 301699, - [SMALL_STATE(7802)] = 301713, - [SMALL_STATE(7803)] = 301727, - [SMALL_STATE(7804)] = 301741, - [SMALL_STATE(7805)] = 301755, - [SMALL_STATE(7806)] = 301769, - [SMALL_STATE(7807)] = 301783, - [SMALL_STATE(7808)] = 301797, - [SMALL_STATE(7809)] = 301811, - [SMALL_STATE(7810)] = 301825, - [SMALL_STATE(7811)] = 301839, - [SMALL_STATE(7812)] = 301853, - [SMALL_STATE(7813)] = 301867, - [SMALL_STATE(7814)] = 301881, - [SMALL_STATE(7815)] = 301895, - [SMALL_STATE(7816)] = 301909, - [SMALL_STATE(7817)] = 301923, - [SMALL_STATE(7818)] = 301937, - [SMALL_STATE(7819)] = 301951, - [SMALL_STATE(7820)] = 301965, - [SMALL_STATE(7821)] = 301979, - [SMALL_STATE(7822)] = 301993, - [SMALL_STATE(7823)] = 302007, - [SMALL_STATE(7824)] = 302021, - [SMALL_STATE(7825)] = 302035, - [SMALL_STATE(7826)] = 302049, - [SMALL_STATE(7827)] = 302063, - [SMALL_STATE(7828)] = 302077, - [SMALL_STATE(7829)] = 302091, - [SMALL_STATE(7830)] = 302105, - [SMALL_STATE(7831)] = 302119, - [SMALL_STATE(7832)] = 302133, - [SMALL_STATE(7833)] = 302147, - [SMALL_STATE(7834)] = 302161, - [SMALL_STATE(7835)] = 302175, - [SMALL_STATE(7836)] = 302189, - [SMALL_STATE(7837)] = 302203, - [SMALL_STATE(7838)] = 302217, - [SMALL_STATE(7839)] = 302231, - [SMALL_STATE(7840)] = 302245, - [SMALL_STATE(7841)] = 302259, - [SMALL_STATE(7842)] = 302273, - [SMALL_STATE(7843)] = 302287, - [SMALL_STATE(7844)] = 302301, - [SMALL_STATE(7845)] = 302315, - [SMALL_STATE(7846)] = 302329, - [SMALL_STATE(7847)] = 302343, - [SMALL_STATE(7848)] = 302357, - [SMALL_STATE(7849)] = 302371, - [SMALL_STATE(7850)] = 302385, - [SMALL_STATE(7851)] = 302399, - [SMALL_STATE(7852)] = 302413, - [SMALL_STATE(7853)] = 302427, - [SMALL_STATE(7854)] = 302441, - [SMALL_STATE(7855)] = 302455, - [SMALL_STATE(7856)] = 302469, - [SMALL_STATE(7857)] = 302483, - [SMALL_STATE(7858)] = 302497, - [SMALL_STATE(7859)] = 302511, - [SMALL_STATE(7860)] = 302525, - [SMALL_STATE(7861)] = 302539, - [SMALL_STATE(7862)] = 302553, - [SMALL_STATE(7863)] = 302567, - [SMALL_STATE(7864)] = 302581, - [SMALL_STATE(7865)] = 302595, - [SMALL_STATE(7866)] = 302609, - [SMALL_STATE(7867)] = 302623, - [SMALL_STATE(7868)] = 302637, - [SMALL_STATE(7869)] = 302651, - [SMALL_STATE(7870)] = 302665, - [SMALL_STATE(7871)] = 302679, - [SMALL_STATE(7872)] = 302693, - [SMALL_STATE(7873)] = 302707, - [SMALL_STATE(7874)] = 302721, - [SMALL_STATE(7875)] = 302735, - [SMALL_STATE(7876)] = 302749, - [SMALL_STATE(7877)] = 302763, - [SMALL_STATE(7878)] = 302777, - [SMALL_STATE(7879)] = 302791, - [SMALL_STATE(7880)] = 302805, - [SMALL_STATE(7881)] = 302819, - [SMALL_STATE(7882)] = 302833, - [SMALL_STATE(7883)] = 302847, - [SMALL_STATE(7884)] = 302861, - [SMALL_STATE(7885)] = 302875, - [SMALL_STATE(7886)] = 302889, - [SMALL_STATE(7887)] = 302903, - [SMALL_STATE(7888)] = 302917, - [SMALL_STATE(7889)] = 302931, - [SMALL_STATE(7890)] = 302945, - [SMALL_STATE(7891)] = 302959, - [SMALL_STATE(7892)] = 302973, - [SMALL_STATE(7893)] = 302987, - [SMALL_STATE(7894)] = 303001, - [SMALL_STATE(7895)] = 303015, - [SMALL_STATE(7896)] = 303029, - [SMALL_STATE(7897)] = 303043, - [SMALL_STATE(7898)] = 303057, - [SMALL_STATE(7899)] = 303071, - [SMALL_STATE(7900)] = 303085, - [SMALL_STATE(7901)] = 303099, - [SMALL_STATE(7902)] = 303113, - [SMALL_STATE(7903)] = 303127, - [SMALL_STATE(7904)] = 303141, - [SMALL_STATE(7905)] = 303155, - [SMALL_STATE(7906)] = 303169, - [SMALL_STATE(7907)] = 303183, - [SMALL_STATE(7908)] = 303197, - [SMALL_STATE(7909)] = 303211, - [SMALL_STATE(7910)] = 303225, - [SMALL_STATE(7911)] = 303239, - [SMALL_STATE(7912)] = 303253, - [SMALL_STATE(7913)] = 303267, - [SMALL_STATE(7914)] = 303281, - [SMALL_STATE(7915)] = 303295, - [SMALL_STATE(7916)] = 303309, - [SMALL_STATE(7917)] = 303323, - [SMALL_STATE(7918)] = 303337, - [SMALL_STATE(7919)] = 303351, - [SMALL_STATE(7920)] = 303365, - [SMALL_STATE(7921)] = 303379, - [SMALL_STATE(7922)] = 303393, - [SMALL_STATE(7923)] = 303407, - [SMALL_STATE(7924)] = 303421, - [SMALL_STATE(7925)] = 303435, - [SMALL_STATE(7926)] = 303449, - [SMALL_STATE(7927)] = 303463, - [SMALL_STATE(7928)] = 303477, - [SMALL_STATE(7929)] = 303491, - [SMALL_STATE(7930)] = 303505, - [SMALL_STATE(7931)] = 303519, - [SMALL_STATE(7932)] = 303533, - [SMALL_STATE(7933)] = 303547, - [SMALL_STATE(7934)] = 303561, - [SMALL_STATE(7935)] = 303575, - [SMALL_STATE(7936)] = 303589, - [SMALL_STATE(7937)] = 303603, - [SMALL_STATE(7938)] = 303617, - [SMALL_STATE(7939)] = 303631, - [SMALL_STATE(7940)] = 303645, - [SMALL_STATE(7941)] = 303659, - [SMALL_STATE(7942)] = 303673, - [SMALL_STATE(7943)] = 303687, - [SMALL_STATE(7944)] = 303701, - [SMALL_STATE(7945)] = 303715, - [SMALL_STATE(7946)] = 303729, - [SMALL_STATE(7947)] = 303743, - [SMALL_STATE(7948)] = 303757, - [SMALL_STATE(7949)] = 303771, - [SMALL_STATE(7950)] = 303785, - [SMALL_STATE(7951)] = 303799, - [SMALL_STATE(7952)] = 303813, - [SMALL_STATE(7953)] = 303827, - [SMALL_STATE(7954)] = 303841, - [SMALL_STATE(7955)] = 303855, - [SMALL_STATE(7956)] = 303869, - [SMALL_STATE(7957)] = 303883, - [SMALL_STATE(7958)] = 303897, - [SMALL_STATE(7959)] = 303911, - [SMALL_STATE(7960)] = 303925, - [SMALL_STATE(7961)] = 303939, - [SMALL_STATE(7962)] = 303953, - [SMALL_STATE(7963)] = 303967, - [SMALL_STATE(7964)] = 303981, - [SMALL_STATE(7965)] = 303995, - [SMALL_STATE(7966)] = 304009, - [SMALL_STATE(7967)] = 304023, - [SMALL_STATE(7968)] = 304037, - [SMALL_STATE(7969)] = 304051, - [SMALL_STATE(7970)] = 304065, - [SMALL_STATE(7971)] = 304079, - [SMALL_STATE(7972)] = 304093, - [SMALL_STATE(7973)] = 304107, - [SMALL_STATE(7974)] = 304121, - [SMALL_STATE(7975)] = 304135, - [SMALL_STATE(7976)] = 304149, - [SMALL_STATE(7977)] = 304163, - [SMALL_STATE(7978)] = 304177, - [SMALL_STATE(7979)] = 304191, - [SMALL_STATE(7980)] = 304205, - [SMALL_STATE(7981)] = 304219, - [SMALL_STATE(7982)] = 304233, - [SMALL_STATE(7983)] = 304247, - [SMALL_STATE(7984)] = 304261, - [SMALL_STATE(7985)] = 304275, - [SMALL_STATE(7986)] = 304289, - [SMALL_STATE(7987)] = 304303, - [SMALL_STATE(7988)] = 304317, - [SMALL_STATE(7989)] = 304331, - [SMALL_STATE(7990)] = 304345, - [SMALL_STATE(7991)] = 304359, - [SMALL_STATE(7992)] = 304373, - [SMALL_STATE(7993)] = 304387, - [SMALL_STATE(7994)] = 304401, - [SMALL_STATE(7995)] = 304415, - [SMALL_STATE(7996)] = 304429, - [SMALL_STATE(7997)] = 304443, - [SMALL_STATE(7998)] = 304457, - [SMALL_STATE(7999)] = 304471, - [SMALL_STATE(8000)] = 304485, - [SMALL_STATE(8001)] = 304499, - [SMALL_STATE(8002)] = 304513, - [SMALL_STATE(8003)] = 304527, - [SMALL_STATE(8004)] = 304541, - [SMALL_STATE(8005)] = 304555, - [SMALL_STATE(8006)] = 304569, - [SMALL_STATE(8007)] = 304583, - [SMALL_STATE(8008)] = 304597, - [SMALL_STATE(8009)] = 304611, - [SMALL_STATE(8010)] = 304625, - [SMALL_STATE(8011)] = 304639, - [SMALL_STATE(8012)] = 304653, - [SMALL_STATE(8013)] = 304667, - [SMALL_STATE(8014)] = 304681, - [SMALL_STATE(8015)] = 304695, - [SMALL_STATE(8016)] = 304709, - [SMALL_STATE(8017)] = 304723, - [SMALL_STATE(8018)] = 304737, - [SMALL_STATE(8019)] = 304751, - [SMALL_STATE(8020)] = 304765, - [SMALL_STATE(8021)] = 304779, - [SMALL_STATE(8022)] = 304793, - [SMALL_STATE(8023)] = 304807, - [SMALL_STATE(8024)] = 304821, - [SMALL_STATE(8025)] = 304835, - [SMALL_STATE(8026)] = 304849, - [SMALL_STATE(8027)] = 304863, - [SMALL_STATE(8028)] = 304877, - [SMALL_STATE(8029)] = 304891, - [SMALL_STATE(8030)] = 304905, - [SMALL_STATE(8031)] = 304919, - [SMALL_STATE(8032)] = 304933, - [SMALL_STATE(8033)] = 304947, - [SMALL_STATE(8034)] = 304961, - [SMALL_STATE(8035)] = 304975, - [SMALL_STATE(8036)] = 304989, - [SMALL_STATE(8037)] = 305003, - [SMALL_STATE(8038)] = 305017, - [SMALL_STATE(8039)] = 305031, - [SMALL_STATE(8040)] = 305045, - [SMALL_STATE(8041)] = 305059, - [SMALL_STATE(8042)] = 305073, - [SMALL_STATE(8043)] = 305087, - [SMALL_STATE(8044)] = 305101, - [SMALL_STATE(8045)] = 305115, - [SMALL_STATE(8046)] = 305129, - [SMALL_STATE(8047)] = 305143, - [SMALL_STATE(8048)] = 305157, - [SMALL_STATE(8049)] = 305171, - [SMALL_STATE(8050)] = 305185, - [SMALL_STATE(8051)] = 305199, - [SMALL_STATE(8052)] = 305213, - [SMALL_STATE(8053)] = 305227, - [SMALL_STATE(8054)] = 305241, - [SMALL_STATE(8055)] = 305255, - [SMALL_STATE(8056)] = 305269, - [SMALL_STATE(8057)] = 305283, - [SMALL_STATE(8058)] = 305297, - [SMALL_STATE(8059)] = 305311, - [SMALL_STATE(8060)] = 305325, - [SMALL_STATE(8061)] = 305339, - [SMALL_STATE(8062)] = 305353, - [SMALL_STATE(8063)] = 305367, - [SMALL_STATE(8064)] = 305381, - [SMALL_STATE(8065)] = 305395, - [SMALL_STATE(8066)] = 305409, - [SMALL_STATE(8067)] = 305423, - [SMALL_STATE(8068)] = 305437, - [SMALL_STATE(8069)] = 305451, - [SMALL_STATE(8070)] = 305465, - [SMALL_STATE(8071)] = 305479, - [SMALL_STATE(8072)] = 305493, - [SMALL_STATE(8073)] = 305507, - [SMALL_STATE(8074)] = 305521, - [SMALL_STATE(8075)] = 305535, - [SMALL_STATE(8076)] = 305549, - [SMALL_STATE(8077)] = 305563, - [SMALL_STATE(8078)] = 305577, - [SMALL_STATE(8079)] = 305591, - [SMALL_STATE(8080)] = 305605, - [SMALL_STATE(8081)] = 305619, - [SMALL_STATE(8082)] = 305633, - [SMALL_STATE(8083)] = 305647, - [SMALL_STATE(8084)] = 305661, - [SMALL_STATE(8085)] = 305675, - [SMALL_STATE(8086)] = 305689, - [SMALL_STATE(8087)] = 305703, - [SMALL_STATE(8088)] = 305717, - [SMALL_STATE(8089)] = 305731, - [SMALL_STATE(8090)] = 305745, - [SMALL_STATE(8091)] = 305759, - [SMALL_STATE(8092)] = 305773, - [SMALL_STATE(8093)] = 305787, - [SMALL_STATE(8094)] = 305801, - [SMALL_STATE(8095)] = 305815, - [SMALL_STATE(8096)] = 305829, - [SMALL_STATE(8097)] = 305843, - [SMALL_STATE(8098)] = 305857, - [SMALL_STATE(8099)] = 305871, - [SMALL_STATE(8100)] = 305885, - [SMALL_STATE(8101)] = 305899, - [SMALL_STATE(8102)] = 305913, - [SMALL_STATE(8103)] = 305927, - [SMALL_STATE(8104)] = 305941, - [SMALL_STATE(8105)] = 305955, - [SMALL_STATE(8106)] = 305969, - [SMALL_STATE(8107)] = 305983, - [SMALL_STATE(8108)] = 305997, - [SMALL_STATE(8109)] = 306011, - [SMALL_STATE(8110)] = 306025, - [SMALL_STATE(8111)] = 306039, - [SMALL_STATE(8112)] = 306053, - [SMALL_STATE(8113)] = 306067, - [SMALL_STATE(8114)] = 306081, - [SMALL_STATE(8115)] = 306095, - [SMALL_STATE(8116)] = 306109, - [SMALL_STATE(8117)] = 306123, - [SMALL_STATE(8118)] = 306137, - [SMALL_STATE(8119)] = 306151, - [SMALL_STATE(8120)] = 306165, - [SMALL_STATE(8121)] = 306179, - [SMALL_STATE(8122)] = 306193, - [SMALL_STATE(8123)] = 306207, - [SMALL_STATE(8124)] = 306221, - [SMALL_STATE(8125)] = 306235, - [SMALL_STATE(8126)] = 306249, - [SMALL_STATE(8127)] = 306263, - [SMALL_STATE(8128)] = 306277, - [SMALL_STATE(8129)] = 306291, - [SMALL_STATE(8130)] = 306305, - [SMALL_STATE(8131)] = 306319, - [SMALL_STATE(8132)] = 306333, - [SMALL_STATE(8133)] = 306347, - [SMALL_STATE(8134)] = 306361, - [SMALL_STATE(8135)] = 306375, - [SMALL_STATE(8136)] = 306389, - [SMALL_STATE(8137)] = 306403, - [SMALL_STATE(8138)] = 306417, - [SMALL_STATE(8139)] = 306431, - [SMALL_STATE(8140)] = 306445, - [SMALL_STATE(8141)] = 306459, - [SMALL_STATE(8142)] = 306473, - [SMALL_STATE(8143)] = 306487, - [SMALL_STATE(8144)] = 306501, - [SMALL_STATE(8145)] = 306515, - [SMALL_STATE(8146)] = 306529, - [SMALL_STATE(8147)] = 306543, - [SMALL_STATE(8148)] = 306557, - [SMALL_STATE(8149)] = 306571, - [SMALL_STATE(8150)] = 306585, - [SMALL_STATE(8151)] = 306599, - [SMALL_STATE(8152)] = 306613, - [SMALL_STATE(8153)] = 306627, - [SMALL_STATE(8154)] = 306641, - [SMALL_STATE(8155)] = 306655, - [SMALL_STATE(8156)] = 306669, - [SMALL_STATE(8157)] = 306683, - [SMALL_STATE(8158)] = 306697, - [SMALL_STATE(8159)] = 306711, - [SMALL_STATE(8160)] = 306725, - [SMALL_STATE(8161)] = 306739, - [SMALL_STATE(8162)] = 306753, - [SMALL_STATE(8163)] = 306767, - [SMALL_STATE(8164)] = 306781, - [SMALL_STATE(8165)] = 306795, - [SMALL_STATE(8166)] = 306809, - [SMALL_STATE(8167)] = 306823, - [SMALL_STATE(8168)] = 306837, - [SMALL_STATE(8169)] = 306851, - [SMALL_STATE(8170)] = 306865, - [SMALL_STATE(8171)] = 306879, - [SMALL_STATE(8172)] = 306893, - [SMALL_STATE(8173)] = 306907, - [SMALL_STATE(8174)] = 306921, - [SMALL_STATE(8175)] = 306935, - [SMALL_STATE(8176)] = 306949, - [SMALL_STATE(8177)] = 306963, - [SMALL_STATE(8178)] = 306977, - [SMALL_STATE(8179)] = 306991, - [SMALL_STATE(8180)] = 307005, - [SMALL_STATE(8181)] = 307019, - [SMALL_STATE(8182)] = 307033, - [SMALL_STATE(8183)] = 307047, - [SMALL_STATE(8184)] = 307061, - [SMALL_STATE(8185)] = 307075, - [SMALL_STATE(8186)] = 307089, - [SMALL_STATE(8187)] = 307103, - [SMALL_STATE(8188)] = 307117, - [SMALL_STATE(8189)] = 307131, - [SMALL_STATE(8190)] = 307145, - [SMALL_STATE(8191)] = 307159, - [SMALL_STATE(8192)] = 307173, - [SMALL_STATE(8193)] = 307187, - [SMALL_STATE(8194)] = 307201, - [SMALL_STATE(8195)] = 307215, - [SMALL_STATE(8196)] = 307229, - [SMALL_STATE(8197)] = 307243, - [SMALL_STATE(8198)] = 307257, - [SMALL_STATE(8199)] = 307271, - [SMALL_STATE(8200)] = 307285, - [SMALL_STATE(8201)] = 307299, - [SMALL_STATE(8202)] = 307313, - [SMALL_STATE(8203)] = 307327, - [SMALL_STATE(8204)] = 307341, - [SMALL_STATE(8205)] = 307355, - [SMALL_STATE(8206)] = 307369, - [SMALL_STATE(8207)] = 307383, - [SMALL_STATE(8208)] = 307397, - [SMALL_STATE(8209)] = 307411, - [SMALL_STATE(8210)] = 307425, - [SMALL_STATE(8211)] = 307439, - [SMALL_STATE(8212)] = 307453, - [SMALL_STATE(8213)] = 307467, - [SMALL_STATE(8214)] = 307481, - [SMALL_STATE(8215)] = 307495, - [SMALL_STATE(8216)] = 307509, - [SMALL_STATE(8217)] = 307523, - [SMALL_STATE(8218)] = 307537, - [SMALL_STATE(8219)] = 307551, - [SMALL_STATE(8220)] = 307565, - [SMALL_STATE(8221)] = 307579, - [SMALL_STATE(8222)] = 307593, - [SMALL_STATE(8223)] = 307607, - [SMALL_STATE(8224)] = 307621, - [SMALL_STATE(8225)] = 307635, - [SMALL_STATE(8226)] = 307649, - [SMALL_STATE(8227)] = 307663, - [SMALL_STATE(8228)] = 307677, - [SMALL_STATE(8229)] = 307691, - [SMALL_STATE(8230)] = 307705, - [SMALL_STATE(8231)] = 307719, - [SMALL_STATE(8232)] = 307733, - [SMALL_STATE(8233)] = 307747, - [SMALL_STATE(8234)] = 307761, - [SMALL_STATE(8235)] = 307775, - [SMALL_STATE(8236)] = 307789, - [SMALL_STATE(8237)] = 307803, - [SMALL_STATE(8238)] = 307817, - [SMALL_STATE(8239)] = 307831, - [SMALL_STATE(8240)] = 307845, - [SMALL_STATE(8241)] = 307859, - [SMALL_STATE(8242)] = 307873, - [SMALL_STATE(8243)] = 307887, - [SMALL_STATE(8244)] = 307901, - [SMALL_STATE(8245)] = 307915, - [SMALL_STATE(8246)] = 307929, - [SMALL_STATE(8247)] = 307943, - [SMALL_STATE(8248)] = 307957, - [SMALL_STATE(8249)] = 307971, - [SMALL_STATE(8250)] = 307985, - [SMALL_STATE(8251)] = 307999, - [SMALL_STATE(8252)] = 308013, - [SMALL_STATE(8253)] = 308027, - [SMALL_STATE(8254)] = 308041, - [SMALL_STATE(8255)] = 308055, - [SMALL_STATE(8256)] = 308069, - [SMALL_STATE(8257)] = 308083, - [SMALL_STATE(8258)] = 308097, - [SMALL_STATE(8259)] = 308111, - [SMALL_STATE(8260)] = 308125, - [SMALL_STATE(8261)] = 308139, - [SMALL_STATE(8262)] = 308153, - [SMALL_STATE(8263)] = 308167, - [SMALL_STATE(8264)] = 308181, - [SMALL_STATE(8265)] = 308195, - [SMALL_STATE(8266)] = 308209, - [SMALL_STATE(8267)] = 308223, - [SMALL_STATE(8268)] = 308237, - [SMALL_STATE(8269)] = 308251, - [SMALL_STATE(8270)] = 308265, - [SMALL_STATE(8271)] = 308279, - [SMALL_STATE(8272)] = 308293, - [SMALL_STATE(8273)] = 308307, - [SMALL_STATE(8274)] = 308321, - [SMALL_STATE(8275)] = 308335, - [SMALL_STATE(8276)] = 308349, - [SMALL_STATE(8277)] = 308363, - [SMALL_STATE(8278)] = 308377, - [SMALL_STATE(8279)] = 308391, - [SMALL_STATE(8280)] = 308405, - [SMALL_STATE(8281)] = 308419, - [SMALL_STATE(8282)] = 308433, - [SMALL_STATE(8283)] = 308447, - [SMALL_STATE(8284)] = 308461, - [SMALL_STATE(8285)] = 308475, - [SMALL_STATE(8286)] = 308489, - [SMALL_STATE(8287)] = 308503, - [SMALL_STATE(8288)] = 308517, - [SMALL_STATE(8289)] = 308531, - [SMALL_STATE(8290)] = 308545, - [SMALL_STATE(8291)] = 308559, - [SMALL_STATE(8292)] = 308573, - [SMALL_STATE(8293)] = 308587, - [SMALL_STATE(8294)] = 308601, - [SMALL_STATE(8295)] = 308615, - [SMALL_STATE(8296)] = 308629, - [SMALL_STATE(8297)] = 308643, - [SMALL_STATE(8298)] = 308657, - [SMALL_STATE(8299)] = 308671, - [SMALL_STATE(8300)] = 308685, - [SMALL_STATE(8301)] = 308699, - [SMALL_STATE(8302)] = 308713, - [SMALL_STATE(8303)] = 308727, - [SMALL_STATE(8304)] = 308741, - [SMALL_STATE(8305)] = 308755, - [SMALL_STATE(8306)] = 308769, - [SMALL_STATE(8307)] = 308783, - [SMALL_STATE(8308)] = 308797, - [SMALL_STATE(8309)] = 308811, - [SMALL_STATE(8310)] = 308825, - [SMALL_STATE(8311)] = 308839, - [SMALL_STATE(8312)] = 308853, - [SMALL_STATE(8313)] = 308867, - [SMALL_STATE(8314)] = 308881, - [SMALL_STATE(8315)] = 308895, - [SMALL_STATE(8316)] = 308909, - [SMALL_STATE(8317)] = 308923, - [SMALL_STATE(8318)] = 308937, - [SMALL_STATE(8319)] = 308951, - [SMALL_STATE(8320)] = 308965, - [SMALL_STATE(8321)] = 308979, - [SMALL_STATE(8322)] = 308993, - [SMALL_STATE(8323)] = 309007, - [SMALL_STATE(8324)] = 309021, - [SMALL_STATE(8325)] = 309035, - [SMALL_STATE(8326)] = 309049, - [SMALL_STATE(8327)] = 309063, - [SMALL_STATE(8328)] = 309077, - [SMALL_STATE(8329)] = 309091, - [SMALL_STATE(8330)] = 309105, - [SMALL_STATE(8331)] = 309119, - [SMALL_STATE(8332)] = 309133, - [SMALL_STATE(8333)] = 309147, - [SMALL_STATE(8334)] = 309161, - [SMALL_STATE(8335)] = 309175, - [SMALL_STATE(8336)] = 309189, - [SMALL_STATE(8337)] = 309203, - [SMALL_STATE(8338)] = 309217, - [SMALL_STATE(8339)] = 309231, - [SMALL_STATE(8340)] = 309245, - [SMALL_STATE(8341)] = 309259, - [SMALL_STATE(8342)] = 309273, - [SMALL_STATE(8343)] = 309287, - [SMALL_STATE(8344)] = 309301, - [SMALL_STATE(8345)] = 309315, - [SMALL_STATE(8346)] = 309329, - [SMALL_STATE(8347)] = 309343, - [SMALL_STATE(8348)] = 309357, - [SMALL_STATE(8349)] = 309371, - [SMALL_STATE(8350)] = 309385, - [SMALL_STATE(8351)] = 309399, - [SMALL_STATE(8352)] = 309413, - [SMALL_STATE(8353)] = 309427, - [SMALL_STATE(8354)] = 309441, - [SMALL_STATE(8355)] = 309455, - [SMALL_STATE(8356)] = 309469, - [SMALL_STATE(8357)] = 309483, - [SMALL_STATE(8358)] = 309497, - [SMALL_STATE(8359)] = 309511, - [SMALL_STATE(8360)] = 309525, - [SMALL_STATE(8361)] = 309539, - [SMALL_STATE(8362)] = 309553, - [SMALL_STATE(8363)] = 309567, - [SMALL_STATE(8364)] = 309581, - [SMALL_STATE(8365)] = 309595, - [SMALL_STATE(8366)] = 309609, - [SMALL_STATE(8367)] = 309623, - [SMALL_STATE(8368)] = 309637, - [SMALL_STATE(8369)] = 309651, - [SMALL_STATE(8370)] = 309665, - [SMALL_STATE(8371)] = 309679, - [SMALL_STATE(8372)] = 309693, - [SMALL_STATE(8373)] = 309707, - [SMALL_STATE(8374)] = 309721, - [SMALL_STATE(8375)] = 309735, - [SMALL_STATE(8376)] = 309749, - [SMALL_STATE(8377)] = 309763, - [SMALL_STATE(8378)] = 309777, - [SMALL_STATE(8379)] = 309791, - [SMALL_STATE(8380)] = 309805, - [SMALL_STATE(8381)] = 309819, - [SMALL_STATE(8382)] = 309833, - [SMALL_STATE(8383)] = 309847, - [SMALL_STATE(8384)] = 309861, - [SMALL_STATE(8385)] = 309875, - [SMALL_STATE(8386)] = 309889, - [SMALL_STATE(8387)] = 309903, - [SMALL_STATE(8388)] = 309917, - [SMALL_STATE(8389)] = 309931, - [SMALL_STATE(8390)] = 309945, - [SMALL_STATE(8391)] = 309959, - [SMALL_STATE(8392)] = 309973, - [SMALL_STATE(8393)] = 309987, - [SMALL_STATE(8394)] = 310001, - [SMALL_STATE(8395)] = 310015, - [SMALL_STATE(8396)] = 310029, - [SMALL_STATE(8397)] = 310043, - [SMALL_STATE(8398)] = 310057, - [SMALL_STATE(8399)] = 310071, - [SMALL_STATE(8400)] = 310085, - [SMALL_STATE(8401)] = 310099, - [SMALL_STATE(8402)] = 310113, - [SMALL_STATE(8403)] = 310127, - [SMALL_STATE(8404)] = 310141, - [SMALL_STATE(8405)] = 310155, - [SMALL_STATE(8406)] = 310169, - [SMALL_STATE(8407)] = 310183, - [SMALL_STATE(8408)] = 310197, - [SMALL_STATE(8409)] = 310211, - [SMALL_STATE(8410)] = 310225, - [SMALL_STATE(8411)] = 310239, - [SMALL_STATE(8412)] = 310253, - [SMALL_STATE(8413)] = 310267, - [SMALL_STATE(8414)] = 310281, - [SMALL_STATE(8415)] = 310295, - [SMALL_STATE(8416)] = 310309, - [SMALL_STATE(8417)] = 310323, - [SMALL_STATE(8418)] = 310337, - [SMALL_STATE(8419)] = 310351, - [SMALL_STATE(8420)] = 310365, - [SMALL_STATE(8421)] = 310379, - [SMALL_STATE(8422)] = 310393, - [SMALL_STATE(8423)] = 310407, - [SMALL_STATE(8424)] = 310421, - [SMALL_STATE(8425)] = 310435, - [SMALL_STATE(8426)] = 310449, - [SMALL_STATE(8427)] = 310463, - [SMALL_STATE(8428)] = 310477, - [SMALL_STATE(8429)] = 310491, - [SMALL_STATE(8430)] = 310505, - [SMALL_STATE(8431)] = 310519, - [SMALL_STATE(8432)] = 310533, - [SMALL_STATE(8433)] = 310547, - [SMALL_STATE(8434)] = 310561, - [SMALL_STATE(8435)] = 310575, - [SMALL_STATE(8436)] = 310589, - [SMALL_STATE(8437)] = 310603, - [SMALL_STATE(8438)] = 310617, - [SMALL_STATE(8439)] = 310631, - [SMALL_STATE(8440)] = 310645, - [SMALL_STATE(8441)] = 310659, - [SMALL_STATE(8442)] = 310673, - [SMALL_STATE(8443)] = 310687, - [SMALL_STATE(8444)] = 310701, - [SMALL_STATE(8445)] = 310715, - [SMALL_STATE(8446)] = 310729, - [SMALL_STATE(8447)] = 310743, - [SMALL_STATE(8448)] = 310757, - [SMALL_STATE(8449)] = 310771, - [SMALL_STATE(8450)] = 310785, - [SMALL_STATE(8451)] = 310799, - [SMALL_STATE(8452)] = 310813, - [SMALL_STATE(8453)] = 310827, - [SMALL_STATE(8454)] = 310841, - [SMALL_STATE(8455)] = 310855, - [SMALL_STATE(8456)] = 310869, - [SMALL_STATE(8457)] = 310883, - [SMALL_STATE(8458)] = 310897, - [SMALL_STATE(8459)] = 310911, - [SMALL_STATE(8460)] = 310925, - [SMALL_STATE(8461)] = 310939, - [SMALL_STATE(8462)] = 310953, - [SMALL_STATE(8463)] = 310967, - [SMALL_STATE(8464)] = 310981, - [SMALL_STATE(8465)] = 310995, - [SMALL_STATE(8466)] = 311009, - [SMALL_STATE(8467)] = 311023, - [SMALL_STATE(8468)] = 311037, - [SMALL_STATE(8469)] = 311051, - [SMALL_STATE(8470)] = 311065, - [SMALL_STATE(8471)] = 311079, - [SMALL_STATE(8472)] = 311093, - [SMALL_STATE(8473)] = 311107, - [SMALL_STATE(8474)] = 311121, - [SMALL_STATE(8475)] = 311135, - [SMALL_STATE(8476)] = 311149, - [SMALL_STATE(8477)] = 311163, - [SMALL_STATE(8478)] = 311177, - [SMALL_STATE(8479)] = 311191, - [SMALL_STATE(8480)] = 311205, - [SMALL_STATE(8481)] = 311219, - [SMALL_STATE(8482)] = 311233, - [SMALL_STATE(8483)] = 311247, - [SMALL_STATE(8484)] = 311261, - [SMALL_STATE(8485)] = 311275, - [SMALL_STATE(8486)] = 311289, - [SMALL_STATE(8487)] = 311303, - [SMALL_STATE(8488)] = 311317, - [SMALL_STATE(8489)] = 311331, - [SMALL_STATE(8490)] = 311345, - [SMALL_STATE(8491)] = 311359, - [SMALL_STATE(8492)] = 311373, - [SMALL_STATE(8493)] = 311387, - [SMALL_STATE(8494)] = 311401, - [SMALL_STATE(8495)] = 311415, - [SMALL_STATE(8496)] = 311429, - [SMALL_STATE(8497)] = 311443, - [SMALL_STATE(8498)] = 311457, - [SMALL_STATE(8499)] = 311471, - [SMALL_STATE(8500)] = 311485, - [SMALL_STATE(8501)] = 311499, - [SMALL_STATE(8502)] = 311513, - [SMALL_STATE(8503)] = 311527, - [SMALL_STATE(8504)] = 311541, - [SMALL_STATE(8505)] = 311555, - [SMALL_STATE(8506)] = 311569, - [SMALL_STATE(8507)] = 311583, - [SMALL_STATE(8508)] = 311597, - [SMALL_STATE(8509)] = 311611, - [SMALL_STATE(8510)] = 311625, - [SMALL_STATE(8511)] = 311639, - [SMALL_STATE(8512)] = 311653, - [SMALL_STATE(8513)] = 311667, - [SMALL_STATE(8514)] = 311681, - [SMALL_STATE(8515)] = 311695, - [SMALL_STATE(8516)] = 311709, - [SMALL_STATE(8517)] = 311723, - [SMALL_STATE(8518)] = 311737, - [SMALL_STATE(8519)] = 311751, - [SMALL_STATE(8520)] = 311765, - [SMALL_STATE(8521)] = 311779, - [SMALL_STATE(8522)] = 311793, - [SMALL_STATE(8523)] = 311807, - [SMALL_STATE(8524)] = 311821, - [SMALL_STATE(8525)] = 311835, - [SMALL_STATE(8526)] = 311849, - [SMALL_STATE(8527)] = 311863, - [SMALL_STATE(8528)] = 311877, - [SMALL_STATE(8529)] = 311891, - [SMALL_STATE(8530)] = 311905, - [SMALL_STATE(8531)] = 311919, - [SMALL_STATE(8532)] = 311933, - [SMALL_STATE(8533)] = 311947, - [SMALL_STATE(8534)] = 311961, - [SMALL_STATE(8535)] = 311975, - [SMALL_STATE(8536)] = 311989, - [SMALL_STATE(8537)] = 312003, - [SMALL_STATE(8538)] = 312017, - [SMALL_STATE(8539)] = 312031, - [SMALL_STATE(8540)] = 312045, - [SMALL_STATE(8541)] = 312059, - [SMALL_STATE(8542)] = 312073, - [SMALL_STATE(8543)] = 312087, - [SMALL_STATE(8544)] = 312101, - [SMALL_STATE(8545)] = 312115, - [SMALL_STATE(8546)] = 312129, - [SMALL_STATE(8547)] = 312143, - [SMALL_STATE(8548)] = 312157, - [SMALL_STATE(8549)] = 312171, - [SMALL_STATE(8550)] = 312185, - [SMALL_STATE(8551)] = 312199, - [SMALL_STATE(8552)] = 312213, - [SMALL_STATE(8553)] = 312227, - [SMALL_STATE(8554)] = 312241, - [SMALL_STATE(8555)] = 312255, - [SMALL_STATE(8556)] = 312269, - [SMALL_STATE(8557)] = 312283, - [SMALL_STATE(8558)] = 312297, - [SMALL_STATE(8559)] = 312311, - [SMALL_STATE(8560)] = 312325, - [SMALL_STATE(8561)] = 312339, - [SMALL_STATE(8562)] = 312353, - [SMALL_STATE(8563)] = 312367, - [SMALL_STATE(8564)] = 312381, - [SMALL_STATE(8565)] = 312395, - [SMALL_STATE(8566)] = 312409, - [SMALL_STATE(8567)] = 312423, - [SMALL_STATE(8568)] = 312437, - [SMALL_STATE(8569)] = 312451, - [SMALL_STATE(8570)] = 312465, - [SMALL_STATE(8571)] = 312479, - [SMALL_STATE(8572)] = 312493, - [SMALL_STATE(8573)] = 312507, - [SMALL_STATE(8574)] = 312521, - [SMALL_STATE(8575)] = 312535, - [SMALL_STATE(8576)] = 312549, - [SMALL_STATE(8577)] = 312563, - [SMALL_STATE(8578)] = 312577, - [SMALL_STATE(8579)] = 312591, - [SMALL_STATE(8580)] = 312605, - [SMALL_STATE(8581)] = 312619, - [SMALL_STATE(8582)] = 312633, - [SMALL_STATE(8583)] = 312647, - [SMALL_STATE(8584)] = 312661, - [SMALL_STATE(8585)] = 312675, - [SMALL_STATE(8586)] = 312689, - [SMALL_STATE(8587)] = 312703, - [SMALL_STATE(8588)] = 312717, - [SMALL_STATE(8589)] = 312731, - [SMALL_STATE(8590)] = 312745, - [SMALL_STATE(8591)] = 312759, - [SMALL_STATE(8592)] = 312773, - [SMALL_STATE(8593)] = 312787, - [SMALL_STATE(8594)] = 312801, - [SMALL_STATE(8595)] = 312815, - [SMALL_STATE(8596)] = 312829, - [SMALL_STATE(8597)] = 312843, - [SMALL_STATE(8598)] = 312857, - [SMALL_STATE(8599)] = 312871, - [SMALL_STATE(8600)] = 312885, - [SMALL_STATE(8601)] = 312899, - [SMALL_STATE(8602)] = 312913, - [SMALL_STATE(8603)] = 312927, - [SMALL_STATE(8604)] = 312941, - [SMALL_STATE(8605)] = 312955, - [SMALL_STATE(8606)] = 312969, - [SMALL_STATE(8607)] = 312983, - [SMALL_STATE(8608)] = 312997, - [SMALL_STATE(8609)] = 313011, - [SMALL_STATE(8610)] = 313025, - [SMALL_STATE(8611)] = 313039, - [SMALL_STATE(8612)] = 313053, - [SMALL_STATE(8613)] = 313067, - [SMALL_STATE(8614)] = 313081, - [SMALL_STATE(8615)] = 313095, - [SMALL_STATE(8616)] = 313109, - [SMALL_STATE(8617)] = 313123, - [SMALL_STATE(8618)] = 313137, - [SMALL_STATE(8619)] = 313151, - [SMALL_STATE(8620)] = 313165, - [SMALL_STATE(8621)] = 313179, - [SMALL_STATE(8622)] = 313193, - [SMALL_STATE(8623)] = 313207, - [SMALL_STATE(8624)] = 313221, - [SMALL_STATE(8625)] = 313235, - [SMALL_STATE(8626)] = 313249, - [SMALL_STATE(8627)] = 313263, - [SMALL_STATE(8628)] = 313277, - [SMALL_STATE(8629)] = 313291, - [SMALL_STATE(8630)] = 313305, - [SMALL_STATE(8631)] = 313309, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6430), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [35] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, .production_id = 28), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [39] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 2, .production_id = 28), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6619), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6912), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8630), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), - [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 3), - [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 3), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 2), - [439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 2), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 4), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 4), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 1), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 1), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8308), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8523), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8306), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8306), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8296), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8313), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8294), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8294), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8293), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8594), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8586), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7463), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8572), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8525), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8184), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8578), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8529), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8287), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8590), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8028), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7962), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8576), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8581), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8530), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8592), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8409), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7914), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8564), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8275), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8189), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8582), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8099), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8629), - [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7025), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, .production_id = 51), - [933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, .production_id = 51), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7973), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then_clause, 2), - [971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_then_clause, 2), - [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_expression, 3, .production_id = 49), - [975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_expression, 3, .production_id = 49), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_expression, 3, .production_id = 52), - [979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_expression, 3, .production_id = 52), - [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_expression, 2, .production_id = 25), - [983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sign_expression, 2, .production_id = 25), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_expression, 3, .production_id = 47), - [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_expression, 3, .production_id = 47), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_product_expression, 3, .production_id = 49), - [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_product_expression, 3, .production_id = 49), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_expression_ext, 1), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sequence_expression_ext, 1), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8142), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [1039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7304), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7537), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7907), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [1061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2, .production_id = 27), - [1063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2, .production_id = 27), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1227), - [1068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7304), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(53), - [1076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), - [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(864), - [1081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1243), - [1084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1677), - [1087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4305), - [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(862), - [1093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5871), - [1096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6291), - [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(245), - [1102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1177), - [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6713), - [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6416), - [1111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1233), - [1114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5644), - [1117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4848), - [1120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1857), - [1123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1176), - [1126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7322), - [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1306), - [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7343), - [1135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(58), - [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(792), - [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1346), - [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1648), - [1147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4306), - [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(794), - [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5960), - [1156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6288), - [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(290), - [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1395), - [1165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6619), - [1168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6402), - [1171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1350), - [1174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5624), - [1177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4831), - [1180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1932), - [1183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1255), - [1186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6944), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1294), - [1212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7133), - [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(52), - [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(799), - [1221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1384), - [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1669), - [1227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4347), - [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(824), - [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5913), - [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6137), - [1239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(287), - [1242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1356), - [1245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6600), - [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6393), - [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1389), - [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5616), - [1257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4846), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1909), - [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1304), - [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7184), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [1271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [1289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1456), - [1292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7082), - [1295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(73), - [1298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(839), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1452), - [1304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1663), - [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4325), - [1310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(847), - [1313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5867), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6203), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(244), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1496), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6781), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6433), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1492), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5597), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4832), - [1340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2019), - [1343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1435), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7052), - [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), - [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8010), - [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), - [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8577), - [1395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2356), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [1423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [1449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [1455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), - [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [1493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), - [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [1499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [1513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [1525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [1531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [1539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [1545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [1547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [1549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [1551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [1557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [1573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [1575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [1577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [1591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [1595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [1597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [1599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [1607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [1631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [1633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [1635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 33), - [1645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [1651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_expression, 3, .production_id = 24), - [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 4, .production_id = 57), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), - [1659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [1663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [1667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [1673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [1677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [1681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [1685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [1693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [1707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [1709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [1713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7089), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8554), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), - [1743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [1759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [1765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8574), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8315), - [1771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [1773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [1779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [1781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2724), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [1791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8547), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [1827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [1829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6255), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8023), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8562), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7886), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), - [1901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1861), - [1904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6936), - [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(54), - [1910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(850), - [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1995), - [1916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1656), - [1919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4354), - [1922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(853), - [1925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5939), - [1928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6145), - [1931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(246), - [1934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1869), - [1937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6601), - [1940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6394), - [1943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1839), - [1946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5617), - [1949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4844), - [1952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1918), - [1955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1990), - [1958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7122), - [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2089), - [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7009), - [1967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(74), - [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(843), - [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2147), - [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1668), - [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4353), - [1982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(836), - [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5920), - [1988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6187), - [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(252), - [1994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2132), - [1997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6606), - [2000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6396), - [2003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2144), - [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5618), - [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4842), - [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1911), - [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2121), - [2018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7025), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8556), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8611), - [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7998), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8570), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), - [2049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8066), - [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [2053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6600), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6393), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1), - [2063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7475), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6417), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [2099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 1, .production_id = 17), - [2101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 1, .production_id = 17), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7970), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), - [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_expression, 1), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_expression, 1), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_application, 2, .production_id = 64), - [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_application, 2, .production_id = 64), - [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2713), - [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7153), - [2205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(60), - [2208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(801), - [2211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2739), - [2214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1672), - [2217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4319), - [2220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(803), - [2223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5823), - [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6238), - [2229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(271), - [2232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2760), - [2235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6599), - [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6392), - [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2687), - [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5614), - [2247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4849), - [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2035), - [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2769), - [2256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7218), - [2259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2909), - [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6924), - [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(65), - [2268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(872), - [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2891), - [2274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1671), - [2277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4348), - [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(871), - [2283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5943), - [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6319), - [2289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(262), - [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2846), - [2295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6591), - [2298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6386), - [2301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2890), - [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5609), - [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4852), - [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2001), - [2313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2917), - [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7257), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6924), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [2355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3042), - [2400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(79), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(825), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2984), - [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1699), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4371), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(788), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5821), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6246), - [2424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(264), - [2427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2982), - [2430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6623), - [2433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6404), - [2436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2983), - [2439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5628), - [2442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4825), - [2445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1924), - [2448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3015), - [2451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6949), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 84), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 84), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8514), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6628), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 1, .production_id = 9), - [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 1, .production_id = 9), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [2504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 84), - [2506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 84), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 15), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 15), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 99), - [2518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 99), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 62), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 62), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 62), - [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 62), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 99), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 99), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 2, .production_id = 15), - [2542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 2, .production_id = 15), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 2, .production_id = 9), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 2, .production_id = 9), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_path, 3, .production_id = 70), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 3, .production_id = 70), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [2564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8215), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [2570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [2574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8212), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6798), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [2586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [2594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bigarray_get_expression, 5), - [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bigarray_get_expression, 5), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_get_expression, 3), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_get_expression, 3), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_get_expression, 5), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_get_expression, 5), - [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [2614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_get_expression, 5), - [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_get_expression, 5), - [2618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bigarray_get_expression, 6), - [2620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bigarray_get_expression, 6), - [2622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_path, 1, .production_id = 21), - [2624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 1, .production_id = 21), - [2626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_get_expression, 6), - [2628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_get_expression, 6), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [2632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [2634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_get_expression, 6), - [2636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_get_expression, 6), - [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 7), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 7), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [2650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 6), - [2652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 6), - [2654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_path, 3, .production_id = 74), - [2656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_path, 3, .production_id = 74), - [2658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 6), - [2660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 6), - [2662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 4), - [2664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 4), - [2666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 3), - [2668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 3), - [2670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [2672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [2674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 4), - [2676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 4), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [2680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2), - [2682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2), - [2684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 3), - [2690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 3), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7185), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6610), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7035), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 1), - [2736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 1), - [2738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 5), - [2740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 5), - [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit, 2), - [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit, 2), - [2746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2953), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), - [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6938), - [2756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(822), - [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8276), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1690), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3019), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5813), - [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6185), - [2774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1665), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8514), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6628), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6405), - [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3018), - [2789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5612), - [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4810), - [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2915), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7041), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_name, 1, .production_id = 1), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_name, 1, .production_id = 1), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 6), - [2809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 6), - [2811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 6), - [2813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 6), - [2815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 8), - [2817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 8), - [2819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 7), - [2821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 7), - [2823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_expression, 3, .production_id = 49), - [2825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_expression, 3, .production_id = 49), - [2827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 3, .production_id = 48), - [2829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 3, .production_id = 48), - [2831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 2), - [2833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 2), - [2835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [2837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 1, .production_id = 6), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 1, .production_id = 6), - [2849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_path, 1, .production_id = 5), - [2851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_name, 1), - [2853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_name, 1), - [2855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 3), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 3), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 2), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 2), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 3, .production_id = 34), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 3, .production_id = 34), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 8), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 8), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [2879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2), - [2881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2), - [2883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [2885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [2887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_string, 4), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string, 4), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 3), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 3), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_path, 3), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_path, 3), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 7), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 7), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 5, .production_id = 95), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 5, .production_id = 95), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 4), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_path, 1), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_path, 1), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 4), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 4), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 3), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 7), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 7), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension, 3), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension, 3), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 3), - [2945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 3), - [2947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 3), - [2949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 3), - [2951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 4), - [2953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 4), - [2955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 2), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 2), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 5), - [2973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 5), - [2975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [2977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [2979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 5), - [2981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 5), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 4), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 4), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [2991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, .production_id = 25), - [2993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, .production_id = 25), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 5), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 5), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 5), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 5), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [3009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3329), - [3012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7185), - [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(50), - [3018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(814), - [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3389), - [3024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1659), - [3027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4332), - [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(812), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5809), - [3036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6264), - [3039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(274), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3454), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6610), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(6397), - [3051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(3387), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(5621), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(4837), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(1893), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(2677), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 50), SHIFT_REPEAT(7035), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 6), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 6), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 9), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 9), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extension, 1), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extension, 1), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension, 4), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension, 4), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 5), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 5), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 5), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 5), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_string, 5), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string, 5), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 5), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 6), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_path, 1, .production_id = 23), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_path, 1, .production_id = 23), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 3, .production_id = 53), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 3, .production_id = 53), - [3121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_path, 3, .production_id = 32), - [3123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3125), - [3126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7053), - [3129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(828), - [3132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8215), - [3135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1643), - [3138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3187), - [3141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5958), - [3144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6164), - [3147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1667), - [3150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8212), - [3153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6798), - [3156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6418), - [3159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3185), - [3162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5596), - [3165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4819), - [3168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3030), - [3171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7340), - [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [3176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 2, .production_id = 41), - [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 2, .production_id = 41), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 1), - [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 1), - [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 5, .production_id = 111), - [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, .production_id = 111), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 1, .production_id = 26), - [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 1, .production_id = 26), - [3198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1), - [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [3206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8553), - [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8553), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_pattern, 1), - [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6318), - [3214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 92), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 92), - [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 45), - [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 45), - [3230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 72), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 72), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 92), - [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 92), - [3242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 72), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 72), - [3248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 2, .production_id = 45), - [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 2, .production_id = 45), - [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [3256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [3264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8279), - [3274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6643), - [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [3278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), - [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [3284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [3288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3529), - [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7333), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(860), - [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7982), - [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7982), - [3303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1700), - [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3527), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5997), - [3312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6147), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1650), - [3318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7970), - [3321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6688), - [3324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6413), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3523), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5634), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4873), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2625), - [3339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7132), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [3354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [3356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 1), - [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6482), - [3400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6258), - [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [3420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [3436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), - [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [3450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [3452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [3460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [3462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [3488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8061), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8495), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [3544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), - [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_expression, 1), - [3654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sequence_expression, 1), - [3656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 49), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 3, .production_id = 49), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 4, .production_id = 75), - [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 4, .production_id = 75), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [3792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [3796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8253), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7982), - [3834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [3854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [3860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [3864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [3872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [3884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), - [3888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [3910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5899), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [3962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_id, 2), - [3964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_id, 2), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [3986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_id_repeat1, 2), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), - [3990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7011), - [3993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_id, 1), - [3995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_id, 1), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat1, 2), - [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), SHIFT_REPEAT(2357), - [4016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), - [4018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 3), - [4020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 3), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5581), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7879), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [4028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 3), - [4030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 3), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [4034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2), - [4036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2), - [4038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 2), - [4040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 2), - [4042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat1, 1), - [4044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 1), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8614), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8218), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [4060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__signed_constant, 1), - [4062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signed_constant, 1), - [4064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_number, 2), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_number, 2), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [4070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 18), - [4072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 18), - [4074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 5), - [4076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 5), - [4078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 5), - [4080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 5), - [4082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, .production_id = 134), - [4084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, .production_id = 134), - [4086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 3), - [4088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 3), - [4090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 4), - [4092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 4), - [4094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 73), - [4096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 73), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [4100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, .production_id = 73), - [4102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4, .production_id = 73), - [4104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4), - [4106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4), - [4108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_binding_pattern, 3), - [4110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_binding_pattern, 3), - [4112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 5), - [4114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 5), - [4116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_binding_pattern, 3), - [4118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_binding_pattern, 3), - [4120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_binding_pattern, 3), - [4122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_binding_pattern, 3), - [4124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_binding_pattern, 3), - [4126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_binding_pattern, 3), - [4128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [4130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [4132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 6, .production_id = 101), - [4134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 6, .production_id = 101), - [4136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_binding_pattern, 2), - [4138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_binding_pattern, 2), - [4140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 2), - [4142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 2), - [4144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_binding_pattern, 3), - [4146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_binding_pattern, 3), - [4148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [4150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [4152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 3), - [4154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 3), - [4156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 2), - [4158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 2), - [4160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 3), - [4162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 3), - [4164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 4, .production_id = 32), - [4166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 4, .production_id = 32), - [4168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_binding_pattern, 2, .production_id = 43), - [4170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_binding_pattern, 2, .production_id = 43), - [4172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 20), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 20), - [4176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 5), - [4178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 5), - [4180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_module_expression, 4, .production_id = 60), - [4182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_module_expression, 4, .production_id = 60), - [4184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 19), - [4186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 19), - [4188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4, .production_id = 60), - [4190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4, .production_id = 60), - [4192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), - [4194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3), - [4196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 6), - [4198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 6), - [4200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 46), - [4202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 46), - [4204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 46), - [4206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 46), - [4208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 2), - [4210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 2), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_ext, 1), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_ext, 1), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 3), - [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 3), - [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 3), - [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 3), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2), - [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_pattern, 2), - [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_pattern, 2), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_binding_pattern, 3), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_binding_pattern, 3), - [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 7), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 7), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exception_expression, 4, .production_id = 60), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exception_expression, 4, .production_id = 60), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_cases_repeat1, 2), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), - [4254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1682), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3), - [4259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 73), - [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 73), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_expression, 4, .production_id = 60), - [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_expression, 4, .production_id = 60), - [4269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_binding_pattern, 2, .production_id = 43), - [4271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_binding_pattern, 2, .production_id = 43), - [4273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2), - [4275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2), - [4277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_path, 3, .production_id = 31), - [4279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_path, 3, .production_id = 31), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 123), - [4283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 123), - [4285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 46), - [4287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 46), - [4289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_binding_pattern, 4, .production_id = 43), - [4291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_binding_pattern, 4, .production_id = 43), - [4293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 1), - [4295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 1), - [4297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 6, .production_id = 110), - [4299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 6, .production_id = 110), - [4301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 4), - [4303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 4), - [4305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 3), - [4307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 3), - [4309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 4), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 4), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 5, .production_id = 94), - [4315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 5, .production_id = 94), - [4317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_path, 1, .production_id = 4), - [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_path, 1, .production_id = 4), - [4321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5), - [4323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 5, .production_id = 101), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 5, .production_id = 101), - [4329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 4), - [4331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 4), - [4333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 5, .production_id = 32), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 5, .production_id = 32), - [4337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1681), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), - [4342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 89), - [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 89), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [4348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 3, .production_id = 67), - [4350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 3, .production_id = 67), - [4352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refutation_case, 1), - [4354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refutation_case, 1), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [4374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1646), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), - [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), - [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), - [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6401), - [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8449), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 40), - [4475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 40), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 6), - [4479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 6), - [4481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_pattern, 1, .production_id = 16), - [4483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_pattern, 1, .production_id = 16), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [4487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_pattern, 1), - [4489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_pattern, 1), - [4491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 1), - [4493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 1), - [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter, 1), - [4497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1), - [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_pattern_ext, 1), - [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern_ext, 1), - [4503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 8, .production_id = 104), - [4505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 8, .production_id = 104), - [4507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 17), - [4509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 17), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, .production_id = 104), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 104), - [4515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, .production_id = 86), - [4517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 86), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [4525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [4527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, .production_id = 86), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 86), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class, 5), - [4533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class, 5), - [4535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_class_expression, 4), - [4537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_class_expression, 4), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7407), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5), - [4545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5), - [4547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 86), - [4549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 86), - [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class, 4), - [4553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class, 4), - [4555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 7), - [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 7), - [4559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_expression, 1), - [4561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_expression, 1), - [4563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3), - [4565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3), - [4567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3), - [4569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [4571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3), - [4573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3), - [4575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3), - [4577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [4579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 3), - [4581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 3), - [4583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 5), - [4585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 5), - [4587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 5), - [4589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 5), - [4591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 5), - [4593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 5), - [4595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 86), - [4597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 86), - [4599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_class_expression, 3), - [4601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_class_expression, 3), - [4603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4), - [4605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4), - [4607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4), - [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4), - [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4), - [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4), - [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4), - [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 4), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 4), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 66), - [4625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 66), - [4627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_abstract_type, 3), - [4629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_abstract_type, 3), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [4651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), - [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [4683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8535), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7090), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8552), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), - [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), - [4717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1676), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_toplevel_directive, 1), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_toplevel_directive, 1), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8133), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_of, 4), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_of, 4), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6693), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [4784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sign_operator, 1), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_operator, 1), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__add_operator, 1), - [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1689), - [4793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 4, .production_id = 60), - [4795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor, 4, .production_id = 60), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8360), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8602), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5972), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__add_operator, 1), - [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assign_operator, 1), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_operator, 1), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__and_operator, 1), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__and_operator, 1), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pow_operator, 1), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pow_operator, 1), - [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mult_operator, 1), - [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mult_operator, 1), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__or_operator, 1), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__or_operator, 1), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_ext, 1), - [4873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2357), - [4876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(1664), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5972), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5070), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), - [4887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5603), - [4890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5780), - [4893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(4772), - [4896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(4835), - [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5742), - [4902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6421), - [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6422), - [4908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6423), - [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(1843), - [4914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(7014), - [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type, 1), - [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type, 1), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [4923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [4933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_type, 3), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_aliased_type, 3), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_variable, 2), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_variable, 2), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8566), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8512), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8296), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8293), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_ext, 1), - [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_ext, 1), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [5001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 2), - [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 2), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_path, 3, .production_id = 87), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_path, 3, .production_id = 87), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 4), - [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 4), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_type, 4), - [5031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_type, 4), - [5033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 4), - [5035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 4), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 3), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 3), - [5045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [5047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [5049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 3), - [5051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 3), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_type, 5), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_type, 5), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 5), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 5), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 5), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 5), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 5), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 5), - [5073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_path, 1, .production_id = 42), - [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_path, 1, .production_id = 42), - [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, .production_id = 82), - [5087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 5, .production_id = 82), - [5089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 59), - [5091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 59), - [5093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 2), - [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 2), - [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, .production_id = 36), - [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 3, .production_id = 36), - [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 6), - [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 6), - [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 6), - [5107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 6), - [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 7), - [5111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 7), - [5113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [5115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 2), - [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 2), - [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), - [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [5139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5144), - [5142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5850), - [5145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5055), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), - [5150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5589), - [5153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5731), - [5156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(4637), - [5159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(4654), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5766), - [5165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5914), - [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6421), - [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6422), - [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6423), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature, 1), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [5185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_path, 1, .production_id = 5), - [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5952), - [5194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5633), - [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5750), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_path, 3, .production_id = 32), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature, 2), - [5204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(6950), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [5213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1684), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_expression, 1), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_expression, 1), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 6), - [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 6), - [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_module_expression, 1), - [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_module_expression, 1), - [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 2), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 2), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 4), - [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 4), - [5242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_module_expression_ext, 1), - [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_module_expression_ext, 1), - [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 3), - [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 3), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), - [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 4), - [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 4), - [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 1), - [5260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1645), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 3), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 3), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 3), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 3), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_application, 2, .production_id = 14), - [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_application, 2, .production_id = 14), - [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 2), - [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 2), - [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 7), - [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 7), - [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_application, 3, .production_id = 37), - [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_application, 3, .production_id = 37), - [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 3), - [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 3), - [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 5), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 5), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_module_expression, 4), - [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_module_expression, 4), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 2), - [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 2), - [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [5315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 3, .production_id = 32), - [5317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 3, .production_id = 32), - [5319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 12), - [5321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 12), - [5323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_argument, 1), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_path, 1, .production_id = 8), - [5331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_path, 1, .production_id = 8), - [5333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 1, .production_id = 5), - [5335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 1, .production_id = 5), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 34), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 7, .production_id = 34), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 6), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 6), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6275), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 4), - [5375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 4), - [5377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1691), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module, 4), - [5382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_module, 4), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [5388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 12), - [5390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 6, .production_id = 12), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(1647), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 34), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 5, .production_id = 34), - [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_path, 3, .production_id = 38), - [5413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_path, 3, .production_id = 38), - [5415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 6), - [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 5, .production_id = 6), - [5419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [5449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8192), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8014), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [5471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_argument, 1), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8269), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [5479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_class_expression, 3, .production_id = 52), - [5481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_class_expression, 3, .production_id = 52), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), - [5485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_binding_repeat1, 2), - [5487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), SHIFT_REPEAT(6525), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8145), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6835), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, .production_id = 11), - [5504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 2, .production_id = 11), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 1), - [5514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_binding_repeat1, 1), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [5520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 1, .production_id = 3), - [5522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 1, .production_id = 3), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), - [5530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 2, .production_id = 7), - [5532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 2, .production_id = 7), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8103), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [5544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), - [5546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_expression_ext, 1), - [5554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_expression_ext, 1), - [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8016), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7671), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_class_expression, 4, .production_id = 60), - [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_class_expression, 4, .production_id = 60), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function, 4, .production_id = 60), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function, 4, .production_id = 60), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 1, .production_id = 7), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 1, .production_id = 7), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type, 1), - [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_type, 1), - [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 5), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 5), - [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7131), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 3), - [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 3), - [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_type, 3), - [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_type, 3), - [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), - [5627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module_type, 5), - [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_module_type, 5), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 4), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 4), - [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [5639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_ext, 1), - [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_ext, 1), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), - [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(3690), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_binding_repeat1, 2), - [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 3), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 3), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), - [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), - [5670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), - [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), - [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(6516), - [5677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 9, .production_id = 34), - [5679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 9, .production_id = 34), - [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 4), - [5683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 4), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 3), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 3), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_equation, 3), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_equation, 3), - [5697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 6), - [5699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 6), - [5701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 1), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_binding_repeat1, 1), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 5), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 5), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 2), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 2), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 1), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 1), - [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), - [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8305), - [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 6), - [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 7, .production_id = 6), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 1, .production_id = 6), - [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 1, .production_id = 6), - [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [5737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(3730), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [5744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_equation, 2), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_equation, 2), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 8, .production_id = 12), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 8, .production_id = 12), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 5), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 5), - [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_parameter, 4, .production_id = 81), - [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_parameter, 4, .production_id = 81), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_parameter, 2), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_parameter, 2), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 5), - [5766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 5), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [5770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4), - [5772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4), - [5774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_class_type, 4, .production_id = 60), - [5776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_class_type, 4, .production_id = 60), - [5778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class_type, 4), - [5780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class_type, 4), - [5782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 8), - [5784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 8), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 3), - [5788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 3), - [5790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 7), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 7), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 6), - [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 6), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class_type, 5), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class_type, 5), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_type, 1), - [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_type, 1), - [5806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_type_ext, 1), - [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_type_ext, 1), - [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 4), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_constraint, 4), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__polymorphic_type, 1), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__polymorphic_type, 1), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3, .production_id = 76), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3, .production_id = 76), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8250), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 3), - [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_constraint, 3), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_attribute, 4), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_attribute, 4), - [5894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 11), - [5896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 11), - [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 1), - [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 1), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_attribute, 3), - [5924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_attribute, 3), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, .production_id = 3), - [5928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 2, .production_id = 3), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6091), - [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [5949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, .production_id = 7), - [5951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 3, .production_id = 7), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 11), - [5961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 11), - [5963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 34), - [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 34), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5), - [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 30), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 30), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4), - [5985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4), - [5987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 97), - [5989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 97), - [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 3), - [5993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 3), - [5995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 97), - [5997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 97), - [5999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 78), - [6001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 78), - [6003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 77), - [6005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 77), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), - [6009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_type, 3), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [6015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_type, 3), - [6017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3), - [6019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6005), - [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 55), - [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 55), - [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 78), - [6030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 78), - [6032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 77), - [6034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 77), - [6036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 54), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 54), - [6040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 55), - [6042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 55), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_type, 4), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_type, 4), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 30), - [6050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 30), - [6052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 12), - [6054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 12), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 54), - [6064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 54), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [6068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 113), - [6070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 113), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, .production_id = 128), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 7, .production_id = 128), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__item_extension, 1), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__item_extension, 1), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [6092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 3), - [6094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 3), - [6096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 56), - [6098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 56), - [6100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 39), - [6102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 39), - [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 57), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 57), - [6108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 33), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 33), - [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 2, .production_id = 17), - [6114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 2, .production_id = 17), - [6116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 39), - [6118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 39), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [6130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 36), - [6132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 36), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [6138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_attribute, 4), - [6140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_attribute, 4), - [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7315), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 9), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 9), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 7), - [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 7), - [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_typed, 2), - [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_typed, 2), - [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type, 1), - [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type, 1), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 3, .production_id = 61), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 3, .production_id = 61), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 63), - [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 63), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 15), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 15), - [6185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 9), - [6187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 9), - [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 65), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 65), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, .production_id = 59), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 5, .production_id = 59), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_attribute, 3), - [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_attribute, 3), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 3, .production_id = 67), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 3, .production_id = 67), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(6794), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 127), - [6238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 127), - [6240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 5), - [6242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 5), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [6246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 6), - [6248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 6), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [6254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 11, .production_id = 141), - [6256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 11, .production_id = 141), - [6258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 141), - [6260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 141), - [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 30), - [6264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 30), - [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 137), - [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 137), - [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), - [6272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), - [6274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 136), - [6276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 136), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 9, .production_id = 135), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 9, .production_id = 135), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 8, .production_id = 128), - [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 8, .production_id = 128), - [6286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 11), - [6288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 11), - [6290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 79), - [6292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 79), - [6294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 57), - [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 57), - [6298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 99), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 99), - [6302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 137), - [6304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 137), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 136), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 136), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 126), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 126), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 88), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 88), - [6318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 125), - [6320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 125), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 4, .production_id = 83), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 4, .production_id = 83), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 4, .production_id = 61), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 4, .production_id = 61), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 8, .production_id = 135), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 8, .production_id = 135), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 8, .production_id = 124), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 8, .production_id = 124), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, .production_id = 116), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 7, .production_id = 116), - [6342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 63), - [6344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 63), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 85), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 85), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 15), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 15), - [6354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 3), - [6356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 3), - [6358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 56), - [6360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 56), - [6362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 65), - [6364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 65), - [6366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 6, .production_id = 41), - [6368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 6, .production_id = 41), - [6370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, .production_id = 67), - [6372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, .production_id = 67), - [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 99), - [6376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 99), - [6378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, .production_id = 89), - [6380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, .production_id = 89), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 33), - [6388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 33), - [6390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 127), - [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 127), - [6394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 84), - [6396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 84), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 126), - [6400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 126), - [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 114), - [6404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 114), - [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 125), - [6408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 125), - [6410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 54), - [6412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 54), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 113), - [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 113), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 55), - [6420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 55), - [6422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 79), - [6424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 79), - [6426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 7, .production_id = 124), - [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 7, .production_id = 124), - [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 7, .production_id = 112), - [6432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 7, .production_id = 112), - [6434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 8, .production_id = 97), - [6436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 8, .production_id = 97), - [6438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__polymorphic_typed, 2), - [6440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__polymorphic_typed, 2), - [6442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 6, .production_id = 82), - [6444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 6, .production_id = 82), - [6446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 5, .production_id = 83), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 5, .production_id = 83), - [6450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 98), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 98), - [6454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 62), - [6456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 62), - [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 85), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 85), - [6462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 100), - [6464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 100), - [6466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 88), - [6468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 88), - [6470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, .production_id = 105), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 5, .production_id = 105), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, .production_id = 89), - [6476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 5, .production_id = 89), - [6478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4335), - [6481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 77), - [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 77), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 78), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 78), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 84), - [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 84), - [6493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_argument, 2), - [6495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_argument, 2), - [6497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 6, .production_id = 112), - [6499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 6, .production_id = 112), - [6501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 98), - [6503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 98), - [6505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 62), - [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 62), - [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_typed, 2), - [6511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_typed, 2), - [6513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 114), - [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 114), - [6517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, .production_id = 116), - [6519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 6, .production_id = 116), - [6521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 100), - [6523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 100), - [6525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 5, .production_id = 69), - [6527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 5, .production_id = 69), - [6529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, .production_id = 105), - [6531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 6, .production_id = 105), - [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 7, .production_id = 80), - [6541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 7, .production_id = 80), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [6545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 6, .production_id = 80), - [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 6, .production_id = 80), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [6561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 7), - [6563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 7), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [6575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 2), - [6577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 2), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [6581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 4), - [6583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 4), - [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [6587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 4, .production_id = 13), - [6589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 4, .production_id = 13), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8381), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [6603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(3714), - [6606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6056), - [6609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), - [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(4059), - [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6089), - [6617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(506), - [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6421), - [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6422), - [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6423), - [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 6, .production_id = 58), - [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 6, .production_id = 58), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), - [6643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 3), - [6645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 3), - [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), SHIFT_REPEAT(5805), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 4, .production_id = 35), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 4, .production_id = 35), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [6676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 3, .production_id = 13), - [6678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 3, .production_id = 13), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [6688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 2), - [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 2), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [6698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 5, .production_id = 35), - [6700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 5, .production_id = 35), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4373), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 5, .production_id = 58), - [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 5, .production_id = 58), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 3), - [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 3), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 5), - [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 5), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 3), - [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 3), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 5), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 5), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 3), - [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), - [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), - [6845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), SHIFT_REPEAT(6162), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 4), - [6882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 4), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), - [6890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), - [6892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1971), - [6895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1971), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [6900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 2), - [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 2), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [6922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 3), - [6924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 3), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [6928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 2), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 1), - [6946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_repeat1, 1), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 4), - [6952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 4), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [6960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), - [6962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_repeat1, 2), - [6964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), SHIFT_REPEAT(4847), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), SHIFT_REPEAT(5824), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 5), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 5), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_item, 2), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_item, 2), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8004), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8260), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7650), - [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [7006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8059), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [7032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5081), - [7035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5081), - [7038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5079), - [7041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), - [7043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4357), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_item, 1), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_item, 1), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8353), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7896), - [7066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4337), - [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), - [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_definition_repeat1, 2), - [7073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1851), - [7076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1851), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 4), - [7083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 4), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [7087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(3714), - [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(6286), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), - [7095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(5044), - [7098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(6289), - [7101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(6421), - [7104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(6422), - [7107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(6423), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [7114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [7126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 4), - [7128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 5), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [7140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [7152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 3), - [7154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 3), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [7158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [7160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 2), - [7168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 2), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 5), - [7174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 5), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), - [7184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [7186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5202), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3), - [7191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 3), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4), - [7199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4), - [7201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(6133), - [7204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 2), - [7206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 2), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 4), - [7210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), SHIFT_REPEAT(4832), - [7213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 4), - [7215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 4), - [7217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(6380), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [7234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5171), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure_item, 1), - [7245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure_item, 1), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), - [7261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(6526), - [7264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), SHIFT_REPEAT(4819), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [7269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), - [7271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_toplevel_directive, 2), - [7273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_toplevel_directive, 2), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [7277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [7281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1), - [7285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 2), - [7287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), SHIFT_REPEAT(5144), - [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), - [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [7294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(6122), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 1), - [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 1), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [7307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 2, .production_id = 44), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure_item_ext, 1), - [7311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure_item_ext, 1), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [7317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 3, .production_id = 71), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [7323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 90), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 44), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [7337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature_item_ext, 1), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature_item, 1), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 71), - [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [7349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 71), - [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 1), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typed, 2), - [7355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typed, 2), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [7359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 90), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 44), - [7365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [7369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 90), - [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(6151), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 4), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 71), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 3, .production_id = 44), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 90), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [7576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), - [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7939), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7984), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 72), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8519), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8193), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7432), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8407), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7997), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8402), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8429), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8575), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8055), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [7696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 45), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8595), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8205), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8366), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8394), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8371), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8446), - [7726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 2), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 3), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 92), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7995), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8329), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7946), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8029), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7889), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7967), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [7758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 10, .production_id = 142), - [7760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 107), - [7762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 121), - [7764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 132), - [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 5), - [7768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 120), - [7770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 131), - [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 119), - [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 130), - [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 118), - [7778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 133), - [7780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_pattern, 2), - [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_pattern, 2), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_pattern, 2), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 2), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 117), - [7790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 92), - [7792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 71), - [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 129), - [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 122), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [7802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 91), - [7804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 122), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 138), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 139), - [7810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 109), - [7812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 2), - [7814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 2), - [7816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 121), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 72), - [7820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 91), - [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 90), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 120), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 130), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 108), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_ext, 1), - [7832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_ext, 1), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [7836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 131), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 132), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 133), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 6), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 107), - [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 44), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_initializer, 2), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 119), - [7854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 106), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 118), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string_content, 1), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 140), - [7864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 138), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 4), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 139), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 93), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 117), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 106), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_pattern, 3), - [7884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 3), - [7886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_initializer, 3), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [7890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 142), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [7894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 140), - [7896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 129), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 108), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 5), - [7906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 45), - [7908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 109), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 93), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_pattern, 3), - [7914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_pattern, 3), - [7916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), SHIFT_REPEAT(5490), - [7919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), SHIFT_REPEAT(5490), - [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 3), - [7926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 3), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specification, 2), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 3, .production_id = 102), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specification, 3), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 3, .production_id = 103), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 4, .production_id = 102), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 4, .production_id = 115), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 4, .production_id = 103), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 4, .production_id = 48), - [7952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_string_content_repeat1, 1), - [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 1), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 5, .production_id = 115), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 5, .production_id = 48), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [7968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(3617), - [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3), - [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3), - [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 2), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [7985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_pattern, 2), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 3), - [7991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_pattern, 3), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [8013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8181), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [8069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 1), - [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_ext, 1), - [8117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field, 1), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [8127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), SHIFT_REPEAT(6727), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8280), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8154), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8153), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8154), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7344), - [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), - [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8056), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6017), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8411), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_specification, 1), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 1), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [8258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_specification_ext, 1), - [8260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6003), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7057), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 2), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [8307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [8315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 3), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [8391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [8417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [8447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [8449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [8453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), - [8455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [8457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [8465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [8477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 4), - [8505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7268), - [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5967), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), - [8513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), - [8515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), - [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), - [8525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [8527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), - [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [8587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_specification_repeat1, 2), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [8629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_spec, 1), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [8637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7050), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 4, .production_id = 104), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [8709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(6733), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), - [8758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_typed, 2), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 3, .production_id = 66), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiated_class_type_repeat1, 2), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6303), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1), - [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 2), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 1), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 2, .production_id = 10), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [8868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), - [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6687), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [8890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(6796), - [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_specification_repeat1, 2), SHIFT_REPEAT(3659), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 5), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [8904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 1, .production_id = 22), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [8908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 3), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 3, .production_id = 29), - [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 1), - [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 1, .production_id = 2), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [8934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [8976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7341), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8058), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [9013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4351), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8041), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 1), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5265), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [9156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_type, 2), - [9158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 2), - [9160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 2), SHIFT_REPEAT(6981), - [9163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_params_repeat1, 2), - [9165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_params_repeat1, 2), SHIFT_REPEAT(5651), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8328), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8326), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [9252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), - [9254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1919), - [9257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(1919), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7930), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7176), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [9286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 2), - [9288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 2), SHIFT_REPEAT(7107), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6708), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [9327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 2), - [9329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 2), SHIFT_REPEAT(6687), - [9332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [9334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 2), - [9336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 2), SHIFT_REPEAT(6689), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8624), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [9353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), - [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [9359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat1, 2), SHIFT_REPEAT(3230), - [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat1, 2), - [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiated_class_type_repeat1, 2), SHIFT_REPEAT(3628), - [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 2), SHIFT_REPEAT(6703), - [9374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 2), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7070), - [9396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8147), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8108), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [9480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7141), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [9518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7162), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [9570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [9594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7235), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), - [9646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [9656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7262), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [9682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [9708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [9718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5873), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_expression, 1, .production_id = 24), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), - [9824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(1057), - [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7302), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [9859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5864), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5747), - [9947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5930), - [10033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(6870), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 2, .production_id = 22), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [10044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 1), - [10046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 1), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_operator_path, 1), - [10058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_operator_path, 1), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [10062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 1, .production_id = 4), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7843), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5950), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [10136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 2), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(955), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5970), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6070), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [10195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_copy_expression_repeat1, 2), SHIFT_REPEAT(7104), - [10198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_copy_expression_repeat1, 2), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [10214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2), SHIFT_REPEAT(6016), - [10217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [10233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), SHIFT_REPEAT(1768), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [10244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6082), - [10247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), SHIFT_REPEAT(2068), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [10262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_binding_pattern_repeat1, 2), SHIFT_REPEAT(6042), - [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_binding_pattern_repeat1, 2), - [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [10269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [10273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [10281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(4283), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), - [10314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_operator_path, 3), - [10316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_operator_path, 3), - [10318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_declaration_repeat1, 2), SHIFT_REPEAT(6877), - [10321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_declaration_repeat1, 2), - [10323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5844), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5974), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8082), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [10401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), SHIFT_REPEAT(1766), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), SHIFT_REPEAT(2076), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5964), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8268), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), - [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8550), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8370), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8544), - [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8513), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8502), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8496), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8490), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8484), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8478), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8466), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7112), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8137), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8459), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8450), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8488), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8440), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8430), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 1), - [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8400), - [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [10643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8138), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8384), - [10653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8136), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8213), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8352), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8337), - [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8335), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8291), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8377), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8423), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8076), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7897), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8363), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8344), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8359), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8114), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7160), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8254), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [10871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 96), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8173), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [10881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 3), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8206), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8106), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8128), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8504), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8503), - [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 1), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8386), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8499), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8498), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8497), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8493), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8492), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8487), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8486), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8485), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8481), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [10987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_label, 4, .production_id = 41), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8480), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8479), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8338), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7934), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8474), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8469), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8468), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8467), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8463), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8462), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8191), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8461), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8455), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8454), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8453), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8445), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8444), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8435), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8434), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [11141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 21), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6364), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8405), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8404), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8403), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8390), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8389), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8388), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8374), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8372), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5944), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8358), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8272), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8357), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8356), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8342), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8341), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8340), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8118), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 4), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8325), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8324), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8323), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [11359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_label, 3, .production_id = 69), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7456), - [11367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_type, 2, .production_id = 68), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8080), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8321), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8302), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), - [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8300), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8301), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7932), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6052), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6795), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8171), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8412), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8494), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8310), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7310), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [12049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 3), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8038), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8120), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8123), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8247), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7087), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8442), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8589), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8439), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8132), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8563), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8139), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8355), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8119), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7117), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7231), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [12431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [12515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7503), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6702), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8533), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8526), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8524), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8299), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [12713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_content, 1), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [12755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [12943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_operator, 1), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8631), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7271), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8229), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), - [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), - [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7796), - [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), - [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), - [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), - [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7870), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7904), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7922), - [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7923), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7936), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7938), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7952), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7964), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7965), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7966), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7979), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7980), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7992), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7994), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8006), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8021), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8022), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), - [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6569), - [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8130), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), - [13365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [13367] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), - [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8270), - [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [13519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [13521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_ocaml_interface_external_scanner_create(void); -void tree_sitter_ocaml_interface_external_scanner_destroy(void *); -bool tree_sitter_ocaml_interface_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_ocaml_interface_external_scanner_serialize(void *, char *); -void tree_sitter_ocaml_interface_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_ocaml_interface(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym__identifier, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_ocaml_interface_external_scanner_create, - tree_sitter_ocaml_interface_external_scanner_destroy, - tree_sitter_ocaml_interface_external_scanner_scan, - tree_sitter_ocaml_interface_external_scanner_serialize, - tree_sitter_ocaml_interface_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-ocaml/interface/src/scanner.cc b/vendored_parsers/tree-sitter-ocaml/interface/src/scanner.cc deleted file mode 100644 index d8a0b828b..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/src/scanner.cc +++ /dev/null @@ -1,29 +0,0 @@ -#include "../../common/scanner.h" - -extern "C" { - -void *tree_sitter_ocaml_interface_external_scanner_create() { - return new Scanner(); -} - -void tree_sitter_ocaml_interface_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -unsigned tree_sitter_ocaml_interface_external_scanner_serialize(void *payload, char *buffer) { - Scanner *scanner = static_cast(payload); - return scanner->serialize(buffer); -} - -void tree_sitter_ocaml_interface_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { - Scanner *scanner = static_cast(payload); - scanner->deserialize(buffer, length); -} - -bool tree_sitter_ocaml_interface_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - Scanner *scanner = static_cast(payload); - return scanner->scan(lexer, valid_symbols); -} - -} diff --git a/vendored_parsers/tree-sitter-ocaml/interface/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-ocaml/interface/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac104..000000000 --- a/vendored_parsers/tree-sitter-ocaml/interface/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) id - LARGE_STATE_COUNT - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value, \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_ diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/attributes.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/attributes.txt deleted file mode 100644 index 4ad03f6e7..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/attributes.txt +++ /dev/null @@ -1,173 +0,0 @@ -=========================== -Floating attributes -=========================== - -[@@@id] -[@@@I.D] -[@@@id let x = x] -[@@@id:] -[@@@id : t] -[@@@id : type t type t] -[@@@id ? A x] - ---- - -(compilation_unit - (floating_attribute (attribute_id)) - (floating_attribute (attribute_id)) - (floating_attribute - (attribute_id) - (attribute_payload - (value_definition - (let_binding - (value_name) - (value_path (value_name)))))) - (floating_attribute (attribute_id) (attribute_payload)) - (floating_attribute - (attribute_id) - (attribute_payload - (type_constructor_path (type_constructor)))) - (floating_attribute - (attribute_id) - (attribute_payload - (type_definition (type_binding (type_constructor))) - (type_definition (type_binding (type_constructor))))) - (floating_attribute - (attribute_id) - (attribute_payload - (constructor_pattern - (constructor_path (constructor_name)) - (value_pattern))))) - -=========================== -Item attributes -=========================== - -x [@@id] [@@id] -let x = x [@@id] and x = x [@@id] -module M = M [@@id] - ---- - -(compilation_unit - (expression_item (value_path (value_name)) - (item_attribute (attribute_id)) - (item_attribute (attribute_id))) - (value_definition - (let_binding - (value_name) - (value_path (value_name)) - (item_attribute (attribute_id))) - (let_binding - (value_name) - (value_path (value_name)) - (item_attribute (attribute_id)))) - (module_definition - (module_binding - (module_name) - (module_path (module_name)) - (item_attribute (attribute_id))))) - -=========================== -Attributes -=========================== - -let%id x = x and [@id] x = x [@id] -type t = A [@id] [@id] -type t = { x : t [@id]; [@id] } -module M = struct [@id] end [@id];; -x ;%id x - ---- - -(compilation_unit - (value_definition - (attribute_id) - (let_binding - (value_name) - (value_path (value_name))) - (attribute (attribute_id)) - (let_binding - (value_name) - (value_path (value_name)))) - (attribute (attribute_id)) - (type_definition - (type_binding - (type_constructor) - (variant_declaration - (constructor_declaration - (constructor_name))))) - (attribute (attribute_id)) - (attribute (attribute_id)) - (type_definition - (type_binding - (type_constructor) - (record_declaration - (field_declaration - (field_name) - (type_constructor_path (type_constructor))) - (attribute (attribute_id)) - (attribute (attribute_id))))) - (module_definition - (module_binding - (module_name) - (structure (attribute (attribute_id))))) - (attribute (attribute_id)) - (expression_item - (sequence_expression - (value_path (value_name)) - (attribute_id) - (value_path (value_name))))) - -=========================== -Item extension -=========================== - -[%%id];; -{%%M.id|payload|};; -{%%id ab|payload|ab};; - ---- - -(compilation_unit - (item_extension (attribute_id)) - (quoted_item_extension (attribute_id) (quoted_string_content)) - (quoted_item_extension (attribute_id) (quoted_string_content))) - -=========================== -Extension -=========================== - -module type T = [%id] -module M = [%id] -type t = [%id] -let x = [%id] -let x = {%id|payload|} -let x = {%id ab|payload|ab};; - ---- - -(compilation_unit - (module_type_definition - (module_type_name) - (extension (attribute_id))) - (module_definition - (module_binding - (module_name) - (extension (attribute_id)))) - (type_definition - (type_binding - (type_constructor) - (extension (attribute_id)))) - (value_definition - (let_binding - (value_name) - (extension (attribute_id)))) - (value_definition - (let_binding - (value_name) - (quoted_extension (attribute_id) (quoted_string_content)))) - (value_definition - (let_binding - (value_name) - (quoted_extension (attribute_id) (quoted_string_content))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/comments.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/comments.txt deleted file mode 100644 index f30e474d6..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/comments.txt +++ /dev/null @@ -1,77 +0,0 @@ -============================== -Comments -============================== - -(**) -(* *) -(** - doc -*) -( *) - ---- - -(compilation_unit - (comment) - (comment) - (comment) - (expression_item (value_path (parenthesized_operator (infix_operator))))) - -============================== -Strings and comments -============================== - -(* "*)" *) -"(**)";; -"(*";; - ---- - -(compilation_unit - (comment) - (expression_item (string (string_content))) - (expression_item (string (string_content)))) - -============================== -Characters and comments -============================== - -(* '"' *) -(* f' '"' *) -(* *) -(* '\o170' '"' *) -(* '\'"' *) -(* '\" " *) -(* '" " *) -(* '*) -x - ---- - -(compilation_unit - (comment) - (comment) - (comment) - (comment) - (comment) - (comment) - (comment) - (comment) - (expression_item (value_path (value_name)))) - -============================== -Quoted strings and comments -============================== - -(* {|*)|} *) -(* {%id |*)|} *) -{|(**)|};; -{|(*|};; - ---- - -(compilation_unit - (comment) - (comment) - (expression_item (quoted_string (quoted_string_content))) - (expression_item (quoted_string (quoted_string_content)))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/expressions.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/expressions.txt deleted file mode 100644 index 2046e5405..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/expressions.txt +++ /dev/null @@ -1,719 +0,0 @@ -=========================== -Values -=========================== - -x;; -M.x;; -( + );; -M.( + );; - ---- - -(compilation_unit - (expression_item (value_path (value_name))) - (expression_item - (value_path - (module_path (module_name)) - (value_name))) - (expression_item - (value_path (parenthesized_operator (infix_operator)))) - (expression_item - (value_path - (module_path (module_name)) - (parenthesized_operator (infix_operator))))) - -=========================== -Constants -=========================== - -493;; -10_000_000;; -0x1ed;; -0o644;; -0b111101101;; -4.93e2;; -493e+0;; -0x7b.4p2;; -'x';; -'\n';; -'\'';; -'\120';; -'\x78';; -'\o170';; -' -';; -"OCaml";; -"\"\079\u{43}aml\"";; -"OCaml\ - OCaml";; -"%d %05.2f";; -"@[%s@ %d@]@.";; -" -";; -" ";; -"";; -{|OCaml|};; -{id||id};; -{id|{|}id}|idd||id};; -{|%d@.|};; -{| -|};; -{| |};; -true;; -();; - ---- - -(compilation_unit - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (number)) - (expression_item (character (character_content))) - (expression_item (character (character_content (escape_sequence)))) - (expression_item (character (character_content (escape_sequence)))) - (expression_item (character (character_content (escape_sequence)))) - (expression_item (character (character_content (escape_sequence)))) - (expression_item (character (character_content (escape_sequence)))) - (expression_item (character (character_content))) - (expression_item (string (string_content))) - (expression_item (string (string_content (escape_sequence) (escape_sequence) (escape_sequence) (escape_sequence)))) - (expression_item (string (string_content (escape_sequence)))) - (expression_item (string (string_content (conversion_specification) (conversion_specification)))) - (expression_item (string (string_content - (pretty_printing_indication) - (conversion_specification) - (pretty_printing_indication) - (conversion_specification) - (pretty_printing_indication) - (pretty_printing_indication)))) - (expression_item (string (string_content))) - (expression_item (string (string_content))) - (expression_item (string)) - (expression_item (quoted_string (quoted_string_content))) - (expression_item (quoted_string)) - (expression_item (quoted_string (quoted_string_content))) - (expression_item (quoted_string (quoted_string_content - (conversion_specification) - (pretty_printing_indication)))) - (expression_item (quoted_string (quoted_string_content))) - (expression_item (quoted_string (quoted_string_content))) - (expression_item (boolean)) - (expression_item (unit))) - -=========================== -Typed expression -=========================== - -(x : t) - ---- - -(compilation_unit - (expression_item - (typed_expression - (value_path (value_name)) - (type_constructor_path (type_constructor))))) - -=========================== -Lists, arrays and records -=========================== - -[];; -[x; x; x];; -x :: x :: xs;; -[||];; -[| x; x; x |];; -{ x = x; x; };; - ---- - -(compilation_unit - (expression_item (list_expression)) - (expression_item - (list_expression - (value_path (value_name)) - (value_path (value_name)) - (value_path (value_name)))) - (expression_item - (cons_expression - (value_path (value_name)) - (cons_expression - (value_path (value_name)) - (value_path (value_name))))) - (expression_item (array_expression)) - (expression_item - (array_expression - (value_path (value_name)) - (value_path (value_name)) - (value_path (value_name)))) - (expression_item - (record_expression - (field_expression - (field_path (field_name)) - (value_path (value_name))) - (field_expression - (field_path (field_name)))))) - -=========================== -Get and set expressions -=========================== - -x.y.z <- x;; -x.(0).[0].{0,0} <- x;; -x.%(0).M.%(0) <- x;; -1 #? x.%(0);; - ---- - -(compilation_unit - (expression_item - (set_expression - (field_get_expression - (field_get_expression - (value_path (value_name)) - (field_path (field_name))) - (field_path (field_name))) - (value_path (value_name)))) - (expression_item - (set_expression - (bigarray_get_expression - (string_get_expression - (array_get_expression - (value_path (value_name)) - (number)) - (number)) - (product_expression - (number) - (number))) - (value_path (value_name)))) - (expression_item - (set_expression - (array_get_expression - (array_get_expression - (value_path (value_name)) - (indexing_operator_path (indexing_operator)) - (number)) - (indexing_operator_path - (module_path (module_name)) - (indexing_operator)) - (number)) - (value_path (value_name)))) - (expression_item - (hash_expression - (number) - (hash_operator) - (array_get_expression - (value_path (value_name)) - (indexing_operator_path (indexing_operator)) - (number))))) - -=========================== -Coercions -=========================== - -(x :> t);; -(x : t :> t);; - ---- - -(compilation_unit - (expression_item - (coercion_expression - (value_path (value_name)) - (type_constructor_path (type_constructor)))) - (expression_item - (coercion_expression - (value_path (value_name)) - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))))) - -=========================== -Local opens -=========================== - -M.(x);; -M.[x; x];; - ---- - -(compilation_unit - (expression_item - (local_open_expression - (module_path (module_name)) - (value_path (value_name)))) - (expression_item - (local_open_expression - (module_path (module_name)) - (list_expression - (value_path (value_name)) - (value_path (value_name)))))) - -=========================== -Package expressions -=========================== - -(module M);; -(module M : T);; - ---- - -(compilation_unit - (expression_item - (package_expression - (module_path (module_name)))) - (expression_item - (package_expression - (module_path (module_name)) - (module_type_path (module_type_name))))) - -=========================== -Product expressions -=========================== - -x, y, z;; -(x, y) - ---- - -(compilation_unit - (expression_item - (product_expression - (product_expression - (value_path (value_name)) - (value_path (value_name))) - (value_path (value_name)))) - (expression_item - (parenthesized_expression - (product_expression - (value_path (value_name)) - (value_path (value_name)))))) - -=========================== -Constructors -=========================== - -A;; -M.A;; -A x;; -( :: ) (x, l);; - ---- - -(compilation_unit - (expression_item - (constructor_path (constructor_name))) - (expression_item - (constructor_path - (module_path (module_name)) - (constructor_name))) - (expression_item - (application_expression - (constructor_path (constructor_name)) - (value_path (value_name)))) - (expression_item - (application_expression - (constructor_path (constructor_name)) - (parenthesized_expression - (product_expression - (value_path (value_name)) - (value_path (value_name))))))) - -=========================== -Tags -=========================== - -`A;; -`A x;; - ---- - -(compilation_unit - (expression_item (tag)) - (expression_item - (application_expression - (tag) - (value_path (value_name))))) - -=========================== -Function application -=========================== - -f x;; -f x x;; -f ~x ?x:x ~(x:x);; - ---- - -(compilation_unit - (expression_item - (application_expression - (value_path (value_name)) - (value_path (value_name)))) - (expression_item - (application_expression - (value_path (value_name)) - (value_path (value_name)) - (value_path (value_name)))) - (expression_item - (application_expression - (value_path (value_name)) - (labeled_argument (label_name)) - (labeled_argument - (label_name) - (value_path (value_name))) - (labeled_argument - (label_name) - (type_constructor_path (type_constructor)))))) - -=========================== -Operators -=========================== - -!x;; -~-x;; --x;; -x - y;; -x lsl 1;; - ---- - -(compilation_unit - (expression_item - (prefix_expression - (prefix_operator) - (value_path (value_name)))) - (expression_item - (prefix_expression - (prefix_operator) - (value_path (value_name)))) - (expression_item - (sign_expression - (sign_operator) - (value_path (value_name)))) - (expression_item - (infix_expression - (value_path (value_name)) - (infix_operator) - (value_path (value_name)))) - (expression_item - (infix_expression - (value_path (value_name)) - (infix_operator) - (number)))) - -=========================== -If, while and for -=========================== - -if x then y;; -if x then y else z;; -while x do y done;; -for i = 1 to n do x done;; - ---- - -(compilation_unit - (expression_item - (if_expression - (value_path (value_name)) - (then_clause (value_path (value_name))))) - (expression_item - (if_expression - (value_path (value_name)) - (then_clause (value_path (value_name))) - (else_clause (value_path (value_name))))) - (expression_item - (while_expression - (value_path (value_name)) - (do_clause (value_path (value_name))))) - (expression_item - (for_expression - (value_pattern) - (number) - (value_path (value_name)) - (do_clause (value_path (value_name)))))) - -=========================== -Sequence expressions -=========================== - -x; y; z;; - ---- - -(compilation_unit - (expression_item - (sequence_expression - (value_path (value_name)) - (sequence_expression - (value_path (value_name)) - (value_path (value_name)))))) - -=========================== -Match expressions -=========================== - -match x with -| x -> x -| x when x -> x -| x | x -> x -| exception x -> x;; -match+ x with x -> x;; - ---- - -(compilation_unit - (expression_item - (match_expression - (value_path (value_name)) - (match_case - (value_pattern) - (value_path (value_name))) - (match_case - (value_pattern) - (guard (value_path (value_name))) - (value_path (value_name))) - (match_case - (or_pattern (value_pattern) (value_pattern)) - (value_path (value_name))) - (match_case - (exception_pattern (value_pattern)) - (value_path (value_name))))) - (expression_item - (match_expression - (match_operator) - (value_path (value_name)) - (match_case - (value_pattern) - (value_path (value_name)))))) - -=========================== -Function expressions -=========================== - -function 0 -> 0 | x -> 1;; -function A (type a) x -> 1;; - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (number) - (number)) - (match_case - (value_pattern) - (number)))) - (expression_item - (function_expression - (match_case - (constructor_pattern - (constructor_path (constructor_name)) - (abstract_type (type_constructor)) - (value_pattern)) - (number))))) - -=========================== -Try expressions -=========================== - -try x with Exception -> () - ---- - -(compilation_unit - (expression_item - (try_expression - (value_path (value_name)) - (match_case - (constructor_path (constructor_name)) - (unit))))) - -=========================== -Let expressions -=========================== - -let x = 0 in x;; -let rec x = y and y = x in x;; - ---- - -(compilation_unit - (expression_item - (let_expression - (value_definition - (let_binding - (value_name) - (number))) - (value_path (value_name)))) - (expression_item - (let_expression - (value_definition - (let_binding - (value_name) - (value_path (value_name))) - (let_binding - (value_name) - (value_path (value_name)))) - (value_path (value_name))))) - -=========================== -Assert expressions -=========================== - -assert x - ---- - -(compilation_unit - (expression_item - (assert_expression (value_path (value_name))))) - -=========================== -Lazy expressions -=========================== - -lazy x - ---- - -(compilation_unit - (expression_item - (lazy_expression (value_path (value_name))))) - -=========================== -Let module, open, exception -=========================== - -let module M = M in x;; -let open M in x;; -let exception E in x;; - ---- - -(compilation_unit - (expression_item - (let_module_expression - (module_definition - (module_binding - (module_name) - (module_path (module_name)))) - (value_path (value_name)))) - (expression_item - (let_open_expression - (open_module (module_path (module_name))) - (value_path (value_name)))) - (expression_item - (let_exception_expression - (exception_definition - (constructor_declaration (constructor_name))) - (value_path (value_name))))) - -=========================== -Parenthesized expressions -=========================== - -let x = (x) - ---- - -(compilation_unit - (value_definition - (let_binding - (value_name) - (parenthesized_expression (value_path (value_name)))))) - -=========================== -Precedence -=========================== - -let x = x in if x then x <- x := ! x . x ## x x x lsl x ** x * x mod x + x - x :: x :: x @ x ^ x < x > x & x && x or x || x, x, x; x; x - ---- - -(compilation_unit - (expression_item - (let_expression - (value_definition - (let_binding - (value_name) - (value_path (value_name)))) - (sequence_expression - (if_expression - (value_path (value_name)) - (then_clause - (set_expression - (instance_variable_name) - (infix_expression - (value_path (value_name)) - (infix_operator) - (product_expression - (product_expression - (infix_expression - (infix_expression - (infix_expression - (infix_expression - (infix_expression - (cons_expression - (infix_expression - (infix_expression - (infix_expression - (infix_expression - (infix_expression - (application_expression - (hash_expression - (field_get_expression - (prefix_expression - (prefix_operator) - (value_path (value_name))) - (field_path (field_name))) - (hash_operator) - (value_path (value_name))) - (value_path (value_name)) - (value_path (value_name))) - (infix_operator) - (infix_expression - (value_path (value_name)) - (infix_operator) - (value_path (value_name)))) - (infix_operator) - (value_path (value_name))) - (infix_operator) - (value_path (value_name))) - (infix_operator) - (value_path (value_name))) - (infix_operator) - (value_path (value_name))) - (cons_expression - (value_path (value_name)) - (value_path (value_name)))) - (infix_operator) - (infix_expression - (value_path (value_name)) - (infix_operator) - (value_path (value_name)))) - (infix_operator) - (value_path (value_name))) - (infix_operator) - (value_path (value_name))) - (infix_operator) - (infix_expression - (value_path (value_name)) - (infix_operator) - (value_path (value_name)))) - (infix_operator) - (infix_expression - (value_path (value_name)) - (infix_operator) - (value_path (value_name)))) - (value_path (value_name))) - (value_path (value_name))))))) - (sequence_expression - (value_path (value_name)) - (value_path (value_name))))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-expressions.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-expressions.txt deleted file mode 100644 index 5c7c1e8bd..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-expressions.txt +++ /dev/null @@ -1,146 +0,0 @@ -========================== -Module paths -========================== - -module M = M -module M = M.M - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_path - (module_path (module_name)) - (module_name))))) - -============================ -Structures -============================ - -module M = struct - let x = x -end -module M = struct ;; end - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (structure - (value_definition - (let_binding - (value_name) - (value_path (value_name))))))) - (module_definition - (module_binding - (module_name) - (structure)))) - -============================ -Module applications -============================ - -module M = M (M) -module M = M (M) (M) - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (module_application - (module_path (module_name)) - (parenthesized_module_expression (module_path (module_name)))))) - (module_definition - (module_binding - (module_name) - (module_application - (module_application - (module_path (module_name)) - (parenthesized_module_expression (module_path (module_name)))) - (parenthesized_module_expression (module_path (module_name))))))) - -========================== -Typed module expressions -========================== - -module M = (M : T) - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (typed_module_expression - (module_path (module_name)) - (module_type_path (module_type_name)))))) - -========================= -Packed modules -========================== - -module M = (val m) -module M = (val m : T) -module M = M (val m) - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (packed_module (value_path (value_name))))) - (module_definition - (module_binding - (module_name) - (packed_module - (value_path (value_name)) - (module_type_path (module_type_name))))) - (module_definition - (module_binding - (module_name) - (module_application - (module_path (module_name)) - (packed_module (value_path (value_name))))))) - -========================= -Functors -========================== - -module M = functor (M : T) -> M - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (functor - (module_parameter - (module_name) - (module_type_path (module_type_name))) - (module_path (module_name)))))) - -============================== -Parenthesized module expressions -============================== - -module M = (M) - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (parenthesized_module_expression (module_path (module_name)))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-implementation.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-implementation.txt deleted file mode 100644 index 4430c5ae3..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-implementation.txt +++ /dev/null @@ -1,98 +0,0 @@ -============================== -Value definition -============================== - -let x = y -let ( + ) = x -let rec x = y and y = x -let x, y = y, x -let x : 'a . 'a t = y -let f ~x ~l:y ~(x : t) ?(l = y) ?l:((x, y) : t = xy) = x -let f (type t) x : t = x -let+ x = a and+ y = b -let%ext x -let* x and* y - ---- - -(compilation_unit - (value_definition - (let_binding (value_name) (value_path (value_name)))) - (value_definition - (let_binding - (parenthesized_operator (infix_operator)) - (value_path (value_name)))) - (value_definition - (let_binding (value_name) (value_path (value_name))) - (let_binding (value_name) (value_path (value_name)))) - (value_definition - (let_binding - (tuple_pattern (value_name) (value_name)) - (product_expression (value_path (value_name)) (value_path (value_name))))) - (value_definition - (let_binding - (value_name) - (polymorphic_type - (type_variable) - (constructed_type (type_variable) (type_constructor_path (type_constructor)))) - (value_path (value_name)))) - (value_definition - (let_binding - (value_name) - (parameter (value_pattern)) - (parameter (label_name) (value_pattern)) - (parameter (value_pattern) (type_constructor_path (type_constructor))) - (parameter (value_pattern) (value_path (value_name))) - (parameter - (label_name) - (parenthesized_pattern - (tuple_pattern (value_pattern) (value_pattern))) - (type_constructor_path (type_constructor)) - (value_path (value_name))) - (value_path (value_name)))) - (value_definition - (let_binding - (value_name) - (abstract_type (type_constructor)) - (parameter (value_pattern)) - (type_constructor_path (type_constructor)) - (value_path (value_name)))) - (value_definition - (let_operator) - (let_binding (value_name) (value_path (value_name))) - (and_operator) - (let_binding (value_name) (value_path (value_name)))) - (value_definition (attribute_id) (let_binding (value_name))) - (value_definition - (let_operator) - (let_binding (value_name)) - (and_operator) - (let_binding (value_name)))) - -============================== -Include -============================== - -include M -include M.M -include M.M.M -include M(M) - ---- - -(compilation_unit - (include_module (module_path (module_name))) - (include_module - (module_path - (module_path (module_name)) - (module_name))) - (include_module - (module_path - (module_path - (module_path (module_name)) - (module_name)) - (module_name))) - (include_module - (module_application - (module_path (module_name)) - (parenthesized_module_expression (module_path (module_name)))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-items.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-items.txt deleted file mode 100644 index 01c5f2c6d..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-items.txt +++ /dev/null @@ -1,215 +0,0 @@ -============================== -External -============================== - -external x : int = "x" -external x : 'a . 'a = "x" - ---- - -(compilation_unit - (external - (value_name) - (type_constructor_path (type_constructor)) - (string (string_content))) - (external - (value_name) - (polymorphic_type (type_variable) (type_variable)) - (string (string_content)))) - -============================== -Type definition -============================== - -type t -type nonrec 'a t = t and ('a, 'b) t = t -type t = private t -type t = A | B of t | C of t * t | D of {x : t} -type _ t = - | A : t -> t - | B : 'a . 'a -> 'a t -type t = { - mutable x : t; -} -type t = t constraint 'a = t -type t = | - ---- - -(compilation_unit - (type_definition (type_binding (type_constructor))) - (type_definition - (type_binding - (type_variable) - (type_constructor) - (type_constructor_path (type_constructor))) - (type_binding - (type_variable) (type_variable) - (type_constructor) - (type_constructor_path (type_constructor)))) - (type_definition (type_binding (type_constructor) (type_constructor_path (type_constructor)))) - (type_definition - (type_binding - (type_constructor) - (variant_declaration - (constructor_declaration (constructor_name)) - (constructor_declaration - (constructor_name) - (type_constructor_path (type_constructor))) - (constructor_declaration - (constructor_name) - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))) - (constructor_declaration - (constructor_name) - (record_declaration - (field_declaration - (field_name) - (type_constructor_path (type_constructor)))))))) - (type_definition - (type_binding - (type_variable) - (type_constructor) - (variant_declaration - (constructor_declaration - (constructor_name) - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))) - (constructor_declaration - (constructor_name) - (type_variable) - (type_variable) - (constructed_type (type_variable) (type_constructor_path (type_constructor))))))) - (type_definition - (type_binding - (type_constructor) - (record_declaration - (field_declaration (field_name) (type_constructor_path (type_constructor)))))) - (type_definition - (type_binding - (type_constructor) - (type_constructor_path (type_constructor)) - (type_constraint (type_variable) (type_constructor_path (type_constructor))))) - (type_definition - (type_binding - (type_constructor) - (variant_declaration)))) - -============================== -Exception definition -============================== - -exception E -exception E of t - ---- - -(compilation_unit - (exception_definition (constructor_declaration (constructor_name))) - (exception_definition - (constructor_declaration - (constructor_name) - (type_constructor_path (type_constructor))))) - -============================== -Module definition -============================== - -module M -module M : T -module M (M : T) : E -module rec M : T and M : T - -module M = M -module M := M -module M : T = M -module M (M : T) = M -module rec M = N and N = M - -module _ (_ : T) = M - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name))) - (module_definition - (module_binding - (module_name) - (module_type_path (module_type_name)))) - (module_definition - (module_binding - (module_name) - (module_parameter (module_name) (module_type_path (module_type_name))) - (module_type_path (module_type_name)))) - (module_definition - (module_binding - (module_name) - (module_type_path (module_type_name))) - (module_binding - (module_name) - (module_type_path (module_type_name)))) - - (module_definition - (module_binding - (module_name) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_type_path (module_type_name)) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_parameter (module_name) (module_type_path (module_type_name))) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_path (module_name))) - (module_binding - (module_name) - (module_path (module_name)))) - (module_definition - (module_binding - (module_name) - (module_parameter (module_name) (module_type_path (module_type_name))) - (module_path (module_name))))) - -============================== -Module type definition -============================== - -module type T = T -module type T := T - ---- - -(compilation_unit - (module_type_definition - (module_type_name) - (module_type_path (module_type_name))) - (module_type_definition - (module_type_name) - (module_type_path (module_type_name)))) - -============================== -Open -============================== - -open M -open! M -open ! M - ---- - -(compilation_unit - (open_module (module_path (module_name))) - (open_module (module_path (module_name))) - (open_module (module_path (module_name)))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-types.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-types.txt deleted file mode 100644 index e59333ffc..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/module-types.txt +++ /dev/null @@ -1,118 +0,0 @@ -============================== -Module type path -============================== - -module M : T -module M : M.T - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (module_type_path (module_type_name)))) - (module_definition - (module_binding - (module_name) - (module_type_path - (extended_module_path (module_name)) - (module_type_name))))) - -============================== -Signatures -============================== - -module M : sig - val x : t -end - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (signature - (value_specification - (value_name) - (type_constructor_path (type_constructor))))))) - -============================== -Constraints -============================== - -module M : T with type t = t and module M := M and module type T = T - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (module_type_constraint - (module_type_path (module_type_name)) - (constrain_type - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))) - (constrain_module - (module_path (module_name)) - (extended_module_path (module_name))) - (constrain_module_type - (module_type_path (module_type_name)) - (module_type_path (module_type_name))))))) - -============================== -Module type of -============================== - -module M : module type of M - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (module_type_of (module_path (module_name)))))) - -============================== -Functor types -============================== - -module M : functor (M : T) -> T -module M : T -> T -> T - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (functor_type - (module_parameter - (module_name) - (module_type_path (module_type_name))) - (module_type_path (module_type_name))))) - (module_definition - (module_binding - (module_name) - (functor_type - (module_type_path (module_type_name)) - (functor_type - (module_type_path (module_type_name)) - (module_type_path (module_type_name))))))) - -============================== -Parenthesized module types -============================== - -module M : (T) - ---- - -(compilation_unit - (module_definition - (module_binding - (module_name) - (parenthesized_module_type (module_type_path (module_type_name)))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/patterns.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/patterns.txt deleted file mode 100644 index 4c6f28842..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/patterns.txt +++ /dev/null @@ -1,235 +0,0 @@ -============================ -Values -============================ - -function x -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case (value_pattern) (unit))))) - -============================ -Constant patterns -============================ - -function 1 | +1.0 | 'x' | "x" | {|x|} | true | () -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (or_pattern - (or_pattern - (or_pattern - (or_pattern - (or_pattern - (or_pattern - (number) - (signed_number)) - (character (character_content))) - (string (string_content))) - (quoted_string (quoted_string_content))) - (boolean)) - (unit)) - (unit))))) - -============================ -Typed patterns -============================ - -function (x : t) -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (typed_pattern - (value_pattern) - (type_constructor_path (type_constructor))) - (unit))))) - -============================ -Constructors and tags -============================ - -function A x | A | `A | `A x -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (or_pattern - (or_pattern - (or_pattern - (constructor_pattern - (constructor_path (constructor_name)) - (value_pattern)) - (constructor_path (constructor_name))) - (tag)) - (tag_pattern (tag) (value_pattern))) - (unit))))) - -============================ -Polymorphic variant patterns -============================ - -function #t -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (polymorphic_variant_pattern - (type_constructor_path (type_constructor))) - (unit))))) - -============================ -Records, lists and arrays -============================ - -function {x} | [x] | [|x|] | [|x;y;|] | x :: xs -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (or_pattern - (or_pattern - (or_pattern - (or_pattern - (record_pattern - (field_pattern (field_path (field_name)))) - (list_pattern (value_pattern))) - (array_pattern (value_pattern))) - (array_pattern (value_pattern) (value_pattern))) - (cons_pattern (value_pattern) (value_pattern))) - (unit))))) - -============================ -Local open patterns -============================ - -function M.(A x) | M.[x] -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (or_pattern - (local_open_pattern - (module_path (module_name)) - (constructor_pattern - (constructor_path (constructor_name)) - (value_pattern))) - (local_open_pattern - (module_path (module_name)) - (list_pattern (value_pattern)))) - (unit))))) - -============================ -Package patterns -============================ - -function (module M) -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (package_pattern (module_name)) - (unit))))) - -============================ -Alias patterns -============================ - -function x as t -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (alias_pattern (value_pattern) (value_pattern)) - (unit))))) - -============================ -Tuple patterns -============================ - -function x, x, x -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (tuple_pattern - (tuple_pattern - (value_pattern) - (value_pattern)) - (value_pattern)) - (unit))))) - -============================ -Range patterns -============================ - -function 'a' .. 'z' -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (range_pattern (character (character_content)) (character (character_content))) - (unit))))) - -============================ -Lazy patterns -============================ - -function lazy x -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case (lazy_pattern (value_pattern)) - (unit))))) - -============================ -Parenthesized patterns -============================ - -function (x) -> () - ---- - -(compilation_unit - (expression_item - (function_expression - (match_case - (parenthesized_pattern (value_pattern)) - (unit))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/toplevel.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/toplevel.txt deleted file mode 100644 index dfae0e564..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/toplevel.txt +++ /dev/null @@ -1,31 +0,0 @@ -============================== -Toplevel directives -============================== - -#help -#use "file.ml" -#show_module M -#show x - ---- - -(compilation_unit - (toplevel_directive (directive)) - (toplevel_directive (directive) (string (string_content))) - (toplevel_directive (directive) (module_path (module_name))) - (toplevel_directive - (directive) - (value_path (value_name)))) - -============================== -Line number directives -============================== - -# 1 "test.ml" -# 2 "test.ml" (* comment *) - ---- - -(compilation_unit - (line_number_directive) - (line_number_directive)) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/types.txt b/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/types.txt deleted file mode 100644 index 947ae5b29..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/corpus/types.txt +++ /dev/null @@ -1,244 +0,0 @@ -=========================== -Type variables -=========================== - -type 'a t = 'a -type ('a, 'b) t = 'a -type +'a t = 'a -type !+'a t = 'a -type +!'a t = 'a - ---- - -(compilation_unit - (type_definition - (type_binding - (type_variable) - (type_constructor) - (type_variable))) - (type_definition - (type_binding - (type_variable) - (type_variable) - (type_constructor) - (type_variable))) - (type_definition - (type_binding - (type_variable) - (type_constructor) - (type_variable))) - (type_definition - (type_binding - (type_variable) - (type_constructor) - (type_variable))) - (type_definition - (type_binding - (type_variable) - (type_constructor) - (type_variable)))) - -=========================== -Type constructors -=========================== - -type t = t -type t = M.t -type t = M(M).t - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (type_constructor_path (type_constructor)))) - (type_definition - (type_binding - (type_constructor) - (type_constructor_path - (extended_module_path (module_name)) - (type_constructor)))) - (type_definition - (type_binding - (type_constructor) - (type_constructor_path - (extended_module_path - (extended_module_path (module_name)) - (extended_module_path (module_name))) - (type_constructor))))) - -=========================== -Constructed types -=========================== - -type t = int list -type t = int list list - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (constructed_type - (type_constructor_path (type_constructor)) (type_constructor_path (type_constructor))))) - (type_definition - (type_binding - (type_constructor) - (constructed_type - (constructed_type - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))) - (type_constructor_path (type_constructor)))))) - -=========================== -Polymorphic variant types -=========================== - -type t = [`A | `B of t] -type t = [> - | t - | `C -] -type t = [< `A of t & t ] -type t = [< `A > `A ] - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (polymorphic_variant_type - (tag_specification (tag)) - (tag_specification - (tag) - (type_constructor_path (type_constructor)))))) - (type_definition - (type_binding - (type_constructor) - (polymorphic_variant_type - (type_constructor_path (type_constructor)) - (tag_specification (tag))))) - (type_definition - (type_binding - (type_constructor) - (polymorphic_variant_type - (tag_specification - (tag) - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor)))))) - (type_definition - (type_binding - (type_constructor) - (polymorphic_variant_type - (tag_specification (tag)) - (tag))))) - -=========================== -Package types -=========================== - -type t = (module T) - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (package_type - (module_type_path (module_type_name)))))) - -=========================== -Function types -=========================== - -type t = t -> t -type t = t -> t -> t -type t = l:t -> ?l:t -> t - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (function_type - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))))) - (type_definition - (type_binding - (type_constructor) - (function_type - (type_constructor_path (type_constructor)) (function_type - (type_constructor_path (type_constructor)) (type_constructor_path (type_constructor)))))) - (type_definition - (type_binding - (type_constructor) - (function_type - (typed_label - (label_name) - (type_constructor_path (type_constructor))) - (function_type - (typed_label - (label_name) - (type_constructor_path (type_constructor))) - (type_constructor_path (type_constructor))))))) - -=========================== -Tuple types -=========================== - -type t = t * t -type t = t * t * t - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (tuple_type - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))))) - (type_definition - (type_binding - (type_constructor) - (tuple_type - (tuple_type - (type_constructor_path (type_constructor)) - (type_constructor_path (type_constructor))) - (type_constructor_path (type_constructor)))))) - -=========================== -Aliased types -=========================== - -type t = t as 't - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (aliased_type - (type_constructor_path (type_constructor)) - (type_variable))))) - -=========================== -Parenthesized types -=========================== - -type t = (t) - ---- - -(compilation_unit - (type_definition - (type_binding - (type_constructor) - (parenthesized_type - (type_constructor_path (type_constructor)))))) diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/grammar.js b/vendored_parsers/tree-sitter-ocaml/ocaml/grammar.js deleted file mode 100644 index 3b61608f4..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/grammar.js +++ /dev/null @@ -1,2062 +0,0 @@ -const PREC = { - prefix: 19, - dot: 18, - hash: 17, - app: 16, - neg: 15, - pow: 14, - mult: 13, - add: 12, - cons: 11, - concat: 10, - rel: 9, - and: 8, - or: 7, - prod: 6, - assign: 5, - if: 4, - seq: 3, - match: 2 -} - -const OP_CHAR = /[!$%&*+\-./:<=>?@^|~]/ -const HASH_OP_CHAR = /[#!$%&*+\-./:<=>?@^|~]/ -const NUMBER = token(choice( - /[0-9][0-9_]*(\.[0-9_]*)?([eE][+\-]?[0-9][0-9_]*)?[g-zG-Z]?/, - /0[xX][0-9A-Fa-f][0-9A-Fa-f_]*(\.[0-9A-Fa-f_]*)?([pP][+\-]?[0-9][0-9_]*)?[g-zG-Z]?/, - /0[oO][0-7][0-7_]*[g-zG-Z]?/, - /0[bB][01][01_]*[g-zG-Z]?/ -)) - -module.exports = grammar({ - name: 'ocaml', - - extras: $ => [ - /\s/, - $.comment, - $.line_number_directive, - $.attribute - ], - - inline: $ => [ - $._module_type_ext, - $._module_expression_ext, - $._module_expression_ext, - $._simple_type_ext, - $._simple_expression_ext, - $._expression_ext, - $._quoted_string, - $._label_name, - $._field_name, - $._class_name, - $._class_type_name, - $._method_name, - $._type_constructor, - $._instance_variable_name, - $._module_name, - $._module_type_name, - $._constructor_name, - ], - - word: $ => $._identifier, - - supertypes: $ => [ - $._structure_item, - $._parameter, - $._module_type, - $._simple_module_expression, - $._module_expression, - $._simple_class_type, - $._class_type, - $._class_field_specification, - $._simple_class_expression, - $._class_expression, - $._class_field, - $._polymorphic_type, - $._simple_type, - $._tuple_type, - $._tag_spec, - $._type, - $._simple_expression, - $._expression, - $._sequence_expression, - $._argument, - $._simple_pattern, - $._pattern, - $._binding_pattern, - $._extension, - $._item_extension, - $._constant, - $._signed_constant, - $._value_name, - $._value_pattern - ], - - rules: { - compilation_unit: $ => seq( - optional($.shebang), - optional($._structure) - ), - - shebang: $ => /#!.*/, - - _structure: $ => choice( - repeat1(';;'), - seq( - repeat(';;'), - choice($._structure_item_ext, $.toplevel_directive, $.expression_item), - repeat(choice( - seq(repeat(';;'), choice($._structure_item_ext, $.toplevel_directive)), - seq(repeat1(';;'), $.expression_item) - )), - repeat(';;') - ) - ), - - expression_item: $ => seq( - $._sequence_expression_ext, - repeat($.item_attribute) - ), - - _signature: $ => choice( - repeat1(';;'), - seq(repeat1(seq(repeat(';;'), $._signature_item_ext)), repeat(';;')) - ), - - // Toplevel - - toplevel_directive: $ => seq( - $.directive, - optional(choice( - $._constant, - $.value_path, - $.module_path - )) - ), - - // Module implementation - - _structure_item: $ => choice( - $.value_definition, - $.external, - $.type_definition, - $.exception_definition, - $.module_definition, - $.module_type_definition, - $.open_module, - $.include_module, - $.class_definition, - $.class_type_definition, - $.floating_attribute - ), - - _structure_item_ext: $ => choice( - $._structure_item, - $._item_extension - ), - - value_definition: $ => seq( - choice(seq('let', optional($._attribute), optional('rec')), $.let_operator), - sep1(choice('and', $.and_operator), $.let_binding) - ), - - let_binding: $ => prec.right(seq( - field('pattern', $._binding_pattern_ext), - optional(seq( - repeat($._parameter), - optional($._polymorphic_typed), - optional(seq(':>', $._type_ext)), - '=', - field('body', $._sequence_expression_ext), - )), - repeat($.item_attribute) - )), - - _parameter: $ => choice( - $.parameter, - alias($._parenthesized_abstract_type, $.abstract_type) - ), - - parameter: $ => choice( - field('pattern', $._simple_pattern_ext), - seq( - choice('~', '?'), - field('pattern', alias($._identifier, $.value_pattern)) - ), - seq( - $._label, - token.immediate(':'), - field('pattern', $._simple_pattern_ext) - ), - seq( - choice('~', '?'), - '(', - field('pattern', alias($._identifier, $.value_pattern)), - optional($._typed), - optional(seq('=', $._sequence_expression_ext)), - ')' - ), - seq( - $._label, - token.immediate(':'), - '(', - field('pattern', $._pattern_ext), - optional($._typed), - seq('=', $._sequence_expression_ext), - ')' - ) - ), - - external: $ => seq( - 'external', - optional($._attribute), - $._value_name, - $._polymorphic_typed, - '=', - repeat1($.string), - repeat($.item_attribute) - ), - - type_definition: $ => seq( - 'type', - optional($._attribute), - optional('nonrec'), - sep1('and', $.type_binding) - ), - - type_binding: $ => seq( - optional($._type_params), - choice( - seq( - field('name', $._type_constructor), - optional($._type_equation), - optional(seq( - '=', - optional('private'), - field('body', choice($.variant_declaration, $.record_declaration, '..')) - )), - repeat($.type_constraint) - ), - seq( - field('name', $.type_constructor_path), - seq( - '+=', - optional('private'), - field('body', $.variant_declaration) - ) - ) - ), - repeat($.item_attribute) - ), - - _type_params: $ => choice( - $._type_param, - parenthesize(sep1(',', $._type_param)) - ), - - _type_param: $ => seq( - optional(choice( - seq('+', optional('!')), - seq('-', optional('!')), - seq('!', optional(choice('+', '-'))), - )), - choice($.type_variable, alias('_', $.type_variable)) - ), - - _type_equation: $ => seq( - choice('=', ':='), - optional('private'), - $._type_ext - ), - - variant_declaration: $ => choice( - seq('|', sep('|', $.constructor_declaration)), - sep1('|', $.constructor_declaration) - ), - - constructor_declaration: $ => seq( - choice( - $._constructor_name, - alias(choice(seq('[', ']'), seq('(', ')'), 'true', 'false'), $.constructor_name) - ), - optional(choice( - seq('of', $._constructor_argument), - seq( - ':', - optional(seq(repeat1($.type_variable), '.')), - optional(seq($._constructor_argument, '->')), - $._simple_type_ext - ), - seq('=', $.constructor_path) - )) - ), - - _constructor_argument: $ => choice( - sep1('*', $._simple_type_ext), - $.record_declaration - ), - - record_declaration: $ => seq( - '{', - sep1(';', $.field_declaration), - optional(';'), - '}' - ), - - field_declaration: $ => seq( - optional('mutable'), - $._field_name, - $._polymorphic_typed, - ), - - type_constraint: $ => seq( - 'constraint', - $._type_ext, - '=', - $._type_ext - ), - - exception_definition: $ => seq( - 'exception', - optional($._attribute), - $.constructor_declaration, - repeat($.item_attribute) - ), - - module_definition: $ => seq( - 'module', optional($._attribute), optional('rec'), - sep1('and', $.module_binding) - ), - - module_binding: $ => seq( - field('name', choice($._module_name, alias('_', $.module_name))), - repeat($.module_parameter), - optional($._module_typed), - optional(seq(choice('=', ':='), field('body', $._module_expression_ext))), - repeat($.item_attribute) - ), - - module_parameter: $ => parenthesize(optional(seq( - field('name', choice($._module_name, alias('_', $.module_name))), - $._module_typed - ))), - - module_type_definition: $ => seq( - 'module', 'type', - optional($._attribute), - field('name', $._module_type_name), - optional(seq(choice('=', ':='), field('body', $._module_type_ext))), - repeat($.item_attribute) - ), - - open_module: $ => seq( - 'open', - optional('!'), - optional($._attribute), - $._module_expression_ext, - repeat($.item_attribute) - ), - - include_module: $ => seq( - 'include', - optional($._attribute), - $._module_expression_ext, - repeat($.item_attribute) - ), - - class_definition: $ => seq( - 'class', optional($._attribute), - sep1('and', $.class_binding) - ), - - class_binding: $ => prec.right(seq( - optional('virtual'), - optional(seq( - '[', - sep1(',', $._type_param), - ']' - )), - field('name', $._class_name), - repeat($._parameter), - optional($._class_typed), - optional(seq('=', field('body', $._class_expression_ext))), - repeat($.item_attribute) - )), - - class_type_definition: $ => seq( - 'class', 'type', optional($._attribute), - sep1('and', $.class_type_binding) - ), - - class_type_binding: $ => seq( - optional('virtual'), - optional(seq( - '[', - sep1(',', $._type_param), - ']' - )), - field('name', $._class_type_name), - '=', - field('body', $._simple_class_type_ext), - repeat($.item_attribute) - ), - - // Module signature - - _signature_item: $ => choice( - $.value_specification, - $.external, - $.type_definition, - $.exception_definition, - $.module_definition, - $.module_type_definition, - $.open_module, - $.include_module_type, - $.class_definition, - $.class_type_definition, - $.floating_attribute - ), - - _signature_item_ext: $ => choice( - $._signature_item, - $._item_extension - ), - - value_specification: $ => seq( - 'val', - optional($._attribute), - $._value_name, - $._polymorphic_typed, - repeat($.item_attribute) - ), - - include_module_type: $ => seq( - 'include', - optional($._attribute), - $._module_type_ext, - repeat($.item_attribute) - ), - - // Module types - - _module_typed: $ => seq(':', $._module_type_ext), - - _module_type: $ => choice( - $.module_type_path, - $.signature, - $.module_type_constraint, - $.module_type_of, - $.functor_type, - $.parenthesized_module_type - ), - - _module_type_ext: $ => choice( - $._module_type, - $._extension - ), - - signature: $ => seq( - 'sig', - optional($._signature), - 'end' - ), - - module_type_constraint: $ => prec.right(seq( - $._module_type_ext, - 'with', - sep1('and', choice( - $.constrain_type, - $.constrain_module, - $.constrain_module_type - )) - )), - - constrain_type: $ => seq( - 'type', - optional($._type_params), - $.type_constructor_path, - $._type_equation, - repeat($.type_constraint) - ), - - constrain_module: $ => seq( - 'module', - $.module_path, - choice('=', ':='), - $.extended_module_path - ), - - constrain_module_type: $ => prec.left(seq( - 'module', 'type', - $.module_type_path, - choice('=', ':='), - $._module_type_ext - )), - - module_type_of: $ => seq( - 'module', 'type', 'of', - $._module_expression_ext - ), - - functor_type: $ => prec.right(seq( - choice( - seq('functor', repeat($.module_parameter)), - $._module_type_ext - ), - '->', - $._module_type_ext - )), - - parenthesized_module_type: $ => seq( - parenthesize($._module_type_ext) - ), - - // Module expressions - - _simple_module_expression: $ => choice( - $.typed_module_expression, - $.parenthesized_module_expression, - $.packed_module - ), - - _simple_module_expression_ext: $ => choice( - $._simple_module_expression, - $._extension - ), - - _module_expression: $ => choice( - $._simple_module_expression, - $.module_path, - $.structure, - $.functor, - $.module_application - ), - - _module_expression_ext: $ => choice( - $._module_expression, - $._extension - ), - - structure: $ => seq( - 'struct', - optional($._structure), - 'end' - ), - - functor: $ => prec.right(seq( - 'functor', - repeat1($.module_parameter), - '->', - field('body', $._module_expression_ext), - )), - - module_application: $ => seq( - field('functor', $._module_expression_ext), - choice( - field('argument', $._simple_module_expression_ext), - seq('(', ')') - ) - ), - - typed_module_expression: $ => parenthesize(seq( - $._module_expression_ext, - $._module_typed - )), - - packed_module: $ => parenthesize(seq( - 'val', - $._expression_ext, - optional($._module_typed), - optional(seq(':>', $._module_type_ext)) - )), - - parenthesized_module_expression: $ => parenthesize($._module_expression_ext), - - // Class types - - _class_typed: $ => seq(':', $._class_type_ext), - - _simple_class_type: $ => choice( - $.class_type_path, - $.instantiated_class_type, - $.class_body_type, - $.let_open_class_type - ), - - _simple_class_type_ext: $ => choice( - $._simple_class_type, - $._extension, - ), - - _class_type: $ => choice( - $._simple_class_type, - $.class_function_type - ), - - _class_type_ext: $ => choice( - $._class_type, - $._extension - ), - - instantiated_class_type: $ => seq( - '[', - sep1(',', $._type_ext), - ']', - $.class_type_path - ), - - class_body_type: $ => seq( - 'object', - optional(parenthesize($._type_ext)), - repeat(choice( - $._class_field_specification_ext, - $.floating_attribute - )), - 'end' - ), - - _class_field_specification: $ => choice( - $.inheritance_specification, - $.instance_variable_specification, - $.method_specification, - $.type_parameter_constraint - ), - - _class_field_specification_ext: $ => choice( - $._class_field_specification, - $._item_extension - ), - - inheritance_specification: $ => seq( - 'inherit', - $._simple_class_type_ext, - repeat($.item_attribute) - ), - - instance_variable_specification: $ => seq( - 'val', - repeat(choice('mutable', 'virtual')), - $._instance_variable_name, - $._typed, - repeat($.item_attribute) - ), - - method_specification: $ => seq( - 'method', - repeat(choice('private', 'virtual')), - $._method_name, - $._polymorphic_typed, - repeat($.item_attribute) - ), - - type_parameter_constraint: $ => seq( - 'constraint', - $._type_ext, - '=', - $._type_ext, - repeat($.item_attribute) - ), - - let_open_class_type: $ => prec.right(PREC.match, seq( - 'let', - $.open_module, - 'in', - field('body', $._simple_class_type_ext) - )), - - class_function_type: $ => prec.right(PREC.seq, seq( - optional(seq(optional('?'), $._label_name, ':')), - $._tuple_type_ext, - '->', - $._class_type_ext - )), - - // Class expressions - - _simple_class_expression: $ => choice( - $.class_path, - $.instantiated_class, - $.object_expression, - $.typed_class_expression, - $.parenthesized_class_expression - ), - - _class_expression: $ => choice( - $._simple_class_expression, - $.class_function, - $.class_application, - $.let_class_expression, - $.let_open_class_expression - ), - - _class_expression_ext: $ => choice( - $._class_expression, - $._extension - ), - - instantiated_class: $ => seq( - '[', - sep1(',', $._type_ext), - ']', - $.class_path - ), - - typed_class_expression: $ => seq( - parenthesize(seq( - $._class_expression_ext, - $._class_typed - )) - ), - - class_function: $ => prec.right(PREC.match, seq( - 'fun', - repeat1($._parameter), - '->', - field('body', $._class_expression_ext) - )), - - class_application: $ => prec.right(PREC.app, seq( - field('class', $._simple_class_expression), - repeat1(field('argument', $._argument)) - )), - - let_class_expression: $ => prec.right(PREC.match, seq( - $.value_definition, - 'in', - field('body', $._class_expression_ext) - )), - - _class_field: $ => choice( - $.inheritance_definition, - $.instance_variable_definition, - $.method_definition, - $.type_parameter_constraint, - $.class_initializer - ), - - _class_field_ext: $ => choice( - $._class_field, - $._item_extension - ), - - inheritance_definition: $ => seq( - 'inherit', - optional('!'), - $._class_expression_ext, - optional(seq('as', $._value_pattern)), - repeat($.item_attribute) - ), - - instance_variable_definition: $ => seq( - 'val', - optional('!'), - repeat(choice('mutable', 'virtual')), - field('name', $._instance_variable_name), - optional($._typed), - optional(seq(':>', $._type_ext)), - optional(seq('=', field('body', $._sequence_expression_ext))), - repeat($.item_attribute) - ), - - method_definition: $ => seq( - 'method', - optional('!'), - repeat(choice('private', 'virtual')), - field('name', $._method_name), - repeat($._parameter), - optional($._polymorphic_typed), - optional(seq('=', field('body', $._sequence_expression_ext))), - repeat($.item_attribute) - ), - - class_initializer: $ => seq( - 'initializer', - $._sequence_expression_ext, - repeat($.item_attribute) - ), - - let_open_class_expression: $ => prec.right(PREC.match, seq( - 'let', - $.open_module, - 'in', - field('body', $._class_expression_ext) - )), - - parenthesized_class_expression: $ => seq( - parenthesize($._class_expression_ext) - ), - - // Types - - _typed: $ => seq(':', $._type_ext), - - _simple_typed: $ => seq(':', $._simple_type_ext), - - _polymorphic_typed: $ => seq(':', $._polymorphic_type), - - _polymorphic_type: $ => choice( - $.polymorphic_type, - $._type_ext - ), - - polymorphic_type: $ => seq( - choice( - repeat1($.type_variable), - alias($._abstract_type, $.abstract_type) - ), - '.', - $._type_ext - ), - - _abstract_type: $ => seq( - 'type', - repeat1($._type_constructor) - ), - - _parenthesized_abstract_type: $ => parenthesize($._abstract_type), - - _simple_type: $ => choice( - $.type_variable, - $.type_constructor_path, - $.constructed_type, - $.polymorphic_variant_type, - $.package_type, - $.hash_type, - $.object_type, - $.parenthesized_type - ), - - _simple_type_ext: $ => choice( - $._simple_type, - $._extension - ), - - _tuple_type: $ => choice( - $._simple_type, - $.tuple_type - ), - - _tuple_type_ext: $ => choice( - $._tuple_type, - $._extension - ), - - _type: $ => choice( - $._tuple_type, - $.function_type, - $.aliased_type, - ), - - _type_ext: $ => choice( - $._type, - $._extension - ), - - function_type: $ => prec.right(PREC.seq, seq( - choice($.typed_label, $._type_ext), - '->', - $._type_ext - )), - - typed_label: $ => prec.left(PREC.seq, seq( - optional('?'), - $._label_name, - ':', - $._type_ext - )), - - tuple_type: $ => prec(PREC.prod, seq( - $._tuple_type_ext, - '*', - $._simple_type_ext - )), - - constructed_type: $ => prec(PREC.app, seq( - choice( - $._simple_type_ext, - parenthesize(sep1(',', $._type_ext)) - ), - $.type_constructor_path - )), - - aliased_type: $ => prec(PREC.match, seq( - $._type_ext, - 'as', - $.type_variable - )), - - polymorphic_variant_type: $ => seq( - choice( - seq('[', $.tag_specification, ']'), - seq('[', optional($._tag_spec), '|', sep1('|', $._tag_spec), ']'), - seq('[>', optional('|'), sep('|', $._tag_spec), ']'), - seq('[<', optional('|'), sep1('|', $._tag_spec), optional(seq('>', repeat1($.tag))), ']'), - ) - ), - - _tag_spec: $ => choice( - $._type_ext, - $.tag_specification - ), - - tag_specification: $ => seq( - $.tag, - optional(seq( - 'of', - optional('&'), - sep1('&', $._type_ext) - )) - ), - - package_type: $ => parenthesize(seq( - 'module', - optional($._attribute), - $._module_type_ext - )), - - object_type: $ => seq( - '<', - optional(choice( - seq( - sep1(';', choice( - $.method_type, - $._simple_type_ext - )), - optional(seq(';', optional('..'))) - ), - '..' - )), - '>' - ), - - method_type: $ => seq( - $._method_name, - $._polymorphic_typed - ), - - hash_type: $ => prec(PREC.hash, seq( - optional(choice( - $._simple_type_ext, - parenthesize(sep1(',', $._type_ext)) - )), - '#', - $.class_type_path - )), - - parenthesized_type: $ => parenthesize($._type_ext), - - // Expressions - - _simple_expression: $ => choice( - $.value_path, - $._constant, - $.typed_expression, - $.constructor_path, - $.tag, - $.list_expression, - $.array_expression, - $.record_expression, - $.prefix_expression, - $.hash_expression, - $.field_get_expression, - $.array_get_expression, - $.string_get_expression, - $.bigarray_get_expression, - $.coercion_expression, - $.local_open_expression, - $.package_expression, - $.new_expression, - $.object_copy_expression, - $.method_invocation, - $.object_expression, - $.parenthesized_expression, - $.ocamlyacc_value - ), - - _simple_expression_ext: $ => choice( - $._simple_expression, - $._extension - ), - - _expression: $ => choice( - $._simple_expression, - $.product_expression, - $.cons_expression, - $.application_expression, - $.infix_expression, - $.sign_expression, - $.set_expression, - $.if_expression, - $.while_expression, - $.for_expression, - $.match_expression, - $.function_expression, - $.fun_expression, - $.try_expression, - $.let_expression, - $.assert_expression, - $.lazy_expression, - $.let_module_expression, - $.let_open_expression, - $.let_exception_expression - ), - - _expression_ext: $ => choice( - $._expression, - $._extension - ), - - _sequence_expression: $ => choice( - $._expression, - $.sequence_expression - ), - - _sequence_expression_ext: $ => choice( - $._sequence_expression, - $._extension - ), - - typed_expression: $ => parenthesize(seq( - $._sequence_expression_ext, - $._typed - )), - - product_expression: $ => prec.left(PREC.prod, seq( - field('left', $._expression_ext), - ',', - field('right', $._expression_ext) - )), - - cons_expression: $ => prec.right(PREC.cons, seq( - field('left', $._expression_ext), - '::', - field('right', $._expression_ext) - )), - - list_expression: $ => seq( - '[', - optional(seq( - sep1(';', $._expression_ext), - optional(';') - )), - ']' - ), - - array_expression: $ => seq( - '[|', - optional(seq( - sep1(';', $._expression_ext), - optional(';') - )), - '|]' - ), - - record_expression: $ => seq( - '{', - optional(seq($._simple_expression_ext, 'with')), - sep1(';', $.field_expression), - optional(';'), - '}' - ), - - field_expression: $ => prec(PREC.seq, seq( - field('name', $.field_path), - optional($._typed), - optional(seq('=', field('body', $._expression_ext))) - )), - - application_expression: $ => prec.right(PREC.app, seq( - field('function', $._simple_expression_ext), - repeat1(field('argument', $._argument)) - )), - - _argument: $ => choice( - $._simple_expression_ext, - $.labeled_argument - ), - - labeled_argument: $ => choice( - $._label, - seq( - $._label, - token.immediate(':'), - $._simple_expression_ext - ), - seq( - choice('~', '?'), - '(', - $._label_name, - $._typed, - ')' - ), - ), - - prefix_expression: $ => prec(PREC.prefix, seq( - $.prefix_operator, - field('right', $._simple_expression_ext) - )), - - sign_expression: $ => prec(PREC.neg, seq( - $.sign_operator, - field('right', $._expression_ext) - )), - - hash_expression: $ => prec.left(PREC.hash, seq( - field('left', $._simple_expression_ext), - $.hash_operator, - field('right', $._simple_expression_ext) - )), - - infix_expression: $ => { - const table = [ - { - operator: $._pow_operator, - precedence: PREC.pow, - associativity: 'right' - }, - { - operator: $._mult_operator, - precedence: PREC.mult, - associativity: 'left' - }, - { - operator: $._add_operator, - precedence: PREC.add, - associativity: 'left' - }, - { - operator: $._concat_operator, - precedence: PREC.concat, - associativity: 'right' - }, - { - operator: $._rel_operator, - precedence: PREC.rel, - associativity: 'left' - }, - { - operator: $._and_operator, - precedence: PREC.and, - associativity: 'right' - }, - { - operator: $._or_operator, - precedence: PREC.or, - associativity: 'right' - }, - { - operator: $._assign_operator, - precedence: PREC.assign, - associativity: 'right' - } - ] - - return choice(...table.map(({operator, precedence, associativity}) => - prec[associativity](precedence, seq( - field('left', $._expression_ext), - alias(operator, $.infix_operator), - field('right', $._expression_ext) - )) - )) - }, - - field_get_expression: $ => prec.left(PREC.dot, seq( - $._simple_expression_ext, - '.', - $.field_path - )), - - array_get_expression: $ => prec(PREC.dot, seq( - $._simple_expression_ext, - '.', - optional($.indexing_operator_path), - '(', - $._sequence_expression_ext, - ')' - )), - - string_get_expression: $ => prec(PREC.dot, seq( - $._simple_expression_ext, - '.', - optional($.indexing_operator_path), - '[', - $._sequence_expression_ext, - ']' - )), - - bigarray_get_expression: $ => prec(PREC.dot, seq( - $._simple_expression_ext, - '.', - optional($.indexing_operator_path), - '{', - $._sequence_expression_ext, - '}' - )), - - set_expression: $ => prec.right(PREC.assign, seq( - choice( - $.field_get_expression, - $.array_get_expression, - $.string_get_expression, - $.bigarray_get_expression, - $._instance_variable_name - ), - '<-', - field('body', $._expression_ext) - )), - - if_expression: $ => prec.right(PREC.if, seq( - 'if', - optional($._attribute), - field('condition', $._sequence_expression_ext), - $.then_clause, - optional($.else_clause) - )), - - then_clause: $ => seq( - 'then', - $._expression_ext - ), - - else_clause: $ => seq( - 'else', - $._expression_ext - ), - - while_expression: $ => seq( - 'while', - optional($._attribute), - field('condition', $._sequence_expression_ext), - $.do_clause - ), - - do_clause: $ => seq( - 'do', - optional($._sequence_expression_ext), - 'done' - ), - - for_expression: $ => seq( - 'for', - optional($._attribute), - field('name', $._value_pattern), - '=', - field('from', $._sequence_expression_ext), - choice('to', 'downto'), - field('to', $._sequence_expression_ext), - $.do_clause - ), - - sequence_expression: $ => prec.right(PREC.seq, seq( - field('left', $._expression_ext), - ';', - optional(seq( - optional($._attribute), - field('right', $._sequence_expression_ext) - )) - )), - - match_expression: $ => prec.right(PREC.match, seq( - choice( - seq('match', optional($._attribute)), - $.match_operator - ), - $._sequence_expression_ext, - 'with', - $._match_cases - )), - - _match_cases: $ => prec.right(seq( - optional('|'), - sep1('|', $.match_case) - )), - - match_case: $ => seq( - field('pattern', $._pattern_ext), - optional($.guard), - '->', - field('body', choice($._sequence_expression_ext, $.refutation_case)) - ), - - guard: $ => seq( - 'when', - $._sequence_expression_ext - ), - - refutation_case: $ => '.', - - function_expression: $ => prec.right(PREC.match, seq( - 'function', - optional($._attribute), - $._match_cases - )), - - fun_expression: $ => prec.right(PREC.match, seq( - 'fun', - optional($._attribute), - repeat1($._parameter), - optional($._simple_typed), - '->', - field('body', $._sequence_expression_ext) - )), - - try_expression: $ => prec.right(PREC.match, seq( - 'try', - optional($._attribute), - $._sequence_expression_ext, - 'with', - $._match_cases - )), - - let_expression: $ => prec.right(PREC.match, seq( - $.value_definition, - 'in', - $._sequence_expression_ext - )), - - coercion_expression: $ => parenthesize(seq( - $._sequence_expression_ext, - optional($._typed), - ':>', - $._type_ext - )), - - assert_expression: $ => prec.left(PREC.app, seq( - 'assert', - optional($._attribute), - $._simple_expression_ext - )), - - lazy_expression: $ => prec.left(PREC.app, seq( - 'lazy', - optional($._attribute), - $._simple_expression_ext - )), - - let_module_expression: $ => prec.right(PREC.match, seq( - 'let', - $.module_definition, - 'in', - field('body', $._sequence_expression_ext) - )), - - let_open_expression: $ => prec.right(PREC.match, seq( - 'let', - $.open_module, - 'in', - field('body', $._sequence_expression_ext) - )), - - local_open_expression: $ => seq( - $.module_path, - '.', - choice( - parenthesize(optional($._sequence_expression_ext)), - $.list_expression, - $.array_expression, - $.record_expression, - $.object_copy_expression, - $.package_expression - ) - ), - - package_expression: $ => parenthesize(seq( - 'module', - optional($._attribute), - $._module_expression_ext, - optional($._module_typed) - )), - - let_exception_expression: $ => prec.right(PREC.match, seq( - 'let', - $.exception_definition, - 'in', - field('body', $._sequence_expression_ext) - )), - - new_expression: $ => seq( - 'new', - optional($._attribute), - $.class_path - ), - - object_copy_expression: $ => seq( - '{<', - sep(';', $.instance_variable_expression), - optional(';'), - '>}' - ), - - instance_variable_expression: $ => seq( - $._instance_variable_name, - optional(seq('=', $._expression_ext)) - ), - - method_invocation: $ => prec.right(PREC.hash, seq( - $._simple_expression_ext, - '#', - $._method_name - )), - - object_expression: $ => seq( - 'object', - optional($._attribute), - optional(parenthesize(seq( - $._pattern_ext, - optional($._typed) - ))), - repeat(choice( - $._class_field_ext, - $.floating_attribute - )), - 'end' - ), - - parenthesized_expression: $ => choice( - seq( - 'begin', - optional($._attribute), - $._sequence_expression_ext, - 'end' - ), - parenthesize($._sequence_expression_ext) - ), - - ocamlyacc_value: $ => /\$[0-9]+/, - - // Patterns - - _simple_pattern: $ => choice( - $._value_pattern, - $._signed_constant, - $.typed_pattern, - $.constructor_path, - $.tag, - $.polymorphic_variant_pattern, - $.record_pattern, - $.list_pattern, - $.array_pattern, - $.local_open_pattern, - $.package_pattern, - $.parenthesized_pattern - ), - - _simple_pattern_ext: $ => choice( - $._simple_pattern, - $._extension - ), - - _pattern: $ => choice( - $._simple_pattern, - $.alias_pattern, - $.or_pattern, - $.constructor_pattern, - $.tag_pattern, - $.tuple_pattern, - $.cons_pattern, - $.range_pattern, - $.lazy_pattern, - $.exception_pattern - ), - - _pattern_ext: $ => choice( - $._pattern, - $._extension - ), - - _binding_pattern: $ => choice( - $._value_name, - $._signed_constant, - alias($.typed_binding_pattern, $.typed_pattern), - $.constructor_path, - $.tag, - $.polymorphic_variant_pattern, - alias($.record_binding_pattern, $.record_pattern), - alias($.list_binding_pattern, $.list_pattern), - alias($.array_binding_pattern, $.array_pattern), - alias($.local_open_binding_pattern, $.local_open_pattern), - $.package_pattern, - alias($.parenthesized_binding_pattern, $.parenthesized_pattern), - alias($.alias_binding_pattern, $.alias_pattern), - alias($.or_binding_pattern, $.or_pattern), - alias($.constructor_binding_pattern, $.constructor_pattern), - alias($.tag_binding_pattern, $.tag_pattern), - alias($.tuple_binding_pattern, $.tuple_pattern), - alias($.cons_binding_pattern, $.cons_pattern), - $.range_pattern, - alias($.lazy_binding_pattern, $.lazy_pattern) - ), - - _binding_pattern_ext: $ => choice( - $._binding_pattern, - $._extension - ), - - alias_pattern: $ => prec.left(PREC.match, seq( - $._pattern_ext, - 'as', - $._value_pattern - )), - - alias_binding_pattern: $ => prec.left(PREC.match, seq( - $._binding_pattern_ext, - 'as', - $._value_name - )), - - typed_pattern: $ => seq( - parenthesize(seq( - $._pattern_ext, - $._typed - )) - ), - - typed_binding_pattern: $ => seq( - parenthesize(seq( - field('pattern', $._binding_pattern_ext), - $._typed - )) - ), - - or_pattern: $ => prec.left(PREC.seq, seq( - $._pattern_ext, - '|', - $._pattern_ext - )), - - or_binding_pattern: $ => prec.left(PREC.seq, seq( - $._binding_pattern_ext, - '|', - $._binding_pattern_ext - )), - - constructor_pattern: $ => prec.right(PREC.app, seq( - $.constructor_path, - optional(alias($._parenthesized_abstract_type, $.abstract_type)), - $._pattern_ext - )), - - constructor_binding_pattern: $ => prec.right(PREC.app, seq( - $.constructor_path, - field('pattern', $._binding_pattern_ext) - )), - - tag_pattern: $ => prec.right(PREC.app, seq( - $.tag, - $._pattern_ext - )), - - tag_binding_pattern: $ => prec.right(PREC.app, seq( - $.tag, - field('pattern', $._binding_pattern_ext) - )), - - polymorphic_variant_pattern: $ => seq( - '#', - $.type_constructor_path - ), - - tuple_pattern: $ => prec.left(PREC.prod, seq( - $._pattern_ext, - ',', - $._pattern_ext - )), - - tuple_binding_pattern: $ => prec.left(PREC.prod, seq( - $._binding_pattern_ext, - ',', - $._binding_pattern_ext - )), - - record_pattern: $ => prec.left(seq( - '{', - sep1(';', $.field_pattern), - optional(seq(';', '_')), - optional(';'), - '}' - )), - - field_pattern: $ => seq( - $.field_path, - optional($._typed), - optional(seq('=', $._pattern_ext)) - ), - - record_binding_pattern: $ => prec.left(seq( - '{', - sep1(';', alias($.field_binding_pattern, $.field_pattern)), - optional(seq(';', '_')), - optional(';'), - '}' - )), - - field_binding_pattern: $ => seq( - $.field_path, - optional($._typed), - optional(seq('=', field('pattern', $._binding_pattern_ext))) - ), - - list_pattern: $ => prec.left(seq( - '[', - optional(seq( - sep1(';', $._pattern_ext), - optional(';') - )), - ']' - )), - - list_binding_pattern: $ => prec.left(seq( - '[', - optional(seq( - sep1(';', $._binding_pattern_ext), - optional(';') - )), - ']' - )), - - cons_pattern: $ => prec.right(PREC.cons, seq( - $._pattern_ext, - '::', - $._pattern_ext - )), - - cons_binding_pattern: $ => prec.right(PREC.cons, seq( - $._binding_pattern_ext, - '::', - $._binding_pattern_ext - )), - - array_pattern: $ => prec.left(seq( - '[|', - optional(seq( - sep1(';', $._pattern_ext), - optional(';') - )), - '|]' - )), - - array_binding_pattern: $ => prec.left(seq( - '[|', - optional(seq( - sep1(';', $._binding_pattern_ext), - optional(';') - )), - '|]' - )), - - range_pattern: $ => prec(PREC.dot, seq( - $._signed_constant, - '..', - $._signed_constant - )), - - lazy_pattern: $ => prec(PREC.hash, seq( - 'lazy', - optional($._attribute), - $._pattern_ext - )), - - lazy_binding_pattern: $ => prec(PREC.hash, seq( - 'lazy', - optional($._attribute), - $._binding_pattern_ext - )), - - local_open_pattern: $ => seq( - $.module_path, - '.', - choice( - parenthesize(optional($._pattern_ext)), - $.list_pattern, - $.array_pattern, - $.record_pattern - ) - ), - - local_open_binding_pattern: $ => seq( - $.module_path, - '.', - choice( - parenthesize(optional($._binding_pattern_ext)), - $.list_binding_pattern, - $.array_binding_pattern, - $.record_binding_pattern - ) - ), - - package_pattern: $ => parenthesize(seq( - 'module', - optional($._attribute), - choice($._module_name, alias('_', $.module_name)), - optional($._module_typed) - )), - - parenthesized_pattern: $ => parenthesize($._pattern_ext), - - parenthesized_binding_pattern: $ => parenthesize($._binding_pattern_ext), - - exception_pattern: $ => seq( - 'exception', - optional($._attribute), - $._pattern_ext - ), - - // Attributes and extensions - - attribute: $ => seq( - '[@', - $.attribute_id, - optional($.attribute_payload), - ']' - ), - - item_attribute: $ => seq( - '[@@', - $.attribute_id, - optional($.attribute_payload), - ']' - ), - - floating_attribute: $ => seq( - '[@@@', - $.attribute_id, - optional($.attribute_payload), - ']' - ), - - attribute_payload: $ => choice( - $._structure, - seq(':', optional(choice($._type_ext, $._signature))), - seq( - '?', - $._pattern_ext, - optional($.guard) - ) - ), - - _extension: $ => choice( - $.extension, - $.quoted_extension - ), - - extension: $ => seq( - '[%', - $.attribute_id, - optional($.attribute_payload), - ']' - ), - - quoted_extension: $ => seq( - '{%', - $.attribute_id, - optional(/\s+/), - $._quoted_string, - '}' - ), - - _item_extension: $ => choice( - $.item_extension, - $.quoted_item_extension - ), - - item_extension: $ => seq( - '[%%', - $.attribute_id, - optional($.attribute_payload), - ']', - repeat($.item_attribute) - ), - - quoted_item_extension: $ => seq( - '{%%', - $.attribute_id, - optional(/\s+/), - $._quoted_string, - '}', - repeat($.item_attribute) - ), - - _attribute: $ => seq('%', $.attribute_id), - - // Constants - - _constant: $ => choice( - $.number, - $.character, - $.string, - $.quoted_string, - $.boolean, - $.unit - ), - - _signed_constant: $ => choice( - $._constant, - $.signed_number - ), - - number: $ => NUMBER, - - signed_number: $ => seq( - choice('+', '-'), - NUMBER - ), - - character: $ => seq("'", $.character_content, "'"), - - character_content: $ => choice( - /[^\\']/, - $._null, - $.escape_sequence - ), - - string: $ => seq('"', optional($.string_content), '"'), - - string_content: $ => repeat1(choice( - token.immediate(' '), - token.immediate('\n'), - token.immediate('\t'), - token.immediate('[@'), - token.immediate('[@@'), - token.immediate('[@@@'), - /[^\\"%@]+|%|@/, - $._null, - $.escape_sequence, - alias(/\\u\{[0-9A-Fa-f]+\}/, $.escape_sequence), - alias(/\\\n[\t ]*/, $.escape_sequence), - $.conversion_specification, - $.pretty_printing_indication - )), - - quoted_string: $ => seq('{', $._quoted_string, '}'), - - _quoted_string: $ => seq( - $._left_quoted_string_delimiter, - optional($.quoted_string_content), - $._right_quoted_string_delimiter, - ), - - quoted_string_content: $ => repeat1(choice( - token.immediate(' '), - token.immediate('\n'), - token.immediate('\t'), - token.immediate('[@'), - token.immediate('[@@'), - token.immediate('[@@@'), - /[^%@|]+|%|@|\|/, - $._null, - $.conversion_specification, - $.pretty_printing_indication - )), - - escape_sequence: $ => choice( - /\\[\\"'ntbr ]/, - /\\[0-9][0-9][0-9]/, - /\\x[0-9A-Fa-f][0-9A-Fa-f]/, - /\\o[0-3][0-7][0-7]/ - ), - - conversion_specification: $ => token(seq( - '%', - optional(/[\-0+ #]/), - optional(/[1-9][0-9]*|\*/), - optional(/\.([0-9]*|\*)/), - choice( - /[diunlLNxXosScCfFeEgGhHbBat!%@,]/, - /[lnL][diuxXo]/ - ) - )), - - pretty_printing_indication: $ => /@([\[\], ;.{}?]|\\n|<[0-9]+>)/, - - boolean: $ => choice('true', 'false'), - - unit: $ => choice( - seq('(', ')'), - seq('begin', 'end') - ), - - // Operators - - prefix_operator: $ => token(choice( - seq('!', choice(optional(/[#!$%&*+\-./:<>?@^|~]/), repeat2(HASH_OP_CHAR))), - seq(/[~?]/, repeat1(HASH_OP_CHAR)) - )), - - sign_operator: $ => choice('+', '-', '+.', '-.'), - - infix_operator: $ => choice( - $._pow_operator, - $._mult_operator, - $._add_operator, - $._concat_operator, - $._rel_operator, - $._and_operator, - $._or_operator, - $._assign_operator - ), - - hash_operator: $ => token(seq('#', repeat1(HASH_OP_CHAR))), - - _pow_operator: $ => choice( - token(seq('**', repeat(OP_CHAR))), - 'lsl', 'lsr', 'asr' - ), - - _mult_operator: $ => choice( - token(seq(/[*/%]/, repeat(OP_CHAR))), - 'mod', 'land', 'lor', 'lxor' - ), - - _add_operator: $ => choice( - '+', '-', '+.', '-.', - token(choice( - seq('+', repeat1(OP_CHAR)), - seq('-', choice(repeat1(/[!$%&*+\-./:<=?@^|~]/), repeat2(OP_CHAR))) - )) - ), - - _concat_operator: $ => token( - seq(/[@^]/, repeat(OP_CHAR)) - ), - - _rel_operator: $ => token(choice( - seq(/[=>$]/, repeat(OP_CHAR)), - seq('<', choice(optional(/[!$%&*+./:<=>?@^|~]/), repeat2(OP_CHAR))), - seq('&', choice(/[!$%*+\-./:<=>?@^|~]/, repeat2(OP_CHAR))), - seq('|', choice(/[!$%&*+\-./:<=>?@^~]/, repeat2(OP_CHAR))), - '!=' - )), - - _and_operator: $ => choice('&', '&&'), - - _or_operator: $ => choice('or', '||'), - - _assign_operator: $ => choice(':='), - - indexing_operator: $ => token( - seq(/[!$%&*+\-/:=>?@^|]/, repeat(OP_CHAR)) - ), - - indexing_operator_path: $ => path($.module_path, $.indexing_operator), - - let_operator: $ => token( - seq('let', /[$&*+\-/<=>@^|]/, repeat(OP_CHAR)) - ), - - and_operator: $ => token( - seq('and', /[$&*+\-/<=>@^|]/, repeat(OP_CHAR)) - ), - - match_operator: $ => token( - seq('match', /[$&*+\-/<=>@^|]/, repeat(OP_CHAR)) - ), - - // Names - - _value_name: $ => choice( - alias($._identifier, $.value_name), - $.parenthesized_operator - ), - - _value_pattern: $ => choice( - alias($._identifier, $.value_pattern), - $.parenthesized_operator - ), - - parenthesized_operator: $ => parenthesize(choice( - $.prefix_operator, - $.infix_operator, - $.hash_operator, - seq( - '.', - $.indexing_operator, - choice( - seq('(', optional(seq(';', '..')), ')'), - seq('[', optional(seq(';', '..')), ']'), - seq('{', optional(seq(';', '..')), '}') - ), - optional('<-') - ), - $.let_operator, - $.and_operator, - $.match_operator - )), - - value_path: $ => path($.module_path, $._value_name), - - module_path: $ => prec(1, path($.module_path, $._module_name)), - - extended_module_path: $ => choice( - path($.extended_module_path, $._module_name), - seq( - $.extended_module_path, - parenthesize($.extended_module_path) - ) - ), - - module_type_path: $ => path($.extended_module_path, $._module_type_name), - - field_path: $ => path($.module_path, $._field_name), - - constructor_path: $ => path($.module_path, $._constructor_name), - - type_constructor_path: $ => prec(1, path($.extended_module_path, $._type_constructor)), - - class_path: $ => path($.module_path, $._class_name), - - class_type_path: $ => path($.extended_module_path, $._class_type_name), - - _label_name: $ => alias($._identifier, $.label_name), - _field_name: $ => alias($._identifier, $.field_name), - _class_name: $ => alias($._identifier, $.class_name), - _class_type_name: $ => alias($._identifier, $.class_type_name), - _method_name: $ => alias($._identifier, $.method_name), - _type_constructor: $ => alias($._identifier, $.type_constructor), - _instance_variable_name: $ => alias($._identifier, $.instance_variable_name), - - _module_name: $ => alias($._capitalized_identifier, $.module_name), - _module_type_name: $ => alias(choice($._capitalized_identifier, $._identifier), $.module_type_name), - _constructor_name: $ => choice( - alias($._capitalized_identifier, $.constructor_name), - parenthesize(alias('::', $.constructor_name)) - ), - - _identifier: $ => /[a-z_][a-zA-Z0-9_']*/, - _capitalized_identifier: $ => /[A-Z][a-zA-Z0-9_']*/, - - _label: $ => seq(choice('~', '?'), $._label_name), - directive: $ => seq(/#/, choice($._identifier, $._capitalized_identifier)), - type_variable: $ => seq(/'/, choice($._identifier, $._capitalized_identifier)), - tag: $ => seq(/`/, choice($._identifier, $._capitalized_identifier)), - attribute_id: $ => sep1(/\./, choice($._identifier, $._capitalized_identifier)) - }, - - externals: $ => [ - $.comment, - $._left_quoted_string_delimiter, - $._right_quoted_string_delimiter, - '"', - $.line_number_directive, - $._null - ] -}) - -function sep(delimiter, rule) { - return optional(sep1(delimiter, rule)) -} - -function sep1(delimiter, rule) { - return seq(rule, repeat(seq(delimiter, rule))) -} - -function repeat2(rule) { - return seq(rule, repeat1(rule)) -} - -function parenthesize(rule) { - return seq('(', rule, ')') -} - -function path(prefix, final) { - return choice(final, seq(prefix, '.', final)) -} diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/package.json b/vendored_parsers/tree-sitter-ocaml/ocaml/package.json deleted file mode 100644 index d7b8bb340..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "main": "../bindings/node/ocaml" -} diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/src/grammar.json b/vendored_parsers/tree-sitter-ocaml/ocaml/src/grammar.json deleted file mode 100644 index f37baf8a9..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/src/grammar.json +++ /dev/null @@ -1,10900 +0,0 @@ -{ - "name": "ocaml", - "word": "_identifier", - "rules": { - "compilation_unit": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "shebang" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "shebang": { - "type": "PATTERN", - "value": "#!.*" - }, - "_structure": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item_ext" - }, - { - "type": "SYMBOL", - "name": "toplevel_directive" - }, - { - "type": "SYMBOL", - "name": "expression_item" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item_ext" - }, - { - "type": "SYMBOL", - "name": "toplevel_directive" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SYMBOL", - "name": "expression_item" - } - ] - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - } - ] - } - ] - }, - "expression_item": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_signature": { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - }, - { - "type": "SYMBOL", - "name": "_signature_item_ext" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "STRING", - "value": ";;" - } - } - ] - } - ] - }, - "toplevel_directive": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "directive" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "value_path" - }, - { - "type": "SYMBOL", - "name": "module_path" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_structure_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "SYMBOL", - "name": "external" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "SYMBOL", - "name": "module_type_definition" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "SYMBOL", - "name": "include_module" - }, - { - "type": "SYMBOL", - "name": "class_definition" - }, - { - "type": "SYMBOL", - "name": "class_type_definition" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - }, - "_structure_item_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure_item" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "value_definition": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "rec" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "let_operator" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "let_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "and_operator" - } - ] - }, - { - "type": "SYMBOL", - "name": "let_binding" - } - ] - } - } - ] - } - ] - }, - "let_binding": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - } - }, - "_parameter": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_abstract_type" - }, - "named": true, - "value": "abstract_type" - } - ] - }, - "parameter": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_simple_pattern_ext" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_simple_pattern_ext" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "external": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "external" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "string" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "nonrec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "type_binding" - } - ] - } - } - ] - } - ] - }, - "type_binding": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_params" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_type_constructor" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_equation" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "variant_declaration" - }, - { - "type": "SYMBOL", - "name": "record_declaration" - }, - { - "type": "STRING", - "value": ".." - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_constraint" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "type_constructor_path" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+=" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "variant_declaration" - } - } - ] - } - ] - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_type_params": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_type_param": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_variable" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "type_variable" - } - ] - } - ] - }, - "_type_equation": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "variant_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - } - ] - } - } - ] - } - ] - }, - "constructor_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_name" - }, - { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "named": true, - "value": "constructor_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "of" - }, - { - "type": "SYMBOL", - "name": "_constructor_argument" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "type_variable" - } - }, - { - "type": "STRING", - "value": "." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_argument" - }, - { - "type": "STRING", - "value": "->" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "_constructor_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - } - ] - }, - { - "type": "SYMBOL", - "name": "record_declaration" - } - ] - }, - "record_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_declaration" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "field_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_field_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - } - ] - }, - "type_constraint": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "constraint" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "exception_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "exception" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "constructor_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "module_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "rec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "module_binding" - } - ] - } - } - ] - } - ] - }, - "module_binding": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "module_parameter": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_module_typed" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "module_type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_module_type_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_type_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "open_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "open" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "include_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "include" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "class_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "class_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "class_binding" - } - ] - } - } - ] - } - ] - }, - "class_binding": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "virtual" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - } - }, - "class_type_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "class" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "class_type_binding" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "SYMBOL", - "name": "class_type_binding" - } - ] - } - } - ] - } - ] - }, - "class_type_binding": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "virtual" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_param" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_param" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_class_type_name" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_signature_item": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_specification" - }, - { - "type": "SYMBOL", - "name": "external" - }, - { - "type": "SYMBOL", - "name": "type_definition" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "SYMBOL", - "name": "module_type_definition" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "SYMBOL", - "name": "include_module_type" - }, - { - "type": "SYMBOL", - "name": "class_definition" - }, - { - "type": "SYMBOL", - "name": "class_type_definition" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - }, - "_signature_item_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_signature_item" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "value_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "include_module_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "include" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_module_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - "_module_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "module_type_path" - }, - { - "type": "SYMBOL", - "name": "signature" - }, - { - "type": "SYMBOL", - "name": "module_type_constraint" - }, - { - "type": "SYMBOL", - "name": "module_type_of" - }, - { - "type": "SYMBOL", - "name": "functor_type" - }, - { - "type": "SYMBOL", - "name": "parenthesized_module_type" - } - ] - }, - "_module_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "signature": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "sig" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_signature" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "module_type_constraint": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constrain_type" - }, - { - "type": "SYMBOL", - "name": "constrain_module" - }, - { - "type": "SYMBOL", - "name": "constrain_module_type" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "constrain_type" - }, - { - "type": "SYMBOL", - "name": "constrain_module" - }, - { - "type": "SYMBOL", - "name": "constrain_module_type" - } - ] - } - ] - } - } - ] - } - ] - } - }, - "constrain_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_params" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - }, - { - "type": "SYMBOL", - "name": "_type_equation" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "type_constraint" - } - } - ] - }, - "constrain_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "SYMBOL", - "name": "extended_module_path" - } - ] - }, - "constrain_module_type": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "SYMBOL", - "name": "module_type_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "STRING", - "value": ":=" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - } - }, - "module_type_of": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "STRING", - "value": "of" - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - ] - }, - "functor_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "functor" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - } - }, - "parenthesized_module_type": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_simple_module_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "typed_module_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_module_expression" - }, - { - "type": "SYMBOL", - "name": "packed_module" - } - ] - }, - "_simple_module_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_module_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_module_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_module_expression" - }, - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "SYMBOL", - "name": "structure" - }, - { - "type": "SYMBOL", - "name": "functor" - }, - { - "type": "SYMBOL", - "name": "module_application" - } - ] - }, - "_module_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "structure": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "functor": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "functor" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "module_parameter" - } - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - } - ] - } - }, - "module_application": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "functor", - "content": { - "type": "SYMBOL", - "name": "_module_expression_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_simple_module_expression_ext" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "typed_module_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_module_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "packed_module": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_module_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_class_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_class_type_ext" - } - ] - }, - "_simple_class_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class_type_path" - }, - { - "type": "SYMBOL", - "name": "instantiated_class_type" - }, - { - "type": "SYMBOL", - "name": "class_body_type" - }, - { - "type": "SYMBOL", - "name": "let_open_class_type" - } - ] - }, - "_simple_class_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_class_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_type" - }, - { - "type": "SYMBOL", - "name": "class_function_type" - } - ] - }, - "_class_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "instantiated_class_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "class_type_path" - } - ] - }, - "class_body_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "object" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_specification_ext" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - } - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "_class_field_specification": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inheritance_specification" - }, - { - "type": "SYMBOL", - "name": "instance_variable_specification" - }, - { - "type": "SYMBOL", - "name": "method_specification" - }, - { - "type": "SYMBOL", - "name": "type_parameter_constraint" - } - ] - }, - "_class_field_specification_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_specification" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "inheritance_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "inherit" - }, - { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "instance_variable_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_instance_variable_name" - }, - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "method_specification": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "method" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "_method_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "type_parameter_constraint": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "constraint" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "let_open_class_type": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_simple_class_type_ext" - } - } - ] - } - }, - "class_function_type": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_tuple_type_ext" - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_class_type_ext" - } - ] - } - }, - "_simple_class_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "class_path" - }, - { - "type": "SYMBOL", - "name": "instantiated_class" - }, - { - "type": "SYMBOL", - "name": "object_expression" - }, - { - "type": "SYMBOL", - "name": "typed_class_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_class_expression" - } - ] - }, - "_class_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_class_expression" - }, - { - "type": "SYMBOL", - "name": "class_function" - }, - { - "type": "SYMBOL", - "name": "class_application" - }, - { - "type": "SYMBOL", - "name": "let_class_expression" - }, - { - "type": "SYMBOL", - "name": "let_open_class_expression" - } - ] - }, - "_class_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "instantiated_class": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "SYMBOL", - "name": "class_path" - } - ] - }, - "typed_class_expression": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_class_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "class_function": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fun" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "class_application": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "class", - "content": { - "type": "SYMBOL", - "name": "_simple_class_expression" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_argument" - } - } - } - ] - } - }, - "let_class_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "_class_field": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "inheritance_definition" - }, - { - "type": "SYMBOL", - "name": "instance_variable_definition" - }, - { - "type": "SYMBOL", - "name": "method_definition" - }, - { - "type": "SYMBOL", - "name": "type_parameter_constraint" - }, - { - "type": "SYMBOL", - "name": "class_initializer" - } - ] - }, - "_class_field_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field" - }, - { - "type": "SYMBOL", - "name": "_item_extension" - } - ] - }, - "inheritance_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "inherit" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_pattern" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "instance_variable_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "val" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "mutable" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_instance_variable_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "method_definition": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "method" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "private" - }, - { - "type": "STRING", - "value": "virtual" - } - ] - } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_method_name" - } - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "class_initializer": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "initializer" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "let_open_class_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_class_expression_ext" - } - } - ] - } - }, - "parenthesized_class_expression": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_class_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "_simple_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - "_polymorphic_typed": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_type" - } - ] - }, - "_polymorphic_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "polymorphic_type" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "polymorphic_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "type_variable" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_abstract_type" - }, - "named": true, - "value": "abstract_type" - } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - "_abstract_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "type" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_type_constructor" - } - } - ] - }, - "_parenthesized_abstract_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_abstract_type" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_simple_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_variable" - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - }, - { - "type": "SYMBOL", - "name": "constructed_type" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_type" - }, - { - "type": "SYMBOL", - "name": "package_type" - }, - { - "type": "SYMBOL", - "name": "hash_type" - }, - { - "type": "SYMBOL", - "name": "object_type" - }, - { - "type": "SYMBOL", - "name": "parenthesized_type" - } - ] - }, - "_simple_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_tuple_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type" - }, - { - "type": "SYMBOL", - "name": "tuple_type" - } - ] - }, - "_tuple_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_type": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "aliased_type" - } - ] - }, - "_type_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "function_type": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "typed_label" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - }, - "typed_label": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - }, - "tuple_type": { - "type": "PREC", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tuple_type_ext" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - }, - "constructed_type": { - "type": "PREC", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - } - ] - } - }, - "aliased_type": { - "type": "PREC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "type_variable" - } - ] - } - }, - "polymorphic_variant_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "tag_specification" - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[>" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_tag_spec" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_tag_spec" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ">" - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "tag" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - ] - } - ] - }, - "_tag_spec": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "SYMBOL", - "name": "tag_specification" - } - ] - }, - "tag_specification": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "of" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "package_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_type_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "object_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "method_type" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "method_type" - }, - { - "type": "SYMBOL", - "name": "_simple_type_ext" - } - ] - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">" - } - ] - }, - "method_type": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_method_name" - }, - { - "type": "SYMBOL", - "name": "_polymorphic_typed" - } - ] - }, - "hash_type": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_type_ext" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "class_type_path" - } - ] - } - }, - "parenthesized_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "_simple_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "value_path" - }, - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "typed_expression" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "list_expression" - }, - { - "type": "SYMBOL", - "name": "array_expression" - }, - { - "type": "SYMBOL", - "name": "record_expression" - }, - { - "type": "SYMBOL", - "name": "prefix_expression" - }, - { - "type": "SYMBOL", - "name": "hash_expression" - }, - { - "type": "SYMBOL", - "name": "field_get_expression" - }, - { - "type": "SYMBOL", - "name": "array_get_expression" - }, - { - "type": "SYMBOL", - "name": "string_get_expression" - }, - { - "type": "SYMBOL", - "name": "bigarray_get_expression" - }, - { - "type": "SYMBOL", - "name": "coercion_expression" - }, - { - "type": "SYMBOL", - "name": "local_open_expression" - }, - { - "type": "SYMBOL", - "name": "package_expression" - }, - { - "type": "SYMBOL", - "name": "new_expression" - }, - { - "type": "SYMBOL", - "name": "object_copy_expression" - }, - { - "type": "SYMBOL", - "name": "method_invocation" - }, - { - "type": "SYMBOL", - "name": "object_expression" - }, - { - "type": "SYMBOL", - "name": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "ocamlyacc_value" - } - ] - }, - "_simple_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression" - }, - { - "type": "SYMBOL", - "name": "product_expression" - }, - { - "type": "SYMBOL", - "name": "cons_expression" - }, - { - "type": "SYMBOL", - "name": "application_expression" - }, - { - "type": "SYMBOL", - "name": "infix_expression" - }, - { - "type": "SYMBOL", - "name": "sign_expression" - }, - { - "type": "SYMBOL", - "name": "set_expression" - }, - { - "type": "SYMBOL", - "name": "if_expression" - }, - { - "type": "SYMBOL", - "name": "while_expression" - }, - { - "type": "SYMBOL", - "name": "for_expression" - }, - { - "type": "SYMBOL", - "name": "match_expression" - }, - { - "type": "SYMBOL", - "name": "function_expression" - }, - { - "type": "SYMBOL", - "name": "fun_expression" - }, - { - "type": "SYMBOL", - "name": "try_expression" - }, - { - "type": "SYMBOL", - "name": "let_expression" - }, - { - "type": "SYMBOL", - "name": "assert_expression" - }, - { - "type": "SYMBOL", - "name": "lazy_expression" - }, - { - "type": "SYMBOL", - "name": "let_module_expression" - }, - { - "type": "SYMBOL", - "name": "let_open_expression" - }, - { - "type": "SYMBOL", - "name": "let_exception_expression" - } - ] - }, - "_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_sequence_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "sequence_expression" - } - ] - }, - "_sequence_expression_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "typed_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "product_expression": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "cons_expression": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "list_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "array_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - }, - "record_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "with" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_expression" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "field_expression": { - "type": "PREC", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "field_path" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "application_expression": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - }, - { - "type": "REPEAT1", - "content": { - "type": "FIELD", - "name": "argument", - "content": { - "type": "SYMBOL", - "name": "_argument" - } - } - } - ] - } - }, - "_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "SYMBOL", - "name": "labeled_argument" - } - ] - }, - "labeled_argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_label" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_label_name" - }, - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "prefix_expression": { - "type": "PREC", - "value": 19, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "prefix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - } - ] - } - }, - "sign_expression": { - "type": "PREC", - "value": 15, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "sign_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "hash_expression": { - "type": "PREC_LEFT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "hash_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - } - ] - } - }, - "infix_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_RIGHT", - "value": 14, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_pow_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 13, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_mult_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 12, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_add_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_concat_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_rel_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_and_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_or_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_assign_operator" - }, - "named": true, - "value": "infix_operator" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - } - ] - }, - "field_get_expression": { - "type": "PREC_LEFT", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "field_path" - } - ] - } - }, - "array_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "string_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "[" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "bigarray_get_expression": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator_path" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "set_expression": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "field_get_expression" - }, - { - "type": "SYMBOL", - "name": "array_get_expression" - }, - { - "type": "SYMBOL", - "name": "string_get_expression" - }, - { - "type": "SYMBOL", - "name": "bigarray_get_expression" - }, - { - "type": "SYMBOL", - "name": "_instance_variable_name" - } - ] - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - } - ] - } - }, - "if_expression": { - "type": "PREC_RIGHT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "then_clause" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_clause" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "then_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "then" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - "else_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - "while_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "while" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "do_clause" - } - ] - }, - "do_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "do" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "done" - } - ] - }, - "for_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_value_pattern" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "from", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "to" - }, - { - "type": "STRING", - "value": "downto" - } - ] - }, - { - "type": "FIELD", - "name": "to", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - }, - { - "type": "SYMBOL", - "name": "do_clause" - } - ] - }, - "sequence_expression": { - "type": "PREC_RIGHT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression_ext" - } - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "match_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "match_operator" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "_match_cases": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "match_case" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "match_case" - } - ] - } - } - ] - } - ] - } - }, - "match_case": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_pattern_ext" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "guard" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "SYMBOL", - "name": "refutation_case" - } - ] - } - } - ] - }, - "guard": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "when" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - }, - "refutation_case": { - "type": "STRING", - "value": "." - }, - "function_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "function" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "fun_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fun" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "_parameter" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "->" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "try_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "try" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "with" - }, - { - "type": "SYMBOL", - "name": "_match_cases" - } - ] - } - }, - "let_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - ] - } - }, - "coercion_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ":>" - }, - { - "type": "SYMBOL", - "name": "_type_ext" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "assert_expression": { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "assert" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - } - }, - "lazy_expression": { - "type": "PREC_LEFT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - } - ] - } - }, - "let_module_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "module_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "let_open_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "open_module" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "local_open_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_expression" - }, - { - "type": "SYMBOL", - "name": "array_expression" - }, - { - "type": "SYMBOL", - "name": "record_expression" - }, - { - "type": "SYMBOL", - "name": "object_copy_expression" - }, - { - "type": "SYMBOL", - "name": "package_expression" - } - ] - } - ] - }, - "package_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_module_expression_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "let_exception_expression": { - "type": "PREC_RIGHT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "SYMBOL", - "name": "exception_definition" - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - } - } - ] - } - }, - "new_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "new" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "class_path" - } - ] - }, - "object_copy_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "instance_variable_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "instance_variable_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ">}" - } - ] - }, - "instance_variable_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_instance_variable_name" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_expression_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "method_invocation": { - "type": "PREC_RIGHT", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_expression_ext" - }, - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "_method_name" - } - ] - } - }, - "object_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "object" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_field_ext" - }, - { - "type": "SYMBOL", - "name": "floating_attribute" - } - ] - } - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - "parenthesized_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "begin" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": "end" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_sequence_expression_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "ocamlyacc_value": { - "type": "PATTERN", - "value": "\\$[0-9]+" - }, - "_simple_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_pattern" - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "SYMBOL", - "name": "typed_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_pattern" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - }, - { - "type": "SYMBOL", - "name": "list_pattern" - }, - { - "type": "SYMBOL", - "name": "array_pattern" - }, - { - "type": "SYMBOL", - "name": "local_open_pattern" - }, - { - "type": "SYMBOL", - "name": "package_pattern" - }, - { - "type": "SYMBOL", - "name": "parenthesized_pattern" - } - ] - }, - "_simple_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_simple_pattern" - }, - { - "type": "SYMBOL", - "name": "alias_pattern" - }, - { - "type": "SYMBOL", - "name": "or_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_pattern" - }, - { - "type": "SYMBOL", - "name": "tag_pattern" - }, - { - "type": "SYMBOL", - "name": "tuple_pattern" - }, - { - "type": "SYMBOL", - "name": "cons_pattern" - }, - { - "type": "SYMBOL", - "name": "range_pattern" - }, - { - "type": "SYMBOL", - "name": "lazy_pattern" - }, - { - "type": "SYMBOL", - "name": "exception_pattern" - } - ] - }, - "_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "_binding_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "typed_binding_pattern" - }, - "named": true, - "value": "typed_pattern" - }, - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "polymorphic_variant_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "record_binding_pattern" - }, - "named": true, - "value": "record_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "list_binding_pattern" - }, - "named": true, - "value": "list_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "array_binding_pattern" - }, - "named": true, - "value": "array_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "local_open_binding_pattern" - }, - "named": true, - "value": "local_open_pattern" - }, - { - "type": "SYMBOL", - "name": "package_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "parenthesized_binding_pattern" - }, - "named": true, - "value": "parenthesized_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "alias_binding_pattern" - }, - "named": true, - "value": "alias_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "or_binding_pattern" - }, - "named": true, - "value": "or_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "constructor_binding_pattern" - }, - "named": true, - "value": "constructor_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "tag_binding_pattern" - }, - "named": true, - "value": "tag_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "tuple_binding_pattern" - }, - "named": true, - "value": "tuple_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "cons_binding_pattern" - }, - "named": true, - "value": "cons_pattern" - }, - { - "type": "SYMBOL", - "name": "range_pattern" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "lazy_binding_pattern" - }, - "named": true, - "value": "lazy_pattern" - } - ] - }, - "_binding_pattern_ext": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "_extension" - } - ] - }, - "alias_pattern": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_pattern" - } - ] - } - }, - "alias_binding_pattern": { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "_value_name" - } - ] - } - }, - "typed_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "typed_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - }, - { - "type": "SYMBOL", - "name": "_typed" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "or_pattern": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "or_binding_pattern": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "constructor_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_parenthesized_abstract_type" - }, - "named": true, - "value": "abstract_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "constructor_binding_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "constructor_path" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - } - }, - "tag_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "tag_binding_pattern": { - "type": "PREC_RIGHT", - "value": 16, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "tag" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - } - }, - "polymorphic_variant_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "SYMBOL", - "name": "type_constructor_path" - } - ] - }, - "tuple_pattern": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "tuple_binding_pattern": { - "type": "PREC_LEFT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "record_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "field_pattern" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "field_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "record_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "field_binding_pattern" - }, - "named": true, - "value": "field_pattern" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "field_binding_pattern" - }, - "named": true, - "value": "field_pattern" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "field_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "field_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_typed" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "pattern", - "content": { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "list_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "list_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "cons_pattern": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "cons_binding_pattern": { - "type": "PREC_RIGHT", - "value": 11, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": "::" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "array_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - } - }, - "array_binding_pattern": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|]" - } - ] - } - }, - "range_pattern": { - "type": "PREC", - "value": 18, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_signed_constant" - }, - { - "type": "STRING", - "value": ".." - }, - { - "type": "SYMBOL", - "name": "_signed_constant" - } - ] - } - }, - "lazy_pattern": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - } - }, - "lazy_binding_pattern": { - "type": "PREC", - "value": 17, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "lazy" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - } - ] - } - }, - "local_open_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_pattern" - }, - { - "type": "SYMBOL", - "name": "array_pattern" - }, - { - "type": "SYMBOL", - "name": "record_pattern" - } - ] - } - ] - }, - "local_open_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SYMBOL", - "name": "list_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "array_binding_pattern" - }, - { - "type": "SYMBOL", - "name": "record_binding_pattern" - } - ] - } - ] - }, - "package_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "module" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "_" - }, - "named": true, - "value": "module_name" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_typed" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "parenthesized_binding_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "_binding_pattern_ext" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "exception_pattern": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "exception" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_attribute" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - } - ] - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "item_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "floating_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[@@@" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "attribute_payload": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_structure" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ":" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_ext" - }, - { - "type": "SYMBOL", - "name": "_signature" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "SYMBOL", - "name": "_pattern_ext" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "guard" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - "_extension": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "extension" - }, - { - "type": "SYMBOL", - "name": "quoted_extension" - } - ] - }, - "extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "quoted_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\s+" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_item_extension": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "item_extension" - }, - { - "type": "SYMBOL", - "name": "quoted_item_extension" - } - ] - }, - "item_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[%%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_payload" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "quoted_item_extension": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{%%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\s+" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "item_attribute" - } - } - ] - }, - "_attribute": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "SYMBOL", - "name": "attribute_id" - } - ] - }, - "_constant": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "number" - }, - { - "type": "SYMBOL", - "name": "character" - }, - { - "type": "SYMBOL", - "name": "string" - }, - { - "type": "SYMBOL", - "name": "quoted_string" - }, - { - "type": "SYMBOL", - "name": "boolean" - }, - { - "type": "SYMBOL", - "name": "unit" - } - ] - }, - "_signed_constant": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constant" - }, - { - "type": "SYMBOL", - "name": "signed_number" - } - ] - }, - "number": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[0-9][0-9_]*(\\.[0-9_]*)?([eE][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[xX][0-9A-Fa-f][0-9A-Fa-f_]*(\\.[0-9A-Fa-f_]*)?([pP][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[oO][0-7][0-7_]*[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[bB][01][01_]*[g-zG-Z]?" - } - ] - } - }, - "signed_number": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[0-9][0-9_]*(\\.[0-9_]*)?([eE][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[xX][0-9A-Fa-f][0-9A-Fa-f_]*(\\.[0-9A-Fa-f_]*)?([pP][+\\-]?[0-9][0-9_]*)?[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[oO][0-7][0-7_]*[g-zG-Z]?" - }, - { - "type": "PATTERN", - "value": "0[bB][01][01_]*[g-zG-Z]?" - } - ] - } - } - ] - }, - "character": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "'" - }, - { - "type": "SYMBOL", - "name": "character_content" - }, - { - "type": "STRING", - "value": "'" - } - ] - }, - "character_content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^\\\\']" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - } - ] - }, - "string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\"" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "string_content" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "\"" - } - ] - }, - "string_content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\n" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\t" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@@" - } - }, - { - "type": "PATTERN", - "value": "[^\\\\\"%@]+|%|@" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\\\u\\{[0-9A-Fa-f]+\\}" - }, - "named": true, - "value": "escape_sequence" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "\\\\\\n[\\t ]*" - }, - "named": true, - "value": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "conversion_specification" - }, - { - "type": "SYMBOL", - "name": "pretty_printing_indication" - } - ] - } - }, - "quoted_string": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "_quoted_string" - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_quoted_string": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_left_quoted_string_delimiter" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "quoted_string_content" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_right_quoted_string_delimiter" - } - ] - }, - "quoted_string_content": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": " " - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\n" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "\t" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[@@@" - } - }, - { - "type": "PATTERN", - "value": "[^%@|]+|%|@|\\|" - }, - { - "type": "SYMBOL", - "name": "_null" - }, - { - "type": "SYMBOL", - "name": "conversion_specification" - }, - { - "type": "SYMBOL", - "name": "pretty_printing_indication" - } - ] - } - }, - "escape_sequence": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\\\[\\\\\"'ntbr ]" - }, - { - "type": "PATTERN", - "value": "\\\\[0-9][0-9][0-9]" - }, - { - "type": "PATTERN", - "value": "\\\\x[0-9A-Fa-f][0-9A-Fa-f]" - }, - { - "type": "PATTERN", - "value": "\\\\o[0-3][0-7][0-7]" - } - ] - }, - "conversion_specification": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "%" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[\\-0+ #]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[1-9][0-9]*|\\*" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\.([0-9]*|\\*)" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[diunlLNxXosScCfFeEgGhHbBat!%@,]" - }, - { - "type": "PATTERN", - "value": "[lnL][diuxXo]" - } - ] - } - ] - } - }, - "pretty_printing_indication": { - "type": "PATTERN", - "value": "@([\\[\\], ;.{}?]|\\\\n|<[0-9]+>)" - }, - "boolean": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "true" - }, - { - "type": "STRING", - "value": "false" - } - ] - }, - "unit": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "begin" - }, - { - "type": "STRING", - "value": "end" - } - ] - } - ] - }, - "prefix_operator": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<>?@^|~]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[~?]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - }, - "sign_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+." - }, - { - "type": "STRING", - "value": "-." - } - ] - }, - "infix_operator": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_pow_operator" - }, - { - "type": "SYMBOL", - "name": "_mult_operator" - }, - { - "type": "SYMBOL", - "name": "_add_operator" - }, - { - "type": "SYMBOL", - "name": "_concat_operator" - }, - { - "type": "SYMBOL", - "name": "_rel_operator" - }, - { - "type": "SYMBOL", - "name": "_and_operator" - }, - { - "type": "SYMBOL", - "name": "_or_operator" - }, - { - "type": "SYMBOL", - "name": "_assign_operator" - } - ] - }, - "hash_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[#!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_pow_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "**" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - { - "type": "STRING", - "value": "lsl" - }, - { - "type": "STRING", - "value": "lsr" - }, - { - "type": "STRING", - "value": "asr" - } - ] - }, - "_mult_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[*/%]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - { - "type": "STRING", - "value": "mod" - }, - { - "type": "STRING", - "value": "land" - }, - { - "type": "STRING", - "value": "lor" - }, - { - "type": "STRING", - "value": "lxor" - } - ] - }, - "_add_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "+." - }, - { - "type": "STRING", - "value": "-." - }, - { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "-" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=?@^|~]" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - } - ] - } - } - ] - }, - "_concat_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[@^]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_rel_operator": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[=>$]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "<" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+./:<=>?@^|~]" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%*+\\-./:<=>?@^|~]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "|" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^~]" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - }, - { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - ] - } - ] - }, - { - "type": "STRING", - "value": "!=" - } - ] - } - }, - "_and_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&&" - } - ] - }, - "_or_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "STRING", - "value": "||" - } - ] - }, - "_assign_operator": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ":=" - } - ] - }, - "indexing_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[!$%&*+\\-/:=>?@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "indexing_operator_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "indexing_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "indexing_operator" - } - ] - } - ] - }, - "let_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "let" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "and_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "and" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "match_operator": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "PATTERN", - "value": "[$&*+\\-/<=>@^|]" - }, - { - "type": "REPEAT", - "content": { - "type": "PATTERN", - "value": "[!$%&*+\\-./:<=>?@^|~]" - } - } - ] - } - }, - "_value_name": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_name" - }, - { - "type": "SYMBOL", - "name": "parenthesized_operator" - } - ] - }, - "_value_pattern": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "value_pattern" - }, - { - "type": "SYMBOL", - "name": "parenthesized_operator" - } - ] - }, - "parenthesized_operator": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "prefix_operator" - }, - { - "type": "SYMBOL", - "name": "infix_operator" - }, - { - "type": "SYMBOL", - "name": "hash_operator" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "indexing_operator" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "STRING", - "value": ".." - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "<-" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SYMBOL", - "name": "let_operator" - }, - { - "type": "SYMBOL", - "name": "and_operator" - }, - { - "type": "SYMBOL", - "name": "match_operator" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "value_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_value_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_value_name" - } - ] - } - ] - }, - "module_path": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_name" - } - ] - } - ] - } - }, - "extended_module_path": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_name" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "module_type_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_module_type_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_module_type_name" - } - ] - } - ] - }, - "field_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_field_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_field_name" - } - ] - } - ] - }, - "constructor_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_constructor_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_constructor_name" - } - ] - } - ] - }, - "type_constructor_path": { - "type": "PREC", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_constructor" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_type_constructor" - } - ] - } - ] - } - }, - "class_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_class_name" - } - ] - } - ] - }, - "class_type_path": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_class_type_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "extended_module_path" - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "_class_type_name" - } - ] - } - ] - }, - "_label_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "label_name" - }, - "_field_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "field_name" - }, - "_class_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "class_name" - }, - "_class_type_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "class_type_name" - }, - "_method_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "method_name" - }, - "_type_constructor": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "type_constructor" - }, - "_instance_variable_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_identifier" - }, - "named": true, - "value": "instance_variable_name" - }, - "_module_name": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - "named": true, - "value": "module_name" - }, - "_module_type_name": { - "type": "ALIAS", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - { - "type": "SYMBOL", - "name": "_identifier" - } - ] - }, - "named": true, - "value": "module_type_name" - }, - "_constructor_name": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_capitalized_identifier" - }, - "named": true, - "value": "constructor_name" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "::" - }, - "named": true, - "value": "constructor_name" - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "_identifier": { - "type": "PATTERN", - "value": "[a-z_][a-zA-Z0-9_']*" - }, - "_capitalized_identifier": { - "type": "PATTERN", - "value": "[A-Z][a-zA-Z0-9_']*" - }, - "_label": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "?" - } - ] - }, - { - "type": "SYMBOL", - "name": "_label_name" - } - ] - }, - "directive": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "#" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "type_variable": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "'" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "tag": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "`" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - }, - "attribute_id": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "\\." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_identifier" - }, - { - "type": "SYMBOL", - "name": "_capitalized_identifier" - } - ] - } - ] - } - } - ] - } - }, - "extras": [ - { - "type": "PATTERN", - "value": "\\s" - }, - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "SYMBOL", - "name": "line_number_directive" - }, - { - "type": "SYMBOL", - "name": "attribute" - } - ], - "conflicts": [], - "precedences": [], - "externals": [ - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "SYMBOL", - "name": "_left_quoted_string_delimiter" - }, - { - "type": "SYMBOL", - "name": "_right_quoted_string_delimiter" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "SYMBOL", - "name": "line_number_directive" - }, - { - "type": "SYMBOL", - "name": "_null" - } - ], - "inline": [ - "_module_type_ext", - "_module_expression_ext", - "_module_expression_ext", - "_simple_type_ext", - "_simple_expression_ext", - "_expression_ext", - "_quoted_string", - "_label_name", - "_field_name", - "_class_name", - "_class_type_name", - "_method_name", - "_type_constructor", - "_instance_variable_name", - "_module_name", - "_module_type_name", - "_constructor_name" - ], - "supertypes": [ - "_structure_item", - "_parameter", - "_module_type", - "_simple_module_expression", - "_module_expression", - "_simple_class_type", - "_class_type", - "_class_field_specification", - "_simple_class_expression", - "_class_expression", - "_class_field", - "_polymorphic_type", - "_simple_type", - "_tuple_type", - "_tag_spec", - "_type", - "_simple_expression", - "_expression", - "_sequence_expression", - "_argument", - "_simple_pattern", - "_pattern", - "_binding_pattern", - "_extension", - "_item_extension", - "_constant", - "_signed_constant", - "_value_name", - "_value_pattern" - ] -} - diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/src/node-types.json b/vendored_parsers/tree-sitter-ocaml/ocaml/src/node-types.json deleted file mode 100644 index dfa008f99..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/src/node-types.json +++ /dev/null @@ -1,5953 +0,0 @@ -[ - { - "type": "_argument", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "labeled_argument", - "named": true - } - ] - }, - { - "type": "_binding_pattern", - "named": true, - "subtypes": [ - { - "type": "_signed_constant", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "alias_pattern", - "named": true - }, - { - "type": "array_pattern", - "named": true - }, - { - "type": "cons_pattern", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "constructor_pattern", - "named": true - }, - { - "type": "lazy_pattern", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "local_open_pattern", - "named": true - }, - { - "type": "or_pattern", - "named": true - }, - { - "type": "package_pattern", - "named": true - }, - { - "type": "parenthesized_pattern", - "named": true - }, - { - "type": "polymorphic_variant_pattern", - "named": true - }, - { - "type": "range_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "tag_pattern", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - }, - { - "type": "typed_pattern", - "named": true - } - ] - }, - { - "type": "_class_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_class_expression", - "named": true - }, - { - "type": "class_application", - "named": true - }, - { - "type": "class_function", - "named": true - }, - { - "type": "let_class_expression", - "named": true - }, - { - "type": "let_open_class_expression", - "named": true - } - ] - }, - { - "type": "_class_field", - "named": true, - "subtypes": [ - { - "type": "class_initializer", - "named": true - }, - { - "type": "inheritance_definition", - "named": true - }, - { - "type": "instance_variable_definition", - "named": true - }, - { - "type": "method_definition", - "named": true - }, - { - "type": "type_parameter_constraint", - "named": true - } - ] - }, - { - "type": "_class_field_specification", - "named": true, - "subtypes": [ - { - "type": "inheritance_specification", - "named": true - }, - { - "type": "instance_variable_specification", - "named": true - }, - { - "type": "method_specification", - "named": true - }, - { - "type": "type_parameter_constraint", - "named": true - } - ] - }, - { - "type": "_class_type", - "named": true, - "subtypes": [ - { - "type": "_simple_class_type", - "named": true - }, - { - "type": "class_function_type", - "named": true - } - ] - }, - { - "type": "_constant", - "named": true, - "subtypes": [ - { - "type": "boolean", - "named": true - }, - { - "type": "character", - "named": true - }, - { - "type": "number", - "named": true - }, - { - "type": "quoted_string", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "unit", - "named": true - } - ] - }, - { - "type": "_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_expression", - "named": true - }, - { - "type": "application_expression", - "named": true - }, - { - "type": "assert_expression", - "named": true - }, - { - "type": "cons_expression", - "named": true - }, - { - "type": "for_expression", - "named": true - }, - { - "type": "fun_expression", - "named": true - }, - { - "type": "function_expression", - "named": true - }, - { - "type": "if_expression", - "named": true - }, - { - "type": "infix_expression", - "named": true - }, - { - "type": "lazy_expression", - "named": true - }, - { - "type": "let_exception_expression", - "named": true - }, - { - "type": "let_expression", - "named": true - }, - { - "type": "let_module_expression", - "named": true - }, - { - "type": "let_open_expression", - "named": true - }, - { - "type": "match_expression", - "named": true - }, - { - "type": "product_expression", - "named": true - }, - { - "type": "set_expression", - "named": true - }, - { - "type": "sign_expression", - "named": true - }, - { - "type": "try_expression", - "named": true - }, - { - "type": "while_expression", - "named": true - } - ] - }, - { - "type": "_extension", - "named": true, - "subtypes": [ - { - "type": "extension", - "named": true - }, - { - "type": "quoted_extension", - "named": true - } - ] - }, - { - "type": "_item_extension", - "named": true, - "subtypes": [ - { - "type": "item_extension", - "named": true - }, - { - "type": "quoted_item_extension", - "named": true - } - ] - }, - { - "type": "_module_expression", - "named": true, - "subtypes": [ - { - "type": "_simple_module_expression", - "named": true - }, - { - "type": "functor", - "named": true - }, - { - "type": "module_application", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "structure", - "named": true - } - ] - }, - { - "type": "_module_type", - "named": true, - "subtypes": [ - { - "type": "functor_type", - "named": true - }, - { - "type": "module_type_constraint", - "named": true - }, - { - "type": "module_type_of", - "named": true - }, - { - "type": "module_type_path", - "named": true - }, - { - "type": "parenthesized_module_type", - "named": true - }, - { - "type": "signature", - "named": true - } - ] - }, - { - "type": "_parameter", - "named": true, - "subtypes": [ - { - "type": "abstract_type", - "named": true - }, - { - "type": "parameter", - "named": true - } - ] - }, - { - "type": "_pattern", - "named": true, - "subtypes": [ - { - "type": "_simple_pattern", - "named": true - }, - { - "type": "alias_pattern", - "named": true - }, - { - "type": "cons_pattern", - "named": true - }, - { - "type": "constructor_pattern", - "named": true - }, - { - "type": "exception_pattern", - "named": true - }, - { - "type": "lazy_pattern", - "named": true - }, - { - "type": "or_pattern", - "named": true - }, - { - "type": "range_pattern", - "named": true - }, - { - "type": "tag_pattern", - "named": true - }, - { - "type": "tuple_pattern", - "named": true - } - ] - }, - { - "type": "_polymorphic_type", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "polymorphic_type", - "named": true - } - ] - }, - { - "type": "_sequence_expression", - "named": true, - "subtypes": [ - { - "type": "_expression", - "named": true - }, - { - "type": "sequence_expression", - "named": true - } - ] - }, - { - "type": "_signed_constant", - "named": true, - "subtypes": [ - { - "type": "_constant", - "named": true - }, - { - "type": "signed_number", - "named": true - } - ] - }, - { - "type": "_simple_class_expression", - "named": true, - "subtypes": [ - { - "type": "class_path", - "named": true - }, - { - "type": "instantiated_class", - "named": true - }, - { - "type": "object_expression", - "named": true - }, - { - "type": "parenthesized_class_expression", - "named": true - }, - { - "type": "typed_class_expression", - "named": true - } - ] - }, - { - "type": "_simple_class_type", - "named": true, - "subtypes": [ - { - "type": "class_body_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - }, - { - "type": "instantiated_class_type", - "named": true - }, - { - "type": "let_open_class_type", - "named": true - } - ] - }, - { - "type": "_simple_expression", - "named": true, - "subtypes": [ - { - "type": "_constant", - "named": true - }, - { - "type": "array_expression", - "named": true - }, - { - "type": "array_get_expression", - "named": true - }, - { - "type": "bigarray_get_expression", - "named": true - }, - { - "type": "coercion_expression", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "field_get_expression", - "named": true - }, - { - "type": "hash_expression", - "named": true - }, - { - "type": "list_expression", - "named": true - }, - { - "type": "local_open_expression", - "named": true - }, - { - "type": "method_invocation", - "named": true - }, - { - "type": "new_expression", - "named": true - }, - { - "type": "object_copy_expression", - "named": true - }, - { - "type": "object_expression", - "named": true - }, - { - "type": "ocamlyacc_value", - "named": true - }, - { - "type": "package_expression", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "prefix_expression", - "named": true - }, - { - "type": "record_expression", - "named": true - }, - { - "type": "string_get_expression", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "typed_expression", - "named": true - }, - { - "type": "value_path", - "named": true - } - ] - }, - { - "type": "_simple_module_expression", - "named": true, - "subtypes": [ - { - "type": "packed_module", - "named": true - }, - { - "type": "parenthesized_module_expression", - "named": true - }, - { - "type": "typed_module_expression", - "named": true - } - ] - }, - { - "type": "_simple_pattern", - "named": true, - "subtypes": [ - { - "type": "_signed_constant", - "named": true - }, - { - "type": "_value_pattern", - "named": true - }, - { - "type": "array_pattern", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "list_pattern", - "named": true - }, - { - "type": "local_open_pattern", - "named": true - }, - { - "type": "package_pattern", - "named": true - }, - { - "type": "parenthesized_pattern", - "named": true - }, - { - "type": "polymorphic_variant_pattern", - "named": true - }, - { - "type": "record_pattern", - "named": true - }, - { - "type": "tag", - "named": true - }, - { - "type": "typed_pattern", - "named": true - } - ] - }, - { - "type": "_simple_type", - "named": true, - "subtypes": [ - { - "type": "constructed_type", - "named": true - }, - { - "type": "hash_type", - "named": true - }, - { - "type": "object_type", - "named": true - }, - { - "type": "package_type", - "named": true - }, - { - "type": "parenthesized_type", - "named": true - }, - { - "type": "polymorphic_variant_type", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - }, - { - "type": "_structure_item", - "named": true, - "subtypes": [ - { - "type": "class_definition", - "named": true - }, - { - "type": "class_type_definition", - "named": true - }, - { - "type": "exception_definition", - "named": true - }, - { - "type": "external", - "named": true - }, - { - "type": "floating_attribute", - "named": true - }, - { - "type": "include_module", - "named": true - }, - { - "type": "module_definition", - "named": true - }, - { - "type": "module_type_definition", - "named": true - }, - { - "type": "open_module", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "value_definition", - "named": true - } - ] - }, - { - "type": "_tag_spec", - "named": true, - "subtypes": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "tag_specification", - "named": true - } - ] - }, - { - "type": "_tuple_type", - "named": true, - "subtypes": [ - { - "type": "_simple_type", - "named": true - }, - { - "type": "tuple_type", - "named": true - } - ] - }, - { - "type": "_type", - "named": true, - "subtypes": [ - { - "type": "_tuple_type", - "named": true - }, - { - "type": "aliased_type", - "named": true - }, - { - "type": "function_type", - "named": true - } - ] - }, - { - "type": "_value_name", - "named": true, - "subtypes": [ - { - "type": "parenthesized_operator", - "named": true - }, - { - "type": "value_name", - "named": true - } - ] - }, - { - "type": "_value_pattern", - "named": true, - "subtypes": [ - { - "type": "parenthesized_operator", - "named": true - }, - { - "type": "value_pattern", - "named": true - } - ] - }, - { - "type": "abstract_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_constructor", - "named": true - } - ] - } - }, - { - "type": "alias_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_value_pattern", - "named": true - } - ] - } - }, - { - "type": "aliased_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "application_expression", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_argument", - "named": true - } - ] - }, - "function": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - } - }, - { - "type": "array_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "array_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "array_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "array_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "assert_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "attribute_id", - "named": true, - "fields": {} - }, - { - "type": "attribute_payload", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_structure_item", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "expression_item", - "named": true - }, - { - "type": "guard", - "named": true - }, - { - "type": "include_module_type", - "named": true - }, - { - "type": "toplevel_directive", - "named": true - }, - { - "type": "value_specification", - "named": true - } - ] - } - }, - { - "type": "bigarray_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "boolean", - "named": true, - "fields": {} - }, - { - "type": "character", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "character_content", - "named": true - } - ] - } - }, - { - "type": "character_content", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - } - ] - } - }, - { - "type": "class_application", - "named": true, - "fields": { - "argument": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_argument", - "named": true - } - ] - }, - "class": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_simple_class_expression", - "named": true - } - ] - } - } - }, - { - "type": "class_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "class_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_parameter", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "class_body_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_field_specification", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "floating_attribute", - "named": true - } - ] - } - }, - { - "type": "class_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_binding", - "named": true - } - ] - } - }, - { - "type": "class_function", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_parameter", - "named": true - } - ] - } - }, - { - "type": "class_function_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_tuple_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "class_initializer", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "class_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "class_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "class_type_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "class_type_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "class_type_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_type_binding", - "named": true - } - ] - } - }, - { - "type": "class_type_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "class_type_name", - "named": true - }, - { - "type": "extended_module_path", - "named": true - } - ] - } - }, - { - "type": "coercion_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "compilation_unit", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "_structure_item", - "named": true - }, - { - "type": "expression_item", - "named": true - }, - { - "type": "shebang", - "named": true - }, - { - "type": "toplevel_directive", - "named": true - } - ] - } - }, - { - "type": "cons_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - } - }, - { - "type": "cons_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "constrain_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "constrain_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "constrain_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "type_constraint", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "constructed_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "constructor_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "constructor_name", - "named": true - }, - { - "type": "constructor_path", - "named": true - }, - { - "type": "record_declaration", - "named": true - } - ] - } - }, - { - "type": "constructor_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "constructor_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "constructor_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "abstract_type", - "named": true - }, - { - "type": "constructor_path", - "named": true - } - ] - } - }, - { - "type": "directive", - "named": true, - "fields": {} - }, - { - "type": "do_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - { - "type": "else_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "escape_sequence", - "named": true, - "fields": {} - }, - { - "type": "exception_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "constructor_declaration", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "exception_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "expression_item", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "extended_module_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_name", - "named": true - } - ] - } - }, - { - "type": "extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "external", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "string", - "named": true - } - ] - } - }, - { - "type": "field_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "field_name", - "named": true - } - ] - } - }, - { - "type": "field_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "field_path", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "field_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "field_path", - "named": true - } - ] - } - }, - { - "type": "field_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "field_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "field_path", - "named": true - } - ] - } - }, - { - "type": "floating_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "for_expression", - "named": true, - "fields": { - "from": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_value_pattern", - "named": true - } - ] - }, - "to": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "do_clause", - "named": true - } - ] - } - }, - { - "type": "fun_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_parameter", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "function_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - } - ] - } - }, - { - "type": "function_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "typed_label", - "named": true - } - ] - } - }, - { - "type": "functor", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "functor_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "guard", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - { - "type": "hash_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "hash_operator", - "named": true - } - ] - } - }, - { - "type": "hash_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - } - ] - } - }, - { - "type": "if_expression", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "else_clause", - "named": true - }, - { - "type": "then_clause", - "named": true - } - ] - } - }, - { - "type": "include_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "include_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "indexing_operator_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "indexing_operator", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "infix_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "infix_operator", - "named": true - } - ] - } - }, - { - "type": "infix_operator", - "named": true, - "fields": {} - }, - { - "type": "inheritance_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_value_pattern", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "inheritance_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instance_variable_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "instance_variable_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instance_variable_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - } - ] - } - }, - { - "type": "instance_variable_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "instantiated_class", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_path", - "named": true - } - ] - } - }, - { - "type": "instantiated_class_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "class_type_path", - "named": true - } - ] - } - }, - { - "type": "item_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - } - ] - } - }, - { - "type": "item_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "attribute_payload", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "labeled_argument", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "lazy_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "lazy_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "let_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_parameter", - "named": true - }, - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "let_class_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "value_definition", - "named": true - } - ] - } - }, - { - "type": "let_exception_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "exception_definition", - "named": true - } - ] - } - }, - { - "type": "let_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "value_definition", - "named": true - } - ] - } - }, - { - "type": "let_module_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_definition", - "named": true - } - ] - } - }, - { - "type": "let_open_class_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "let_open_class_type", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_class_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "let_open_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "open_module", - "named": true - } - ] - } - }, - { - "type": "list_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "list_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "list_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "local_open_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "array_expression", - "named": true - }, - { - "type": "list_expression", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "object_copy_expression", - "named": true - }, - { - "type": "package_expression", - "named": true - }, - { - "type": "record_expression", - "named": true - } - ] - } - }, - { - "type": "local_open_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "array_binding_pattern", - "named": true - }, - { - "type": "list_binding_pattern", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "record_binding_pattern", - "named": true - } - ] - } - }, - { - "type": "match_case", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "refutation_case", - "named": true - } - ] - }, - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "guard", - "named": true - } - ] - } - }, - { - "type": "match_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - }, - { - "type": "match_operator", - "named": true - } - ] - } - }, - { - "type": "method_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "method_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_parameter", - "named": true - }, - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "method_invocation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "method_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "method_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "method_name", - "named": true - } - ] - } - }, - { - "type": "module_application", - "named": true, - "fields": { - "argument": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_module_expression", - "named": true - } - ] - }, - "functor": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - } - }, - { - "type": "module_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "module_parameter", - "named": true - } - ] - } - }, - { - "type": "module_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "module_binding", - "named": true - } - ] - } - }, - { - "type": "module_parameter", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "module_name", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "module_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "module_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "module_type_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "constrain_module", - "named": true - }, - { - "type": "constrain_module_type", - "named": true - }, - { - "type": "constrain_type", - "named": true - } - ] - } - }, - { - "type": "module_type_definition", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "module_type_name", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "module_type_of", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - { - "type": "module_type_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "module_type_name", - "named": true - } - ] - } - }, - { - "type": "new_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "class_path", - "named": true - } - ] - } - }, - { - "type": "number", - "named": true, - "fields": {} - }, - { - "type": "object_copy_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "instance_variable_expression", - "named": true - } - ] - } - }, - { - "type": "object_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_class_field", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_item_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "floating_attribute", - "named": true - } - ] - } - }, - { - "type": "object_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_type", - "named": true - }, - { - "type": "method_type", - "named": true - } - ] - } - }, - { - "type": "open_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "or_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "package_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "package_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "module_name", - "named": true - } - ] - } - }, - { - "type": "package_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "packed_module", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "parameter", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "value_pattern", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "parenthesized_class_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "parenthesized_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "parenthesized_module_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - } - ] - } - }, - { - "type": "parenthesized_module_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "parenthesized_operator", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "and_operator", - "named": true - }, - { - "type": "hash_operator", - "named": true - }, - { - "type": "indexing_operator", - "named": true - }, - { - "type": "infix_operator", - "named": true - }, - { - "type": "let_operator", - "named": true - }, - { - "type": "match_operator", - "named": true - }, - { - "type": "prefix_operator", - "named": true - } - ] - } - }, - { - "type": "parenthesized_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "parenthesized_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "polymorphic_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "abstract_type", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "polymorphic_variant_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_constructor_path", - "named": true - } - ] - } - }, - { - "type": "polymorphic_variant_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_tag_spec", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "prefix_expression", - "named": true, - "fields": { - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "prefix_operator", - "named": true - } - ] - } - }, - { - "type": "product_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - } - }, - { - "type": "quoted_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_item_extension", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_string", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "quoted_string_content", - "named": true - } - ] - } - }, - { - "type": "quoted_string_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "conversion_specification", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - } - ] - } - }, - { - "type": "range_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_signed_constant", - "named": true - } - ] - } - }, - { - "type": "record_binding_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_pattern", - "named": true - } - ] - } - }, - { - "type": "record_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_declaration", - "named": true - } - ] - } - }, - { - "type": "record_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "field_expression", - "named": true - } - ] - } - }, - { - "type": "record_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "field_pattern", - "named": true - } - ] - } - }, - { - "type": "refutation_case", - "named": true, - "fields": {} - }, - { - "type": "sequence_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute_id", - "named": true - } - ] - } - }, - { - "type": "set_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "array_get_expression", - "named": true - }, - { - "type": "bigarray_get_expression", - "named": true - }, - { - "type": "field_get_expression", - "named": true - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "string_get_expression", - "named": true - } - ] - } - }, - { - "type": "sign_expression", - "named": true, - "fields": { - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "sign_operator", - "named": true - } - ] - } - }, - { - "type": "sign_operator", - "named": true, - "fields": {} - }, - { - "type": "signature", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "class_definition", - "named": true - }, - { - "type": "class_type_definition", - "named": true - }, - { - "type": "exception_definition", - "named": true - }, - { - "type": "external", - "named": true - }, - { - "type": "floating_attribute", - "named": true - }, - { - "type": "include_module_type", - "named": true - }, - { - "type": "module_definition", - "named": true - }, - { - "type": "module_type_definition", - "named": true - }, - { - "type": "open_module", - "named": true - }, - { - "type": "type_definition", - "named": true - }, - { - "type": "value_specification", - "named": true - } - ] - } - }, - { - "type": "signed_number", - "named": true, - "fields": {} - }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "string_content", - "named": true - } - ] - } - }, - { - "type": "string_content", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "conversion_specification", - "named": true - }, - { - "type": "escape_sequence", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - } - ] - } - }, - { - "type": "string_get_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_simple_expression", - "named": true - }, - { - "type": "indexing_operator_path", - "named": true - } - ] - } - }, - { - "type": "structure", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_item_extension", - "named": true - }, - { - "type": "_structure_item", - "named": true - }, - { - "type": "expression_item", - "named": true - }, - { - "type": "toplevel_directive", - "named": true - } - ] - } - }, - { - "type": "tag", - "named": true, - "fields": {} - }, - { - "type": "tag_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "tag_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "tag", - "named": true - } - ] - } - }, - { - "type": "then_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "toplevel_directive", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_constant", - "named": true - }, - { - "type": "directive", - "named": true - }, - { - "type": "module_path", - "named": true - }, - { - "type": "value_path", - "named": true - } - ] - } - }, - { - "type": "try_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "match_case", - "named": true - } - ] - } - }, - { - "type": "tuple_pattern", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - } - ] - } - }, - { - "type": "tuple_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_tuple_type", - "named": true - } - ] - } - }, - { - "type": "type_binding", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "..", - "named": false - }, - { - "type": "record_declaration", - "named": true - }, - { - "type": "variant_declaration", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_constructor", - "named": true - }, - { - "type": "type_constructor_path", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - }, - { - "type": "type_constraint", - "named": true - }, - { - "type": "type_variable", - "named": true - } - ] - } - }, - { - "type": "type_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "type_constructor_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "extended_module_path", - "named": true - }, - { - "type": "type_constructor", - "named": true - } - ] - } - }, - { - "type": "type_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "type_binding", - "named": true - } - ] - } - }, - { - "type": "type_parameter_constraint", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "type_variable", - "named": true, - "fields": {} - }, - { - "type": "typed_class_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_class_expression", - "named": true - }, - { - "type": "_class_type", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - { - "type": "typed_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "typed_label", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_type", - "named": true - }, - { - "type": "label_name", - "named": true - } - ] - } - }, - { - "type": "typed_module_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_module_expression", - "named": true - }, - { - "type": "_module_type", - "named": true - } - ] - } - }, - { - "type": "typed_pattern", - "named": true, - "fields": { - "pattern": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_binding_pattern", - "named": true - }, - { - "type": "_extension", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_pattern", - "named": true - }, - { - "type": "_type", - "named": true - } - ] - } - }, - { - "type": "unit", - "named": true, - "fields": {} - }, - { - "type": "value_definition", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "and_operator", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "let_binding", - "named": true - }, - { - "type": "let_operator", - "named": true - } - ] - } - }, - { - "type": "value_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_value_name", - "named": true - }, - { - "type": "module_path", - "named": true - } - ] - } - }, - { - "type": "value_specification", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_polymorphic_type", - "named": true - }, - { - "type": "_value_name", - "named": true - }, - { - "type": "attribute_id", - "named": true - }, - { - "type": "item_attribute", - "named": true - } - ] - } - }, - { - "type": "variant_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "constructor_declaration", - "named": true - } - ] - } - }, - { - "type": "while_expression", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_extension", - "named": true - }, - { - "type": "_sequence_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_id", - "named": true - }, - { - "type": "do_clause", - "named": true - } - ] - } - }, - { - "type": "\t", - "named": false - }, - { - "type": "\n", - "named": false - }, - { - "type": " ", - "named": false - }, - { - "type": "!", - "named": false - }, - { - "type": "\"", - "named": false - }, - { - "type": "#", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "'", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "+.", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "-.", - "named": false - }, - { - "type": "->", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "..", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": "::", - "named": false - }, - { - "type": ":=", - "named": false - }, - { - "type": ":>", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": ";;", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<-", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">}", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "[%", - "named": false - }, - { - "type": "[%%", - "named": false - }, - { - "type": "[<", - "named": false - }, - { - "type": "[>", - "named": false - }, - { - "type": "[@", - "named": false - }, - { - "type": "[@@", - "named": false - }, - { - "type": "[@@@", - "named": false - }, - { - "type": "[|", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "_", - "named": false - }, - { - "type": "and", - "named": false - }, - { - "type": "and_operator", - "named": true - }, - { - "type": "as", - "named": false - }, - { - "type": "asr", - "named": false - }, - { - "type": "assert", - "named": false - }, - { - "type": "begin", - "named": false - }, - { - "type": "class", - "named": false - }, - { - "type": "class_name", - "named": true - }, - { - "type": "class_type_name", - "named": true - }, - { - "type": "comment", - "named": true - }, - { - "type": "constraint", - "named": false - }, - { - "type": "constructor_name", - "named": true - }, - { - "type": "conversion_specification", - "named": true - }, - { - "type": "do", - "named": false - }, - { - "type": "done", - "named": false - }, - { - "type": "downto", - "named": false - }, - { - "type": "else", - "named": false - }, - { - "type": "end", - "named": false - }, - { - "type": "exception", - "named": false - }, - { - "type": "external", - "named": false - }, - { - "type": "false", - "named": false - }, - { - "type": "field_name", - "named": true - }, - { - "type": "for", - "named": false - }, - { - "type": "fun", - "named": false - }, - { - "type": "function", - "named": false - }, - { - "type": "functor", - "named": false - }, - { - "type": "hash_operator", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "include", - "named": false - }, - { - "type": "indexing_operator", - "named": true - }, - { - "type": "inherit", - "named": false - }, - { - "type": "initializer", - "named": false - }, - { - "type": "instance_variable_name", - "named": true - }, - { - "type": "label_name", - "named": true - }, - { - "type": "land", - "named": false - }, - { - "type": "lazy", - "named": false - }, - { - "type": "let", - "named": false - }, - { - "type": "let_operator", - "named": true - }, - { - "type": "line_number_directive", - "named": true - }, - { - "type": "lor", - "named": false - }, - { - "type": "lsl", - "named": false - }, - { - "type": "lsr", - "named": false - }, - { - "type": "lxor", - "named": false - }, - { - "type": "match", - "named": false - }, - { - "type": "match_operator", - "named": true - }, - { - "type": "method", - "named": false - }, - { - "type": "method_name", - "named": true - }, - { - "type": "mod", - "named": false - }, - { - "type": "module", - "named": false - }, - { - "type": "module_name", - "named": true - }, - { - "type": "module_type_name", - "named": true - }, - { - "type": "mutable", - "named": false - }, - { - "type": "new", - "named": false - }, - { - "type": "nonrec", - "named": false - }, - { - "type": "object", - "named": false - }, - { - "type": "ocamlyacc_value", - "named": true - }, - { - "type": "of", - "named": false - }, - { - "type": "open", - "named": false - }, - { - "type": "or", - "named": false - }, - { - "type": "prefix_operator", - "named": true - }, - { - "type": "pretty_printing_indication", - "named": true - }, - { - "type": "private", - "named": false - }, - { - "type": "rec", - "named": false - }, - { - "type": "shebang", - "named": true - }, - { - "type": "sig", - "named": false - }, - { - "type": "struct", - "named": false - }, - { - "type": "then", - "named": false - }, - { - "type": "to", - "named": false - }, - { - "type": "true", - "named": false - }, - { - "type": "try", - "named": false - }, - { - "type": "type", - "named": false - }, - { - "type": "type_constructor", - "named": true - }, - { - "type": "val", - "named": false - }, - { - "type": "value_name", - "named": true - }, - { - "type": "value_pattern", - "named": true - }, - { - "type": "virtual", - "named": false - }, - { - "type": "when", - "named": false - }, - { - "type": "while", - "named": false - }, - { - "type": "with", - "named": false - }, - { - "type": "{", - "named": false - }, - { - "type": "{%", - "named": false - }, - { - "type": "{%%", - "named": false - }, - { - "type": "{<", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "|]", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - }, - { - "type": "~", - "named": false - } -] \ No newline at end of file diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/src/parser.c b/vendored_parsers/tree-sitter-ocaml/ocaml/src/parser.c deleted file mode 100644 index 40b8afd6a..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/src/parser.c +++ /dev/null @@ -1,507923 +0,0 @@ -#include - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 9761 -#define LARGE_STATE_COUNT 1983 -#define SYMBOL_COUNT 447 -#define ALIAS_COUNT 12 -#define TOKEN_COUNT 152 -#define EXTERNAL_TOKEN_COUNT 6 -#define FIELD_COUNT 12 -#define MAX_ALIAS_SEQUENCE_LENGTH 11 -#define PRODUCTION_ID_COUNT 143 - -enum { - sym__identifier = 1, - sym_shebang = 2, - anon_sym_SEMI_SEMI = 3, - anon_sym_let = 4, - anon_sym_rec = 5, - anon_sym_and = 6, - anon_sym_COLON_GT = 7, - anon_sym_EQ = 8, - anon_sym_TILDE = 9, - anon_sym_QMARK = 10, - anon_sym_COLON = 11, - anon_sym_LPAREN = 12, - anon_sym_RPAREN = 13, - anon_sym_external = 14, - anon_sym_type = 15, - anon_sym_nonrec = 16, - anon_sym_private = 17, - anon_sym_DOT_DOT = 18, - anon_sym_PLUS_EQ = 19, - anon_sym_COMMA = 20, - anon_sym_PLUS = 21, - anon_sym_BANG = 22, - anon_sym_DASH = 23, - anon_sym__ = 24, - anon_sym_COLON_EQ = 25, - anon_sym_PIPE = 26, - anon_sym_LBRACK = 27, - anon_sym_RBRACK = 28, - anon_sym_true = 29, - anon_sym_false = 30, - anon_sym_of = 31, - anon_sym_COLON2 = 32, - anon_sym_DOT = 33, - anon_sym_DASH_GT = 34, - anon_sym_STAR = 35, - anon_sym_LBRACE = 36, - anon_sym_SEMI = 37, - anon_sym_RBRACE = 38, - anon_sym_mutable = 39, - anon_sym_constraint = 40, - anon_sym_exception = 41, - anon_sym_module = 42, - anon_sym_open = 43, - anon_sym_include = 44, - anon_sym_class = 45, - anon_sym_virtual = 46, - anon_sym_val = 47, - anon_sym_sig = 48, - anon_sym_end = 49, - anon_sym_with = 50, - anon_sym_functor = 51, - anon_sym_struct = 52, - anon_sym_object = 53, - anon_sym_inherit = 54, - anon_sym_method = 55, - anon_sym_in = 56, - anon_sym_fun = 57, - anon_sym_as = 58, - anon_sym_initializer = 59, - anon_sym_LBRACK_GT = 60, - anon_sym_LBRACK_LT = 61, - anon_sym_GT = 62, - anon_sym_AMP = 63, - anon_sym_LT = 64, - anon_sym_POUND = 65, - anon_sym_COLON_COLON = 66, - anon_sym_LBRACK_PIPE = 67, - anon_sym_PIPE_RBRACK = 68, - anon_sym_LT_DASH = 69, - anon_sym_if = 70, - anon_sym_then = 71, - anon_sym_else = 72, - anon_sym_while = 73, - anon_sym_do = 74, - anon_sym_done = 75, - anon_sym_for = 76, - anon_sym_to = 77, - anon_sym_downto = 78, - anon_sym_match = 79, - anon_sym_when = 80, - anon_sym_function = 81, - anon_sym_try = 82, - anon_sym_assert = 83, - anon_sym_lazy = 84, - anon_sym_new = 85, - anon_sym_LBRACE_LT = 86, - anon_sym_GT_RBRACE = 87, - anon_sym_begin = 88, - sym_ocamlyacc_value = 89, - anon_sym_LBRACK_AT = 90, - anon_sym_LBRACK_AT_AT = 91, - anon_sym_LBRACK_AT_AT_AT = 92, - anon_sym_LBRACK_PERCENT = 93, - anon_sym_LBRACE_PERCENT = 94, - aux_sym_quoted_extension_token1 = 95, - anon_sym_LBRACK_PERCENT_PERCENT = 96, - anon_sym_LBRACE_PERCENT_PERCENT = 97, - anon_sym_PERCENT = 98, - aux_sym_number_token1 = 99, - anon_sym_SQUOTE = 100, - aux_sym_character_content_token1 = 101, - anon_sym_DQUOTE = 102, - anon_sym_ = 103, - anon_sym_LF = 104, - anon_sym_TAB = 105, - anon_sym_LBRACK_AT2 = 106, - anon_sym_LBRACK_AT_AT2 = 107, - anon_sym_LBRACK_AT_AT_AT2 = 108, - aux_sym_string_content_token1 = 109, - aux_sym_string_content_token2 = 110, - aux_sym_string_content_token3 = 111, - aux_sym_quoted_string_content_token1 = 112, - aux_sym_escape_sequence_token1 = 113, - aux_sym_escape_sequence_token2 = 114, - aux_sym_escape_sequence_token3 = 115, - aux_sym_escape_sequence_token4 = 116, - sym_conversion_specification = 117, - sym_pretty_printing_indication = 118, - sym_prefix_operator = 119, - anon_sym_PLUS_DOT = 120, - anon_sym_DASH_DOT = 121, - sym_hash_operator = 122, - aux_sym__pow_operator_token1 = 123, - anon_sym_lsl = 124, - anon_sym_lsr = 125, - anon_sym_asr = 126, - aux_sym__mult_operator_token1 = 127, - anon_sym_mod = 128, - anon_sym_land = 129, - anon_sym_lor = 130, - anon_sym_lxor = 131, - aux_sym__add_operator_token1 = 132, - sym__concat_operator = 133, - sym__rel_operator = 134, - anon_sym_AMP_AMP = 135, - anon_sym_or = 136, - anon_sym_PIPE_PIPE = 137, - sym_indexing_operator = 138, - sym_let_operator = 139, - sym_and_operator = 140, - sym_match_operator = 141, - sym__capitalized_identifier = 142, - aux_sym_directive_token1 = 143, - aux_sym_type_variable_token1 = 144, - aux_sym_tag_token1 = 145, - aux_sym_attribute_id_token1 = 146, - sym_comment = 147, - sym__left_quoted_string_delimiter = 148, - sym__right_quoted_string_delimiter = 149, - sym_line_number_directive = 150, - sym__null = 151, - sym_compilation_unit = 152, - sym__structure = 153, - sym_expression_item = 154, - sym__signature = 155, - sym_toplevel_directive = 156, - sym__structure_item = 157, - sym__structure_item_ext = 158, - sym_value_definition = 159, - sym_let_binding = 160, - sym__parameter = 161, - sym_parameter = 162, - sym_external = 163, - sym_type_definition = 164, - sym_type_binding = 165, - sym__type_params = 166, - sym__type_param = 167, - sym__type_equation = 168, - sym_variant_declaration = 169, - sym_constructor_declaration = 170, - sym__constructor_argument = 171, - sym_record_declaration = 172, - sym_field_declaration = 173, - sym_type_constraint = 174, - sym_exception_definition = 175, - sym_module_definition = 176, - sym_module_binding = 177, - sym_module_parameter = 178, - sym_module_type_definition = 179, - sym_open_module = 180, - sym_include_module = 181, - sym_class_definition = 182, - sym_class_binding = 183, - sym_class_type_definition = 184, - sym_class_type_binding = 185, - sym__signature_item = 186, - sym__signature_item_ext = 187, - sym_value_specification = 188, - sym_include_module_type = 189, - sym__module_typed = 190, - sym__module_type = 191, - sym_signature = 192, - sym_module_type_constraint = 193, - sym_constrain_type = 194, - sym_constrain_module = 195, - sym_constrain_module_type = 196, - sym_module_type_of = 197, - sym_functor_type = 198, - sym_parenthesized_module_type = 199, - sym__simple_module_expression = 200, - sym__simple_module_expression_ext = 201, - sym__module_expression = 202, - sym_structure = 203, - sym_functor = 204, - sym_module_application = 205, - sym_typed_module_expression = 206, - sym_packed_module = 207, - sym_parenthesized_module_expression = 208, - sym__class_typed = 209, - sym__simple_class_type = 210, - sym__simple_class_type_ext = 211, - sym__class_type = 212, - sym__class_type_ext = 213, - sym_instantiated_class_type = 214, - sym_class_body_type = 215, - sym__class_field_specification = 216, - sym__class_field_specification_ext = 217, - sym_inheritance_specification = 218, - sym_instance_variable_specification = 219, - sym_method_specification = 220, - sym_type_parameter_constraint = 221, - sym_let_open_class_type = 222, - sym_class_function_type = 223, - sym__simple_class_expression = 224, - sym__class_expression = 225, - sym__class_expression_ext = 226, - sym_instantiated_class = 227, - sym_typed_class_expression = 228, - sym_class_function = 229, - sym_class_application = 230, - sym_let_class_expression = 231, - sym__class_field = 232, - sym__class_field_ext = 233, - sym_inheritance_definition = 234, - sym_instance_variable_definition = 235, - sym_method_definition = 236, - sym_class_initializer = 237, - sym_let_open_class_expression = 238, - sym_parenthesized_class_expression = 239, - sym__typed = 240, - sym__simple_typed = 241, - sym__polymorphic_typed = 242, - sym__polymorphic_type = 243, - sym_polymorphic_type = 244, - sym__abstract_type = 245, - sym__parenthesized_abstract_type = 246, - sym__simple_type = 247, - sym__tuple_type = 248, - sym__tuple_type_ext = 249, - sym__type = 250, - sym__type_ext = 251, - sym_function_type = 252, - sym_typed_label = 253, - sym_tuple_type = 254, - sym_constructed_type = 255, - sym_aliased_type = 256, - sym_polymorphic_variant_type = 257, - sym__tag_spec = 258, - sym_tag_specification = 259, - sym_package_type = 260, - sym_object_type = 261, - sym_method_type = 262, - sym_hash_type = 263, - sym_parenthesized_type = 264, - sym__simple_expression = 265, - sym__expression = 266, - sym__sequence_expression = 267, - sym__sequence_expression_ext = 268, - sym_typed_expression = 269, - sym_product_expression = 270, - sym_cons_expression = 271, - sym_list_expression = 272, - sym_array_expression = 273, - sym_record_expression = 274, - sym_field_expression = 275, - sym_application_expression = 276, - sym__argument = 277, - sym_labeled_argument = 278, - sym_prefix_expression = 279, - sym_sign_expression = 280, - sym_hash_expression = 281, - sym_infix_expression = 282, - sym_field_get_expression = 283, - sym_array_get_expression = 284, - sym_string_get_expression = 285, - sym_bigarray_get_expression = 286, - sym_set_expression = 287, - sym_if_expression = 288, - sym_then_clause = 289, - sym_else_clause = 290, - sym_while_expression = 291, - sym_do_clause = 292, - sym_for_expression = 293, - sym_sequence_expression = 294, - sym_match_expression = 295, - sym__match_cases = 296, - sym_match_case = 297, - sym_guard = 298, - sym_refutation_case = 299, - sym_function_expression = 300, - sym_fun_expression = 301, - sym_try_expression = 302, - sym_let_expression = 303, - sym_coercion_expression = 304, - sym_assert_expression = 305, - sym_lazy_expression = 306, - sym_let_module_expression = 307, - sym_let_open_expression = 308, - sym_local_open_expression = 309, - sym_package_expression = 310, - sym_let_exception_expression = 311, - sym_new_expression = 312, - sym_object_copy_expression = 313, - sym_instance_variable_expression = 314, - sym_method_invocation = 315, - sym_object_expression = 316, - sym_parenthesized_expression = 317, - sym__simple_pattern = 318, - sym__simple_pattern_ext = 319, - sym__pattern = 320, - sym__pattern_ext = 321, - sym__binding_pattern = 322, - sym__binding_pattern_ext = 323, - sym_alias_pattern = 324, - sym_alias_binding_pattern = 325, - sym_typed_pattern = 326, - sym_typed_binding_pattern = 327, - sym_or_pattern = 328, - sym_or_binding_pattern = 329, - sym_constructor_pattern = 330, - sym_constructor_binding_pattern = 331, - sym_tag_pattern = 332, - sym_tag_binding_pattern = 333, - sym_polymorphic_variant_pattern = 334, - sym_tuple_pattern = 335, - sym_tuple_binding_pattern = 336, - sym_record_pattern = 337, - sym_field_pattern = 338, - sym_record_binding_pattern = 339, - sym_field_binding_pattern = 340, - sym_list_pattern = 341, - sym_list_binding_pattern = 342, - sym_cons_pattern = 343, - sym_cons_binding_pattern = 344, - sym_array_pattern = 345, - sym_array_binding_pattern = 346, - sym_range_pattern = 347, - sym_lazy_pattern = 348, - sym_lazy_binding_pattern = 349, - sym_local_open_pattern = 350, - sym_local_open_binding_pattern = 351, - sym_package_pattern = 352, - sym_parenthesized_pattern = 353, - sym_parenthesized_binding_pattern = 354, - sym_exception_pattern = 355, - sym_attribute = 356, - sym_item_attribute = 357, - sym_floating_attribute = 358, - sym_attribute_payload = 359, - sym__extension = 360, - sym_extension = 361, - sym_quoted_extension = 362, - sym__item_extension = 363, - sym_item_extension = 364, - sym_quoted_item_extension = 365, - sym__attribute = 366, - sym__constant = 367, - sym__signed_constant = 368, - sym_number = 369, - sym_signed_number = 370, - sym_character = 371, - sym_character_content = 372, - sym_string = 373, - sym_string_content = 374, - sym_quoted_string = 375, - sym_quoted_string_content = 376, - sym_escape_sequence = 377, - sym_boolean = 378, - sym_unit = 379, - sym_sign_operator = 380, - sym_infix_operator = 381, - sym__pow_operator = 382, - sym__mult_operator = 383, - sym__add_operator = 384, - sym__and_operator = 385, - sym__or_operator = 386, - sym__assign_operator = 387, - sym_indexing_operator_path = 388, - sym__value_name = 389, - sym__value_pattern = 390, - sym_parenthesized_operator = 391, - sym_value_path = 392, - sym_module_path = 393, - sym_extended_module_path = 394, - sym_module_type_path = 395, - sym_field_path = 396, - sym_constructor_path = 397, - sym_type_constructor_path = 398, - sym_class_path = 399, - sym_class_type_path = 400, - sym__label = 401, - sym_directive = 402, - sym_type_variable = 403, - sym_tag = 404, - sym_attribute_id = 405, - aux_sym__structure_repeat1 = 406, - aux_sym__structure_repeat2 = 407, - aux_sym_expression_item_repeat1 = 408, - aux_sym__signature_repeat1 = 409, - aux_sym_value_definition_repeat1 = 410, - aux_sym_let_binding_repeat1 = 411, - aux_sym_external_repeat1 = 412, - aux_sym_type_definition_repeat1 = 413, - aux_sym_type_binding_repeat1 = 414, - aux_sym__type_params_repeat1 = 415, - aux_sym_variant_declaration_repeat1 = 416, - aux_sym_constructor_declaration_repeat1 = 417, - aux_sym__constructor_argument_repeat1 = 418, - aux_sym_record_declaration_repeat1 = 419, - aux_sym_module_definition_repeat1 = 420, - aux_sym_module_binding_repeat1 = 421, - aux_sym_class_definition_repeat1 = 422, - aux_sym_class_type_definition_repeat1 = 423, - aux_sym_module_type_constraint_repeat1 = 424, - aux_sym_instantiated_class_type_repeat1 = 425, - aux_sym_class_body_type_repeat1 = 426, - aux_sym_instance_variable_specification_repeat1 = 427, - aux_sym_method_specification_repeat1 = 428, - aux_sym_class_application_repeat1 = 429, - aux_sym__abstract_type_repeat1 = 430, - aux_sym_polymorphic_variant_type_repeat1 = 431, - aux_sym_polymorphic_variant_type_repeat2 = 432, - aux_sym_tag_specification_repeat1 = 433, - aux_sym_object_type_repeat1 = 434, - aux_sym_list_expression_repeat1 = 435, - aux_sym_record_expression_repeat1 = 436, - aux_sym__match_cases_repeat1 = 437, - aux_sym_object_copy_expression_repeat1 = 438, - aux_sym_object_expression_repeat1 = 439, - aux_sym_record_pattern_repeat1 = 440, - aux_sym_record_binding_pattern_repeat1 = 441, - aux_sym_list_pattern_repeat1 = 442, - aux_sym_list_binding_pattern_repeat1 = 443, - aux_sym_string_content_repeat1 = 444, - aux_sym_quoted_string_content_repeat1 = 445, - aux_sym_attribute_id_repeat1 = 446, - alias_sym_class_name = 447, - alias_sym_class_type_name = 448, - alias_sym_constructor_name = 449, - alias_sym_field_name = 450, - alias_sym_instance_variable_name = 451, - alias_sym_label_name = 452, - alias_sym_method_name = 453, - alias_sym_module_name = 454, - alias_sym_module_type_name = 455, - alias_sym_type_constructor = 456, - alias_sym_value_name = 457, - alias_sym_value_pattern = 458, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym__identifier] = "_identifier", - [sym_shebang] = "shebang", - [anon_sym_SEMI_SEMI] = ";;", - [anon_sym_let] = "let", - [anon_sym_rec] = "rec", - [anon_sym_and] = "and", - [anon_sym_COLON_GT] = ":>", - [anon_sym_EQ] = "=", - [anon_sym_TILDE] = "~", - [anon_sym_QMARK] = "\?", - [anon_sym_COLON] = ":", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_external] = "external", - [anon_sym_type] = "type", - [anon_sym_nonrec] = "nonrec", - [anon_sym_private] = "private", - [anon_sym_DOT_DOT] = "..", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_COMMA] = ",", - [anon_sym_PLUS] = "+", - [anon_sym_BANG] = "!", - [anon_sym_DASH] = "-", - [anon_sym__] = "_", - [anon_sym_COLON_EQ] = ":=", - [anon_sym_PIPE] = "|", - [anon_sym_LBRACK] = "[", - [anon_sym_RBRACK] = "]", - [anon_sym_true] = "true", - [anon_sym_false] = "false", - [anon_sym_of] = "of", - [anon_sym_COLON2] = ":", - [anon_sym_DOT] = ".", - [anon_sym_DASH_GT] = "->", - [anon_sym_STAR] = "*", - [anon_sym_LBRACE] = "{", - [anon_sym_SEMI] = ";", - [anon_sym_RBRACE] = "}", - [anon_sym_mutable] = "mutable", - [anon_sym_constraint] = "constraint", - [anon_sym_exception] = "exception", - [anon_sym_module] = "module", - [anon_sym_open] = "open", - [anon_sym_include] = "include", - [anon_sym_class] = "class", - [anon_sym_virtual] = "virtual", - [anon_sym_val] = "val", - [anon_sym_sig] = "sig", - [anon_sym_end] = "end", - [anon_sym_with] = "with", - [anon_sym_functor] = "functor", - [anon_sym_struct] = "struct", - [anon_sym_object] = "object", - [anon_sym_inherit] = "inherit", - [anon_sym_method] = "method", - [anon_sym_in] = "in", - [anon_sym_fun] = "fun", - [anon_sym_as] = "as", - [anon_sym_initializer] = "initializer", - [anon_sym_LBRACK_GT] = "[>", - [anon_sym_LBRACK_LT] = "[<", - [anon_sym_GT] = ">", - [anon_sym_AMP] = "&", - [anon_sym_LT] = "<", - [anon_sym_POUND] = "#", - [anon_sym_COLON_COLON] = "::", - [anon_sym_LBRACK_PIPE] = "[|", - [anon_sym_PIPE_RBRACK] = "|]", - [anon_sym_LT_DASH] = "<-", - [anon_sym_if] = "if", - [anon_sym_then] = "then", - [anon_sym_else] = "else", - [anon_sym_while] = "while", - [anon_sym_do] = "do", - [anon_sym_done] = "done", - [anon_sym_for] = "for", - [anon_sym_to] = "to", - [anon_sym_downto] = "downto", - [anon_sym_match] = "match", - [anon_sym_when] = "when", - [anon_sym_function] = "function", - [anon_sym_try] = "try", - [anon_sym_assert] = "assert", - [anon_sym_lazy] = "lazy", - [anon_sym_new] = "new", - [anon_sym_LBRACE_LT] = "{<", - [anon_sym_GT_RBRACE] = ">}", - [anon_sym_begin] = "begin", - [sym_ocamlyacc_value] = "ocamlyacc_value", - [anon_sym_LBRACK_AT] = "[@", - [anon_sym_LBRACK_AT_AT] = "[@@", - [anon_sym_LBRACK_AT_AT_AT] = "[@@@", - [anon_sym_LBRACK_PERCENT] = "[%", - [anon_sym_LBRACE_PERCENT] = "{%", - [aux_sym_quoted_extension_token1] = "quoted_extension_token1", - [anon_sym_LBRACK_PERCENT_PERCENT] = "[%%", - [anon_sym_LBRACE_PERCENT_PERCENT] = "{%%", - [anon_sym_PERCENT] = "%", - [aux_sym_number_token1] = "number_token1", - [anon_sym_SQUOTE] = "'", - [aux_sym_character_content_token1] = "character_content_token1", - [anon_sym_DQUOTE] = "\"", - [anon_sym_] = " ", - [anon_sym_LF] = "\n", - [anon_sym_TAB] = "\t", - [anon_sym_LBRACK_AT2] = "[@", - [anon_sym_LBRACK_AT_AT2] = "[@@", - [anon_sym_LBRACK_AT_AT_AT2] = "[@@@", - [aux_sym_string_content_token1] = "string_content_token1", - [aux_sym_string_content_token2] = "escape_sequence", - [aux_sym_string_content_token3] = "escape_sequence", - [aux_sym_quoted_string_content_token1] = "quoted_string_content_token1", - [aux_sym_escape_sequence_token1] = "escape_sequence_token1", - [aux_sym_escape_sequence_token2] = "escape_sequence_token2", - [aux_sym_escape_sequence_token3] = "escape_sequence_token3", - [aux_sym_escape_sequence_token4] = "escape_sequence_token4", - [sym_conversion_specification] = "conversion_specification", - [sym_pretty_printing_indication] = "pretty_printing_indication", - [sym_prefix_operator] = "prefix_operator", - [anon_sym_PLUS_DOT] = "+.", - [anon_sym_DASH_DOT] = "-.", - [sym_hash_operator] = "hash_operator", - [aux_sym__pow_operator_token1] = "_pow_operator_token1", - [anon_sym_lsl] = "lsl", - [anon_sym_lsr] = "lsr", - [anon_sym_asr] = "asr", - [aux_sym__mult_operator_token1] = "_mult_operator_token1", - [anon_sym_mod] = "mod", - [anon_sym_land] = "land", - [anon_sym_lor] = "lor", - [anon_sym_lxor] = "lxor", - [aux_sym__add_operator_token1] = "_add_operator_token1", - [sym__concat_operator] = "_concat_operator", - [sym__rel_operator] = "_rel_operator", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_or] = "or", - [anon_sym_PIPE_PIPE] = "||", - [sym_indexing_operator] = "indexing_operator", - [sym_let_operator] = "let_operator", - [sym_and_operator] = "and_operator", - [sym_match_operator] = "match_operator", - [sym__capitalized_identifier] = "_capitalized_identifier", - [aux_sym_directive_token1] = "directive_token1", - [aux_sym_type_variable_token1] = "type_variable_token1", - [aux_sym_tag_token1] = "tag_token1", - [aux_sym_attribute_id_token1] = "attribute_id_token1", - [sym_comment] = "comment", - [sym__left_quoted_string_delimiter] = "_left_quoted_string_delimiter", - [sym__right_quoted_string_delimiter] = "_right_quoted_string_delimiter", - [sym_line_number_directive] = "line_number_directive", - [sym__null] = "_null", - [sym_compilation_unit] = "compilation_unit", - [sym__structure] = "_structure", - [sym_expression_item] = "expression_item", - [sym__signature] = "_signature", - [sym_toplevel_directive] = "toplevel_directive", - [sym__structure_item] = "_structure_item", - [sym__structure_item_ext] = "_structure_item_ext", - [sym_value_definition] = "value_definition", - [sym_let_binding] = "let_binding", - [sym__parameter] = "_parameter", - [sym_parameter] = "parameter", - [sym_external] = "external", - [sym_type_definition] = "type_definition", - [sym_type_binding] = "type_binding", - [sym__type_params] = "_type_params", - [sym__type_param] = "_type_param", - [sym__type_equation] = "_type_equation", - [sym_variant_declaration] = "variant_declaration", - [sym_constructor_declaration] = "constructor_declaration", - [sym__constructor_argument] = "_constructor_argument", - [sym_record_declaration] = "record_declaration", - [sym_field_declaration] = "field_declaration", - [sym_type_constraint] = "type_constraint", - [sym_exception_definition] = "exception_definition", - [sym_module_definition] = "module_definition", - [sym_module_binding] = "module_binding", - [sym_module_parameter] = "module_parameter", - [sym_module_type_definition] = "module_type_definition", - [sym_open_module] = "open_module", - [sym_include_module] = "include_module", - [sym_class_definition] = "class_definition", - [sym_class_binding] = "class_binding", - [sym_class_type_definition] = "class_type_definition", - [sym_class_type_binding] = "class_type_binding", - [sym__signature_item] = "_signature_item", - [sym__signature_item_ext] = "_signature_item_ext", - [sym_value_specification] = "value_specification", - [sym_include_module_type] = "include_module_type", - [sym__module_typed] = "_module_typed", - [sym__module_type] = "_module_type", - [sym_signature] = "signature", - [sym_module_type_constraint] = "module_type_constraint", - [sym_constrain_type] = "constrain_type", - [sym_constrain_module] = "constrain_module", - [sym_constrain_module_type] = "constrain_module_type", - [sym_module_type_of] = "module_type_of", - [sym_functor_type] = "functor_type", - [sym_parenthesized_module_type] = "parenthesized_module_type", - [sym__simple_module_expression] = "_simple_module_expression", - [sym__simple_module_expression_ext] = "_simple_module_expression_ext", - [sym__module_expression] = "_module_expression", - [sym_structure] = "structure", - [sym_functor] = "functor", - [sym_module_application] = "module_application", - [sym_typed_module_expression] = "typed_module_expression", - [sym_packed_module] = "packed_module", - [sym_parenthesized_module_expression] = "parenthesized_module_expression", - [sym__class_typed] = "_class_typed", - [sym__simple_class_type] = "_simple_class_type", - [sym__simple_class_type_ext] = "_simple_class_type_ext", - [sym__class_type] = "_class_type", - [sym__class_type_ext] = "_class_type_ext", - [sym_instantiated_class_type] = "instantiated_class_type", - [sym_class_body_type] = "class_body_type", - [sym__class_field_specification] = "_class_field_specification", - [sym__class_field_specification_ext] = "_class_field_specification_ext", - [sym_inheritance_specification] = "inheritance_specification", - [sym_instance_variable_specification] = "instance_variable_specification", - [sym_method_specification] = "method_specification", - [sym_type_parameter_constraint] = "type_parameter_constraint", - [sym_let_open_class_type] = "let_open_class_type", - [sym_class_function_type] = "class_function_type", - [sym__simple_class_expression] = "_simple_class_expression", - [sym__class_expression] = "_class_expression", - [sym__class_expression_ext] = "_class_expression_ext", - [sym_instantiated_class] = "instantiated_class", - [sym_typed_class_expression] = "typed_class_expression", - [sym_class_function] = "class_function", - [sym_class_application] = "class_application", - [sym_let_class_expression] = "let_class_expression", - [sym__class_field] = "_class_field", - [sym__class_field_ext] = "_class_field_ext", - [sym_inheritance_definition] = "inheritance_definition", - [sym_instance_variable_definition] = "instance_variable_definition", - [sym_method_definition] = "method_definition", - [sym_class_initializer] = "class_initializer", - [sym_let_open_class_expression] = "let_open_class_expression", - [sym_parenthesized_class_expression] = "parenthesized_class_expression", - [sym__typed] = "_typed", - [sym__simple_typed] = "_simple_typed", - [sym__polymorphic_typed] = "_polymorphic_typed", - [sym__polymorphic_type] = "_polymorphic_type", - [sym_polymorphic_type] = "polymorphic_type", - [sym__abstract_type] = "_abstract_type", - [sym__parenthesized_abstract_type] = "abstract_type", - [sym__simple_type] = "_simple_type", - [sym__tuple_type] = "_tuple_type", - [sym__tuple_type_ext] = "_tuple_type_ext", - [sym__type] = "_type", - [sym__type_ext] = "_type_ext", - [sym_function_type] = "function_type", - [sym_typed_label] = "typed_label", - [sym_tuple_type] = "tuple_type", - [sym_constructed_type] = "constructed_type", - [sym_aliased_type] = "aliased_type", - [sym_polymorphic_variant_type] = "polymorphic_variant_type", - [sym__tag_spec] = "_tag_spec", - [sym_tag_specification] = "tag_specification", - [sym_package_type] = "package_type", - [sym_object_type] = "object_type", - [sym_method_type] = "method_type", - [sym_hash_type] = "hash_type", - [sym_parenthesized_type] = "parenthesized_type", - [sym__simple_expression] = "_simple_expression", - [sym__expression] = "_expression", - [sym__sequence_expression] = "_sequence_expression", - [sym__sequence_expression_ext] = "_sequence_expression_ext", - [sym_typed_expression] = "typed_expression", - [sym_product_expression] = "product_expression", - [sym_cons_expression] = "cons_expression", - [sym_list_expression] = "list_expression", - [sym_array_expression] = "array_expression", - [sym_record_expression] = "record_expression", - [sym_field_expression] = "field_expression", - [sym_application_expression] = "application_expression", - [sym__argument] = "_argument", - [sym_labeled_argument] = "labeled_argument", - [sym_prefix_expression] = "prefix_expression", - [sym_sign_expression] = "sign_expression", - [sym_hash_expression] = "hash_expression", - [sym_infix_expression] = "infix_expression", - [sym_field_get_expression] = "field_get_expression", - [sym_array_get_expression] = "array_get_expression", - [sym_string_get_expression] = "string_get_expression", - [sym_bigarray_get_expression] = "bigarray_get_expression", - [sym_set_expression] = "set_expression", - [sym_if_expression] = "if_expression", - [sym_then_clause] = "then_clause", - [sym_else_clause] = "else_clause", - [sym_while_expression] = "while_expression", - [sym_do_clause] = "do_clause", - [sym_for_expression] = "for_expression", - [sym_sequence_expression] = "sequence_expression", - [sym_match_expression] = "match_expression", - [sym__match_cases] = "_match_cases", - [sym_match_case] = "match_case", - [sym_guard] = "guard", - [sym_refutation_case] = "refutation_case", - [sym_function_expression] = "function_expression", - [sym_fun_expression] = "fun_expression", - [sym_try_expression] = "try_expression", - [sym_let_expression] = "let_expression", - [sym_coercion_expression] = "coercion_expression", - [sym_assert_expression] = "assert_expression", - [sym_lazy_expression] = "lazy_expression", - [sym_let_module_expression] = "let_module_expression", - [sym_let_open_expression] = "let_open_expression", - [sym_local_open_expression] = "local_open_expression", - [sym_package_expression] = "package_expression", - [sym_let_exception_expression] = "let_exception_expression", - [sym_new_expression] = "new_expression", - [sym_object_copy_expression] = "object_copy_expression", - [sym_instance_variable_expression] = "instance_variable_expression", - [sym_method_invocation] = "method_invocation", - [sym_object_expression] = "object_expression", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym__simple_pattern] = "_simple_pattern", - [sym__simple_pattern_ext] = "_simple_pattern_ext", - [sym__pattern] = "_pattern", - [sym__pattern_ext] = "_pattern_ext", - [sym__binding_pattern] = "_binding_pattern", - [sym__binding_pattern_ext] = "_binding_pattern_ext", - [sym_alias_pattern] = "alias_pattern", - [sym_alias_binding_pattern] = "alias_pattern", - [sym_typed_pattern] = "typed_pattern", - [sym_typed_binding_pattern] = "typed_pattern", - [sym_or_pattern] = "or_pattern", - [sym_or_binding_pattern] = "or_pattern", - [sym_constructor_pattern] = "constructor_pattern", - [sym_constructor_binding_pattern] = "constructor_pattern", - [sym_tag_pattern] = "tag_pattern", - [sym_tag_binding_pattern] = "tag_pattern", - [sym_polymorphic_variant_pattern] = "polymorphic_variant_pattern", - [sym_tuple_pattern] = "tuple_pattern", - [sym_tuple_binding_pattern] = "tuple_pattern", - [sym_record_pattern] = "record_pattern", - [sym_field_pattern] = "field_pattern", - [sym_record_binding_pattern] = "record_binding_pattern", - [sym_field_binding_pattern] = "field_pattern", - [sym_list_pattern] = "list_pattern", - [sym_list_binding_pattern] = "list_binding_pattern", - [sym_cons_pattern] = "cons_pattern", - [sym_cons_binding_pattern] = "cons_pattern", - [sym_array_pattern] = "array_pattern", - [sym_array_binding_pattern] = "array_binding_pattern", - [sym_range_pattern] = "range_pattern", - [sym_lazy_pattern] = "lazy_pattern", - [sym_lazy_binding_pattern] = "lazy_pattern", - [sym_local_open_pattern] = "local_open_pattern", - [sym_local_open_binding_pattern] = "local_open_pattern", - [sym_package_pattern] = "package_pattern", - [sym_parenthesized_pattern] = "parenthesized_pattern", - [sym_parenthesized_binding_pattern] = "parenthesized_pattern", - [sym_exception_pattern] = "exception_pattern", - [sym_attribute] = "attribute", - [sym_item_attribute] = "item_attribute", - [sym_floating_attribute] = "floating_attribute", - [sym_attribute_payload] = "attribute_payload", - [sym__extension] = "_extension", - [sym_extension] = "extension", - [sym_quoted_extension] = "quoted_extension", - [sym__item_extension] = "_item_extension", - [sym_item_extension] = "item_extension", - [sym_quoted_item_extension] = "quoted_item_extension", - [sym__attribute] = "_attribute", - [sym__constant] = "_constant", - [sym__signed_constant] = "_signed_constant", - [sym_number] = "number", - [sym_signed_number] = "signed_number", - [sym_character] = "character", - [sym_character_content] = "character_content", - [sym_string] = "string", - [sym_string_content] = "string_content", - [sym_quoted_string] = "quoted_string", - [sym_quoted_string_content] = "quoted_string_content", - [sym_escape_sequence] = "escape_sequence", - [sym_boolean] = "boolean", - [sym_unit] = "unit", - [sym_sign_operator] = "sign_operator", - [sym_infix_operator] = "infix_operator", - [sym__pow_operator] = "_pow_operator", - [sym__mult_operator] = "_mult_operator", - [sym__add_operator] = "_add_operator", - [sym__and_operator] = "_and_operator", - [sym__or_operator] = "_or_operator", - [sym__assign_operator] = "_assign_operator", - [sym_indexing_operator_path] = "indexing_operator_path", - [sym__value_name] = "_value_name", - [sym__value_pattern] = "_value_pattern", - [sym_parenthesized_operator] = "parenthesized_operator", - [sym_value_path] = "value_path", - [sym_module_path] = "module_path", - [sym_extended_module_path] = "extended_module_path", - [sym_module_type_path] = "module_type_path", - [sym_field_path] = "field_path", - [sym_constructor_path] = "constructor_path", - [sym_type_constructor_path] = "type_constructor_path", - [sym_class_path] = "class_path", - [sym_class_type_path] = "class_type_path", - [sym__label] = "_label", - [sym_directive] = "directive", - [sym_type_variable] = "type_variable", - [sym_tag] = "tag", - [sym_attribute_id] = "attribute_id", - [aux_sym__structure_repeat1] = "_structure_repeat1", - [aux_sym__structure_repeat2] = "_structure_repeat2", - [aux_sym_expression_item_repeat1] = "expression_item_repeat1", - [aux_sym__signature_repeat1] = "_signature_repeat1", - [aux_sym_value_definition_repeat1] = "value_definition_repeat1", - [aux_sym_let_binding_repeat1] = "let_binding_repeat1", - [aux_sym_external_repeat1] = "external_repeat1", - [aux_sym_type_definition_repeat1] = "type_definition_repeat1", - [aux_sym_type_binding_repeat1] = "type_binding_repeat1", - [aux_sym__type_params_repeat1] = "_type_params_repeat1", - [aux_sym_variant_declaration_repeat1] = "variant_declaration_repeat1", - [aux_sym_constructor_declaration_repeat1] = "constructor_declaration_repeat1", - [aux_sym__constructor_argument_repeat1] = "_constructor_argument_repeat1", - [aux_sym_record_declaration_repeat1] = "record_declaration_repeat1", - [aux_sym_module_definition_repeat1] = "module_definition_repeat1", - [aux_sym_module_binding_repeat1] = "module_binding_repeat1", - [aux_sym_class_definition_repeat1] = "class_definition_repeat1", - [aux_sym_class_type_definition_repeat1] = "class_type_definition_repeat1", - [aux_sym_module_type_constraint_repeat1] = "module_type_constraint_repeat1", - [aux_sym_instantiated_class_type_repeat1] = "instantiated_class_type_repeat1", - [aux_sym_class_body_type_repeat1] = "class_body_type_repeat1", - [aux_sym_instance_variable_specification_repeat1] = "instance_variable_specification_repeat1", - [aux_sym_method_specification_repeat1] = "method_specification_repeat1", - [aux_sym_class_application_repeat1] = "class_application_repeat1", - [aux_sym__abstract_type_repeat1] = "_abstract_type_repeat1", - [aux_sym_polymorphic_variant_type_repeat1] = "polymorphic_variant_type_repeat1", - [aux_sym_polymorphic_variant_type_repeat2] = "polymorphic_variant_type_repeat2", - [aux_sym_tag_specification_repeat1] = "tag_specification_repeat1", - [aux_sym_object_type_repeat1] = "object_type_repeat1", - [aux_sym_list_expression_repeat1] = "list_expression_repeat1", - [aux_sym_record_expression_repeat1] = "record_expression_repeat1", - [aux_sym__match_cases_repeat1] = "_match_cases_repeat1", - [aux_sym_object_copy_expression_repeat1] = "object_copy_expression_repeat1", - [aux_sym_object_expression_repeat1] = "object_expression_repeat1", - [aux_sym_record_pattern_repeat1] = "record_pattern_repeat1", - [aux_sym_record_binding_pattern_repeat1] = "record_binding_pattern_repeat1", - [aux_sym_list_pattern_repeat1] = "list_pattern_repeat1", - [aux_sym_list_binding_pattern_repeat1] = "list_binding_pattern_repeat1", - [aux_sym_string_content_repeat1] = "string_content_repeat1", - [aux_sym_quoted_string_content_repeat1] = "quoted_string_content_repeat1", - [aux_sym_attribute_id_repeat1] = "attribute_id_repeat1", - [alias_sym_class_name] = "class_name", - [alias_sym_class_type_name] = "class_type_name", - [alias_sym_constructor_name] = "constructor_name", - [alias_sym_field_name] = "field_name", - [alias_sym_instance_variable_name] = "instance_variable_name", - [alias_sym_label_name] = "label_name", - [alias_sym_method_name] = "method_name", - [alias_sym_module_name] = "module_name", - [alias_sym_module_type_name] = "module_type_name", - [alias_sym_type_constructor] = "type_constructor", - [alias_sym_value_name] = "value_name", - [alias_sym_value_pattern] = "value_pattern", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym__identifier] = sym__identifier, - [sym_shebang] = sym_shebang, - [anon_sym_SEMI_SEMI] = anon_sym_SEMI_SEMI, - [anon_sym_let] = anon_sym_let, - [anon_sym_rec] = anon_sym_rec, - [anon_sym_and] = anon_sym_and, - [anon_sym_COLON_GT] = anon_sym_COLON_GT, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_QMARK] = anon_sym_QMARK, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_external] = anon_sym_external, - [anon_sym_type] = anon_sym_type, - [anon_sym_nonrec] = anon_sym_nonrec, - [anon_sym_private] = anon_sym_private, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym__] = anon_sym__, - [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_true] = anon_sym_true, - [anon_sym_false] = anon_sym_false, - [anon_sym_of] = anon_sym_of, - [anon_sym_COLON2] = anon_sym_COLON, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_DASH_GT] = anon_sym_DASH_GT, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_mutable] = anon_sym_mutable, - [anon_sym_constraint] = anon_sym_constraint, - [anon_sym_exception] = anon_sym_exception, - [anon_sym_module] = anon_sym_module, - [anon_sym_open] = anon_sym_open, - [anon_sym_include] = anon_sym_include, - [anon_sym_class] = anon_sym_class, - [anon_sym_virtual] = anon_sym_virtual, - [anon_sym_val] = anon_sym_val, - [anon_sym_sig] = anon_sym_sig, - [anon_sym_end] = anon_sym_end, - [anon_sym_with] = anon_sym_with, - [anon_sym_functor] = anon_sym_functor, - [anon_sym_struct] = anon_sym_struct, - [anon_sym_object] = anon_sym_object, - [anon_sym_inherit] = anon_sym_inherit, - [anon_sym_method] = anon_sym_method, - [anon_sym_in] = anon_sym_in, - [anon_sym_fun] = anon_sym_fun, - [anon_sym_as] = anon_sym_as, - [anon_sym_initializer] = anon_sym_initializer, - [anon_sym_LBRACK_GT] = anon_sym_LBRACK_GT, - [anon_sym_LBRACK_LT] = anon_sym_LBRACK_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_POUND] = anon_sym_POUND, - [anon_sym_COLON_COLON] = anon_sym_COLON_COLON, - [anon_sym_LBRACK_PIPE] = anon_sym_LBRACK_PIPE, - [anon_sym_PIPE_RBRACK] = anon_sym_PIPE_RBRACK, - [anon_sym_LT_DASH] = anon_sym_LT_DASH, - [anon_sym_if] = anon_sym_if, - [anon_sym_then] = anon_sym_then, - [anon_sym_else] = anon_sym_else, - [anon_sym_while] = anon_sym_while, - [anon_sym_do] = anon_sym_do, - [anon_sym_done] = anon_sym_done, - [anon_sym_for] = anon_sym_for, - [anon_sym_to] = anon_sym_to, - [anon_sym_downto] = anon_sym_downto, - [anon_sym_match] = anon_sym_match, - [anon_sym_when] = anon_sym_when, - [anon_sym_function] = anon_sym_function, - [anon_sym_try] = anon_sym_try, - [anon_sym_assert] = anon_sym_assert, - [anon_sym_lazy] = anon_sym_lazy, - [anon_sym_new] = anon_sym_new, - [anon_sym_LBRACE_LT] = anon_sym_LBRACE_LT, - [anon_sym_GT_RBRACE] = anon_sym_GT_RBRACE, - [anon_sym_begin] = anon_sym_begin, - [sym_ocamlyacc_value] = sym_ocamlyacc_value, - [anon_sym_LBRACK_AT] = anon_sym_LBRACK_AT, - [anon_sym_LBRACK_AT_AT] = anon_sym_LBRACK_AT_AT, - [anon_sym_LBRACK_AT_AT_AT] = anon_sym_LBRACK_AT_AT_AT, - [anon_sym_LBRACK_PERCENT] = anon_sym_LBRACK_PERCENT, - [anon_sym_LBRACE_PERCENT] = anon_sym_LBRACE_PERCENT, - [aux_sym_quoted_extension_token1] = aux_sym_quoted_extension_token1, - [anon_sym_LBRACK_PERCENT_PERCENT] = anon_sym_LBRACK_PERCENT_PERCENT, - [anon_sym_LBRACE_PERCENT_PERCENT] = anon_sym_LBRACE_PERCENT_PERCENT, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [aux_sym_number_token1] = aux_sym_number_token1, - [anon_sym_SQUOTE] = anon_sym_SQUOTE, - [aux_sym_character_content_token1] = aux_sym_character_content_token1, - [anon_sym_DQUOTE] = anon_sym_DQUOTE, - [anon_sym_] = anon_sym_, - [anon_sym_LF] = anon_sym_LF, - [anon_sym_TAB] = anon_sym_TAB, - [anon_sym_LBRACK_AT2] = anon_sym_LBRACK_AT, - [anon_sym_LBRACK_AT_AT2] = anon_sym_LBRACK_AT_AT, - [anon_sym_LBRACK_AT_AT_AT2] = anon_sym_LBRACK_AT_AT_AT, - [aux_sym_string_content_token1] = aux_sym_string_content_token1, - [aux_sym_string_content_token2] = sym_escape_sequence, - [aux_sym_string_content_token3] = sym_escape_sequence, - [aux_sym_quoted_string_content_token1] = aux_sym_quoted_string_content_token1, - [aux_sym_escape_sequence_token1] = aux_sym_escape_sequence_token1, - [aux_sym_escape_sequence_token2] = aux_sym_escape_sequence_token2, - [aux_sym_escape_sequence_token3] = aux_sym_escape_sequence_token3, - [aux_sym_escape_sequence_token4] = aux_sym_escape_sequence_token4, - [sym_conversion_specification] = sym_conversion_specification, - [sym_pretty_printing_indication] = sym_pretty_printing_indication, - [sym_prefix_operator] = sym_prefix_operator, - [anon_sym_PLUS_DOT] = anon_sym_PLUS_DOT, - [anon_sym_DASH_DOT] = anon_sym_DASH_DOT, - [sym_hash_operator] = sym_hash_operator, - [aux_sym__pow_operator_token1] = aux_sym__pow_operator_token1, - [anon_sym_lsl] = anon_sym_lsl, - [anon_sym_lsr] = anon_sym_lsr, - [anon_sym_asr] = anon_sym_asr, - [aux_sym__mult_operator_token1] = aux_sym__mult_operator_token1, - [anon_sym_mod] = anon_sym_mod, - [anon_sym_land] = anon_sym_land, - [anon_sym_lor] = anon_sym_lor, - [anon_sym_lxor] = anon_sym_lxor, - [aux_sym__add_operator_token1] = aux_sym__add_operator_token1, - [sym__concat_operator] = sym__concat_operator, - [sym__rel_operator] = sym__rel_operator, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_or] = anon_sym_or, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [sym_indexing_operator] = sym_indexing_operator, - [sym_let_operator] = sym_let_operator, - [sym_and_operator] = sym_and_operator, - [sym_match_operator] = sym_match_operator, - [sym__capitalized_identifier] = sym__capitalized_identifier, - [aux_sym_directive_token1] = aux_sym_directive_token1, - [aux_sym_type_variable_token1] = aux_sym_type_variable_token1, - [aux_sym_tag_token1] = aux_sym_tag_token1, - [aux_sym_attribute_id_token1] = aux_sym_attribute_id_token1, - [sym_comment] = sym_comment, - [sym__left_quoted_string_delimiter] = sym__left_quoted_string_delimiter, - [sym__right_quoted_string_delimiter] = sym__right_quoted_string_delimiter, - [sym_line_number_directive] = sym_line_number_directive, - [sym__null] = sym__null, - [sym_compilation_unit] = sym_compilation_unit, - [sym__structure] = sym__structure, - [sym_expression_item] = sym_expression_item, - [sym__signature] = sym__signature, - [sym_toplevel_directive] = sym_toplevel_directive, - [sym__structure_item] = sym__structure_item, - [sym__structure_item_ext] = sym__structure_item_ext, - [sym_value_definition] = sym_value_definition, - [sym_let_binding] = sym_let_binding, - [sym__parameter] = sym__parameter, - [sym_parameter] = sym_parameter, - [sym_external] = sym_external, - [sym_type_definition] = sym_type_definition, - [sym_type_binding] = sym_type_binding, - [sym__type_params] = sym__type_params, - [sym__type_param] = sym__type_param, - [sym__type_equation] = sym__type_equation, - [sym_variant_declaration] = sym_variant_declaration, - [sym_constructor_declaration] = sym_constructor_declaration, - [sym__constructor_argument] = sym__constructor_argument, - [sym_record_declaration] = sym_record_declaration, - [sym_field_declaration] = sym_field_declaration, - [sym_type_constraint] = sym_type_constraint, - [sym_exception_definition] = sym_exception_definition, - [sym_module_definition] = sym_module_definition, - [sym_module_binding] = sym_module_binding, - [sym_module_parameter] = sym_module_parameter, - [sym_module_type_definition] = sym_module_type_definition, - [sym_open_module] = sym_open_module, - [sym_include_module] = sym_include_module, - [sym_class_definition] = sym_class_definition, - [sym_class_binding] = sym_class_binding, - [sym_class_type_definition] = sym_class_type_definition, - [sym_class_type_binding] = sym_class_type_binding, - [sym__signature_item] = sym__signature_item, - [sym__signature_item_ext] = sym__signature_item_ext, - [sym_value_specification] = sym_value_specification, - [sym_include_module_type] = sym_include_module_type, - [sym__module_typed] = sym__module_typed, - [sym__module_type] = sym__module_type, - [sym_signature] = sym_signature, - [sym_module_type_constraint] = sym_module_type_constraint, - [sym_constrain_type] = sym_constrain_type, - [sym_constrain_module] = sym_constrain_module, - [sym_constrain_module_type] = sym_constrain_module_type, - [sym_module_type_of] = sym_module_type_of, - [sym_functor_type] = sym_functor_type, - [sym_parenthesized_module_type] = sym_parenthesized_module_type, - [sym__simple_module_expression] = sym__simple_module_expression, - [sym__simple_module_expression_ext] = sym__simple_module_expression_ext, - [sym__module_expression] = sym__module_expression, - [sym_structure] = sym_structure, - [sym_functor] = sym_functor, - [sym_module_application] = sym_module_application, - [sym_typed_module_expression] = sym_typed_module_expression, - [sym_packed_module] = sym_packed_module, - [sym_parenthesized_module_expression] = sym_parenthesized_module_expression, - [sym__class_typed] = sym__class_typed, - [sym__simple_class_type] = sym__simple_class_type, - [sym__simple_class_type_ext] = sym__simple_class_type_ext, - [sym__class_type] = sym__class_type, - [sym__class_type_ext] = sym__class_type_ext, - [sym_instantiated_class_type] = sym_instantiated_class_type, - [sym_class_body_type] = sym_class_body_type, - [sym__class_field_specification] = sym__class_field_specification, - [sym__class_field_specification_ext] = sym__class_field_specification_ext, - [sym_inheritance_specification] = sym_inheritance_specification, - [sym_instance_variable_specification] = sym_instance_variable_specification, - [sym_method_specification] = sym_method_specification, - [sym_type_parameter_constraint] = sym_type_parameter_constraint, - [sym_let_open_class_type] = sym_let_open_class_type, - [sym_class_function_type] = sym_class_function_type, - [sym__simple_class_expression] = sym__simple_class_expression, - [sym__class_expression] = sym__class_expression, - [sym__class_expression_ext] = sym__class_expression_ext, - [sym_instantiated_class] = sym_instantiated_class, - [sym_typed_class_expression] = sym_typed_class_expression, - [sym_class_function] = sym_class_function, - [sym_class_application] = sym_class_application, - [sym_let_class_expression] = sym_let_class_expression, - [sym__class_field] = sym__class_field, - [sym__class_field_ext] = sym__class_field_ext, - [sym_inheritance_definition] = sym_inheritance_definition, - [sym_instance_variable_definition] = sym_instance_variable_definition, - [sym_method_definition] = sym_method_definition, - [sym_class_initializer] = sym_class_initializer, - [sym_let_open_class_expression] = sym_let_open_class_expression, - [sym_parenthesized_class_expression] = sym_parenthesized_class_expression, - [sym__typed] = sym__typed, - [sym__simple_typed] = sym__simple_typed, - [sym__polymorphic_typed] = sym__polymorphic_typed, - [sym__polymorphic_type] = sym__polymorphic_type, - [sym_polymorphic_type] = sym_polymorphic_type, - [sym__abstract_type] = sym__abstract_type, - [sym__parenthesized_abstract_type] = sym__parenthesized_abstract_type, - [sym__simple_type] = sym__simple_type, - [sym__tuple_type] = sym__tuple_type, - [sym__tuple_type_ext] = sym__tuple_type_ext, - [sym__type] = sym__type, - [sym__type_ext] = sym__type_ext, - [sym_function_type] = sym_function_type, - [sym_typed_label] = sym_typed_label, - [sym_tuple_type] = sym_tuple_type, - [sym_constructed_type] = sym_constructed_type, - [sym_aliased_type] = sym_aliased_type, - [sym_polymorphic_variant_type] = sym_polymorphic_variant_type, - [sym__tag_spec] = sym__tag_spec, - [sym_tag_specification] = sym_tag_specification, - [sym_package_type] = sym_package_type, - [sym_object_type] = sym_object_type, - [sym_method_type] = sym_method_type, - [sym_hash_type] = sym_hash_type, - [sym_parenthesized_type] = sym_parenthesized_type, - [sym__simple_expression] = sym__simple_expression, - [sym__expression] = sym__expression, - [sym__sequence_expression] = sym__sequence_expression, - [sym__sequence_expression_ext] = sym__sequence_expression_ext, - [sym_typed_expression] = sym_typed_expression, - [sym_product_expression] = sym_product_expression, - [sym_cons_expression] = sym_cons_expression, - [sym_list_expression] = sym_list_expression, - [sym_array_expression] = sym_array_expression, - [sym_record_expression] = sym_record_expression, - [sym_field_expression] = sym_field_expression, - [sym_application_expression] = sym_application_expression, - [sym__argument] = sym__argument, - [sym_labeled_argument] = sym_labeled_argument, - [sym_prefix_expression] = sym_prefix_expression, - [sym_sign_expression] = sym_sign_expression, - [sym_hash_expression] = sym_hash_expression, - [sym_infix_expression] = sym_infix_expression, - [sym_field_get_expression] = sym_field_get_expression, - [sym_array_get_expression] = sym_array_get_expression, - [sym_string_get_expression] = sym_string_get_expression, - [sym_bigarray_get_expression] = sym_bigarray_get_expression, - [sym_set_expression] = sym_set_expression, - [sym_if_expression] = sym_if_expression, - [sym_then_clause] = sym_then_clause, - [sym_else_clause] = sym_else_clause, - [sym_while_expression] = sym_while_expression, - [sym_do_clause] = sym_do_clause, - [sym_for_expression] = sym_for_expression, - [sym_sequence_expression] = sym_sequence_expression, - [sym_match_expression] = sym_match_expression, - [sym__match_cases] = sym__match_cases, - [sym_match_case] = sym_match_case, - [sym_guard] = sym_guard, - [sym_refutation_case] = sym_refutation_case, - [sym_function_expression] = sym_function_expression, - [sym_fun_expression] = sym_fun_expression, - [sym_try_expression] = sym_try_expression, - [sym_let_expression] = sym_let_expression, - [sym_coercion_expression] = sym_coercion_expression, - [sym_assert_expression] = sym_assert_expression, - [sym_lazy_expression] = sym_lazy_expression, - [sym_let_module_expression] = sym_let_module_expression, - [sym_let_open_expression] = sym_let_open_expression, - [sym_local_open_expression] = sym_local_open_expression, - [sym_package_expression] = sym_package_expression, - [sym_let_exception_expression] = sym_let_exception_expression, - [sym_new_expression] = sym_new_expression, - [sym_object_copy_expression] = sym_object_copy_expression, - [sym_instance_variable_expression] = sym_instance_variable_expression, - [sym_method_invocation] = sym_method_invocation, - [sym_object_expression] = sym_object_expression, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym__simple_pattern] = sym__simple_pattern, - [sym__simple_pattern_ext] = sym__simple_pattern_ext, - [sym__pattern] = sym__pattern, - [sym__pattern_ext] = sym__pattern_ext, - [sym__binding_pattern] = sym__binding_pattern, - [sym__binding_pattern_ext] = sym__binding_pattern_ext, - [sym_alias_pattern] = sym_alias_pattern, - [sym_alias_binding_pattern] = sym_alias_pattern, - [sym_typed_pattern] = sym_typed_pattern, - [sym_typed_binding_pattern] = sym_typed_pattern, - [sym_or_pattern] = sym_or_pattern, - [sym_or_binding_pattern] = sym_or_pattern, - [sym_constructor_pattern] = sym_constructor_pattern, - [sym_constructor_binding_pattern] = sym_constructor_pattern, - [sym_tag_pattern] = sym_tag_pattern, - [sym_tag_binding_pattern] = sym_tag_pattern, - [sym_polymorphic_variant_pattern] = sym_polymorphic_variant_pattern, - [sym_tuple_pattern] = sym_tuple_pattern, - [sym_tuple_binding_pattern] = sym_tuple_pattern, - [sym_record_pattern] = sym_record_pattern, - [sym_field_pattern] = sym_field_pattern, - [sym_record_binding_pattern] = sym_record_binding_pattern, - [sym_field_binding_pattern] = sym_field_pattern, - [sym_list_pattern] = sym_list_pattern, - [sym_list_binding_pattern] = sym_list_binding_pattern, - [sym_cons_pattern] = sym_cons_pattern, - [sym_cons_binding_pattern] = sym_cons_pattern, - [sym_array_pattern] = sym_array_pattern, - [sym_array_binding_pattern] = sym_array_binding_pattern, - [sym_range_pattern] = sym_range_pattern, - [sym_lazy_pattern] = sym_lazy_pattern, - [sym_lazy_binding_pattern] = sym_lazy_pattern, - [sym_local_open_pattern] = sym_local_open_pattern, - [sym_local_open_binding_pattern] = sym_local_open_pattern, - [sym_package_pattern] = sym_package_pattern, - [sym_parenthesized_pattern] = sym_parenthesized_pattern, - [sym_parenthesized_binding_pattern] = sym_parenthesized_pattern, - [sym_exception_pattern] = sym_exception_pattern, - [sym_attribute] = sym_attribute, - [sym_item_attribute] = sym_item_attribute, - [sym_floating_attribute] = sym_floating_attribute, - [sym_attribute_payload] = sym_attribute_payload, - [sym__extension] = sym__extension, - [sym_extension] = sym_extension, - [sym_quoted_extension] = sym_quoted_extension, - [sym__item_extension] = sym__item_extension, - [sym_item_extension] = sym_item_extension, - [sym_quoted_item_extension] = sym_quoted_item_extension, - [sym__attribute] = sym__attribute, - [sym__constant] = sym__constant, - [sym__signed_constant] = sym__signed_constant, - [sym_number] = sym_number, - [sym_signed_number] = sym_signed_number, - [sym_character] = sym_character, - [sym_character_content] = sym_character_content, - [sym_string] = sym_string, - [sym_string_content] = sym_string_content, - [sym_quoted_string] = sym_quoted_string, - [sym_quoted_string_content] = sym_quoted_string_content, - [sym_escape_sequence] = sym_escape_sequence, - [sym_boolean] = sym_boolean, - [sym_unit] = sym_unit, - [sym_sign_operator] = sym_sign_operator, - [sym_infix_operator] = sym_infix_operator, - [sym__pow_operator] = sym__pow_operator, - [sym__mult_operator] = sym__mult_operator, - [sym__add_operator] = sym__add_operator, - [sym__and_operator] = sym__and_operator, - [sym__or_operator] = sym__or_operator, - [sym__assign_operator] = sym__assign_operator, - [sym_indexing_operator_path] = sym_indexing_operator_path, - [sym__value_name] = sym__value_name, - [sym__value_pattern] = sym__value_pattern, - [sym_parenthesized_operator] = sym_parenthesized_operator, - [sym_value_path] = sym_value_path, - [sym_module_path] = sym_module_path, - [sym_extended_module_path] = sym_extended_module_path, - [sym_module_type_path] = sym_module_type_path, - [sym_field_path] = sym_field_path, - [sym_constructor_path] = sym_constructor_path, - [sym_type_constructor_path] = sym_type_constructor_path, - [sym_class_path] = sym_class_path, - [sym_class_type_path] = sym_class_type_path, - [sym__label] = sym__label, - [sym_directive] = sym_directive, - [sym_type_variable] = sym_type_variable, - [sym_tag] = sym_tag, - [sym_attribute_id] = sym_attribute_id, - [aux_sym__structure_repeat1] = aux_sym__structure_repeat1, - [aux_sym__structure_repeat2] = aux_sym__structure_repeat2, - [aux_sym_expression_item_repeat1] = aux_sym_expression_item_repeat1, - [aux_sym__signature_repeat1] = aux_sym__signature_repeat1, - [aux_sym_value_definition_repeat1] = aux_sym_value_definition_repeat1, - [aux_sym_let_binding_repeat1] = aux_sym_let_binding_repeat1, - [aux_sym_external_repeat1] = aux_sym_external_repeat1, - [aux_sym_type_definition_repeat1] = aux_sym_type_definition_repeat1, - [aux_sym_type_binding_repeat1] = aux_sym_type_binding_repeat1, - [aux_sym__type_params_repeat1] = aux_sym__type_params_repeat1, - [aux_sym_variant_declaration_repeat1] = aux_sym_variant_declaration_repeat1, - [aux_sym_constructor_declaration_repeat1] = aux_sym_constructor_declaration_repeat1, - [aux_sym__constructor_argument_repeat1] = aux_sym__constructor_argument_repeat1, - [aux_sym_record_declaration_repeat1] = aux_sym_record_declaration_repeat1, - [aux_sym_module_definition_repeat1] = aux_sym_module_definition_repeat1, - [aux_sym_module_binding_repeat1] = aux_sym_module_binding_repeat1, - [aux_sym_class_definition_repeat1] = aux_sym_class_definition_repeat1, - [aux_sym_class_type_definition_repeat1] = aux_sym_class_type_definition_repeat1, - [aux_sym_module_type_constraint_repeat1] = aux_sym_module_type_constraint_repeat1, - [aux_sym_instantiated_class_type_repeat1] = aux_sym_instantiated_class_type_repeat1, - [aux_sym_class_body_type_repeat1] = aux_sym_class_body_type_repeat1, - [aux_sym_instance_variable_specification_repeat1] = aux_sym_instance_variable_specification_repeat1, - [aux_sym_method_specification_repeat1] = aux_sym_method_specification_repeat1, - [aux_sym_class_application_repeat1] = aux_sym_class_application_repeat1, - [aux_sym__abstract_type_repeat1] = aux_sym__abstract_type_repeat1, - [aux_sym_polymorphic_variant_type_repeat1] = aux_sym_polymorphic_variant_type_repeat1, - [aux_sym_polymorphic_variant_type_repeat2] = aux_sym_polymorphic_variant_type_repeat2, - [aux_sym_tag_specification_repeat1] = aux_sym_tag_specification_repeat1, - [aux_sym_object_type_repeat1] = aux_sym_object_type_repeat1, - [aux_sym_list_expression_repeat1] = aux_sym_list_expression_repeat1, - [aux_sym_record_expression_repeat1] = aux_sym_record_expression_repeat1, - [aux_sym__match_cases_repeat1] = aux_sym__match_cases_repeat1, - [aux_sym_object_copy_expression_repeat1] = aux_sym_object_copy_expression_repeat1, - [aux_sym_object_expression_repeat1] = aux_sym_object_expression_repeat1, - [aux_sym_record_pattern_repeat1] = aux_sym_record_pattern_repeat1, - [aux_sym_record_binding_pattern_repeat1] = aux_sym_record_binding_pattern_repeat1, - [aux_sym_list_pattern_repeat1] = aux_sym_list_pattern_repeat1, - [aux_sym_list_binding_pattern_repeat1] = aux_sym_list_binding_pattern_repeat1, - [aux_sym_string_content_repeat1] = aux_sym_string_content_repeat1, - [aux_sym_quoted_string_content_repeat1] = aux_sym_quoted_string_content_repeat1, - [aux_sym_attribute_id_repeat1] = aux_sym_attribute_id_repeat1, - [alias_sym_class_name] = alias_sym_class_name, - [alias_sym_class_type_name] = alias_sym_class_type_name, - [alias_sym_constructor_name] = alias_sym_constructor_name, - [alias_sym_field_name] = alias_sym_field_name, - [alias_sym_instance_variable_name] = alias_sym_instance_variable_name, - [alias_sym_label_name] = alias_sym_label_name, - [alias_sym_method_name] = alias_sym_method_name, - [alias_sym_module_name] = alias_sym_module_name, - [alias_sym_module_type_name] = alias_sym_module_type_name, - [alias_sym_type_constructor] = alias_sym_type_constructor, - [alias_sym_value_name] = alias_sym_value_name, - [alias_sym_value_pattern] = alias_sym_value_pattern, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym__identifier] = { - .visible = false, - .named = true, - }, - [sym_shebang] = { - .visible = true, - .named = true, - }, - [anon_sym_SEMI_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_let] = { - .visible = true, - .named = false, - }, - [anon_sym_rec] = { - .visible = true, - .named = false, - }, - [anon_sym_and] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_external] = { - .visible = true, - .named = false, - }, - [anon_sym_type] = { - .visible = true, - .named = false, - }, - [anon_sym_nonrec] = { - .visible = true, - .named = false, - }, - [anon_sym_private] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym__] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_true] = { - .visible = true, - .named = false, - }, - [anon_sym_false] = { - .visible = true, - .named = false, - }, - [anon_sym_of] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON2] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_mutable] = { - .visible = true, - .named = false, - }, - [anon_sym_constraint] = { - .visible = true, - .named = false, - }, - [anon_sym_exception] = { - .visible = true, - .named = false, - }, - [anon_sym_module] = { - .visible = true, - .named = false, - }, - [anon_sym_open] = { - .visible = true, - .named = false, - }, - [anon_sym_include] = { - .visible = true, - .named = false, - }, - [anon_sym_class] = { - .visible = true, - .named = false, - }, - [anon_sym_virtual] = { - .visible = true, - .named = false, - }, - [anon_sym_val] = { - .visible = true, - .named = false, - }, - [anon_sym_sig] = { - .visible = true, - .named = false, - }, - [anon_sym_end] = { - .visible = true, - .named = false, - }, - [anon_sym_with] = { - .visible = true, - .named = false, - }, - [anon_sym_functor] = { - .visible = true, - .named = false, - }, - [anon_sym_struct] = { - .visible = true, - .named = false, - }, - [anon_sym_object] = { - .visible = true, - .named = false, - }, - [anon_sym_inherit] = { - .visible = true, - .named = false, - }, - [anon_sym_method] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_fun] = { - .visible = true, - .named = false, - }, - [anon_sym_as] = { - .visible = true, - .named = false, - }, - [anon_sym_initializer] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_then] = { - .visible = true, - .named = false, - }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_do] = { - .visible = true, - .named = false, - }, - [anon_sym_done] = { - .visible = true, - .named = false, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_to] = { - .visible = true, - .named = false, - }, - [anon_sym_downto] = { - .visible = true, - .named = false, - }, - [anon_sym_match] = { - .visible = true, - .named = false, - }, - [anon_sym_when] = { - .visible = true, - .named = false, - }, - [anon_sym_function] = { - .visible = true, - .named = false, - }, - [anon_sym_try] = { - .visible = true, - .named = false, - }, - [anon_sym_assert] = { - .visible = true, - .named = false, - }, - [anon_sym_lazy] = { - .visible = true, - .named = false, - }, - [anon_sym_new] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_begin] = { - .visible = true, - .named = false, - }, - [sym_ocamlyacc_value] = { - .visible = true, - .named = true, - }, - [anon_sym_LBRACK_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT_AT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_quoted_extension_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_LBRACK_PERCENT_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE_PERCENT_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [aux_sym_number_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_SQUOTE] = { - .visible = true, - .named = false, - }, - [aux_sym_character_content_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_DQUOTE] = { - .visible = true, - .named = false, - }, - [anon_sym_] = { - .visible = true, - .named = false, - }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, - [anon_sym_TAB] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT2] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT2] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK_AT_AT_AT2] = { - .visible = true, - .named = false, - }, - [aux_sym_string_content_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_content_token2] = { - .visible = true, - .named = true, - }, - [aux_sym_string_content_token3] = { - .visible = true, - .named = true, - }, - [aux_sym_quoted_string_content_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token3] = { - .visible = false, - .named = false, - }, - [aux_sym_escape_sequence_token4] = { - .visible = false, - .named = false, - }, - [sym_conversion_specification] = { - .visible = true, - .named = true, - }, - [sym_pretty_printing_indication] = { - .visible = true, - .named = true, - }, - [sym_prefix_operator] = { - .visible = true, - .named = true, - }, - [anon_sym_PLUS_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DOT] = { - .visible = true, - .named = false, - }, - [sym_hash_operator] = { - .visible = true, - .named = true, - }, - [aux_sym__pow_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_lsl] = { - .visible = true, - .named = false, - }, - [anon_sym_lsr] = { - .visible = true, - .named = false, - }, - [anon_sym_asr] = { - .visible = true, - .named = false, - }, - [aux_sym__mult_operator_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_mod] = { - .visible = true, - .named = false, - }, - [anon_sym_land] = { - .visible = true, - .named = false, - }, - [anon_sym_lor] = { - .visible = true, - .named = false, - }, - [anon_sym_lxor] = { - .visible = true, - .named = false, - }, - [aux_sym__add_operator_token1] = { - .visible = false, - .named = false, - }, - [sym__concat_operator] = { - .visible = false, - .named = true, - }, - [sym__rel_operator] = { - .visible = false, - .named = true, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_or] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [sym_indexing_operator] = { - .visible = true, - .named = true, - }, - [sym_let_operator] = { - .visible = true, - .named = true, - }, - [sym_and_operator] = { - .visible = true, - .named = true, - }, - [sym_match_operator] = { - .visible = true, - .named = true, - }, - [sym__capitalized_identifier] = { - .visible = false, - .named = true, - }, - [aux_sym_directive_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_variable_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_tag_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_id_token1] = { - .visible = false, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [sym__left_quoted_string_delimiter] = { - .visible = false, - .named = true, - }, - [sym__right_quoted_string_delimiter] = { - .visible = false, - .named = true, - }, - [sym_line_number_directive] = { - .visible = true, - .named = true, - }, - [sym__null] = { - .visible = false, - .named = true, - }, - [sym_compilation_unit] = { - .visible = true, - .named = true, - }, - [sym__structure] = { - .visible = false, - .named = true, - }, - [sym_expression_item] = { - .visible = true, - .named = true, - }, - [sym__signature] = { - .visible = false, - .named = true, - }, - [sym_toplevel_directive] = { - .visible = true, - .named = true, - }, - [sym__structure_item] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__structure_item_ext] = { - .visible = false, - .named = true, - }, - [sym_value_definition] = { - .visible = true, - .named = true, - }, - [sym_let_binding] = { - .visible = true, - .named = true, - }, - [sym__parameter] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parameter] = { - .visible = true, - .named = true, - }, - [sym_external] = { - .visible = true, - .named = true, - }, - [sym_type_definition] = { - .visible = true, - .named = true, - }, - [sym_type_binding] = { - .visible = true, - .named = true, - }, - [sym__type_params] = { - .visible = false, - .named = true, - }, - [sym__type_param] = { - .visible = false, - .named = true, - }, - [sym__type_equation] = { - .visible = false, - .named = true, - }, - [sym_variant_declaration] = { - .visible = true, - .named = true, - }, - [sym_constructor_declaration] = { - .visible = true, - .named = true, - }, - [sym__constructor_argument] = { - .visible = false, - .named = true, - }, - [sym_record_declaration] = { - .visible = true, - .named = true, - }, - [sym_field_declaration] = { - .visible = true, - .named = true, - }, - [sym_type_constraint] = { - .visible = true, - .named = true, - }, - [sym_exception_definition] = { - .visible = true, - .named = true, - }, - [sym_module_definition] = { - .visible = true, - .named = true, - }, - [sym_module_binding] = { - .visible = true, - .named = true, - }, - [sym_module_parameter] = { - .visible = true, - .named = true, - }, - [sym_module_type_definition] = { - .visible = true, - .named = true, - }, - [sym_open_module] = { - .visible = true, - .named = true, - }, - [sym_include_module] = { - .visible = true, - .named = true, - }, - [sym_class_definition] = { - .visible = true, - .named = true, - }, - [sym_class_binding] = { - .visible = true, - .named = true, - }, - [sym_class_type_definition] = { - .visible = true, - .named = true, - }, - [sym_class_type_binding] = { - .visible = true, - .named = true, - }, - [sym__signature_item] = { - .visible = false, - .named = true, - }, - [sym__signature_item_ext] = { - .visible = false, - .named = true, - }, - [sym_value_specification] = { - .visible = true, - .named = true, - }, - [sym_include_module_type] = { - .visible = true, - .named = true, - }, - [sym__module_typed] = { - .visible = false, - .named = true, - }, - [sym__module_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_signature] = { - .visible = true, - .named = true, - }, - [sym_module_type_constraint] = { - .visible = true, - .named = true, - }, - [sym_constrain_type] = { - .visible = true, - .named = true, - }, - [sym_constrain_module] = { - .visible = true, - .named = true, - }, - [sym_constrain_module_type] = { - .visible = true, - .named = true, - }, - [sym_module_type_of] = { - .visible = true, - .named = true, - }, - [sym_functor_type] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_module_type] = { - .visible = true, - .named = true, - }, - [sym__simple_module_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_module_expression_ext] = { - .visible = false, - .named = true, - }, - [sym__module_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_structure] = { - .visible = true, - .named = true, - }, - [sym_functor] = { - .visible = true, - .named = true, - }, - [sym_module_application] = { - .visible = true, - .named = true, - }, - [sym_typed_module_expression] = { - .visible = true, - .named = true, - }, - [sym_packed_module] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_module_expression] = { - .visible = true, - .named = true, - }, - [sym__class_typed] = { - .visible = false, - .named = true, - }, - [sym__simple_class_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_class_type_ext] = { - .visible = false, - .named = true, - }, - [sym__class_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_type_ext] = { - .visible = false, - .named = true, - }, - [sym_instantiated_class_type] = { - .visible = true, - .named = true, - }, - [sym_class_body_type] = { - .visible = true, - .named = true, - }, - [sym__class_field_specification] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_field_specification_ext] = { - .visible = false, - .named = true, - }, - [sym_inheritance_specification] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_specification] = { - .visible = true, - .named = true, - }, - [sym_method_specification] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_constraint] = { - .visible = true, - .named = true, - }, - [sym_let_open_class_type] = { - .visible = true, - .named = true, - }, - [sym_class_function_type] = { - .visible = true, - .named = true, - }, - [sym__simple_class_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_expression_ext] = { - .visible = false, - .named = true, - }, - [sym_instantiated_class] = { - .visible = true, - .named = true, - }, - [sym_typed_class_expression] = { - .visible = true, - .named = true, - }, - [sym_class_function] = { - .visible = true, - .named = true, - }, - [sym_class_application] = { - .visible = true, - .named = true, - }, - [sym_let_class_expression] = { - .visible = true, - .named = true, - }, - [sym__class_field] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__class_field_ext] = { - .visible = false, - .named = true, - }, - [sym_inheritance_definition] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_definition] = { - .visible = true, - .named = true, - }, - [sym_method_definition] = { - .visible = true, - .named = true, - }, - [sym_class_initializer] = { - .visible = true, - .named = true, - }, - [sym_let_open_class_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_class_expression] = { - .visible = true, - .named = true, - }, - [sym__typed] = { - .visible = false, - .named = true, - }, - [sym__simple_typed] = { - .visible = false, - .named = true, - }, - [sym__polymorphic_typed] = { - .visible = false, - .named = true, - }, - [sym__polymorphic_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_polymorphic_type] = { - .visible = true, - .named = true, - }, - [sym__abstract_type] = { - .visible = false, - .named = true, - }, - [sym__parenthesized_abstract_type] = { - .visible = true, - .named = true, - }, - [sym__simple_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__tuple_type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__tuple_type_ext] = { - .visible = false, - .named = true, - }, - [sym__type] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__type_ext] = { - .visible = false, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym_typed_label] = { - .visible = true, - .named = true, - }, - [sym_tuple_type] = { - .visible = true, - .named = true, - }, - [sym_constructed_type] = { - .visible = true, - .named = true, - }, - [sym_aliased_type] = { - .visible = true, - .named = true, - }, - [sym_polymorphic_variant_type] = { - .visible = true, - .named = true, - }, - [sym__tag_spec] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_tag_specification] = { - .visible = true, - .named = true, - }, - [sym_package_type] = { - .visible = true, - .named = true, - }, - [sym_object_type] = { - .visible = true, - .named = true, - }, - [sym_method_type] = { - .visible = true, - .named = true, - }, - [sym_hash_type] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_type] = { - .visible = true, - .named = true, - }, - [sym__simple_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__sequence_expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__sequence_expression_ext] = { - .visible = false, - .named = true, - }, - [sym_typed_expression] = { - .visible = true, - .named = true, - }, - [sym_product_expression] = { - .visible = true, - .named = true, - }, - [sym_cons_expression] = { - .visible = true, - .named = true, - }, - [sym_list_expression] = { - .visible = true, - .named = true, - }, - [sym_array_expression] = { - .visible = true, - .named = true, - }, - [sym_record_expression] = { - .visible = true, - .named = true, - }, - [sym_field_expression] = { - .visible = true, - .named = true, - }, - [sym_application_expression] = { - .visible = true, - .named = true, - }, - [sym__argument] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_labeled_argument] = { - .visible = true, - .named = true, - }, - [sym_prefix_expression] = { - .visible = true, - .named = true, - }, - [sym_sign_expression] = { - .visible = true, - .named = true, - }, - [sym_hash_expression] = { - .visible = true, - .named = true, - }, - [sym_infix_expression] = { - .visible = true, - .named = true, - }, - [sym_field_get_expression] = { - .visible = true, - .named = true, - }, - [sym_array_get_expression] = { - .visible = true, - .named = true, - }, - [sym_string_get_expression] = { - .visible = true, - .named = true, - }, - [sym_bigarray_get_expression] = { - .visible = true, - .named = true, - }, - [sym_set_expression] = { - .visible = true, - .named = true, - }, - [sym_if_expression] = { - .visible = true, - .named = true, - }, - [sym_then_clause] = { - .visible = true, - .named = true, - }, - [sym_else_clause] = { - .visible = true, - .named = true, - }, - [sym_while_expression] = { - .visible = true, - .named = true, - }, - [sym_do_clause] = { - .visible = true, - .named = true, - }, - [sym_for_expression] = { - .visible = true, - .named = true, - }, - [sym_sequence_expression] = { - .visible = true, - .named = true, - }, - [sym_match_expression] = { - .visible = true, - .named = true, - }, - [sym__match_cases] = { - .visible = false, - .named = true, - }, - [sym_match_case] = { - .visible = true, - .named = true, - }, - [sym_guard] = { - .visible = true, - .named = true, - }, - [sym_refutation_case] = { - .visible = true, - .named = true, - }, - [sym_function_expression] = { - .visible = true, - .named = true, - }, - [sym_fun_expression] = { - .visible = true, - .named = true, - }, - [sym_try_expression] = { - .visible = true, - .named = true, - }, - [sym_let_expression] = { - .visible = true, - .named = true, - }, - [sym_coercion_expression] = { - .visible = true, - .named = true, - }, - [sym_assert_expression] = { - .visible = true, - .named = true, - }, - [sym_lazy_expression] = { - .visible = true, - .named = true, - }, - [sym_let_module_expression] = { - .visible = true, - .named = true, - }, - [sym_let_open_expression] = { - .visible = true, - .named = true, - }, - [sym_local_open_expression] = { - .visible = true, - .named = true, - }, - [sym_package_expression] = { - .visible = true, - .named = true, - }, - [sym_let_exception_expression] = { - .visible = true, - .named = true, - }, - [sym_new_expression] = { - .visible = true, - .named = true, - }, - [sym_object_copy_expression] = { - .visible = true, - .named = true, - }, - [sym_instance_variable_expression] = { - .visible = true, - .named = true, - }, - [sym_method_invocation] = { - .visible = true, - .named = true, - }, - [sym_object_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym__simple_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__simple_pattern_ext] = { - .visible = false, - .named = true, - }, - [sym__pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__pattern_ext] = { - .visible = false, - .named = true, - }, - [sym__binding_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__binding_pattern_ext] = { - .visible = false, - .named = true, - }, - [sym_alias_pattern] = { - .visible = true, - .named = true, - }, - [sym_alias_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_typed_pattern] = { - .visible = true, - .named = true, - }, - [sym_typed_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_or_pattern] = { - .visible = true, - .named = true, - }, - [sym_or_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_constructor_pattern] = { - .visible = true, - .named = true, - }, - [sym_constructor_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_tag_pattern] = { - .visible = true, - .named = true, - }, - [sym_tag_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_polymorphic_variant_pattern] = { - .visible = true, - .named = true, - }, - [sym_tuple_pattern] = { - .visible = true, - .named = true, - }, - [sym_tuple_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_record_pattern] = { - .visible = true, - .named = true, - }, - [sym_field_pattern] = { - .visible = true, - .named = true, - }, - [sym_record_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_field_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_list_pattern] = { - .visible = true, - .named = true, - }, - [sym_list_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_cons_pattern] = { - .visible = true, - .named = true, - }, - [sym_cons_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_array_pattern] = { - .visible = true, - .named = true, - }, - [sym_array_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_range_pattern] = { - .visible = true, - .named = true, - }, - [sym_lazy_pattern] = { - .visible = true, - .named = true, - }, - [sym_lazy_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_local_open_pattern] = { - .visible = true, - .named = true, - }, - [sym_local_open_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_package_pattern] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_pattern] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_binding_pattern] = { - .visible = true, - .named = true, - }, - [sym_exception_pattern] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym_item_attribute] = { - .visible = true, - .named = true, - }, - [sym_floating_attribute] = { - .visible = true, - .named = true, - }, - [sym_attribute_payload] = { - .visible = true, - .named = true, - }, - [sym__extension] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_extension] = { - .visible = true, - .named = true, - }, - [sym_quoted_extension] = { - .visible = true, - .named = true, - }, - [sym__item_extension] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_item_extension] = { - .visible = true, - .named = true, - }, - [sym_quoted_item_extension] = { - .visible = true, - .named = true, - }, - [sym__attribute] = { - .visible = false, - .named = true, - }, - [sym__constant] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__signed_constant] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_number] = { - .visible = true, - .named = true, - }, - [sym_signed_number] = { - .visible = true, - .named = true, - }, - [sym_character] = { - .visible = true, - .named = true, - }, - [sym_character_content] = { - .visible = true, - .named = true, - }, - [sym_string] = { - .visible = true, - .named = true, - }, - [sym_string_content] = { - .visible = true, - .named = true, - }, - [sym_quoted_string] = { - .visible = true, - .named = true, - }, - [sym_quoted_string_content] = { - .visible = true, - .named = true, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [sym_boolean] = { - .visible = true, - .named = true, - }, - [sym_unit] = { - .visible = true, - .named = true, - }, - [sym_sign_operator] = { - .visible = true, - .named = true, - }, - [sym_infix_operator] = { - .visible = true, - .named = true, - }, - [sym__pow_operator] = { - .visible = false, - .named = true, - }, - [sym__mult_operator] = { - .visible = false, - .named = true, - }, - [sym__add_operator] = { - .visible = false, - .named = true, - }, - [sym__and_operator] = { - .visible = false, - .named = true, - }, - [sym__or_operator] = { - .visible = false, - .named = true, - }, - [sym__assign_operator] = { - .visible = false, - .named = true, - }, - [sym_indexing_operator_path] = { - .visible = true, - .named = true, - }, - [sym__value_name] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__value_pattern] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_parenthesized_operator] = { - .visible = true, - .named = true, - }, - [sym_value_path] = { - .visible = true, - .named = true, - }, - [sym_module_path] = { - .visible = true, - .named = true, - }, - [sym_extended_module_path] = { - .visible = true, - .named = true, - }, - [sym_module_type_path] = { - .visible = true, - .named = true, - }, - [sym_field_path] = { - .visible = true, - .named = true, - }, - [sym_constructor_path] = { - .visible = true, - .named = true, - }, - [sym_type_constructor_path] = { - .visible = true, - .named = true, - }, - [sym_class_path] = { - .visible = true, - .named = true, - }, - [sym_class_type_path] = { - .visible = true, - .named = true, - }, - [sym__label] = { - .visible = false, - .named = true, - }, - [sym_directive] = { - .visible = true, - .named = true, - }, - [sym_type_variable] = { - .visible = true, - .named = true, - }, - [sym_tag] = { - .visible = true, - .named = true, - }, - [sym_attribute_id] = { - .visible = true, - .named = true, - }, - [aux_sym__structure_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__structure_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_expression_item_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__signature_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_value_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_let_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_external_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__type_params_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_variant_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_constructor_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__constructor_argument_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_binding_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_type_definition_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_module_type_constraint_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_instantiated_class_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_body_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_instance_variable_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_method_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_class_application_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__abstract_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_polymorphic_variant_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_polymorphic_variant_type_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_tag_specification_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_type_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__match_cases_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_copy_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_object_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_record_binding_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_list_binding_pattern_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_string_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_quoted_string_content_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_id_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_class_name] = { - .visible = true, - .named = true, - }, - [alias_sym_class_type_name] = { - .visible = true, - .named = true, - }, - [alias_sym_constructor_name] = { - .visible = true, - .named = true, - }, - [alias_sym_field_name] = { - .visible = true, - .named = true, - }, - [alias_sym_instance_variable_name] = { - .visible = true, - .named = true, - }, - [alias_sym_label_name] = { - .visible = true, - .named = true, - }, - [alias_sym_method_name] = { - .visible = true, - .named = true, - }, - [alias_sym_module_name] = { - .visible = true, - .named = true, - }, - [alias_sym_module_type_name] = { - .visible = true, - .named = true, - }, - [alias_sym_type_constructor] = { - .visible = true, - .named = true, - }, - [alias_sym_value_name] = { - .visible = true, - .named = true, - }, - [alias_sym_value_pattern] = { - .visible = true, - .named = true, - }, -}; - -enum { - field_argument = 1, - field_body = 2, - field_class = 3, - field_condition = 4, - field_from = 5, - field_function = 6, - field_functor = 7, - field_left = 8, - field_name = 9, - field_pattern = 10, - field_right = 11, - field_to = 12, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_argument] = "argument", - [field_body] = "body", - [field_class] = "class", - [field_condition] = "condition", - [field_from] = "from", - [field_function] = "function", - [field_functor] = "functor", - [field_left] = "left", - [field_name] = "name", - [field_pattern] = "pattern", - [field_right] = "right", - [field_to] = "to", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [4] = {.index = 0, .length = 1}, - [9] = {.index = 1, .length = 1}, - [12] = {.index = 1, .length = 1}, - [13] = {.index = 1, .length = 1}, - [14] = {.index = 1, .length = 1}, - [18] = {.index = 2, .length = 1}, - [19] = {.index = 3, .length = 1}, - [20] = {.index = 4, .length = 2}, - [21] = {.index = 6, .length = 1}, - [22] = {.index = 7, .length = 1}, - [25] = {.index = 8, .length = 1}, - [27] = {.index = 9, .length = 1}, - [28] = {.index = 10, .length = 2}, - [29] = {.index = 8, .length = 1}, - [30] = {.index = 8, .length = 1}, - [31] = {.index = 8, .length = 1}, - [32] = {.index = 7, .length = 1}, - [34] = {.index = 12, .length = 1}, - [35] = {.index = 13, .length = 1}, - [37] = {.index = 14, .length = 2}, - [38] = {.index = 16, .length = 2}, - [39] = {.index = 14, .length = 2}, - [40] = {.index = 13, .length = 1}, - [43] = {.index = 18, .length = 1}, - [44] = {.index = 19, .length = 2}, - [46] = {.index = 21, .length = 2}, - [48] = {.index = 21, .length = 2}, - [50] = {.index = 23, .length = 1}, - [51] = {.index = 21, .length = 2}, - [53] = {.index = 24, .length = 1}, - [54] = {.index = 21, .length = 2}, - [56] = {.index = 9, .length = 1}, - [57] = {.index = 25, .length = 2}, - [58] = {.index = 9, .length = 1}, - [59] = {.index = 27, .length = 1}, - [60] = {.index = 28, .length = 1}, - [62] = {.index = 29, .length = 2}, - [63] = {.index = 31, .length = 2}, - [64] = {.index = 33, .length = 2}, - [65] = {.index = 35, .length = 2}, - [66] = {.index = 35, .length = 2}, - [67] = {.index = 33, .length = 2}, - [68] = {.index = 37, .length = 2}, - [69] = {.index = 33, .length = 2}, - [70] = {.index = 21, .length = 2}, - [71] = {.index = 23, .length = 1}, - [72] = {.index = 35, .length = 2}, - [73] = {.index = 33, .length = 2}, - [76] = {.index = 23, .length = 1}, - [77] = {.index = 35, .length = 2}, - [78] = {.index = 23, .length = 1}, - [79] = {.index = 35, .length = 2}, - [80] = {.index = 27, .length = 1}, - [81] = {.index = 39, .length = 1}, - [84] = {.index = 40, .length = 1}, - [85] = {.index = 41, .length = 2}, - [87] = {.index = 43, .length = 2}, - [88] = {.index = 45, .length = 2}, - [89] = {.index = 45, .length = 2}, - [90] = {.index = 47, .length = 2}, - [91] = {.index = 8, .length = 1}, - [93] = {.index = 43, .length = 2}, - [94] = {.index = 35, .length = 2}, - [95] = {.index = 49, .length = 1}, - [96] = {.index = 45, .length = 2}, - [98] = {.index = 43, .length = 2}, - [99] = {.index = 37, .length = 2}, - [100] = {.index = 45, .length = 2}, - [101] = {.index = 37, .length = 2}, - [102] = {.index = 45, .length = 2}, - [103] = {.index = 50, .length = 1}, - [105] = {.index = 51, .length = 2}, - [107] = {.index = 53, .length = 2}, - [108] = {.index = 47, .length = 2}, - [109] = {.index = 55, .length = 1}, - [110] = {.index = 53, .length = 2}, - [113] = {.index = 56, .length = 2}, - [114] = {.index = 47, .length = 2}, - [115] = {.index = 53, .length = 2}, - [116] = {.index = 56, .length = 2}, - [117] = {.index = 47, .length = 2}, - [118] = {.index = 53, .length = 2}, - [119] = {.index = 58, .length = 3}, - [120] = {.index = 61, .length = 2}, - [121] = {.index = 47, .length = 2}, - [122] = {.index = 63, .length = 2}, - [123] = {.index = 65, .length = 2}, - [125] = {.index = 67, .length = 2}, - [126] = {.index = 63, .length = 2}, - [127] = {.index = 69, .length = 2}, - [128] = {.index = 67, .length = 2}, - [129] = {.index = 63, .length = 2}, - [130] = {.index = 71, .length = 3}, - [131] = {.index = 65, .length = 2}, - [132] = {.index = 74, .length = 2}, - [133] = {.index = 76, .length = 2}, - [134] = {.index = 78, .length = 2}, - [135] = {.index = 80, .length = 2}, - [136] = {.index = 74, .length = 2}, - [137] = {.index = 74, .length = 2}, - [138] = {.index = 78, .length = 2}, - [139] = {.index = 82, .length = 2}, - [140] = {.index = 84, .length = 2}, - [141] = {.index = 86, .length = 2}, - [142] = {.index = 88, .length = 2}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_pattern, 0}, - [1] = - {field_name, 0}, - [2] = - {field_right, 1}, - [3] = - {field_argument, 0}, - [4] = - {field_argument, 1, .inherited = true}, - {field_function, 0}, - [6] = - {field_left, 0}, - [7] = - {field_pattern, 1}, - [8] = - {field_name, 1}, - [9] = - {field_name, 2}, - [10] = - {field_argument, 1}, - {field_functor, 0}, - [12] = - {field_condition, 1}, - [13] = - {field_body, 2}, - [14] = - {field_left, 0}, - {field_right, 2}, - [16] = - {field_argument, 0, .inherited = true}, - {field_argument, 1, .inherited = true}, - [18] = - {field_body, 3}, - [19] = - {field_body, 2}, - {field_pattern, 0}, - [21] = - {field_body, 2}, - {field_name, 0}, - [23] = - {field_name, 3}, - [24] = - {field_functor, 0}, - [25] = - {field_argument, 1, .inherited = true}, - {field_class, 0}, - [27] = - {field_pattern, 2}, - [28] = - {field_condition, 2}, - [29] = - {field_left, 0}, - {field_right, 3}, - [31] = - {field_body, 3}, - {field_pattern, 0}, - [33] = - {field_body, 3}, - {field_name, 0}, - [35] = - {field_body, 3}, - {field_name, 1}, - [37] = - {field_body, 4}, - {field_name, 2}, - [39] = - {field_body, 4}, - [40] = - {field_pattern, 3}, - [41] = - {field_body, 4}, - {field_pattern, 0}, - [43] = - {field_body, 4}, - {field_name, 0}, - [45] = - {field_body, 4}, - {field_name, 1}, - [47] = - {field_body, 5}, - {field_name, 3}, - [49] = - {field_name, 4}, - [50] = - {field_body, 5}, - [51] = - {field_body, 5}, - {field_pattern, 0}, - [53] = - {field_body, 5}, - {field_name, 1}, - [55] = - {field_name, 5}, - [56] = - {field_body, 5}, - {field_name, 2}, - [58] = - {field_from, 3}, - {field_name, 1}, - {field_to, 5}, - [61] = - {field_body, 6}, - {field_pattern, 0}, - [63] = - {field_body, 6}, - {field_name, 3}, - [65] = - {field_body, 6}, - {field_name, 4}, - [67] = - {field_body, 6}, - {field_name, 2}, - [69] = - {field_body, 6}, - {field_name, 1}, - [71] = - {field_from, 4}, - {field_name, 2}, - {field_to, 6}, - [74] = - {field_body, 7}, - {field_name, 3}, - [76] = - {field_body, 7}, - {field_name, 4}, - [78] = - {field_body, 7}, - {field_name, 5}, - [80] = - {field_body, 7}, - {field_name, 2}, - [82] = - {field_body, 8}, - {field_name, 4}, - [84] = - {field_body, 8}, - {field_name, 5}, - [86] = - {field_body, 8}, - {field_name, 3}, - [88] = - {field_body, 9}, - {field_name, 5}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [1] = { - [0] = alias_sym_value_name, - }, - [2] = { - [0] = alias_sym_module_name, - }, - [3] = { - [0] = alias_sym_constructor_name, - }, - [5] = { - [0] = sym_record_pattern, - }, - [6] = { - [0] = sym_list_pattern, - }, - [7] = { - [0] = sym_array_pattern, - }, - [8] = { - [0] = sym_type_variable, - }, - [9] = { - [0] = alias_sym_type_constructor, - }, - [10] = { - [0] = alias_sym_type_constructor, - }, - [11] = { - [0] = alias_sym_field_name, - }, - [13] = { - [0] = alias_sym_module_name, - }, - [14] = { - [0] = alias_sym_class_name, - }, - [15] = { - [0] = alias_sym_value_pattern, - }, - [16] = { - [0] = alias_sym_class_name, - }, - [17] = { - [0] = alias_sym_instance_variable_name, - }, - [23] = { - [1] = alias_sym_constructor_name, - }, - [24] = { - [1] = sym_type_variable, - }, - [25] = { - [1] = alias_sym_type_constructor, - }, - [26] = { - [0] = alias_sym_constructor_name, - [1] = alias_sym_constructor_name, - }, - [27] = { - [2] = alias_sym_module_type_name, - }, - [29] = { - [1] = alias_sym_class_name, - }, - [30] = { - [1] = alias_sym_instance_variable_name, - }, - [31] = { - [1] = alias_sym_method_name, - }, - [32] = { - [1] = alias_sym_value_pattern, - }, - [33] = { - [1] = alias_sym_label_name, - }, - [35] = { - [0] = alias_sym_instance_variable_name, - }, - [36] = { - [2] = alias_sym_method_name, - }, - [39] = { - [1] = sym_infix_operator, - }, - [41] = { - [2] = alias_sym_module_name, - }, - [42] = { - [2] = alias_sym_constructor_name, - }, - [45] = { - [2] = sym_type_variable, - }, - [46] = { - [0] = alias_sym_type_constructor, - }, - [47] = { - [2] = alias_sym_type_constructor, - }, - [49] = { - [2] = alias_sym_field_name, - }, - [50] = { - [3] = alias_sym_module_type_name, - }, - [51] = { - [0] = alias_sym_module_name, - }, - [52] = { - [0] = alias_sym_module_type_name, - }, - [54] = { - [0] = alias_sym_class_name, - }, - [55] = { - [0] = alias_sym_class_type_name, - }, - [56] = { - [2] = alias_sym_instance_variable_name, - }, - [58] = { - [2] = alias_sym_method_name, - }, - [61] = { - [2] = alias_sym_class_name, - }, - [64] = { - [0] = alias_sym_type_constructor, - }, - [65] = { - [1] = alias_sym_type_constructor, - }, - [68] = { - [2] = alias_sym_module_type_name, - }, - [69] = { - [0] = alias_sym_module_name, - }, - [70] = { - [0] = alias_sym_class_type_name, - }, - [71] = { - [3] = alias_sym_class_name, - }, - [72] = { - [1] = alias_sym_class_name, - }, - [73] = { - [0] = alias_sym_class_name, - }, - [74] = { - [0] = alias_sym_method_name, - }, - [75] = { - [0] = alias_sym_label_name, - }, - [76] = { - [3] = alias_sym_instance_variable_name, - }, - [77] = { - [1] = alias_sym_instance_variable_name, - }, - [78] = { - [3] = alias_sym_method_name, - }, - [79] = { - [1] = alias_sym_method_name, - }, - [80] = { - [2] = alias_sym_value_pattern, - }, - [82] = { - [3] = alias_sym_constructor_name, - }, - [83] = { - [3] = alias_sym_module_name, - }, - [86] = { - [0] = sym__parenthesized_abstract_type, - }, - [87] = { - [0] = alias_sym_type_constructor, - }, - [88] = { - [1] = alias_sym_type_constructor, - }, - [90] = { - [3] = alias_sym_module_type_name, - }, - [91] = { - [1] = alias_sym_module_name, - }, - [92] = { - [2] = alias_sym_module_type_name, - }, - [93] = { - [0] = alias_sym_module_name, - }, - [94] = { - [1] = alias_sym_class_type_name, - }, - [95] = { - [4] = alias_sym_class_name, - }, - [96] = { - [1] = alias_sym_class_name, - }, - [97] = { - [2] = alias_sym_class_type_name, - }, - [98] = { - [0] = alias_sym_class_name, - }, - [99] = { - [2] = alias_sym_instance_variable_name, - }, - [100] = { - [1] = alias_sym_instance_variable_name, - }, - [101] = { - [2] = alias_sym_method_name, - }, - [102] = { - [1] = alias_sym_method_name, - }, - [104] = { - [2] = alias_sym_label_name, - }, - [106] = { - [1] = alias_sym_field_name, - }, - [107] = { - [1] = alias_sym_type_constructor, - }, - [108] = { - [3] = alias_sym_class_name, - }, - [109] = { - [5] = alias_sym_class_name, - }, - [110] = { - [1] = alias_sym_class_name, - }, - [111] = { - [1] = alias_sym_instance_variable_name, - }, - [112] = { - [1] = alias_sym_method_name, - }, - [113] = { - [2] = alias_sym_instance_variable_name, - }, - [114] = { - [3] = alias_sym_instance_variable_name, - }, - [115] = { - [1] = alias_sym_instance_variable_name, - }, - [116] = { - [2] = alias_sym_method_name, - }, - [117] = { - [3] = alias_sym_method_name, - }, - [118] = { - [1] = alias_sym_method_name, - }, - [121] = { - [3] = alias_sym_class_type_name, - }, - [122] = { - [3] = alias_sym_class_name, - }, - [123] = { - [4] = alias_sym_class_name, - }, - [124] = { - [2] = alias_sym_instance_variable_name, - }, - [125] = { - [2] = alias_sym_instance_variable_name, - }, - [126] = { - [3] = alias_sym_instance_variable_name, - }, - [127] = { - [1] = alias_sym_instance_variable_name, - }, - [128] = { - [2] = alias_sym_method_name, - }, - [129] = { - [3] = alias_sym_method_name, - }, - [131] = { - [4] = alias_sym_class_type_name, - }, - [132] = { - [3] = alias_sym_class_name, - }, - [133] = { - [4] = alias_sym_class_name, - }, - [134] = { - [5] = alias_sym_class_name, - }, - [135] = { - [2] = alias_sym_instance_variable_name, - }, - [136] = { - [3] = alias_sym_instance_variable_name, - }, - [137] = { - [3] = alias_sym_method_name, - }, - [138] = { - [5] = alias_sym_class_type_name, - }, - [139] = { - [4] = alias_sym_class_name, - }, - [140] = { - [5] = alias_sym_class_name, - }, - [141] = { - [3] = alias_sym_instance_variable_name, - }, - [142] = { - [5] = alias_sym_class_name, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym__abstract_type, 2, - sym__abstract_type, - sym__parenthesized_abstract_type, - sym_record_binding_pattern, 2, - sym_record_binding_pattern, - sym_record_pattern, - sym_list_binding_pattern, 2, - sym_list_binding_pattern, - sym_list_pattern, - sym_array_binding_pattern, 2, - sym_array_binding_pattern, - sym_array_pattern, - sym__pow_operator, 2, - sym__pow_operator, - sym_infix_operator, - sym__mult_operator, 2, - sym__mult_operator, - sym_infix_operator, - sym__add_operator, 2, - sym__add_operator, - sym_infix_operator, - sym__and_operator, 2, - sym__and_operator, - sym_infix_operator, - sym__or_operator, 2, - sym__or_operator, - sym_infix_operator, - sym__assign_operator, 2, - sym__assign_operator, - sym_infix_operator, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 2, - [4] = 2, - [5] = 2, - [6] = 2, - [7] = 2, - [8] = 8, - [9] = 8, - [10] = 8, - [11] = 8, - [12] = 8, - [13] = 8, - [14] = 8, - [15] = 15, - [16] = 15, - [17] = 8, - [18] = 15, - [19] = 8, - [20] = 8, - [21] = 8, - [22] = 22, - [23] = 8, - [24] = 8, - [25] = 8, - [26] = 8, - [27] = 8, - [28] = 8, - [29] = 8, - [30] = 8, - [31] = 8, - [32] = 8, - [33] = 8, - [34] = 34, - [35] = 8, - [36] = 8, - [37] = 8, - [38] = 8, - [39] = 15, - [40] = 8, - [41] = 8, - [42] = 8, - [43] = 22, - [44] = 8, - [45] = 8, - [46] = 46, - [47] = 2, - [48] = 2, - [49] = 49, - [50] = 50, - [51] = 2, - [52] = 52, - [53] = 53, - [54] = 50, - [55] = 2, - [56] = 56, - [57] = 57, - [58] = 52, - [59] = 49, - [60] = 53, - [61] = 56, - [62] = 62, - [63] = 62, - [64] = 64, - [65] = 65, - [66] = 65, - [67] = 64, - [68] = 65, - [69] = 65, - [70] = 64, - [71] = 65, - [72] = 64, - [73] = 64, - [74] = 65, - [75] = 64, - [76] = 64, - [77] = 65, - [78] = 64, - [79] = 65, - [80] = 65, - [81] = 65, - [82] = 64, - [83] = 65, - [84] = 64, - [85] = 64, - [86] = 64, - [87] = 65, - [88] = 65, - [89] = 65, - [90] = 65, - [91] = 65, - [92] = 65, - [93] = 64, - [94] = 64, - [95] = 65, - [96] = 64, - [97] = 64, - [98] = 64, - [99] = 64, - [100] = 2, - [101] = 2, - [102] = 2, - [103] = 2, - [104] = 2, - [105] = 2, - [106] = 106, - [107] = 107, - [108] = 108, - [109] = 109, - [110] = 110, - [111] = 111, - [112] = 112, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 2, - [119] = 119, - [120] = 120, - [121] = 121, - [122] = 122, - [123] = 110, - [124] = 115, - [125] = 113, - [126] = 114, - [127] = 113, - [128] = 112, - [129] = 112, - [130] = 117, - [131] = 116, - [132] = 108, - [133] = 111, - [134] = 122, - [135] = 108, - [136] = 107, - [137] = 2, - [138] = 106, - [139] = 119, - [140] = 2, - [141] = 111, - [142] = 109, - [143] = 110, - [144] = 117, - [145] = 122, - [146] = 109, - [147] = 121, - [148] = 119, - [149] = 107, - [150] = 106, - [151] = 120, - [152] = 116, - [153] = 115, - [154] = 120, - [155] = 114, - [156] = 121, - [157] = 109, - [158] = 114, - [159] = 112, - [160] = 113, - [161] = 115, - [162] = 117, - [163] = 122, - [164] = 122, - [165] = 121, - [166] = 2, - [167] = 110, - [168] = 119, - [169] = 107, - [170] = 106, - [171] = 116, - [172] = 111, - [173] = 108, - [174] = 120, - [175] = 122, - [176] = 122, - [177] = 113, - [178] = 109, - [179] = 119, - [180] = 107, - [181] = 122, - [182] = 106, - [183] = 121, - [184] = 117, - [185] = 2, - [186] = 114, - [187] = 108, - [188] = 111, - [189] = 115, - [190] = 110, - [191] = 112, - [192] = 116, - [193] = 120, - [194] = 2, - [195] = 117, - [196] = 122, - [197] = 109, - [198] = 114, - [199] = 108, - [200] = 122, - [201] = 110, - [202] = 112, - [203] = 113, - [204] = 120, - [205] = 106, - [206] = 107, - [207] = 111, - [208] = 115, - [209] = 116, - [210] = 119, - [211] = 121, - [212] = 212, - [213] = 122, - [214] = 122, - [215] = 212, - [216] = 212, - [217] = 212, - [218] = 2, - [219] = 219, - [220] = 220, - [221] = 221, - [222] = 220, - [223] = 219, - [224] = 221, - [225] = 212, - [226] = 110, - [227] = 219, - [228] = 109, - [229] = 220, - [230] = 212, - [231] = 221, - [232] = 107, - [233] = 119, - [234] = 108, - [235] = 110, - [236] = 114, - [237] = 116, - [238] = 219, - [239] = 122, - [240] = 121, - [241] = 117, - [242] = 116, - [243] = 221, - [244] = 112, - [245] = 111, - [246] = 113, - [247] = 122, - [248] = 115, - [249] = 2, - [250] = 117, - [251] = 121, - [252] = 115, - [253] = 113, - [254] = 119, - [255] = 107, - [256] = 106, - [257] = 120, - [258] = 109, - [259] = 106, - [260] = 220, - [261] = 108, - [262] = 114, - [263] = 111, - [264] = 120, - [265] = 112, - [266] = 121, - [267] = 116, - [268] = 110, - [269] = 116, - [270] = 111, - [271] = 117, - [272] = 108, - [273] = 115, - [274] = 109, - [275] = 113, - [276] = 114, - [277] = 120, - [278] = 112, - [279] = 110, - [280] = 108, - [281] = 106, - [282] = 107, - [283] = 109, - [284] = 119, - [285] = 111, - [286] = 119, - [287] = 122, - [288] = 114, - [289] = 121, - [290] = 117, - [291] = 122, - [292] = 115, - [293] = 113, - [294] = 107, - [295] = 106, - [296] = 120, - [297] = 112, - [298] = 219, - [299] = 220, - [300] = 221, - [301] = 122, - [302] = 221, - [303] = 219, - [304] = 220, - [305] = 2, - [306] = 122, - [307] = 2, - [308] = 117, - [309] = 110, - [310] = 114, - [311] = 120, - [312] = 107, - [313] = 119, - [314] = 121, - [315] = 122, - [316] = 111, - [317] = 115, - [318] = 116, - [319] = 113, - [320] = 106, - [321] = 112, - [322] = 109, - [323] = 108, - [324] = 324, - [325] = 113, - [326] = 324, - [327] = 117, - [328] = 121, - [329] = 119, - [330] = 107, - [331] = 324, - [332] = 324, - [333] = 106, - [334] = 109, - [335] = 324, - [336] = 324, - [337] = 116, - [338] = 114, - [339] = 324, - [340] = 120, - [341] = 111, - [342] = 108, - [343] = 324, - [344] = 324, - [345] = 324, - [346] = 113, - [347] = 324, - [348] = 2, - [349] = 115, - [350] = 324, - [351] = 120, - [352] = 122, - [353] = 108, - [354] = 324, - [355] = 324, - [356] = 2, - [357] = 106, - [358] = 116, - [359] = 111, - [360] = 122, - [361] = 110, - [362] = 114, - [363] = 107, - [364] = 110, - [365] = 324, - [366] = 112, - [367] = 119, - [368] = 121, - [369] = 324, - [370] = 324, - [371] = 117, - [372] = 109, - [373] = 115, - [374] = 112, - [375] = 324, - [376] = 376, - [377] = 376, - [378] = 378, - [379] = 376, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 381, - [384] = 384, - [385] = 378, - [386] = 122, - [387] = 384, - [388] = 382, - [389] = 382, - [390] = 382, - [391] = 381, - [392] = 378, - [393] = 381, - [394] = 376, - [395] = 380, - [396] = 380, - [397] = 378, - [398] = 382, - [399] = 376, - [400] = 381, - [401] = 376, - [402] = 378, - [403] = 380, - [404] = 380, - [405] = 378, - [406] = 382, - [407] = 382, - [408] = 382, - [409] = 376, - [410] = 376, - [411] = 378, - [412] = 380, - [413] = 382, - [414] = 380, - [415] = 382, - [416] = 378, - [417] = 382, - [418] = 378, - [419] = 382, - [420] = 376, - [421] = 382, - [422] = 381, - [423] = 382, - [424] = 384, - [425] = 384, - [426] = 381, - [427] = 380, - [428] = 376, - [429] = 376, - [430] = 376, - [431] = 378, - [432] = 378, - [433] = 378, - [434] = 380, - [435] = 378, - [436] = 376, - [437] = 380, - [438] = 378, - [439] = 382, - [440] = 381, - [441] = 376, - [442] = 381, - [443] = 376, - [444] = 378, - [445] = 381, - [446] = 381, - [447] = 380, - [448] = 380, - [449] = 381, - [450] = 382, - [451] = 117, - [452] = 452, - [453] = 452, - [454] = 115, - [455] = 455, - [456] = 121, - [457] = 121, - [458] = 119, - [459] = 119, - [460] = 108, - [461] = 115, - [462] = 122, - [463] = 113, - [464] = 107, - [465] = 113, - [466] = 452, - [467] = 109, - [468] = 452, - [469] = 455, - [470] = 122, - [471] = 112, - [472] = 452, - [473] = 452, - [474] = 452, - [475] = 107, - [476] = 106, - [477] = 452, - [478] = 117, - [479] = 106, - [480] = 120, - [481] = 114, - [482] = 111, - [483] = 110, - [484] = 452, - [485] = 116, - [486] = 108, - [487] = 452, - [488] = 452, - [489] = 109, - [490] = 120, - [491] = 452, - [492] = 452, - [493] = 114, - [494] = 452, - [495] = 495, - [496] = 452, - [497] = 452, - [498] = 111, - [499] = 112, - [500] = 452, - [501] = 122, - [502] = 452, - [503] = 455, - [504] = 116, - [505] = 495, - [506] = 455, - [507] = 110, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 510, - [517] = 517, - [518] = 514, - [519] = 519, - [520] = 513, - [521] = 514, - [522] = 511, - [523] = 513, - [524] = 524, - [525] = 525, - [526] = 526, - [527] = 510, - [528] = 528, - [529] = 514, - [530] = 511, - [531] = 513, - [532] = 514, - [533] = 510, - [534] = 526, - [535] = 512, - [536] = 536, - [537] = 524, - [538] = 528, - [539] = 539, - [540] = 515, - [541] = 517, - [542] = 519, - [543] = 543, - [544] = 544, - [545] = 512, - [546] = 544, - [547] = 509, - [548] = 524, - [549] = 528, - [550] = 509, - [551] = 536, - [552] = 536, - [553] = 519, - [554] = 554, - [555] = 508, - [556] = 514, - [557] = 543, - [558] = 544, - [559] = 514, - [560] = 560, - [561] = 560, - [562] = 509, - [563] = 563, - [564] = 564, - [565] = 565, - [566] = 566, - [567] = 567, - [568] = 568, - [569] = 536, - [570] = 543, - [571] = 514, - [572] = 572, - [573] = 573, - [574] = 572, - [575] = 539, - [576] = 544, - [577] = 514, - [578] = 509, - [579] = 560, - [580] = 580, - [581] = 536, - [582] = 560, - [583] = 116, - [584] = 528, - [585] = 524, - [586] = 554, - [587] = 512, - [588] = 515, - [589] = 560, - [590] = 517, - [591] = 510, - [592] = 592, - [593] = 514, - [594] = 514, - [595] = 510, - [596] = 512, - [597] = 597, - [598] = 544, - [599] = 524, - [600] = 528, - [601] = 519, - [602] = 111, - [603] = 543, - [604] = 114, - [605] = 510, - [606] = 509, - [607] = 519, - [608] = 543, - [609] = 565, - [610] = 564, - [611] = 563, - [612] = 536, - [613] = 613, - [614] = 528, - [615] = 566, - [616] = 567, - [617] = 514, - [618] = 517, - [619] = 568, - [620] = 515, - [621] = 565, - [622] = 564, - [623] = 623, - [624] = 563, - [625] = 544, - [626] = 509, - [627] = 524, - [628] = 613, - [629] = 539, - [630] = 560, - [631] = 566, - [632] = 120, - [633] = 567, - [634] = 634, - [635] = 554, - [636] = 568, - [637] = 106, - [638] = 554, - [639] = 565, - [640] = 512, - [641] = 536, - [642] = 107, - [643] = 564, - [644] = 563, - [645] = 514, - [646] = 515, - [647] = 517, - [648] = 613, - [649] = 119, - [650] = 560, - [651] = 544, - [652] = 652, - [653] = 121, - [654] = 509, - [655] = 510, - [656] = 597, - [657] = 566, - [658] = 567, - [659] = 568, - [660] = 117, - [661] = 536, - [662] = 662, - [663] = 115, - [664] = 565, - [665] = 564, - [666] = 563, - [667] = 113, - [668] = 514, - [669] = 613, - [670] = 515, - [671] = 112, - [672] = 517, - [673] = 110, - [674] = 517, - [675] = 554, - [676] = 560, - [677] = 566, - [678] = 567, - [679] = 568, - [680] = 680, - [681] = 565, - [682] = 560, - [683] = 514, - [684] = 517, - [685] = 544, - [686] = 519, - [687] = 564, - [688] = 108, - [689] = 563, - [690] = 690, - [691] = 539, - [692] = 554, - [693] = 613, - [694] = 514, - [695] = 109, - [696] = 696, - [697] = 510, - [698] = 512, - [699] = 515, - [700] = 515, - [701] = 509, - [702] = 514, - [703] = 536, - [704] = 566, - [705] = 567, - [706] = 568, - [707] = 508, - [708] = 708, - [709] = 565, - [710] = 510, - [711] = 554, - [712] = 512, - [713] = 524, - [714] = 564, - [715] = 519, - [716] = 563, - [717] = 717, - [718] = 613, - [719] = 528, - [720] = 515, - [721] = 543, - [722] = 524, - [723] = 554, - [724] = 724, - [725] = 572, - [726] = 554, - [727] = 544, - [728] = 528, - [729] = 729, - [730] = 566, - [731] = 567, - [732] = 568, - [733] = 733, - [734] = 565, - [735] = 510, - [736] = 564, - [737] = 509, - [738] = 563, - [739] = 519, - [740] = 613, - [741] = 515, - [742] = 519, - [743] = 519, - [744] = 517, - [745] = 560, - [746] = 536, - [747] = 544, - [748] = 566, - [749] = 509, - [750] = 567, - [751] = 536, - [752] = 752, - [753] = 568, - [754] = 544, - [755] = 613, - [756] = 565, - [757] = 564, - [758] = 554, - [759] = 597, - [760] = 563, - [761] = 560, - [762] = 613, - [763] = 526, - [764] = 514, - [765] = 597, - [766] = 536, - [767] = 510, - [768] = 515, - [769] = 517, - [770] = 543, - [771] = 508, - [772] = 563, - [773] = 515, - [774] = 512, - [775] = 566, - [776] = 567, - [777] = 568, - [778] = 564, - [779] = 565, - [780] = 564, - [781] = 563, - [782] = 565, - [783] = 613, - [784] = 524, - [785] = 528, - [786] = 514, - [787] = 517, - [788] = 519, - [789] = 543, - [790] = 554, - [791] = 791, - [792] = 566, - [793] = 568, - [794] = 567, - [795] = 568, - [796] = 514, - [797] = 567, - [798] = 565, - [799] = 564, - [800] = 566, - [801] = 563, - [802] = 510, - [803] = 708, - [804] = 613, - [805] = 652, - [806] = 528, - [807] = 512, - [808] = 524, - [809] = 680, - [810] = 566, - [811] = 567, - [812] = 568, - [813] = 690, - [814] = 696, - [815] = 565, - [816] = 564, - [817] = 563, - [818] = 528, - [819] = 514, - [820] = 517, - [821] = 613, - [822] = 525, - [823] = 512, - [824] = 524, - [825] = 543, - [826] = 528, - [827] = 827, - [828] = 524, - [829] = 566, - [830] = 567, - [831] = 568, - [832] = 544, - [833] = 509, - [834] = 512, - [835] = 554, - [836] = 514, - [837] = 536, - [838] = 554, - [839] = 565, - [840] = 564, - [841] = 515, - [842] = 842, - [843] = 563, - [844] = 512, - [845] = 517, - [846] = 524, - [847] = 560, - [848] = 526, - [849] = 613, - [850] = 528, - [851] = 554, - [852] = 515, - [853] = 512, - [854] = 510, - [855] = 560, - [856] = 514, - [857] = 857, - [858] = 519, - [859] = 524, - [860] = 510, - [861] = 512, - [862] = 528, - [863] = 524, - [864] = 514, - [865] = 122, - [866] = 514, - [867] = 514, - [868] = 515, - [869] = 528, - [870] = 543, - [871] = 517, - [872] = 515, - [873] = 566, - [874] = 567, - [875] = 539, - [876] = 568, - [877] = 517, - [878] = 519, - [879] = 560, - [880] = 572, - [881] = 517, - [882] = 560, - [883] = 752, - [884] = 519, - [885] = 572, - [886] = 560, - [887] = 543, - [888] = 888, - [889] = 565, - [890] = 509, - [891] = 891, - [892] = 519, - [893] = 554, - [894] = 894, - [895] = 554, - [896] = 827, - [897] = 897, - [898] = 898, - [899] = 564, - [900] = 515, - [901] = 511, - [902] = 563, - [903] = 517, - [904] = 536, - [905] = 696, - [906] = 690, - [907] = 544, - [908] = 509, - [909] = 909, - [910] = 680, - [911] = 508, - [912] = 597, - [913] = 652, - [914] = 514, - [915] = 526, - [916] = 613, - [917] = 708, - [918] = 827, - [919] = 752, - [920] = 566, - [921] = 567, - [922] = 613, - [923] = 568, - [924] = 565, - [925] = 564, - [926] = 510, - [927] = 509, - [928] = 928, - [929] = 544, - [930] = 543, - [931] = 563, - [932] = 543, - [933] = 543, - [934] = 543, - [935] = 544, - [936] = 543, - [937] = 613, - [938] = 696, - [939] = 519, - [940] = 652, - [941] = 613, - [942] = 566, - [943] = 567, - [944] = 568, - [945] = 567, - [946] = 566, - [947] = 568, - [948] = 948, - [949] = 536, - [950] = 512, - [951] = 514, - [952] = 952, - [953] = 524, - [954] = 752, - [955] = 528, - [956] = 565, - [957] = 564, - [958] = 563, - [959] = 959, - [960] = 122, - [961] = 961, - [962] = 122, - [963] = 959, - [964] = 964, - [965] = 965, - [966] = 966, - [967] = 967, - [968] = 966, - [969] = 969, - [970] = 967, - [971] = 971, - [972] = 967, - [973] = 973, - [974] = 212, - [975] = 966, - [976] = 973, - [977] = 966, - [978] = 967, - [979] = 979, - [980] = 966, - [981] = 967, - [982] = 979, - [983] = 969, - [984] = 971, - [985] = 973, - [986] = 969, - [987] = 966, - [988] = 971, - [989] = 979, - [990] = 967, - [991] = 969, - [992] = 966, - [993] = 973, - [994] = 973, - [995] = 971, - [996] = 969, - [997] = 969, - [998] = 971, - [999] = 973, - [1000] = 966, - [1001] = 969, - [1002] = 973, - [1003] = 966, - [1004] = 979, - [1005] = 966, - [1006] = 1006, - [1007] = 979, - [1008] = 973, - [1009] = 967, - [1010] = 966, - [1011] = 969, - [1012] = 973, - [1013] = 971, - [1014] = 973, - [1015] = 966, - [1016] = 979, - [1017] = 971, - [1018] = 967, - [1019] = 979, - [1020] = 967, - [1021] = 969, - [1022] = 971, - [1023] = 973, - [1024] = 966, - [1025] = 1006, - [1026] = 966, - [1027] = 1006, - [1028] = 971, - [1029] = 979, - [1030] = 969, - [1031] = 973, - [1032] = 969, - [1033] = 971, - [1034] = 979, - [1035] = 967, - [1036] = 967, - [1037] = 967, - [1038] = 979, - [1039] = 973, - [1040] = 1006, - [1041] = 979, - [1042] = 971, - [1043] = 969, - [1044] = 971, - [1045] = 979, - [1046] = 967, - [1047] = 966, - [1048] = 973, - [1049] = 971, - [1050] = 969, - [1051] = 979, - [1052] = 971, - [1053] = 973, - [1054] = 971, - [1055] = 969, - [1056] = 971, - [1057] = 1006, - [1058] = 966, - [1059] = 967, - [1060] = 979, - [1061] = 967, - [1062] = 973, - [1063] = 969, - [1064] = 969, - [1065] = 969, - [1066] = 971, - [1067] = 967, - [1068] = 979, - [1069] = 967, - [1070] = 979, - [1071] = 973, - [1072] = 979, - [1073] = 966, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1074, - [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1079, - [1082] = 1078, - [1083] = 1074, - [1084] = 1076, - [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 1075, - [1089] = 1089, - [1090] = 1089, - [1091] = 1091, - [1092] = 1092, - [1093] = 1093, - [1094] = 1094, - [1095] = 1087, - [1096] = 1086, - [1097] = 1087, - [1098] = 1079, - [1099] = 1075, - [1100] = 1089, - [1101] = 1094, - [1102] = 1093, - [1103] = 1091, - [1104] = 1089, - [1105] = 1079, - [1106] = 1091, - [1107] = 1075, - [1108] = 1093, - [1109] = 1087, - [1110] = 1094, - [1111] = 1078, - [1112] = 1075, - [1113] = 1094, - [1114] = 1093, - [1115] = 1086, - [1116] = 1074, - [1117] = 1085, - [1118] = 1092, - [1119] = 1091, - [1120] = 1076, - [1121] = 1089, - [1122] = 1085, - [1123] = 1086, - [1124] = 1085, - [1125] = 1089, - [1126] = 1126, - [1127] = 1076, - [1128] = 1087, - [1129] = 1075, - [1130] = 1092, - [1131] = 1089, - [1132] = 1080, - [1133] = 1091, - [1134] = 1080, - [1135] = 1074, - [1136] = 1076, - [1137] = 1078, - [1138] = 1091, - [1139] = 1080, - [1140] = 1126, - [1141] = 1093, - [1142] = 1093, - [1143] = 1092, - [1144] = 1092, - [1145] = 1094, - [1146] = 1093, - [1147] = 1091, - [1148] = 1089, - [1149] = 1126, - [1150] = 1094, - [1151] = 1075, - [1152] = 1094, - [1153] = 1078, - [1154] = 1087, - [1155] = 1086, - [1156] = 1085, - [1157] = 1076, - [1158] = 1074, - [1159] = 1159, - [1160] = 1092, - [1161] = 1078, - [1162] = 1076, - [1163] = 1079, - [1164] = 1080, - [1165] = 1075, - [1166] = 1087, - [1167] = 1079, - [1168] = 1168, - [1169] = 1086, - [1170] = 1094, - [1171] = 1094, - [1172] = 1126, - [1173] = 1093, - [1174] = 1080, - [1175] = 1092, - [1176] = 1126, - [1177] = 1086, - [1178] = 1092, - [1179] = 1126, - [1180] = 1091, - [1181] = 1093, - [1182] = 1085, - [1183] = 1079, - [1184] = 1078, - [1185] = 1126, - [1186] = 1186, - [1187] = 1091, - [1188] = 1074, - [1189] = 1076, - [1190] = 1076, - [1191] = 1089, - [1192] = 1074, - [1193] = 1085, - [1194] = 1194, - [1195] = 1086, - [1196] = 1079, - [1197] = 1085, - [1198] = 1075, - [1199] = 1087, - [1200] = 1087, - [1201] = 212, - [1202] = 1126, - [1203] = 1126, - [1204] = 1126, - [1205] = 1075, - [1206] = 1078, - [1207] = 1089, - [1208] = 1091, - [1209] = 1079, - [1210] = 1086, - [1211] = 1087, - [1212] = 1093, - [1213] = 1085, - [1214] = 1086, - [1215] = 1094, - [1216] = 1087, - [1217] = 1126, - [1218] = 1075, - [1219] = 1089, - [1220] = 1092, - [1221] = 1080, - [1222] = 1091, - [1223] = 1074, - [1224] = 1086, - [1225] = 1126, - [1226] = 1085, - [1227] = 1092, - [1228] = 1092, - [1229] = 1094, - [1230] = 1093, - [1231] = 1094, - [1232] = 1080, - [1233] = 1126, - [1234] = 1093, - [1235] = 1091, - [1236] = 1076, - [1237] = 1092, - [1238] = 1080, - [1239] = 1094, - [1240] = 1093, - [1241] = 1093, - [1242] = 1091, - [1243] = 1089, - [1244] = 1091, - [1245] = 1075, - [1246] = 1087, - [1247] = 1089, - [1248] = 1075, - [1249] = 1086, - [1250] = 1085, - [1251] = 1076, - [1252] = 1074, - [1253] = 1087, - [1254] = 1079, - [1255] = 1078, - [1256] = 1079, - [1257] = 1080, - [1258] = 1126, - [1259] = 1086, - [1260] = 1078, - [1261] = 1089, - [1262] = 1085, - [1263] = 1074, - [1264] = 1076, - [1265] = 1085, - [1266] = 1076, - [1267] = 1076, - [1268] = 1085, - [1269] = 1086, - [1270] = 1087, - [1271] = 1080, - [1272] = 1075, - [1273] = 1089, - [1274] = 1091, - [1275] = 1080, - [1276] = 1074, - [1277] = 1126, - [1278] = 1093, - [1279] = 1080, - [1280] = 1079, - [1281] = 1094, - [1282] = 1078, - [1283] = 1078, - [1284] = 1094, - [1285] = 1075, - [1286] = 1074, - [1287] = 1076, - [1288] = 1079, - [1289] = 1085, - [1290] = 1086, - [1291] = 1291, - [1292] = 1080, - [1293] = 1087, - [1294] = 1087, - [1295] = 1086, - [1296] = 1168, - [1297] = 1126, - [1298] = 1080, - [1299] = 1085, - [1300] = 1075, - [1301] = 1092, - [1302] = 1076, - [1303] = 1089, - [1304] = 1091, - [1305] = 1093, - [1306] = 1074, - [1307] = 1094, - [1308] = 1078, - [1309] = 1074, - [1310] = 1078, - [1311] = 1092, - [1312] = 1078, - [1313] = 1194, - [1314] = 1078, - [1315] = 1079, - [1316] = 1092, - [1317] = 1074, - [1318] = 1079, - [1319] = 1079, - [1320] = 1080, - [1321] = 1092, - [1322] = 1322, - [1323] = 1322, - [1324] = 1324, - [1325] = 1324, - [1326] = 1322, - [1327] = 219, - [1328] = 212, - [1329] = 221, - [1330] = 220, - [1331] = 219, - [1332] = 221, - [1333] = 220, - [1334] = 1334, - [1335] = 1334, - [1336] = 1334, - [1337] = 1334, - [1338] = 221, - [1339] = 219, - [1340] = 220, - [1341] = 1341, - [1342] = 1342, - [1343] = 1343, - [1344] = 1343, - [1345] = 1343, - [1346] = 1343, - [1347] = 219, - [1348] = 1348, - [1349] = 1349, - [1350] = 219, - [1351] = 1348, - [1352] = 1349, - [1353] = 1348, - [1354] = 1349, - [1355] = 219, - [1356] = 1356, - [1357] = 1357, - [1358] = 1358, - [1359] = 1359, - [1360] = 1360, - [1361] = 1361, - [1362] = 1362, - [1363] = 1363, - [1364] = 1364, - [1365] = 1365, - [1366] = 1361, - [1367] = 1359, - [1368] = 1362, - [1369] = 1356, - [1370] = 1357, - [1371] = 1363, - [1372] = 1364, - [1373] = 1360, - [1374] = 1365, - [1375] = 1358, - [1376] = 1376, - [1377] = 1377, - [1378] = 1364, - [1379] = 1359, - [1380] = 1362, - [1381] = 1365, - [1382] = 1382, - [1383] = 1383, - [1384] = 1361, - [1385] = 1385, - [1386] = 1358, - [1387] = 1387, - [1388] = 1388, - [1389] = 1389, - [1390] = 1390, - [1391] = 1391, - [1392] = 1356, - [1393] = 1360, - [1394] = 1363, - [1395] = 1357, - [1396] = 1396, - [1397] = 1397, - [1398] = 1398, - [1399] = 1399, - [1400] = 1400, - [1401] = 1401, - [1402] = 1390, - [1403] = 1403, - [1404] = 1404, - [1405] = 1405, - [1406] = 1406, - [1407] = 1407, - [1408] = 219, - [1409] = 1348, - [1410] = 1410, - [1411] = 1411, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1382, - [1416] = 1416, - [1417] = 1417, - [1418] = 1418, - [1419] = 1419, - [1420] = 1420, - [1421] = 1421, - [1422] = 1387, - [1423] = 1423, - [1424] = 1388, - [1425] = 1425, - [1426] = 1389, - [1427] = 1427, - [1428] = 1428, - [1429] = 1429, - [1430] = 1430, - [1431] = 1349, - [1432] = 1377, - [1433] = 1433, - [1434] = 1434, - [1435] = 1435, - [1436] = 1436, - [1437] = 1437, - [1438] = 1438, - [1439] = 1439, - [1440] = 1391, - [1441] = 1441, - [1442] = 1385, - [1443] = 1383, - [1444] = 1444, - [1445] = 1445, - [1446] = 1446, - [1447] = 1447, - [1448] = 1448, - [1449] = 1449, - [1450] = 1382, - [1451] = 1451, - [1452] = 1452, - [1453] = 1453, - [1454] = 1454, - [1455] = 1455, - [1456] = 1456, - [1457] = 1457, - [1458] = 1458, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 1463, - [1464] = 1464, - [1465] = 1465, - [1466] = 1391, - [1467] = 1467, - [1468] = 1468, - [1469] = 1469, - [1470] = 1470, - [1471] = 1471, - [1472] = 1472, - [1473] = 1473, - [1474] = 1474, - [1475] = 1475, - [1476] = 1476, - [1477] = 1477, - [1478] = 1478, - [1479] = 1389, - [1480] = 1480, - [1481] = 1388, - [1482] = 1387, - [1483] = 1483, - [1484] = 1484, - [1485] = 1485, - [1486] = 1383, - [1487] = 1390, - [1488] = 1488, - [1489] = 1377, - [1490] = 1490, - [1491] = 1385, - [1492] = 1492, - [1493] = 1423, - [1494] = 1470, - [1495] = 1492, - [1496] = 1412, - [1497] = 1448, - [1498] = 1405, - [1499] = 1471, - [1500] = 1404, - [1501] = 1448, - [1502] = 1404, - [1503] = 1441, - [1504] = 1417, - [1505] = 1453, - [1506] = 1470, - [1507] = 1429, - [1508] = 1469, - [1509] = 1430, - [1510] = 1458, - [1511] = 1410, - [1512] = 1452, - [1513] = 1468, - [1514] = 1464, - [1515] = 1474, - [1516] = 1403, - [1517] = 1401, - [1518] = 1400, - [1519] = 1463, - [1520] = 1461, - [1521] = 1399, - [1522] = 1488, - [1523] = 1480, - [1524] = 1398, - [1525] = 1411, - [1526] = 1388, - [1527] = 1416, - [1528] = 1418, - [1529] = 1467, - [1530] = 1419, - [1531] = 1451, - [1532] = 1421, - [1533] = 1459, - [1534] = 1459, - [1535] = 1377, - [1536] = 1406, - [1537] = 1438, - [1538] = 1427, - [1539] = 1460, - [1540] = 1453, - [1541] = 1407, - [1542] = 1445, - [1543] = 1428, - [1544] = 1467, - [1545] = 1433, - [1546] = 1439, - [1547] = 1485, - [1548] = 1407, - [1549] = 1444, - [1550] = 1420, - [1551] = 1457, - [1552] = 1457, - [1553] = 1458, - [1554] = 1434, - [1555] = 1480, - [1556] = 1444, - [1557] = 1396, - [1558] = 1483, - [1559] = 1476, - [1560] = 1414, - [1561] = 1477, - [1562] = 1390, - [1563] = 1439, - [1564] = 1397, - [1565] = 1460, - [1566] = 1428, - [1567] = 1461, - [1568] = 1463, - [1569] = 1455, - [1570] = 1449, - [1571] = 1492, - [1572] = 1387, - [1573] = 1447, - [1574] = 1472, - [1575] = 1437, - [1576] = 1436, - [1577] = 1435, - [1578] = 1490, - [1579] = 1464, - [1580] = 1445, - [1581] = 1468, - [1582] = 1483, - [1583] = 1427, - [1584] = 1417, - [1585] = 1421, - [1586] = 1452, - [1587] = 1474, - [1588] = 1406, - [1589] = 1484, - [1590] = 1405, - [1591] = 1441, - [1592] = 1412, - [1593] = 1410, - [1594] = 1413, - [1595] = 1451, - [1596] = 1423, - [1597] = 1478, - [1598] = 1469, - [1599] = 1425, - [1600] = 1420, - [1601] = 1446, - [1602] = 1429, - [1603] = 1419, - [1604] = 1389, - [1605] = 1418, - [1606] = 1411, - [1607] = 1416, - [1608] = 1434, - [1609] = 1476, - [1610] = 1430, - [1611] = 1462, - [1612] = 1435, - [1613] = 1396, - [1614] = 1398, - [1615] = 1397, - [1616] = 1477, - [1617] = 1436, - [1618] = 1437, - [1619] = 1399, - [1620] = 1465, - [1621] = 1446, - [1622] = 1438, - [1623] = 1456, - [1624] = 1400, - [1625] = 1383, - [1626] = 1385, - [1627] = 1454, - [1628] = 1447, - [1629] = 1485, - [1630] = 1391, - [1631] = 1449, - [1632] = 1471, - [1633] = 1472, - [1634] = 1414, - [1635] = 1455, - [1636] = 1465, - [1637] = 1382, - [1638] = 1490, - [1639] = 1456, - [1640] = 1484, - [1641] = 1401, - [1642] = 1475, - [1643] = 1413, - [1644] = 1473, - [1645] = 1403, - [1646] = 1478, - [1647] = 1488, - [1648] = 1462, - [1649] = 1425, - [1650] = 1475, - [1651] = 1473, - [1652] = 1454, - [1653] = 1430, - [1654] = 1433, - [1655] = 1455, - [1656] = 1403, - [1657] = 1404, - [1658] = 1401, - [1659] = 1427, - [1660] = 1448, - [1661] = 1461, - [1662] = 1421, - [1663] = 1485, - [1664] = 1453, - [1665] = 1438, - [1666] = 1419, - [1667] = 1456, - [1668] = 1470, - [1669] = 1449, - [1670] = 1469, - [1671] = 1671, - [1672] = 1418, - [1673] = 1400, - [1674] = 1429, - [1675] = 1463, - [1676] = 1452, - [1677] = 1460, - [1678] = 1428, - [1679] = 1492, - [1680] = 1397, - [1681] = 1471, - [1682] = 1439, - [1683] = 1447, - [1684] = 1475, - [1685] = 1441, - [1686] = 1459, - [1687] = 1433, - [1688] = 1472, - [1689] = 1474, - [1690] = 1473, - [1691] = 1436, - [1692] = 1451, - [1693] = 1416, - [1694] = 1417, - [1695] = 1480, - [1696] = 1399, - [1697] = 1435, - [1698] = 1406, - [1699] = 1413, - [1700] = 1444, - [1701] = 1407, - [1702] = 1488, - [1703] = 1467, - [1704] = 1446, - [1705] = 1478, - [1706] = 1476, - [1707] = 1410, - [1708] = 1465, - [1709] = 1468, - [1710] = 1376, - [1711] = 1414, - [1712] = 1398, - [1713] = 1477, - [1714] = 1454, - [1715] = 1464, - [1716] = 1451, - [1717] = 1437, - [1718] = 1718, - [1719] = 1718, - [1720] = 1411, - [1721] = 1445, - [1722] = 1405, - [1723] = 1462, - [1724] = 1484, - [1725] = 1420, - [1726] = 1483, - [1727] = 1490, - [1728] = 1412, - [1729] = 1423, - [1730] = 1474, - [1731] = 1425, - [1732] = 1732, - [1733] = 1457, - [1734] = 1458, - [1735] = 1434, - [1736] = 1396, - [1737] = 1737, - [1738] = 1377, - [1739] = 1383, - [1740] = 1391, - [1741] = 1385, - [1742] = 1742, - [1743] = 1438, - [1744] = 1744, - [1745] = 1389, - [1746] = 1388, - [1747] = 1671, - [1748] = 1390, - [1749] = 1387, - [1750] = 1718, - [1751] = 1737, - [1752] = 1752, - [1753] = 1744, - [1754] = 1752, - [1755] = 1382, - [1756] = 1485, - [1757] = 1385, - [1758] = 1452, - [1759] = 1671, - [1760] = 1410, - [1761] = 1444, - [1762] = 1387, - [1763] = 1457, - [1764] = 1439, - [1765] = 1459, - [1766] = 1388, - [1767] = 1389, - [1768] = 1441, - [1769] = 1460, - [1770] = 1449, - [1771] = 1390, - [1772] = 1428, - [1773] = 1447, - [1774] = 1425, - [1775] = 1744, - [1776] = 1471, - [1777] = 1436, - [1778] = 1467, - [1779] = 1416, - [1780] = 1461, - [1781] = 1463, - [1782] = 1464, - [1783] = 1453, - [1784] = 1468, - [1785] = 1427, - [1786] = 1421, - [1787] = 1419, - [1788] = 1462, - [1789] = 1456, - [1790] = 1423, - [1791] = 1435, - [1792] = 1418, - [1793] = 1391, - [1794] = 1414, - [1795] = 1383, - [1796] = 1478, - [1797] = 1477, - [1798] = 1474, - [1799] = 1469, - [1800] = 1470, - [1801] = 1465, - [1802] = 1472, - [1803] = 1437, - [1804] = 1382, - [1805] = 1430, - [1806] = 1490, - [1807] = 1446, - [1808] = 1737, - [1809] = 1412, - [1810] = 1411, - [1811] = 1488, - [1812] = 1405, - [1813] = 1476, - [1814] = 1377, - [1815] = 1671, - [1816] = 1451, - [1817] = 1398, - [1818] = 1454, - [1819] = 1413, - [1820] = 1455, - [1821] = 1484, - [1822] = 1475, - [1823] = 1438, - [1824] = 1473, - [1825] = 1752, - [1826] = 1399, - [1827] = 1458, - [1828] = 1480, - [1829] = 1404, - [1830] = 1492, - [1831] = 1397, - [1832] = 1400, - [1833] = 1401, - [1834] = 1485, - [1835] = 1396, - [1836] = 1434, - [1837] = 1403, - [1838] = 1420, - [1839] = 1417, - [1840] = 1445, - [1841] = 1448, - [1842] = 1429, - [1843] = 1407, - [1844] = 1406, - [1845] = 1433, - [1846] = 1483, - [1847] = 1454, - [1848] = 1471, - [1849] = 1468, - [1850] = 1435, - [1851] = 1467, - [1852] = 1459, - [1853] = 1407, - [1854] = 1436, - [1855] = 1437, - [1856] = 1406, - [1857] = 1441, - [1858] = 1469, - [1859] = 1447, - [1860] = 1404, - [1861] = 1448, - [1862] = 1470, - [1863] = 1403, - [1864] = 1718, - [1865] = 1401, - [1866] = 1341, - [1867] = 1342, - [1868] = 1400, - [1869] = 1446, - [1870] = 1399, - [1871] = 1458, - [1872] = 1449, - [1873] = 1873, - [1874] = 1398, - [1875] = 1411, - [1876] = 1445, - [1877] = 1425, - [1878] = 1444, - [1879] = 1477, - [1880] = 1478, - [1881] = 1881, - [1882] = 1882, - [1883] = 1423, - [1884] = 1462, - [1885] = 1464, - [1886] = 1886, - [1887] = 1419, - [1888] = 1410, - [1889] = 1430, - [1890] = 1417, - [1891] = 1414, - [1892] = 1405, - [1893] = 1472, - [1894] = 1894, - [1895] = 1490, - [1896] = 1420, - [1897] = 1418, - [1898] = 1480, - [1899] = 1463, - [1900] = 1484, - [1901] = 1421, - [1902] = 1460, - [1903] = 1483, - [1904] = 1457, - [1905] = 1427, - [1906] = 1429, - [1907] = 1488, - [1908] = 1434, - [1909] = 1909, - [1910] = 1396, - [1911] = 1492, - [1912] = 1461, - [1913] = 1453, - [1914] = 1476, - [1915] = 1413, - [1916] = 1397, - [1917] = 1452, - [1918] = 1412, - [1919] = 1439, - [1920] = 1465, - [1921] = 1433, - [1922] = 1475, - [1923] = 1416, - [1924] = 1473, - [1925] = 1428, - [1926] = 1455, - [1927] = 1456, - [1928] = 1671, - [1929] = 1737, - [1930] = 1752, - [1931] = 1376, - [1932] = 1343, - [1933] = 1744, - [1934] = 1934, - [1935] = 1671, - [1936] = 1936, - [1937] = 1936, - [1938] = 1936, - [1939] = 1936, - [1940] = 1936, - [1941] = 1936, - [1942] = 1936, - [1943] = 1936, - [1944] = 1732, - [1945] = 1936, - [1946] = 1936, - [1947] = 1936, - [1948] = 1936, - [1949] = 1936, - [1950] = 1936, - [1951] = 1936, - [1952] = 1936, - [1953] = 1936, - [1954] = 1936, - [1955] = 1742, - [1956] = 1348, - [1957] = 1349, - [1958] = 1958, - [1959] = 1958, - [1960] = 1958, - [1961] = 1438, - [1962] = 1958, - [1963] = 1958, - [1964] = 1958, - [1965] = 1958, - [1966] = 1958, - [1967] = 1958, - [1968] = 1958, - [1969] = 1958, - [1970] = 1958, - [1971] = 1485, - [1972] = 1958, - [1973] = 1958, - [1974] = 1438, - [1975] = 1485, - [1976] = 1958, - [1977] = 1485, - [1978] = 1438, - [1979] = 1485, - [1980] = 1341, - [1981] = 1342, - [1982] = 1438, - [1983] = 1983, - [1984] = 1984, - [1985] = 1985, - [1986] = 1986, - [1987] = 1986, - [1988] = 1983, - [1989] = 1984, - [1990] = 1990, - [1991] = 1985, - [1992] = 1983, - [1993] = 1993, - [1994] = 1984, - [1995] = 1986, - [1996] = 1985, - [1997] = 1993, - [1998] = 1985, - [1999] = 1985, - [2000] = 1990, - [2001] = 1993, - [2002] = 1993, - [2003] = 1984, - [2004] = 1993, - [2005] = 1986, - [2006] = 1984, - [2007] = 1983, - [2008] = 1985, - [2009] = 1984, - [2010] = 1986, - [2011] = 1984, - [2012] = 1993, - [2013] = 1986, - [2014] = 1984, - [2015] = 1983, - [2016] = 1993, - [2017] = 1985, - [2018] = 1983, - [2019] = 1341, - [2020] = 1342, - [2021] = 1342, - [2022] = 1341, - [2023] = 1984, - [2024] = 1993, - [2025] = 1985, - [2026] = 1986, - [2027] = 1986, - [2028] = 1986, - [2029] = 1985, - [2030] = 1985, - [2031] = 1984, - [2032] = 1983, - [2033] = 1984, - [2034] = 1993, - [2035] = 1985, - [2036] = 1983, - [2037] = 1983, - [2038] = 1986, - [2039] = 1986, - [2040] = 1985, - [2041] = 1986, - [2042] = 1983, - [2043] = 1993, - [2044] = 1985, - [2045] = 1986, - [2046] = 1983, - [2047] = 1990, - [2048] = 1985, - [2049] = 1993, - [2050] = 1990, - [2051] = 1985, - [2052] = 1984, - [2053] = 1993, - [2054] = 1984, - [2055] = 1983, - [2056] = 1983, - [2057] = 1986, - [2058] = 1990, - [2059] = 1993, - [2060] = 1983, - [2061] = 1984, - [2062] = 1993, - [2063] = 1983, - [2064] = 1993, - [2065] = 1986, - [2066] = 1984, - [2067] = 2067, - [2068] = 2068, - [2069] = 2069, - [2070] = 2068, - [2071] = 2068, - [2072] = 2068, - [2073] = 2069, - [2074] = 2068, - [2075] = 2067, - [2076] = 2076, - [2077] = 2076, - [2078] = 2076, - [2079] = 2079, - [2080] = 2076, - [2081] = 2081, - [2082] = 2082, - [2083] = 2083, - [2084] = 2084, - [2085] = 2081, - [2086] = 2079, - [2087] = 2079, - [2088] = 2088, - [2089] = 2089, - [2090] = 2079, - [2091] = 2076, - [2092] = 2092, - [2093] = 2089, - [2094] = 2079, - [2095] = 2088, - [2096] = 2092, - [2097] = 2089, - [2098] = 2098, - [2099] = 2099, - [2100] = 2089, - [2101] = 2089, - [2102] = 2076, - [2103] = 2103, - [2104] = 2083, - [2105] = 2083, - [2106] = 2079, - [2107] = 2076, - [2108] = 2089, - [2109] = 2081, - [2110] = 2089, - [2111] = 2083, - [2112] = 2081, - [2113] = 2089, - [2114] = 2114, - [2115] = 2076, - [2116] = 2076, - [2117] = 2099, - [2118] = 2118, - [2119] = 2076, - [2120] = 2089, - [2121] = 2079, - [2122] = 2092, - [2123] = 2099, - [2124] = 2079, - [2125] = 2076, - [2126] = 2089, - [2127] = 2092, - [2128] = 2088, - [2129] = 2088, - [2130] = 2103, - [2131] = 2089, - [2132] = 2098, - [2133] = 2098, - [2134] = 2081, - [2135] = 2079, - [2136] = 2089, - [2137] = 2083, - [2138] = 2092, - [2139] = 2098, - [2140] = 2079, - [2141] = 2098, - [2142] = 2089, - [2143] = 2089, - [2144] = 2099, - [2145] = 2079, - [2146] = 2088, - [2147] = 2089, - [2148] = 2076, - [2149] = 2089, - [2150] = 2089, - [2151] = 2089, - [2152] = 2079, - [2153] = 2099, - [2154] = 2154, - [2155] = 2155, - [2156] = 2155, - [2157] = 2157, - [2158] = 2158, - [2159] = 2159, - [2160] = 2158, - [2161] = 2155, - [2162] = 2155, - [2163] = 2154, - [2164] = 2154, - [2165] = 2158, - [2166] = 2154, - [2167] = 2154, - [2168] = 2155, - [2169] = 2157, - [2170] = 2159, - [2171] = 2158, - [2172] = 2155, - [2173] = 2155, - [2174] = 2159, - [2175] = 2175, - [2176] = 2158, - [2177] = 2157, - [2178] = 2158, - [2179] = 2179, - [2180] = 2180, - [2181] = 2155, - [2182] = 2182, - [2183] = 2158, - [2184] = 2155, - [2185] = 2175, - [2186] = 2155, - [2187] = 2187, - [2188] = 2158, - [2189] = 2154, - [2190] = 2190, - [2191] = 2155, - [2192] = 2158, - [2193] = 2182, - [2194] = 2158, - [2195] = 2195, - [2196] = 2159, - [2197] = 2154, - [2198] = 2158, - [2199] = 2155, - [2200] = 2157, - [2201] = 2179, - [2202] = 2154, - [2203] = 2203, - [2204] = 2154, - [2205] = 2158, - [2206] = 2206, - [2207] = 2154, - [2208] = 2158, - [2209] = 2155, - [2210] = 2154, - [2211] = 2154, - [2212] = 2180, - [2213] = 2158, - [2214] = 2154, - [2215] = 2157, - [2216] = 2155, - [2217] = 2158, - [2218] = 2195, - [2219] = 2190, - [2220] = 2159, - [2221] = 2221, - [2222] = 2155, - [2223] = 2158, - [2224] = 2203, - [2225] = 2155, - [2226] = 2154, - [2227] = 2158, - [2228] = 2154, - [2229] = 2158, - [2230] = 2154, - [2231] = 2154, - [2232] = 2155, - [2233] = 2155, - [2234] = 2234, - [2235] = 2235, - [2236] = 2235, - [2237] = 2234, - [2238] = 2234, - [2239] = 2239, - [2240] = 2235, - [2241] = 2241, - [2242] = 1377, - [2243] = 2234, - [2244] = 2244, - [2245] = 2235, - [2246] = 2241, - [2247] = 2234, - [2248] = 2239, - [2249] = 2234, - [2250] = 2235, - [2251] = 1390, - [2252] = 2234, - [2253] = 2235, - [2254] = 2244, - [2255] = 2239, - [2256] = 2244, - [2257] = 1391, - [2258] = 1387, - [2259] = 2234, - [2260] = 2235, - [2261] = 2241, - [2262] = 1385, - [2263] = 2263, - [2264] = 2235, - [2265] = 2235, - [2266] = 2234, - [2267] = 2234, - [2268] = 2235, - [2269] = 2244, - [2270] = 1382, - [2271] = 2234, - [2272] = 2235, - [2273] = 1388, - [2274] = 2263, - [2275] = 2244, - [2276] = 1383, - [2277] = 2234, - [2278] = 2235, - [2279] = 2235, - [2280] = 2234, - [2281] = 2241, - [2282] = 2235, - [2283] = 1389, - [2284] = 2234, - [2285] = 2239, - [2286] = 2263, - [2287] = 2235, - [2288] = 2234, - [2289] = 2263, - [2290] = 1485, - [2291] = 1438, - [2292] = 2235, - [2293] = 2234, - [2294] = 2234, - [2295] = 2235, - [2296] = 2235, - [2297] = 2239, - [2298] = 2234, - [2299] = 2263, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 1390, - [2304] = 2301, - [2305] = 2305, - [2306] = 2306, - [2307] = 2307, - [2308] = 2300, - [2309] = 2309, - [2310] = 2310, - [2311] = 1405, - [2312] = 2310, - [2313] = 1452, - [2314] = 1441, - [2315] = 1420, - [2316] = 1412, - [2317] = 1463, - [2318] = 2309, - [2319] = 1423, - [2320] = 1464, - [2321] = 1435, - [2322] = 1446, - [2323] = 1436, - [2324] = 2324, - [2325] = 2325, - [2326] = 1437, - [2327] = 1488, - [2328] = 1447, - [2329] = 2329, - [2330] = 1413, - [2331] = 2309, - [2332] = 1449, - [2333] = 2333, - [2334] = 2334, - [2335] = 1468, - [2336] = 2310, - [2337] = 2305, - [2338] = 2301, - [2339] = 2302, - [2340] = 2310, - [2341] = 2309, - [2342] = 2307, - [2343] = 2309, - [2344] = 2307, - [2345] = 2309, - [2346] = 2329, - [2347] = 1451, - [2348] = 2301, - [2349] = 2306, - [2350] = 1467, - [2351] = 1411, - [2352] = 1418, - [2353] = 2329, - [2354] = 2325, - [2355] = 1448, - [2356] = 1455, - [2357] = 2305, - [2358] = 2310, - [2359] = 2307, - [2360] = 1434, - [2361] = 2305, - [2362] = 1419, - [2363] = 2363, - [2364] = 1421, - [2365] = 1396, - [2366] = 2366, - [2367] = 2367, - [2368] = 2300, - [2369] = 1459, - [2370] = 2305, - [2371] = 2363, - [2372] = 2310, - [2373] = 1427, - [2374] = 2300, - [2375] = 1425, - [2376] = 2325, - [2377] = 2300, - [2378] = 2334, - [2379] = 2366, - [2380] = 2305, - [2381] = 2305, - [2382] = 1460, - [2383] = 2301, - [2384] = 1457, - [2385] = 2300, - [2386] = 2310, - [2387] = 2305, - [2388] = 1445, - [2389] = 1477, - [2390] = 1474, - [2391] = 1476, - [2392] = 2333, - [2393] = 2324, - [2394] = 2310, - [2395] = 2310, - [2396] = 2367, - [2397] = 1483, - [2398] = 2305, - [2399] = 2399, - [2400] = 2399, - [2401] = 1471, - [2402] = 2300, - [2403] = 2309, - [2404] = 2309, - [2405] = 1428, - [2406] = 2300, - [2407] = 2305, - [2408] = 2333, - [2409] = 2301, - [2410] = 1403, - [2411] = 1444, - [2412] = 1470, - [2413] = 2302, - [2414] = 1433, - [2415] = 2334, - [2416] = 1461, - [2417] = 2333, - [2418] = 2324, - [2419] = 2301, - [2420] = 2366, - [2421] = 2329, - [2422] = 1410, - [2423] = 2306, - [2424] = 2309, - [2425] = 1472, - [2426] = 2310, - [2427] = 1490, - [2428] = 1398, - [2429] = 1429, - [2430] = 1382, - [2431] = 1417, - [2432] = 1387, - [2433] = 1388, - [2434] = 1389, - [2435] = 1397, - [2436] = 2324, - [2437] = 1438, - [2438] = 2310, - [2439] = 1480, - [2440] = 2309, - [2441] = 2301, - [2442] = 1377, - [2443] = 2300, - [2444] = 1484, - [2445] = 2305, - [2446] = 2301, - [2447] = 2309, - [2448] = 1414, - [2449] = 1438, - [2450] = 2300, - [2451] = 1485, - [2452] = 2309, - [2453] = 2301, - [2454] = 2301, - [2455] = 2309, - [2456] = 2310, - [2457] = 2310, - [2458] = 1462, - [2459] = 2300, - [2460] = 1406, - [2461] = 2309, - [2462] = 2302, - [2463] = 2309, - [2464] = 1478, - [2465] = 2310, - [2466] = 2399, - [2467] = 2310, - [2468] = 2310, - [2469] = 2306, - [2470] = 2334, - [2471] = 2300, - [2472] = 1391, - [2473] = 1453, - [2474] = 2363, - [2475] = 2367, - [2476] = 2366, - [2477] = 1458, - [2478] = 1385, - [2479] = 2300, - [2480] = 2305, - [2481] = 1383, - [2482] = 1416, - [2483] = 2309, - [2484] = 2305, - [2485] = 1469, - [2486] = 1407, - [2487] = 2334, - [2488] = 2305, - [2489] = 2310, - [2490] = 2301, - [2491] = 1475, - [2492] = 2300, - [2493] = 1492, - [2494] = 1473, - [2495] = 2399, - [2496] = 2329, - [2497] = 1465, - [2498] = 1399, - [2499] = 2307, - [2500] = 2324, - [2501] = 2333, - [2502] = 2301, - [2503] = 2367, - [2504] = 2309, - [2505] = 2363, - [2506] = 1404, - [2507] = 2310, - [2508] = 1485, - [2509] = 1454, - [2510] = 2300, - [2511] = 1400, - [2512] = 2305, - [2513] = 2300, - [2514] = 2325, - [2515] = 1456, - [2516] = 1401, - [2517] = 1430, - [2518] = 2305, - [2519] = 2366, - [2520] = 2309, - [2521] = 1439, - [2522] = 2522, - [2523] = 1458, - [2524] = 2522, - [2525] = 1421, - [2526] = 1470, - [2527] = 1469, - [2528] = 1492, - [2529] = 2522, - [2530] = 2530, - [2531] = 1419, - [2532] = 1427, - [2533] = 1468, - [2534] = 2534, - [2535] = 1418, - [2536] = 2522, - [2537] = 2534, - [2538] = 1477, - [2539] = 1445, - [2540] = 2522, - [2541] = 1454, - [2542] = 2542, - [2543] = 2522, - [2544] = 1400, - [2545] = 1461, - [2546] = 1456, - [2547] = 1474, - [2548] = 1410, - [2549] = 1449, - [2550] = 1480, - [2551] = 2522, - [2552] = 1446, - [2553] = 1423, - [2554] = 1407, - [2555] = 1434, - [2556] = 1397, - [2557] = 1447, - [2558] = 2534, - [2559] = 1439, - [2560] = 1414, - [2561] = 2530, - [2562] = 2522, - [2563] = 1403, - [2564] = 1404, - [2565] = 1412, - [2566] = 2542, - [2567] = 1405, - [2568] = 2522, - [2569] = 1437, - [2570] = 1401, - [2571] = 2571, - [2572] = 1451, - [2573] = 2530, - [2574] = 2530, - [2575] = 1396, - [2576] = 2534, - [2577] = 1417, - [2578] = 1420, - [2579] = 2522, - [2580] = 1429, - [2581] = 2581, - [2582] = 1406, - [2583] = 1416, - [2584] = 1473, - [2585] = 2522, - [2586] = 1452, - [2587] = 1413, - [2588] = 2588, - [2589] = 2571, - [2590] = 1399, - [2591] = 1430, - [2592] = 1448, - [2593] = 1425, - [2594] = 1453, - [2595] = 1464, - [2596] = 2522, - [2597] = 2522, - [2598] = 2542, - [2599] = 1462, - [2600] = 1465, - [2601] = 1478, - [2602] = 1488, - [2603] = 1398, - [2604] = 2571, - [2605] = 1441, - [2606] = 1463, - [2607] = 1471, - [2608] = 1472, - [2609] = 1455, - [2610] = 1428, - [2611] = 1411, - [2612] = 1476, - [2613] = 2522, - [2614] = 2542, - [2615] = 1490, - [2616] = 1433, - [2617] = 2542, - [2618] = 1444, - [2619] = 2581, - [2620] = 1436, - [2621] = 2530, - [2622] = 1435, - [2623] = 1459, - [2624] = 1460, - [2625] = 2534, - [2626] = 2626, - [2627] = 1467, - [2628] = 1457, - [2629] = 2522, - [2630] = 1475, - [2631] = 2571, - [2632] = 2522, - [2633] = 2571, - [2634] = 1484, - [2635] = 1483, - [2636] = 2636, - [2637] = 2636, - [2638] = 1671, - [2639] = 1718, - [2640] = 2636, - [2641] = 2636, - [2642] = 2636, - [2643] = 1485, - [2644] = 1485, - [2645] = 1438, - [2646] = 1438, - [2647] = 2647, - [2648] = 2648, - [2649] = 2649, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2653, - [2654] = 1454, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 1737, - [2660] = 2660, - [2661] = 2661, - [2662] = 2652, - [2663] = 2652, - [2664] = 1671, - [2665] = 2665, - [2666] = 2652, - [2667] = 2667, - [2668] = 2668, - [2669] = 2652, - [2670] = 2652, - [2671] = 1438, - [2672] = 1744, - [2673] = 2667, - [2674] = 2674, - [2675] = 1433, - [2676] = 2652, - [2677] = 2677, - [2678] = 1485, - [2679] = 2652, - [2680] = 2680, - [2681] = 2681, - [2682] = 2667, - [2683] = 1752, - [2684] = 2684, - [2685] = 2652, - [2686] = 2652, - [2687] = 2687, - [2688] = 1718, - [2689] = 2652, - [2690] = 2667, - [2691] = 2652, - [2692] = 2667, - [2693] = 2693, - [2694] = 2652, - [2695] = 2652, - [2696] = 2652, - [2697] = 2652, - [2698] = 2660, - [2699] = 1455, - [2700] = 2684, - [2701] = 2660, - [2702] = 2693, - [2703] = 2653, - [2704] = 2650, - [2705] = 1476, - [2706] = 2687, - [2707] = 2651, - [2708] = 2661, - [2709] = 1744, - [2710] = 2655, - [2711] = 1458, - [2712] = 2677, - [2713] = 2656, - [2714] = 2657, - [2715] = 2684, - [2716] = 2657, - [2717] = 2681, - [2718] = 2656, - [2719] = 2680, - [2720] = 2668, - [2721] = 1737, - [2722] = 2680, - [2723] = 2650, - [2724] = 2655, - [2725] = 1752, - [2726] = 1437, - [2727] = 2677, - [2728] = 2661, - [2729] = 2681, - [2730] = 2651, - [2731] = 2674, - [2732] = 2687, - [2733] = 2668, - [2734] = 2653, - [2735] = 2735, - [2736] = 2674, - [2737] = 1452, - [2738] = 2693, - [2739] = 1385, - [2740] = 1458, - [2741] = 1390, - [2742] = 2668, - [2743] = 2674, - [2744] = 2681, - [2745] = 2677, - [2746] = 1671, - [2747] = 1413, - [2748] = 1425, - [2749] = 1476, - [2750] = 1462, - [2751] = 1465, - [2752] = 1478, - [2753] = 2684, - [2754] = 2656, - [2755] = 2660, - [2756] = 2680, - [2757] = 2693, - [2758] = 2653, - [2759] = 2687, - [2760] = 2651, - [2761] = 2661, - [2762] = 2655, - [2763] = 2657, - [2764] = 1474, - [2765] = 1451, - [2766] = 1469, - [2767] = 1377, - [2768] = 1480, - [2769] = 1483, - [2770] = 1477, - [2771] = 1441, - [2772] = 1449, - [2773] = 1447, - [2774] = 1436, - [2775] = 1435, - [2776] = 1405, - [2777] = 1412, - [2778] = 1423, - [2779] = 1446, - [2780] = 1455, - [2781] = 1456, - [2782] = 1448, - [2783] = 1492, - [2784] = 1437, - [2785] = 2785, - [2786] = 2786, - [2787] = 2787, - [2788] = 2788, - [2789] = 1476, - [2790] = 2650, - [2791] = 1407, - [2792] = 2118, - [2793] = 2114, - [2794] = 1404, - [2795] = 2650, - [2796] = 1445, - [2797] = 1417, - [2798] = 1420, - [2799] = 1429, - [2800] = 1434, - [2801] = 1396, - [2802] = 1397, - [2803] = 1473, - [2804] = 1475, - [2805] = 1484, - [2806] = 1488, - [2807] = 1472, - [2808] = 1471, - [2809] = 1382, - [2810] = 1470, - [2811] = 2084, - [2812] = 1468, - [2813] = 1467, - [2814] = 1464, - [2815] = 1463, - [2816] = 1461, - [2817] = 1460, - [2818] = 1459, - [2819] = 1457, - [2820] = 1453, - [2821] = 1444, - [2822] = 1490, - [2823] = 2082, - [2824] = 1428, - [2825] = 1439, - [2826] = 1427, - [2827] = 1421, - [2828] = 1437, - [2829] = 1419, - [2830] = 1418, - [2831] = 1414, - [2832] = 1411, - [2833] = 1398, - [2834] = 1387, - [2835] = 1388, - [2836] = 1430, - [2837] = 1389, - [2838] = 1399, - [2839] = 1416, - [2840] = 1400, - [2841] = 1410, - [2842] = 1383, - [2843] = 1403, - [2844] = 1391, - [2845] = 1401, - [2846] = 1406, - [2847] = 1473, - [2848] = 1417, - [2849] = 1390, - [2850] = 2850, - [2851] = 2851, - [2852] = 2852, - [2853] = 1377, - [2854] = 2668, - [2855] = 2674, - [2856] = 2681, - [2857] = 2677, - [2858] = 2650, - [2859] = 1413, - [2860] = 1425, - [2861] = 1462, - [2862] = 1465, - [2863] = 1478, - [2864] = 1441, - [2865] = 1474, - [2866] = 1451, - [2867] = 1405, - [2868] = 1412, - [2869] = 1413, - [2870] = 1423, - [2871] = 1425, - [2872] = 1446, - [2873] = 1462, - [2874] = 1480, - [2875] = 1465, - [2876] = 1483, - [2877] = 1477, - [2878] = 1478, - [2879] = 1456, - [2880] = 1449, - [2881] = 1447, - [2882] = 1441, - [2883] = 2684, - [2884] = 1436, - [2885] = 1435, - [2886] = 1474, - [2887] = 1451, - [2888] = 2788, - [2889] = 2787, - [2890] = 1407, - [2891] = 1445, - [2892] = 1420, - [2893] = 1480, - [2894] = 1483, - [2895] = 1434, - [2896] = 1477, - [2897] = 1449, - [2898] = 1447, - [2899] = 1436, - [2900] = 1435, - [2901] = 1405, - [2902] = 1396, - [2903] = 1412, - [2904] = 1423, - [2905] = 1446, - [2906] = 1458, - [2907] = 1476, - [2908] = 1456, - [2909] = 1452, - [2910] = 1448, - [2911] = 1475, - [2912] = 1484, - [2913] = 1437, - [2914] = 1458, - [2915] = 1476, - [2916] = 1455, - [2917] = 1492, - [2918] = 1437, - [2919] = 2656, - [2920] = 1452, - [2921] = 1448, - [2922] = 1490, - [2923] = 1472, - [2924] = 1471, - [2925] = 1382, - [2926] = 1455, - [2927] = 1470, - [2928] = 2650, - [2929] = 1469, - [2930] = 1468, - [2931] = 1492, - [2932] = 1464, - [2933] = 1463, - [2934] = 1461, - [2935] = 1460, - [2936] = 1435, - [2937] = 1436, - [2938] = 1457, - [2939] = 1447, - [2940] = 1430, - [2941] = 1444, - [2942] = 1439, - [2943] = 1428, - [2944] = 1449, - [2945] = 1416, - [2946] = 1406, - [2947] = 1427, - [2948] = 1421, - [2949] = 1451, - [2950] = 1452, - [2951] = 1414, - [2952] = 2660, - [2953] = 1419, - [2954] = 2680, - [2955] = 2693, - [2956] = 1390, - [2957] = 2653, - [2958] = 1418, - [2959] = 1411, - [2960] = 2687, - [2961] = 2651, - [2962] = 2661, - [2963] = 1455, - [2964] = 2655, - [2965] = 1397, - [2966] = 1492, - [2967] = 1398, - [2968] = 1459, - [2969] = 2657, - [2970] = 1467, - [2971] = 1477, - [2972] = 2788, - [2973] = 2787, - [2974] = 1474, - [2975] = 1387, - [2976] = 1388, - [2977] = 1488, - [2978] = 1389, - [2979] = 1490, - [2980] = 1399, - [2981] = 1400, - [2982] = 1401, - [2983] = 1377, - [2984] = 1403, - [2985] = 1391, - [2986] = 1429, - [2987] = 1385, - [2988] = 1483, - [2989] = 1453, - [2990] = 1383, - [2991] = 1404, - [2992] = 1410, - [2993] = 1407, - [2994] = 1430, - [2995] = 1416, - [2996] = 1410, - [2997] = 1383, - [2998] = 2786, - [2999] = 2785, - [3000] = 1385, - [3001] = 1391, - [3002] = 1404, - [3003] = 1406, - [3004] = 1445, - [3005] = 1417, - [3006] = 1420, - [3007] = 1429, - [3008] = 1403, - [3009] = 1401, - [3010] = 1400, - [3011] = 1434, - [3012] = 1396, - [3013] = 2785, - [3014] = 2786, - [3015] = 1480, - [3016] = 1399, - [3017] = 1397, - [3018] = 1389, - [3019] = 1388, - [3020] = 1387, - [3021] = 1398, - [3022] = 1473, - [3023] = 1475, - [3024] = 1484, - [3025] = 1488, - [3026] = 1469, - [3027] = 1472, - [3028] = 1411, - [3029] = 1414, - [3030] = 1418, - [3031] = 1471, - [3032] = 1382, - [3033] = 1470, - [3034] = 1468, - [3035] = 1467, - [3036] = 1464, - [3037] = 1463, - [3038] = 1461, - [3039] = 1460, - [3040] = 1459, - [3041] = 1457, - [3042] = 1453, - [3043] = 1444, - [3044] = 1439, - [3045] = 1428, - [3046] = 2650, - [3047] = 1427, - [3048] = 1421, - [3049] = 1419, - [3050] = 1458, - [3051] = 1420, - [3052] = 1414, - [3053] = 1425, - [3054] = 1492, - [3055] = 3055, - [3056] = 3056, - [3057] = 1462, - [3058] = 3058, - [3059] = 3059, - [3060] = 3060, - [3061] = 2785, - [3062] = 2786, - [3063] = 1423, - [3064] = 2677, - [3065] = 1465, - [3066] = 1413, - [3067] = 1412, - [3068] = 1478, - [3069] = 3069, - [3070] = 1405, - [3071] = 1457, - [3072] = 1453, - [3073] = 3073, - [3074] = 1434, - [3075] = 3075, - [3076] = 1462, - [3077] = 3077, - [3078] = 1425, - [3079] = 3079, - [3080] = 1465, - [3081] = 3081, - [3082] = 1413, - [3083] = 3083, - [3084] = 1448, - [3085] = 2787, - [3086] = 2788, - [3087] = 2650, - [3088] = 2657, - [3089] = 2661, - [3090] = 2651, - [3091] = 2687, - [3092] = 2681, - [3093] = 2674, - [3094] = 2668, - [3095] = 2653, - [3096] = 2693, - [3097] = 2680, - [3098] = 2660, - [3099] = 3099, - [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 1417, - [3104] = 3104, - [3105] = 1441, - [3106] = 3106, - [3107] = 1396, - [3108] = 3108, - [3109] = 3109, - [3110] = 3110, - [3111] = 1445, - [3112] = 3112, - [3113] = 3113, - [3114] = 3114, - [3115] = 1478, - [3116] = 1397, - [3117] = 2655, - [3118] = 1398, - [3119] = 2650, - [3120] = 2656, - [3121] = 1446, - [3122] = 1444, - [3123] = 3123, - [3124] = 1456, - [3125] = 1439, - [3126] = 3126, - [3127] = 3127, - [3128] = 3128, - [3129] = 3129, - [3130] = 3130, - [3131] = 1377, - [3132] = 1387, - [3133] = 1429, - [3134] = 1388, - [3135] = 1389, - [3136] = 1399, - [3137] = 1480, - [3138] = 1448, - [3139] = 1428, - [3140] = 1441, - [3141] = 1411, - [3142] = 1473, - [3143] = 1469, - [3144] = 1470, - [3145] = 2684, - [3146] = 3146, - [3147] = 3147, - [3148] = 3148, - [3149] = 1459, - [3150] = 3150, - [3151] = 3151, - [3152] = 1400, - [3153] = 1401, - [3154] = 1403, - [3155] = 1483, - [3156] = 1390, - [3157] = 1406, - [3158] = 1382, - [3159] = 1468, - [3160] = 1467, - [3161] = 1435, - [3162] = 1471, - [3163] = 1436, - [3164] = 1391, - [3165] = 1456, - [3166] = 1472, - [3167] = 1446, - [3168] = 1423, - [3169] = 1412, - [3170] = 1405, - [3171] = 1385, - [3172] = 3172, - [3173] = 1447, - [3174] = 1383, - [3175] = 3175, - [3176] = 1410, - [3177] = 1474, - [3178] = 1477, - [3179] = 1449, - [3180] = 1416, - [3181] = 1407, - [3182] = 1451, - [3183] = 1452, - [3184] = 1404, - [3185] = 1475, - [3186] = 1484, - [3187] = 1430, - [3188] = 1460, - [3189] = 1488, - [3190] = 1461, - [3191] = 1463, - [3192] = 1464, - [3193] = 1427, - [3194] = 1421, - [3195] = 1490, - [3196] = 3196, - [3197] = 3197, - [3198] = 1419, - [3199] = 1418, - [3200] = 3200, - [3201] = 3201, - [3202] = 3202, - [3203] = 3203, - [3204] = 3204, - [3205] = 3205, - [3206] = 3204, - [3207] = 3207, - [3208] = 3208, - [3209] = 3209, - [3210] = 3210, - [3211] = 3211, - [3212] = 3212, - [3213] = 3213, - [3214] = 2650, - [3215] = 3215, - [3216] = 3216, - [3217] = 3207, - [3218] = 3218, - [3219] = 3219, - [3220] = 3216, - [3221] = 3215, - [3222] = 3222, - [3223] = 3202, - [3224] = 3224, - [3225] = 3213, - [3226] = 3212, - [3227] = 3227, - [3228] = 3211, - [3229] = 3210, - [3230] = 3230, - [3231] = 3231, - [3232] = 3232, - [3233] = 3233, - [3234] = 3201, - [3235] = 3235, - [3236] = 3236, - [3237] = 3237, - [3238] = 3238, - [3239] = 3239, - [3240] = 3219, - [3241] = 3241, - [3242] = 3242, - [3243] = 3235, - [3244] = 3236, - [3245] = 3245, - [3246] = 3246, - [3247] = 3246, - [3248] = 3222, - [3249] = 3245, - [3250] = 3242, - [3251] = 3237, - [3252] = 3239, - [3253] = 3241, - [3254] = 3232, - [3255] = 3233, - [3256] = 3212, - [3257] = 3210, - [3258] = 3233, - [3259] = 3213, - [3260] = 3215, - [3261] = 3205, - [3262] = 3219, - [3263] = 3203, - [3264] = 3238, - [3265] = 3218, - [3266] = 3209, - [3267] = 3208, - [3268] = 3209, - [3269] = 3208, - [3270] = 3203, - [3271] = 3222, - [3272] = 3207, - [3273] = 2118, - [3274] = 1437, - [3275] = 3241, - [3276] = 3245, - [3277] = 3202, - [3278] = 3237, - [3279] = 3200, - [3280] = 2114, - [3281] = 3231, - [3282] = 3230, - [3283] = 3224, - [3284] = 3224, - [3285] = 3204, - [3286] = 3205, - [3287] = 3201, - [3288] = 3232, - [3289] = 3236, - [3290] = 2650, - [3291] = 3227, - [3292] = 2084, - [3293] = 3216, - [3294] = 3239, - [3295] = 1476, - [3296] = 3211, - [3297] = 2082, - [3298] = 3238, - [3299] = 3246, - [3300] = 3235, - [3301] = 3242, - [3302] = 3218, - [3303] = 3209, - [3304] = 3238, - [3305] = 1458, - [3306] = 3205, - [3307] = 3203, - [3308] = 3208, - [3309] = 3309, - [3310] = 1458, - [3311] = 3218, - [3312] = 1476, - [3313] = 1455, - [3314] = 1452, - [3315] = 3309, - [3316] = 3309, - [3317] = 1455, - [3318] = 1452, - [3319] = 3224, - [3320] = 1437, - [3321] = 3238, - [3322] = 3205, - [3323] = 3203, - [3324] = 3218, - [3325] = 3224, - [3326] = 3208, - [3327] = 3209, - [3328] = 1474, - [3329] = 1410, - [3330] = 1464, - [3331] = 3209, - [3332] = 1447, - [3333] = 1449, - [3334] = 3208, - [3335] = 1455, - [3336] = 1477, - [3337] = 1476, - [3338] = 3224, - [3339] = 1483, - [3340] = 1434, - [3341] = 1480, - [3342] = 1458, - [3343] = 1416, - [3344] = 1414, - [3345] = 1451, - [3346] = 1420, - [3347] = 1460, - [3348] = 1390, - [3349] = 1473, - [3350] = 1445, - [3351] = 1418, - [3352] = 1411, - [3353] = 1468, - [3354] = 1471, - [3355] = 1452, - [3356] = 1430, - [3357] = 1492, - [3358] = 1396, - [3359] = 1454, - [3360] = 1435, - [3361] = 1441, - [3362] = 1457, - [3363] = 1472, - [3364] = 1444, - [3365] = 1405, - [3366] = 1439, - [3367] = 1412, - [3368] = 1488, - [3369] = 1433, - [3370] = 1478, - [3371] = 1423, - [3372] = 1436, - [3373] = 1437, - [3374] = 1397, - [3375] = 1461, - [3376] = 1383, - [3377] = 1385, - [3378] = 1465, - [3379] = 1428, - [3380] = 1462, - [3381] = 3203, - [3382] = 3238, - [3383] = 1391, - [3384] = 3205, - [3385] = 1475, - [3386] = 1389, - [3387] = 1453, - [3388] = 1467, - [3389] = 1403, - [3390] = 1427, - [3391] = 1401, - [3392] = 1425, - [3393] = 1421, - [3394] = 1400, - [3395] = 1446, - [3396] = 1429, - [3397] = 1398, - [3398] = 1463, - [3399] = 1484, - [3400] = 1407, - [3401] = 1456, - [3402] = 1382, - [3403] = 1419, - [3404] = 1459, - [3405] = 3218, - [3406] = 1399, - [3407] = 1377, - [3408] = 1406, - [3409] = 1490, - [3410] = 1404, - [3411] = 1413, - [3412] = 1448, - [3413] = 1388, - [3414] = 1387, - [3415] = 1470, - [3416] = 1417, - [3417] = 1469, - [3418] = 1416, - [3419] = 2651, - [3420] = 1456, - [3421] = 1446, - [3422] = 1423, - [3423] = 1412, - [3424] = 1405, - [3425] = 1390, - [3426] = 1452, - [3427] = 2684, - [3428] = 2668, - [3429] = 2656, - [3430] = 2660, - [3431] = 2680, - [3432] = 2693, - [3433] = 2653, - [3434] = 2687, - [3435] = 2651, - [3436] = 2661, - [3437] = 2655, - [3438] = 2657, - [3439] = 2684, - [3440] = 2656, - [3441] = 1435, - [3442] = 1377, - [3443] = 1436, - [3444] = 1437, - [3445] = 1447, - [3446] = 2660, - [3447] = 1449, - [3448] = 2680, - [3449] = 2693, - [3450] = 2653, - [3451] = 1455, - [3452] = 3452, - [3453] = 2687, - [3454] = 1430, - [3455] = 1477, - [3456] = 1406, - [3457] = 2661, - [3458] = 1476, - [3459] = 2655, - [3460] = 2677, - [3461] = 2657, - [3462] = 1483, - [3463] = 1414, - [3464] = 2650, - [3465] = 2650, - [3466] = 1480, - [3467] = 2681, - [3468] = 2668, - [3469] = 1453, - [3470] = 1459, - [3471] = 2674, - [3472] = 2674, - [3473] = 2681, - [3474] = 1467, - [3475] = 1458, - [3476] = 1488, - [3477] = 3452, - [3478] = 1718, - [3479] = 2677, - [3480] = 1429, - [3481] = 1417, - [3482] = 1448, - [3483] = 1404, - [3484] = 1451, - [3485] = 3485, - [3486] = 1410, - [3487] = 1383, - [3488] = 1385, - [3489] = 1391, - [3490] = 1403, - [3491] = 1401, - [3492] = 1400, - [3493] = 1399, - [3494] = 1389, - [3495] = 1388, - [3496] = 1387, - [3497] = 1398, - [3498] = 3485, - [3499] = 1411, - [3500] = 1474, - [3501] = 1418, - [3502] = 1419, - [3503] = 1421, - [3504] = 1427, - [3505] = 2082, - [3506] = 1428, - [3507] = 1439, - [3508] = 1444, - [3509] = 1457, - [3510] = 1460, - [3511] = 1461, - [3512] = 1463, - [3513] = 1464, - [3514] = 1468, - [3515] = 1476, - [3516] = 1469, - [3517] = 1470, - [3518] = 1382, - [3519] = 1471, - [3520] = 1472, - [3521] = 1490, - [3522] = 1484, - [3523] = 1475, - [3524] = 1473, - [3525] = 1397, - [3526] = 1396, - [3527] = 1434, - [3528] = 1441, - [3529] = 1420, - [3530] = 1445, - [3531] = 1492, - [3532] = 1437, - [3533] = 1407, - [3534] = 1478, - [3535] = 2084, - [3536] = 3536, - [3537] = 1465, - [3538] = 1454, - [3539] = 1462, - [3540] = 1425, - [3541] = 1413, - [3542] = 2114, - [3543] = 2118, - [3544] = 1433, - [3545] = 3545, - [3546] = 1458, - [3547] = 1457, - [3548] = 1471, - [3549] = 1452, - [3550] = 1472, - [3551] = 1490, - [3552] = 2650, - [3553] = 1488, - [3554] = 1484, - [3555] = 1475, - [3556] = 3123, - [3557] = 1473, - [3558] = 1405, - [3559] = 1412, - [3560] = 1459, - [3561] = 1423, - [3562] = 1460, - [3563] = 3563, - [3564] = 1446, - [3565] = 3565, - [3566] = 1433, - [3567] = 1459, - [3568] = 3568, - [3569] = 3569, - [3570] = 1454, - [3571] = 1461, - [3572] = 1397, - [3573] = 1463, - [3574] = 3073, - [3575] = 3083, - [3576] = 1396, - [3577] = 1434, - [3578] = 1435, - [3579] = 2850, - [3580] = 1429, - [3581] = 3581, - [3582] = 1436, - [3583] = 1420, - [3584] = 1417, - [3585] = 1414, - [3586] = 1425, - [3587] = 1445, - [3588] = 2657, - [3589] = 1464, - [3590] = 2655, - [3591] = 3172, - [3592] = 1428, - [3593] = 1468, - [3594] = 3146, - [3595] = 2661, - [3596] = 1446, - [3597] = 2651, - [3598] = 2687, - [3599] = 2681, - [3600] = 1406, - [3601] = 1744, - [3602] = 2677, - [3603] = 1439, - [3604] = 1469, - [3605] = 1470, - [3606] = 1423, - [3607] = 1382, - [3608] = 1416, - [3609] = 2668, - [3610] = 1412, - [3611] = 1430, - [3612] = 1405, - [3613] = 2653, - [3614] = 1437, - [3615] = 1456, - [3616] = 1444, - [3617] = 1407, - [3618] = 2693, - [3619] = 2680, - [3620] = 2660, - [3621] = 1447, - [3622] = 1427, - [3623] = 1421, - [3624] = 1419, - [3625] = 1449, - [3626] = 1418, - [3627] = 1455, - [3628] = 2852, - [3629] = 3629, - [3630] = 1488, - [3631] = 1452, - [3632] = 1414, - [3633] = 1411, - [3634] = 3634, - [3635] = 3635, - [3636] = 1398, - [3637] = 2656, - [3638] = 1387, - [3639] = 1455, - [3640] = 1388, - [3641] = 1389, - [3642] = 1477, - [3643] = 1476, - [3644] = 1399, - [3645] = 1483, - [3646] = 1456, - [3647] = 1400, - [3648] = 2674, - [3649] = 1401, - [3650] = 1403, - [3651] = 1406, - [3652] = 1480, - [3653] = 1391, - [3654] = 2656, - [3655] = 1385, - [3656] = 1383, - [3657] = 3197, - [3658] = 2693, - [3659] = 1410, - [3660] = 1416, - [3661] = 3661, - [3662] = 1465, - [3663] = 3663, - [3664] = 1430, - [3665] = 2684, - [3666] = 2680, - [3667] = 3667, - [3668] = 3668, - [3669] = 2650, - [3670] = 3670, - [3671] = 3671, - [3672] = 3629, - [3673] = 1404, - [3674] = 3674, - [3675] = 1417, - [3676] = 1448, - [3677] = 1492, - [3678] = 1462, - [3679] = 1467, - [3680] = 1474, - [3681] = 1429, - [3682] = 3682, - [3683] = 3683, - [3684] = 3684, - [3685] = 3685, - [3686] = 1458, - [3687] = 3687, - [3688] = 3688, - [3689] = 3689, - [3690] = 3690, - [3691] = 1752, - [3692] = 3692, - [3693] = 3693, - [3694] = 2684, - [3695] = 3695, - [3696] = 2677, - [3697] = 2657, - [3698] = 3698, - [3699] = 2655, - [3700] = 3700, - [3701] = 3701, - [3702] = 1453, - [3703] = 3703, - [3704] = 2653, - [3705] = 1435, - [3706] = 2661, - [3707] = 1436, - [3708] = 2651, - [3709] = 1441, - [3710] = 1447, - [3711] = 1478, - [3712] = 3674, - [3713] = 3713, - [3714] = 1449, - [3715] = 3102, - [3716] = 1465, - [3717] = 1737, - [3718] = 1483, - [3719] = 1377, - [3720] = 2681, - [3721] = 1451, - [3722] = 2674, - [3723] = 3723, - [3724] = 3724, - [3725] = 1413, - [3726] = 3726, - [3727] = 2687, - [3728] = 1451, - [3729] = 1441, - [3730] = 1462, - [3731] = 1453, - [3732] = 1425, - [3733] = 2668, - [3734] = 3734, - [3735] = 1413, - [3736] = 3736, - [3737] = 1478, - [3738] = 1477, - [3739] = 1474, - [3740] = 3740, - [3741] = 3741, - [3742] = 1390, - [3743] = 1671, - [3744] = 1480, - [3745] = 3745, - [3746] = 2660, - [3747] = 1671, - [3748] = 2650, - [3749] = 3749, - [3750] = 3536, - [3751] = 3749, - [3752] = 3749, - [3753] = 3753, - [3754] = 3749, - [3755] = 1671, - [3756] = 1718, - [3757] = 3753, - [3758] = 3749, - [3759] = 3749, - [3760] = 1437, - [3761] = 1476, - [3762] = 3545, - [3763] = 3692, - [3764] = 1446, - [3765] = 1451, - [3766] = 3766, - [3767] = 3767, - [3768] = 3768, - [3769] = 3102, - [3770] = 2650, - [3771] = 3146, - [3772] = 3172, - [3773] = 3773, - [3774] = 1458, - [3775] = 3723, - [3776] = 3776, - [3777] = 3766, - [3778] = 3766, - [3779] = 3634, - [3780] = 3780, - [3781] = 3773, - [3782] = 2850, - [3783] = 3740, - [3784] = 3766, - [3785] = 3581, - [3786] = 1744, - [3787] = 1423, - [3788] = 3773, - [3789] = 3635, - [3790] = 3790, - [3791] = 3780, - [3792] = 3569, - [3793] = 1405, - [3794] = 1456, - [3795] = 3123, - [3796] = 3568, - [3797] = 3565, - [3798] = 3197, - [3799] = 3563, - [3800] = 3768, - [3801] = 3801, - [3802] = 3661, - [3803] = 3803, - [3804] = 3663, - [3805] = 1480, - [3806] = 1452, - [3807] = 3745, - [3808] = 3668, - [3809] = 3073, - [3810] = 3741, - [3811] = 3695, - [3812] = 3790, - [3813] = 1483, - [3814] = 3083, - [3815] = 2852, - [3816] = 3816, - [3817] = 3734, - [3818] = 3683, - [3819] = 3667, - [3820] = 3670, - [3821] = 3671, - [3822] = 3726, - [3823] = 1737, - [3824] = 1477, - [3825] = 1412, - [3826] = 1752, - [3827] = 3803, - [3828] = 3684, - [3829] = 3682, - [3830] = 3688, - [3831] = 3780, - [3832] = 3790, - [3833] = 3693, - [3834] = 3685, - [3835] = 3687, - [3836] = 3768, - [3837] = 3701, - [3838] = 3703, - [3839] = 3689, - [3840] = 3713, - [3841] = 3724, - [3842] = 3690, - [3843] = 3776, - [3844] = 1441, - [3845] = 1455, - [3846] = 3803, - [3847] = 1449, - [3848] = 3768, - [3849] = 3816, - [3850] = 1447, - [3851] = 3773, - [3852] = 3766, - [3853] = 3768, - [3854] = 3776, - [3855] = 1413, - [3856] = 3768, - [3857] = 1425, - [3858] = 3773, - [3859] = 3773, - [3860] = 3780, - [3861] = 1436, - [3862] = 3700, - [3863] = 1462, - [3864] = 3698, - [3865] = 3766, - [3866] = 3801, - [3867] = 3801, - [3868] = 1465, - [3869] = 1435, - [3870] = 1478, - [3871] = 3736, - [3872] = 1474, - [3873] = 3208, - [3874] = 3209, - [3875] = 3875, - [3876] = 3876, - [3877] = 3877, - [3878] = 3875, - [3879] = 3875, - [3880] = 3877, - [3881] = 3876, - [3882] = 3882, - [3883] = 3875, - [3884] = 3224, - [3885] = 3875, - [3886] = 3224, - [3887] = 3218, - [3888] = 3876, - [3889] = 3203, - [3890] = 3890, - [3891] = 3238, - [3892] = 3875, - [3893] = 3238, - [3894] = 3203, - [3895] = 3895, - [3896] = 3876, - [3897] = 3877, - [3898] = 3218, - [3899] = 3205, - [3900] = 3208, - [3901] = 3877, - [3902] = 3877, - [3903] = 3876, - [3904] = 3209, - [3905] = 3905, - [3906] = 3877, - [3907] = 3907, - [3908] = 3205, - [3909] = 3876, - [3910] = 1468, - [3911] = 1492, - [3912] = 2681, - [3913] = 1447, - [3914] = 1449, - [3915] = 1451, - [3916] = 3916, - [3917] = 3917, - [3918] = 1382, - [3919] = 1470, - [3920] = 1469, - [3921] = 1477, - [3922] = 1474, - [3923] = 1413, - [3924] = 1425, - [3925] = 1483, - [3926] = 1462, - [3927] = 1465, - [3928] = 1478, - [3929] = 1435, - [3930] = 1441, - [3931] = 1480, - [3932] = 2785, - [3933] = 3224, - [3934] = 1377, - [3935] = 3935, - [3936] = 3205, - [3937] = 1417, - [3938] = 1468, - [3939] = 1464, - [3940] = 1463, - [3941] = 1474, - [3942] = 3942, - [3943] = 1451, - [3944] = 1405, - [3945] = 1412, - [3946] = 1423, - [3947] = 1446, - [3948] = 1480, - [3949] = 3949, - [3950] = 1483, - [3951] = 3205, - [3952] = 1477, - [3953] = 1461, - [3954] = 1456, - [3955] = 1488, - [3956] = 3956, - [3957] = 1449, - [3958] = 1447, - [3959] = 1436, - [3960] = 1435, - [3961] = 1436, - [3962] = 2668, - [3963] = 3963, - [3964] = 3964, - [3965] = 1460, - [3966] = 1457, - [3967] = 2677, - [3968] = 2684, - [3969] = 1444, - [3970] = 1439, - [3971] = 2656, - [3972] = 2660, - [3973] = 1428, - [3974] = 1427, - [3975] = 2680, - [3976] = 1421, - [3977] = 2693, - [3978] = 1458, - [3979] = 2653, - [3980] = 1419, - [3981] = 2687, - [3982] = 2651, - [3983] = 3983, - [3984] = 1476, - [3985] = 1454, - [3986] = 3986, - [3987] = 1429, - [3988] = 2661, - [3989] = 1418, - [3990] = 2655, - [3991] = 1455, - [3992] = 1452, - [3993] = 2657, - [3994] = 1411, - [3995] = 1437, - [3996] = 1398, - [3997] = 1490, - [3998] = 1387, - [3999] = 1388, - [4000] = 1456, - [4001] = 1413, - [4002] = 1389, - [4003] = 1471, - [4004] = 1492, - [4005] = 4005, - [4006] = 1448, - [4007] = 1399, - [4008] = 2650, - [4009] = 3224, - [4010] = 1453, - [4011] = 4011, - [4012] = 1400, - [4013] = 1433, - [4014] = 1401, - [4015] = 4015, - [4016] = 1403, - [4017] = 1475, - [4018] = 1391, - [4019] = 1385, - [4020] = 1383, - [4021] = 1410, - [4022] = 1473, - [4023] = 4023, - [4024] = 1472, - [4025] = 1397, - [4026] = 1396, - [4027] = 1467, - [4028] = 1434, - [4029] = 1404, - [4030] = 1448, - [4031] = 1420, - [4032] = 1445, - [4033] = 1390, - [4034] = 1407, - [4035] = 4035, - [4036] = 1430, - [4037] = 1430, - [4038] = 1416, - [4039] = 1406, - [4040] = 1414, - [4041] = 1390, - [4042] = 1453, - [4043] = 1459, - [4044] = 1467, - [4045] = 1416, - [4046] = 1488, - [4047] = 1377, - [4048] = 1441, - [4049] = 1429, - [4050] = 1417, - [4051] = 1404, - [4052] = 1406, - [4053] = 1425, - [4054] = 1484, - [4055] = 3634, - [4056] = 4056, - [4057] = 1410, - [4058] = 1383, - [4059] = 1385, - [4060] = 1391, - [4061] = 1403, - [4062] = 1401, - [4063] = 1400, - [4064] = 1399, - [4065] = 1389, - [4066] = 1388, - [4067] = 1387, - [4068] = 1398, - [4069] = 1411, - [4070] = 1418, - [4071] = 1419, - [4072] = 1405, - [4073] = 1412, - [4074] = 1478, - [4075] = 2674, - [4076] = 1423, - [4077] = 1421, - [4078] = 1427, - [4079] = 1428, - [4080] = 1439, - [4081] = 1444, - [4082] = 1446, - [4083] = 1457, - [4084] = 1460, - [4085] = 1414, - [4086] = 1461, - [4087] = 1463, - [4088] = 1464, - [4089] = 1469, - [4090] = 1470, - [4091] = 1382, - [4092] = 1459, - [4093] = 1465, - [4094] = 1471, - [4095] = 1472, - [4096] = 1490, - [4097] = 4056, - [4098] = 1484, - [4099] = 1475, - [4100] = 1473, - [4101] = 2786, - [4102] = 1397, - [4103] = 1396, - [4104] = 1462, - [4105] = 1434, - [4106] = 1420, - [4107] = 1445, - [4108] = 2788, - [4109] = 2787, - [4110] = 1407, - [4111] = 2693, - [4112] = 2680, - [4113] = 2660, - [4114] = 2653, - [4115] = 2684, - [4116] = 2650, - [4117] = 3682, - [4118] = 2687, - [4119] = 3935, - [4120] = 2651, - [4121] = 3942, - [4122] = 3670, - [4123] = 2657, - [4124] = 3667, - [4125] = 2655, - [4126] = 3916, - [4127] = 2677, - [4128] = 3536, - [4129] = 3581, - [4130] = 2661, - [4131] = 2661, - [4132] = 2655, - [4133] = 2651, - [4134] = 2657, - [4135] = 2687, - [4136] = 2653, - [4137] = 2693, - [4138] = 2680, - [4139] = 2660, - [4140] = 2677, - [4141] = 2681, - [4142] = 2674, - [4143] = 4143, - [4144] = 2668, - [4145] = 3661, - [4146] = 4146, - [4147] = 2656, - [4148] = 2650, - [4149] = 4015, - [4150] = 4150, - [4151] = 4023, - [4152] = 2681, - [4153] = 2684, - [4154] = 2674, - [4155] = 2668, - [4156] = 4156, - [4157] = 2656, - [4158] = 1478, - [4159] = 1671, - [4160] = 4160, - [4161] = 4161, - [4162] = 4162, - [4163] = 3663, - [4164] = 3700, - [4165] = 3698, - [4166] = 3695, - [4167] = 3692, - [4168] = 1405, - [4169] = 3545, - [4170] = 4160, - [4171] = 3736, - [4172] = 3740, - [4173] = 1413, - [4174] = 4174, - [4175] = 3690, - [4176] = 3689, - [4177] = 3687, - [4178] = 3685, - [4179] = 4162, - [4180] = 3146, - [4181] = 3172, - [4182] = 4160, - [4183] = 1480, - [4184] = 2650, - [4185] = 4162, - [4186] = 4160, - [4187] = 3671, - [4188] = 3635, - [4189] = 3688, - [4190] = 3684, - [4191] = 4174, - [4192] = 3726, - [4193] = 4162, - [4194] = 3734, - [4195] = 3741, - [4196] = 3668, - [4197] = 3123, - [4198] = 1425, - [4199] = 3713, - [4200] = 1465, - [4201] = 3563, - [4202] = 3745, - [4203] = 3565, - [4204] = 3197, - [4205] = 3568, - [4206] = 4160, - [4207] = 3569, - [4208] = 1462, - [4209] = 1462, - [4210] = 3724, - [4211] = 4160, - [4212] = 4162, - [4213] = 1446, - [4214] = 3693, - [4215] = 3683, - [4216] = 3701, - [4217] = 4174, - [4218] = 1435, - [4219] = 1465, - [4220] = 3102, - [4221] = 1436, - [4222] = 1441, - [4223] = 3723, - [4224] = 1447, - [4225] = 1449, - [4226] = 1451, - [4227] = 3703, - [4228] = 1718, - [4229] = 4160, - [4230] = 1456, - [4231] = 2850, - [4232] = 3073, - [4233] = 1425, - [4234] = 3083, - [4235] = 1423, - [4236] = 2852, - [4237] = 1441, - [4238] = 4174, - [4239] = 1413, - [4240] = 1412, - [4241] = 1477, - [4242] = 1478, - [4243] = 1483, - [4244] = 1474, - [4245] = 4245, - [4246] = 2653, - [4247] = 4247, - [4248] = 3237, - [4249] = 4249, - [4250] = 4250, - [4251] = 2657, - [4252] = 4252, - [4253] = 4253, - [4254] = 4254, - [4255] = 4255, - [4256] = 2118, - [4257] = 2114, - [4258] = 4253, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 3233, - [4263] = 3231, - [4264] = 4264, - [4265] = 4250, - [4266] = 4266, - [4267] = 4259, - [4268] = 2655, - [4269] = 2650, - [4270] = 4270, - [4271] = 2661, - [4272] = 4272, - [4273] = 2651, - [4274] = 4252, - [4275] = 2687, - [4276] = 2084, - [4277] = 4277, - [4278] = 4259, - [4279] = 2653, - [4280] = 2693, - [4281] = 1737, - [4282] = 4259, - [4283] = 4272, - [4284] = 4250, - [4285] = 2680, - [4286] = 4286, - [4287] = 2660, - [4288] = 4288, - [4289] = 3246, - [4290] = 3232, - [4291] = 1476, - [4292] = 3245, - [4293] = 3242, - [4294] = 4249, - [4295] = 4295, - [4296] = 4286, - [4297] = 3241, - [4298] = 4250, - [4299] = 2650, - [4300] = 4252, - [4301] = 4259, - [4302] = 3239, - [4303] = 4303, - [4304] = 4304, - [4305] = 4253, - [4306] = 4306, - [4307] = 2656, - [4308] = 3236, - [4309] = 4259, - [4310] = 3235, - [4311] = 3201, - [4312] = 4277, - [4313] = 4295, - [4314] = 4250, - [4315] = 4315, - [4316] = 3200, - [4317] = 4317, - [4318] = 4259, - [4319] = 4319, - [4320] = 3202, - [4321] = 4259, - [4322] = 4254, - [4323] = 4250, - [4324] = 4324, - [4325] = 3230, - [4326] = 2082, - [4327] = 1752, - [4328] = 4253, - [4329] = 4252, - [4330] = 2684, - [4331] = 4331, - [4332] = 4332, - [4333] = 3222, - [4334] = 4249, - [4335] = 4249, - [4336] = 4336, - [4337] = 4250, - [4338] = 4303, - [4339] = 4272, - [4340] = 3211, - [4341] = 3204, - [4342] = 3219, - [4343] = 2650, - [4344] = 4255, - [4345] = 4250, - [4346] = 4249, - [4347] = 2668, - [4348] = 4348, - [4349] = 4250, - [4350] = 2674, - [4351] = 4303, - [4352] = 4352, - [4353] = 2681, - [4354] = 4254, - [4355] = 2677, - [4356] = 4259, - [4357] = 4286, - [4358] = 4270, - [4359] = 2684, - [4360] = 2656, - [4361] = 4270, - [4362] = 3216, - [4363] = 2660, - [4364] = 4317, - [4365] = 4259, - [4366] = 4259, - [4367] = 4319, - [4368] = 4319, - [4369] = 4317, - [4370] = 4250, - [4371] = 2680, - [4372] = 2693, - [4373] = 4259, - [4374] = 4259, - [4375] = 4250, - [4376] = 4249, - [4377] = 4249, - [4378] = 4286, - [4379] = 4303, - [4380] = 4272, - [4381] = 4381, - [4382] = 3210, - [4383] = 4254, - [4384] = 3227, - [4385] = 4272, - [4386] = 4270, - [4387] = 4259, - [4388] = 4250, - [4389] = 4319, - [4390] = 4317, - [4391] = 4250, - [4392] = 4254, - [4393] = 4249, - [4394] = 4270, - [4395] = 4250, - [4396] = 4250, - [4397] = 4259, - [4398] = 4295, - [4399] = 3212, - [4400] = 3213, - [4401] = 3215, - [4402] = 4255, - [4403] = 3207, - [4404] = 4259, - [4405] = 4405, - [4406] = 4259, - [4407] = 1437, - [4408] = 4408, - [4409] = 2677, - [4410] = 1744, - [4411] = 4250, - [4412] = 4250, - [4413] = 2657, - [4414] = 2655, - [4415] = 2661, - [4416] = 2651, - [4417] = 2687, - [4418] = 2681, - [4419] = 2674, - [4420] = 2668, - [4421] = 2656, - [4422] = 2851, - [4423] = 4423, - [4424] = 1458, - [4425] = 2677, - [4426] = 4423, - [4427] = 4423, - [4428] = 1474, - [4429] = 4429, - [4430] = 4430, - [4431] = 4430, - [4432] = 4423, - [4433] = 4430, - [4434] = 4423, - [4435] = 2681, - [4436] = 4423, - [4437] = 2687, - [4438] = 1477, - [4439] = 4430, - [4440] = 4423, - [4441] = 4430, - [4442] = 4442, - [4443] = 4443, - [4444] = 4423, - [4445] = 2668, - [4446] = 4430, - [4447] = 4423, - [4448] = 4423, - [4449] = 4430, - [4450] = 4430, - [4451] = 4451, - [4452] = 1452, - [4453] = 1480, - [4454] = 1435, - [4455] = 4423, - [4456] = 4430, - [4457] = 2657, - [4458] = 1436, - [4459] = 4451, - [4460] = 2651, - [4461] = 4461, - [4462] = 2852, - [4463] = 4430, - [4464] = 2674, - [4465] = 1447, - [4466] = 4423, - [4467] = 4430, - [4468] = 4468, - [4469] = 4423, - [4470] = 2650, - [4471] = 1455, - [4472] = 2850, - [4473] = 1449, - [4474] = 1483, - [4475] = 4430, - [4476] = 4423, - [4477] = 2653, - [4478] = 4430, - [4479] = 4430, - [4480] = 4430, - [4481] = 4423, - [4482] = 4430, - [4483] = 4430, - [4484] = 4423, - [4485] = 2661, - [4486] = 2684, - [4487] = 4423, - [4488] = 1451, - [4489] = 2655, - [4490] = 2693, - [4491] = 4491, - [4492] = 2680, - [4493] = 2660, - [4494] = 3127, - [4495] = 2649, - [4496] = 3126, - [4497] = 1446, - [4498] = 3196, - [4499] = 3218, - [4500] = 1413, - [4501] = 4501, - [4502] = 4502, - [4503] = 4503, - [4504] = 3205, - [4505] = 4505, - [4506] = 4506, - [4507] = 2648, - [4508] = 3238, - [4509] = 1492, - [4510] = 3203, - [4511] = 3055, - [4512] = 3197, - [4513] = 3175, - [4514] = 3056, - [4515] = 1478, - [4516] = 3058, - [4517] = 1448, - [4518] = 3059, - [4519] = 3208, - [4520] = 3209, - [4521] = 3060, - [4522] = 2647, - [4523] = 3099, - [4524] = 3151, - [4525] = 4525, - [4526] = 3147, - [4527] = 3100, - [4528] = 3146, - [4529] = 4529, - [4530] = 4530, - [4531] = 2650, - [4532] = 3123, - [4533] = 3108, - [4534] = 4525, - [4535] = 1405, - [4536] = 3069, - [4537] = 1462, - [4538] = 3075, - [4539] = 3077, - [4540] = 1412, - [4541] = 4541, - [4542] = 3079, - [4543] = 3081, - [4544] = 4544, - [4545] = 1456, - [4546] = 4546, - [4547] = 4547, - [4548] = 1425, - [4549] = 3224, - [4550] = 3172, - [4551] = 3148, - [4552] = 3101, - [4553] = 3104, - [4554] = 2650, - [4555] = 3106, - [4556] = 3130, - [4557] = 3895, - [4558] = 1441, - [4559] = 4559, - [4560] = 3128, - [4561] = 1423, - [4562] = 3073, - [4563] = 3083, - [4564] = 4564, - [4565] = 3150, - [4566] = 1465, - [4567] = 3129, - [4568] = 3102, - [4569] = 3114, - [4570] = 3113, - [4571] = 3112, - [4572] = 3110, - [4573] = 3109, - [4574] = 4574, - [4575] = 1425, - [4576] = 1413, - [4577] = 4577, - [4578] = 3205, - [4579] = 3205, - [4580] = 4580, - [4581] = 4581, - [4582] = 3102, - [4583] = 4583, - [4584] = 1462, - [4585] = 3083, - [4586] = 4586, - [4587] = 4587, - [4588] = 4588, - [4589] = 4589, - [4590] = 3208, - [4591] = 4591, - [4592] = 4592, - [4593] = 4593, - [4594] = 4594, - [4595] = 4595, - [4596] = 3209, - [4597] = 3224, - [4598] = 3218, - [4599] = 4599, - [4600] = 4600, - [4601] = 3224, - [4602] = 4602, - [4603] = 4603, - [4604] = 4604, - [4605] = 4605, - [4606] = 4606, - [4607] = 2665, - [4608] = 4608, - [4609] = 3238, - [4610] = 1465, - [4611] = 3203, - [4612] = 4612, - [4613] = 4613, - [4614] = 4614, - [4615] = 1478, - [4616] = 4616, - [4617] = 4617, - [4618] = 4618, - [4619] = 4619, - [4620] = 4620, - [4621] = 1441, - [4622] = 4622, - [4623] = 4623, - [4624] = 4624, - [4625] = 4625, - [4626] = 4626, - [4627] = 4618, - [4628] = 4628, - [4629] = 4588, - [4630] = 1462, - [4631] = 4626, - [4632] = 4617, - [4633] = 4577, - [4634] = 1413, - [4635] = 4619, - [4636] = 4429, - [4637] = 1465, - [4638] = 1425, - [4639] = 4614, - [4640] = 4640, - [4641] = 4612, - [4642] = 4592, - [4643] = 4608, - [4644] = 4613, - [4645] = 4348, - [4646] = 4005, - [4647] = 4616, - [4648] = 4599, - [4649] = 1478, - [4650] = 1441, - [4651] = 4603, - [4652] = 4429, - [4653] = 4653, - [4654] = 4306, - [4655] = 4623, - [4656] = 3102, - [4657] = 4593, - [4658] = 4583, - [4659] = 4595, - [4660] = 4625, - [4661] = 4606, - [4662] = 4662, - [4663] = 4530, - [4664] = 4620, - [4665] = 4665, - [4666] = 4666, - [4667] = 3895, - [4668] = 4594, - [4669] = 4669, - [4670] = 4670, - [4671] = 4671, - [4672] = 4672, - [4673] = 3218, - [4674] = 4674, - [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 3895, - [4679] = 4679, - [4680] = 4679, - [4681] = 3205, - [4682] = 4682, - [4683] = 4683, - [4684] = 4684, - [4685] = 3209, - [4686] = 4686, - [4687] = 3208, - [4688] = 3224, - [4689] = 4679, - [4690] = 3205, - [4691] = 3209, - [4692] = 3208, - [4693] = 3224, - [4694] = 4683, - [4695] = 4676, - [4696] = 4682, - [4697] = 3203, - [4698] = 3238, - [4699] = 4682, - [4700] = 4505, - [4701] = 4506, - [4702] = 4530, - [4703] = 4703, - [4704] = 3203, - [4705] = 3218, - [4706] = 3238, - [4707] = 4682, - [4708] = 4679, - [4709] = 4682, - [4710] = 4683, - [4711] = 4683, - [4712] = 4712, - [4713] = 4713, - [4714] = 4683, - [4715] = 4715, - [4716] = 4679, - [4717] = 4717, - [4718] = 4718, - [4719] = 4719, - [4720] = 4717, - [4721] = 4721, - [4722] = 4722, - [4723] = 4723, - [4724] = 4724, - [4725] = 4724, - [4726] = 4726, - [4727] = 4727, - [4728] = 4728, - [4729] = 4612, - [4730] = 4730, - [4731] = 4731, - [4732] = 4732, - [4733] = 4733, - [4734] = 4592, - [4735] = 4730, - [4736] = 4736, - [4737] = 4608, - [4738] = 4738, - [4739] = 4613, - [4740] = 4740, - [4741] = 4741, - [4742] = 4742, - [4743] = 4743, - [4744] = 3224, - [4745] = 4745, - [4746] = 4741, - [4747] = 4747, - [4748] = 1413, - [4749] = 4749, - [4750] = 4623, - [4751] = 4599, - [4752] = 4752, - [4753] = 4603, - [4754] = 4754, - [4755] = 4719, - [4756] = 4756, - [4757] = 4740, - [4758] = 4758, - [4759] = 4759, - [4760] = 4618, - [4761] = 4747, - [4762] = 4726, - [4763] = 4617, - [4764] = 4754, - [4765] = 4741, - [4766] = 4747, - [4767] = 4595, - [4768] = 1425, - [4769] = 4759, - [4770] = 4625, - [4771] = 4771, - [4772] = 4772, - [4773] = 4606, - [4774] = 4774, - [4775] = 4726, - [4776] = 4727, - [4777] = 4774, - [4778] = 4772, - [4779] = 4728, - [4780] = 4780, - [4781] = 4771, - [4782] = 4749, - [4783] = 4771, - [4784] = 4732, - [4785] = 4759, - [4786] = 4738, - [4787] = 4756, - [4788] = 4721, - [4789] = 4719, - [4790] = 4758, - [4791] = 4791, - [4792] = 4772, - [4793] = 4742, - [4794] = 3083, - [4795] = 4774, - [4796] = 4743, - [4797] = 4791, - [4798] = 4731, - [4799] = 4743, - [4800] = 4620, - [4801] = 1462, - [4802] = 4745, - [4803] = 4741, - [4804] = 4804, - [4805] = 4731, - [4806] = 4348, - [4807] = 3205, - [4808] = 4747, - [4809] = 4791, - [4810] = 4810, - [4811] = 4740, - [4812] = 4306, - [4813] = 4717, - [4814] = 4745, - [4815] = 4742, - [4816] = 4614, - [4817] = 1465, - [4818] = 4791, - [4819] = 4619, - [4820] = 4731, - [4821] = 4758, - [4822] = 4577, - [4823] = 4724, - [4824] = 4745, - [4825] = 4791, - [4826] = 4749, - [4827] = 4738, - [4828] = 4736, - [4829] = 4728, - [4830] = 4743, - [4831] = 4730, - [4832] = 4752, - [4833] = 4747, - [4834] = 4626, - [4835] = 4732, - [4836] = 4588, - [4837] = 4727, - [4838] = 4593, - [4839] = 4743, - [4840] = 4616, - [4841] = 3200, - [4842] = 4842, - [4843] = 4758, - [4844] = 4743, - [4845] = 4730, - [4846] = 4752, - [4847] = 3231, - [4848] = 4745, - [4849] = 4736, - [4850] = 3230, - [4851] = 1478, - [4852] = 4754, - [4853] = 4853, - [4854] = 4854, - [4855] = 4749, - [4856] = 4583, - [4857] = 4732, - [4858] = 4732, - [4859] = 3102, - [4860] = 4730, - [4861] = 4758, - [4862] = 3227, - [4863] = 4756, - [4864] = 4594, - [4865] = 4865, - [4866] = 4752, - [4867] = 4749, - [4868] = 4868, - [4869] = 4721, - [4870] = 4722, - [4871] = 4747, - [4872] = 4723, - [4873] = 4741, - [4874] = 4752, - [4875] = 3083, - [4876] = 4736, - [4877] = 1441, - [4878] = 4736, - [4879] = 4879, - [4880] = 4722, - [4881] = 4731, - [4882] = 4723, - [4883] = 4730, - [4884] = 4653, - [4885] = 4662, - [4886] = 4886, - [4887] = 4887, - [4888] = 1456, - [4889] = 4662, - [4890] = 4890, - [4891] = 4891, - [4892] = 4892, - [4893] = 4893, - [4894] = 4669, - [4895] = 1412, - [4896] = 4896, - [4897] = 4665, - [4898] = 4898, - [4899] = 1405, - [4900] = 4900, - [4901] = 4653, - [4902] = 4902, - [4903] = 4903, - [4904] = 1423, - [4905] = 4905, - [4906] = 4665, - [4907] = 4907, - [4908] = 4908, - [4909] = 4909, - [4910] = 4910, - [4911] = 4911, - [4912] = 4666, - [4913] = 4666, - [4914] = 4628, - [4915] = 2647, - [4916] = 4916, - [4917] = 4628, - [4918] = 4918, - [4919] = 1446, - [4920] = 4920, - [4921] = 4921, - [4922] = 2648, - [4923] = 4923, - [4924] = 4669, - [4925] = 2649, - [4926] = 4926, - [4927] = 4927, - [4928] = 4928, - [4929] = 4929, - [4930] = 4930, - [4931] = 4931, - [4932] = 4932, - [4933] = 4933, - [4934] = 3895, - [4935] = 4935, - [4936] = 4936, - [4937] = 4676, - [4938] = 4676, - [4939] = 4675, - [4940] = 4940, - [4941] = 2665, - [4942] = 4942, - [4943] = 4943, - [4944] = 4944, - [4945] = 4945, - [4946] = 4713, - [4947] = 4947, - [4948] = 4948, - [4949] = 4672, - [4950] = 4950, - [4951] = 4951, - [4952] = 4952, - [4953] = 4429, - [4954] = 4675, - [4955] = 4955, - [4956] = 4686, - [4957] = 4670, - [4958] = 4958, - [4959] = 4959, - [4960] = 4960, - [4961] = 4961, - [4962] = 4962, - [4963] = 4960, - [4964] = 4964, - [4965] = 4965, - [4966] = 4965, - [4967] = 4965, - [4968] = 4968, - [4969] = 4961, - [4970] = 4970, - [4971] = 4958, - [4972] = 4972, - [4973] = 4973, - [4974] = 4974, - [4975] = 4918, - [4976] = 4965, - [4977] = 4977, - [4978] = 4962, - [4979] = 4979, - [4980] = 4964, - [4981] = 4005, - [4982] = 4982, - [4983] = 4865, - [4984] = 4984, - [4985] = 4985, - [4986] = 4962, - [4987] = 4780, - [4988] = 4962, - [4989] = 4965, - [4990] = 4974, - [4991] = 4973, - [4992] = 4972, - [4993] = 4993, - [4994] = 4994, - [4995] = 4958, - [4996] = 4962, - [4997] = 4958, - [4998] = 4965, - [4999] = 4972, - [5000] = 4965, - [5001] = 4962, - [5002] = 4973, - [5003] = 4965, - [5004] = 4965, - [5005] = 4965, - [5006] = 4974, - [5007] = 4965, - [5008] = 4965, - [5009] = 4965, - [5010] = 4965, - [5011] = 4965, - [5012] = 5012, - [5013] = 4962, - [5014] = 4974, - [5015] = 5015, - [5016] = 5016, - [5017] = 5017, - [5018] = 4960, - [5019] = 4964, - [5020] = 5020, - [5021] = 4961, - [5022] = 4973, - [5023] = 4972, - [5024] = 4973, - [5025] = 4974, - [5026] = 5026, - [5027] = 4960, - [5028] = 5028, - [5029] = 4972, - [5030] = 4958, - [5031] = 5031, - [5032] = 5032, - [5033] = 5033, - [5034] = 5034, - [5035] = 5035, - [5036] = 5036, - [5037] = 5037, - [5038] = 5038, - [5039] = 4960, - [5040] = 4961, - [5041] = 4964, - [5042] = 4865, - [5043] = 4964, - [5044] = 4961, - [5045] = 4965, - [5046] = 5046, - [5047] = 5047, - [5048] = 5048, - [5049] = 4965, - [5050] = 4965, - [5051] = 4606, - [5052] = 4892, - [5053] = 4594, - [5054] = 5054, - [5055] = 4921, - [5056] = 5056, - [5057] = 5057, - [5058] = 4893, - [5059] = 5059, - [5060] = 4653, - [5061] = 4593, - [5062] = 4588, - [5063] = 4626, - [5064] = 4892, - [5065] = 5065, - [5066] = 4617, - [5067] = 5067, - [5068] = 4577, - [5069] = 4903, - [5070] = 5070, - [5071] = 4619, - [5072] = 4614, - [5073] = 4890, - [5074] = 4909, - [5075] = 4612, - [5076] = 5076, - [5077] = 4908, - [5078] = 4916, - [5079] = 4306, - [5080] = 4592, - [5081] = 4608, - [5082] = 4613, - [5083] = 4900, - [5084] = 5084, - [5085] = 4920, - [5086] = 4662, - [5087] = 4623, - [5088] = 5088, - [5089] = 5089, - [5090] = 4907, - [5091] = 4902, - [5092] = 1441, - [5093] = 5093, - [5094] = 4896, - [5095] = 5095, - [5096] = 5096, - [5097] = 1413, - [5098] = 5098, - [5099] = 5099, - [5100] = 1425, - [5101] = 4599, - [5102] = 3102, - [5103] = 1462, - [5104] = 4603, - [5105] = 1465, - [5106] = 1478, - [5107] = 4618, - [5108] = 4665, - [5109] = 1478, - [5110] = 5110, - [5111] = 4666, - [5112] = 1492, - [5113] = 4583, - [5114] = 1413, - [5115] = 4595, - [5116] = 1425, - [5117] = 1462, - [5118] = 4348, - [5119] = 4625, - [5120] = 1465, - [5121] = 4628, - [5122] = 5122, - [5123] = 4669, - [5124] = 4620, - [5125] = 1476, - [5126] = 4886, - [5127] = 5127, - [5128] = 5128, - [5129] = 4921, - [5130] = 5130, - [5131] = 4506, - [5132] = 3102, - [5133] = 4505, - [5134] = 5134, - [5135] = 3083, - [5136] = 4896, - [5137] = 4886, - [5138] = 1437, - [5139] = 1441, - [5140] = 4890, - [5141] = 4893, - [5142] = 5142, - [5143] = 5143, - [5144] = 3083, - [5145] = 2648, - [5146] = 5143, - [5147] = 2649, - [5148] = 4616, - [5149] = 5149, - [5150] = 2647, - [5151] = 5151, - [5152] = 4982, - [5153] = 5153, - [5154] = 5143, - [5155] = 5155, - [5156] = 5143, - [5157] = 5157, - [5158] = 5158, - [5159] = 5159, - [5160] = 5160, - [5161] = 5161, - [5162] = 5162, - [5163] = 5163, - [5164] = 5164, - [5165] = 5165, - [5166] = 5166, - [5167] = 5167, - [5168] = 1455, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 5172, - [5173] = 5173, - [5174] = 1458, - [5175] = 5143, - [5176] = 5176, - [5177] = 5177, - [5178] = 5178, - [5179] = 5179, - [5180] = 5180, - [5181] = 4943, - [5182] = 5143, - [5183] = 5183, - [5184] = 5184, - [5185] = 5185, - [5186] = 5186, - [5187] = 5187, - [5188] = 5188, - [5189] = 5189, - [5190] = 5143, - [5191] = 4977, - [5192] = 5192, - [5193] = 5193, - [5194] = 5143, - [5195] = 5195, - [5196] = 5143, - [5197] = 4927, - [5198] = 5198, - [5199] = 5199, - [5200] = 3713, - [5201] = 5201, - [5202] = 5202, - [5203] = 5203, - [5204] = 5204, - [5205] = 5205, - [5206] = 5206, - [5207] = 5207, - [5208] = 5208, - [5209] = 5209, - [5210] = 5210, - [5211] = 5211, - [5212] = 5212, - [5213] = 5143, - [5214] = 5214, - [5215] = 5215, - [5216] = 5143, - [5217] = 5217, - [5218] = 5218, - [5219] = 3724, - [5220] = 5220, - [5221] = 5221, - [5222] = 5222, - [5223] = 4931, - [5224] = 5224, - [5225] = 4936, - [5226] = 5226, - [5227] = 5227, - [5228] = 5228, - [5229] = 5229, - [5230] = 5230, - [5231] = 5143, - [5232] = 5232, - [5233] = 5233, - [5234] = 5234, - [5235] = 4945, - [5236] = 5143, - [5237] = 5237, - [5238] = 5238, - [5239] = 5239, - [5240] = 5240, - [5241] = 5241, - [5242] = 5242, - [5243] = 4955, - [5244] = 5244, - [5245] = 5245, - [5246] = 5246, - [5247] = 5247, - [5248] = 5248, - [5249] = 5249, - [5250] = 5250, - [5251] = 5251, - [5252] = 5252, - [5253] = 5253, - [5254] = 5143, - [5255] = 5143, - [5256] = 5256, - [5257] = 5257, - [5258] = 5258, - [5259] = 5143, - [5260] = 5260, - [5261] = 5261, - [5262] = 5262, - [5263] = 5263, - [5264] = 5264, - [5265] = 5265, - [5266] = 5266, - [5267] = 5267, - [5268] = 5268, - [5269] = 5269, - [5270] = 5270, - [5271] = 5271, - [5272] = 5272, - [5273] = 5273, - [5274] = 5274, - [5275] = 5275, - [5276] = 5276, - [5277] = 5277, - [5278] = 5278, - [5279] = 5143, - [5280] = 5143, - [5281] = 4675, - [5282] = 5282, - [5283] = 5283, - [5284] = 4947, - [5285] = 4993, - [5286] = 5286, - [5287] = 5287, - [5288] = 5288, - [5289] = 5289, - [5290] = 5290, - [5291] = 5291, - [5292] = 5290, - [5293] = 5293, - [5294] = 5294, - [5295] = 5290, - [5296] = 5296, - [5297] = 5296, - [5298] = 5298, - [5299] = 5298, - [5300] = 5300, - [5301] = 5301, - [5302] = 4348, - [5303] = 5303, - [5304] = 5301, - [5305] = 5305, - [5306] = 5294, - [5307] = 5307, - [5308] = 5301, - [5309] = 5020, - [5310] = 5310, - [5311] = 5294, - [5312] = 5312, - [5313] = 5307, - [5314] = 5294, - [5315] = 5298, - [5316] = 5305, - [5317] = 5307, - [5318] = 5301, - [5319] = 5296, - [5320] = 5305, - [5321] = 5291, - [5322] = 5290, - [5323] = 5307, - [5324] = 5291, - [5325] = 5307, - [5326] = 5301, - [5327] = 5294, - [5328] = 5305, - [5329] = 4865, - [5330] = 5290, - [5331] = 5307, - [5332] = 5028, - [5333] = 5294, - [5334] = 5289, - [5335] = 4306, - [5336] = 5017, - [5337] = 5294, - [5338] = 5294, - [5339] = 5305, - [5340] = 5289, - [5341] = 5291, - [5342] = 5298, - [5343] = 5296, - [5344] = 5301, - [5345] = 5290, - [5346] = 5291, - [5347] = 5290, - [5348] = 5291, - [5349] = 5301, - [5350] = 5296, - [5351] = 5298, - [5352] = 5289, - [5353] = 5305, - [5354] = 5291, - [5355] = 5355, - [5356] = 5356, - [5357] = 5290, - [5358] = 5298, - [5359] = 2665, - [5360] = 5307, - [5361] = 5361, - [5362] = 5362, - [5363] = 5363, - [5364] = 5294, - [5365] = 5305, - [5366] = 5289, - [5367] = 5367, - [5368] = 5020, - [5369] = 5296, - [5370] = 5298, - [5371] = 5298, - [5372] = 5296, - [5373] = 5016, - [5374] = 5296, - [5375] = 5294, - [5376] = 5307, - [5377] = 5290, - [5378] = 5291, - [5379] = 5301, - [5380] = 5307, - [5381] = 5015, - [5382] = 5301, - [5383] = 5290, - [5384] = 5294, - [5385] = 5291, - [5386] = 5305, - [5387] = 5291, - [5388] = 5298, - [5389] = 5296, - [5390] = 5290, - [5391] = 5291, - [5392] = 5298, - [5393] = 5296, - [5394] = 5290, - [5395] = 5296, - [5396] = 5307, - [5397] = 5307, - [5398] = 5298, - [5399] = 5307, - [5400] = 5301, - [5401] = 5401, - [5402] = 5301, - [5403] = 5296, - [5404] = 5298, - [5405] = 5294, - [5406] = 5406, - [5407] = 5294, - [5408] = 5408, - [5409] = 5307, - [5410] = 5410, - [5411] = 5298, - [5412] = 5296, - [5413] = 5413, - [5414] = 5290, - [5415] = 5291, - [5416] = 5305, - [5417] = 5417, - [5418] = 5301, - [5419] = 5301, - [5420] = 5420, - [5421] = 5305, - [5422] = 5289, - [5423] = 5305, - [5424] = 5305, - [5425] = 5294, - [5426] = 5426, - [5427] = 5307, - [5428] = 5428, - [5429] = 5307, - [5430] = 5430, - [5431] = 5290, - [5432] = 5298, - [5433] = 5296, - [5434] = 5026, - [5435] = 5435, - [5436] = 5294, - [5437] = 5298, - [5438] = 5438, - [5439] = 5296, - [5440] = 5290, - [5441] = 5291, - [5442] = 5291, - [5443] = 5031, - [5444] = 5032, - [5445] = 5033, - [5446] = 5446, - [5447] = 5038, - [5448] = 5301, - [5449] = 5449, - [5450] = 5305, - [5451] = 5307, - [5452] = 5452, - [5453] = 5453, - [5454] = 5046, - [5455] = 5047, - [5456] = 5301, - [5457] = 5048, - [5458] = 5301, - [5459] = 5305, - [5460] = 5307, - [5461] = 5012, - [5462] = 5462, - [5463] = 5016, - [5464] = 5464, - [5465] = 5291, - [5466] = 5290, - [5467] = 5037, - [5468] = 5291, - [5469] = 5296, - [5470] = 5036, - [5471] = 5298, - [5472] = 5472, - [5473] = 5473, - [5474] = 5301, - [5475] = 5290, - [5476] = 5294, - [5477] = 1441, - [5478] = 5294, - [5479] = 5035, - [5480] = 1478, - [5481] = 1465, - [5482] = 1462, - [5483] = 5034, - [5484] = 1425, - [5485] = 5296, - [5486] = 5291, - [5487] = 1413, - [5488] = 5307, - [5489] = 5298, - [5490] = 5490, - [5491] = 5305, - [5492] = 5305, - [5493] = 5493, - [5494] = 5294, - [5495] = 5495, - [5496] = 5298, - [5497] = 5296, - [5498] = 5290, - [5499] = 4979, - [5500] = 5500, - [5501] = 5305, - [5502] = 5305, - [5503] = 5503, - [5504] = 4985, - [5505] = 5301, - [5506] = 5361, - [5507] = 5507, - [5508] = 4984, - [5509] = 5015, - [5510] = 4970, - [5511] = 5291, - [5512] = 5512, - [5513] = 4921, - [5514] = 5514, - [5515] = 5084, - [5516] = 3083, - [5517] = 5517, - [5518] = 4005, - [5519] = 5514, - [5520] = 4505, - [5521] = 3895, - [5522] = 5067, - [5523] = 5523, - [5524] = 5524, - [5525] = 5067, - [5526] = 5514, - [5527] = 5527, - [5528] = 5517, - [5529] = 5523, - [5530] = 4506, - [5531] = 5514, - [5532] = 5532, - [5533] = 5523, - [5534] = 5057, - [5535] = 5523, - [5536] = 5523, - [5537] = 5523, - [5538] = 5523, - [5539] = 5539, - [5540] = 5540, - [5541] = 5523, - [5542] = 5420, - [5543] = 5523, - [5544] = 5446, - [5545] = 5428, - [5546] = 5546, - [5547] = 5547, - [5548] = 5523, - [5549] = 5438, - [5550] = 5495, - [5551] = 5462, - [5552] = 5514, - [5553] = 5514, - [5554] = 5554, - [5555] = 5435, - [5556] = 5556, - [5557] = 5523, - [5558] = 5084, - [5559] = 5559, - [5560] = 5514, - [5561] = 5493, - [5562] = 5523, - [5563] = 5563, - [5564] = 5523, - [5565] = 5514, - [5566] = 5514, - [5567] = 5523, - [5568] = 5523, - [5569] = 4896, - [5570] = 5523, - [5571] = 5507, - [5572] = 5572, - [5573] = 5573, - [5574] = 5514, - [5575] = 5514, - [5576] = 5576, - [5577] = 5577, - [5578] = 5578, - [5579] = 5579, - [5580] = 5523, - [5581] = 5130, - [5582] = 5523, - [5583] = 5523, - [5584] = 5584, - [5585] = 5585, - [5586] = 5572, - [5587] = 5587, - [5588] = 5514, - [5589] = 5430, - [5590] = 5514, - [5591] = 5523, - [5592] = 4429, - [5593] = 4890, - [5594] = 4893, - [5595] = 5523, - [5596] = 5514, - [5597] = 5514, - [5598] = 5096, - [5599] = 4892, - [5600] = 5523, - [5601] = 5523, - [5602] = 5523, - [5603] = 4886, - [5604] = 5070, - [5605] = 5514, - [5606] = 5514, - [5607] = 5523, - [5608] = 5523, - [5609] = 5093, - [5610] = 5610, - [5611] = 5611, - [5612] = 5420, - [5613] = 5613, - [5614] = 5614, - [5615] = 5615, - [5616] = 5614, - [5617] = 5214, - [5618] = 5207, - [5619] = 5428, - [5620] = 5620, - [5621] = 5539, - [5622] = 5622, - [5623] = 5623, - [5624] = 5614, - [5625] = 5625, - [5626] = 5626, - [5627] = 5627, - [5628] = 5628, - [5629] = 5539, - [5630] = 5630, - [5631] = 5430, - [5632] = 5493, - [5633] = 5620, - [5634] = 5620, - [5635] = 5620, - [5636] = 5636, - [5637] = 5559, - [5638] = 5159, - [5639] = 5623, - [5640] = 5611, - [5641] = 5576, - [5642] = 5507, - [5643] = 5283, - [5644] = 5578, - [5645] = 5579, - [5646] = 5646, - [5647] = 5647, - [5648] = 5648, - [5649] = 5611, - [5650] = 5650, - [5651] = 5651, - [5652] = 5435, - [5653] = 5625, - [5654] = 5438, - [5655] = 5512, - [5656] = 5656, - [5657] = 5657, - [5658] = 5658, - [5659] = 5659, - [5660] = 5623, - [5661] = 5627, - [5662] = 1474, - [5663] = 5576, - [5664] = 1451, - [5665] = 5665, - [5666] = 5495, - [5667] = 5611, - [5668] = 5623, - [5669] = 5625, - [5670] = 5670, - [5671] = 5627, - [5672] = 5512, - [5673] = 5625, - [5674] = 5627, - [5675] = 5675, - [5676] = 5559, - [5677] = 5446, - [5678] = 5678, - [5679] = 5277, - [5680] = 5620, - [5681] = 5681, - [5682] = 5166, - [5683] = 5620, - [5684] = 5623, - [5685] = 5204, - [5686] = 5686, - [5687] = 5524, - [5688] = 5579, - [5689] = 5678, - [5690] = 5462, - [5691] = 5524, - [5692] = 5692, - [5693] = 5578, - [5694] = 5627, - [5695] = 5695, - [5696] = 5696, - [5697] = 5158, - [5698] = 5698, - [5699] = 5699, - [5700] = 5636, - [5701] = 5614, - [5702] = 5675, - [5703] = 5692, - [5704] = 5657, - [5705] = 5705, - [5706] = 5177, - [5707] = 5707, - [5708] = 5681, - [5709] = 5709, - [5710] = 5710, - [5711] = 5711, - [5712] = 4620, - [5713] = 5713, - [5714] = 5714, - [5715] = 5714, - [5716] = 5559, - [5717] = 5717, - [5718] = 5713, - [5719] = 5719, - [5720] = 5714, - [5721] = 5721, - [5722] = 5722, - [5723] = 5723, - [5724] = 5724, - [5725] = 5725, - [5726] = 5714, - [5727] = 5713, - [5728] = 5713, - [5729] = 3890, - [5730] = 5713, - [5731] = 5731, - [5732] = 5524, - [5733] = 5512, - [5734] = 4623, - [5735] = 4594, - [5736] = 5713, - [5737] = 4626, - [5738] = 5738, - [5739] = 5739, - [5740] = 5740, - [5741] = 5741, - [5742] = 5713, - [5743] = 4505, - [5744] = 5713, - [5745] = 3102, - [5746] = 4506, - [5747] = 5747, - [5748] = 4588, - [5749] = 4613, - [5750] = 5576, - [5751] = 5539, - [5752] = 5713, - [5753] = 4608, - [5754] = 5722, - [5755] = 4592, - [5756] = 3905, - [5757] = 4306, - [5758] = 5713, - [5759] = 5713, - [5760] = 4593, - [5761] = 5578, - [5762] = 5579, - [5763] = 5713, - [5764] = 5739, - [5765] = 4606, - [5766] = 5713, - [5767] = 5719, - [5768] = 4625, - [5769] = 4348, - [5770] = 5739, - [5771] = 5020, - [5772] = 4595, - [5773] = 4583, - [5774] = 5016, - [5775] = 5713, - [5776] = 5721, - [5777] = 4612, - [5778] = 4599, - [5779] = 5713, - [5780] = 4614, - [5781] = 5738, - [5782] = 5473, - [5783] = 5713, - [5784] = 5740, - [5785] = 4530, - [5786] = 4619, - [5787] = 4618, - [5788] = 4577, - [5789] = 5015, - [5790] = 4603, - [5791] = 5713, - [5792] = 4617, - [5793] = 5793, - [5794] = 5747, - [5795] = 1483, - [5796] = 5796, - [5797] = 5797, - [5798] = 1474, - [5799] = 1448, - [5800] = 1477, - [5801] = 5801, - [5802] = 1451, - [5803] = 1477, - [5804] = 1446, - [5805] = 1474, - [5806] = 1423, - [5807] = 1483, - [5808] = 1456, - [5809] = 5809, - [5810] = 5797, - [5811] = 5811, - [5812] = 1405, - [5813] = 1451, - [5814] = 1467, - [5815] = 5815, - [5816] = 5816, - [5817] = 5817, - [5818] = 1480, - [5819] = 1449, - [5820] = 1447, - [5821] = 1436, - [5822] = 5822, - [5823] = 1404, - [5824] = 5824, - [5825] = 1435, - [5826] = 1435, - [5827] = 5827, - [5828] = 5828, - [5829] = 5067, - [5830] = 1449, - [5831] = 1447, - [5832] = 1412, - [5833] = 1436, - [5834] = 5084, - [5835] = 5835, - [5836] = 5836, - [5837] = 4927, - [5838] = 1480, - [5839] = 5839, - [5840] = 5840, - [5841] = 5841, - [5842] = 5842, - [5843] = 5842, - [5844] = 5844, - [5845] = 5845, - [5846] = 5846, - [5847] = 5847, - [5848] = 5723, - [5849] = 5849, - [5850] = 5741, - [5851] = 5725, - [5852] = 5724, - [5853] = 5797, - [5854] = 5854, - [5855] = 5811, - [5856] = 5725, - [5857] = 4315, - [5858] = 5723, - [5859] = 5626, - [5860] = 5705, - [5861] = 5615, - [5862] = 5741, - [5863] = 5670, - [5864] = 5747, - [5865] = 5865, - [5866] = 5622, - [5867] = 5659, - [5868] = 5868, - [5869] = 4288, - [5870] = 5699, - [5871] = 3890, - [5872] = 5695, - [5873] = 5711, - [5874] = 4304, - [5875] = 5613, - [5876] = 5876, - [5877] = 5724, - [5878] = 5630, - [5879] = 5656, - [5880] = 5650, - [5881] = 5698, - [5882] = 5882, - [5883] = 3905, - [5884] = 2658, - [5885] = 5885, - [5886] = 4506, - [5887] = 5887, - [5888] = 5885, - [5889] = 4505, - [5890] = 5890, - [5891] = 4442, - [5892] = 4443, - [5893] = 4530, - [5894] = 4429, - [5895] = 5890, - [5896] = 5896, - [5897] = 5897, - [5898] = 5898, - [5899] = 5896, - [5900] = 4676, - [5901] = 5901, - [5902] = 5902, - [5903] = 4491, - [5904] = 5904, - [5905] = 5904, - [5906] = 5906, - [5907] = 5907, - [5908] = 5904, - [5909] = 5909, - [5910] = 5904, - [5911] = 5911, - [5912] = 5906, - [5913] = 4616, - [5914] = 5914, - [5915] = 5915, - [5916] = 5915, - [5917] = 5906, - [5918] = 5915, - [5919] = 5915, - [5920] = 4927, - [5921] = 5915, - [5922] = 5915, - [5923] = 5923, - [5924] = 5906, - [5925] = 5904, - [5926] = 5906, - [5927] = 5915, - [5928] = 5928, - [5929] = 5906, - [5930] = 5904, - [5931] = 5906, - [5932] = 5904, - [5933] = 5915, - [5934] = 5904, - [5935] = 5904, - [5936] = 5904, - [5937] = 2735, - [5938] = 5938, - [5939] = 5939, - [5940] = 5940, - [5941] = 5915, - [5942] = 5942, - [5943] = 5906, - [5944] = 5938, - [5945] = 5945, - [5946] = 5906, - [5947] = 5915, - [5948] = 5906, - [5949] = 5904, - [5950] = 5923, - [5951] = 5945, - [5952] = 5915, - [5953] = 5904, - [5954] = 5915, - [5955] = 5906, - [5956] = 5915, - [5957] = 5906, - [5958] = 5904, - [5959] = 5915, - [5960] = 5915, - [5961] = 5961, - [5962] = 5915, - [5963] = 5906, - [5964] = 5906, - [5965] = 5906, - [5966] = 5904, - [5967] = 5906, - [5968] = 5915, - [5969] = 5904, - [5970] = 5914, - [5971] = 5906, - [5972] = 5972, - [5973] = 5973, - [5974] = 5904, - [5975] = 5904, - [5976] = 5915, - [5977] = 5977, - [5978] = 5978, - [5979] = 5977, - [5980] = 4592, - [5981] = 4608, - [5982] = 5982, - [5983] = 4613, - [5984] = 5977, - [5985] = 5977, - [5986] = 5986, - [5987] = 4623, - [5988] = 5978, - [5989] = 1413, - [5990] = 5978, - [5991] = 5977, - [5992] = 4599, - [5993] = 4603, - [5994] = 4506, - [5995] = 4618, - [5996] = 4505, - [5997] = 5978, - [5998] = 5998, - [5999] = 5999, - [6000] = 4583, - [6001] = 5977, - [6002] = 4595, - [6003] = 5977, - [6004] = 5978, - [6005] = 4625, - [6006] = 4606, - [6007] = 5977, - [6008] = 5977, - [6009] = 5982, - [6010] = 5978, - [6011] = 5982, - [6012] = 5986, - [6013] = 5978, - [6014] = 4620, - [6015] = 5982, - [6016] = 5849, - [6017] = 1448, - [6018] = 5793, - [6019] = 5978, - [6020] = 4614, - [6021] = 4619, - [6022] = 1425, - [6023] = 5977, - [6024] = 4429, - [6025] = 4530, - [6026] = 5982, - [6027] = 5978, - [6028] = 5978, - [6029] = 5982, - [6030] = 5978, - [6031] = 5998, - [6032] = 5977, - [6033] = 5977, - [6034] = 5978, - [6035] = 1462, - [6036] = 5977, - [6037] = 5998, - [6038] = 1465, - [6039] = 5978, - [6040] = 5982, - [6041] = 5999, - [6042] = 4577, - [6043] = 5978, - [6044] = 4617, - [6045] = 4626, - [6046] = 5982, - [6047] = 2850, - [6048] = 1478, - [6049] = 5977, - [6050] = 6050, - [6051] = 5982, - [6052] = 6052, - [6053] = 1441, - [6054] = 5978, - [6055] = 4588, - [6056] = 5977, - [6057] = 4593, - [6058] = 5982, - [6059] = 4594, - [6060] = 5978, - [6061] = 5977, - [6062] = 5978, - [6063] = 5982, - [6064] = 5977, - [6065] = 5977, - [6066] = 5978, - [6067] = 5982, - [6068] = 5982, - [6069] = 5977, - [6070] = 6070, - [6071] = 5978, - [6072] = 5977, - [6073] = 5978, - [6074] = 5982, - [6075] = 5977, - [6076] = 5978, - [6077] = 5978, - [6078] = 5982, - [6079] = 5982, - [6080] = 5982, - [6081] = 5978, - [6082] = 4348, - [6083] = 5982, - [6084] = 3890, - [6085] = 5982, - [6086] = 5977, - [6087] = 5977, - [6088] = 5977, - [6089] = 5978, - [6090] = 5982, - [6091] = 5982, - [6092] = 5978, - [6093] = 5978, - [6094] = 5977, - [6095] = 6095, - [6096] = 6096, - [6097] = 2852, - [6098] = 5982, - [6099] = 4306, - [6100] = 5847, - [6101] = 5977, - [6102] = 5978, - [6103] = 5982, - [6104] = 5977, - [6105] = 6105, - [6106] = 5978, - [6107] = 3917, - [6108] = 5978, - [6109] = 6109, - [6110] = 5982, - [6111] = 5977, - [6112] = 5977, - [6113] = 5978, - [6114] = 5978, - [6115] = 5982, - [6116] = 5998, - [6117] = 5977, - [6118] = 3895, - [6119] = 4612, - [6120] = 6120, - [6121] = 6121, - [6122] = 3956, - [6123] = 5977, - [6124] = 6124, - [6125] = 6125, - [6126] = 6126, - [6127] = 6127, - [6128] = 6128, - [6129] = 6129, - [6130] = 3685, - [6131] = 3687, - [6132] = 6132, - [6133] = 6133, - [6134] = 6134, - [6135] = 4143, - [6136] = 4713, - [6137] = 6137, - [6138] = 4156, - [6139] = 6139, - [6140] = 6140, - [6141] = 3736, - [6142] = 3740, - [6143] = 6143, - [6144] = 6144, - [6145] = 6145, - [6146] = 6146, - [6147] = 6147, - [6148] = 6148, - [6149] = 6149, - [6150] = 6150, - [6151] = 3123, - [6152] = 6152, - [6153] = 6153, - [6154] = 5417, - [6155] = 6155, - [6156] = 5503, - [6157] = 6157, - [6158] = 6158, - [6159] = 6159, - [6160] = 6160, - [6161] = 6161, - [6162] = 6162, - [6163] = 6163, - [6164] = 6164, - [6165] = 3690, - [6166] = 6166, - [6167] = 6167, - [6168] = 6168, - [6169] = 6169, - [6170] = 4146, - [6171] = 3700, - [6172] = 6172, - [6173] = 6173, - [6174] = 6174, - [6175] = 3698, - [6176] = 3723, - [6177] = 3695, - [6178] = 6178, - [6179] = 6179, - [6180] = 5362, - [6181] = 3684, - [6182] = 6182, - [6183] = 3689, - [6184] = 6184, - [6185] = 3113, - [6186] = 3172, - [6187] = 3726, - [6188] = 3146, - [6189] = 6189, - [6190] = 6190, - [6191] = 6191, - [6192] = 3734, - [6193] = 6193, - [6194] = 6194, - [6195] = 3073, - [6196] = 6196, - [6197] = 6197, - [6198] = 3741, - [6199] = 6199, - [6200] = 6194, - [6201] = 6201, - [6202] = 3668, - [6203] = 6203, - [6204] = 6204, - [6205] = 6205, - [6206] = 6206, - [6207] = 6207, - [6208] = 6208, - [6209] = 6209, - [6210] = 6210, - [6211] = 4686, - [6212] = 6212, - [6213] = 3692, - [6214] = 6214, - [6215] = 6215, - [6216] = 6216, - [6217] = 6217, - [6218] = 6218, - [6219] = 6219, - [6220] = 6220, - [6221] = 6221, - [6222] = 6222, - [6223] = 6223, - [6224] = 6224, - [6225] = 6225, - [6226] = 3545, - [6227] = 6227, - [6228] = 6228, - [6229] = 6229, - [6230] = 6230, - [6231] = 6231, - [6232] = 6232, - [6233] = 6233, - [6234] = 6234, - [6235] = 3745, - [6236] = 3197, - [6237] = 5449, - [6238] = 6238, - [6239] = 6126, - [6240] = 5452, - [6241] = 5363, - [6242] = 6242, - [6243] = 6243, - [6244] = 6244, - [6245] = 6245, - [6246] = 6246, - [6247] = 6247, - [6248] = 6248, - [6249] = 5312, - [6250] = 3683, - [6251] = 6251, - [6252] = 5464, - [6253] = 5453, - [6254] = 5310, - [6255] = 4501, - [6256] = 6256, - [6257] = 1492, - [6258] = 6258, - [6259] = 4546, - [6260] = 6260, - [6261] = 6261, - [6262] = 6262, - [6263] = 4503, - [6264] = 6262, - [6265] = 6265, - [6266] = 6266, - [6267] = 6267, - [6268] = 6268, - [6269] = 6269, - [6270] = 6270, - [6271] = 6271, - [6272] = 6272, - [6273] = 6260, - [6274] = 4586, - [6275] = 4600, - [6276] = 4920, - [6277] = 4900, - [6278] = 4669, - [6279] = 4624, - [6280] = 4604, - [6281] = 4908, - [6282] = 4622, - [6283] = 4587, - [6284] = 4927, - [6285] = 4591, - [6286] = 4580, - [6287] = 4581, - [6288] = 4605, - [6289] = 4665, - [6290] = 4574, - [6291] = 4602, - [6292] = 4589, - [6293] = 4662, - [6294] = 4909, - [6295] = 4628, - [6296] = 2851, - [6297] = 4907, - [6298] = 4666, - [6299] = 1413, - [6300] = 1441, - [6301] = 1425, - [6302] = 1462, - [6303] = 4653, - [6304] = 1465, - [6305] = 1478, - [6306] = 4677, - [6307] = 3127, - [6308] = 3151, - [6309] = 4675, - [6310] = 4684, - [6311] = 4703, - [6312] = 6312, - [6313] = 3055, - [6314] = 3114, - [6315] = 6315, - [6316] = 6312, - [6317] = 3175, - [6318] = 3110, - [6319] = 3150, - [6320] = 6312, - [6321] = 3056, - [6322] = 6312, - [6323] = 4865, - [6324] = 3128, - [6325] = 3106, - [6326] = 3104, - [6327] = 3129, - [6328] = 3101, - [6329] = 3058, - [6330] = 3059, - [6331] = 3100, - [6332] = 3060, - [6333] = 6312, - [6334] = 4804, - [6335] = 3099, - [6336] = 3148, - [6337] = 3130, - [6338] = 3126, - [6339] = 6312, - [6340] = 3147, - [6341] = 6315, - [6342] = 4674, - [6343] = 6312, - [6344] = 4943, - [6345] = 6312, - [6346] = 4931, - [6347] = 3069, - [6348] = 3196, - [6349] = 6312, - [6350] = 4712, - [6351] = 6312, - [6352] = 4671, - [6353] = 6353, - [6354] = 6312, - [6355] = 6312, - [6356] = 6356, - [6357] = 6312, - [6358] = 6312, - [6359] = 4947, - [6360] = 4927, - [6361] = 6312, - [6362] = 3081, - [6363] = 3079, - [6364] = 3077, - [6365] = 6365, - [6366] = 6312, - [6367] = 3075, - [6368] = 3895, - [6369] = 6312, - [6370] = 6353, - [6371] = 6312, - [6372] = 6372, - [6373] = 6373, - [6374] = 6374, - [6375] = 6375, - [6376] = 6376, - [6377] = 6377, - [6378] = 4908, - [6379] = 4909, - [6380] = 6374, - [6381] = 4907, - [6382] = 6373, - [6383] = 6374, - [6384] = 4879, - [6385] = 5038, - [6386] = 6374, - [6387] = 6374, - [6388] = 4920, - [6389] = 6374, - [6390] = 6374, - [6391] = 6374, - [6392] = 1377, - [6393] = 6373, - [6394] = 6394, - [6395] = 6375, - [6396] = 6374, - [6397] = 6374, - [6398] = 6398, - [6399] = 6374, - [6400] = 6373, - [6401] = 6375, - [6402] = 6374, - [6403] = 6374, - [6404] = 6376, - [6405] = 6405, - [6406] = 6377, - [6407] = 6374, - [6408] = 6376, - [6409] = 6375, - [6410] = 6375, - [6411] = 6374, - [6412] = 6374, - [6413] = 6373, - [6414] = 6374, - [6415] = 6415, - [6416] = 5028, - [6417] = 6417, - [6418] = 6374, - [6419] = 6419, - [6420] = 6374, - [6421] = 6421, - [6422] = 6377, - [6423] = 4780, - [6424] = 6374, - [6425] = 6425, - [6426] = 4900, - [6427] = 6415, - [6428] = 6374, - [6429] = 6419, - [6430] = 1390, - [6431] = 6374, - [6432] = 6375, - [6433] = 6374, - [6434] = 6377, - [6435] = 6374, - [6436] = 6394, - [6437] = 6419, - [6438] = 5017, - [6439] = 6374, - [6440] = 6440, - [6441] = 6441, - [6442] = 6442, - [6443] = 3108, - [6444] = 3109, - [6445] = 3112, - [6446] = 6446, - [6447] = 4896, - [6448] = 6442, - [6449] = 6449, - [6450] = 6450, - [6451] = 6451, - [6452] = 6452, - [6453] = 2852, - [6454] = 4942, - [6455] = 4891, - [6456] = 4927, - [6457] = 6442, - [6458] = 6458, - [6459] = 4911, - [6460] = 6441, - [6461] = 6461, - [6462] = 6442, - [6463] = 6463, - [6464] = 6449, - [6465] = 5093, - [6466] = 2850, - [6467] = 6449, - [6468] = 6451, - [6469] = 6469, - [6470] = 6452, - [6471] = 6469, - [6472] = 6442, - [6473] = 6458, - [6474] = 6449, - [6475] = 6442, - [6476] = 6476, - [6477] = 6449, - [6478] = 6478, - [6479] = 6442, - [6480] = 6441, - [6481] = 6481, - [6482] = 6442, - [6483] = 6449, - [6484] = 6449, - [6485] = 6105, - [6486] = 6441, - [6487] = 6458, - [6488] = 6463, - [6489] = 6489, - [6490] = 6449, - [6491] = 6446, - [6492] = 6476, - [6493] = 6493, - [6494] = 4887, - [6495] = 6495, - [6496] = 6496, - [6497] = 6449, - [6498] = 1435, - [6499] = 6499, - [6500] = 6440, - [6501] = 6489, - [6502] = 6442, - [6503] = 1436, - [6504] = 1447, - [6505] = 4951, - [6506] = 4959, - [6507] = 6441, - [6508] = 6496, - [6509] = 1449, - [6510] = 6493, - [6511] = 6489, - [6512] = 6449, - [6513] = 6442, - [6514] = 1477, - [6515] = 6446, - [6516] = 6442, - [6517] = 6452, - [6518] = 6495, - [6519] = 6499, - [6520] = 4947, - [6521] = 6440, - [6522] = 6441, - [6523] = 1483, - [6524] = 6524, - [6525] = 6442, - [6526] = 6449, - [6527] = 1480, - [6528] = 6442, - [6529] = 6446, - [6530] = 1451, - [6531] = 6449, - [6532] = 6458, - [6533] = 6533, - [6534] = 1474, - [6535] = 6449, - [6536] = 6536, - [6537] = 6476, - [6538] = 6461, - [6539] = 4943, - [6540] = 6442, - [6541] = 6449, - [6542] = 6442, - [6543] = 6493, - [6544] = 6496, - [6545] = 6452, - [6546] = 6496, - [6547] = 4926, - [6548] = 6441, - [6549] = 6493, - [6550] = 6489, - [6551] = 6441, - [6552] = 4931, - [6553] = 6553, - [6554] = 6449, - [6555] = 4892, - [6556] = 6452, - [6557] = 6458, - [6558] = 6442, - [6559] = 2851, - [6560] = 4944, - [6561] = 4923, - [6562] = 6440, - [6563] = 6489, - [6564] = 6449, - [6565] = 6493, - [6566] = 6499, - [6567] = 4890, - [6568] = 6495, - [6569] = 6441, - [6570] = 5057, - [6571] = 6496, - [6572] = 4905, - [6573] = 6573, - [6574] = 4994, - [6575] = 6469, - [6576] = 6442, - [6577] = 5070, - [6578] = 6441, - [6579] = 6499, - [6580] = 4886, - [6581] = 6476, - [6582] = 6495, - [6583] = 6583, - [6584] = 4910, - [6585] = 6461, - [6586] = 6442, - [6587] = 4893, - [6588] = 6441, - [6589] = 6589, - [6590] = 6449, - [6591] = 6449, - [6592] = 6463, - [6593] = 4898, - [6594] = 4916, - [6595] = 6441, - [6596] = 4921, - [6597] = 3695, - [6598] = 6598, - [6599] = 6598, - [6600] = 6600, - [6601] = 3740, - [6602] = 6602, - [6603] = 6603, - [6604] = 6604, - [6605] = 6598, - [6606] = 3073, - [6607] = 3736, - [6608] = 6608, - [6609] = 1423, - [6610] = 6602, - [6611] = 6608, - [6612] = 6612, - [6613] = 6613, - [6614] = 6600, - [6615] = 6600, - [6616] = 5098, - [6617] = 1412, - [6618] = 6618, - [6619] = 1405, - [6620] = 4918, - [6621] = 5056, - [6622] = 6608, - [6623] = 6243, - [6624] = 6238, - [6625] = 5110, - [6626] = 6618, - [6627] = 6234, - [6628] = 5099, - [6629] = 6612, - [6630] = 6630, - [6631] = 6608, - [6632] = 6232, - [6633] = 6231, - [6634] = 6230, - [6635] = 6612, - [6636] = 6602, - [6637] = 6598, - [6638] = 6638, - [6639] = 6639, - [6640] = 6598, - [6641] = 6598, - [6642] = 3723, - [6643] = 6618, - [6644] = 6602, - [6645] = 6613, - [6646] = 1492, - [6647] = 6600, - [6648] = 6598, - [6649] = 6602, - [6650] = 6612, - [6651] = 6598, - [6652] = 6598, - [6653] = 6618, - [6654] = 6600, - [6655] = 6602, - [6656] = 3745, - [6657] = 4927, - [6658] = 6220, - [6659] = 3175, - [6660] = 6660, - [6661] = 6612, - [6662] = 6598, - [6663] = 6638, - [6664] = 6600, - [6665] = 3668, - [6666] = 6600, - [6667] = 6612, - [6668] = 6660, - [6669] = 6600, - [6670] = 3741, - [6671] = 6602, - [6672] = 3108, - [6673] = 6673, - [6674] = 3196, - [6675] = 3734, - [6676] = 6604, - [6677] = 5122, - [6678] = 3726, - [6679] = 6608, - [6680] = 1448, - [6681] = 6608, - [6682] = 6630, - [6683] = 3123, - [6684] = 6612, - [6685] = 6685, - [6686] = 3692, - [6687] = 3058, - [6688] = 6612, - [6689] = 3700, - [6690] = 3698, - [6691] = 3151, - [6692] = 3150, - [6693] = 6608, - [6694] = 3055, - [6695] = 3056, - [6696] = 6608, - [6697] = 3724, - [6698] = 3713, - [6699] = 6600, - [6700] = 3148, - [6701] = 6602, - [6702] = 6604, - [6703] = 3147, - [6704] = 5127, - [6705] = 6598, - [6706] = 6602, - [6707] = 6707, - [6708] = 6685, - [6709] = 6602, - [6710] = 3059, - [6711] = 5128, - [6712] = 6712, - [6713] = 6713, - [6714] = 6630, - [6715] = 6150, - [6716] = 6612, - [6717] = 6139, - [6718] = 3060, - [6719] = 3545, - [6720] = 5088, - [6721] = 6600, - [6722] = 6685, - [6723] = 6612, - [6724] = 5028, - [6725] = 6725, - [6726] = 5017, - [6727] = 6727, - [6728] = 3172, - [6729] = 6608, - [6730] = 6730, - [6731] = 6602, - [6732] = 6608, - [6733] = 6602, - [6734] = 5089, - [6735] = 6735, - [6736] = 6630, - [6737] = 6600, - [6738] = 3069, - [6739] = 6608, - [6740] = 3130, - [6741] = 3146, - [6742] = 6598, - [6743] = 3129, - [6744] = 6608, - [6745] = 6745, - [6746] = 3075, - [6747] = 3128, - [6748] = 5059, - [6749] = 3077, - [6750] = 6612, - [6751] = 3127, - [6752] = 3079, - [6753] = 3081, - [6754] = 3126, - [6755] = 6630, - [6756] = 6600, - [6757] = 6600, - [6758] = 6600, - [6759] = 6600, - [6760] = 6598, - [6761] = 6730, - [6762] = 6604, - [6763] = 6602, - [6764] = 6612, - [6765] = 6598, - [6766] = 5038, - [6767] = 6612, - [6768] = 3690, - [6769] = 3099, - [6770] = 3100, - [6771] = 6612, - [6772] = 6608, - [6773] = 6602, - [6774] = 3112, - [6775] = 1446, - [6776] = 3101, - [6777] = 3689, - [6778] = 3104, - [6779] = 3687, - [6780] = 3112, - [6781] = 6735, - [6782] = 3114, - [6783] = 6608, - [6784] = 4955, - [6785] = 3113, - [6786] = 3109, - [6787] = 3106, - [6788] = 6612, - [6789] = 3685, - [6790] = 3197, - [6791] = 3684, - [6792] = 6598, - [6793] = 6602, - [6794] = 6224, - [6795] = 6600, - [6796] = 3108, - [6797] = 6608, - [6798] = 6219, - [6799] = 6225, - [6800] = 5134, - [6801] = 6242, - [6802] = 6598, - [6803] = 3683, - [6804] = 6600, - [6805] = 3109, - [6806] = 6608, - [6807] = 3110, - [6808] = 6612, - [6809] = 1456, - [6810] = 6612, - [6811] = 6602, - [6812] = 6608, - [6813] = 6602, - [6814] = 6598, - [6815] = 6815, - [6816] = 6816, - [6817] = 6817, - [6818] = 6818, - [6819] = 5264, - [6820] = 6816, - [6821] = 6821, - [6822] = 6822, - [6823] = 6823, - [6824] = 5961, - [6825] = 5169, - [6826] = 6816, - [6827] = 6815, - [6828] = 6828, - [6829] = 6829, - [6830] = 5847, - [6831] = 6822, - [6832] = 6816, - [6833] = 6823, - [6834] = 6816, - [6835] = 6823, - [6836] = 6823, - [6837] = 6822, - [6838] = 6838, - [6839] = 6839, - [6840] = 6838, - [6841] = 6841, - [6842] = 6841, - [6843] = 6816, - [6844] = 6829, - [6845] = 6817, - [6846] = 6841, - [6847] = 6823, - [6848] = 6828, - [6849] = 6849, - [6850] = 6823, - [6851] = 6817, - [6852] = 6822, - [6853] = 6823, - [6854] = 5015, - [6855] = 6855, - [6856] = 6828, - [6857] = 6823, - [6858] = 6858, - [6859] = 6816, - [6860] = 5173, - [6861] = 6821, - [6862] = 6862, - [6863] = 6863, - [6864] = 6864, - [6865] = 6865, - [6866] = 6866, - [6867] = 6823, - [6868] = 6868, - [6869] = 6869, - [6870] = 6815, - [6871] = 4918, - [6872] = 6823, - [6873] = 6873, - [6874] = 6874, - [6875] = 6823, - [6876] = 6821, - [6877] = 6823, - [6878] = 6841, - [6879] = 6821, - [6880] = 6841, - [6881] = 6828, - [6882] = 6823, - [6883] = 6829, - [6884] = 6823, - [6885] = 6823, - [6886] = 6886, - [6887] = 6887, - [6888] = 6888, - [6889] = 5220, - [6890] = 6890, - [6891] = 6849, - [6892] = 6828, - [6893] = 6893, - [6894] = 5016, - [6895] = 5020, - [6896] = 6896, - [6897] = 5961, - [6898] = 6838, - [6899] = 6899, - [6900] = 6829, - [6901] = 6849, - [6902] = 6828, - [6903] = 5167, - [6904] = 6904, - [6905] = 5849, - [6906] = 6817, - [6907] = 6849, - [6908] = 6815, - [6909] = 5093, - [6910] = 5793, - [6911] = 6823, - [6912] = 6829, - [6913] = 5070, - [6914] = 5276, - [6915] = 6823, - [6916] = 6828, - [6917] = 6917, - [6918] = 6918, - [6919] = 6919, - [6920] = 6920, - [6921] = 6921, - [6922] = 5576, - [6923] = 6923, - [6924] = 6924, - [6925] = 6925, - [6926] = 6926, - [6927] = 6927, - [6928] = 6928, - [6929] = 6929, - [6930] = 6930, - [6931] = 1469, - [6932] = 6932, - [6933] = 6933, - [6934] = 6934, - [6935] = 6935, - [6936] = 6936, - [6937] = 5057, - [6938] = 6938, - [6939] = 6939, - [6940] = 6933, - [6941] = 1452, - [6942] = 6942, - [6943] = 6935, - [6944] = 6923, - [6945] = 6945, - [6946] = 6946, - [6947] = 6947, - [6948] = 6947, - [6949] = 6925, - [6950] = 6950, - [6951] = 6924, - [6952] = 6936, - [6953] = 6953, - [6954] = 6954, - [6955] = 6955, - [6956] = 6956, - [6957] = 6950, - [6958] = 6958, - [6959] = 5356, - [6960] = 6960, - [6961] = 6926, - [6962] = 6962, - [6963] = 6932, - [6964] = 6958, - [6965] = 6965, - [6966] = 5355, - [6967] = 6962, - [6968] = 6958, - [6969] = 5367, - [6970] = 6927, - [6971] = 6971, - [6972] = 6921, - [6973] = 6960, - [6974] = 6923, - [6975] = 5303, - [6976] = 6936, - [6977] = 6977, - [6978] = 5512, - [6979] = 6979, - [6980] = 6936, - [6981] = 6981, - [6982] = 5067, - [6983] = 6947, - [6984] = 6947, - [6985] = 6985, - [6986] = 6929, - [6987] = 6939, - [6988] = 6958, - [6989] = 6953, - [6990] = 6919, - [6991] = 6955, - [6992] = 6930, - [6993] = 6936, - [6994] = 6958, - [6995] = 6950, - [6996] = 6926, - [6997] = 5524, - [6998] = 6998, - [6999] = 2649, - [7000] = 7000, - [7001] = 7001, - [7002] = 6918, - [7003] = 6932, - [7004] = 6918, - [7005] = 6921, - [7006] = 6923, - [7007] = 6998, - [7008] = 7008, - [7009] = 6936, - [7010] = 7010, - [7011] = 6977, - [7012] = 6923, - [7013] = 6946, - [7014] = 4977, - [7015] = 5578, - [7016] = 7016, - [7017] = 6977, - [7018] = 6927, - [7019] = 7019, - [7020] = 7020, - [7021] = 6924, - [7022] = 6930, - [7023] = 6998, - [7024] = 5084, - [7025] = 6923, - [7026] = 7026, - [7027] = 6923, - [7028] = 7008, - [7029] = 6942, - [7030] = 5559, - [7031] = 6927, - [7032] = 6927, - [7033] = 6954, - [7034] = 6927, - [7035] = 7035, - [7036] = 6927, - [7037] = 6923, - [7038] = 7038, - [7039] = 7039, - [7040] = 6981, - [7041] = 6927, - [7042] = 6939, - [7043] = 7038, - [7044] = 6923, - [7045] = 6953, - [7046] = 6946, - [7047] = 6935, - [7048] = 6955, - [7049] = 7049, - [7050] = 7020, - [7051] = 7001, - [7052] = 6954, - [7053] = 6985, - [7054] = 6958, - [7055] = 7055, - [7056] = 6923, - [7057] = 6947, - [7058] = 7058, - [7059] = 7059, - [7060] = 6958, - [7061] = 6927, - [7062] = 6927, - [7063] = 6927, - [7064] = 7064, - [7065] = 7010, - [7066] = 6935, - [7067] = 6923, - [7068] = 6924, - [7069] = 7069, - [7070] = 6955, - [7071] = 6955, - [7072] = 6923, - [7073] = 6930, - [7074] = 6927, - [7075] = 5500, - [7076] = 6953, - [7077] = 6918, - [7078] = 4982, - [7079] = 6924, - [7080] = 5293, - [7081] = 6918, - [7082] = 6929, - [7083] = 6918, - [7084] = 6958, - [7085] = 6936, - [7086] = 7000, - [7087] = 6953, - [7088] = 6958, - [7089] = 7089, - [7090] = 7090, - [7091] = 6927, - [7092] = 6998, - [7093] = 6923, - [7094] = 6919, - [7095] = 5070, - [7096] = 7096, - [7097] = 6923, - [7098] = 6920, - [7099] = 7020, - [7100] = 6956, - [7101] = 6923, - [7102] = 6923, - [7103] = 6936, - [7104] = 6925, - [7105] = 6930, - [7106] = 6958, - [7107] = 6919, - [7108] = 6958, - [7109] = 5539, - [7110] = 6958, - [7111] = 6946, - [7112] = 7055, - [7113] = 6926, - [7114] = 6953, - [7115] = 6935, - [7116] = 7116, - [7117] = 6942, - [7118] = 6936, - [7119] = 6932, - [7120] = 6958, - [7121] = 6918, - [7122] = 7122, - [7123] = 6926, - [7124] = 6960, - [7125] = 7001, - [7126] = 6950, - [7127] = 6936, - [7128] = 6942, - [7129] = 6930, - [7130] = 5408, - [7131] = 7131, - [7132] = 6946, - [7133] = 6936, - [7134] = 6936, - [7135] = 7135, - [7136] = 6981, - [7137] = 7137, - [7138] = 2648, - [7139] = 5093, - [7140] = 6979, - [7141] = 6936, - [7142] = 6927, - [7143] = 6958, - [7144] = 6933, - [7145] = 6920, - [7146] = 7069, - [7147] = 6925, - [7148] = 6933, - [7149] = 7020, - [7150] = 6925, - [7151] = 6939, - [7152] = 6927, - [7153] = 6923, - [7154] = 6979, - [7155] = 6954, - [7156] = 7156, - [7157] = 6921, - [7158] = 6977, - [7159] = 6936, - [7160] = 6930, - [7161] = 2647, - [7162] = 7010, - [7163] = 5579, - [7164] = 6919, - [7165] = 6965, - [7166] = 6962, - [7167] = 7000, - [7168] = 7020, - [7169] = 6955, - [7170] = 6981, - [7171] = 6946, - [7172] = 4993, - [7173] = 6954, - [7174] = 6936, - [7175] = 6977, - [7176] = 7176, - [7177] = 7177, - [7178] = 6936, - [7179] = 6965, - [7180] = 6936, - [7181] = 6962, - [7182] = 7135, - [7183] = 6979, - [7184] = 6924, - [7185] = 6979, - [7186] = 7186, - [7187] = 6965, - [7188] = 7020, - [7189] = 7186, - [7190] = 6954, - [7191] = 6939, - [7192] = 6958, - [7193] = 7193, - [7194] = 6928, - [7195] = 6985, - [7196] = 6917, - [7197] = 7186, - [7198] = 6958, - [7199] = 6956, - [7200] = 6927, - [7201] = 6927, - [7202] = 6947, - [7203] = 6979, - [7204] = 5849, - [7205] = 5793, - [7206] = 7206, - [7207] = 6933, - [7208] = 6981, - [7209] = 7008, - [7210] = 6942, - [7211] = 7211, - [7212] = 6958, - [7213] = 6935, - [7214] = 5847, - [7215] = 6981, - [7216] = 6939, - [7217] = 7008, - [7218] = 7218, - [7219] = 7219, - [7220] = 7220, - [7221] = 7221, - [7222] = 7222, - [7223] = 7222, - [7224] = 7224, - [7225] = 7225, - [7226] = 7226, - [7227] = 7227, - [7228] = 7228, - [7229] = 7229, - [7230] = 7230, - [7231] = 7231, - [7232] = 7232, - [7233] = 7233, - [7234] = 7234, - [7235] = 7235, - [7236] = 7236, - [7237] = 7237, - [7238] = 7238, - [7239] = 7239, - [7240] = 7240, - [7241] = 7241, - [7242] = 7242, - [7243] = 7219, - [7244] = 7244, - [7245] = 7230, - [7246] = 7246, - [7247] = 7247, - [7248] = 7239, - [7249] = 7249, - [7250] = 7250, - [7251] = 7251, - [7252] = 7252, - [7253] = 7219, - [7254] = 7254, - [7255] = 7255, - [7256] = 7244, - [7257] = 7257, - [7258] = 7258, - [7259] = 7259, - [7260] = 7260, - [7261] = 7261, - [7262] = 7262, - [7263] = 7259, - [7264] = 7261, - [7265] = 7260, - [7266] = 7266, - [7267] = 7267, - [7268] = 7268, - [7269] = 7262, - [7270] = 7262, - [7271] = 7259, - [7272] = 7252, - [7273] = 5084, - [7274] = 7274, - [7275] = 7247, - [7276] = 7244, - [7277] = 7259, - [7278] = 7278, - [7279] = 7219, - [7280] = 7280, - [7281] = 7281, - [7282] = 7281, - [7283] = 7281, - [7284] = 7237, - [7285] = 7281, - [7286] = 7281, - [7287] = 7287, - [7288] = 7281, - [7289] = 7220, - [7290] = 7281, - [7291] = 7221, - [7292] = 7281, - [7293] = 7281, - [7294] = 7281, - [7295] = 7281, - [7296] = 7281, - [7297] = 7281, - [7298] = 7281, - [7299] = 7230, - [7300] = 7281, - [7301] = 7239, - [7302] = 7281, - [7303] = 7303, - [7304] = 7281, - [7305] = 7281, - [7306] = 7281, - [7307] = 7233, - [7308] = 7281, - [7309] = 7261, - [7310] = 7260, - [7311] = 7281, - [7312] = 7281, - [7313] = 7281, - [7314] = 7281, - [7315] = 7281, - [7316] = 7281, - [7317] = 7281, - [7318] = 7303, - [7319] = 7281, - [7320] = 7281, - [7321] = 7221, - [7322] = 7220, - [7323] = 7249, - [7324] = 7250, - [7325] = 7268, - [7326] = 7326, - [7327] = 7252, - [7328] = 7303, - [7329] = 7329, - [7330] = 7330, - [7331] = 7237, - [7332] = 7332, - [7333] = 7251, - [7334] = 7334, - [7335] = 7237, - [7336] = 7281, - [7337] = 7337, - [7338] = 7338, - [7339] = 7339, - [7340] = 7232, - [7341] = 7341, - [7342] = 7252, - [7343] = 7281, - [7344] = 7330, - [7345] = 7332, - [7346] = 7334, - [7347] = 7337, - [7348] = 7219, - [7349] = 7234, - [7350] = 7221, - [7351] = 7351, - [7352] = 7236, - [7353] = 7228, - [7354] = 7354, - [7355] = 7247, - [7356] = 7220, - [7357] = 7354, - [7358] = 7235, - [7359] = 7354, - [7360] = 7237, - [7361] = 7219, - [7362] = 7362, - [7363] = 7363, - [7364] = 7354, - [7365] = 7237, - [7366] = 7247, - [7367] = 7354, - [7368] = 7228, - [7369] = 7354, - [7370] = 7236, - [7371] = 7354, - [7372] = 7232, - [7373] = 7280, - [7374] = 7268, - [7375] = 7354, - [7376] = 7376, - [7377] = 7377, - [7378] = 7303, - [7379] = 7354, - [7380] = 7219, - [7381] = 7218, - [7382] = 7376, - [7383] = 7383, - [7384] = 7259, - [7385] = 7377, - [7386] = 7225, - [7387] = 7354, - [7388] = 7388, - [7389] = 7377, - [7390] = 7354, - [7391] = 7391, - [7392] = 7363, - [7393] = 5067, - [7394] = 7247, - [7395] = 7221, - [7396] = 7220, - [7397] = 7397, - [7398] = 7388, - [7399] = 7252, - [7400] = 7220, - [7401] = 7377, - [7402] = 7354, - [7403] = 7329, - [7404] = 7221, - [7405] = 7260, - [7406] = 7406, - [7407] = 7362, - [7408] = 7377, - [7409] = 7354, - [7410] = 7410, - [7411] = 7261, - [7412] = 7363, - [7413] = 7377, - [7414] = 7414, - [7415] = 7354, - [7416] = 7228, - [7417] = 7262, - [7418] = 7418, - [7419] = 7377, - [7420] = 7354, - [7421] = 7303, - [7422] = 7362, - [7423] = 7423, - [7424] = 7377, - [7425] = 7354, - [7426] = 7244, - [7427] = 7237, - [7428] = 7235, - [7429] = 7377, - [7430] = 7303, - [7431] = 7354, - [7432] = 7230, - [7433] = 7237, - [7434] = 7260, - [7435] = 7239, - [7436] = 7261, - [7437] = 7220, - [7438] = 7239, - [7439] = 7406, - [7440] = 7377, - [7441] = 7354, - [7442] = 7239, - [7443] = 7443, - [7444] = 7239, - [7445] = 7303, - [7446] = 7397, - [7447] = 7230, - [7448] = 7377, - [7449] = 7258, - [7450] = 7219, - [7451] = 7262, - [7452] = 7354, - [7453] = 7266, - [7454] = 7229, - [7455] = 7363, - [7456] = 7244, - [7457] = 7231, - [7458] = 7259, - [7459] = 7238, - [7460] = 7377, - [7461] = 7354, - [7462] = 7221, - [7463] = 7262, - [7464] = 7464, - [7465] = 7230, - [7466] = 7227, - [7467] = 7233, - [7468] = 7261, - [7469] = 7260, - [7470] = 7377, - [7471] = 7244, - [7472] = 7472, - [7473] = 7473, - [7474] = 7354, - [7475] = 7341, - [7476] = 7249, - [7477] = 7383, - [7478] = 7250, - [7479] = 7376, - [7480] = 7303, - [7481] = 7244, - [7482] = 7252, - [7483] = 7251, - [7484] = 7247, - [7485] = 7219, - [7486] = 7377, - [7487] = 7330, - [7488] = 7259, - [7489] = 7354, - [7490] = 7388, - [7491] = 7491, - [7492] = 7492, - [7493] = 7237, - [7494] = 7494, - [7495] = 7268, - [7496] = 7496, - [7497] = 7230, - [7498] = 7230, - [7499] = 5699, - [7500] = 7239, - [7501] = 7332, - [7502] = 7303, - [7503] = 7334, - [7504] = 7262, - [7505] = 7337, - [7506] = 7220, - [7507] = 7221, - [7508] = 7232, - [7509] = 7261, - [7510] = 7221, - [7511] = 7260, - [7512] = 7220, - [7513] = 7377, - [7514] = 7247, - [7515] = 7303, - [7516] = 7363, - [7517] = 7221, - [7518] = 7220, - [7519] = 7354, - [7520] = 7464, - [7521] = 7237, - [7522] = 7234, - [7523] = 7523, - [7524] = 7524, - [7525] = 7414, - [7526] = 7237, - [7527] = 7257, - [7528] = 7528, - [7529] = 7329, - [7530] = 7252, - [7531] = 7531, - [7532] = 7414, - [7533] = 7533, - [7534] = 7219, - [7535] = 7535, - [7536] = 7351, - [7537] = 7247, - [7538] = 7236, - [7539] = 7252, - [7540] = 7228, - [7541] = 7252, - [7542] = 7473, - [7543] = 7231, - [7544] = 7260, - [7545] = 7238, - [7546] = 7247, - [7547] = 7261, - [7548] = 7227, - [7549] = 7262, - [7550] = 7535, - [7551] = 7274, - [7552] = 7259, - [7553] = 7235, - [7554] = 7244, - [7555] = 7376, - [7556] = 7556, - [7557] = 7303, - [7558] = 7533, - [7559] = 7354, - [7560] = 7388, - [7561] = 7388, - [7562] = 7247, - [7563] = 7563, - [7564] = 7376, - [7565] = 7565, - [7566] = 7230, - [7567] = 7531, - [7568] = 7252, - [7569] = 7247, - [7570] = 7239, - [7571] = 7341, - [7572] = 7329, - [7573] = 7329, - [7574] = 7227, - [7575] = 7225, - [7576] = 7576, - [7577] = 7239, - [7578] = 7238, - [7579] = 7218, - [7580] = 7244, - [7581] = 7260, - [7582] = 7230, - [7583] = 7261, - [7584] = 7231, - [7585] = 7262, - [7586] = 7259, - [7587] = 5622, - [7588] = 7225, - [7589] = 7240, - [7590] = 7590, - [7591] = 7260, - [7592] = 7218, - [7593] = 7524, - [7594] = 7594, - [7595] = 7261, - [7596] = 7494, - [7597] = 7219, - [7598] = 7259, - [7599] = 7599, - [7600] = 7244, - [7601] = 7237, - [7602] = 7242, - [7603] = 7241, - [7604] = 7363, - [7605] = 7303, - [7606] = 7266, - [7607] = 7258, - [7608] = 7244, - [7609] = 7221, - [7610] = 7225, - [7611] = 7220, - [7612] = 7259, - [7613] = 7230, - [7614] = 4977, - [7615] = 7262, - [7616] = 7262, - [7617] = 7274, - [7618] = 7237, - [7619] = 7590, - [7620] = 7261, - [7621] = 7220, - [7622] = 7622, - [7623] = 7221, - [7624] = 7494, - [7625] = 7260, - [7626] = 7337, - [7627] = 7252, - [7628] = 7414, - [7629] = 7629, - [7630] = 7219, - [7631] = 7410, - [7632] = 7235, - [7633] = 4993, - [7634] = 7337, - [7635] = 7247, - [7636] = 7334, - [7637] = 7332, - [7638] = 7638, - [7639] = 5630, - [7640] = 7252, - [7641] = 7330, - [7642] = 7257, - [7643] = 7241, - [7644] = 7228, - [7645] = 7645, - [7646] = 7239, - [7647] = 7334, - [7648] = 7260, - [7649] = 7228, - [7650] = 7650, - [7651] = 7236, - [7652] = 7351, - [7653] = 7332, - [7654] = 7494, - [7655] = 7655, - [7656] = 7528, - [7657] = 7247, - [7658] = 7303, - [7659] = 7234, - [7660] = 7251, - [7661] = 7250, - [7662] = 7249, - [7663] = 7262, - [7664] = 7261, - [7665] = 7464, - [7666] = 7219, - [7667] = 7236, - [7668] = 7222, - [7669] = 7262, - [7670] = 7252, - [7671] = 7259, - [7672] = 7237, - [7673] = 7244, - [7674] = 7303, - [7675] = 7255, - [7676] = 7232, - [7677] = 7330, - [7678] = 7599, - [7679] = 7338, - [7680] = 7220, - [7681] = 7233, - [7682] = 7221, - [7683] = 7230, - [7684] = 7240, - [7685] = 7239, - [7686] = 7259, - [7687] = 7244, - [7688] = 7303, - [7689] = 7233, - [7690] = 7268, - [7691] = 7338, - [7692] = 7473, - [7693] = 7351, - [7694] = 4982, - [7695] = 5695, - [7696] = 7696, - [7697] = 7242, - [7698] = 7230, - [7699] = 7249, - [7700] = 7250, - [7701] = 7239, - [7702] = 7576, - [7703] = 7251, - [7704] = 7535, - [7705] = 7705, - [7706] = 7221, - [7707] = 7220, - [7708] = 7229, - [7709] = 7230, - [7710] = 7303, - [7711] = 7268, - [7712] = 7239, - [7713] = 7533, - [7714] = 7237, - [7715] = 7233, - [7716] = 7377, - [7717] = 7531, - [7718] = 7261, - [7719] = 7260, - [7720] = 7219, - [7721] = 2665, - [7722] = 7722, - [7723] = 7362, - [7724] = 7247, - [7725] = 7329, - [7726] = 7726, - [7727] = 7252, - [7728] = 7244, - [7729] = 7729, - [7730] = 7259, - [7731] = 7234, - [7732] = 7354, - [7733] = 7260, - [7734] = 7261, - [7735] = 7303, - [7736] = 7330, - [7737] = 5527, - [7738] = 7262, - [7739] = 7332, - [7740] = 7464, - [7741] = 7334, - [7742] = 7226, - [7743] = 7259, - [7744] = 7239, - [7745] = 7224, - [7746] = 7244, - [7747] = 7338, - [7748] = 7262, - [7749] = 7337, - [7750] = 7261, - [7751] = 7260, - [7752] = 7240, - [7753] = 7230, - [7754] = 7230, - [7755] = 7418, - [7756] = 7239, - [7757] = 7757, - [7758] = 7221, - [7759] = 7220, - [7760] = 7303, - [7761] = 7363, - [7762] = 7278, - [7763] = 7473, - [7764] = 7252, - [7765] = 7303, - [7766] = 7247, - [7767] = 7219, - [7768] = 7237, - [7769] = 7377, - [7770] = 7303, - [7771] = 7303, - [7772] = 5698, - [7773] = 7244, - [7774] = 7303, - [7775] = 7655, - [7776] = 7219, - [7777] = 7237, - [7778] = 7259, - [7779] = 7303, - [7780] = 7303, - [7781] = 7494, - [7782] = 7303, - [7783] = 7262, - [7784] = 7231, - [7785] = 7238, - [7786] = 7221, - [7787] = 7220, - [7788] = 7220, - [7789] = 7221, - [7790] = 7227, - [7791] = 7222, - [7792] = 7303, - [7793] = 7237, - [7794] = 7261, - [7795] = 7303, - [7796] = 7267, - [7797] = 7376, - [7798] = 7219, - [7799] = 7260, - [7800] = 7247, - [7801] = 7303, - [7802] = 7252, - [7803] = 7329, - [7804] = 7804, - [7805] = 7260, - [7806] = 7261, - [7807] = 7531, - [7808] = 7232, - [7809] = 7262, - [7810] = 7810, - [7811] = 7533, - [7812] = 7249, - [7813] = 7250, - [7814] = 7259, - [7815] = 7303, - [7816] = 7244, - [7817] = 5613, - [7818] = 7251, - [7819] = 7535, - [7820] = 5711, - [7821] = 7230, - [7822] = 7252, - [7823] = 7239, - [7824] = 7303, - [7825] = 7825, - [7826] = 7255, - [7827] = 7247, - [7828] = 7388, - [7829] = 7303, - [7830] = 7830, - [7831] = 7831, - [7832] = 5709, - [7833] = 7833, - [7834] = 7834, - [7835] = 7831, - [7836] = 7836, - [7837] = 7837, - [7838] = 7833, - [7839] = 7839, - [7840] = 7840, - [7841] = 7841, - [7842] = 7842, - [7843] = 7843, - [7844] = 7836, - [7845] = 7831, - [7846] = 7833, - [7847] = 7847, - [7848] = 7848, - [7849] = 7849, - [7850] = 7850, - [7851] = 7851, - [7852] = 7852, - [7853] = 7836, - [7854] = 7831, - [7855] = 7836, - [7856] = 7833, - [7857] = 7857, - [7858] = 7858, - [7859] = 7833, - [7860] = 7831, - [7861] = 7836, - [7862] = 7840, - [7863] = 7836, - [7864] = 7839, - [7865] = 7865, - [7866] = 7831, - [7867] = 7865, - [7868] = 7833, - [7869] = 7833, - [7870] = 7831, - [7871] = 7836, - [7872] = 7872, - [7873] = 7852, - [7874] = 7874, - [7875] = 7836, - [7876] = 7831, - [7877] = 7833, - [7878] = 7878, - [7879] = 5065, - [7880] = 7880, - [7881] = 5256, - [7882] = 7836, - [7883] = 7850, - [7884] = 7831, - [7885] = 7833, - [7886] = 7886, - [7887] = 7842, - [7888] = 7888, - [7889] = 7847, - [7890] = 7852, - [7891] = 7891, - [7892] = 7892, - [7893] = 7893, - [7894] = 7894, - [7895] = 7895, - [7896] = 7896, - [7897] = 7897, - [7898] = 7839, - [7899] = 7899, - [7900] = 7880, - [7901] = 7847, - [7902] = 7902, - [7903] = 7903, - [7904] = 7830, - [7905] = 7839, - [7906] = 7906, - [7907] = 7907, - [7908] = 7908, - [7909] = 7850, - [7910] = 7842, - [7911] = 7847, - [7912] = 7840, - [7913] = 7913, - [7914] = 7840, - [7915] = 7915, - [7916] = 7850, - [7917] = 7917, - [7918] = 7836, - [7919] = 7831, - [7920] = 7833, - [7921] = 7921, - [7922] = 7922, - [7923] = 7923, - [7924] = 7839, - [7925] = 7913, - [7926] = 7857, - [7927] = 7927, - [7928] = 7865, - [7929] = 7840, - [7930] = 7930, - [7931] = 7931, - [7932] = 7932, - [7933] = 7933, - [7934] = 7880, - [7935] = 7899, - [7936] = 7931, - [7937] = 7852, - [7938] = 5165, - [7939] = 7939, - [7940] = 7915, - [7941] = 7836, - [7942] = 7831, - [7943] = 7833, - [7944] = 7944, - [7945] = 7872, - [7946] = 7880, - [7947] = 7878, - [7948] = 7852, - [7949] = 7840, - [7950] = 7850, - [7951] = 7850, - [7952] = 7952, - [7953] = 7896, - [7954] = 7891, - [7955] = 7852, - [7956] = 7847, - [7957] = 7957, - [7958] = 7840, - [7959] = 7959, - [7960] = 7842, - [7961] = 7840, - [7962] = 7840, - [7963] = 7840, - [7964] = 7933, - [7965] = 7880, - [7966] = 7957, - [7967] = 7880, - [7968] = 7833, - [7969] = 7880, - [7970] = 7865, - [7971] = 7836, - [7972] = 7972, - [7973] = 7906, - [7974] = 7908, - [7975] = 7975, - [7976] = 7852, - [7977] = 7831, - [7978] = 7833, - [7979] = 7847, - [7980] = 7831, - [7981] = 7836, - [7982] = 7865, - [7983] = 7886, - [7984] = 7878, - [7985] = 7985, - [7986] = 7850, - [7987] = 7839, - [7988] = 7872, - [7989] = 7840, - [7990] = 7834, - [7991] = 7902, - [7992] = 7913, - [7993] = 7993, - [7994] = 7994, - [7995] = 7915, - [7996] = 7857, - [7997] = 7957, - [7998] = 7944, - [7999] = 7906, - [8000] = 8000, - [8001] = 7880, - [8002] = 7836, - [8003] = 8003, - [8004] = 7831, - [8005] = 8005, - [8006] = 7840, - [8007] = 8007, - [8008] = 7833, - [8009] = 7839, - [8010] = 7865, - [8011] = 8011, - [8012] = 8012, - [8013] = 7865, - [8014] = 7886, - [8015] = 8015, - [8016] = 7896, - [8017] = 8000, - [8018] = 7891, - [8019] = 7847, - [8020] = 7842, - [8021] = 7847, - [8022] = 7888, - [8023] = 8023, - [8024] = 7842, - [8025] = 7847, - [8026] = 8026, - [8027] = 8027, - [8028] = 7896, - [8029] = 7922, - [8030] = 7839, - [8031] = 7852, - [8032] = 8032, - [8033] = 7839, - [8034] = 8034, - [8035] = 7959, - [8036] = 7836, - [8037] = 7833, - [8038] = 7831, - [8039] = 7836, - [8040] = 7831, - [8041] = 7880, - [8042] = 7833, - [8043] = 7959, - [8044] = 7836, - [8045] = 7831, - [8046] = 7833, - [8047] = 5095, - [8048] = 8015, - [8049] = 7842, - [8050] = 8050, - [8051] = 5240, - [8052] = 7922, - [8053] = 8011, - [8054] = 7850, - [8055] = 8055, - [8056] = 7858, - [8057] = 7848, - [8058] = 7907, - [8059] = 7903, - [8060] = 8005, - [8061] = 7848, - [8062] = 8062, - [8063] = 7850, - [8064] = 7847, - [8065] = 7858, - [8066] = 8003, - [8067] = 7852, - [8068] = 7839, - [8069] = 8050, - [8070] = 7880, - [8071] = 7836, - [8072] = 8072, - [8073] = 7891, - [8074] = 7831, - [8075] = 7833, - [8076] = 8003, - [8077] = 7902, - [8078] = 7830, - [8079] = 7896, - [8080] = 7985, - [8081] = 7865, - [8082] = 7880, - [8083] = 7865, - [8084] = 8026, - [8085] = 7985, - [8086] = 7952, - [8087] = 7840, - [8088] = 7933, - [8089] = 8023, - [8090] = 7839, - [8091] = 7852, - [8092] = 7886, - [8093] = 7850, - [8094] = 7865, - [8095] = 8095, - [8096] = 7830, - [8097] = 7836, - [8098] = 7831, - [8099] = 8062, - [8100] = 7833, - [8101] = 7902, - [8102] = 7959, - [8103] = 7848, - [8104] = 7906, - [8105] = 8105, - [8106] = 8032, - [8107] = 7915, - [8108] = 7899, - [8109] = 7985, - [8110] = 8110, - [8111] = 7857, - [8112] = 7952, - [8113] = 7933, - [8114] = 7830, - [8115] = 7842, - [8116] = 7847, - [8117] = 7840, - [8118] = 7830, - [8119] = 7847, - [8120] = 7872, - [8121] = 8005, - [8122] = 7891, - [8123] = 7888, - [8124] = 8007, - [8125] = 7839, - [8126] = 7852, - [8127] = 7896, - [8128] = 7930, - [8129] = 7836, - [8130] = 7830, - [8131] = 7852, - [8132] = 7831, - [8133] = 7865, - [8134] = 7833, - [8135] = 7842, - [8136] = 7847, - [8137] = 7899, - [8138] = 7880, - [8139] = 7896, - [8140] = 7850, - [8141] = 7830, - [8142] = 7985, - [8143] = 7839, - [8144] = 7852, - [8145] = 8145, - [8146] = 7902, - [8147] = 7931, - [8148] = 7874, - [8149] = 7880, - [8150] = 8150, - [8151] = 7858, - [8152] = 5076, - [8153] = 7865, - [8154] = 7880, - [8155] = 7830, - [8156] = 7903, - [8157] = 7857, - [8158] = 7985, - [8159] = 7880, - [8160] = 8005, - [8161] = 7865, - [8162] = 7857, - [8163] = 7857, - [8164] = 7830, - [8165] = 7852, - [8166] = 8166, - [8167] = 7836, - [8168] = 7831, - [8169] = 8169, - [8170] = 7833, - [8171] = 8062, - [8172] = 8015, - [8173] = 8173, - [8174] = 7985, - [8175] = 7896, - [8176] = 7850, - [8177] = 5054, - [8178] = 7842, - [8179] = 7865, - [8180] = 7852, - [8181] = 7985, - [8182] = 7847, - [8183] = 7830, - [8184] = 7897, - [8185] = 7830, - [8186] = 7850, - [8187] = 7830, - [8188] = 7839, - [8189] = 8189, - [8190] = 7852, - [8191] = 8003, - [8192] = 7888, - [8193] = 7830, - [8194] = 8005, - [8195] = 7865, - [8196] = 8011, - [8197] = 7836, - [8198] = 7831, - [8199] = 7906, - [8200] = 7833, - [8201] = 7922, - [8202] = 7850, - [8203] = 7848, - [8204] = 7865, - [8205] = 7830, - [8206] = 8206, - [8207] = 7850, - [8208] = 8000, - [8209] = 7852, - [8210] = 7865, - [8211] = 8007, - [8212] = 7865, - [8213] = 7848, - [8214] = 7922, - [8215] = 7830, - [8216] = 7830, - [8217] = 7959, - [8218] = 7850, - [8219] = 7833, - [8220] = 7831, - [8221] = 7836, - [8222] = 7985, - [8223] = 8223, - [8224] = 7850, - [8225] = 7830, - [8226] = 7852, - [8227] = 7830, - [8228] = 7865, - [8229] = 7830, - [8230] = 7830, - [8231] = 8011, - [8232] = 7830, - [8233] = 8011, - [8234] = 8005, - [8235] = 7830, - [8236] = 8011, - [8237] = 7850, - [8238] = 8005, - [8239] = 7865, - [8240] = 7830, - [8241] = 7858, - [8242] = 7852, - [8243] = 8034, - [8244] = 7830, - [8245] = 7865, - [8246] = 7836, - [8247] = 7830, - [8248] = 7831, - [8249] = 7874, - [8250] = 7830, - [8251] = 7833, - [8252] = 7922, - [8253] = 7830, - [8254] = 7830, - [8255] = 7830, - [8256] = 7830, - [8257] = 8110, - [8258] = 7850, - [8259] = 8105, - [8260] = 7930, - [8261] = 7906, - [8262] = 7852, - [8263] = 8005, - [8264] = 8095, - [8265] = 7865, - [8266] = 7906, - [8267] = 7839, - [8268] = 7944, - [8269] = 7985, - [8270] = 7915, - [8271] = 7852, - [8272] = 7913, - [8273] = 7850, - [8274] = 7852, - [8275] = 7840, - [8276] = 7850, - [8277] = 7839, - [8278] = 7852, - [8279] = 7865, - [8280] = 7847, - [8281] = 7985, - [8282] = 7840, - [8283] = 7839, - [8284] = 7839, - [8285] = 7833, - [8286] = 7831, - [8287] = 7847, - [8288] = 8288, - [8289] = 7836, - [8290] = 7834, - [8291] = 7872, - [8292] = 7878, - [8293] = 8003, - [8294] = 8294, - [8295] = 7842, - [8296] = 7847, - [8297] = 7857, - [8298] = 8027, - [8299] = 7896, - [8300] = 7957, - [8301] = 8032, - [8302] = 8032, - [8303] = 8011, - [8304] = 7865, - [8305] = 7865, - [8306] = 7908, - [8307] = 7850, - [8308] = 7850, - [8309] = 7880, - [8310] = 7952, - [8311] = 7852, - [8312] = 8005, - [8313] = 7922, - [8314] = 7852, - [8315] = 8315, - [8316] = 8316, - [8317] = 8317, - [8318] = 8318, - [8319] = 8319, - [8320] = 8320, - [8321] = 8321, - [8322] = 8315, - [8323] = 8323, - [8324] = 8324, - [8325] = 8325, - [8326] = 8326, - [8327] = 8327, - [8328] = 8328, - [8329] = 8329, - [8330] = 8330, - [8331] = 8331, - [8332] = 8332, - [8333] = 8333, - [8334] = 8334, - [8335] = 8335, - [8336] = 8336, - [8337] = 8337, - [8338] = 8338, - [8339] = 8339, - [8340] = 8340, - [8341] = 8341, - [8342] = 8342, - [8343] = 8343, - [8344] = 8344, - [8345] = 8345, - [8346] = 8346, - [8347] = 8347, - [8348] = 8348, - [8349] = 8349, - [8350] = 8350, - [8351] = 8351, - [8352] = 8352, - [8353] = 8353, - [8354] = 8354, - [8355] = 8355, - [8356] = 8356, - [8357] = 8357, - [8358] = 8358, - [8359] = 8359, - [8360] = 8360, - [8361] = 8361, - [8362] = 8362, - [8363] = 8340, - [8364] = 8364, - [8365] = 8365, - [8366] = 8359, - [8367] = 8367, - [8368] = 8368, - [8369] = 8369, - [8370] = 8370, - [8371] = 8317, - [8372] = 8355, - [8373] = 8373, - [8374] = 8318, - [8375] = 8319, - [8376] = 8376, - [8377] = 8377, - [8378] = 8378, - [8379] = 8379, - [8380] = 8321, - [8381] = 8381, - [8382] = 8382, - [8383] = 8353, - [8384] = 8384, - [8385] = 8338, - [8386] = 8326, - [8387] = 8328, - [8388] = 8352, - [8389] = 8329, - [8390] = 8350, - [8391] = 8349, - [8392] = 8348, - [8393] = 8347, - [8394] = 8332, - [8395] = 8346, - [8396] = 8396, - [8397] = 8345, - [8398] = 8398, - [8399] = 8365, - [8400] = 8334, - [8401] = 8401, - [8402] = 8343, - [8403] = 8403, - [8404] = 8331, - [8405] = 8340, - [8406] = 8340, - [8407] = 8407, - [8408] = 8362, - [8409] = 8409, - [8410] = 8410, - [8411] = 8411, - [8412] = 8396, - [8413] = 8338, - [8414] = 8403, - [8415] = 8410, - [8416] = 8345, - [8417] = 8346, - [8418] = 8347, - [8419] = 8348, - [8420] = 8349, - [8421] = 8409, - [8422] = 8398, - [8423] = 8334, - [8424] = 8398, - [8425] = 8396, - [8426] = 8362, - [8427] = 8403, - [8428] = 8333, - [8429] = 8359, - [8430] = 8331, - [8431] = 8431, - [8432] = 8432, - [8433] = 8433, - [8434] = 8317, - [8435] = 8318, - [8436] = 8319, - [8437] = 8433, - [8438] = 8410, - [8439] = 8409, - [8440] = 8407, - [8441] = 8321, - [8442] = 8332, - [8443] = 8354, - [8444] = 8401, - [8445] = 8326, - [8446] = 8328, - [8447] = 8329, - [8448] = 8329, - [8449] = 8384, - [8450] = 8328, - [8451] = 8327, - [8452] = 8332, - [8453] = 8326, - [8454] = 8407, - [8455] = 8455, - [8456] = 8382, - [8457] = 8370, - [8458] = 8334, - [8459] = 8381, - [8460] = 8364, - [8461] = 8340, - [8462] = 8321, - [8463] = 8379, - [8464] = 8378, - [8465] = 8377, - [8466] = 8358, - [8467] = 8376, - [8468] = 8345, - [8469] = 8346, - [8470] = 8347, - [8471] = 8348, - [8472] = 8349, - [8473] = 8473, - [8474] = 8334, - [8475] = 8373, - [8476] = 8357, - [8477] = 8319, - [8478] = 8478, - [8479] = 8359, - [8480] = 8318, - [8481] = 8481, - [8482] = 8320, - [8483] = 8317, - [8484] = 8317, - [8485] = 8318, - [8486] = 8319, - [8487] = 8487, - [8488] = 8401, - [8489] = 8401, - [8490] = 8321, - [8491] = 8360, - [8492] = 8323, - [8493] = 8328, - [8494] = 8329, - [8495] = 8324, - [8496] = 8325, - [8497] = 8431, - [8498] = 8344, - [8499] = 8332, - [8500] = 8500, - [8501] = 8342, - [8502] = 8341, - [8503] = 8359, - [8504] = 8334, - [8505] = 8339, - [8506] = 8340, - [8507] = 8330, - [8508] = 8336, - [8509] = 8509, - [8510] = 8510, - [8511] = 8511, - [8512] = 8345, - [8513] = 8346, - [8514] = 8347, - [8515] = 8348, - [8516] = 8349, - [8517] = 8335, - [8518] = 8518, - [8519] = 8401, - [8520] = 8336, - [8521] = 8330, - [8522] = 8339, - [8523] = 8359, - [8524] = 8341, - [8525] = 8525, - [8526] = 8342, - [8527] = 8344, - [8528] = 8317, - [8529] = 8318, - [8530] = 8319, - [8531] = 8431, - [8532] = 8351, - [8533] = 8325, - [8534] = 8321, - [8535] = 8324, - [8536] = 8360, - [8537] = 8328, - [8538] = 8329, - [8539] = 8539, - [8540] = 8323, - [8541] = 8541, - [8542] = 8361, - [8543] = 8332, - [8544] = 8315, - [8545] = 8545, - [8546] = 8320, - [8547] = 8357, - [8548] = 8334, - [8549] = 8343, - [8550] = 8340, - [8551] = 8365, - [8552] = 8358, - [8553] = 8364, - [8554] = 8554, - [8555] = 8555, - [8556] = 8345, - [8557] = 8346, - [8558] = 8347, - [8559] = 8348, - [8560] = 8349, - [8561] = 8367, - [8562] = 8370, - [8563] = 8384, - [8564] = 8350, - [8565] = 8565, - [8566] = 8566, - [8567] = 8359, - [8568] = 8373, - [8569] = 8354, - [8570] = 8376, - [8571] = 8377, - [8572] = 8317, - [8573] = 8318, - [8574] = 8319, - [8575] = 8575, - [8576] = 8378, - [8577] = 8379, - [8578] = 8321, - [8579] = 8381, - [8580] = 8382, - [8581] = 8328, - [8582] = 8329, - [8583] = 8331, - [8584] = 8362, - [8585] = 8396, - [8586] = 8398, - [8587] = 8332, - [8588] = 8588, - [8589] = 8403, - [8590] = 8355, - [8591] = 8410, - [8592] = 8334, - [8593] = 8335, - [8594] = 8340, - [8595] = 8401, - [8596] = 8353, - [8597] = 8382, - [8598] = 8598, - [8599] = 8345, - [8600] = 8346, - [8601] = 8347, - [8602] = 8348, - [8603] = 8349, - [8604] = 8604, - [8605] = 8381, - [8606] = 8352, - [8607] = 8607, - [8608] = 8379, - [8609] = 8339, - [8610] = 8359, - [8611] = 8487, - [8612] = 8349, - [8613] = 8407, - [8614] = 8409, - [8615] = 8317, - [8616] = 8318, - [8617] = 8319, - [8618] = 8410, - [8619] = 8348, - [8620] = 8403, - [8621] = 8321, - [8622] = 8398, - [8623] = 8396, - [8624] = 8328, - [8625] = 8329, - [8626] = 8362, - [8627] = 8347, - [8628] = 8331, - [8629] = 8333, - [8630] = 8332, - [8631] = 8346, - [8632] = 8378, - [8633] = 8345, - [8634] = 8377, - [8635] = 8334, - [8636] = 8373, - [8637] = 8340, - [8638] = 8365, - [8639] = 8356, - [8640] = 8640, - [8641] = 8641, - [8642] = 8345, - [8643] = 8346, - [8644] = 8347, - [8645] = 8348, - [8646] = 8349, - [8647] = 8343, - [8648] = 8360, - [8649] = 8433, - [8650] = 8650, - [8651] = 8651, - [8652] = 8344, - [8653] = 8359, - [8654] = 8340, - [8655] = 8342, - [8656] = 8354, - [8657] = 8317, - [8658] = 8318, - [8659] = 8319, - [8660] = 8341, - [8661] = 8339, - [8662] = 8338, - [8663] = 8321, - [8664] = 8384, - [8665] = 8336, - [8666] = 8328, - [8667] = 8329, - [8668] = 8370, - [8669] = 8364, - [8670] = 8354, - [8671] = 8335, - [8672] = 8332, - [8673] = 8334, - [8674] = 8333, - [8675] = 8640, - [8676] = 8641, - [8677] = 8334, - [8678] = 8409, - [8679] = 8340, - [8680] = 8325, - [8681] = 8358, - [8682] = 8324, - [8683] = 8683, - [8684] = 8345, - [8685] = 8346, - [8686] = 8347, - [8687] = 8348, - [8688] = 8349, - [8689] = 8357, - [8690] = 8323, - [8691] = 8478, - [8692] = 8332, - [8693] = 8315, - [8694] = 8320, - [8695] = 8359, - [8696] = 8329, - [8697] = 8320, - [8698] = 8328, - [8699] = 8317, - [8700] = 8318, - [8701] = 8319, - [8702] = 8702, - [8703] = 8315, - [8704] = 8327, - [8705] = 8321, - [8706] = 8323, - [8707] = 8324, - [8708] = 8328, - [8709] = 8329, - [8710] = 8325, - [8711] = 8478, - [8712] = 8326, - [8713] = 8357, - [8714] = 8332, - [8715] = 8358, - [8716] = 8321, - [8717] = 8364, - [8718] = 8330, - [8719] = 8334, - [8720] = 8370, - [8721] = 8340, - [8722] = 8384, - [8723] = 8319, - [8724] = 8335, - [8725] = 8318, - [8726] = 8345, - [8727] = 8346, - [8728] = 8347, - [8729] = 8348, - [8730] = 8349, - [8731] = 8336, - [8732] = 8354, - [8733] = 8317, - [8734] = 8734, - [8735] = 8362, - [8736] = 8331, - [8737] = 8359, - [8738] = 8341, - [8739] = 8342, - [8740] = 8344, - [8741] = 8317, - [8742] = 8318, - [8743] = 8319, - [8744] = 8331, - [8745] = 8431, - [8746] = 2118, - [8747] = 8321, - [8748] = 8351, - [8749] = 2114, - [8750] = 8328, - [8751] = 8329, - [8752] = 8396, - [8753] = 8384, - [8754] = 8500, - [8755] = 8398, - [8756] = 8332, - [8757] = 8403, - [8758] = 8359, - [8759] = 8410, - [8760] = 8409, - [8761] = 8334, - [8762] = 8330, - [8763] = 8340, - [8764] = 2084, - [8765] = 8382, - [8766] = 8766, - [8767] = 8381, - [8768] = 8345, - [8769] = 8346, - [8770] = 8347, - [8771] = 8348, - [8772] = 8349, - [8773] = 8379, - [8774] = 2082, - [8775] = 8360, - [8776] = 8378, - [8777] = 8377, - [8778] = 8359, - [8779] = 8539, - [8780] = 8361, - [8781] = 8373, - [8782] = 8317, - [8783] = 8318, - [8784] = 8319, - [8785] = 8683, - [8786] = 8365, - [8787] = 8360, - [8788] = 8321, - [8789] = 8344, - [8790] = 8790, - [8791] = 8328, - [8792] = 8329, - [8793] = 8365, - [8794] = 8342, - [8795] = 8341, - [8796] = 8554, - [8797] = 8332, - [8798] = 8345, - [8799] = 8339, - [8800] = 8336, - [8801] = 8367, - [8802] = 8334, - [8803] = 8803, - [8804] = 8340, - [8805] = 8335, - [8806] = 8545, - [8807] = 8382, - [8808] = 8346, - [8809] = 8345, - [8810] = 8346, - [8811] = 8347, - [8812] = 8348, - [8813] = 8349, - [8814] = 8330, - [8815] = 8815, - [8816] = 8373, - [8817] = 8359, - [8818] = 8818, - [8819] = 8819, - [8820] = 8319, - [8821] = 8381, - [8822] = 8376, - [8823] = 8377, - [8824] = 8321, - [8825] = 8378, - [8826] = 8379, - [8827] = 8381, - [8828] = 8379, - [8829] = 8829, - [8830] = 8378, - [8831] = 8332, - [8832] = 8377, - [8833] = 8325, - [8834] = 8324, - [8835] = 8323, - [8836] = 8334, - [8837] = 8382, - [8838] = 8340, - [8839] = 8315, - [8840] = 8376, - [8841] = 8379, - [8842] = 8819, - [8843] = 8345, - [8844] = 8346, - [8845] = 8347, - [8846] = 8348, - [8847] = 8349, - [8848] = 8320, - [8849] = 8401, - [8850] = 8373, - [8851] = 8359, - [8852] = 8347, - [8853] = 8348, - [8854] = 8319, - [8855] = 8349, - [8856] = 8358, - [8857] = 8364, - [8858] = 8321, - [8859] = 8401, - [8860] = 8370, - [8861] = 8384, - [8862] = 8862, - [8863] = 8354, - [8864] = 8407, - [8865] = 8332, - [8866] = 8379, - [8867] = 8331, - [8868] = 8357, - [8869] = 8409, - [8870] = 8334, - [8871] = 8410, - [8872] = 8340, - [8873] = 8411, - [8874] = 8362, - [8875] = 8332, - [8876] = 8396, - [8877] = 8345, - [8878] = 8346, - [8879] = 8347, - [8880] = 8348, - [8881] = 8349, - [8882] = 8398, - [8883] = 8403, - [8884] = 8359, - [8885] = 8398, - [8886] = 8319, - [8887] = 8321, - [8888] = 8396, - [8889] = 8362, - [8890] = 8332, - [8891] = 8341, - [8892] = 8342, - [8893] = 8344, - [8894] = 8334, - [8895] = 8403, - [8896] = 8340, - [8897] = 8455, - [8898] = 8345, - [8899] = 8346, - [8900] = 8347, - [8901] = 8348, - [8902] = 8349, - [8903] = 8350, - [8904] = 8331, - [8905] = 8607, - [8906] = 8321, - [8907] = 8410, - [8908] = 8409, - [8909] = 8352, - [8910] = 8401, - [8911] = 8340, - [8912] = 8382, - [8913] = 8346, - [8914] = 8347, - [8915] = 8348, - [8916] = 8349, - [8917] = 8401, - [8918] = 8356, - [8919] = 8378, - [8920] = 8321, - [8921] = 8377, - [8922] = 8922, - [8923] = 8923, - [8924] = 8373, - [8925] = 8340, - [8926] = 8433, - [8927] = 8346, - [8928] = 8347, - [8929] = 8348, - [8930] = 8349, - [8931] = 8365, - [8932] = 8360, - [8933] = 8933, - [8934] = 8321, - [8935] = 8344, - [8936] = 8342, - [8937] = 8341, - [8938] = 8339, - [8939] = 8340, - [8940] = 8354, - [8941] = 8346, - [8942] = 8347, - [8943] = 8348, - [8944] = 8349, - [8945] = 8336, - [8946] = 8357, - [8947] = 8384, - [8948] = 8321, - [8949] = 8766, - [8950] = 8330, - [8951] = 8325, - [8952] = 8324, - [8953] = 8340, - [8954] = 8323, - [8955] = 8346, - [8956] = 8347, - [8957] = 8348, - [8958] = 8349, - [8959] = 8315, - [8960] = 8320, - [8961] = 8357, - [8962] = 8321, - [8963] = 8829, - [8964] = 8358, - [8965] = 8367, - [8966] = 8364, - [8967] = 8340, - [8968] = 8370, - [8969] = 8346, - [8970] = 8347, - [8971] = 8348, - [8972] = 8349, - [8973] = 8384, - [8974] = 8370, - [8975] = 8364, - [8976] = 8321, - [8977] = 8354, - [8978] = 8335, - [8979] = 8362, - [8980] = 8396, - [8981] = 8340, - [8982] = 8398, - [8983] = 8346, - [8984] = 8347, - [8985] = 8348, - [8986] = 8349, - [8987] = 8403, - [8988] = 8410, - [8989] = 8358, - [8990] = 8321, - [8991] = 8330, - [8992] = 8409, - [8993] = 8358, - [8994] = 8382, - [8995] = 8340, - [8996] = 8379, - [8997] = 8346, - [8998] = 8347, - [8999] = 8348, - [9000] = 8349, - [9001] = 8378, - [9002] = 8357, - [9003] = 8340, - [9004] = 8377, - [9005] = 8346, - [9006] = 9006, - [9007] = 8478, - [9008] = 8340, - [9009] = 8373, - [9010] = 8346, - [9011] = 8365, - [9012] = 8320, - [9013] = 8340, - [9014] = 8365, - [9015] = 8346, - [9016] = 8360, - [9017] = 9017, - [9018] = 8340, - [9019] = 8790, - [9020] = 8346, - [9021] = 8344, - [9022] = 8342, - [9023] = 8340, - [9024] = 8341, - [9025] = 8346, - [9026] = 8339, - [9027] = 8315, - [9028] = 8340, - [9029] = 8336, - [9030] = 8346, - [9031] = 8323, - [9032] = 8324, - [9033] = 8358, - [9034] = 9034, - [9035] = 8335, - [9036] = 8325, - [9037] = 8330, - [9038] = 8487, - [9039] = 8325, - [9040] = 8335, - [9041] = 8324, - [9042] = 8353, - [9043] = 8323, - [9044] = 8315, - [9045] = 8320, - [9046] = 9046, - [9047] = 8357, - [9048] = 9048, - [9049] = 8335, - [9050] = 8336, - [9051] = 9051, - [9052] = 8339, - [9053] = 9053, - [9054] = 9054, - [9055] = 8341, - [9056] = 9056, - [9057] = 8342, - [9058] = 8370, - [9059] = 8335, - [9060] = 8364, - [9061] = 8344, - [9062] = 9062, - [9063] = 8431, - [9064] = 8351, - [9065] = 8370, - [9066] = 9066, - [9067] = 8384, - [9068] = 8351, - [9069] = 8431, - [9070] = 8364, - [9071] = 8354, - [9072] = 8344, - [9073] = 8342, - [9074] = 8331, - [9075] = 8362, - [9076] = 8396, - [9077] = 8329, - [9078] = 9053, - [9079] = 8341, - [9080] = 9034, - [9081] = 8398, - [9082] = 8339, - [9083] = 8336, - [9084] = 8335, - [9085] = 8403, - [9086] = 8410, - [9087] = 9046, - [9088] = 8331, - [9089] = 8401, - [9090] = 8361, - [9091] = 8382, - [9092] = 9092, - [9093] = 8379, - [9094] = 8378, - [9095] = 8604, - [9096] = 8377, - [9097] = 8330, - [9098] = 8409, - [9099] = 8365, - [9100] = 8325, - [9101] = 8324, - [9102] = 8337, - [9103] = 8360, - [9104] = 8369, - [9105] = 8323, - [9106] = 8344, - [9107] = 8509, - [9108] = 8510, - [9109] = 8511, - [9110] = 8315, - [9111] = 8342, - [9112] = 8341, - [9113] = 8355, - [9114] = 8339, - [9115] = 8554, - [9116] = 8320, - [9117] = 8336, - [9118] = 9118, - [9119] = 8367, - [9120] = 9066, - [9121] = 8328, - [9122] = 8360, - [9123] = 8651, - [9124] = 8355, - [9125] = 8818, - [9126] = 8330, - [9127] = 9127, - [9128] = 8539, - [9129] = 9129, - [9130] = 8361, - [9131] = 8325, - [9132] = 8353, - [9133] = 9017, - [9134] = 8324, - [9135] = 8323, - [9136] = 8790, - [9137] = 9137, - [9138] = 8315, - [9139] = 8365, - [9140] = 8320, - [9141] = 8357, - [9142] = 8554, - [9143] = 9006, - [9144] = 8433, - [9145] = 8352, - [9146] = 8607, - [9147] = 8350, - [9148] = 8349, - [9149] = 8348, - [9150] = 8347, - [9151] = 8357, - [9152] = 9152, - [9153] = 8373, - [9154] = 8815, - [9155] = 8346, - [9156] = 8819, - [9157] = 8376, - [9158] = 8377, - [9159] = 9129, - [9160] = 8378, - [9161] = 8379, - [9162] = 9162, - [9163] = 8539, - [9164] = 8702, - [9165] = 8381, - [9166] = 8382, - [9167] = 8345, - [9168] = 9127, - [9169] = 8478, - [9170] = 8364, - [9171] = 8803, - [9172] = 8327, - [9173] = 8650, - [9174] = 8370, - [9175] = 8384, - [9176] = 8565, - [9177] = 8354, - [9178] = 8343, - [9179] = 8478, - [9180] = 8331, - [9181] = 8326, - [9182] = 8360, - [9183] = 8362, - [9184] = 9162, - [9185] = 9185, - [9186] = 8368, - [9187] = 8396, - [9188] = 9188, - [9189] = 8340, - [9190] = 8398, - [9191] = 8401, - [9192] = 8403, - [9193] = 8338, - [9194] = 8357, - [9195] = 8410, - [9196] = 9196, - [9197] = 8409, - [9198] = 8334, - [9199] = 8401, - [9200] = 9188, - [9201] = 8358, - [9202] = 8327, - [9203] = 9152, - [9204] = 8407, - [9205] = 8409, - [9206] = 8410, - [9207] = 8382, - [9208] = 8411, - [9209] = 8379, - [9210] = 8604, - [9211] = 8403, - [9212] = 8378, - [9213] = 8398, - [9214] = 8377, - [9215] = 8396, - [9216] = 8362, - [9217] = 8333, - [9218] = 8640, - [9219] = 8641, - [9220] = 9066, - [9221] = 8455, - [9222] = 8373, - [9223] = 8365, - [9224] = 8360, - [9225] = 8364, - [9226] = 8370, - [9227] = 8331, - [9228] = 8321, - [9229] = 8734, - [9230] = 8320, - [9231] = 8373, - [9232] = 8344, - [9233] = 8342, - [9234] = 8341, - [9235] = 8683, - [9236] = 9236, - [9237] = 8339, - [9238] = 8356, - [9239] = 8829, - [9240] = 8336, - [9241] = 8332, - [9242] = 9242, - [9243] = 9051, - [9244] = 8329, - [9245] = 8325, - [9246] = 9246, - [9247] = 8328, - [9248] = 8702, - [9249] = 8384, - [9250] = 8362, - [9251] = 8324, - [9252] = 8478, - [9253] = 8326, - [9254] = 8323, - [9255] = 8315, - [9256] = 8320, - [9257] = 8683, - [9258] = 8357, - [9259] = 8344, - [9260] = 8342, - [9261] = 8341, - [9262] = 8354, - [9263] = 8321, - [9264] = 9264, - [9265] = 8364, - [9266] = 8357, - [9267] = 8331, - [9268] = 8766, - [9269] = 8370, - [9270] = 8384, - [9271] = 8766, - [9272] = 9246, - [9273] = 8315, - [9274] = 9274, - [9275] = 9275, - [9276] = 8378, - [9277] = 8384, - [9278] = 8354, - [9279] = 8331, - [9280] = 9056, - [9281] = 8362, - [9282] = 8396, - [9283] = 8829, - [9284] = 8398, - [9285] = 8319, - [9286] = 8318, - [9287] = 9046, - [9288] = 8403, - [9289] = 8315, - [9290] = 8317, - [9291] = 8410, - [9292] = 9056, - [9293] = 8354, - [9294] = 8487, - [9295] = 8409, - [9296] = 8401, - [9297] = 9066, - [9298] = 8382, - [9299] = 8323, - [9300] = 8370, - [9301] = 8324, - [9302] = 9053, - [9303] = 9034, - [9304] = 8379, - [9305] = 5815, - [9306] = 8364, - [9307] = 8337, - [9308] = 8378, - [9309] = 9309, - [9310] = 8509, - [9311] = 8510, - [9312] = 8511, - [9313] = 8377, - [9314] = 8651, - [9315] = 8373, - [9316] = 8335, - [9317] = 8365, - [9318] = 8358, - [9319] = 8575, - [9320] = 8500, - [9321] = 8541, - [9322] = 8360, - [9323] = 8359, - [9324] = 8339, - [9325] = 8325, - [9326] = 8336, - [9327] = 8330, - [9328] = 8330, - [9329] = 8319, - [9330] = 8325, - [9331] = 8357, - [9332] = 8365, - [9333] = 8382, - [9334] = 9046, - [9335] = 8318, - [9336] = 9162, - [9337] = 8478, - [9338] = 8362, - [9339] = 9056, - [9340] = 8370, - [9341] = 8324, - [9342] = 8365, - [9343] = 8433, - [9344] = 9066, - [9345] = 8317, - [9346] = 9346, - [9347] = 8382, - [9348] = 8362, - [9349] = 9053, - [9350] = 9034, - [9351] = 8370, - [9352] = 8323, - [9353] = 8337, - [9354] = 8365, - [9355] = 9092, - [9356] = 8509, - [9357] = 8510, - [9358] = 8511, - [9359] = 8382, - [9360] = 8487, - [9361] = 8320, - [9362] = 8362, - [9363] = 8370, - [9364] = 8315, - [9365] = 8365, - [9366] = 8382, - [9367] = 8365, - [9368] = 9056, - [9369] = 8370, - [9370] = 8365, - [9371] = 8382, - [9372] = 8362, - [9373] = 8356, - [9374] = 9053, - [9375] = 9034, - [9376] = 8370, - [9377] = 8362, - [9378] = 8337, - [9379] = 8382, - [9380] = 8509, - [9381] = 8510, - [9382] = 8511, - [9383] = 8362, - [9384] = 8323, - [9385] = 8324, - [9386] = 8370, - [9387] = 8325, - [9388] = 8323, - [9389] = 8320, - [9390] = 8330, - [9391] = 8360, - [9392] = 8330, - [9393] = 9053, - [9394] = 9034, - [9395] = 8365, - [9396] = 8337, - [9397] = 8509, - [9398] = 8510, - [9399] = 8511, - [9400] = 8373, - [9401] = 8382, - [9402] = 8331, - [9403] = 8362, - [9404] = 8354, - [9405] = 8370, - [9406] = 8455, - [9407] = 8320, - [9408] = 8323, - [9409] = 8324, - [9410] = 9053, - [9411] = 9034, - [9412] = 8336, - [9413] = 8509, - [9414] = 8510, - [9415] = 8511, - [9416] = 8362, - [9417] = 9046, - [9418] = 8360, - [9419] = 9092, - [9420] = 8365, - [9421] = 9421, - [9422] = 8373, - [9423] = 8382, - [9424] = 8362, - [9425] = 8396, - [9426] = 9053, - [9427] = 9034, - [9428] = 8354, - [9429] = 8509, - [9430] = 8510, - [9431] = 8511, - [9432] = 8370, - [9433] = 8320, - [9434] = 8398, - [9435] = 8403, - [9436] = 9436, - [9437] = 8323, - [9438] = 8324, - [9439] = 8336, - [9440] = 8360, - [9441] = 8365, - [9442] = 9053, - [9443] = 9034, - [9444] = 8373, - [9445] = 8509, - [9446] = 8510, - [9447] = 8511, - [9448] = 8335, - [9449] = 8382, - [9450] = 3983, - [9451] = 8411, - [9452] = 8336, - [9453] = 8410, - [9454] = 8339, - [9455] = 8410, - [9456] = 8362, - [9457] = 8341, - [9458] = 9053, - [9459] = 8354, - [9460] = 8509, - [9461] = 8510, - [9462] = 8511, - [9463] = 8342, - [9464] = 8370, - [9465] = 8344, - [9466] = 8320, - [9467] = 8431, - [9468] = 8335, - [9469] = 3964, - [9470] = 8323, - [9471] = 8324, - [9472] = 9472, - [9473] = 9053, - [9474] = 9118, - [9475] = 8509, - [9476] = 8510, - [9477] = 8511, - [9478] = 8336, - [9479] = 3986, - [9480] = 3949, - [9481] = 8409, - [9482] = 8336, - [9483] = 8339, - [9484] = 4011, - [9485] = 8339, - [9486] = 8364, - [9487] = 8407, - [9488] = 9053, - [9489] = 8360, - [9490] = 8509, - [9491] = 8510, - [9492] = 8511, - [9493] = 9493, - [9494] = 4035, - [9495] = 8500, - [9496] = 8365, - [9497] = 8341, - [9498] = 8342, - [9499] = 8344, - [9500] = 8373, - [9501] = 8382, - [9502] = 8351, - [9503] = 9053, - [9504] = 8410, - [9505] = 8509, - [9506] = 8510, - [9507] = 8511, - [9508] = 8323, - [9509] = 8431, - [9510] = 8354, - [9511] = 8370, - [9512] = 8320, - [9513] = 8401, - [9514] = 8351, - [9515] = 8323, - [9516] = 8324, - [9517] = 9517, - [9518] = 9053, - [9519] = 8370, - [9520] = 8509, - [9521] = 8510, - [9522] = 8511, - [9523] = 8359, - [9524] = 8336, - [9525] = 8339, - [9526] = 8384, - [9527] = 8360, - [9528] = 8365, - [9529] = 8373, - [9530] = 8382, - [9531] = 8410, - [9532] = 9532, - [9533] = 9053, - [9534] = 8362, - [9535] = 8509, - [9536] = 8510, - [9537] = 8511, - [9538] = 8481, - [9539] = 9539, - [9540] = 8354, - [9541] = 8370, - [9542] = 8320, - [9543] = 9053, - [9544] = 8323, - [9545] = 8509, - [9546] = 8510, - [9547] = 8511, - [9548] = 8324, - [9549] = 8336, - [9550] = 8339, - [9551] = 8354, - [9552] = 8565, - [9553] = 9053, - [9554] = 8360, - [9555] = 8509, - [9556] = 8510, - [9557] = 8511, - [9558] = 8566, - [9559] = 8365, - [9560] = 8373, - [9561] = 8382, - [9562] = 9053, - [9563] = 8509, - [9564] = 8510, - [9565] = 8511, - [9566] = 8410, - [9567] = 8362, - [9568] = 9053, - [9569] = 8509, - [9570] = 8510, - [9571] = 8511, - [9572] = 8354, - [9573] = 8370, - [9574] = 9053, - [9575] = 8509, - [9576] = 8510, - [9577] = 8511, - [9578] = 8320, - [9579] = 8323, - [9580] = 9053, - [9581] = 8509, - [9582] = 8510, - [9583] = 8511, - [9584] = 8324, - [9585] = 8336, - [9586] = 9053, - [9587] = 8509, - [9588] = 8510, - [9589] = 8511, - [9590] = 8339, - [9591] = 8360, - [9592] = 9053, - [9593] = 8509, - [9594] = 8510, - [9595] = 8511, - [9596] = 8365, - [9597] = 8373, - [9598] = 9053, - [9599] = 8509, - [9600] = 8510, - [9601] = 8511, - [9602] = 8382, - [9603] = 8410, - [9604] = 9053, - [9605] = 8509, - [9606] = 8510, - [9607] = 8511, - [9608] = 8362, - [9609] = 9053, - [9610] = 8354, - [9611] = 9053, - [9612] = 8370, - [9613] = 9053, - [9614] = 8320, - [9615] = 9053, - [9616] = 8398, - [9617] = 9053, - [9618] = 8324, - [9619] = 9053, - [9620] = 8336, - [9621] = 8339, - [9622] = 8362, - [9623] = 9493, - [9624] = 8335, - [9625] = 8598, - [9626] = 9436, - [9627] = 8360, - [9628] = 8650, - [9629] = 8396, - [9630] = 9236, - [9631] = 8365, - [9632] = 8316, - [9633] = 8382, - [9634] = 8403, - [9635] = 8541, - [9636] = 8518, - [9637] = 8373, - [9638] = 8382, - [9639] = 8410, - [9640] = 8410, - [9641] = 8362, - [9642] = 8598, - [9643] = 8803, - [9644] = 8933, - [9645] = 8409, - [9646] = 8354, - [9647] = 8370, - [9648] = 8401, - [9649] = 8382, - [9650] = 8381, - [9651] = 8320, - [9652] = 9493, - [9653] = 8379, - [9654] = 8518, - [9655] = 8378, - [9656] = 8377, - [9657] = 8376, - [9658] = 8323, - [9659] = 9493, - [9660] = 8819, - [9661] = 8324, - [9662] = 8382, - [9663] = 9493, - [9664] = 8379, - [9665] = 9493, - [9666] = 8378, - [9667] = 9493, - [9668] = 8377, - [9669] = 9493, - [9670] = 8373, - [9671] = 9493, - [9672] = 8336, - [9673] = 9493, - [9674] = 8365, - [9675] = 9493, - [9676] = 8339, - [9677] = 9493, - [9678] = 8360, - [9679] = 9493, - [9680] = 8339, - [9681] = 9493, - [9682] = 8360, - [9683] = 9493, - [9684] = 8336, - [9685] = 9493, - [9686] = 8365, - [9687] = 9493, - [9688] = 8330, - [9689] = 9493, - [9690] = 8373, - [9691] = 9493, - [9692] = 8377, - [9693] = 9493, - [9694] = 8378, - [9695] = 9493, - [9696] = 8379, - [9697] = 9493, - [9698] = 8382, - [9699] = 9493, - [9700] = 8325, - [9701] = 9493, - [9702] = 8324, - [9703] = 9493, - [9704] = 8323, - [9705] = 8401, - [9706] = 8409, - [9707] = 8410, - [9708] = 8403, - [9709] = 8398, - [9710] = 8396, - [9711] = 9346, - [9712] = 8373, - [9713] = 8362, - [9714] = 8315, - [9715] = 9137, - [9716] = 8354, - [9717] = 8320, - [9718] = 8384, - [9719] = 8370, - [9720] = 8364, - [9721] = 8933, - [9722] = 8364, - [9723] = 8320, - [9724] = 9346, - [9725] = 9137, - [9726] = 8370, - [9727] = 8384, - [9728] = 8315, - [9729] = 9346, - [9730] = 9137, - [9731] = 8354, - [9732] = 8367, - [9733] = 9006, - [9734] = 8554, - [9735] = 8323, - [9736] = 8324, - [9737] = 8325, - [9738] = 8330, - [9739] = 8365, - [9740] = 8362, - [9741] = 8790, - [9742] = 8396, - [9743] = 8360, - [9744] = 8398, - [9745] = 9127, - [9746] = 8403, - [9747] = 8539, - [9748] = 9129, - [9749] = 8410, - [9750] = 8361, - [9751] = 8409, - [9752] = 8336, - [9753] = 8339, - [9754] = 8360, - [9755] = 8365, - [9756] = 8373, - [9757] = 9118, - [9758] = 8377, - [9759] = 9759, - [9760] = 9760, -}; - -static inline bool sym_conversion_specification_character_set_1(int32_t c) { - return (c < 'N' - ? (c < '@' - ? (c < '%' - ? c == '!' - : (c <= '%' || c == ',')) - : (c <= '@' || (c < 'E' - ? (c >= 'B' && c <= 'C') - : c <= 'H'))) - : (c <= 'N' || (c < 'o' - ? (c < 'X' - ? c == 'S' - : (c <= 'X' || (c >= 'a' && c <= 'i'))) - : (c <= 'o' || (c < 'x' - ? (c >= 's' && c <= 'u') - : c <= 'x'))))); -} - -static inline bool sym_hash_operator_character_set_1(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '#' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool aux_sym__mult_operator_token1_character_set_1(int32_t c) { - return (c < ':' - ? (c < '+' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_1(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_2(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '%') - : (c <= '+' || (c >= '-' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym__rel_operator_character_set_3(int32_t c) { - return (c < ':' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || (c >= '.' && c <= '/'))) - : (c <= ':' || (c < '|' - ? (c < '^' - ? (c >= '<' && c <= '@') - : c <= '^') - : (c <= '|' || c == '~')))); -} - -static inline bool sym_indexing_operator_character_set_1(int32_t c) { - return (c < '/' - ? (c < '*' - ? (c < '$' - ? c == '!' - : c <= '&') - : (c <= '+' || c == '-')) - : (c <= '/' || (c < '^' - ? (c < '=' - ? c == ':' - : c <= '@') - : (c <= '^' || c == '|')))); -} - -static inline bool sym_let_operator_character_set_1(int32_t c) { - return (c < '/' - ? (c < '*' - ? (c < '&' - ? c == '$' - : c <= '&') - : (c <= '+' || c == '-')) - : (c <= '/' || (c < '^' - ? (c < '@' - ? (c >= '<' && c <= '>') - : c <= '@') - : (c <= '^' || c == '|')))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(214); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(209); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(195); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(191); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '@') ADVANCE(299); - if (lookahead == '[') ADVANCE(168); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '^') ADVANCE(301); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 1: - if (lookahead == '\t') ADVANCE(259); - if (lookahead == '\n') ADVANCE(258); - if (lookahead == '\r') ADVANCE(263); - if (lookahead == ' ') ADVANCE(257); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '%') ADVANCE(264); - if (lookahead == '@') ADVANCE(265); - if (lookahead == '[') ADVANCE(266); - if (lookahead == '\\') ADVANCE(3); - if (lookahead != 0) ADVANCE(268); - END_STATE(); - case 2: - if (lookahead == '\t') ADVANCE(259); - if (lookahead == '\n') ADVANCE(258); - if (lookahead == '\r') ADVANCE(272); - if (lookahead == ' ') ADVANCE(257); - if (lookahead == '%') ADVANCE(273); - if (lookahead == '@') ADVANCE(274); - if (lookahead == '[') ADVANCE(275); - if (lookahead == '|') ADVANCE(271); - if (lookahead != 0) ADVANCE(277); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(270); - if (lookahead == 'o') ADVANCE(85); - if (lookahead == 'u') ADVANCE(77); - if (lookahead == 'x') ADVANCE(99); - if (lookahead == ' ' || - lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(278); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); - END_STATE(); - case 4: - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(4) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 5: - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(53); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(170); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(5) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 6: - if (lookahead == '!') ADVANCE(155); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '[') ADVANCE(173); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 7: - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(152); - if (lookahead == '-') ADVANCE(157); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(182); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(174); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '~') ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 8: - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(60); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(164); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 9: - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(62); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 10: - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(62); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(63); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(10) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 11: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 12: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(12) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 13: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(178); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 14: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(178); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(14) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 15: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(177); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(327); - if (lookahead == 'l') ADVANCE(323); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(78); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(15) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 16: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(95); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(177); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(327); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(74); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 17: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 18: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(177); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 19: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(178); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(19) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 20: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 21: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(21) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 22: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(143); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 23: - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '=') ADVANCE(307); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(23) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 24: - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '[') ADVANCE(179); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '$' || - lookahead == '=') ADVANCE(307); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(24) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 25: - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '[') ADVANCE(45); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '$' || - lookahead == '=') ADVANCE(307); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(25) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 26: - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(70); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 27: - if (lookahead == '!') ADVANCE(64); - if (lookahead == '&') ADVANCE(210); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(160); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '>') ADVANCE(305); - if (lookahead == '[') ADVANCE(70); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '|') ADVANCE(166); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '$' || - lookahead == '=') ADVANCE(307); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(27) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 28: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 29: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(80); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(178); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(29) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 30: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(186); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(178); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == '{') ADVANCE(199); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 31: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(182); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 32: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(141); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 33: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(145); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 34: - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(342); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(189); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == '`') ADVANCE(341); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 35: - if (lookahead == '#') ADVANCE(215); - if (lookahead == ')') ADVANCE(147); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(191); - if (lookahead == ':') ADVANCE(183); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(68); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 36: - if (lookahead == '#') ADVANCE(213); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(62); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '[') ADVANCE(70); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(36) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 37: - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(63); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(179); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 38: - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '<') ADVANCE(211); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(175); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(44); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 39: - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(66); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(45); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(39) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 40: - if (lookahead == '#') ADVANCE(213); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == ':') ADVANCE(59); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '[') ADVANCE(70); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == '|') ADVANCE(164); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 41: - if (lookahead == '%') ADVANCE(234); - END_STATE(); - case 42: - if (lookahead == '%') ADVANCE(236); - END_STATE(); - case 43: - if (lookahead == '%') ADVANCE(237); - END_STATE(); - case 44: - if (lookahead == '%') ADVANCE(233); - END_STATE(); - case 45: - if (lookahead == '%') ADVANCE(42); - if (lookahead == '@') ADVANCE(225); - END_STATE(); - case 46: - if (lookahead == '%') ADVANCE(43); - END_STATE(); - case 47: - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(53); - if (lookahead == ':') ADVANCE(183); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(180); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '{') ADVANCE(196); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 48: - if (lookahead == '(') ADVANCE(146); - if (lookahead == '[') ADVANCE(180); - if (lookahead == '{') ADVANCE(196); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(48) - if (sym_indexing_operator_character_set_1(lookahead)) ADVANCE(313); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 49: - if (lookahead == '*') ADVANCE(56); - if (lookahead == '.') ADVANCE(50); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(55); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 50: - if (lookahead == '*') ADVANCE(84); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 51: - if (lookahead == ',') ADVANCE(150); - if (lookahead == '.') ADVANCE(53); - if (lookahead == ':') ADVANCE(57); - if (lookahead == ';') ADVANCE(202); - if (lookahead == '[') ADVANCE(68); - if (lookahead == '|') ADVANCE(164); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(51) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 52: - if (lookahead == '-') ADVANCE(219); - END_STATE(); - case 53: - if (lookahead == '.') ADVANCE(148); - END_STATE(); - case 54: - if (lookahead == '.') ADVANCE(342); - if (lookahead == '[') ADVANCE(68); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(235); - END_STATE(); - case 55: - if (lookahead == '.') ADVANCE(50); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(55); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 56: - if (lookahead == '.') ADVANCE(50); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 57: - if (lookahead == ':') ADVANCE(216); - END_STATE(); - case 58: - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - END_STATE(); - case 59: - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 60: - if (lookahead == ':') ADVANCE(216); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 61: - if (lookahead == ';') ADVANCE(130); - END_STATE(); - case 62: - if (lookahead == '=') ADVANCE(149); - END_STATE(); - case 63: - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 64: - if (lookahead == '=') ADVANCE(302); - END_STATE(); - case 65: - if (lookahead == '>') ADVANCE(192); - END_STATE(); - case 66: - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 67: - if (lookahead == '>') ADVANCE(284); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); - END_STATE(); - case 68: - if (lookahead == '@') ADVANCE(224); - END_STATE(); - case 69: - if (lookahead == '@') ADVANCE(230); - END_STATE(); - case 70: - if (lookahead == '@') ADVANCE(226); - END_STATE(); - case 71: - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\\') ADVANCE(76); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(255); - if (lookahead != 0 && - lookahead != '\'') ADVANCE(253); - END_STATE(); - case 72: - if (lookahead == '[') ADVANCE(176); - if (lookahead == 'l') ADVANCE(324); - if (lookahead == '{') ADVANCE(44); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(72) - if (sym_indexing_operator_character_set_1(lookahead)) ADVANCE(313); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 73: - if (lookahead == ']') ADVANCE(218); - END_STATE(); - case 74: - if (lookahead == ']') ADVANCE(218); - if (lookahead == '|') ADVANCE(312); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(307); - END_STATE(); - case 75: - if (lookahead == 'n') ADVANCE(284); - END_STATE(); - case 76: - if (lookahead == 'o') ADVANCE(85); - if (lookahead == 'x') ADVANCE(99); - if (lookahead == ' ' || - lookahead == '"' || - lookahead == '\'' || - lookahead == '\\' || - lookahead == 'b' || - lookahead == 'n' || - lookahead == 'r' || - lookahead == 't') ADVANCE(278); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(92); - END_STATE(); - case 77: - if (lookahead == '{') ADVANCE(97); - END_STATE(); - case 78: - if (lookahead == '|') ADVANCE(312); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(307); - END_STATE(); - case 79: - if (lookahead == '}') ADVANCE(269); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); - END_STATE(); - case 80: - if (lookahead == '}') ADVANCE(222); - END_STATE(); - case 81: - if (lookahead == '+' || - lookahead == '-') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(250); - END_STATE(); - case 82: - if (lookahead == '0' || - lookahead == '1') ADVANCE(247); - END_STATE(); - case 83: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(83); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 84: - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 85: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(87); - END_STATE(); - case 86: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(281); - END_STATE(); - case 87: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(86); - END_STATE(); - case 88: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); - END_STATE(); - case 89: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(250); - END_STATE(); - case 90: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); - END_STATE(); - case 91: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(279); - END_STATE(); - case 92: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(91); - END_STATE(); - case 93: - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(307); - END_STATE(); - case 94: - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 95: - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(293); - END_STATE(); - case 96: - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 97: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(79); - END_STATE(); - case 98: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(280); - END_STATE(); - case 99: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(98); - END_STATE(); - case 100: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(214); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(209); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(195); - if (lookahead == '+') ADVANCE(153); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(191); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(212); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '@') ADVANCE(299); - if (lookahead == '[') ADVANCE(169); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '^') ADVANCE(301); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(165); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 101: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(155); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '[') ADVANCE(171); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(101) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 102: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(339); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(152); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(158); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '<') ADVANCE(52); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(80); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(73); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '~') ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(102) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 103: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '%') ADVANCE(238); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(152); - if (lookahead == '-') ADVANCE(157); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(103) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 104: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(62); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(144); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(105) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 105: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '&') ADVANCE(208); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(62); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(63); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '>') ADVANCE(207); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(105) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 106: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(286); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(88); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(106) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 107: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(108) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 108: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(108) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 109: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '%') ADVANCE(239); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '/') ADVANCE(296); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == 'm') ADVANCE(317); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '?' || - lookahead == '~') ADVANCE(96); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(109) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 110: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(111) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 111: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(111) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 112: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(142); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(113) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 113: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(113) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 114: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(114) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 115: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(287); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '$') ADVANCE(306); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(303); - if (lookahead == '?') ADVANCE(140); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(198); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '~') ADVANCE(138); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(115) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 116: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(185); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(179); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(201); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '}') ADVANCE(204); - if (('%' <= lookahead && lookahead <= '/')) ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(116) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 117: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == ':') ADVANCE(58); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(171); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(117) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 118: - if (eof) ADVANCE(127); - if (lookahead == '!') ADVANCE(64); - if (lookahead == '#') ADVANCE(215); - if (lookahead == '&') ADVANCE(210); - if (lookahead == '*') ADVANCE(295); - if (lookahead == '+') ADVANCE(154); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(159); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(184); - if (lookahead == ';') ADVANCE(203); - if (lookahead == '<') ADVANCE(304); - if (lookahead == '[') ADVANCE(45); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(167); - if (lookahead == '%' || - lookahead == '/') ADVANCE(296); - if (lookahead == '@' || - lookahead == '^') ADVANCE(301); - if (lookahead == '$' || - lookahead == '=' || - lookahead == '>') ADVANCE(307); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(118) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 119: - if (eof) ADVANCE(127); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(161); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(187); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(119) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 120: - if (eof) ADVANCE(127); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(190); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(120) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 121: - if (eof) ADVANCE(127); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '.') ADVANCE(53); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(186); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(326); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(121) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 122: - if (eof) ADVANCE(127); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(182); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(122) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 123: - if (eof) ADVANCE(127); - if (lookahead == '"') ADVANCE(256); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(252); - if (lookahead == '(') ADVANCE(146); - if (lookahead == '+') ADVANCE(151); - if (lookahead == '-') ADVANCE(156); - if (lookahead == '0') ADVANCE(241); - if (lookahead == ':') ADVANCE(141); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '?') ADVANCE(139); - if (lookahead == '[') ADVANCE(172); - if (lookahead == ']') ADVANCE(181); - if (lookahead == '`') ADVANCE(341); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(197); - if (lookahead == '~') ADVANCE(137); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(122) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(242); - if (('_' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 124: - if (eof) ADVANCE(127); - if (lookahead == '#') ADVANCE(338); - if (lookahead == '(') ADVANCE(146); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(188); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(171); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(41); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(124) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 125: - if (eof) ADVANCE(127); - if (lookahead == '#') ADVANCE(338); - if (lookahead == ')') ADVANCE(147); - if (lookahead == '*') ADVANCE(194); - if (lookahead == ',') ADVANCE(150); - if (lookahead == '-') ADVANCE(65); - if (lookahead == ':') ADVANCE(184); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(45); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(125) - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 126: - if (eof) ADVANCE(127); - if (lookahead == '#') ADVANCE(213); - if (lookahead == '\'') ADVANCE(340); - if (lookahead == '*') ADVANCE(194); - if (lookahead == '-') ADVANCE(65); - if (lookahead == '.') ADVANCE(190); - if (lookahead == ':') ADVANCE(63); - if (lookahead == ';') ADVANCE(61); - if (lookahead == '=') ADVANCE(136); - if (lookahead == '[') ADVANCE(45); - if (lookahead == ']') ADVANCE(181); - if (lookahead == 'a') ADVANCE(328); - if (lookahead == 'l') ADVANCE(322); - if (lookahead == '{') ADVANCE(46); - if (lookahead == '|') ADVANCE(163); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(126) - if (lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(337); - END_STATE(); - case 127: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 128: - ACCEPT_TOKEN(sym_shebang); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(128); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(129); - END_STATE(); - case 129: - ACCEPT_TOKEN(sym_shebang); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(129); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_let); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(314); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 133: - ACCEPT_TOKEN(anon_sym_and); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(315); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_COLON_GT); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_TILDE); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_QMARK); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - END_STATE(); - case 143: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 144: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 146: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 148: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 151: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(289); - END_STATE(); - case 153: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(289); - if (lookahead == '=') ADVANCE(149); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '.') ADVANCE(290); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(291); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(291); - if (lookahead == '>') ADVANCE(192); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '>') ADVANCE(94); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(297); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '.') ADVANCE(292); - if (lookahead == '>') ADVANCE(193); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(297); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '>') ADVANCE(192); - END_STATE(); - case 162: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 163: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 164: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(218); - END_STATE(); - case 165: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(218); - if (lookahead == '|') ADVANCE(311); - END_STATE(); - case 166: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == ']') ADVANCE(218); - if (lookahead == '|') ADVANCE(312); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(307); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(312); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '~') ADVANCE(307); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '>') ADVANCE(205); - if (lookahead == '@') ADVANCE(260); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 169: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '>') ADVANCE(205); - if (lookahead == '@') ADVANCE(224); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '>') ADVANCE(205); - if (lookahead == '@') ADVANCE(225); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '@') ADVANCE(225); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '@') ADVANCE(225); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '@') ADVANCE(227); - END_STATE(); - case 174: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(232); - if (lookahead == '@') ADVANCE(227); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(231); - if (lookahead == '<') ADVANCE(206); - if (lookahead == '>') ADVANCE(205); - if (lookahead == '@') ADVANCE(224); - END_STATE(); - case 176: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(231); - if (lookahead == '@') ADVANCE(224); - END_STATE(); - case 177: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(231); - if (lookahead == '@') ADVANCE(224); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 178: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(231); - if (lookahead == '@') ADVANCE(226); - if (lookahead == '|') ADVANCE(217); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '%') ADVANCE(42); - if (lookahead == '@') ADVANCE(225); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '@') ADVANCE(224); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_COLON2); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(216); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(216); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 186: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == ':') ADVANCE(216); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '=') ADVANCE(162); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '=') ADVANCE(162); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_COLON2); - if (lookahead == '>') ADVANCE(135); - END_STATE(); - case 190: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 191: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(148); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_DASH_GT); - END_STATE(); - case 193: - ACCEPT_TOKEN(anon_sym_DASH_GT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 195: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(294); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 197: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(234); - END_STATE(); - case 198: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(234); - if (lookahead == '<') ADVANCE(221); - END_STATE(); - case 199: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(233); - END_STATE(); - case 200: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(233); - if (lookahead == '<') ADVANCE(221); - END_STATE(); - case 201: - ACCEPT_TOKEN(anon_sym_LBRACE); - if (lookahead == '%') ADVANCE(43); - END_STATE(); - case 202: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 203: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(130); - END_STATE(); - case 204: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 205: - ACCEPT_TOKEN(anon_sym_LBRACK_GT); - END_STATE(); - case 206: - ACCEPT_TOKEN(anon_sym_LBRACK_LT); - END_STATE(); - case 207: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 208: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 209: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(309); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(310); - if (sym__rel_operator_character_set_2(lookahead)) ADVANCE(307); - END_STATE(); - case 211: - ACCEPT_TOKEN(anon_sym_LT); - END_STATE(); - case 212: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(219); - END_STATE(); - case 213: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 214: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(128); - if (('#' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(293); - END_STATE(); - case 215: - ACCEPT_TOKEN(anon_sym_POUND); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(293); - END_STATE(); - case 216: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 217: - ACCEPT_TOKEN(anon_sym_LBRACK_PIPE); - END_STATE(); - case 218: - ACCEPT_TOKEN(anon_sym_PIPE_RBRACK); - END_STATE(); - case 219: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 220: - ACCEPT_TOKEN(anon_sym_LT_DASH); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(307); - END_STATE(); - case 221: - ACCEPT_TOKEN(anon_sym_LBRACE_LT); - END_STATE(); - case 222: - ACCEPT_TOKEN(anon_sym_GT_RBRACE); - END_STATE(); - case 223: - ACCEPT_TOKEN(sym_ocamlyacc_value); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); - END_STATE(); - case 224: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - END_STATE(); - case 225: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(229); - END_STATE(); - case 226: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(228); - END_STATE(); - case 227: - ACCEPT_TOKEN(anon_sym_LBRACK_AT); - if (lookahead == '@') ADVANCE(69); - END_STATE(); - case 228: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT); - if (lookahead == '@') ADVANCE(230); - END_STATE(); - case 230: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT_AT); - END_STATE(); - case 231: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT); - END_STATE(); - case 232: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT); - if (lookahead == '%') ADVANCE(236); - END_STATE(); - case 233: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); - END_STATE(); - case 234: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT); - if (lookahead == '%') ADVANCE(237); - END_STATE(); - case 235: - ACCEPT_TOKEN(aux_sym_quoted_extension_token1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(235); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_LBRACK_PERCENT_PERCENT); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_LBRACE_PERCENT_PERCENT); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(296); - END_STATE(); - case 240: - ACCEPT_TOKEN(aux_sym_number_token1); - END_STATE(); - case 241: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(245); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(82); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(248); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(242); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 242: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(245); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(242); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 243: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '.') ADVANCE(246); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 244: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '+' || - lookahead == '-') ADVANCE(89); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(250); - END_STATE(); - case 245: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(81); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(245); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 246: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(244); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(246); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 247: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(247); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 248: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(249); - END_STATE(); - case 249: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(249); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 250: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(250); - if (('G' <= lookahead && lookahead <= 'Z') || - ('g' <= lookahead && lookahead <= 'z')) ADVANCE(240); - END_STATE(); - case 251: - ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(243); - END_STATE(); - case 252: - ACCEPT_TOKEN(anon_sym_SQUOTE); - END_STATE(); - case 253: - ACCEPT_TOKEN(aux_sym_character_content_token1); - END_STATE(); - case 254: - ACCEPT_TOKEN(aux_sym_character_content_token1); - if (lookahead == '@') ADVANCE(224); - END_STATE(); - case 255: - ACCEPT_TOKEN(aux_sym_character_content_token1); - if (lookahead == '[') ADVANCE(254); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(255); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(253); - END_STATE(); - case 256: - ACCEPT_TOKEN(anon_sym_DQUOTE); - END_STATE(); - case 257: - ACCEPT_TOKEN(anon_sym_); - END_STATE(); - case 258: - ACCEPT_TOKEN(anon_sym_LF); - END_STATE(); - case 259: - ACCEPT_TOKEN(anon_sym_TAB); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_LBRACK_AT2); - if (lookahead == '@') ADVANCE(261); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT2); - if (lookahead == '@') ADVANCE(262); - END_STATE(); - case 262: - ACCEPT_TOKEN(anon_sym_LBRACK_AT_AT_AT2); - END_STATE(); - case 263: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '%') ADVANCE(264); - if (lookahead == '@') ADVANCE(265); - if (lookahead == '[') ADVANCE(267); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(263); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 264: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '*') ADVANCE(56); - if (lookahead == '.') ADVANCE(50); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (lookahead == ' ' || - lookahead == '#' || - lookahead == '+' || - lookahead == '-' || - lookahead == '0') ADVANCE(49); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(55); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 265: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '<') ADVANCE(90); - if (lookahead == '\\') ADVANCE(75); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(284); - END_STATE(); - case 266: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '@') ADVANCE(260); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 267: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead == '@') ADVANCE(224); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 268: - ACCEPT_TOKEN(aux_sym_string_content_token1); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '%' && - lookahead != '@' && - lookahead != '\\') ADVANCE(268); - END_STATE(); - case 269: - ACCEPT_TOKEN(aux_sym_string_content_token2); - END_STATE(); - case 270: - ACCEPT_TOKEN(aux_sym_string_content_token3); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(270); - END_STATE(); - case 271: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - END_STATE(); - case 272: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '%') ADVANCE(273); - if (lookahead == '@') ADVANCE(274); - if (lookahead == '[') ADVANCE(276); - if (lookahead == '|') ADVANCE(271); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(272); - if (lookahead != 0) ADVANCE(277); - END_STATE(); - case 273: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '*') ADVANCE(56); - if (lookahead == '.') ADVANCE(50); - if (lookahead == 'L' || - lookahead == 'l' || - lookahead == 'n') ADVANCE(283); - if (lookahead == ' ' || - lookahead == '#' || - lookahead == '+' || - lookahead == '-' || - lookahead == '0') ADVANCE(49); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(55); - if (sym_conversion_specification_character_set_1(lookahead)) ADVANCE(282); - END_STATE(); - case 274: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '<') ADVANCE(90); - if (lookahead == '\\') ADVANCE(75); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == '.' || - lookahead == ';' || - lookahead == '?' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(284); - END_STATE(); - case 275: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '@') ADVANCE(260); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '|') ADVANCE(277); - END_STATE(); - case 276: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead == '@') ADVANCE(224); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '|') ADVANCE(277); - END_STATE(); - case 277: - ACCEPT_TOKEN(aux_sym_quoted_string_content_token1); - if (lookahead != 0 && - lookahead != '%' && - lookahead != '@' && - lookahead != '|') ADVANCE(277); - END_STATE(); - case 278: - ACCEPT_TOKEN(aux_sym_escape_sequence_token1); - END_STATE(); - case 279: - ACCEPT_TOKEN(aux_sym_escape_sequence_token2); - END_STATE(); - case 280: - ACCEPT_TOKEN(aux_sym_escape_sequence_token3); - END_STATE(); - case 281: - ACCEPT_TOKEN(aux_sym_escape_sequence_token4); - END_STATE(); - case 282: - ACCEPT_TOKEN(sym_conversion_specification); - END_STATE(); - case 283: - ACCEPT_TOKEN(sym_conversion_specification); - if (lookahead == 'X' || - lookahead == 'd' || - lookahead == 'i' || - lookahead == 'o' || - lookahead == 'u' || - lookahead == 'x') ADVANCE(282); - END_STATE(); - case 284: - ACCEPT_TOKEN(sym_pretty_printing_indication); - END_STATE(); - case 285: - ACCEPT_TOKEN(sym_pretty_printing_indication); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(301); - END_STATE(); - case 286: - ACCEPT_TOKEN(sym_prefix_operator); - if (lookahead == '=') ADVANCE(96); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 287: - ACCEPT_TOKEN(sym_prefix_operator); - if (lookahead == '=') ADVANCE(308); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 288: - ACCEPT_TOKEN(sym_prefix_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_PLUS_DOT); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_DASH_DOT); - if (lookahead == '>') ADVANCE(298); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(297); - END_STATE(); - case 293: - ACCEPT_TOKEN(sym_hash_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(293); - END_STATE(); - case 294: - ACCEPT_TOKEN(aux_sym__pow_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(294); - END_STATE(); - case 295: - ACCEPT_TOKEN(aux_sym__mult_operator_token1); - if (lookahead == '*') ADVANCE(294); - if (aux_sym__mult_operator_token1_character_set_1(lookahead)) ADVANCE(296); - END_STATE(); - case 296: - ACCEPT_TOKEN(aux_sym__mult_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(296); - END_STATE(); - case 297: - ACCEPT_TOKEN(aux_sym__add_operator_token1); - if (lookahead == '>') ADVANCE(298); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(297); - END_STATE(); - case 298: - ACCEPT_TOKEN(aux_sym__add_operator_token1); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(298); - END_STATE(); - case 299: - ACCEPT_TOKEN(sym__concat_operator); - if (lookahead == '<') ADVANCE(300); - if (lookahead == '\\') ADVANCE(75); - if (lookahead == '.' || - lookahead == '?') ADVANCE(285); - if (lookahead == ' ' || - lookahead == ',' || - lookahead == ';' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '{' || - lookahead == '}') ADVANCE(284); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - ('*' <= lookahead && lookahead <= '/') || - (':' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(301); - END_STATE(); - case 300: - ACCEPT_TOKEN(sym__concat_operator); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(67); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(301); - END_STATE(); - case 301: - ACCEPT_TOKEN(sym__concat_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(301); - END_STATE(); - case 302: - ACCEPT_TOKEN(sym__rel_operator); - END_STATE(); - case 303: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '-') ADVANCE(220); - if (sym__rel_operator_character_set_3(lookahead)) ADVANCE(307); - END_STATE(); - case 304: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '-') ADVANCE(93); - if (sym__rel_operator_character_set_3(lookahead)) ADVANCE(307); - END_STATE(); - case 305: - ACCEPT_TOKEN(sym__rel_operator); - if (lookahead == '}') ADVANCE(222); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= '/') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - ('|' <= lookahead && lookahead <= '~')) ADVANCE(307); - END_STATE(); - case 306: - ACCEPT_TOKEN(sym__rel_operator); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); - if (lookahead == '!' || - ('$' <= lookahead && lookahead <= '&') || - lookahead == '*' || - lookahead == '+' || - ('-' <= lookahead && lookahead <= ':') || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^' || - lookahead == '|' || - lookahead == '~') ADVANCE(307); - END_STATE(); - case 307: - ACCEPT_TOKEN(sym__rel_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(307); - END_STATE(); - case 308: - ACCEPT_TOKEN(sym__rel_operator); - if (sym_hash_operator_character_set_1(lookahead)) ADVANCE(288); - END_STATE(); - case 309: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(307); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 312: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(307); - END_STATE(); - case 313: - ACCEPT_TOKEN(sym_indexing_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(313); - END_STATE(); - case 314: - ACCEPT_TOKEN(sym_let_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(314); - END_STATE(); - case 315: - ACCEPT_TOKEN(sym_and_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(315); - END_STATE(); - case 316: - ACCEPT_TOKEN(sym_match_operator); - if (sym__rel_operator_character_set_1(lookahead)) ADVANCE(316); - END_STATE(); - case 317: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'a') ADVANCE(330); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 318: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'c') ADVANCE(325); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 319: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(133); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 320: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(134); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 321: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'd') ADVANCE(333); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 322: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(329); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 323: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(332); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 324: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'e') ADVANCE(331); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 325: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'h') ADVANCE(335); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 326: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(319); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 327: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(321); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 328: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 'n') ADVANCE(320); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 329: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(131); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 330: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(318); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 331: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(132); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 332: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == 't') ADVANCE(334); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 333: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(315); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 334: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(314); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 335: - ACCEPT_TOKEN(sym__identifier); - if (sym_let_operator_character_set_1(lookahead)) ADVANCE(316); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 336: - ACCEPT_TOKEN(sym__identifier); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(336); - END_STATE(); - case 337: - ACCEPT_TOKEN(sym__capitalized_identifier); - if (lookahead == '\'' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(337); - END_STATE(); - case 338: - ACCEPT_TOKEN(aux_sym_directive_token1); - END_STATE(); - case 339: - ACCEPT_TOKEN(aux_sym_directive_token1); - if (lookahead == '!') ADVANCE(129); - END_STATE(); - case 340: - ACCEPT_TOKEN(aux_sym_type_variable_token1); - END_STATE(); - case 341: - ACCEPT_TOKEN(aux_sym_tag_token1); - END_STATE(); - case 342: - ACCEPT_TOKEN(aux_sym_attribute_id_token1); - 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 == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'i') ADVANCE(8); - if (lookahead == 'l') ADVANCE(9); - if (lookahead == 'm') ADVANCE(10); - if (lookahead == 'n') ADVANCE(11); - if (lookahead == 'o') ADVANCE(12); - if (lookahead == 'p') ADVANCE(13); - if (lookahead == 'r') ADVANCE(14); - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - if (lookahead == 'v') ADVANCE(17); - if (lookahead == 'w') ADVANCE(18); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(0) - END_STATE(); - case 1: - ACCEPT_TOKEN(anon_sym__); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(19); - END_STATE(); - case 3: - if (lookahead == 'e') ADVANCE(20); - END_STATE(); - case 4: - if (lookahead == 'l') ADVANCE(21); - if (lookahead == 'o') ADVANCE(22); - END_STATE(); - case 5: - if (lookahead == 'o') ADVANCE(23); - END_STATE(); - case 6: - if (lookahead == 'l') ADVANCE(24); - if (lookahead == 'n') ADVANCE(25); - if (lookahead == 'x') ADVANCE(26); - END_STATE(); - case 7: - if (lookahead == 'a') ADVANCE(27); - if (lookahead == 'o') ADVANCE(28); - if (lookahead == 'u') ADVANCE(29); - END_STATE(); - case 8: - if (lookahead == 'f') ADVANCE(30); - if (lookahead == 'n') ADVANCE(31); - END_STATE(); - case 9: - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); - if (lookahead == 's') ADVANCE(34); - if (lookahead == 'x') ADVANCE(35); - END_STATE(); - case 10: - if (lookahead == 'a') ADVANCE(36); - if (lookahead == 'e') ADVANCE(37); - if (lookahead == 'o') ADVANCE(38); - if (lookahead == 'u') ADVANCE(39); - END_STATE(); - case 11: - if (lookahead == 'e') ADVANCE(40); - if (lookahead == 'o') ADVANCE(41); - END_STATE(); - case 12: - if (lookahead == 'b') ADVANCE(42); - if (lookahead == 'f') ADVANCE(43); - if (lookahead == 'p') ADVANCE(44); - if (lookahead == 'r') ADVANCE(45); - END_STATE(); - case 13: - if (lookahead == 'r') ADVANCE(46); - END_STATE(); - case 14: - if (lookahead == 'e') ADVANCE(47); - END_STATE(); - case 15: - if (lookahead == 'i') ADVANCE(48); - if (lookahead == 't') ADVANCE(49); - END_STATE(); - case 16: - if (lookahead == 'h') ADVANCE(50); - if (lookahead == 'o') ADVANCE(51); - if (lookahead == 'r') ADVANCE(52); - if (lookahead == 'y') ADVANCE(53); - END_STATE(); - case 17: - if (lookahead == 'a') ADVANCE(54); - if (lookahead == 'i') ADVANCE(55); - END_STATE(); - case 18: - if (lookahead == 'h') ADVANCE(56); - if (lookahead == 'i') ADVANCE(57); - END_STATE(); - case 19: - ACCEPT_TOKEN(anon_sym_as); - if (lookahead == 'r') ADVANCE(58); - if (lookahead == 's') ADVANCE(59); - END_STATE(); - case 20: - if (lookahead == 'g') ADVANCE(60); - END_STATE(); - case 21: - if (lookahead == 'a') ADVANCE(61); - END_STATE(); - case 22: - if (lookahead == 'n') ADVANCE(62); - END_STATE(); - case 23: - ACCEPT_TOKEN(anon_sym_do); - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 'w') ADVANCE(64); - END_STATE(); - case 24: - if (lookahead == 's') ADVANCE(65); - END_STATE(); - case 25: - if (lookahead == 'd') ADVANCE(66); - END_STATE(); - case 26: - if (lookahead == 'c') ADVANCE(67); - if (lookahead == 't') ADVANCE(68); - END_STATE(); - case 27: - if (lookahead == 'l') ADVANCE(69); - END_STATE(); - case 28: - if (lookahead == 'r') ADVANCE(70); - END_STATE(); - case 29: - if (lookahead == 'n') ADVANCE(71); - END_STATE(); - case 30: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 31: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'c') ADVANCE(72); - if (lookahead == 'h') ADVANCE(73); - if (lookahead == 'i') ADVANCE(74); - END_STATE(); - case 32: - if (lookahead == 'n') ADVANCE(75); - if (lookahead == 'z') ADVANCE(76); - END_STATE(); - case 33: - if (lookahead == 'r') ADVANCE(77); - END_STATE(); - case 34: - if (lookahead == 'l') ADVANCE(78); - if (lookahead == 'r') ADVANCE(79); - END_STATE(); - case 35: - if (lookahead == 'o') ADVANCE(80); - END_STATE(); - case 36: - if (lookahead == 't') ADVANCE(81); - END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(82); - END_STATE(); - case 38: - if (lookahead == 'd') ADVANCE(83); - END_STATE(); - case 39: - if (lookahead == 't') ADVANCE(84); - END_STATE(); - case 40: - if (lookahead == 'w') ADVANCE(85); - END_STATE(); - case 41: - if (lookahead == 'n') ADVANCE(86); - END_STATE(); - case 42: - if (lookahead == 'j') ADVANCE(87); - END_STATE(); - case 43: - ACCEPT_TOKEN(anon_sym_of); - END_STATE(); - case 44: - if (lookahead == 'e') ADVANCE(88); - END_STATE(); - case 45: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 46: - if (lookahead == 'i') ADVANCE(89); - END_STATE(); - case 47: - if (lookahead == 'c') ADVANCE(90); - END_STATE(); - case 48: - if (lookahead == 'g') ADVANCE(91); - END_STATE(); - case 49: - if (lookahead == 'r') ADVANCE(92); - END_STATE(); - case 50: - if (lookahead == 'e') ADVANCE(93); - END_STATE(); - case 51: - ACCEPT_TOKEN(anon_sym_to); - END_STATE(); - case 52: - if (lookahead == 'u') ADVANCE(94); - if (lookahead == 'y') ADVANCE(95); - END_STATE(); - case 53: - if (lookahead == 'p') ADVANCE(96); - END_STATE(); - case 54: - if (lookahead == 'l') ADVANCE(97); - END_STATE(); - case 55: - if (lookahead == 'r') ADVANCE(98); - END_STATE(); - case 56: - if (lookahead == 'e') ADVANCE(99); - if (lookahead == 'i') ADVANCE(100); - END_STATE(); - case 57: - if (lookahead == 't') ADVANCE(101); - END_STATE(); - case 58: - ACCEPT_TOKEN(anon_sym_asr); - END_STATE(); - case 59: - if (lookahead == 'e') ADVANCE(102); - END_STATE(); - case 60: - if (lookahead == 'i') ADVANCE(103); - END_STATE(); - case 61: - if (lookahead == 's') ADVANCE(104); - END_STATE(); - case 62: - if (lookahead == 's') ADVANCE(105); - END_STATE(); - case 63: - if (lookahead == 'e') ADVANCE(106); - END_STATE(); - case 64: - if (lookahead == 'n') ADVANCE(107); - END_STATE(); - case 65: - if (lookahead == 'e') ADVANCE(108); - END_STATE(); - case 66: - ACCEPT_TOKEN(anon_sym_end); - END_STATE(); - case 67: - if (lookahead == 'e') ADVANCE(109); - END_STATE(); - case 68: - if (lookahead == 'e') ADVANCE(110); - END_STATE(); - case 69: - if (lookahead == 's') ADVANCE(111); - END_STATE(); - case 70: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 71: - ACCEPT_TOKEN(anon_sym_fun); - if (lookahead == 'c') ADVANCE(112); - END_STATE(); - case 72: - if (lookahead == 'l') ADVANCE(113); - END_STATE(); - case 73: - if (lookahead == 'e') ADVANCE(114); - END_STATE(); - case 74: - if (lookahead == 't') ADVANCE(115); - END_STATE(); - case 75: - if (lookahead == 'd') ADVANCE(116); - END_STATE(); - case 76: - if (lookahead == 'y') ADVANCE(117); - END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_lor); - END_STATE(); - case 78: - ACCEPT_TOKEN(anon_sym_lsl); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_lsr); - END_STATE(); - case 80: - if (lookahead == 'r') ADVANCE(118); - END_STATE(); - case 81: - if (lookahead == 'c') ADVANCE(119); - END_STATE(); - case 82: - if (lookahead == 'h') ADVANCE(120); - END_STATE(); - case 83: - ACCEPT_TOKEN(anon_sym_mod); - if (lookahead == 'u') ADVANCE(121); - END_STATE(); - case 84: - if (lookahead == 'a') ADVANCE(122); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_new); - END_STATE(); - case 86: - if (lookahead == 'r') ADVANCE(123); - END_STATE(); - case 87: - if (lookahead == 'e') ADVANCE(124); - END_STATE(); - case 88: - if (lookahead == 'n') ADVANCE(125); - END_STATE(); - case 89: - if (lookahead == 'v') ADVANCE(126); - END_STATE(); - case 90: - ACCEPT_TOKEN(anon_sym_rec); - END_STATE(); - case 91: - ACCEPT_TOKEN(anon_sym_sig); - END_STATE(); - case 92: - if (lookahead == 'u') ADVANCE(127); - END_STATE(); - case 93: - if (lookahead == 'n') ADVANCE(128); - END_STATE(); - case 94: - if (lookahead == 'e') ADVANCE(129); - END_STATE(); - case 95: - ACCEPT_TOKEN(anon_sym_try); - END_STATE(); - case 96: - if (lookahead == 'e') ADVANCE(130); - END_STATE(); - case 97: - ACCEPT_TOKEN(anon_sym_val); - END_STATE(); - case 98: - if (lookahead == 't') ADVANCE(131); - END_STATE(); - case 99: - if (lookahead == 'n') ADVANCE(132); - END_STATE(); - case 100: - if (lookahead == 'l') ADVANCE(133); - END_STATE(); - case 101: - if (lookahead == 'h') ADVANCE(134); - END_STATE(); - case 102: - if (lookahead == 'r') ADVANCE(135); - END_STATE(); - case 103: - if (lookahead == 'n') ADVANCE(136); - END_STATE(); - case 104: - if (lookahead == 's') ADVANCE(137); - END_STATE(); - case 105: - if (lookahead == 't') ADVANCE(138); - END_STATE(); - case 106: - ACCEPT_TOKEN(anon_sym_done); - END_STATE(); - case 107: - if (lookahead == 't') ADVANCE(139); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 109: - if (lookahead == 'p') ADVANCE(140); - END_STATE(); - case 110: - if (lookahead == 'r') ADVANCE(141); - END_STATE(); - case 111: - if (lookahead == 'e') ADVANCE(142); - END_STATE(); - case 112: - if (lookahead == 't') ADVANCE(143); - END_STATE(); - case 113: - if (lookahead == 'u') ADVANCE(144); - END_STATE(); - case 114: - if (lookahead == 'r') ADVANCE(145); - END_STATE(); - case 115: - if (lookahead == 'i') ADVANCE(146); - END_STATE(); - case 116: - ACCEPT_TOKEN(anon_sym_land); - END_STATE(); - case 117: - ACCEPT_TOKEN(anon_sym_lazy); - END_STATE(); - case 118: - ACCEPT_TOKEN(anon_sym_lxor); - END_STATE(); - case 119: - if (lookahead == 'h') ADVANCE(147); - END_STATE(); - case 120: - if (lookahead == 'o') ADVANCE(148); - END_STATE(); - case 121: - if (lookahead == 'l') ADVANCE(149); - END_STATE(); - case 122: - if (lookahead == 'b') ADVANCE(150); - END_STATE(); - case 123: - if (lookahead == 'e') ADVANCE(151); - END_STATE(); - case 124: - if (lookahead == 'c') ADVANCE(152); - END_STATE(); - case 125: - ACCEPT_TOKEN(anon_sym_open); - END_STATE(); - case 126: - if (lookahead == 'a') ADVANCE(153); - END_STATE(); - case 127: - if (lookahead == 'c') ADVANCE(154); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_then); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_true); - END_STATE(); - case 130: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 131: - if (lookahead == 'u') ADVANCE(155); - END_STATE(); - case 132: - ACCEPT_TOKEN(anon_sym_when); - END_STATE(); - case 133: - if (lookahead == 'e') ADVANCE(156); - END_STATE(); - case 134: - ACCEPT_TOKEN(anon_sym_with); - END_STATE(); - case 135: - if (lookahead == 't') ADVANCE(157); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_begin); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_class); - END_STATE(); - case 138: - if (lookahead == 'r') ADVANCE(158); - END_STATE(); - case 139: - if (lookahead == 'o') ADVANCE(159); - END_STATE(); - case 140: - if (lookahead == 't') ADVANCE(160); - END_STATE(); - case 141: - if (lookahead == 'n') ADVANCE(161); - END_STATE(); - case 142: - ACCEPT_TOKEN(anon_sym_false); - END_STATE(); - case 143: - if (lookahead == 'i') ADVANCE(162); - if (lookahead == 'o') ADVANCE(163); - END_STATE(); - case 144: - if (lookahead == 'd') ADVANCE(164); - END_STATE(); - case 145: - if (lookahead == 'i') ADVANCE(165); - END_STATE(); - case 146: - if (lookahead == 'a') ADVANCE(166); - END_STATE(); - case 147: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 148: - if (lookahead == 'd') ADVANCE(167); - END_STATE(); - case 149: - if (lookahead == 'e') ADVANCE(168); - END_STATE(); - case 150: - if (lookahead == 'l') ADVANCE(169); - END_STATE(); - case 151: - if (lookahead == 'c') ADVANCE(170); - END_STATE(); - case 152: - if (lookahead == 't') ADVANCE(171); - END_STATE(); - case 153: - if (lookahead == 't') ADVANCE(172); - END_STATE(); - case 154: - if (lookahead == 't') ADVANCE(173); - END_STATE(); - case 155: - if (lookahead == 'a') ADVANCE(174); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_while); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_assert); - END_STATE(); - case 158: - if (lookahead == 'a') ADVANCE(175); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_downto); - END_STATE(); - case 160: - if (lookahead == 'i') ADVANCE(176); - END_STATE(); - case 161: - if (lookahead == 'a') ADVANCE(177); - END_STATE(); - case 162: - if (lookahead == 'o') ADVANCE(178); - END_STATE(); - case 163: - if (lookahead == 'r') ADVANCE(179); - END_STATE(); - case 164: - if (lookahead == 'e') ADVANCE(180); - END_STATE(); - case 165: - if (lookahead == 't') ADVANCE(181); - END_STATE(); - case 166: - if (lookahead == 'l') ADVANCE(182); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym_method); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 169: - if (lookahead == 'e') ADVANCE(183); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_nonrec); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_object); - END_STATE(); - case 172: - if (lookahead == 'e') ADVANCE(184); - END_STATE(); - case 173: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 174: - if (lookahead == 'l') ADVANCE(185); - END_STATE(); - case 175: - if (lookahead == 'i') ADVANCE(186); - END_STATE(); - case 176: - if (lookahead == 'o') ADVANCE(187); - END_STATE(); - case 177: - if (lookahead == 'l') ADVANCE(188); - END_STATE(); - case 178: - if (lookahead == 'n') ADVANCE(189); - END_STATE(); - case 179: - ACCEPT_TOKEN(anon_sym_functor); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_include); - END_STATE(); - case 181: - ACCEPT_TOKEN(anon_sym_inherit); - END_STATE(); - case 182: - if (lookahead == 'i') ADVANCE(190); - END_STATE(); - case 183: - ACCEPT_TOKEN(anon_sym_mutable); - END_STATE(); - case 184: - ACCEPT_TOKEN(anon_sym_private); - END_STATE(); - case 185: - ACCEPT_TOKEN(anon_sym_virtual); - END_STATE(); - case 186: - if (lookahead == 'n') ADVANCE(191); - END_STATE(); - case 187: - if (lookahead == 'n') ADVANCE(192); - END_STATE(); - case 188: - ACCEPT_TOKEN(anon_sym_external); - END_STATE(); - case 189: - ACCEPT_TOKEN(anon_sym_function); - END_STATE(); - case 190: - if (lookahead == 'z') ADVANCE(193); - END_STATE(); - case 191: - if (lookahead == 't') ADVANCE(194); - END_STATE(); - case 192: - ACCEPT_TOKEN(anon_sym_exception); - END_STATE(); - case 193: - if (lookahead == 'e') ADVANCE(195); - END_STATE(); - case 194: - ACCEPT_TOKEN(anon_sym_constraint); - END_STATE(); - case 195: - if (lookahead == 'r') ADVANCE(196); - END_STATE(); - case 196: - ACCEPT_TOKEN(anon_sym_initializer); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 102, .external_lex_state = 2}, - [2] = {.lex_state = 107, .external_lex_state = 2}, - [3] = {.lex_state = 107, .external_lex_state = 2}, - [4] = {.lex_state = 107, .external_lex_state = 2}, - [5] = {.lex_state = 107, .external_lex_state = 2}, - [6] = {.lex_state = 109, .external_lex_state = 2}, - [7] = {.lex_state = 109, .external_lex_state = 2}, - [8] = {.lex_state = 102, .external_lex_state = 2}, - [9] = {.lex_state = 102, .external_lex_state = 2}, - [10] = {.lex_state = 102, .external_lex_state = 2}, - [11] = {.lex_state = 102, .external_lex_state = 2}, - [12] = {.lex_state = 102, .external_lex_state = 2}, - [13] = {.lex_state = 102, .external_lex_state = 2}, - [14] = {.lex_state = 102, .external_lex_state = 2}, - [15] = {.lex_state = 102, .external_lex_state = 2}, - [16] = {.lex_state = 102, .external_lex_state = 2}, - [17] = {.lex_state = 102, .external_lex_state = 2}, - [18] = {.lex_state = 102, .external_lex_state = 2}, - [19] = {.lex_state = 102, .external_lex_state = 2}, - [20] = {.lex_state = 102, .external_lex_state = 2}, - [21] = {.lex_state = 102, .external_lex_state = 2}, - [22] = {.lex_state = 102, .external_lex_state = 2}, - [23] = {.lex_state = 102, .external_lex_state = 2}, - [24] = {.lex_state = 102, .external_lex_state = 2}, - [25] = {.lex_state = 102, .external_lex_state = 2}, - [26] = {.lex_state = 102, .external_lex_state = 2}, - [27] = {.lex_state = 102, .external_lex_state = 2}, - [28] = {.lex_state = 102, .external_lex_state = 2}, - [29] = {.lex_state = 102, .external_lex_state = 2}, - [30] = {.lex_state = 102, .external_lex_state = 2}, - [31] = {.lex_state = 102, .external_lex_state = 2}, - [32] = {.lex_state = 102, .external_lex_state = 2}, - [33] = {.lex_state = 102, .external_lex_state = 2}, - [34] = {.lex_state = 102, .external_lex_state = 2}, - [35] = {.lex_state = 102, .external_lex_state = 2}, - [36] = {.lex_state = 102, .external_lex_state = 2}, - [37] = {.lex_state = 102, .external_lex_state = 2}, - [38] = {.lex_state = 102, .external_lex_state = 2}, - [39] = {.lex_state = 102, .external_lex_state = 2}, - [40] = {.lex_state = 102, .external_lex_state = 2}, - [41] = {.lex_state = 102, .external_lex_state = 2}, - [42] = {.lex_state = 102, .external_lex_state = 2}, - [43] = {.lex_state = 102, .external_lex_state = 2}, - [44] = {.lex_state = 102, .external_lex_state = 2}, - [45] = {.lex_state = 102, .external_lex_state = 2}, - [46] = {.lex_state = 102, .external_lex_state = 2}, - [47] = {.lex_state = 17, .external_lex_state = 2}, - [48] = {.lex_state = 17, .external_lex_state = 2}, - [49] = {.lex_state = 102, .external_lex_state = 2}, - [50] = {.lex_state = 102, .external_lex_state = 2}, - [51] = {.lex_state = 17, .external_lex_state = 2}, - [52] = {.lex_state = 102, .external_lex_state = 2}, - [53] = {.lex_state = 102, .external_lex_state = 2}, - [54] = {.lex_state = 102, .external_lex_state = 2}, - [55] = {.lex_state = 17, .external_lex_state = 2}, - [56] = {.lex_state = 102, .external_lex_state = 2}, - [57] = {.lex_state = 102, .external_lex_state = 2}, - [58] = {.lex_state = 102, .external_lex_state = 2}, - [59] = {.lex_state = 102, .external_lex_state = 2}, - [60] = {.lex_state = 102, .external_lex_state = 2}, - [61] = {.lex_state = 102, .external_lex_state = 2}, - [62] = {.lex_state = 102, .external_lex_state = 2}, - [63] = {.lex_state = 102, .external_lex_state = 2}, - [64] = {.lex_state = 16, .external_lex_state = 2}, - [65] = {.lex_state = 16, .external_lex_state = 2}, - [66] = {.lex_state = 16, .external_lex_state = 2}, - [67] = {.lex_state = 16, .external_lex_state = 2}, - [68] = {.lex_state = 16, .external_lex_state = 2}, - [69] = {.lex_state = 16, .external_lex_state = 2}, - [70] = {.lex_state = 16, .external_lex_state = 2}, - [71] = {.lex_state = 16, .external_lex_state = 2}, - [72] = {.lex_state = 16, .external_lex_state = 2}, - [73] = {.lex_state = 16, .external_lex_state = 2}, - [74] = {.lex_state = 16, .external_lex_state = 2}, - [75] = {.lex_state = 16, .external_lex_state = 2}, - [76] = {.lex_state = 16, .external_lex_state = 2}, - [77] = {.lex_state = 16, .external_lex_state = 2}, - [78] = {.lex_state = 16, .external_lex_state = 2}, - [79] = {.lex_state = 16, .external_lex_state = 2}, - [80] = {.lex_state = 16, .external_lex_state = 2}, - [81] = {.lex_state = 16, .external_lex_state = 2}, - [82] = {.lex_state = 16, .external_lex_state = 2}, - [83] = {.lex_state = 16, .external_lex_state = 2}, - [84] = {.lex_state = 16, .external_lex_state = 2}, - [85] = {.lex_state = 16, .external_lex_state = 2}, - [86] = {.lex_state = 16, .external_lex_state = 2}, - [87] = {.lex_state = 16, .external_lex_state = 2}, - [88] = {.lex_state = 16, .external_lex_state = 2}, - [89] = {.lex_state = 16, .external_lex_state = 2}, - [90] = {.lex_state = 16, .external_lex_state = 2}, - [91] = {.lex_state = 16, .external_lex_state = 2}, - [92] = {.lex_state = 16, .external_lex_state = 2}, - [93] = {.lex_state = 16, .external_lex_state = 2}, - [94] = {.lex_state = 16, .external_lex_state = 2}, - [95] = {.lex_state = 16, .external_lex_state = 2}, - [96] = {.lex_state = 16, .external_lex_state = 2}, - [97] = {.lex_state = 16, .external_lex_state = 2}, - [98] = {.lex_state = 16, .external_lex_state = 2}, - [99] = {.lex_state = 16, .external_lex_state = 2}, - [100] = {.lex_state = 19, .external_lex_state = 2}, - [101] = {.lex_state = 19, .external_lex_state = 2}, - [102] = {.lex_state = 17, .external_lex_state = 2}, - [103] = {.lex_state = 17, .external_lex_state = 2}, - [104] = {.lex_state = 18, .external_lex_state = 2}, - [105] = {.lex_state = 17, .external_lex_state = 2}, - [106] = {.lex_state = 114, .external_lex_state = 2}, - [107] = {.lex_state = 114, .external_lex_state = 2}, - [108] = {.lex_state = 114, .external_lex_state = 2}, - [109] = {.lex_state = 114, .external_lex_state = 2}, - [110] = {.lex_state = 114, .external_lex_state = 2}, - [111] = {.lex_state = 114, .external_lex_state = 2}, - [112] = {.lex_state = 114, .external_lex_state = 2}, - [113] = {.lex_state = 114, .external_lex_state = 2}, - [114] = {.lex_state = 114, .external_lex_state = 2}, - [115] = {.lex_state = 114, .external_lex_state = 2}, - [116] = {.lex_state = 114, .external_lex_state = 2}, - [117] = {.lex_state = 114, .external_lex_state = 2}, - [118] = {.lex_state = 103, .external_lex_state = 2}, - [119] = {.lex_state = 114, .external_lex_state = 2}, - [120] = {.lex_state = 114, .external_lex_state = 2}, - [121] = {.lex_state = 114, .external_lex_state = 2}, - [122] = {.lex_state = 114, .external_lex_state = 2}, - [123] = {.lex_state = 114, .external_lex_state = 2}, - [124] = {.lex_state = 114, .external_lex_state = 2}, - [125] = {.lex_state = 114, .external_lex_state = 2}, - [126] = {.lex_state = 114, .external_lex_state = 2}, - [127] = {.lex_state = 114, .external_lex_state = 2}, - [128] = {.lex_state = 114, .external_lex_state = 2}, - [129] = {.lex_state = 114, .external_lex_state = 2}, - [130] = {.lex_state = 114, .external_lex_state = 2}, - [131] = {.lex_state = 114, .external_lex_state = 2}, - [132] = {.lex_state = 114, .external_lex_state = 2}, - [133] = {.lex_state = 114, .external_lex_state = 2}, - [134] = {.lex_state = 114, .external_lex_state = 2}, - [135] = {.lex_state = 114, .external_lex_state = 2}, - [136] = {.lex_state = 114, .external_lex_state = 2}, - [137] = {.lex_state = 103, .external_lex_state = 2}, - [138] = {.lex_state = 114, .external_lex_state = 2}, - [139] = {.lex_state = 114, .external_lex_state = 2}, - [140] = {.lex_state = 103, .external_lex_state = 2}, - [141] = {.lex_state = 114, .external_lex_state = 2}, - [142] = {.lex_state = 114, .external_lex_state = 2}, - [143] = {.lex_state = 114, .external_lex_state = 2}, - [144] = {.lex_state = 114, .external_lex_state = 2}, - [145] = {.lex_state = 114, .external_lex_state = 2}, - [146] = {.lex_state = 114, .external_lex_state = 2}, - [147] = {.lex_state = 114, .external_lex_state = 2}, - [148] = {.lex_state = 114, .external_lex_state = 2}, - [149] = {.lex_state = 114, .external_lex_state = 2}, - [150] = {.lex_state = 114, .external_lex_state = 2}, - [151] = {.lex_state = 114, .external_lex_state = 2}, - [152] = {.lex_state = 114, .external_lex_state = 2}, - [153] = {.lex_state = 114, .external_lex_state = 2}, - [154] = {.lex_state = 114, .external_lex_state = 2}, - [155] = {.lex_state = 114, .external_lex_state = 2}, - [156] = {.lex_state = 114, .external_lex_state = 2}, - [157] = {.lex_state = 114, .external_lex_state = 2}, - [158] = {.lex_state = 114, .external_lex_state = 2}, - [159] = {.lex_state = 114, .external_lex_state = 2}, - [160] = {.lex_state = 114, .external_lex_state = 2}, - [161] = {.lex_state = 114, .external_lex_state = 2}, - [162] = {.lex_state = 114, .external_lex_state = 2}, - [163] = {.lex_state = 114, .external_lex_state = 2}, - [164] = {.lex_state = 114, .external_lex_state = 2}, - [165] = {.lex_state = 114, .external_lex_state = 2}, - [166] = {.lex_state = 103, .external_lex_state = 2}, - [167] = {.lex_state = 114, .external_lex_state = 2}, - [168] = {.lex_state = 114, .external_lex_state = 2}, - [169] = {.lex_state = 114, .external_lex_state = 2}, - [170] = {.lex_state = 114, .external_lex_state = 2}, - [171] = {.lex_state = 114, .external_lex_state = 2}, - [172] = {.lex_state = 114, .external_lex_state = 2}, - [173] = {.lex_state = 114, .external_lex_state = 2}, - [174] = {.lex_state = 114, .external_lex_state = 2}, - [175] = {.lex_state = 114, .external_lex_state = 2}, - [176] = {.lex_state = 114, .external_lex_state = 2}, - [177] = {.lex_state = 115, .external_lex_state = 2}, - [178] = {.lex_state = 115, .external_lex_state = 2}, - [179] = {.lex_state = 115, .external_lex_state = 2}, - [180] = {.lex_state = 115, .external_lex_state = 2}, - [181] = {.lex_state = 115, .external_lex_state = 2}, - [182] = {.lex_state = 115, .external_lex_state = 2}, - [183] = {.lex_state = 115, .external_lex_state = 2}, - [184] = {.lex_state = 115, .external_lex_state = 2}, - [185] = {.lex_state = 102, .external_lex_state = 2}, - [186] = {.lex_state = 115, .external_lex_state = 2}, - [187] = {.lex_state = 115, .external_lex_state = 2}, - [188] = {.lex_state = 115, .external_lex_state = 2}, - [189] = {.lex_state = 115, .external_lex_state = 2}, - [190] = {.lex_state = 115, .external_lex_state = 2}, - [191] = {.lex_state = 115, .external_lex_state = 2}, - [192] = {.lex_state = 115, .external_lex_state = 2}, - [193] = {.lex_state = 115, .external_lex_state = 2}, - [194] = {.lex_state = 102, .external_lex_state = 2}, - [195] = {.lex_state = 115, .external_lex_state = 2}, - [196] = {.lex_state = 114, .external_lex_state = 2}, - [197] = {.lex_state = 115, .external_lex_state = 2}, - [198] = {.lex_state = 115, .external_lex_state = 2}, - [199] = {.lex_state = 115, .external_lex_state = 2}, - [200] = {.lex_state = 115, .external_lex_state = 2}, - [201] = {.lex_state = 115, .external_lex_state = 2}, - [202] = {.lex_state = 115, .external_lex_state = 2}, - [203] = {.lex_state = 115, .external_lex_state = 2}, - [204] = {.lex_state = 115, .external_lex_state = 2}, - [205] = {.lex_state = 115, .external_lex_state = 2}, - [206] = {.lex_state = 115, .external_lex_state = 2}, - [207] = {.lex_state = 115, .external_lex_state = 2}, - [208] = {.lex_state = 115, .external_lex_state = 2}, - [209] = {.lex_state = 115, .external_lex_state = 2}, - [210] = {.lex_state = 115, .external_lex_state = 2}, - [211] = {.lex_state = 115, .external_lex_state = 2}, - [212] = {.lex_state = 12, .external_lex_state = 2}, - [213] = {.lex_state = 115, .external_lex_state = 2}, - [214] = {.lex_state = 115, .external_lex_state = 2}, - [215] = {.lex_state = 114, .external_lex_state = 2}, - [216] = {.lex_state = 11, .external_lex_state = 2}, - [217] = {.lex_state = 114, .external_lex_state = 2}, - [218] = {.lex_state = 102, .external_lex_state = 2}, - [219] = {.lex_state = 12, .external_lex_state = 2}, - [220] = {.lex_state = 12, .external_lex_state = 2}, - [221] = {.lex_state = 12, .external_lex_state = 2}, - [222] = {.lex_state = 112, .external_lex_state = 2}, - [223] = {.lex_state = 112, .external_lex_state = 2}, - [224] = {.lex_state = 112, .external_lex_state = 2}, - [225] = {.lex_state = 115, .external_lex_state = 2}, - [226] = {.lex_state = 11, .external_lex_state = 2}, - [227] = {.lex_state = 112, .external_lex_state = 2}, - [228] = {.lex_state = 11, .external_lex_state = 2}, - [229] = {.lex_state = 112, .external_lex_state = 2}, - [230] = {.lex_state = 115, .external_lex_state = 2}, - [231] = {.lex_state = 112, .external_lex_state = 2}, - [232] = {.lex_state = 11, .external_lex_state = 2}, - [233] = {.lex_state = 11, .external_lex_state = 2}, - [234] = {.lex_state = 11, .external_lex_state = 2}, - [235] = {.lex_state = 11, .external_lex_state = 2}, - [236] = {.lex_state = 11, .external_lex_state = 2}, - [237] = {.lex_state = 11, .external_lex_state = 2}, - [238] = {.lex_state = 11, .external_lex_state = 2}, - [239] = {.lex_state = 11, .external_lex_state = 2}, - [240] = {.lex_state = 11, .external_lex_state = 2}, - [241] = {.lex_state = 11, .external_lex_state = 2}, - [242] = {.lex_state = 11, .external_lex_state = 2}, - [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 11, .external_lex_state = 2}, - [245] = {.lex_state = 11, .external_lex_state = 2}, - [246] = {.lex_state = 11, .external_lex_state = 2}, - [247] = {.lex_state = 11, .external_lex_state = 2}, - [248] = {.lex_state = 11, .external_lex_state = 2}, - [249] = {.lex_state = 102, .external_lex_state = 2}, - [250] = {.lex_state = 11, .external_lex_state = 2}, - [251] = {.lex_state = 11, .external_lex_state = 2}, - [252] = {.lex_state = 11, .external_lex_state = 2}, - [253] = {.lex_state = 11, .external_lex_state = 2}, - [254] = {.lex_state = 11, .external_lex_state = 2}, - [255] = {.lex_state = 11, .external_lex_state = 2}, - [256] = {.lex_state = 11, .external_lex_state = 2}, - [257] = {.lex_state = 11, .external_lex_state = 2}, - [258] = {.lex_state = 11, .external_lex_state = 2}, - [259] = {.lex_state = 11, .external_lex_state = 2}, - [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 11, .external_lex_state = 2}, - [262] = {.lex_state = 11, .external_lex_state = 2}, - [263] = {.lex_state = 11, .external_lex_state = 2}, - [264] = {.lex_state = 11, .external_lex_state = 2}, - [265] = {.lex_state = 11, .external_lex_state = 2}, - [266] = {.lex_state = 12, .external_lex_state = 2}, - [267] = {.lex_state = 12, .external_lex_state = 2}, - [268] = {.lex_state = 12, .external_lex_state = 2}, - [269] = {.lex_state = 12, .external_lex_state = 2}, - [270] = {.lex_state = 12, .external_lex_state = 2}, - [271] = {.lex_state = 12, .external_lex_state = 2}, - [272] = {.lex_state = 12, .external_lex_state = 2}, - [273] = {.lex_state = 12, .external_lex_state = 2}, - [274] = {.lex_state = 12, .external_lex_state = 2}, - [275] = {.lex_state = 12, .external_lex_state = 2}, - [276] = {.lex_state = 12, .external_lex_state = 2}, - [277] = {.lex_state = 12, .external_lex_state = 2}, - [278] = {.lex_state = 12, .external_lex_state = 2}, - [279] = {.lex_state = 12, .external_lex_state = 2}, - [280] = {.lex_state = 12, .external_lex_state = 2}, - [281] = {.lex_state = 12, .external_lex_state = 2}, - [282] = {.lex_state = 12, .external_lex_state = 2}, - [283] = {.lex_state = 12, .external_lex_state = 2}, - [284] = {.lex_state = 12, .external_lex_state = 2}, - [285] = {.lex_state = 12, .external_lex_state = 2}, - [286] = {.lex_state = 12, .external_lex_state = 2}, - [287] = {.lex_state = 12, .external_lex_state = 2}, - [288] = {.lex_state = 12, .external_lex_state = 2}, - [289] = {.lex_state = 12, .external_lex_state = 2}, - [290] = {.lex_state = 12, .external_lex_state = 2}, - [291] = {.lex_state = 12, .external_lex_state = 2}, - [292] = {.lex_state = 12, .external_lex_state = 2}, - [293] = {.lex_state = 12, .external_lex_state = 2}, - [294] = {.lex_state = 12, .external_lex_state = 2}, - [295] = {.lex_state = 12, .external_lex_state = 2}, - [296] = {.lex_state = 12, .external_lex_state = 2}, - [297] = {.lex_state = 12, .external_lex_state = 2}, - [298] = {.lex_state = 110, .external_lex_state = 2}, - [299] = {.lex_state = 110, .external_lex_state = 2}, - [300] = {.lex_state = 110, .external_lex_state = 2}, - [301] = {.lex_state = 12, .external_lex_state = 2}, - [302] = {.lex_state = 110, .external_lex_state = 2}, - [303] = {.lex_state = 110, .external_lex_state = 2}, - [304] = {.lex_state = 110, .external_lex_state = 2}, - [305] = {.lex_state = 103, .external_lex_state = 2}, - [306] = {.lex_state = 12, .external_lex_state = 2}, - [307] = {.lex_state = 102, .external_lex_state = 2}, - [308] = {.lex_state = 13, .external_lex_state = 2}, - [309] = {.lex_state = 13, .external_lex_state = 2}, - [310] = {.lex_state = 13, .external_lex_state = 2}, - [311] = {.lex_state = 13, .external_lex_state = 2}, - [312] = {.lex_state = 13, .external_lex_state = 2}, - [313] = {.lex_state = 13, .external_lex_state = 2}, - [314] = {.lex_state = 13, .external_lex_state = 2}, - [315] = {.lex_state = 13, .external_lex_state = 2}, - [316] = {.lex_state = 13, .external_lex_state = 2}, - [317] = {.lex_state = 13, .external_lex_state = 2}, - [318] = {.lex_state = 13, .external_lex_state = 2}, - [319] = {.lex_state = 13, .external_lex_state = 2}, - [320] = {.lex_state = 13, .external_lex_state = 2}, - [321] = {.lex_state = 13, .external_lex_state = 2}, - [322] = {.lex_state = 13, .external_lex_state = 2}, - [323] = {.lex_state = 13, .external_lex_state = 2}, - [324] = {.lex_state = 102, .external_lex_state = 2}, - [325] = {.lex_state = 11, .external_lex_state = 2}, - [326] = {.lex_state = 102, .external_lex_state = 2}, - [327] = {.lex_state = 13, .external_lex_state = 2}, - [328] = {.lex_state = 13, .external_lex_state = 2}, - [329] = {.lex_state = 13, .external_lex_state = 2}, - [330] = {.lex_state = 13, .external_lex_state = 2}, - [331] = {.lex_state = 102, .external_lex_state = 2}, - [332] = {.lex_state = 102, .external_lex_state = 2}, - [333] = {.lex_state = 13, .external_lex_state = 2}, - [334] = {.lex_state = 11, .external_lex_state = 2}, - [335] = {.lex_state = 102, .external_lex_state = 2}, - [336] = {.lex_state = 102, .external_lex_state = 2}, - [337] = {.lex_state = 13, .external_lex_state = 2}, - [338] = {.lex_state = 11, .external_lex_state = 2}, - [339] = {.lex_state = 102, .external_lex_state = 2}, - [340] = {.lex_state = 13, .external_lex_state = 2}, - [341] = {.lex_state = 13, .external_lex_state = 2}, - [342] = {.lex_state = 11, .external_lex_state = 2}, - [343] = {.lex_state = 102, .external_lex_state = 2}, - [344] = {.lex_state = 102, .external_lex_state = 2}, - [345] = {.lex_state = 102, .external_lex_state = 2}, - [346] = {.lex_state = 13, .external_lex_state = 2}, - [347] = {.lex_state = 102, .external_lex_state = 2}, - [348] = {.lex_state = 102, .external_lex_state = 2}, - [349] = {.lex_state = 13, .external_lex_state = 2}, - [350] = {.lex_state = 102, .external_lex_state = 2}, - [351] = {.lex_state = 11, .external_lex_state = 2}, - [352] = {.lex_state = 11, .external_lex_state = 2}, - [353] = {.lex_state = 13, .external_lex_state = 2}, - [354] = {.lex_state = 102, .external_lex_state = 2}, - [355] = {.lex_state = 102, .external_lex_state = 2}, - [356] = {.lex_state = 102, .external_lex_state = 2}, - [357] = {.lex_state = 11, .external_lex_state = 2}, - [358] = {.lex_state = 11, .external_lex_state = 2}, - [359] = {.lex_state = 11, .external_lex_state = 2}, - [360] = {.lex_state = 13, .external_lex_state = 2}, - [361] = {.lex_state = 13, .external_lex_state = 2}, - [362] = {.lex_state = 13, .external_lex_state = 2}, - [363] = {.lex_state = 11, .external_lex_state = 2}, - [364] = {.lex_state = 11, .external_lex_state = 2}, - [365] = {.lex_state = 102, .external_lex_state = 2}, - [366] = {.lex_state = 11, .external_lex_state = 2}, - [367] = {.lex_state = 11, .external_lex_state = 2}, - [368] = {.lex_state = 11, .external_lex_state = 2}, - [369] = {.lex_state = 102, .external_lex_state = 2}, - [370] = {.lex_state = 102, .external_lex_state = 2}, - [371] = {.lex_state = 11, .external_lex_state = 2}, - [372] = {.lex_state = 13, .external_lex_state = 2}, - [373] = {.lex_state = 11, .external_lex_state = 2}, - [374] = {.lex_state = 13, .external_lex_state = 2}, - [375] = {.lex_state = 102, .external_lex_state = 2}, - [376] = {.lex_state = 102, .external_lex_state = 2}, - [377] = {.lex_state = 102, .external_lex_state = 2}, - [378] = {.lex_state = 102, .external_lex_state = 2}, - [379] = {.lex_state = 102, .external_lex_state = 2}, - [380] = {.lex_state = 102, .external_lex_state = 2}, - [381] = {.lex_state = 102, .external_lex_state = 2}, - [382] = {.lex_state = 102, .external_lex_state = 2}, - [383] = {.lex_state = 102, .external_lex_state = 2}, - [384] = {.lex_state = 102, .external_lex_state = 2}, - [385] = {.lex_state = 102, .external_lex_state = 2}, - [386] = {.lex_state = 13, .external_lex_state = 2}, - [387] = {.lex_state = 102, .external_lex_state = 2}, - [388] = {.lex_state = 102, .external_lex_state = 2}, - [389] = {.lex_state = 102, .external_lex_state = 2}, - [390] = {.lex_state = 102, .external_lex_state = 2}, - [391] = {.lex_state = 102, .external_lex_state = 2}, - [392] = {.lex_state = 102, .external_lex_state = 2}, - [393] = {.lex_state = 102, .external_lex_state = 2}, - [394] = {.lex_state = 102, .external_lex_state = 2}, - [395] = {.lex_state = 102, .external_lex_state = 2}, - [396] = {.lex_state = 102, .external_lex_state = 2}, - [397] = {.lex_state = 102, .external_lex_state = 2}, - [398] = {.lex_state = 102, .external_lex_state = 2}, - [399] = {.lex_state = 102, .external_lex_state = 2}, - [400] = {.lex_state = 102, .external_lex_state = 2}, - [401] = {.lex_state = 102, .external_lex_state = 2}, - [402] = {.lex_state = 102, .external_lex_state = 2}, - [403] = {.lex_state = 102, .external_lex_state = 2}, - [404] = {.lex_state = 102, .external_lex_state = 2}, - [405] = {.lex_state = 102, .external_lex_state = 2}, - [406] = {.lex_state = 102, .external_lex_state = 2}, - [407] = {.lex_state = 102, .external_lex_state = 2}, - [408] = {.lex_state = 102, .external_lex_state = 2}, - [409] = {.lex_state = 102, .external_lex_state = 2}, - [410] = {.lex_state = 102, .external_lex_state = 2}, - [411] = {.lex_state = 102, .external_lex_state = 2}, - [412] = {.lex_state = 102, .external_lex_state = 2}, - [413] = {.lex_state = 102, .external_lex_state = 2}, - [414] = {.lex_state = 102, .external_lex_state = 2}, - [415] = {.lex_state = 102, .external_lex_state = 2}, - [416] = {.lex_state = 102, .external_lex_state = 2}, - [417] = {.lex_state = 102, .external_lex_state = 2}, - [418] = {.lex_state = 102, .external_lex_state = 2}, - [419] = {.lex_state = 102, .external_lex_state = 2}, - [420] = {.lex_state = 102, .external_lex_state = 2}, - [421] = {.lex_state = 102, .external_lex_state = 2}, - [422] = {.lex_state = 102, .external_lex_state = 2}, - [423] = {.lex_state = 102, .external_lex_state = 2}, - [424] = {.lex_state = 102, .external_lex_state = 2}, - [425] = {.lex_state = 102, .external_lex_state = 2}, - [426] = {.lex_state = 102, .external_lex_state = 2}, - [427] = {.lex_state = 102, .external_lex_state = 2}, - [428] = {.lex_state = 102, .external_lex_state = 2}, - [429] = {.lex_state = 102, .external_lex_state = 2}, - [430] = {.lex_state = 102, .external_lex_state = 2}, - [431] = {.lex_state = 102, .external_lex_state = 2}, - [432] = {.lex_state = 102, .external_lex_state = 2}, - [433] = {.lex_state = 102, .external_lex_state = 2}, - [434] = {.lex_state = 102, .external_lex_state = 2}, - [435] = {.lex_state = 102, .external_lex_state = 2}, - [436] = {.lex_state = 102, .external_lex_state = 2}, - [437] = {.lex_state = 102, .external_lex_state = 2}, - [438] = {.lex_state = 102, .external_lex_state = 2}, - [439] = {.lex_state = 102, .external_lex_state = 2}, - [440] = {.lex_state = 102, .external_lex_state = 2}, - [441] = {.lex_state = 102, .external_lex_state = 2}, - [442] = {.lex_state = 102, .external_lex_state = 2}, - [443] = {.lex_state = 102, .external_lex_state = 2}, - [444] = {.lex_state = 102, .external_lex_state = 2}, - [445] = {.lex_state = 102, .external_lex_state = 2}, - [446] = {.lex_state = 102, .external_lex_state = 2}, - [447] = {.lex_state = 102, .external_lex_state = 2}, - [448] = {.lex_state = 102, .external_lex_state = 2}, - [449] = {.lex_state = 102, .external_lex_state = 2}, - [450] = {.lex_state = 102, .external_lex_state = 2}, - [451] = {.lex_state = 12, .external_lex_state = 2}, - [452] = {.lex_state = 102, .external_lex_state = 2}, - [453] = {.lex_state = 102, .external_lex_state = 2}, - [454] = {.lex_state = 12, .external_lex_state = 2}, - [455] = {.lex_state = 102, .external_lex_state = 2}, - [456] = {.lex_state = 11, .external_lex_state = 2}, - [457] = {.lex_state = 12, .external_lex_state = 2}, - [458] = {.lex_state = 12, .external_lex_state = 2}, - [459] = {.lex_state = 11, .external_lex_state = 2}, - [460] = {.lex_state = 11, .external_lex_state = 2}, - [461] = {.lex_state = 11, .external_lex_state = 2}, - [462] = {.lex_state = 12, .external_lex_state = 2}, - [463] = {.lex_state = 12, .external_lex_state = 2}, - [464] = {.lex_state = 12, .external_lex_state = 2}, - [465] = {.lex_state = 11, .external_lex_state = 2}, - [466] = {.lex_state = 102, .external_lex_state = 2}, - [467] = {.lex_state = 11, .external_lex_state = 2}, - [468] = {.lex_state = 102, .external_lex_state = 2}, - [469] = {.lex_state = 102, .external_lex_state = 2}, - [470] = {.lex_state = 11, .external_lex_state = 2}, - [471] = {.lex_state = 12, .external_lex_state = 2}, - [472] = {.lex_state = 102, .external_lex_state = 2}, - [473] = {.lex_state = 102, .external_lex_state = 2}, - [474] = {.lex_state = 102, .external_lex_state = 2}, - [475] = {.lex_state = 11, .external_lex_state = 2}, - [476] = {.lex_state = 11, .external_lex_state = 2}, - [477] = {.lex_state = 102, .external_lex_state = 2}, - [478] = {.lex_state = 11, .external_lex_state = 2}, - [479] = {.lex_state = 12, .external_lex_state = 2}, - [480] = {.lex_state = 12, .external_lex_state = 2}, - [481] = {.lex_state = 12, .external_lex_state = 2}, - [482] = {.lex_state = 12, .external_lex_state = 2}, - [483] = {.lex_state = 12, .external_lex_state = 2}, - [484] = {.lex_state = 102, .external_lex_state = 2}, - [485] = {.lex_state = 12, .external_lex_state = 2}, - [486] = {.lex_state = 12, .external_lex_state = 2}, - [487] = {.lex_state = 102, .external_lex_state = 2}, - [488] = {.lex_state = 102, .external_lex_state = 2}, - [489] = {.lex_state = 12, .external_lex_state = 2}, - [490] = {.lex_state = 11, .external_lex_state = 2}, - [491] = {.lex_state = 102, .external_lex_state = 2}, - [492] = {.lex_state = 102, .external_lex_state = 2}, - [493] = {.lex_state = 11, .external_lex_state = 2}, - [494] = {.lex_state = 102, .external_lex_state = 2}, - [495] = {.lex_state = 12, .external_lex_state = 2}, - [496] = {.lex_state = 102, .external_lex_state = 2}, - [497] = {.lex_state = 102, .external_lex_state = 2}, - [498] = {.lex_state = 11, .external_lex_state = 2}, - [499] = {.lex_state = 11, .external_lex_state = 2}, - [500] = {.lex_state = 102, .external_lex_state = 2}, - [501] = {.lex_state = 12, .external_lex_state = 2}, - [502] = {.lex_state = 102, .external_lex_state = 2}, - [503] = {.lex_state = 102, .external_lex_state = 2}, - [504] = {.lex_state = 11, .external_lex_state = 2}, - [505] = {.lex_state = 12, .external_lex_state = 2}, - [506] = {.lex_state = 102, .external_lex_state = 2}, - [507] = {.lex_state = 11, .external_lex_state = 2}, - [508] = {.lex_state = 102, .external_lex_state = 2}, - [509] = {.lex_state = 102, .external_lex_state = 2}, - [510] = {.lex_state = 102, .external_lex_state = 2}, - [511] = {.lex_state = 102, .external_lex_state = 2}, - [512] = {.lex_state = 102, .external_lex_state = 2}, - [513] = {.lex_state = 102, .external_lex_state = 2}, - [514] = {.lex_state = 102, .external_lex_state = 2}, - [515] = {.lex_state = 12, .external_lex_state = 2}, - [516] = {.lex_state = 102, .external_lex_state = 2}, - [517] = {.lex_state = 12, .external_lex_state = 2}, - [518] = {.lex_state = 102, .external_lex_state = 2}, - [519] = {.lex_state = 102, .external_lex_state = 2}, - [520] = {.lex_state = 102, .external_lex_state = 2}, - [521] = {.lex_state = 102, .external_lex_state = 2}, - [522] = {.lex_state = 102, .external_lex_state = 2}, - [523] = {.lex_state = 102, .external_lex_state = 2}, - [524] = {.lex_state = 102, .external_lex_state = 2}, - [525] = {.lex_state = 102, .external_lex_state = 2}, - [526] = {.lex_state = 102, .external_lex_state = 2}, - [527] = {.lex_state = 102, .external_lex_state = 2}, - [528] = {.lex_state = 102, .external_lex_state = 2}, - [529] = {.lex_state = 102, .external_lex_state = 2}, - [530] = {.lex_state = 102, .external_lex_state = 2}, - [531] = {.lex_state = 102, .external_lex_state = 2}, - [532] = {.lex_state = 102, .external_lex_state = 2}, - [533] = {.lex_state = 102, .external_lex_state = 2}, - [534] = {.lex_state = 102, .external_lex_state = 2}, - [535] = {.lex_state = 102, .external_lex_state = 2}, - [536] = {.lex_state = 102, .external_lex_state = 2}, - [537] = {.lex_state = 102, .external_lex_state = 2}, - [538] = {.lex_state = 102, .external_lex_state = 2}, - [539] = {.lex_state = 102, .external_lex_state = 2}, - [540] = {.lex_state = 12, .external_lex_state = 2}, - [541] = {.lex_state = 12, .external_lex_state = 2}, - [542] = {.lex_state = 102, .external_lex_state = 2}, - [543] = {.lex_state = 102, .external_lex_state = 2}, - [544] = {.lex_state = 102, .external_lex_state = 2}, - [545] = {.lex_state = 102, .external_lex_state = 2}, - [546] = {.lex_state = 102, .external_lex_state = 2}, - [547] = {.lex_state = 102, .external_lex_state = 2}, - [548] = {.lex_state = 102, .external_lex_state = 2}, - [549] = {.lex_state = 102, .external_lex_state = 2}, - [550] = {.lex_state = 102, .external_lex_state = 2}, - [551] = {.lex_state = 102, .external_lex_state = 2}, - [552] = {.lex_state = 102, .external_lex_state = 2}, - [553] = {.lex_state = 102, .external_lex_state = 2}, - [554] = {.lex_state = 102, .external_lex_state = 2}, - [555] = {.lex_state = 102, .external_lex_state = 2}, - [556] = {.lex_state = 102, .external_lex_state = 2}, - [557] = {.lex_state = 102, .external_lex_state = 2}, - [558] = {.lex_state = 102, .external_lex_state = 2}, - [559] = {.lex_state = 102, .external_lex_state = 2}, - [560] = {.lex_state = 102, .external_lex_state = 2}, - [561] = {.lex_state = 102, .external_lex_state = 2}, - [562] = {.lex_state = 102, .external_lex_state = 2}, - [563] = {.lex_state = 102, .external_lex_state = 2}, - [564] = {.lex_state = 102, .external_lex_state = 2}, - [565] = {.lex_state = 102, .external_lex_state = 2}, - [566] = {.lex_state = 102, .external_lex_state = 2}, - [567] = {.lex_state = 102, .external_lex_state = 2}, - [568] = {.lex_state = 102, .external_lex_state = 2}, - [569] = {.lex_state = 102, .external_lex_state = 2}, - [570] = {.lex_state = 102, .external_lex_state = 2}, - [571] = {.lex_state = 102, .external_lex_state = 2}, - [572] = {.lex_state = 102, .external_lex_state = 2}, - [573] = {.lex_state = 102, .external_lex_state = 2}, - [574] = {.lex_state = 102, .external_lex_state = 2}, - [575] = {.lex_state = 102, .external_lex_state = 2}, - [576] = {.lex_state = 102, .external_lex_state = 2}, - [577] = {.lex_state = 102, .external_lex_state = 2}, - [578] = {.lex_state = 102, .external_lex_state = 2}, - [579] = {.lex_state = 102, .external_lex_state = 2}, - [580] = {.lex_state = 102, .external_lex_state = 2}, - [581] = {.lex_state = 102, .external_lex_state = 2}, - [582] = {.lex_state = 102, .external_lex_state = 2}, - [583] = {.lex_state = 12, .external_lex_state = 2}, - [584] = {.lex_state = 102, .external_lex_state = 2}, - [585] = {.lex_state = 102, .external_lex_state = 2}, - [586] = {.lex_state = 102, .external_lex_state = 2}, - [587] = {.lex_state = 102, .external_lex_state = 2}, - [588] = {.lex_state = 12, .external_lex_state = 2}, - [589] = {.lex_state = 102, .external_lex_state = 2}, - [590] = {.lex_state = 12, .external_lex_state = 2}, - [591] = {.lex_state = 102, .external_lex_state = 2}, - [592] = {.lex_state = 102, .external_lex_state = 2}, - [593] = {.lex_state = 102, .external_lex_state = 2}, - [594] = {.lex_state = 102, .external_lex_state = 2}, - [595] = {.lex_state = 102, .external_lex_state = 2}, - [596] = {.lex_state = 102, .external_lex_state = 2}, - [597] = {.lex_state = 102, .external_lex_state = 2}, - [598] = {.lex_state = 102, .external_lex_state = 2}, - [599] = {.lex_state = 102, .external_lex_state = 2}, - [600] = {.lex_state = 102, .external_lex_state = 2}, - [601] = {.lex_state = 102, .external_lex_state = 2}, - [602] = {.lex_state = 12, .external_lex_state = 2}, - [603] = {.lex_state = 102, .external_lex_state = 2}, - [604] = {.lex_state = 12, .external_lex_state = 2}, - [605] = {.lex_state = 102, .external_lex_state = 2}, - [606] = {.lex_state = 102, .external_lex_state = 2}, - [607] = {.lex_state = 102, .external_lex_state = 2}, - [608] = {.lex_state = 102, .external_lex_state = 2}, - [609] = {.lex_state = 102, .external_lex_state = 2}, - [610] = {.lex_state = 102, .external_lex_state = 2}, - [611] = {.lex_state = 102, .external_lex_state = 2}, - [612] = {.lex_state = 102, .external_lex_state = 2}, - [613] = {.lex_state = 102, .external_lex_state = 2}, - [614] = {.lex_state = 102, .external_lex_state = 2}, - [615] = {.lex_state = 102, .external_lex_state = 2}, - [616] = {.lex_state = 102, .external_lex_state = 2}, - [617] = {.lex_state = 102, .external_lex_state = 2}, - [618] = {.lex_state = 12, .external_lex_state = 2}, - [619] = {.lex_state = 102, .external_lex_state = 2}, - [620] = {.lex_state = 12, .external_lex_state = 2}, - [621] = {.lex_state = 102, .external_lex_state = 2}, - [622] = {.lex_state = 102, .external_lex_state = 2}, - [623] = {.lex_state = 102, .external_lex_state = 2}, - [624] = {.lex_state = 102, .external_lex_state = 2}, - [625] = {.lex_state = 102, .external_lex_state = 2}, - [626] = {.lex_state = 102, .external_lex_state = 2}, - [627] = {.lex_state = 102, .external_lex_state = 2}, - [628] = {.lex_state = 102, .external_lex_state = 2}, - [629] = {.lex_state = 102, .external_lex_state = 2}, - [630] = {.lex_state = 102, .external_lex_state = 2}, - [631] = {.lex_state = 102, .external_lex_state = 2}, - [632] = {.lex_state = 12, .external_lex_state = 2}, - [633] = {.lex_state = 102, .external_lex_state = 2}, - [634] = {.lex_state = 102, .external_lex_state = 2}, - [635] = {.lex_state = 102, .external_lex_state = 2}, - [636] = {.lex_state = 102, .external_lex_state = 2}, - [637] = {.lex_state = 12, .external_lex_state = 2}, - [638] = {.lex_state = 102, .external_lex_state = 2}, - [639] = {.lex_state = 102, .external_lex_state = 2}, - [640] = {.lex_state = 102, .external_lex_state = 2}, - [641] = {.lex_state = 102, .external_lex_state = 2}, - [642] = {.lex_state = 12, .external_lex_state = 2}, - [643] = {.lex_state = 102, .external_lex_state = 2}, - [644] = {.lex_state = 102, .external_lex_state = 2}, - [645] = {.lex_state = 102, .external_lex_state = 2}, - [646] = {.lex_state = 12, .external_lex_state = 2}, - [647] = {.lex_state = 12, .external_lex_state = 2}, - [648] = {.lex_state = 102, .external_lex_state = 2}, - [649] = {.lex_state = 12, .external_lex_state = 2}, - [650] = {.lex_state = 102, .external_lex_state = 2}, - [651] = {.lex_state = 102, .external_lex_state = 2}, - [652] = {.lex_state = 102, .external_lex_state = 2}, - [653] = {.lex_state = 12, .external_lex_state = 2}, - [654] = {.lex_state = 102, .external_lex_state = 2}, - [655] = {.lex_state = 102, .external_lex_state = 2}, - [656] = {.lex_state = 102, .external_lex_state = 2}, - [657] = {.lex_state = 102, .external_lex_state = 2}, - [658] = {.lex_state = 102, .external_lex_state = 2}, - [659] = {.lex_state = 102, .external_lex_state = 2}, - [660] = {.lex_state = 12, .external_lex_state = 2}, - [661] = {.lex_state = 102, .external_lex_state = 2}, - [662] = {.lex_state = 102, .external_lex_state = 2}, - [663] = {.lex_state = 12, .external_lex_state = 2}, - [664] = {.lex_state = 102, .external_lex_state = 2}, - [665] = {.lex_state = 102, .external_lex_state = 2}, - [666] = {.lex_state = 102, .external_lex_state = 2}, - [667] = {.lex_state = 12, .external_lex_state = 2}, - [668] = {.lex_state = 102, .external_lex_state = 2}, - [669] = {.lex_state = 102, .external_lex_state = 2}, - [670] = {.lex_state = 12, .external_lex_state = 2}, - [671] = {.lex_state = 12, .external_lex_state = 2}, - [672] = {.lex_state = 12, .external_lex_state = 2}, - [673] = {.lex_state = 12, .external_lex_state = 2}, - [674] = {.lex_state = 12, .external_lex_state = 2}, - [675] = {.lex_state = 102, .external_lex_state = 2}, - [676] = {.lex_state = 102, .external_lex_state = 2}, - [677] = {.lex_state = 102, .external_lex_state = 2}, - [678] = {.lex_state = 102, .external_lex_state = 2}, - [679] = {.lex_state = 102, .external_lex_state = 2}, - [680] = {.lex_state = 102, .external_lex_state = 2}, - [681] = {.lex_state = 102, .external_lex_state = 2}, - [682] = {.lex_state = 102, .external_lex_state = 2}, - [683] = {.lex_state = 102, .external_lex_state = 2}, - [684] = {.lex_state = 12, .external_lex_state = 2}, - [685] = {.lex_state = 102, .external_lex_state = 2}, - [686] = {.lex_state = 102, .external_lex_state = 2}, - [687] = {.lex_state = 102, .external_lex_state = 2}, - [688] = {.lex_state = 12, .external_lex_state = 2}, - [689] = {.lex_state = 102, .external_lex_state = 2}, - [690] = {.lex_state = 102, .external_lex_state = 2}, - [691] = {.lex_state = 102, .external_lex_state = 2}, - [692] = {.lex_state = 102, .external_lex_state = 2}, - [693] = {.lex_state = 102, .external_lex_state = 2}, - [694] = {.lex_state = 102, .external_lex_state = 2}, - [695] = {.lex_state = 12, .external_lex_state = 2}, - [696] = {.lex_state = 102, .external_lex_state = 2}, - [697] = {.lex_state = 102, .external_lex_state = 2}, - [698] = {.lex_state = 102, .external_lex_state = 2}, - [699] = {.lex_state = 12, .external_lex_state = 2}, - [700] = {.lex_state = 12, .external_lex_state = 2}, - [701] = {.lex_state = 102, .external_lex_state = 2}, - [702] = {.lex_state = 102, .external_lex_state = 2}, - [703] = {.lex_state = 102, .external_lex_state = 2}, - [704] = {.lex_state = 102, .external_lex_state = 2}, - [705] = {.lex_state = 102, .external_lex_state = 2}, - [706] = {.lex_state = 102, .external_lex_state = 2}, - [707] = {.lex_state = 102, .external_lex_state = 2}, - [708] = {.lex_state = 102, .external_lex_state = 2}, - [709] = {.lex_state = 102, .external_lex_state = 2}, - [710] = {.lex_state = 102, .external_lex_state = 2}, - [711] = {.lex_state = 102, .external_lex_state = 2}, - [712] = {.lex_state = 102, .external_lex_state = 2}, - [713] = {.lex_state = 102, .external_lex_state = 2}, - [714] = {.lex_state = 102, .external_lex_state = 2}, - [715] = {.lex_state = 102, .external_lex_state = 2}, - [716] = {.lex_state = 102, .external_lex_state = 2}, - [717] = {.lex_state = 102, .external_lex_state = 2}, - [718] = {.lex_state = 102, .external_lex_state = 2}, - [719] = {.lex_state = 102, .external_lex_state = 2}, - [720] = {.lex_state = 12, .external_lex_state = 2}, - [721] = {.lex_state = 102, .external_lex_state = 2}, - [722] = {.lex_state = 102, .external_lex_state = 2}, - [723] = {.lex_state = 102, .external_lex_state = 2}, - [724] = {.lex_state = 102, .external_lex_state = 2}, - [725] = {.lex_state = 102, .external_lex_state = 2}, - [726] = {.lex_state = 102, .external_lex_state = 2}, - [727] = {.lex_state = 102, .external_lex_state = 2}, - [728] = {.lex_state = 102, .external_lex_state = 2}, - [729] = {.lex_state = 102, .external_lex_state = 2}, - [730] = {.lex_state = 102, .external_lex_state = 2}, - [731] = {.lex_state = 102, .external_lex_state = 2}, - [732] = {.lex_state = 102, .external_lex_state = 2}, - [733] = {.lex_state = 102, .external_lex_state = 2}, - [734] = {.lex_state = 102, .external_lex_state = 2}, - [735] = {.lex_state = 102, .external_lex_state = 2}, - [736] = {.lex_state = 102, .external_lex_state = 2}, - [737] = {.lex_state = 102, .external_lex_state = 2}, - [738] = {.lex_state = 102, .external_lex_state = 2}, - [739] = {.lex_state = 102, .external_lex_state = 2}, - [740] = {.lex_state = 102, .external_lex_state = 2}, - [741] = {.lex_state = 12, .external_lex_state = 2}, - [742] = {.lex_state = 102, .external_lex_state = 2}, - [743] = {.lex_state = 102, .external_lex_state = 2}, - [744] = {.lex_state = 12, .external_lex_state = 2}, - [745] = {.lex_state = 102, .external_lex_state = 2}, - [746] = {.lex_state = 102, .external_lex_state = 2}, - [747] = {.lex_state = 102, .external_lex_state = 2}, - [748] = {.lex_state = 102, .external_lex_state = 2}, - [749] = {.lex_state = 102, .external_lex_state = 2}, - [750] = {.lex_state = 102, .external_lex_state = 2}, - [751] = {.lex_state = 102, .external_lex_state = 2}, - [752] = {.lex_state = 102, .external_lex_state = 2}, - [753] = {.lex_state = 102, .external_lex_state = 2}, - [754] = {.lex_state = 102, .external_lex_state = 2}, - [755] = {.lex_state = 102, .external_lex_state = 2}, - [756] = {.lex_state = 102, .external_lex_state = 2}, - [757] = {.lex_state = 102, .external_lex_state = 2}, - [758] = {.lex_state = 102, .external_lex_state = 2}, - [759] = {.lex_state = 102, .external_lex_state = 2}, - [760] = {.lex_state = 102, .external_lex_state = 2}, - [761] = {.lex_state = 102, .external_lex_state = 2}, - [762] = {.lex_state = 102, .external_lex_state = 2}, - [763] = {.lex_state = 102, .external_lex_state = 2}, - [764] = {.lex_state = 102, .external_lex_state = 2}, - [765] = {.lex_state = 102, .external_lex_state = 2}, - [766] = {.lex_state = 102, .external_lex_state = 2}, - [767] = {.lex_state = 102, .external_lex_state = 2}, - [768] = {.lex_state = 12, .external_lex_state = 2}, - [769] = {.lex_state = 12, .external_lex_state = 2}, - [770] = {.lex_state = 102, .external_lex_state = 2}, - [771] = {.lex_state = 102, .external_lex_state = 2}, - [772] = {.lex_state = 102, .external_lex_state = 2}, - [773] = {.lex_state = 12, .external_lex_state = 2}, - [774] = {.lex_state = 102, .external_lex_state = 2}, - [775] = {.lex_state = 102, .external_lex_state = 2}, - [776] = {.lex_state = 102, .external_lex_state = 2}, - [777] = {.lex_state = 102, .external_lex_state = 2}, - [778] = {.lex_state = 102, .external_lex_state = 2}, - [779] = {.lex_state = 102, .external_lex_state = 2}, - [780] = {.lex_state = 102, .external_lex_state = 2}, - [781] = {.lex_state = 102, .external_lex_state = 2}, - [782] = {.lex_state = 102, .external_lex_state = 2}, - [783] = {.lex_state = 102, .external_lex_state = 2}, - [784] = {.lex_state = 102, .external_lex_state = 2}, - [785] = {.lex_state = 102, .external_lex_state = 2}, - [786] = {.lex_state = 102, .external_lex_state = 2}, - [787] = {.lex_state = 12, .external_lex_state = 2}, - [788] = {.lex_state = 102, .external_lex_state = 2}, - [789] = {.lex_state = 102, .external_lex_state = 2}, - [790] = {.lex_state = 102, .external_lex_state = 2}, - [791] = {.lex_state = 102, .external_lex_state = 2}, - [792] = {.lex_state = 102, .external_lex_state = 2}, - [793] = {.lex_state = 102, .external_lex_state = 2}, - [794] = {.lex_state = 102, .external_lex_state = 2}, - [795] = {.lex_state = 102, .external_lex_state = 2}, - [796] = {.lex_state = 102, .external_lex_state = 2}, - [797] = {.lex_state = 102, .external_lex_state = 2}, - [798] = {.lex_state = 102, .external_lex_state = 2}, - [799] = {.lex_state = 102, .external_lex_state = 2}, - [800] = {.lex_state = 102, .external_lex_state = 2}, - [801] = {.lex_state = 102, .external_lex_state = 2}, - [802] = {.lex_state = 102, .external_lex_state = 2}, - [803] = {.lex_state = 102, .external_lex_state = 2}, - [804] = {.lex_state = 102, .external_lex_state = 2}, - [805] = {.lex_state = 102, .external_lex_state = 2}, - [806] = {.lex_state = 102, .external_lex_state = 2}, - [807] = {.lex_state = 102, .external_lex_state = 2}, - [808] = {.lex_state = 102, .external_lex_state = 2}, - [809] = {.lex_state = 102, .external_lex_state = 2}, - [810] = {.lex_state = 102, .external_lex_state = 2}, - [811] = {.lex_state = 102, .external_lex_state = 2}, - [812] = {.lex_state = 102, .external_lex_state = 2}, - [813] = {.lex_state = 102, .external_lex_state = 2}, - [814] = {.lex_state = 102, .external_lex_state = 2}, - [815] = {.lex_state = 102, .external_lex_state = 2}, - [816] = {.lex_state = 102, .external_lex_state = 2}, - [817] = {.lex_state = 102, .external_lex_state = 2}, - [818] = {.lex_state = 102, .external_lex_state = 2}, - [819] = {.lex_state = 102, .external_lex_state = 2}, - [820] = {.lex_state = 12, .external_lex_state = 2}, - [821] = {.lex_state = 102, .external_lex_state = 2}, - [822] = {.lex_state = 102, .external_lex_state = 2}, - [823] = {.lex_state = 102, .external_lex_state = 2}, - [824] = {.lex_state = 102, .external_lex_state = 2}, - [825] = {.lex_state = 102, .external_lex_state = 2}, - [826] = {.lex_state = 102, .external_lex_state = 2}, - [827] = {.lex_state = 102, .external_lex_state = 2}, - [828] = {.lex_state = 102, .external_lex_state = 2}, - [829] = {.lex_state = 102, .external_lex_state = 2}, - [830] = {.lex_state = 102, .external_lex_state = 2}, - [831] = {.lex_state = 102, .external_lex_state = 2}, - [832] = {.lex_state = 102, .external_lex_state = 2}, - [833] = {.lex_state = 102, .external_lex_state = 2}, - [834] = {.lex_state = 102, .external_lex_state = 2}, - [835] = {.lex_state = 102, .external_lex_state = 2}, - [836] = {.lex_state = 102, .external_lex_state = 2}, - [837] = {.lex_state = 102, .external_lex_state = 2}, - [838] = {.lex_state = 102, .external_lex_state = 2}, - [839] = {.lex_state = 102, .external_lex_state = 2}, - [840] = {.lex_state = 102, .external_lex_state = 2}, - [841] = {.lex_state = 12, .external_lex_state = 2}, - [842] = {.lex_state = 102, .external_lex_state = 2}, - [843] = {.lex_state = 102, .external_lex_state = 2}, - [844] = {.lex_state = 102, .external_lex_state = 2}, - [845] = {.lex_state = 12, .external_lex_state = 2}, - [846] = {.lex_state = 102, .external_lex_state = 2}, - [847] = {.lex_state = 102, .external_lex_state = 2}, - [848] = {.lex_state = 102, .external_lex_state = 2}, - [849] = {.lex_state = 102, .external_lex_state = 2}, - [850] = {.lex_state = 102, .external_lex_state = 2}, - [851] = {.lex_state = 102, .external_lex_state = 2}, - [852] = {.lex_state = 12, .external_lex_state = 2}, - [853] = {.lex_state = 102, .external_lex_state = 2}, - [854] = {.lex_state = 102, .external_lex_state = 2}, - [855] = {.lex_state = 102, .external_lex_state = 2}, - [856] = {.lex_state = 102, .external_lex_state = 2}, - [857] = {.lex_state = 102, .external_lex_state = 2}, - [858] = {.lex_state = 102, .external_lex_state = 2}, - [859] = {.lex_state = 102, .external_lex_state = 2}, - [860] = {.lex_state = 102, .external_lex_state = 2}, - [861] = {.lex_state = 102, .external_lex_state = 2}, - [862] = {.lex_state = 102, .external_lex_state = 2}, - [863] = {.lex_state = 102, .external_lex_state = 2}, - [864] = {.lex_state = 102, .external_lex_state = 2}, - [865] = {.lex_state = 12, .external_lex_state = 2}, - [866] = {.lex_state = 102, .external_lex_state = 2}, - [867] = {.lex_state = 102, .external_lex_state = 2}, - [868] = {.lex_state = 12, .external_lex_state = 2}, - [869] = {.lex_state = 102, .external_lex_state = 2}, - [870] = {.lex_state = 102, .external_lex_state = 2}, - [871] = {.lex_state = 12, .external_lex_state = 2}, - [872] = {.lex_state = 12, .external_lex_state = 2}, - [873] = {.lex_state = 102, .external_lex_state = 2}, - [874] = {.lex_state = 102, .external_lex_state = 2}, - [875] = {.lex_state = 102, .external_lex_state = 2}, - [876] = {.lex_state = 102, .external_lex_state = 2}, - [877] = {.lex_state = 12, .external_lex_state = 2}, - [878] = {.lex_state = 102, .external_lex_state = 2}, - [879] = {.lex_state = 102, .external_lex_state = 2}, - [880] = {.lex_state = 102, .external_lex_state = 2}, - [881] = {.lex_state = 12, .external_lex_state = 2}, - [882] = {.lex_state = 102, .external_lex_state = 2}, - [883] = {.lex_state = 102, .external_lex_state = 2}, - [884] = {.lex_state = 102, .external_lex_state = 2}, - [885] = {.lex_state = 102, .external_lex_state = 2}, - [886] = {.lex_state = 102, .external_lex_state = 2}, - [887] = {.lex_state = 102, .external_lex_state = 2}, - [888] = {.lex_state = 102, .external_lex_state = 2}, - [889] = {.lex_state = 102, .external_lex_state = 2}, - [890] = {.lex_state = 102, .external_lex_state = 2}, - [891] = {.lex_state = 102, .external_lex_state = 2}, - [892] = {.lex_state = 102, .external_lex_state = 2}, - [893] = {.lex_state = 102, .external_lex_state = 2}, - [894] = {.lex_state = 102, .external_lex_state = 2}, - [895] = {.lex_state = 102, .external_lex_state = 2}, - [896] = {.lex_state = 102, .external_lex_state = 2}, - [897] = {.lex_state = 102, .external_lex_state = 2}, - [898] = {.lex_state = 102, .external_lex_state = 2}, - [899] = {.lex_state = 102, .external_lex_state = 2}, - [900] = {.lex_state = 12, .external_lex_state = 2}, - [901] = {.lex_state = 102, .external_lex_state = 2}, - [902] = {.lex_state = 102, .external_lex_state = 2}, - [903] = {.lex_state = 12, .external_lex_state = 2}, - [904] = {.lex_state = 102, .external_lex_state = 2}, - [905] = {.lex_state = 102, .external_lex_state = 2}, - [906] = {.lex_state = 102, .external_lex_state = 2}, - [907] = {.lex_state = 102, .external_lex_state = 2}, - [908] = {.lex_state = 102, .external_lex_state = 2}, - [909] = {.lex_state = 102, .external_lex_state = 2}, - [910] = {.lex_state = 102, .external_lex_state = 2}, - [911] = {.lex_state = 102, .external_lex_state = 2}, - [912] = {.lex_state = 102, .external_lex_state = 2}, - [913] = {.lex_state = 102, .external_lex_state = 2}, - [914] = {.lex_state = 102, .external_lex_state = 2}, - [915] = {.lex_state = 102, .external_lex_state = 2}, - [916] = {.lex_state = 102, .external_lex_state = 2}, - [917] = {.lex_state = 102, .external_lex_state = 2}, - [918] = {.lex_state = 102, .external_lex_state = 2}, - [919] = {.lex_state = 102, .external_lex_state = 2}, - [920] = {.lex_state = 102, .external_lex_state = 2}, - [921] = {.lex_state = 102, .external_lex_state = 2}, - [922] = {.lex_state = 102, .external_lex_state = 2}, - [923] = {.lex_state = 102, .external_lex_state = 2}, - [924] = {.lex_state = 102, .external_lex_state = 2}, - [925] = {.lex_state = 102, .external_lex_state = 2}, - [926] = {.lex_state = 102, .external_lex_state = 2}, - [927] = {.lex_state = 102, .external_lex_state = 2}, - [928] = {.lex_state = 102, .external_lex_state = 2}, - [929] = {.lex_state = 102, .external_lex_state = 2}, - [930] = {.lex_state = 102, .external_lex_state = 2}, - [931] = {.lex_state = 102, .external_lex_state = 2}, - [932] = {.lex_state = 102, .external_lex_state = 2}, - [933] = {.lex_state = 102, .external_lex_state = 2}, - [934] = {.lex_state = 102, .external_lex_state = 2}, - [935] = {.lex_state = 102, .external_lex_state = 2}, - [936] = {.lex_state = 102, .external_lex_state = 2}, - [937] = {.lex_state = 102, .external_lex_state = 2}, - [938] = {.lex_state = 102, .external_lex_state = 2}, - [939] = {.lex_state = 102, .external_lex_state = 2}, - [940] = {.lex_state = 102, .external_lex_state = 2}, - [941] = {.lex_state = 102, .external_lex_state = 2}, - [942] = {.lex_state = 102, .external_lex_state = 2}, - [943] = {.lex_state = 102, .external_lex_state = 2}, - [944] = {.lex_state = 102, .external_lex_state = 2}, - [945] = {.lex_state = 102, .external_lex_state = 2}, - [946] = {.lex_state = 102, .external_lex_state = 2}, - [947] = {.lex_state = 102, .external_lex_state = 2}, - [948] = {.lex_state = 102, .external_lex_state = 2}, - [949] = {.lex_state = 102, .external_lex_state = 2}, - [950] = {.lex_state = 102, .external_lex_state = 2}, - [951] = {.lex_state = 102, .external_lex_state = 2}, - [952] = {.lex_state = 102, .external_lex_state = 2}, - [953] = {.lex_state = 102, .external_lex_state = 2}, - [954] = {.lex_state = 102, .external_lex_state = 2}, - [955] = {.lex_state = 102, .external_lex_state = 2}, - [956] = {.lex_state = 102, .external_lex_state = 2}, - [957] = {.lex_state = 102, .external_lex_state = 2}, - [958] = {.lex_state = 102, .external_lex_state = 2}, - [959] = {.lex_state = 12, .external_lex_state = 2}, - [960] = {.lex_state = 12, .external_lex_state = 2}, - [961] = {.lex_state = 12, .external_lex_state = 2}, - [962] = {.lex_state = 12, .external_lex_state = 2}, - [963] = {.lex_state = 12, .external_lex_state = 2}, - [964] = {.lex_state = 12, .external_lex_state = 2}, - [965] = {.lex_state = 12, .external_lex_state = 2}, - [966] = {.lex_state = 102, .external_lex_state = 2}, - [967] = {.lex_state = 102, .external_lex_state = 2}, - [968] = {.lex_state = 102, .external_lex_state = 2}, - [969] = {.lex_state = 102, .external_lex_state = 2}, - [970] = {.lex_state = 102, .external_lex_state = 2}, - [971] = {.lex_state = 102, .external_lex_state = 2}, - [972] = {.lex_state = 102, .external_lex_state = 2}, - [973] = {.lex_state = 102, .external_lex_state = 2}, - [974] = {.lex_state = 13, .external_lex_state = 2}, - [975] = {.lex_state = 102, .external_lex_state = 2}, - [976] = {.lex_state = 102, .external_lex_state = 2}, - [977] = {.lex_state = 102, .external_lex_state = 2}, - [978] = {.lex_state = 102, .external_lex_state = 2}, - [979] = {.lex_state = 102, .external_lex_state = 2}, - [980] = {.lex_state = 102, .external_lex_state = 2}, - [981] = {.lex_state = 102, .external_lex_state = 2}, - [982] = {.lex_state = 102, .external_lex_state = 2}, - [983] = {.lex_state = 102, .external_lex_state = 2}, - [984] = {.lex_state = 102, .external_lex_state = 2}, - [985] = {.lex_state = 102, .external_lex_state = 2}, - [986] = {.lex_state = 102, .external_lex_state = 2}, - [987] = {.lex_state = 102, .external_lex_state = 2}, - [988] = {.lex_state = 102, .external_lex_state = 2}, - [989] = {.lex_state = 102, .external_lex_state = 2}, - [990] = {.lex_state = 102, .external_lex_state = 2}, - [991] = {.lex_state = 102, .external_lex_state = 2}, - [992] = {.lex_state = 102, .external_lex_state = 2}, - [993] = {.lex_state = 102, .external_lex_state = 2}, - [994] = {.lex_state = 102, .external_lex_state = 2}, - [995] = {.lex_state = 102, .external_lex_state = 2}, - [996] = {.lex_state = 102, .external_lex_state = 2}, - [997] = {.lex_state = 102, .external_lex_state = 2}, - [998] = {.lex_state = 102, .external_lex_state = 2}, - [999] = {.lex_state = 102, .external_lex_state = 2}, - [1000] = {.lex_state = 102, .external_lex_state = 2}, - [1001] = {.lex_state = 102, .external_lex_state = 2}, - [1002] = {.lex_state = 102, .external_lex_state = 2}, - [1003] = {.lex_state = 102, .external_lex_state = 2}, - [1004] = {.lex_state = 102, .external_lex_state = 2}, - [1005] = {.lex_state = 102, .external_lex_state = 2}, - [1006] = {.lex_state = 15, .external_lex_state = 2}, - [1007] = {.lex_state = 102, .external_lex_state = 2}, - [1008] = {.lex_state = 102, .external_lex_state = 2}, - [1009] = {.lex_state = 102, .external_lex_state = 2}, - [1010] = {.lex_state = 102, .external_lex_state = 2}, - [1011] = {.lex_state = 102, .external_lex_state = 2}, - [1012] = {.lex_state = 102, .external_lex_state = 2}, - [1013] = {.lex_state = 102, .external_lex_state = 2}, - [1014] = {.lex_state = 102, .external_lex_state = 2}, - [1015] = {.lex_state = 102, .external_lex_state = 2}, - [1016] = {.lex_state = 102, .external_lex_state = 2}, - [1017] = {.lex_state = 102, .external_lex_state = 2}, - [1018] = {.lex_state = 102, .external_lex_state = 2}, - [1019] = {.lex_state = 102, .external_lex_state = 2}, - [1020] = {.lex_state = 102, .external_lex_state = 2}, - [1021] = {.lex_state = 102, .external_lex_state = 2}, - [1022] = {.lex_state = 102, .external_lex_state = 2}, - [1023] = {.lex_state = 102, .external_lex_state = 2}, - [1024] = {.lex_state = 102, .external_lex_state = 2}, - [1025] = {.lex_state = 15, .external_lex_state = 2}, - [1026] = {.lex_state = 102, .external_lex_state = 2}, - [1027] = {.lex_state = 15, .external_lex_state = 2}, - [1028] = {.lex_state = 102, .external_lex_state = 2}, - [1029] = {.lex_state = 102, .external_lex_state = 2}, - [1030] = {.lex_state = 102, .external_lex_state = 2}, - [1031] = {.lex_state = 102, .external_lex_state = 2}, - [1032] = {.lex_state = 102, .external_lex_state = 2}, - [1033] = {.lex_state = 102, .external_lex_state = 2}, - [1034] = {.lex_state = 102, .external_lex_state = 2}, - [1035] = {.lex_state = 102, .external_lex_state = 2}, - [1036] = {.lex_state = 102, .external_lex_state = 2}, - [1037] = {.lex_state = 102, .external_lex_state = 2}, - [1038] = {.lex_state = 102, .external_lex_state = 2}, - [1039] = {.lex_state = 102, .external_lex_state = 2}, - [1040] = {.lex_state = 15, .external_lex_state = 2}, - [1041] = {.lex_state = 102, .external_lex_state = 2}, - [1042] = {.lex_state = 102, .external_lex_state = 2}, - [1043] = {.lex_state = 102, .external_lex_state = 2}, - [1044] = {.lex_state = 102, .external_lex_state = 2}, - [1045] = {.lex_state = 102, .external_lex_state = 2}, - [1046] = {.lex_state = 102, .external_lex_state = 2}, - [1047] = {.lex_state = 102, .external_lex_state = 2}, - [1048] = {.lex_state = 102, .external_lex_state = 2}, - [1049] = {.lex_state = 102, .external_lex_state = 2}, - [1050] = {.lex_state = 102, .external_lex_state = 2}, - [1051] = {.lex_state = 102, .external_lex_state = 2}, - [1052] = {.lex_state = 102, .external_lex_state = 2}, - [1053] = {.lex_state = 102, .external_lex_state = 2}, - [1054] = {.lex_state = 102, .external_lex_state = 2}, - [1055] = {.lex_state = 102, .external_lex_state = 2}, - [1056] = {.lex_state = 102, .external_lex_state = 2}, - [1057] = {.lex_state = 15, .external_lex_state = 2}, - [1058] = {.lex_state = 102, .external_lex_state = 2}, - [1059] = {.lex_state = 102, .external_lex_state = 2}, - [1060] = {.lex_state = 102, .external_lex_state = 2}, - [1061] = {.lex_state = 102, .external_lex_state = 2}, - [1062] = {.lex_state = 102, .external_lex_state = 2}, - [1063] = {.lex_state = 102, .external_lex_state = 2}, - [1064] = {.lex_state = 102, .external_lex_state = 2}, - [1065] = {.lex_state = 102, .external_lex_state = 2}, - [1066] = {.lex_state = 102, .external_lex_state = 2}, - [1067] = {.lex_state = 102, .external_lex_state = 2}, - [1068] = {.lex_state = 102, .external_lex_state = 2}, - [1069] = {.lex_state = 102, .external_lex_state = 2}, - [1070] = {.lex_state = 102, .external_lex_state = 2}, - [1071] = {.lex_state = 102, .external_lex_state = 2}, - [1072] = {.lex_state = 102, .external_lex_state = 2}, - [1073] = {.lex_state = 102, .external_lex_state = 2}, - [1074] = {.lex_state = 102, .external_lex_state = 2}, - [1075] = {.lex_state = 102, .external_lex_state = 2}, - [1076] = {.lex_state = 102, .external_lex_state = 2}, - [1077] = {.lex_state = 102, .external_lex_state = 2}, - [1078] = {.lex_state = 102, .external_lex_state = 2}, - [1079] = {.lex_state = 102, .external_lex_state = 2}, - [1080] = {.lex_state = 102, .external_lex_state = 2}, - [1081] = {.lex_state = 102, .external_lex_state = 2}, - [1082] = {.lex_state = 102, .external_lex_state = 2}, - [1083] = {.lex_state = 102, .external_lex_state = 2}, - [1084] = {.lex_state = 102, .external_lex_state = 2}, - [1085] = {.lex_state = 102, .external_lex_state = 2}, - [1086] = {.lex_state = 102, .external_lex_state = 2}, - [1087] = {.lex_state = 102, .external_lex_state = 2}, - [1088] = {.lex_state = 102, .external_lex_state = 2}, - [1089] = {.lex_state = 102, .external_lex_state = 2}, - [1090] = {.lex_state = 102, .external_lex_state = 2}, - [1091] = {.lex_state = 102, .external_lex_state = 2}, - [1092] = {.lex_state = 102, .external_lex_state = 2}, - [1093] = {.lex_state = 102, .external_lex_state = 2}, - [1094] = {.lex_state = 102, .external_lex_state = 2}, - [1095] = {.lex_state = 102, .external_lex_state = 2}, - [1096] = {.lex_state = 102, .external_lex_state = 2}, - [1097] = {.lex_state = 102, .external_lex_state = 2}, - [1098] = {.lex_state = 102, .external_lex_state = 2}, - [1099] = {.lex_state = 102, .external_lex_state = 2}, - [1100] = {.lex_state = 102, .external_lex_state = 2}, - [1101] = {.lex_state = 102, .external_lex_state = 2}, - [1102] = {.lex_state = 102, .external_lex_state = 2}, - [1103] = {.lex_state = 102, .external_lex_state = 2}, - [1104] = {.lex_state = 102, .external_lex_state = 2}, - [1105] = {.lex_state = 102, .external_lex_state = 2}, - [1106] = {.lex_state = 102, .external_lex_state = 2}, - [1107] = {.lex_state = 102, .external_lex_state = 2}, - [1108] = {.lex_state = 102, .external_lex_state = 2}, - [1109] = {.lex_state = 102, .external_lex_state = 2}, - [1110] = {.lex_state = 102, .external_lex_state = 2}, - [1111] = {.lex_state = 102, .external_lex_state = 2}, - [1112] = {.lex_state = 102, .external_lex_state = 2}, - [1113] = {.lex_state = 102, .external_lex_state = 2}, - [1114] = {.lex_state = 102, .external_lex_state = 2}, - [1115] = {.lex_state = 102, .external_lex_state = 2}, - [1116] = {.lex_state = 102, .external_lex_state = 2}, - [1117] = {.lex_state = 102, .external_lex_state = 2}, - [1118] = {.lex_state = 102, .external_lex_state = 2}, - [1119] = {.lex_state = 102, .external_lex_state = 2}, - [1120] = {.lex_state = 102, .external_lex_state = 2}, - [1121] = {.lex_state = 102, .external_lex_state = 2}, - [1122] = {.lex_state = 102, .external_lex_state = 2}, - [1123] = {.lex_state = 102, .external_lex_state = 2}, - [1124] = {.lex_state = 102, .external_lex_state = 2}, - [1125] = {.lex_state = 102, .external_lex_state = 2}, - [1126] = {.lex_state = 102, .external_lex_state = 2}, - [1127] = {.lex_state = 102, .external_lex_state = 2}, - [1128] = {.lex_state = 102, .external_lex_state = 2}, - [1129] = {.lex_state = 102, .external_lex_state = 2}, - [1130] = {.lex_state = 102, .external_lex_state = 2}, - [1131] = {.lex_state = 102, .external_lex_state = 2}, - [1132] = {.lex_state = 102, .external_lex_state = 2}, - [1133] = {.lex_state = 102, .external_lex_state = 2}, - [1134] = {.lex_state = 102, .external_lex_state = 2}, - [1135] = {.lex_state = 102, .external_lex_state = 2}, - [1136] = {.lex_state = 102, .external_lex_state = 2}, - [1137] = {.lex_state = 102, .external_lex_state = 2}, - [1138] = {.lex_state = 102, .external_lex_state = 2}, - [1139] = {.lex_state = 102, .external_lex_state = 2}, - [1140] = {.lex_state = 102, .external_lex_state = 2}, - [1141] = {.lex_state = 102, .external_lex_state = 2}, - [1142] = {.lex_state = 102, .external_lex_state = 2}, - [1143] = {.lex_state = 102, .external_lex_state = 2}, - [1144] = {.lex_state = 102, .external_lex_state = 2}, - [1145] = {.lex_state = 102, .external_lex_state = 2}, - [1146] = {.lex_state = 102, .external_lex_state = 2}, - [1147] = {.lex_state = 102, .external_lex_state = 2}, - [1148] = {.lex_state = 102, .external_lex_state = 2}, - [1149] = {.lex_state = 102, .external_lex_state = 2}, - [1150] = {.lex_state = 102, .external_lex_state = 2}, - [1151] = {.lex_state = 102, .external_lex_state = 2}, - [1152] = {.lex_state = 102, .external_lex_state = 2}, - [1153] = {.lex_state = 102, .external_lex_state = 2}, - [1154] = {.lex_state = 102, .external_lex_state = 2}, - [1155] = {.lex_state = 102, .external_lex_state = 2}, - [1156] = {.lex_state = 102, .external_lex_state = 2}, - [1157] = {.lex_state = 102, .external_lex_state = 2}, - [1158] = {.lex_state = 102, .external_lex_state = 2}, - [1159] = {.lex_state = 102, .external_lex_state = 2}, - [1160] = {.lex_state = 102, .external_lex_state = 2}, - [1161] = {.lex_state = 102, .external_lex_state = 2}, - [1162] = {.lex_state = 102, .external_lex_state = 2}, - [1163] = {.lex_state = 102, .external_lex_state = 2}, - [1164] = {.lex_state = 102, .external_lex_state = 2}, - [1165] = {.lex_state = 102, .external_lex_state = 2}, - [1166] = {.lex_state = 102, .external_lex_state = 2}, - [1167] = {.lex_state = 102, .external_lex_state = 2}, - [1168] = {.lex_state = 102, .external_lex_state = 2}, - [1169] = {.lex_state = 102, .external_lex_state = 2}, - [1170] = {.lex_state = 102, .external_lex_state = 2}, - [1171] = {.lex_state = 102, .external_lex_state = 2}, - [1172] = {.lex_state = 102, .external_lex_state = 2}, - [1173] = {.lex_state = 102, .external_lex_state = 2}, - [1174] = {.lex_state = 102, .external_lex_state = 2}, - [1175] = {.lex_state = 102, .external_lex_state = 2}, - [1176] = {.lex_state = 102, .external_lex_state = 2}, - [1177] = {.lex_state = 102, .external_lex_state = 2}, - [1178] = {.lex_state = 102, .external_lex_state = 2}, - [1179] = {.lex_state = 102, .external_lex_state = 2}, - [1180] = {.lex_state = 102, .external_lex_state = 2}, - [1181] = {.lex_state = 102, .external_lex_state = 2}, - [1182] = {.lex_state = 102, .external_lex_state = 2}, - [1183] = {.lex_state = 102, .external_lex_state = 2}, - [1184] = {.lex_state = 102, .external_lex_state = 2}, - [1185] = {.lex_state = 102, .external_lex_state = 2}, - [1186] = {.lex_state = 102, .external_lex_state = 2}, - [1187] = {.lex_state = 102, .external_lex_state = 2}, - [1188] = {.lex_state = 102, .external_lex_state = 2}, - [1189] = {.lex_state = 102, .external_lex_state = 2}, - [1190] = {.lex_state = 102, .external_lex_state = 2}, - [1191] = {.lex_state = 102, .external_lex_state = 2}, - [1192] = {.lex_state = 102, .external_lex_state = 2}, - [1193] = {.lex_state = 102, .external_lex_state = 2}, - [1194] = {.lex_state = 102, .external_lex_state = 2}, - [1195] = {.lex_state = 102, .external_lex_state = 2}, - [1196] = {.lex_state = 102, .external_lex_state = 2}, - [1197] = {.lex_state = 102, .external_lex_state = 2}, - [1198] = {.lex_state = 102, .external_lex_state = 2}, - [1199] = {.lex_state = 102, .external_lex_state = 2}, - [1200] = {.lex_state = 102, .external_lex_state = 2}, - [1201] = {.lex_state = 11, .external_lex_state = 2}, - [1202] = {.lex_state = 102, .external_lex_state = 2}, - [1203] = {.lex_state = 102, .external_lex_state = 2}, - [1204] = {.lex_state = 102, .external_lex_state = 2}, - [1205] = {.lex_state = 102, .external_lex_state = 2}, - [1206] = {.lex_state = 102, .external_lex_state = 2}, - [1207] = {.lex_state = 102, .external_lex_state = 2}, - [1208] = {.lex_state = 102, .external_lex_state = 2}, - [1209] = {.lex_state = 102, .external_lex_state = 2}, - [1210] = {.lex_state = 102, .external_lex_state = 2}, - [1211] = {.lex_state = 102, .external_lex_state = 2}, - [1212] = {.lex_state = 102, .external_lex_state = 2}, - [1213] = {.lex_state = 102, .external_lex_state = 2}, - [1214] = {.lex_state = 102, .external_lex_state = 2}, - [1215] = {.lex_state = 102, .external_lex_state = 2}, - [1216] = {.lex_state = 102, .external_lex_state = 2}, - [1217] = {.lex_state = 102, .external_lex_state = 2}, - [1218] = {.lex_state = 102, .external_lex_state = 2}, - [1219] = {.lex_state = 102, .external_lex_state = 2}, - [1220] = {.lex_state = 102, .external_lex_state = 2}, - [1221] = {.lex_state = 102, .external_lex_state = 2}, - [1222] = {.lex_state = 102, .external_lex_state = 2}, - [1223] = {.lex_state = 102, .external_lex_state = 2}, - [1224] = {.lex_state = 102, .external_lex_state = 2}, - [1225] = {.lex_state = 102, .external_lex_state = 2}, - [1226] = {.lex_state = 102, .external_lex_state = 2}, - [1227] = {.lex_state = 102, .external_lex_state = 2}, - [1228] = {.lex_state = 102, .external_lex_state = 2}, - [1229] = {.lex_state = 102, .external_lex_state = 2}, - [1230] = {.lex_state = 102, .external_lex_state = 2}, - [1231] = {.lex_state = 102, .external_lex_state = 2}, - [1232] = {.lex_state = 102, .external_lex_state = 2}, - [1233] = {.lex_state = 102, .external_lex_state = 2}, - [1234] = {.lex_state = 102, .external_lex_state = 2}, - [1235] = {.lex_state = 102, .external_lex_state = 2}, - [1236] = {.lex_state = 102, .external_lex_state = 2}, - [1237] = {.lex_state = 102, .external_lex_state = 2}, - [1238] = {.lex_state = 102, .external_lex_state = 2}, - [1239] = {.lex_state = 102, .external_lex_state = 2}, - [1240] = {.lex_state = 102, .external_lex_state = 2}, - [1241] = {.lex_state = 102, .external_lex_state = 2}, - [1242] = {.lex_state = 102, .external_lex_state = 2}, - [1243] = {.lex_state = 102, .external_lex_state = 2}, - [1244] = {.lex_state = 102, .external_lex_state = 2}, - [1245] = {.lex_state = 102, .external_lex_state = 2}, - [1246] = {.lex_state = 102, .external_lex_state = 2}, - [1247] = {.lex_state = 102, .external_lex_state = 2}, - [1248] = {.lex_state = 102, .external_lex_state = 2}, - [1249] = {.lex_state = 102, .external_lex_state = 2}, - [1250] = {.lex_state = 102, .external_lex_state = 2}, - [1251] = {.lex_state = 102, .external_lex_state = 2}, - [1252] = {.lex_state = 102, .external_lex_state = 2}, - [1253] = {.lex_state = 102, .external_lex_state = 2}, - [1254] = {.lex_state = 102, .external_lex_state = 2}, - [1255] = {.lex_state = 102, .external_lex_state = 2}, - [1256] = {.lex_state = 102, .external_lex_state = 2}, - [1257] = {.lex_state = 102, .external_lex_state = 2}, - [1258] = {.lex_state = 102, .external_lex_state = 2}, - [1259] = {.lex_state = 102, .external_lex_state = 2}, - [1260] = {.lex_state = 102, .external_lex_state = 2}, - [1261] = {.lex_state = 102, .external_lex_state = 2}, - [1262] = {.lex_state = 102, .external_lex_state = 2}, - [1263] = {.lex_state = 102, .external_lex_state = 2}, - [1264] = {.lex_state = 102, .external_lex_state = 2}, - [1265] = {.lex_state = 102, .external_lex_state = 2}, - [1266] = {.lex_state = 102, .external_lex_state = 2}, - [1267] = {.lex_state = 102, .external_lex_state = 2}, - [1268] = {.lex_state = 102, .external_lex_state = 2}, - [1269] = {.lex_state = 102, .external_lex_state = 2}, - [1270] = {.lex_state = 102, .external_lex_state = 2}, - [1271] = {.lex_state = 102, .external_lex_state = 2}, - [1272] = {.lex_state = 102, .external_lex_state = 2}, - [1273] = {.lex_state = 102, .external_lex_state = 2}, - [1274] = {.lex_state = 102, .external_lex_state = 2}, - [1275] = {.lex_state = 102, .external_lex_state = 2}, - [1276] = {.lex_state = 102, .external_lex_state = 2}, - [1277] = {.lex_state = 102, .external_lex_state = 2}, - [1278] = {.lex_state = 102, .external_lex_state = 2}, - [1279] = {.lex_state = 102, .external_lex_state = 2}, - [1280] = {.lex_state = 102, .external_lex_state = 2}, - [1281] = {.lex_state = 102, .external_lex_state = 2}, - [1282] = {.lex_state = 102, .external_lex_state = 2}, - [1283] = {.lex_state = 102, .external_lex_state = 2}, - [1284] = {.lex_state = 102, .external_lex_state = 2}, - [1285] = {.lex_state = 102, .external_lex_state = 2}, - [1286] = {.lex_state = 102, .external_lex_state = 2}, - [1287] = {.lex_state = 102, .external_lex_state = 2}, - [1288] = {.lex_state = 102, .external_lex_state = 2}, - [1289] = {.lex_state = 102, .external_lex_state = 2}, - [1290] = {.lex_state = 102, .external_lex_state = 2}, - [1291] = {.lex_state = 102, .external_lex_state = 2}, - [1292] = {.lex_state = 102, .external_lex_state = 2}, - [1293] = {.lex_state = 102, .external_lex_state = 2}, - [1294] = {.lex_state = 102, .external_lex_state = 2}, - [1295] = {.lex_state = 102, .external_lex_state = 2}, - [1296] = {.lex_state = 102, .external_lex_state = 2}, - [1297] = {.lex_state = 102, .external_lex_state = 2}, - [1298] = {.lex_state = 102, .external_lex_state = 2}, - [1299] = {.lex_state = 102, .external_lex_state = 2}, - [1300] = {.lex_state = 102, .external_lex_state = 2}, - [1301] = {.lex_state = 102, .external_lex_state = 2}, - [1302] = {.lex_state = 102, .external_lex_state = 2}, - [1303] = {.lex_state = 102, .external_lex_state = 2}, - [1304] = {.lex_state = 102, .external_lex_state = 2}, - [1305] = {.lex_state = 102, .external_lex_state = 2}, - [1306] = {.lex_state = 102, .external_lex_state = 2}, - [1307] = {.lex_state = 102, .external_lex_state = 2}, - [1308] = {.lex_state = 102, .external_lex_state = 2}, - [1309] = {.lex_state = 102, .external_lex_state = 2}, - [1310] = {.lex_state = 102, .external_lex_state = 2}, - [1311] = {.lex_state = 102, .external_lex_state = 2}, - [1312] = {.lex_state = 102, .external_lex_state = 2}, - [1313] = {.lex_state = 102, .external_lex_state = 2}, - [1314] = {.lex_state = 102, .external_lex_state = 2}, - [1315] = {.lex_state = 102, .external_lex_state = 2}, - [1316] = {.lex_state = 102, .external_lex_state = 2}, - [1317] = {.lex_state = 102, .external_lex_state = 2}, - [1318] = {.lex_state = 102, .external_lex_state = 2}, - [1319] = {.lex_state = 102, .external_lex_state = 2}, - [1320] = {.lex_state = 102, .external_lex_state = 2}, - [1321] = {.lex_state = 102, .external_lex_state = 2}, - [1322] = {.lex_state = 15, .external_lex_state = 2}, - [1323] = {.lex_state = 15, .external_lex_state = 2}, - [1324] = {.lex_state = 15, .external_lex_state = 2}, - [1325] = {.lex_state = 15, .external_lex_state = 2}, - [1326] = {.lex_state = 15, .external_lex_state = 2}, - [1327] = {.lex_state = 13, .external_lex_state = 2}, - [1328] = {.lex_state = 11, .external_lex_state = 2}, - [1329] = {.lex_state = 13, .external_lex_state = 2}, - [1330] = {.lex_state = 13, .external_lex_state = 2}, - [1331] = {.lex_state = 11, .external_lex_state = 2}, - [1332] = {.lex_state = 11, .external_lex_state = 2}, - [1333] = {.lex_state = 11, .external_lex_state = 2}, - [1334] = {.lex_state = 15, .external_lex_state = 2}, - [1335] = {.lex_state = 15, .external_lex_state = 2}, - [1336] = {.lex_state = 15, .external_lex_state = 2}, - [1337] = {.lex_state = 15, .external_lex_state = 2}, - [1338] = {.lex_state = 11, .external_lex_state = 2}, - [1339] = {.lex_state = 11, .external_lex_state = 2}, - [1340] = {.lex_state = 11, .external_lex_state = 2}, - [1341] = {.lex_state = 120, .external_lex_state = 2}, - [1342] = {.lex_state = 120, .external_lex_state = 2}, - [1343] = {.lex_state = 120, .external_lex_state = 2}, - [1344] = {.lex_state = 120, .external_lex_state = 2}, - [1345] = {.lex_state = 120, .external_lex_state = 2}, - [1346] = {.lex_state = 120, .external_lex_state = 2}, - [1347] = {.lex_state = 104, .external_lex_state = 2}, - [1348] = {.lex_state = 104, .external_lex_state = 2}, - [1349] = {.lex_state = 104, .external_lex_state = 2}, - [1350] = {.lex_state = 104, .external_lex_state = 2}, - [1351] = {.lex_state = 104, .external_lex_state = 2}, - [1352] = {.lex_state = 104, .external_lex_state = 2}, - [1353] = {.lex_state = 9, .external_lex_state = 2}, - [1354] = {.lex_state = 9, .external_lex_state = 2}, - [1355] = {.lex_state = 9, .external_lex_state = 2}, - [1356] = {.lex_state = 119, .external_lex_state = 2}, - [1357] = {.lex_state = 119, .external_lex_state = 2}, - [1358] = {.lex_state = 119, .external_lex_state = 2}, - [1359] = {.lex_state = 119, .external_lex_state = 2}, - [1360] = {.lex_state = 119, .external_lex_state = 2}, - [1361] = {.lex_state = 119, .external_lex_state = 2}, - [1362] = {.lex_state = 119, .external_lex_state = 2}, - [1363] = {.lex_state = 119, .external_lex_state = 2}, - [1364] = {.lex_state = 119, .external_lex_state = 2}, - [1365] = {.lex_state = 119, .external_lex_state = 2}, - [1366] = {.lex_state = 119, .external_lex_state = 2}, - [1367] = {.lex_state = 119, .external_lex_state = 2}, - [1368] = {.lex_state = 119, .external_lex_state = 2}, - [1369] = {.lex_state = 119, .external_lex_state = 2}, - [1370] = {.lex_state = 119, .external_lex_state = 2}, - [1371] = {.lex_state = 119, .external_lex_state = 2}, - [1372] = {.lex_state = 119, .external_lex_state = 2}, - [1373] = {.lex_state = 119, .external_lex_state = 2}, - [1374] = {.lex_state = 119, .external_lex_state = 2}, - [1375] = {.lex_state = 119, .external_lex_state = 2}, - [1376] = {.lex_state = 119, .external_lex_state = 2}, - [1377] = {.lex_state = 12, .external_lex_state = 2}, - [1378] = {.lex_state = 28, .external_lex_state = 2}, - [1379] = {.lex_state = 28, .external_lex_state = 2}, - [1380] = {.lex_state = 28, .external_lex_state = 2}, - [1381] = {.lex_state = 28, .external_lex_state = 2}, - [1382] = {.lex_state = 12, .external_lex_state = 2}, - [1383] = {.lex_state = 12, .external_lex_state = 2}, - [1384] = {.lex_state = 28, .external_lex_state = 2}, - [1385] = {.lex_state = 12, .external_lex_state = 2}, - [1386] = {.lex_state = 28, .external_lex_state = 2}, - [1387] = {.lex_state = 12, .external_lex_state = 2}, - [1388] = {.lex_state = 12, .external_lex_state = 2}, - [1389] = {.lex_state = 12, .external_lex_state = 2}, - [1390] = {.lex_state = 12, .external_lex_state = 2}, - [1391] = {.lex_state = 12, .external_lex_state = 2}, - [1392] = {.lex_state = 28, .external_lex_state = 2}, - [1393] = {.lex_state = 28, .external_lex_state = 2}, - [1394] = {.lex_state = 28, .external_lex_state = 2}, - [1395] = {.lex_state = 28, .external_lex_state = 2}, - [1396] = {.lex_state = 12, .external_lex_state = 2}, - [1397] = {.lex_state = 12, .external_lex_state = 2}, - [1398] = {.lex_state = 12, .external_lex_state = 2}, - [1399] = {.lex_state = 12, .external_lex_state = 2}, - [1400] = {.lex_state = 12, .external_lex_state = 2}, - [1401] = {.lex_state = 12, .external_lex_state = 2}, - [1402] = {.lex_state = 11, .external_lex_state = 2}, - [1403] = {.lex_state = 12, .external_lex_state = 2}, - [1404] = {.lex_state = 12, .external_lex_state = 2}, - [1405] = {.lex_state = 12, .external_lex_state = 2}, - [1406] = {.lex_state = 12, .external_lex_state = 2}, - [1407] = {.lex_state = 12, .external_lex_state = 2}, - [1408] = {.lex_state = 12, .external_lex_state = 2}, - [1409] = {.lex_state = 12, .external_lex_state = 2}, - [1410] = {.lex_state = 12, .external_lex_state = 2}, - [1411] = {.lex_state = 12, .external_lex_state = 2}, - [1412] = {.lex_state = 12, .external_lex_state = 2}, - [1413] = {.lex_state = 12, .external_lex_state = 2}, - [1414] = {.lex_state = 12, .external_lex_state = 2}, - [1415] = {.lex_state = 11, .external_lex_state = 2}, - [1416] = {.lex_state = 12, .external_lex_state = 2}, - [1417] = {.lex_state = 12, .external_lex_state = 2}, - [1418] = {.lex_state = 12, .external_lex_state = 2}, - [1419] = {.lex_state = 12, .external_lex_state = 2}, - [1420] = {.lex_state = 12, .external_lex_state = 2}, - [1421] = {.lex_state = 12, .external_lex_state = 2}, - [1422] = {.lex_state = 11, .external_lex_state = 2}, - [1423] = {.lex_state = 12, .external_lex_state = 2}, - [1424] = {.lex_state = 11, .external_lex_state = 2}, - [1425] = {.lex_state = 12, .external_lex_state = 2}, - [1426] = {.lex_state = 11, .external_lex_state = 2}, - [1427] = {.lex_state = 12, .external_lex_state = 2}, - [1428] = {.lex_state = 12, .external_lex_state = 2}, - [1429] = {.lex_state = 12, .external_lex_state = 2}, - [1430] = {.lex_state = 12, .external_lex_state = 2}, - [1431] = {.lex_state = 12, .external_lex_state = 2}, - [1432] = {.lex_state = 11, .external_lex_state = 2}, - [1433] = {.lex_state = 12, .external_lex_state = 2}, - [1434] = {.lex_state = 12, .external_lex_state = 2}, - [1435] = {.lex_state = 12, .external_lex_state = 2}, - [1436] = {.lex_state = 12, .external_lex_state = 2}, - [1437] = {.lex_state = 12, .external_lex_state = 2}, - [1438] = {.lex_state = 114, .external_lex_state = 2}, - [1439] = {.lex_state = 12, .external_lex_state = 2}, - [1440] = {.lex_state = 11, .external_lex_state = 2}, - [1441] = {.lex_state = 12, .external_lex_state = 2}, - [1442] = {.lex_state = 11, .external_lex_state = 2}, - [1443] = {.lex_state = 11, .external_lex_state = 2}, - [1444] = {.lex_state = 12, .external_lex_state = 2}, - [1445] = {.lex_state = 12, .external_lex_state = 2}, - [1446] = {.lex_state = 12, .external_lex_state = 2}, - [1447] = {.lex_state = 12, .external_lex_state = 2}, - [1448] = {.lex_state = 12, .external_lex_state = 2}, - [1449] = {.lex_state = 12, .external_lex_state = 2}, - [1450] = {.lex_state = 114, .external_lex_state = 2}, - [1451] = {.lex_state = 12, .external_lex_state = 2}, - [1452] = {.lex_state = 12, .external_lex_state = 2}, - [1453] = {.lex_state = 12, .external_lex_state = 2}, - [1454] = {.lex_state = 12, .external_lex_state = 2}, - [1455] = {.lex_state = 12, .external_lex_state = 2}, - [1456] = {.lex_state = 12, .external_lex_state = 2}, - [1457] = {.lex_state = 12, .external_lex_state = 2}, - [1458] = {.lex_state = 12, .external_lex_state = 2}, - [1459] = {.lex_state = 12, .external_lex_state = 2}, - [1460] = {.lex_state = 12, .external_lex_state = 2}, - [1461] = {.lex_state = 12, .external_lex_state = 2}, - [1462] = {.lex_state = 12, .external_lex_state = 2}, - [1463] = {.lex_state = 12, .external_lex_state = 2}, - [1464] = {.lex_state = 12, .external_lex_state = 2}, - [1465] = {.lex_state = 12, .external_lex_state = 2}, - [1466] = {.lex_state = 114, .external_lex_state = 2}, - [1467] = {.lex_state = 12, .external_lex_state = 2}, - [1468] = {.lex_state = 12, .external_lex_state = 2}, - [1469] = {.lex_state = 12, .external_lex_state = 2}, - [1470] = {.lex_state = 12, .external_lex_state = 2}, - [1471] = {.lex_state = 12, .external_lex_state = 2}, - [1472] = {.lex_state = 12, .external_lex_state = 2}, - [1473] = {.lex_state = 12, .external_lex_state = 2}, - [1474] = {.lex_state = 12, .external_lex_state = 2}, - [1475] = {.lex_state = 12, .external_lex_state = 2}, - [1476] = {.lex_state = 12, .external_lex_state = 2}, - [1477] = {.lex_state = 12, .external_lex_state = 2}, - [1478] = {.lex_state = 12, .external_lex_state = 2}, - [1479] = {.lex_state = 114, .external_lex_state = 2}, - [1480] = {.lex_state = 12, .external_lex_state = 2}, - [1481] = {.lex_state = 114, .external_lex_state = 2}, - [1482] = {.lex_state = 114, .external_lex_state = 2}, - [1483] = {.lex_state = 12, .external_lex_state = 2}, - [1484] = {.lex_state = 12, .external_lex_state = 2}, - [1485] = {.lex_state = 114, .external_lex_state = 2}, - [1486] = {.lex_state = 114, .external_lex_state = 2}, - [1487] = {.lex_state = 114, .external_lex_state = 2}, - [1488] = {.lex_state = 12, .external_lex_state = 2}, - [1489] = {.lex_state = 114, .external_lex_state = 2}, - [1490] = {.lex_state = 12, .external_lex_state = 2}, - [1491] = {.lex_state = 114, .external_lex_state = 2}, - [1492] = {.lex_state = 12, .external_lex_state = 2}, - [1493] = {.lex_state = 114, .external_lex_state = 2}, - [1494] = {.lex_state = 114, .external_lex_state = 2}, - [1495] = {.lex_state = 114, .external_lex_state = 2}, - [1496] = {.lex_state = 114, .external_lex_state = 2}, - [1497] = {.lex_state = 114, .external_lex_state = 2}, - [1498] = {.lex_state = 114, .external_lex_state = 2}, - [1499] = {.lex_state = 11, .external_lex_state = 2}, - [1500] = {.lex_state = 11, .external_lex_state = 2}, - [1501] = {.lex_state = 11, .external_lex_state = 2}, - [1502] = {.lex_state = 114, .external_lex_state = 2}, - [1503] = {.lex_state = 11, .external_lex_state = 2}, - [1504] = {.lex_state = 11, .external_lex_state = 2}, - [1505] = {.lex_state = 114, .external_lex_state = 2}, - [1506] = {.lex_state = 11, .external_lex_state = 2}, - [1507] = {.lex_state = 11, .external_lex_state = 2}, - [1508] = {.lex_state = 11, .external_lex_state = 2}, - [1509] = {.lex_state = 114, .external_lex_state = 2}, - [1510] = {.lex_state = 114, .external_lex_state = 2}, - [1511] = {.lex_state = 114, .external_lex_state = 2}, - [1512] = {.lex_state = 114, .external_lex_state = 2}, - [1513] = {.lex_state = 11, .external_lex_state = 2}, - [1514] = {.lex_state = 11, .external_lex_state = 2}, - [1515] = {.lex_state = 11, .external_lex_state = 2}, - [1516] = {.lex_state = 114, .external_lex_state = 2}, - [1517] = {.lex_state = 114, .external_lex_state = 2}, - [1518] = {.lex_state = 114, .external_lex_state = 2}, - [1519] = {.lex_state = 11, .external_lex_state = 2}, - [1520] = {.lex_state = 11, .external_lex_state = 2}, - [1521] = {.lex_state = 114, .external_lex_state = 2}, - [1522] = {.lex_state = 11, .external_lex_state = 2}, - [1523] = {.lex_state = 114, .external_lex_state = 2}, - [1524] = {.lex_state = 114, .external_lex_state = 2}, - [1525] = {.lex_state = 114, .external_lex_state = 2}, - [1526] = {.lex_state = 114, .external_lex_state = 2}, - [1527] = {.lex_state = 114, .external_lex_state = 2}, - [1528] = {.lex_state = 114, .external_lex_state = 2}, - [1529] = {.lex_state = 11, .external_lex_state = 2}, - [1530] = {.lex_state = 114, .external_lex_state = 2}, - [1531] = {.lex_state = 11, .external_lex_state = 2}, - [1532] = {.lex_state = 114, .external_lex_state = 2}, - [1533] = {.lex_state = 114, .external_lex_state = 2}, - [1534] = {.lex_state = 11, .external_lex_state = 2}, - [1535] = {.lex_state = 114, .external_lex_state = 2}, - [1536] = {.lex_state = 114, .external_lex_state = 2}, - [1537] = {.lex_state = 114, .external_lex_state = 2}, - [1538] = {.lex_state = 114, .external_lex_state = 2}, - [1539] = {.lex_state = 11, .external_lex_state = 2}, - [1540] = {.lex_state = 11, .external_lex_state = 2}, - [1541] = {.lex_state = 11, .external_lex_state = 2}, - [1542] = {.lex_state = 11, .external_lex_state = 2}, - [1543] = {.lex_state = 114, .external_lex_state = 2}, - [1544] = {.lex_state = 114, .external_lex_state = 2}, - [1545] = {.lex_state = 114, .external_lex_state = 2}, - [1546] = {.lex_state = 114, .external_lex_state = 2}, - [1547] = {.lex_state = 114, .external_lex_state = 2}, - [1548] = {.lex_state = 114, .external_lex_state = 2}, - [1549] = {.lex_state = 114, .external_lex_state = 2}, - [1550] = {.lex_state = 11, .external_lex_state = 2}, - [1551] = {.lex_state = 11, .external_lex_state = 2}, - [1552] = {.lex_state = 114, .external_lex_state = 2}, - [1553] = {.lex_state = 11, .external_lex_state = 2}, - [1554] = {.lex_state = 11, .external_lex_state = 2}, - [1555] = {.lex_state = 11, .external_lex_state = 2}, - [1556] = {.lex_state = 11, .external_lex_state = 2}, - [1557] = {.lex_state = 11, .external_lex_state = 2}, - [1558] = {.lex_state = 11, .external_lex_state = 2}, - [1559] = {.lex_state = 11, .external_lex_state = 2}, - [1560] = {.lex_state = 11, .external_lex_state = 2}, - [1561] = {.lex_state = 11, .external_lex_state = 2}, - [1562] = {.lex_state = 114, .external_lex_state = 2}, - [1563] = {.lex_state = 11, .external_lex_state = 2}, - [1564] = {.lex_state = 11, .external_lex_state = 2}, - [1565] = {.lex_state = 114, .external_lex_state = 2}, - [1566] = {.lex_state = 11, .external_lex_state = 2}, - [1567] = {.lex_state = 114, .external_lex_state = 2}, - [1568] = {.lex_state = 114, .external_lex_state = 2}, - [1569] = {.lex_state = 11, .external_lex_state = 2}, - [1570] = {.lex_state = 11, .external_lex_state = 2}, - [1571] = {.lex_state = 11, .external_lex_state = 2}, - [1572] = {.lex_state = 114, .external_lex_state = 2}, - [1573] = {.lex_state = 11, .external_lex_state = 2}, - [1574] = {.lex_state = 11, .external_lex_state = 2}, - [1575] = {.lex_state = 11, .external_lex_state = 2}, - [1576] = {.lex_state = 11, .external_lex_state = 2}, - [1577] = {.lex_state = 11, .external_lex_state = 2}, - [1578] = {.lex_state = 11, .external_lex_state = 2}, - [1579] = {.lex_state = 114, .external_lex_state = 2}, - [1580] = {.lex_state = 114, .external_lex_state = 2}, - [1581] = {.lex_state = 114, .external_lex_state = 2}, - [1582] = {.lex_state = 114, .external_lex_state = 2}, - [1583] = {.lex_state = 11, .external_lex_state = 2}, - [1584] = {.lex_state = 114, .external_lex_state = 2}, - [1585] = {.lex_state = 11, .external_lex_state = 2}, - [1586] = {.lex_state = 11, .external_lex_state = 2}, - [1587] = {.lex_state = 114, .external_lex_state = 2}, - [1588] = {.lex_state = 11, .external_lex_state = 2}, - [1589] = {.lex_state = 11, .external_lex_state = 2}, - [1590] = {.lex_state = 11, .external_lex_state = 2}, - [1591] = {.lex_state = 114, .external_lex_state = 2}, - [1592] = {.lex_state = 11, .external_lex_state = 2}, - [1593] = {.lex_state = 11, .external_lex_state = 2}, - [1594] = {.lex_state = 114, .external_lex_state = 2}, - [1595] = {.lex_state = 114, .external_lex_state = 2}, - [1596] = {.lex_state = 11, .external_lex_state = 2}, - [1597] = {.lex_state = 11, .external_lex_state = 2}, - [1598] = {.lex_state = 114, .external_lex_state = 2}, - [1599] = {.lex_state = 114, .external_lex_state = 2}, - [1600] = {.lex_state = 114, .external_lex_state = 2}, - [1601] = {.lex_state = 11, .external_lex_state = 2}, - [1602] = {.lex_state = 114, .external_lex_state = 2}, - [1603] = {.lex_state = 11, .external_lex_state = 2}, - [1604] = {.lex_state = 114, .external_lex_state = 2}, - [1605] = {.lex_state = 11, .external_lex_state = 2}, - [1606] = {.lex_state = 11, .external_lex_state = 2}, - [1607] = {.lex_state = 11, .external_lex_state = 2}, - [1608] = {.lex_state = 114, .external_lex_state = 2}, - [1609] = {.lex_state = 114, .external_lex_state = 2}, - [1610] = {.lex_state = 11, .external_lex_state = 2}, - [1611] = {.lex_state = 114, .external_lex_state = 2}, - [1612] = {.lex_state = 114, .external_lex_state = 2}, - [1613] = {.lex_state = 114, .external_lex_state = 2}, - [1614] = {.lex_state = 11, .external_lex_state = 2}, - [1615] = {.lex_state = 114, .external_lex_state = 2}, - [1616] = {.lex_state = 114, .external_lex_state = 2}, - [1617] = {.lex_state = 114, .external_lex_state = 2}, - [1618] = {.lex_state = 114, .external_lex_state = 2}, - [1619] = {.lex_state = 11, .external_lex_state = 2}, - [1620] = {.lex_state = 11, .external_lex_state = 2}, - [1621] = {.lex_state = 114, .external_lex_state = 2}, - [1622] = {.lex_state = 114, .external_lex_state = 2}, - [1623] = {.lex_state = 114, .external_lex_state = 2}, - [1624] = {.lex_state = 11, .external_lex_state = 2}, - [1625] = {.lex_state = 114, .external_lex_state = 2}, - [1626] = {.lex_state = 114, .external_lex_state = 2}, - [1627] = {.lex_state = 114, .external_lex_state = 2}, - [1628] = {.lex_state = 114, .external_lex_state = 2}, - [1629] = {.lex_state = 114, .external_lex_state = 2}, - [1630] = {.lex_state = 114, .external_lex_state = 2}, - [1631] = {.lex_state = 114, .external_lex_state = 2}, - [1632] = {.lex_state = 114, .external_lex_state = 2}, - [1633] = {.lex_state = 114, .external_lex_state = 2}, - [1634] = {.lex_state = 114, .external_lex_state = 2}, - [1635] = {.lex_state = 114, .external_lex_state = 2}, - [1636] = {.lex_state = 114, .external_lex_state = 2}, - [1637] = {.lex_state = 114, .external_lex_state = 2}, - [1638] = {.lex_state = 114, .external_lex_state = 2}, - [1639] = {.lex_state = 11, .external_lex_state = 2}, - [1640] = {.lex_state = 114, .external_lex_state = 2}, - [1641] = {.lex_state = 11, .external_lex_state = 2}, - [1642] = {.lex_state = 114, .external_lex_state = 2}, - [1643] = {.lex_state = 11, .external_lex_state = 2}, - [1644] = {.lex_state = 114, .external_lex_state = 2}, - [1645] = {.lex_state = 11, .external_lex_state = 2}, - [1646] = {.lex_state = 114, .external_lex_state = 2}, - [1647] = {.lex_state = 114, .external_lex_state = 2}, - [1648] = {.lex_state = 11, .external_lex_state = 2}, - [1649] = {.lex_state = 11, .external_lex_state = 2}, - [1650] = {.lex_state = 11, .external_lex_state = 2}, - [1651] = {.lex_state = 11, .external_lex_state = 2}, - [1652] = {.lex_state = 11, .external_lex_state = 2}, - [1653] = {.lex_state = 114, .external_lex_state = 2}, - [1654] = {.lex_state = 114, .external_lex_state = 2}, - [1655] = {.lex_state = 114, .external_lex_state = 2}, - [1656] = {.lex_state = 114, .external_lex_state = 2}, - [1657] = {.lex_state = 114, .external_lex_state = 2}, - [1658] = {.lex_state = 114, .external_lex_state = 2}, - [1659] = {.lex_state = 114, .external_lex_state = 2}, - [1660] = {.lex_state = 114, .external_lex_state = 2}, - [1661] = {.lex_state = 114, .external_lex_state = 2}, - [1662] = {.lex_state = 114, .external_lex_state = 2}, - [1663] = {.lex_state = 114, .external_lex_state = 2}, - [1664] = {.lex_state = 114, .external_lex_state = 2}, - [1665] = {.lex_state = 114, .external_lex_state = 2}, - [1666] = {.lex_state = 114, .external_lex_state = 2}, - [1667] = {.lex_state = 114, .external_lex_state = 2}, - [1668] = {.lex_state = 114, .external_lex_state = 2}, - [1669] = {.lex_state = 114, .external_lex_state = 2}, - [1670] = {.lex_state = 114, .external_lex_state = 2}, - [1671] = {.lex_state = 20, .external_lex_state = 2}, - [1672] = {.lex_state = 114, .external_lex_state = 2}, - [1673] = {.lex_state = 114, .external_lex_state = 2}, - [1674] = {.lex_state = 114, .external_lex_state = 2}, - [1675] = {.lex_state = 114, .external_lex_state = 2}, - [1676] = {.lex_state = 114, .external_lex_state = 2}, - [1677] = {.lex_state = 114, .external_lex_state = 2}, - [1678] = {.lex_state = 114, .external_lex_state = 2}, - [1679] = {.lex_state = 114, .external_lex_state = 2}, - [1680] = {.lex_state = 114, .external_lex_state = 2}, - [1681] = {.lex_state = 114, .external_lex_state = 2}, - [1682] = {.lex_state = 114, .external_lex_state = 2}, - [1683] = {.lex_state = 114, .external_lex_state = 2}, - [1684] = {.lex_state = 114, .external_lex_state = 2}, - [1685] = {.lex_state = 114, .external_lex_state = 2}, - [1686] = {.lex_state = 114, .external_lex_state = 2}, - [1687] = {.lex_state = 11, .external_lex_state = 2}, - [1688] = {.lex_state = 114, .external_lex_state = 2}, - [1689] = {.lex_state = 114, .external_lex_state = 2}, - [1690] = {.lex_state = 114, .external_lex_state = 2}, - [1691] = {.lex_state = 114, .external_lex_state = 2}, - [1692] = {.lex_state = 114, .external_lex_state = 2}, - [1693] = {.lex_state = 114, .external_lex_state = 2}, - [1694] = {.lex_state = 114, .external_lex_state = 2}, - [1695] = {.lex_state = 114, .external_lex_state = 2}, - [1696] = {.lex_state = 114, .external_lex_state = 2}, - [1697] = {.lex_state = 114, .external_lex_state = 2}, - [1698] = {.lex_state = 114, .external_lex_state = 2}, - [1699] = {.lex_state = 114, .external_lex_state = 2}, - [1700] = {.lex_state = 114, .external_lex_state = 2}, - [1701] = {.lex_state = 114, .external_lex_state = 2}, - [1702] = {.lex_state = 114, .external_lex_state = 2}, - [1703] = {.lex_state = 114, .external_lex_state = 2}, - [1704] = {.lex_state = 114, .external_lex_state = 2}, - [1705] = {.lex_state = 114, .external_lex_state = 2}, - [1706] = {.lex_state = 114, .external_lex_state = 2}, - [1707] = {.lex_state = 114, .external_lex_state = 2}, - [1708] = {.lex_state = 114, .external_lex_state = 2}, - [1709] = {.lex_state = 114, .external_lex_state = 2}, - [1710] = {.lex_state = 28, .external_lex_state = 2}, - [1711] = {.lex_state = 114, .external_lex_state = 2}, - [1712] = {.lex_state = 114, .external_lex_state = 2}, - [1713] = {.lex_state = 114, .external_lex_state = 2}, - [1714] = {.lex_state = 114, .external_lex_state = 2}, - [1715] = {.lex_state = 114, .external_lex_state = 2}, - [1716] = {.lex_state = 115, .external_lex_state = 2}, - [1717] = {.lex_state = 114, .external_lex_state = 2}, - [1718] = {.lex_state = 112, .external_lex_state = 2}, - [1719] = {.lex_state = 20, .external_lex_state = 2}, - [1720] = {.lex_state = 114, .external_lex_state = 2}, - [1721] = {.lex_state = 114, .external_lex_state = 2}, - [1722] = {.lex_state = 114, .external_lex_state = 2}, - [1723] = {.lex_state = 114, .external_lex_state = 2}, - [1724] = {.lex_state = 114, .external_lex_state = 2}, - [1725] = {.lex_state = 114, .external_lex_state = 2}, - [1726] = {.lex_state = 114, .external_lex_state = 2}, - [1727] = {.lex_state = 114, .external_lex_state = 2}, - [1728] = {.lex_state = 114, .external_lex_state = 2}, - [1729] = {.lex_state = 114, .external_lex_state = 2}, - [1730] = {.lex_state = 115, .external_lex_state = 2}, - [1731] = {.lex_state = 114, .external_lex_state = 2}, - [1732] = {.lex_state = 4, .external_lex_state = 2}, - [1733] = {.lex_state = 114, .external_lex_state = 2}, - [1734] = {.lex_state = 114, .external_lex_state = 2}, - [1735] = {.lex_state = 114, .external_lex_state = 2}, - [1736] = {.lex_state = 114, .external_lex_state = 2}, - [1737] = {.lex_state = 12, .external_lex_state = 2}, - [1738] = {.lex_state = 115, .external_lex_state = 2}, - [1739] = {.lex_state = 115, .external_lex_state = 2}, - [1740] = {.lex_state = 115, .external_lex_state = 2}, - [1741] = {.lex_state = 115, .external_lex_state = 2}, - [1742] = {.lex_state = 4, .external_lex_state = 2}, - [1743] = {.lex_state = 115, .external_lex_state = 2}, - [1744] = {.lex_state = 12, .external_lex_state = 2}, - [1745] = {.lex_state = 115, .external_lex_state = 2}, - [1746] = {.lex_state = 115, .external_lex_state = 2}, - [1747] = {.lex_state = 112, .external_lex_state = 2}, - [1748] = {.lex_state = 115, .external_lex_state = 2}, - [1749] = {.lex_state = 115, .external_lex_state = 2}, - [1750] = {.lex_state = 22, .external_lex_state = 2}, - [1751] = {.lex_state = 112, .external_lex_state = 2}, - [1752] = {.lex_state = 12, .external_lex_state = 2}, - [1753] = {.lex_state = 112, .external_lex_state = 2}, - [1754] = {.lex_state = 112, .external_lex_state = 2}, - [1755] = {.lex_state = 115, .external_lex_state = 2}, - [1756] = {.lex_state = 115, .external_lex_state = 2}, - [1757] = {.lex_state = 115, .external_lex_state = 2}, - [1758] = {.lex_state = 115, .external_lex_state = 2}, - [1759] = {.lex_state = 22, .external_lex_state = 2}, - [1760] = {.lex_state = 115, .external_lex_state = 2}, - [1761] = {.lex_state = 115, .external_lex_state = 2}, - [1762] = {.lex_state = 115, .external_lex_state = 2}, - [1763] = {.lex_state = 115, .external_lex_state = 2}, - [1764] = {.lex_state = 115, .external_lex_state = 2}, - [1765] = {.lex_state = 115, .external_lex_state = 2}, - [1766] = {.lex_state = 115, .external_lex_state = 2}, - [1767] = {.lex_state = 115, .external_lex_state = 2}, - [1768] = {.lex_state = 115, .external_lex_state = 2}, - [1769] = {.lex_state = 115, .external_lex_state = 2}, - [1770] = {.lex_state = 115, .external_lex_state = 2}, - [1771] = {.lex_state = 115, .external_lex_state = 2}, - [1772] = {.lex_state = 115, .external_lex_state = 2}, - [1773] = {.lex_state = 115, .external_lex_state = 2}, - [1774] = {.lex_state = 115, .external_lex_state = 2}, - [1775] = {.lex_state = 11, .external_lex_state = 2}, - [1776] = {.lex_state = 115, .external_lex_state = 2}, - [1777] = {.lex_state = 115, .external_lex_state = 2}, - [1778] = {.lex_state = 115, .external_lex_state = 2}, - [1779] = {.lex_state = 115, .external_lex_state = 2}, - [1780] = {.lex_state = 115, .external_lex_state = 2}, - [1781] = {.lex_state = 115, .external_lex_state = 2}, - [1782] = {.lex_state = 115, .external_lex_state = 2}, - [1783] = {.lex_state = 115, .external_lex_state = 2}, - [1784] = {.lex_state = 115, .external_lex_state = 2}, - [1785] = {.lex_state = 115, .external_lex_state = 2}, - [1786] = {.lex_state = 115, .external_lex_state = 2}, - [1787] = {.lex_state = 115, .external_lex_state = 2}, - [1788] = {.lex_state = 115, .external_lex_state = 2}, - [1789] = {.lex_state = 115, .external_lex_state = 2}, - [1790] = {.lex_state = 115, .external_lex_state = 2}, - [1791] = {.lex_state = 115, .external_lex_state = 2}, - [1792] = {.lex_state = 115, .external_lex_state = 2}, - [1793] = {.lex_state = 115, .external_lex_state = 2}, - [1794] = {.lex_state = 115, .external_lex_state = 2}, - [1795] = {.lex_state = 115, .external_lex_state = 2}, - [1796] = {.lex_state = 115, .external_lex_state = 2}, - [1797] = {.lex_state = 115, .external_lex_state = 2}, - [1798] = {.lex_state = 115, .external_lex_state = 2}, - [1799] = {.lex_state = 115, .external_lex_state = 2}, - [1800] = {.lex_state = 115, .external_lex_state = 2}, - [1801] = {.lex_state = 115, .external_lex_state = 2}, - [1802] = {.lex_state = 115, .external_lex_state = 2}, - [1803] = {.lex_state = 115, .external_lex_state = 2}, - [1804] = {.lex_state = 115, .external_lex_state = 2}, - [1805] = {.lex_state = 115, .external_lex_state = 2}, - [1806] = {.lex_state = 115, .external_lex_state = 2}, - [1807] = {.lex_state = 115, .external_lex_state = 2}, - [1808] = {.lex_state = 11, .external_lex_state = 2}, - [1809] = {.lex_state = 115, .external_lex_state = 2}, - [1810] = {.lex_state = 115, .external_lex_state = 2}, - [1811] = {.lex_state = 115, .external_lex_state = 2}, - [1812] = {.lex_state = 115, .external_lex_state = 2}, - [1813] = {.lex_state = 115, .external_lex_state = 2}, - [1814] = {.lex_state = 115, .external_lex_state = 2}, - [1815] = {.lex_state = 112, .external_lex_state = 2}, - [1816] = {.lex_state = 115, .external_lex_state = 2}, - [1817] = {.lex_state = 115, .external_lex_state = 2}, - [1818] = {.lex_state = 115, .external_lex_state = 2}, - [1819] = {.lex_state = 115, .external_lex_state = 2}, - [1820] = {.lex_state = 115, .external_lex_state = 2}, - [1821] = {.lex_state = 115, .external_lex_state = 2}, - [1822] = {.lex_state = 115, .external_lex_state = 2}, - [1823] = {.lex_state = 115, .external_lex_state = 2}, - [1824] = {.lex_state = 115, .external_lex_state = 2}, - [1825] = {.lex_state = 11, .external_lex_state = 2}, - [1826] = {.lex_state = 115, .external_lex_state = 2}, - [1827] = {.lex_state = 115, .external_lex_state = 2}, - [1828] = {.lex_state = 115, .external_lex_state = 2}, - [1829] = {.lex_state = 115, .external_lex_state = 2}, - [1830] = {.lex_state = 115, .external_lex_state = 2}, - [1831] = {.lex_state = 115, .external_lex_state = 2}, - [1832] = {.lex_state = 115, .external_lex_state = 2}, - [1833] = {.lex_state = 115, .external_lex_state = 2}, - [1834] = {.lex_state = 115, .external_lex_state = 2}, - [1835] = {.lex_state = 115, .external_lex_state = 2}, - [1836] = {.lex_state = 115, .external_lex_state = 2}, - [1837] = {.lex_state = 115, .external_lex_state = 2}, - [1838] = {.lex_state = 115, .external_lex_state = 2}, - [1839] = {.lex_state = 115, .external_lex_state = 2}, - [1840] = {.lex_state = 115, .external_lex_state = 2}, - [1841] = {.lex_state = 115, .external_lex_state = 2}, - [1842] = {.lex_state = 115, .external_lex_state = 2}, - [1843] = {.lex_state = 115, .external_lex_state = 2}, - [1844] = {.lex_state = 115, .external_lex_state = 2}, - [1845] = {.lex_state = 115, .external_lex_state = 2}, - [1846] = {.lex_state = 115, .external_lex_state = 2}, - [1847] = {.lex_state = 115, .external_lex_state = 2}, - [1848] = {.lex_state = 115, .external_lex_state = 2}, - [1849] = {.lex_state = 115, .external_lex_state = 2}, - [1850] = {.lex_state = 115, .external_lex_state = 2}, - [1851] = {.lex_state = 115, .external_lex_state = 2}, - [1852] = {.lex_state = 115, .external_lex_state = 2}, - [1853] = {.lex_state = 115, .external_lex_state = 2}, - [1854] = {.lex_state = 115, .external_lex_state = 2}, - [1855] = {.lex_state = 115, .external_lex_state = 2}, - [1856] = {.lex_state = 115, .external_lex_state = 2}, - [1857] = {.lex_state = 115, .external_lex_state = 2}, - [1858] = {.lex_state = 115, .external_lex_state = 2}, - [1859] = {.lex_state = 115, .external_lex_state = 2}, - [1860] = {.lex_state = 115, .external_lex_state = 2}, - [1861] = {.lex_state = 115, .external_lex_state = 2}, - [1862] = {.lex_state = 115, .external_lex_state = 2}, - [1863] = {.lex_state = 115, .external_lex_state = 2}, - [1864] = {.lex_state = 110, .external_lex_state = 2}, - [1865] = {.lex_state = 115, .external_lex_state = 2}, - [1866] = {.lex_state = 29, .external_lex_state = 2}, - [1867] = {.lex_state = 29, .external_lex_state = 2}, - [1868] = {.lex_state = 115, .external_lex_state = 2}, - [1869] = {.lex_state = 115, .external_lex_state = 2}, - [1870] = {.lex_state = 115, .external_lex_state = 2}, - [1871] = {.lex_state = 115, .external_lex_state = 2}, - [1872] = {.lex_state = 115, .external_lex_state = 2}, - [1873] = {.lex_state = 4, .external_lex_state = 2}, - [1874] = {.lex_state = 115, .external_lex_state = 2}, - [1875] = {.lex_state = 115, .external_lex_state = 2}, - [1876] = {.lex_state = 115, .external_lex_state = 2}, - [1877] = {.lex_state = 115, .external_lex_state = 2}, - [1878] = {.lex_state = 115, .external_lex_state = 2}, - [1879] = {.lex_state = 115, .external_lex_state = 2}, - [1880] = {.lex_state = 115, .external_lex_state = 2}, - [1881] = {.lex_state = 4, .external_lex_state = 2}, - [1882] = {.lex_state = 4, .external_lex_state = 2}, - [1883] = {.lex_state = 115, .external_lex_state = 2}, - [1884] = {.lex_state = 115, .external_lex_state = 2}, - [1885] = {.lex_state = 115, .external_lex_state = 2}, - [1886] = {.lex_state = 4, .external_lex_state = 2}, - [1887] = {.lex_state = 115, .external_lex_state = 2}, - [1888] = {.lex_state = 115, .external_lex_state = 2}, - [1889] = {.lex_state = 115, .external_lex_state = 2}, - [1890] = {.lex_state = 115, .external_lex_state = 2}, - [1891] = {.lex_state = 115, .external_lex_state = 2}, - [1892] = {.lex_state = 115, .external_lex_state = 2}, - [1893] = {.lex_state = 115, .external_lex_state = 2}, - [1894] = {.lex_state = 4, .external_lex_state = 2}, - [1895] = {.lex_state = 115, .external_lex_state = 2}, - [1896] = {.lex_state = 115, .external_lex_state = 2}, - [1897] = {.lex_state = 115, .external_lex_state = 2}, - [1898] = {.lex_state = 115, .external_lex_state = 2}, - [1899] = {.lex_state = 115, .external_lex_state = 2}, - [1900] = {.lex_state = 115, .external_lex_state = 2}, - [1901] = {.lex_state = 115, .external_lex_state = 2}, - [1902] = {.lex_state = 115, .external_lex_state = 2}, - [1903] = {.lex_state = 115, .external_lex_state = 2}, - [1904] = {.lex_state = 115, .external_lex_state = 2}, - [1905] = {.lex_state = 115, .external_lex_state = 2}, - [1906] = {.lex_state = 115, .external_lex_state = 2}, - [1907] = {.lex_state = 115, .external_lex_state = 2}, - [1908] = {.lex_state = 115, .external_lex_state = 2}, - [1909] = {.lex_state = 4, .external_lex_state = 2}, - [1910] = {.lex_state = 115, .external_lex_state = 2}, - [1911] = {.lex_state = 115, .external_lex_state = 2}, - [1912] = {.lex_state = 115, .external_lex_state = 2}, - [1913] = {.lex_state = 115, .external_lex_state = 2}, - [1914] = {.lex_state = 115, .external_lex_state = 2}, - [1915] = {.lex_state = 115, .external_lex_state = 2}, - [1916] = {.lex_state = 115, .external_lex_state = 2}, - [1917] = {.lex_state = 115, .external_lex_state = 2}, - [1918] = {.lex_state = 115, .external_lex_state = 2}, - [1919] = {.lex_state = 115, .external_lex_state = 2}, - [1920] = {.lex_state = 115, .external_lex_state = 2}, - [1921] = {.lex_state = 115, .external_lex_state = 2}, - [1922] = {.lex_state = 115, .external_lex_state = 2}, - [1923] = {.lex_state = 115, .external_lex_state = 2}, - [1924] = {.lex_state = 115, .external_lex_state = 2}, - [1925] = {.lex_state = 115, .external_lex_state = 2}, - [1926] = {.lex_state = 115, .external_lex_state = 2}, - [1927] = {.lex_state = 115, .external_lex_state = 2}, - [1928] = {.lex_state = 110, .external_lex_state = 2}, - [1929] = {.lex_state = 110, .external_lex_state = 2}, - [1930] = {.lex_state = 110, .external_lex_state = 2}, - [1931] = {.lex_state = 4, .external_lex_state = 2}, - [1932] = {.lex_state = 29, .external_lex_state = 2}, - [1933] = {.lex_state = 110, .external_lex_state = 2}, - [1934] = {.lex_state = 5, .external_lex_state = 3}, - [1935] = {.lex_state = 110, .external_lex_state = 2}, - [1936] = {.lex_state = 4, .external_lex_state = 2}, - [1937] = {.lex_state = 4, .external_lex_state = 2}, - [1938] = {.lex_state = 4, .external_lex_state = 2}, - [1939] = {.lex_state = 4, .external_lex_state = 2}, - [1940] = {.lex_state = 4, .external_lex_state = 2}, - [1941] = {.lex_state = 4, .external_lex_state = 2}, - [1942] = {.lex_state = 4, .external_lex_state = 2}, - [1943] = {.lex_state = 4, .external_lex_state = 2}, - [1944] = {.lex_state = 8, .external_lex_state = 2}, - [1945] = {.lex_state = 4, .external_lex_state = 2}, - [1946] = {.lex_state = 4, .external_lex_state = 2}, - [1947] = {.lex_state = 4, .external_lex_state = 2}, - [1948] = {.lex_state = 4, .external_lex_state = 2}, - [1949] = {.lex_state = 4, .external_lex_state = 2}, - [1950] = {.lex_state = 4, .external_lex_state = 2}, - [1951] = {.lex_state = 4, .external_lex_state = 2}, - [1952] = {.lex_state = 4, .external_lex_state = 2}, - [1953] = {.lex_state = 4, .external_lex_state = 2}, - [1954] = {.lex_state = 4, .external_lex_state = 2}, - [1955] = {.lex_state = 8, .external_lex_state = 2}, - [1956] = {.lex_state = 12, .external_lex_state = 2}, - [1957] = {.lex_state = 12, .external_lex_state = 2}, - [1958] = {.lex_state = 4, .external_lex_state = 2}, - [1959] = {.lex_state = 4, .external_lex_state = 2}, - [1960] = {.lex_state = 4, .external_lex_state = 2}, - [1961] = {.lex_state = 11, .external_lex_state = 2}, - [1962] = {.lex_state = 4, .external_lex_state = 2}, - [1963] = {.lex_state = 4, .external_lex_state = 2}, - [1964] = {.lex_state = 4, .external_lex_state = 2}, - [1965] = {.lex_state = 4, .external_lex_state = 2}, - [1966] = {.lex_state = 4, .external_lex_state = 2}, - [1967] = {.lex_state = 4, .external_lex_state = 2}, - [1968] = {.lex_state = 4, .external_lex_state = 2}, - [1969] = {.lex_state = 4, .external_lex_state = 2}, - [1970] = {.lex_state = 4, .external_lex_state = 2}, - [1971] = {.lex_state = 11, .external_lex_state = 2}, - [1972] = {.lex_state = 4, .external_lex_state = 2}, - [1973] = {.lex_state = 4, .external_lex_state = 2}, - [1974] = {.lex_state = 11, .external_lex_state = 2}, - [1975] = {.lex_state = 11, .external_lex_state = 2}, - [1976] = {.lex_state = 4, .external_lex_state = 2}, - [1977] = {.lex_state = 12, .external_lex_state = 2}, - [1978] = {.lex_state = 12, .external_lex_state = 2}, - [1979] = {.lex_state = 12, .external_lex_state = 2}, - [1980] = {.lex_state = 4, .external_lex_state = 2}, - [1981] = {.lex_state = 4, .external_lex_state = 2}, - [1982] = {.lex_state = 12, .external_lex_state = 2}, - [1983] = {.lex_state = 4, .external_lex_state = 2}, - [1984] = {.lex_state = 4, .external_lex_state = 2}, - [1985] = {.lex_state = 4, .external_lex_state = 2}, - [1986] = {.lex_state = 4, .external_lex_state = 2}, - [1987] = {.lex_state = 4, .external_lex_state = 2}, - [1988] = {.lex_state = 4, .external_lex_state = 2}, - [1989] = {.lex_state = 4, .external_lex_state = 2}, - [1990] = {.lex_state = 4, .external_lex_state = 2}, - [1991] = {.lex_state = 4, .external_lex_state = 2}, - [1992] = {.lex_state = 4, .external_lex_state = 2}, - [1993] = {.lex_state = 4, .external_lex_state = 2}, - [1994] = {.lex_state = 4, .external_lex_state = 2}, - [1995] = {.lex_state = 4, .external_lex_state = 2}, - [1996] = {.lex_state = 4, .external_lex_state = 2}, - [1997] = {.lex_state = 4, .external_lex_state = 2}, - [1998] = {.lex_state = 4, .external_lex_state = 2}, - [1999] = {.lex_state = 4, .external_lex_state = 2}, - [2000] = {.lex_state = 4, .external_lex_state = 2}, - [2001] = {.lex_state = 4, .external_lex_state = 2}, - [2002] = {.lex_state = 4, .external_lex_state = 2}, - [2003] = {.lex_state = 4, .external_lex_state = 2}, - [2004] = {.lex_state = 4, .external_lex_state = 2}, - [2005] = {.lex_state = 4, .external_lex_state = 2}, - [2006] = {.lex_state = 4, .external_lex_state = 2}, - [2007] = {.lex_state = 4, .external_lex_state = 2}, - [2008] = {.lex_state = 4, .external_lex_state = 2}, - [2009] = {.lex_state = 4, .external_lex_state = 2}, - [2010] = {.lex_state = 4, .external_lex_state = 2}, - [2011] = {.lex_state = 4, .external_lex_state = 2}, - [2012] = {.lex_state = 4, .external_lex_state = 2}, - [2013] = {.lex_state = 4, .external_lex_state = 2}, - [2014] = {.lex_state = 4, .external_lex_state = 2}, - [2015] = {.lex_state = 4, .external_lex_state = 2}, - [2016] = {.lex_state = 4, .external_lex_state = 2}, - [2017] = {.lex_state = 4, .external_lex_state = 2}, - [2018] = {.lex_state = 4, .external_lex_state = 2}, - [2019] = {.lex_state = 8, .external_lex_state = 2}, - [2020] = {.lex_state = 8, .external_lex_state = 2}, - [2021] = {.lex_state = 4, .external_lex_state = 2}, - [2022] = {.lex_state = 4, .external_lex_state = 2}, - [2023] = {.lex_state = 4, .external_lex_state = 2}, - [2024] = {.lex_state = 4, .external_lex_state = 2}, - [2025] = {.lex_state = 4, .external_lex_state = 2}, - [2026] = {.lex_state = 4, .external_lex_state = 2}, - [2027] = {.lex_state = 4, .external_lex_state = 2}, - [2028] = {.lex_state = 4, .external_lex_state = 2}, - [2029] = {.lex_state = 4, .external_lex_state = 2}, - [2030] = {.lex_state = 4, .external_lex_state = 2}, - [2031] = {.lex_state = 4, .external_lex_state = 2}, - [2032] = {.lex_state = 4, .external_lex_state = 2}, - [2033] = {.lex_state = 4, .external_lex_state = 2}, - [2034] = {.lex_state = 4, .external_lex_state = 2}, - [2035] = {.lex_state = 4, .external_lex_state = 2}, - [2036] = {.lex_state = 4, .external_lex_state = 2}, - [2037] = {.lex_state = 4, .external_lex_state = 2}, - [2038] = {.lex_state = 4, .external_lex_state = 2}, - [2039] = {.lex_state = 4, .external_lex_state = 2}, - [2040] = {.lex_state = 4, .external_lex_state = 2}, - [2041] = {.lex_state = 4, .external_lex_state = 2}, - [2042] = {.lex_state = 4, .external_lex_state = 2}, - [2043] = {.lex_state = 4, .external_lex_state = 2}, - [2044] = {.lex_state = 4, .external_lex_state = 2}, - [2045] = {.lex_state = 4, .external_lex_state = 2}, - [2046] = {.lex_state = 4, .external_lex_state = 2}, - [2047] = {.lex_state = 4, .external_lex_state = 2}, - [2048] = {.lex_state = 4, .external_lex_state = 2}, - [2049] = {.lex_state = 4, .external_lex_state = 2}, - [2050] = {.lex_state = 4, .external_lex_state = 2}, - [2051] = {.lex_state = 4, .external_lex_state = 2}, - [2052] = {.lex_state = 4, .external_lex_state = 2}, - [2053] = {.lex_state = 4, .external_lex_state = 2}, - [2054] = {.lex_state = 4, .external_lex_state = 2}, - [2055] = {.lex_state = 4, .external_lex_state = 2}, - [2056] = {.lex_state = 4, .external_lex_state = 2}, - [2057] = {.lex_state = 4, .external_lex_state = 2}, - [2058] = {.lex_state = 4, .external_lex_state = 2}, - [2059] = {.lex_state = 4, .external_lex_state = 2}, - [2060] = {.lex_state = 4, .external_lex_state = 2}, - [2061] = {.lex_state = 4, .external_lex_state = 2}, - [2062] = {.lex_state = 4, .external_lex_state = 2}, - [2063] = {.lex_state = 4, .external_lex_state = 2}, - [2064] = {.lex_state = 4, .external_lex_state = 2}, - [2065] = {.lex_state = 4, .external_lex_state = 2}, - [2066] = {.lex_state = 4, .external_lex_state = 2}, - [2067] = {.lex_state = 4, .external_lex_state = 2}, - [2068] = {.lex_state = 4, .external_lex_state = 2}, - [2069] = {.lex_state = 4, .external_lex_state = 2}, - [2070] = {.lex_state = 4, .external_lex_state = 2}, - [2071] = {.lex_state = 4, .external_lex_state = 2}, - [2072] = {.lex_state = 4, .external_lex_state = 2}, - [2073] = {.lex_state = 4, .external_lex_state = 2}, - [2074] = {.lex_state = 4, .external_lex_state = 2}, - [2075] = {.lex_state = 4, .external_lex_state = 2}, - [2076] = {.lex_state = 4, .external_lex_state = 2}, - [2077] = {.lex_state = 4, .external_lex_state = 2}, - [2078] = {.lex_state = 4, .external_lex_state = 2}, - [2079] = {.lex_state = 4, .external_lex_state = 2}, - [2080] = {.lex_state = 4, .external_lex_state = 2}, - [2081] = {.lex_state = 8, .external_lex_state = 2}, - [2082] = {.lex_state = 116, .external_lex_state = 3}, - [2083] = {.lex_state = 4, .external_lex_state = 2}, - [2084] = {.lex_state = 116, .external_lex_state = 3}, - [2085] = {.lex_state = 8, .external_lex_state = 2}, - [2086] = {.lex_state = 4, .external_lex_state = 2}, - [2087] = {.lex_state = 4, .external_lex_state = 2}, - [2088] = {.lex_state = 8, .external_lex_state = 2}, - [2089] = {.lex_state = 12, .external_lex_state = 4}, - [2090] = {.lex_state = 4, .external_lex_state = 2}, - [2091] = {.lex_state = 4, .external_lex_state = 2}, - [2092] = {.lex_state = 4, .external_lex_state = 2}, - [2093] = {.lex_state = 12, .external_lex_state = 4}, - [2094] = {.lex_state = 4, .external_lex_state = 2}, - [2095] = {.lex_state = 8, .external_lex_state = 2}, - [2096] = {.lex_state = 4, .external_lex_state = 2}, - [2097] = {.lex_state = 12, .external_lex_state = 4}, - [2098] = {.lex_state = 8, .external_lex_state = 2}, - [2099] = {.lex_state = 4, .external_lex_state = 2}, - [2100] = {.lex_state = 12, .external_lex_state = 4}, - [2101] = {.lex_state = 12, .external_lex_state = 4}, - [2102] = {.lex_state = 4, .external_lex_state = 2}, - [2103] = {.lex_state = 4, .external_lex_state = 2}, - [2104] = {.lex_state = 4, .external_lex_state = 2}, - [2105] = {.lex_state = 4, .external_lex_state = 2}, - [2106] = {.lex_state = 4, .external_lex_state = 2}, - [2107] = {.lex_state = 4, .external_lex_state = 2}, - [2108] = {.lex_state = 12, .external_lex_state = 4}, - [2109] = {.lex_state = 8, .external_lex_state = 2}, - [2110] = {.lex_state = 12, .external_lex_state = 4}, - [2111] = {.lex_state = 4, .external_lex_state = 2}, - [2112] = {.lex_state = 8, .external_lex_state = 2}, - [2113] = {.lex_state = 12, .external_lex_state = 4}, - [2114] = {.lex_state = 116, .external_lex_state = 3}, - [2115] = {.lex_state = 4, .external_lex_state = 2}, - [2116] = {.lex_state = 4, .external_lex_state = 2}, - [2117] = {.lex_state = 4, .external_lex_state = 2}, - [2118] = {.lex_state = 116, .external_lex_state = 3}, - [2119] = {.lex_state = 4, .external_lex_state = 2}, - [2120] = {.lex_state = 12, .external_lex_state = 4}, - [2121] = {.lex_state = 4, .external_lex_state = 2}, - [2122] = {.lex_state = 4, .external_lex_state = 2}, - [2123] = {.lex_state = 4, .external_lex_state = 2}, - [2124] = {.lex_state = 4, .external_lex_state = 2}, - [2125] = {.lex_state = 4, .external_lex_state = 2}, - [2126] = {.lex_state = 12, .external_lex_state = 4}, - [2127] = {.lex_state = 4, .external_lex_state = 2}, - [2128] = {.lex_state = 8, .external_lex_state = 2}, - [2129] = {.lex_state = 8, .external_lex_state = 2}, - [2130] = {.lex_state = 4, .external_lex_state = 2}, - [2131] = {.lex_state = 12, .external_lex_state = 4}, - [2132] = {.lex_state = 8, .external_lex_state = 2}, - [2133] = {.lex_state = 8, .external_lex_state = 2}, - [2134] = {.lex_state = 8, .external_lex_state = 2}, - [2135] = {.lex_state = 4, .external_lex_state = 2}, - [2136] = {.lex_state = 12, .external_lex_state = 4}, - [2137] = {.lex_state = 4, .external_lex_state = 2}, - [2138] = {.lex_state = 4, .external_lex_state = 2}, - [2139] = {.lex_state = 8, .external_lex_state = 2}, - [2140] = {.lex_state = 4, .external_lex_state = 2}, - [2141] = {.lex_state = 8, .external_lex_state = 2}, - [2142] = {.lex_state = 12, .external_lex_state = 4}, - [2143] = {.lex_state = 12, .external_lex_state = 4}, - [2144] = {.lex_state = 4, .external_lex_state = 2}, - [2145] = {.lex_state = 4, .external_lex_state = 2}, - [2146] = {.lex_state = 8, .external_lex_state = 2}, - [2147] = {.lex_state = 12, .external_lex_state = 4}, - [2148] = {.lex_state = 4, .external_lex_state = 2}, - [2149] = {.lex_state = 12, .external_lex_state = 4}, - [2150] = {.lex_state = 12, .external_lex_state = 4}, - [2151] = {.lex_state = 12, .external_lex_state = 4}, - [2152] = {.lex_state = 4, .external_lex_state = 2}, - [2153] = {.lex_state = 4, .external_lex_state = 2}, - [2154] = {.lex_state = 12, .external_lex_state = 2}, - [2155] = {.lex_state = 4, .external_lex_state = 2}, - [2156] = {.lex_state = 4, .external_lex_state = 2}, - [2157] = {.lex_state = 8, .external_lex_state = 2}, - [2158] = {.lex_state = 4, .external_lex_state = 2}, - [2159] = {.lex_state = 8, .external_lex_state = 2}, - [2160] = {.lex_state = 4, .external_lex_state = 2}, - [2161] = {.lex_state = 4, .external_lex_state = 2}, - [2162] = {.lex_state = 4, .external_lex_state = 2}, - [2163] = {.lex_state = 12, .external_lex_state = 2}, - [2164] = {.lex_state = 12, .external_lex_state = 2}, - [2165] = {.lex_state = 4, .external_lex_state = 2}, - [2166] = {.lex_state = 12, .external_lex_state = 2}, - [2167] = {.lex_state = 12, .external_lex_state = 2}, - [2168] = {.lex_state = 4, .external_lex_state = 2}, - [2169] = {.lex_state = 8, .external_lex_state = 2}, - [2170] = {.lex_state = 8, .external_lex_state = 2}, - [2171] = {.lex_state = 4, .external_lex_state = 2}, - [2172] = {.lex_state = 4, .external_lex_state = 2}, - [2173] = {.lex_state = 4, .external_lex_state = 2}, - [2174] = {.lex_state = 8, .external_lex_state = 2}, - [2175] = {.lex_state = 4, .external_lex_state = 2}, - [2176] = {.lex_state = 4, .external_lex_state = 2}, - [2177] = {.lex_state = 8, .external_lex_state = 2}, - [2178] = {.lex_state = 4, .external_lex_state = 2}, - [2179] = {.lex_state = 4, .external_lex_state = 2}, - [2180] = {.lex_state = 4, .external_lex_state = 2}, - [2181] = {.lex_state = 4, .external_lex_state = 2}, - [2182] = {.lex_state = 4, .external_lex_state = 2}, - [2183] = {.lex_state = 4, .external_lex_state = 2}, - [2184] = {.lex_state = 4, .external_lex_state = 2}, - [2185] = {.lex_state = 4, .external_lex_state = 2}, - [2186] = {.lex_state = 4, .external_lex_state = 2}, - [2187] = {.lex_state = 4, .external_lex_state = 2}, - [2188] = {.lex_state = 4, .external_lex_state = 2}, - [2189] = {.lex_state = 12, .external_lex_state = 2}, - [2190] = {.lex_state = 4, .external_lex_state = 2}, - [2191] = {.lex_state = 4, .external_lex_state = 2}, - [2192] = {.lex_state = 4, .external_lex_state = 2}, - [2193] = {.lex_state = 4, .external_lex_state = 2}, - [2194] = {.lex_state = 4, .external_lex_state = 2}, - [2195] = {.lex_state = 4, .external_lex_state = 2}, - [2196] = {.lex_state = 8, .external_lex_state = 2}, - [2197] = {.lex_state = 12, .external_lex_state = 2}, - [2198] = {.lex_state = 4, .external_lex_state = 2}, - [2199] = {.lex_state = 4, .external_lex_state = 2}, - [2200] = {.lex_state = 8, .external_lex_state = 2}, - [2201] = {.lex_state = 4, .external_lex_state = 2}, - [2202] = {.lex_state = 12, .external_lex_state = 2}, - [2203] = {.lex_state = 4, .external_lex_state = 2}, - [2204] = {.lex_state = 12, .external_lex_state = 2}, - [2205] = {.lex_state = 4, .external_lex_state = 2}, - [2206] = {.lex_state = 4, .external_lex_state = 2}, - [2207] = {.lex_state = 12, .external_lex_state = 2}, - [2208] = {.lex_state = 4, .external_lex_state = 2}, - [2209] = {.lex_state = 4, .external_lex_state = 2}, - [2210] = {.lex_state = 12, .external_lex_state = 2}, - [2211] = {.lex_state = 12, .external_lex_state = 2}, - [2212] = {.lex_state = 4, .external_lex_state = 2}, - [2213] = {.lex_state = 4, .external_lex_state = 2}, - [2214] = {.lex_state = 12, .external_lex_state = 2}, - [2215] = {.lex_state = 8, .external_lex_state = 2}, - [2216] = {.lex_state = 4, .external_lex_state = 2}, - [2217] = {.lex_state = 4, .external_lex_state = 2}, - [2218] = {.lex_state = 4, .external_lex_state = 2}, - [2219] = {.lex_state = 4, .external_lex_state = 2}, - [2220] = {.lex_state = 8, .external_lex_state = 2}, - [2221] = {.lex_state = 4, .external_lex_state = 2}, - [2222] = {.lex_state = 4, .external_lex_state = 2}, - [2223] = {.lex_state = 4, .external_lex_state = 2}, - [2224] = {.lex_state = 4, .external_lex_state = 2}, - [2225] = {.lex_state = 4, .external_lex_state = 2}, - [2226] = {.lex_state = 12, .external_lex_state = 2}, - [2227] = {.lex_state = 4, .external_lex_state = 2}, - [2228] = {.lex_state = 12, .external_lex_state = 2}, - [2229] = {.lex_state = 4, .external_lex_state = 2}, - [2230] = {.lex_state = 12, .external_lex_state = 2}, - [2231] = {.lex_state = 12, .external_lex_state = 2}, - [2232] = {.lex_state = 4, .external_lex_state = 2}, - [2233] = {.lex_state = 4, .external_lex_state = 2}, - [2234] = {.lex_state = 4, .external_lex_state = 2}, - [2235] = {.lex_state = 12, .external_lex_state = 2}, - [2236] = {.lex_state = 12, .external_lex_state = 2}, - [2237] = {.lex_state = 4, .external_lex_state = 2}, - [2238] = {.lex_state = 4, .external_lex_state = 2}, - [2239] = {.lex_state = 4, .external_lex_state = 2}, - [2240] = {.lex_state = 12, .external_lex_state = 2}, - [2241] = {.lex_state = 4, .external_lex_state = 2}, - [2242] = {.lex_state = 13, .external_lex_state = 2}, - [2243] = {.lex_state = 4, .external_lex_state = 2}, - [2244] = {.lex_state = 4, .external_lex_state = 2}, - [2245] = {.lex_state = 12, .external_lex_state = 2}, - [2246] = {.lex_state = 4, .external_lex_state = 2}, - [2247] = {.lex_state = 4, .external_lex_state = 2}, - [2248] = {.lex_state = 4, .external_lex_state = 2}, - [2249] = {.lex_state = 4, .external_lex_state = 2}, - [2250] = {.lex_state = 12, .external_lex_state = 2}, - [2251] = {.lex_state = 13, .external_lex_state = 2}, - [2252] = {.lex_state = 4, .external_lex_state = 2}, - [2253] = {.lex_state = 12, .external_lex_state = 2}, - [2254] = {.lex_state = 4, .external_lex_state = 2}, - [2255] = {.lex_state = 4, .external_lex_state = 2}, - [2256] = {.lex_state = 4, .external_lex_state = 2}, - [2257] = {.lex_state = 13, .external_lex_state = 2}, - [2258] = {.lex_state = 13, .external_lex_state = 2}, - [2259] = {.lex_state = 4, .external_lex_state = 2}, - [2260] = {.lex_state = 12, .external_lex_state = 2}, - [2261] = {.lex_state = 4, .external_lex_state = 2}, - [2262] = {.lex_state = 13, .external_lex_state = 2}, - [2263] = {.lex_state = 4, .external_lex_state = 2}, - [2264] = {.lex_state = 12, .external_lex_state = 2}, - [2265] = {.lex_state = 12, .external_lex_state = 2}, - [2266] = {.lex_state = 4, .external_lex_state = 2}, - [2267] = {.lex_state = 4, .external_lex_state = 2}, - [2268] = {.lex_state = 12, .external_lex_state = 2}, - [2269] = {.lex_state = 4, .external_lex_state = 2}, - [2270] = {.lex_state = 13, .external_lex_state = 2}, - [2271] = {.lex_state = 4, .external_lex_state = 2}, - [2272] = {.lex_state = 12, .external_lex_state = 2}, - [2273] = {.lex_state = 13, .external_lex_state = 2}, - [2274] = {.lex_state = 4, .external_lex_state = 2}, - [2275] = {.lex_state = 4, .external_lex_state = 2}, - [2276] = {.lex_state = 13, .external_lex_state = 2}, - [2277] = {.lex_state = 4, .external_lex_state = 2}, - [2278] = {.lex_state = 12, .external_lex_state = 2}, - [2279] = {.lex_state = 12, .external_lex_state = 2}, - [2280] = {.lex_state = 4, .external_lex_state = 2}, - [2281] = {.lex_state = 4, .external_lex_state = 2}, - [2282] = {.lex_state = 12, .external_lex_state = 2}, - [2283] = {.lex_state = 13, .external_lex_state = 2}, - [2284] = {.lex_state = 4, .external_lex_state = 2}, - [2285] = {.lex_state = 4, .external_lex_state = 2}, - [2286] = {.lex_state = 4, .external_lex_state = 2}, - [2287] = {.lex_state = 12, .external_lex_state = 2}, - [2288] = {.lex_state = 4, .external_lex_state = 2}, - [2289] = {.lex_state = 4, .external_lex_state = 2}, - [2290] = {.lex_state = 13, .external_lex_state = 2}, - [2291] = {.lex_state = 13, .external_lex_state = 2}, - [2292] = {.lex_state = 12, .external_lex_state = 2}, - [2293] = {.lex_state = 4, .external_lex_state = 2}, - [2294] = {.lex_state = 4, .external_lex_state = 2}, - [2295] = {.lex_state = 12, .external_lex_state = 2}, - [2296] = {.lex_state = 12, .external_lex_state = 2}, - [2297] = {.lex_state = 4, .external_lex_state = 2}, - [2298] = {.lex_state = 4, .external_lex_state = 2}, - [2299] = {.lex_state = 4, .external_lex_state = 2}, - [2300] = {.lex_state = 4, .external_lex_state = 2}, - [2301] = {.lex_state = 12, .external_lex_state = 2}, - [2302] = {.lex_state = 8, .external_lex_state = 2}, - [2303] = {.lex_state = 11, .external_lex_state = 2}, - [2304] = {.lex_state = 12, .external_lex_state = 2}, - [2305] = {.lex_state = 4, .external_lex_state = 2}, - [2306] = {.lex_state = 4, .external_lex_state = 2}, - [2307] = {.lex_state = 4, .external_lex_state = 2}, - [2308] = {.lex_state = 4, .external_lex_state = 2}, - [2309] = {.lex_state = 12, .external_lex_state = 2}, - [2310] = {.lex_state = 12, .external_lex_state = 2}, - [2311] = {.lex_state = 13, .external_lex_state = 2}, - [2312] = {.lex_state = 12, .external_lex_state = 2}, - [2313] = {.lex_state = 13, .external_lex_state = 2}, - [2314] = {.lex_state = 13, .external_lex_state = 2}, - [2315] = {.lex_state = 13, .external_lex_state = 2}, - [2316] = {.lex_state = 13, .external_lex_state = 2}, - [2317] = {.lex_state = 13, .external_lex_state = 2}, - [2318] = {.lex_state = 12, .external_lex_state = 2}, - [2319] = {.lex_state = 13, .external_lex_state = 2}, - [2320] = {.lex_state = 13, .external_lex_state = 2}, - [2321] = {.lex_state = 13, .external_lex_state = 2}, - [2322] = {.lex_state = 13, .external_lex_state = 2}, - [2323] = {.lex_state = 13, .external_lex_state = 2}, - [2324] = {.lex_state = 12, .external_lex_state = 2}, - [2325] = {.lex_state = 4, .external_lex_state = 2}, - [2326] = {.lex_state = 13, .external_lex_state = 2}, - [2327] = {.lex_state = 13, .external_lex_state = 2}, - [2328] = {.lex_state = 13, .external_lex_state = 2}, - [2329] = {.lex_state = 4, .external_lex_state = 2}, - [2330] = {.lex_state = 13, .external_lex_state = 2}, - [2331] = {.lex_state = 12, .external_lex_state = 2}, - [2332] = {.lex_state = 13, .external_lex_state = 2}, - [2333] = {.lex_state = 12, .external_lex_state = 2}, - [2334] = {.lex_state = 4, .external_lex_state = 2}, - [2335] = {.lex_state = 13, .external_lex_state = 2}, - [2336] = {.lex_state = 12, .external_lex_state = 2}, - [2337] = {.lex_state = 4, .external_lex_state = 2}, - [2338] = {.lex_state = 12, .external_lex_state = 2}, - [2339] = {.lex_state = 8, .external_lex_state = 2}, - [2340] = {.lex_state = 12, .external_lex_state = 2}, - [2341] = {.lex_state = 12, .external_lex_state = 2}, - [2342] = {.lex_state = 4, .external_lex_state = 2}, - [2343] = {.lex_state = 12, .external_lex_state = 2}, - [2344] = {.lex_state = 4, .external_lex_state = 2}, - [2345] = {.lex_state = 12, .external_lex_state = 2}, - [2346] = {.lex_state = 4, .external_lex_state = 2}, - [2347] = {.lex_state = 13, .external_lex_state = 2}, - [2348] = {.lex_state = 12, .external_lex_state = 2}, - [2349] = {.lex_state = 4, .external_lex_state = 2}, - [2350] = {.lex_state = 13, .external_lex_state = 2}, - [2351] = {.lex_state = 13, .external_lex_state = 2}, - [2352] = {.lex_state = 13, .external_lex_state = 2}, - [2353] = {.lex_state = 4, .external_lex_state = 2}, - [2354] = {.lex_state = 4, .external_lex_state = 2}, - [2355] = {.lex_state = 13, .external_lex_state = 2}, - [2356] = {.lex_state = 13, .external_lex_state = 2}, - [2357] = {.lex_state = 4, .external_lex_state = 2}, - [2358] = {.lex_state = 12, .external_lex_state = 2}, - [2359] = {.lex_state = 4, .external_lex_state = 2}, - [2360] = {.lex_state = 13, .external_lex_state = 2}, - [2361] = {.lex_state = 4, .external_lex_state = 2}, - [2362] = {.lex_state = 13, .external_lex_state = 2}, - [2363] = {.lex_state = 8, .external_lex_state = 2}, - [2364] = {.lex_state = 13, .external_lex_state = 2}, - [2365] = {.lex_state = 13, .external_lex_state = 2}, - [2366] = {.lex_state = 4, .external_lex_state = 2}, - [2367] = {.lex_state = 4, .external_lex_state = 2}, - [2368] = {.lex_state = 4, .external_lex_state = 2}, - [2369] = {.lex_state = 13, .external_lex_state = 2}, - [2370] = {.lex_state = 4, .external_lex_state = 2}, - [2371] = {.lex_state = 8, .external_lex_state = 2}, - [2372] = {.lex_state = 12, .external_lex_state = 2}, - [2373] = {.lex_state = 13, .external_lex_state = 2}, - [2374] = {.lex_state = 4, .external_lex_state = 2}, - [2375] = {.lex_state = 13, .external_lex_state = 2}, - [2376] = {.lex_state = 4, .external_lex_state = 2}, - [2377] = {.lex_state = 4, .external_lex_state = 2}, - [2378] = {.lex_state = 4, .external_lex_state = 2}, - [2379] = {.lex_state = 4, .external_lex_state = 2}, - [2380] = {.lex_state = 4, .external_lex_state = 2}, - [2381] = {.lex_state = 4, .external_lex_state = 2}, - [2382] = {.lex_state = 13, .external_lex_state = 2}, - [2383] = {.lex_state = 12, .external_lex_state = 2}, - [2384] = {.lex_state = 13, .external_lex_state = 2}, - [2385] = {.lex_state = 4, .external_lex_state = 2}, - [2386] = {.lex_state = 12, .external_lex_state = 2}, - [2387] = {.lex_state = 4, .external_lex_state = 2}, - [2388] = {.lex_state = 13, .external_lex_state = 2}, - [2389] = {.lex_state = 13, .external_lex_state = 2}, - [2390] = {.lex_state = 13, .external_lex_state = 2}, - [2391] = {.lex_state = 13, .external_lex_state = 2}, - [2392] = {.lex_state = 12, .external_lex_state = 2}, - [2393] = {.lex_state = 12, .external_lex_state = 2}, - [2394] = {.lex_state = 12, .external_lex_state = 2}, - [2395] = {.lex_state = 12, .external_lex_state = 2}, - [2396] = {.lex_state = 4, .external_lex_state = 2}, - [2397] = {.lex_state = 13, .external_lex_state = 2}, - [2398] = {.lex_state = 4, .external_lex_state = 2}, - [2399] = {.lex_state = 8, .external_lex_state = 2}, - [2400] = {.lex_state = 8, .external_lex_state = 2}, - [2401] = {.lex_state = 13, .external_lex_state = 2}, - [2402] = {.lex_state = 4, .external_lex_state = 2}, - [2403] = {.lex_state = 12, .external_lex_state = 2}, - [2404] = {.lex_state = 12, .external_lex_state = 2}, - [2405] = {.lex_state = 13, .external_lex_state = 2}, - [2406] = {.lex_state = 4, .external_lex_state = 2}, - [2407] = {.lex_state = 4, .external_lex_state = 2}, - [2408] = {.lex_state = 12, .external_lex_state = 2}, - [2409] = {.lex_state = 12, .external_lex_state = 2}, - [2410] = {.lex_state = 13, .external_lex_state = 2}, - [2411] = {.lex_state = 13, .external_lex_state = 2}, - [2412] = {.lex_state = 13, .external_lex_state = 2}, - [2413] = {.lex_state = 8, .external_lex_state = 2}, - [2414] = {.lex_state = 13, .external_lex_state = 2}, - [2415] = {.lex_state = 4, .external_lex_state = 2}, - [2416] = {.lex_state = 13, .external_lex_state = 2}, - [2417] = {.lex_state = 12, .external_lex_state = 2}, - [2418] = {.lex_state = 12, .external_lex_state = 2}, - [2419] = {.lex_state = 12, .external_lex_state = 2}, - [2420] = {.lex_state = 4, .external_lex_state = 2}, - [2421] = {.lex_state = 4, .external_lex_state = 2}, - [2422] = {.lex_state = 13, .external_lex_state = 2}, - [2423] = {.lex_state = 4, .external_lex_state = 2}, - [2424] = {.lex_state = 12, .external_lex_state = 2}, - [2425] = {.lex_state = 13, .external_lex_state = 2}, - [2426] = {.lex_state = 12, .external_lex_state = 2}, - [2427] = {.lex_state = 13, .external_lex_state = 2}, - [2428] = {.lex_state = 13, .external_lex_state = 2}, - [2429] = {.lex_state = 13, .external_lex_state = 2}, - [2430] = {.lex_state = 11, .external_lex_state = 2}, - [2431] = {.lex_state = 13, .external_lex_state = 2}, - [2432] = {.lex_state = 11, .external_lex_state = 2}, - [2433] = {.lex_state = 11, .external_lex_state = 2}, - [2434] = {.lex_state = 11, .external_lex_state = 2}, - [2435] = {.lex_state = 13, .external_lex_state = 2}, - [2436] = {.lex_state = 12, .external_lex_state = 2}, - [2437] = {.lex_state = 11, .external_lex_state = 2}, - [2438] = {.lex_state = 12, .external_lex_state = 2}, - [2439] = {.lex_state = 13, .external_lex_state = 2}, - [2440] = {.lex_state = 12, .external_lex_state = 2}, - [2441] = {.lex_state = 12, .external_lex_state = 2}, - [2442] = {.lex_state = 11, .external_lex_state = 2}, - [2443] = {.lex_state = 4, .external_lex_state = 2}, - [2444] = {.lex_state = 13, .external_lex_state = 2}, - [2445] = {.lex_state = 4, .external_lex_state = 2}, - [2446] = {.lex_state = 12, .external_lex_state = 2}, - [2447] = {.lex_state = 12, .external_lex_state = 2}, - [2448] = {.lex_state = 13, .external_lex_state = 2}, - [2449] = {.lex_state = 13, .external_lex_state = 2}, - [2450] = {.lex_state = 4, .external_lex_state = 2}, - [2451] = {.lex_state = 13, .external_lex_state = 2}, - [2452] = {.lex_state = 12, .external_lex_state = 2}, - [2453] = {.lex_state = 12, .external_lex_state = 2}, - [2454] = {.lex_state = 12, .external_lex_state = 2}, - [2455] = {.lex_state = 12, .external_lex_state = 2}, - [2456] = {.lex_state = 12, .external_lex_state = 2}, - [2457] = {.lex_state = 12, .external_lex_state = 2}, - [2458] = {.lex_state = 13, .external_lex_state = 2}, - [2459] = {.lex_state = 4, .external_lex_state = 2}, - [2460] = {.lex_state = 13, .external_lex_state = 2}, - [2461] = {.lex_state = 12, .external_lex_state = 2}, - [2462] = {.lex_state = 8, .external_lex_state = 2}, - [2463] = {.lex_state = 12, .external_lex_state = 2}, - [2464] = {.lex_state = 13, .external_lex_state = 2}, - [2465] = {.lex_state = 12, .external_lex_state = 2}, - [2466] = {.lex_state = 8, .external_lex_state = 2}, - [2467] = {.lex_state = 12, .external_lex_state = 2}, - [2468] = {.lex_state = 12, .external_lex_state = 2}, - [2469] = {.lex_state = 4, .external_lex_state = 2}, - [2470] = {.lex_state = 4, .external_lex_state = 2}, - [2471] = {.lex_state = 4, .external_lex_state = 2}, - [2472] = {.lex_state = 11, .external_lex_state = 2}, - [2473] = {.lex_state = 13, .external_lex_state = 2}, - [2474] = {.lex_state = 8, .external_lex_state = 2}, - [2475] = {.lex_state = 4, .external_lex_state = 2}, - [2476] = {.lex_state = 4, .external_lex_state = 2}, - [2477] = {.lex_state = 13, .external_lex_state = 2}, - [2478] = {.lex_state = 11, .external_lex_state = 2}, - [2479] = {.lex_state = 4, .external_lex_state = 2}, - [2480] = {.lex_state = 4, .external_lex_state = 2}, - [2481] = {.lex_state = 11, .external_lex_state = 2}, - [2482] = {.lex_state = 13, .external_lex_state = 2}, - [2483] = {.lex_state = 12, .external_lex_state = 2}, - [2484] = {.lex_state = 4, .external_lex_state = 2}, - [2485] = {.lex_state = 13, .external_lex_state = 2}, - [2486] = {.lex_state = 13, .external_lex_state = 2}, - [2487] = {.lex_state = 4, .external_lex_state = 2}, - [2488] = {.lex_state = 4, .external_lex_state = 2}, - [2489] = {.lex_state = 12, .external_lex_state = 2}, - [2490] = {.lex_state = 12, .external_lex_state = 2}, - [2491] = {.lex_state = 13, .external_lex_state = 2}, - [2492] = {.lex_state = 4, .external_lex_state = 2}, - [2493] = {.lex_state = 13, .external_lex_state = 2}, - [2494] = {.lex_state = 13, .external_lex_state = 2}, - [2495] = {.lex_state = 8, .external_lex_state = 2}, - [2496] = {.lex_state = 4, .external_lex_state = 2}, - [2497] = {.lex_state = 13, .external_lex_state = 2}, - [2498] = {.lex_state = 13, .external_lex_state = 2}, - [2499] = {.lex_state = 4, .external_lex_state = 2}, - [2500] = {.lex_state = 12, .external_lex_state = 2}, - [2501] = {.lex_state = 12, .external_lex_state = 2}, - [2502] = {.lex_state = 12, .external_lex_state = 2}, - [2503] = {.lex_state = 4, .external_lex_state = 2}, - [2504] = {.lex_state = 12, .external_lex_state = 2}, - [2505] = {.lex_state = 8, .external_lex_state = 2}, - [2506] = {.lex_state = 13, .external_lex_state = 2}, - [2507] = {.lex_state = 12, .external_lex_state = 2}, - [2508] = {.lex_state = 11, .external_lex_state = 2}, - [2509] = {.lex_state = 13, .external_lex_state = 2}, - [2510] = {.lex_state = 4, .external_lex_state = 2}, - [2511] = {.lex_state = 13, .external_lex_state = 2}, - [2512] = {.lex_state = 4, .external_lex_state = 2}, - [2513] = {.lex_state = 4, .external_lex_state = 2}, - [2514] = {.lex_state = 4, .external_lex_state = 2}, - [2515] = {.lex_state = 13, .external_lex_state = 2}, - [2516] = {.lex_state = 13, .external_lex_state = 2}, - [2517] = {.lex_state = 13, .external_lex_state = 2}, - [2518] = {.lex_state = 4, .external_lex_state = 2}, - [2519] = {.lex_state = 4, .external_lex_state = 2}, - [2520] = {.lex_state = 12, .external_lex_state = 2}, - [2521] = {.lex_state = 13, .external_lex_state = 2}, - [2522] = {.lex_state = 4, .external_lex_state = 2}, - [2523] = {.lex_state = 11, .external_lex_state = 2}, - [2524] = {.lex_state = 4, .external_lex_state = 2}, - [2525] = {.lex_state = 11, .external_lex_state = 2}, - [2526] = {.lex_state = 11, .external_lex_state = 2}, - [2527] = {.lex_state = 11, .external_lex_state = 2}, - [2528] = {.lex_state = 11, .external_lex_state = 2}, - [2529] = {.lex_state = 4, .external_lex_state = 2}, - [2530] = {.lex_state = 4, .external_lex_state = 2}, - [2531] = {.lex_state = 11, .external_lex_state = 2}, - [2532] = {.lex_state = 11, .external_lex_state = 2}, - [2533] = {.lex_state = 11, .external_lex_state = 2}, - [2534] = {.lex_state = 4, .external_lex_state = 2}, - [2535] = {.lex_state = 11, .external_lex_state = 2}, - [2536] = {.lex_state = 4, .external_lex_state = 2}, - [2537] = {.lex_state = 4, .external_lex_state = 2}, - [2538] = {.lex_state = 11, .external_lex_state = 2}, - [2539] = {.lex_state = 11, .external_lex_state = 2}, - [2540] = {.lex_state = 4, .external_lex_state = 2}, - [2541] = {.lex_state = 11, .external_lex_state = 2}, - [2542] = {.lex_state = 4, .external_lex_state = 2}, - [2543] = {.lex_state = 4, .external_lex_state = 2}, - [2544] = {.lex_state = 11, .external_lex_state = 2}, - [2545] = {.lex_state = 11, .external_lex_state = 2}, - [2546] = {.lex_state = 11, .external_lex_state = 2}, - [2547] = {.lex_state = 11, .external_lex_state = 2}, - [2548] = {.lex_state = 11, .external_lex_state = 2}, - [2549] = {.lex_state = 11, .external_lex_state = 2}, - [2550] = {.lex_state = 11, .external_lex_state = 2}, - [2551] = {.lex_state = 4, .external_lex_state = 2}, - [2552] = {.lex_state = 11, .external_lex_state = 2}, - [2553] = {.lex_state = 11, .external_lex_state = 2}, - [2554] = {.lex_state = 11, .external_lex_state = 2}, - [2555] = {.lex_state = 11, .external_lex_state = 2}, - [2556] = {.lex_state = 11, .external_lex_state = 2}, - [2557] = {.lex_state = 11, .external_lex_state = 2}, - [2558] = {.lex_state = 4, .external_lex_state = 2}, - [2559] = {.lex_state = 11, .external_lex_state = 2}, - [2560] = {.lex_state = 11, .external_lex_state = 2}, - [2561] = {.lex_state = 4, .external_lex_state = 2}, - [2562] = {.lex_state = 4, .external_lex_state = 2}, - [2563] = {.lex_state = 11, .external_lex_state = 2}, - [2564] = {.lex_state = 11, .external_lex_state = 2}, - [2565] = {.lex_state = 11, .external_lex_state = 2}, - [2566] = {.lex_state = 4, .external_lex_state = 2}, - [2567] = {.lex_state = 11, .external_lex_state = 2}, - [2568] = {.lex_state = 4, .external_lex_state = 2}, - [2569] = {.lex_state = 11, .external_lex_state = 2}, - [2570] = {.lex_state = 11, .external_lex_state = 2}, - [2571] = {.lex_state = 4, .external_lex_state = 2}, - [2572] = {.lex_state = 11, .external_lex_state = 2}, - [2573] = {.lex_state = 4, .external_lex_state = 2}, - [2574] = {.lex_state = 4, .external_lex_state = 2}, - [2575] = {.lex_state = 11, .external_lex_state = 2}, - [2576] = {.lex_state = 4, .external_lex_state = 2}, - [2577] = {.lex_state = 11, .external_lex_state = 2}, - [2578] = {.lex_state = 11, .external_lex_state = 2}, - [2579] = {.lex_state = 4, .external_lex_state = 2}, - [2580] = {.lex_state = 11, .external_lex_state = 2}, - [2581] = {.lex_state = 4, .external_lex_state = 2}, - [2582] = {.lex_state = 11, .external_lex_state = 2}, - [2583] = {.lex_state = 11, .external_lex_state = 2}, - [2584] = {.lex_state = 11, .external_lex_state = 2}, - [2585] = {.lex_state = 4, .external_lex_state = 2}, - [2586] = {.lex_state = 11, .external_lex_state = 2}, - [2587] = {.lex_state = 11, .external_lex_state = 2}, - [2588] = {.lex_state = 4, .external_lex_state = 2}, - [2589] = {.lex_state = 4, .external_lex_state = 2}, - [2590] = {.lex_state = 11, .external_lex_state = 2}, - [2591] = {.lex_state = 11, .external_lex_state = 2}, - [2592] = {.lex_state = 11, .external_lex_state = 2}, - [2593] = {.lex_state = 11, .external_lex_state = 2}, - [2594] = {.lex_state = 11, .external_lex_state = 2}, - [2595] = {.lex_state = 11, .external_lex_state = 2}, - [2596] = {.lex_state = 4, .external_lex_state = 2}, - [2597] = {.lex_state = 4, .external_lex_state = 2}, - [2598] = {.lex_state = 4, .external_lex_state = 2}, - [2599] = {.lex_state = 11, .external_lex_state = 2}, - [2600] = {.lex_state = 11, .external_lex_state = 2}, - [2601] = {.lex_state = 11, .external_lex_state = 2}, - [2602] = {.lex_state = 11, .external_lex_state = 2}, - [2603] = {.lex_state = 11, .external_lex_state = 2}, - [2604] = {.lex_state = 4, .external_lex_state = 2}, - [2605] = {.lex_state = 11, .external_lex_state = 2}, - [2606] = {.lex_state = 11, .external_lex_state = 2}, - [2607] = {.lex_state = 11, .external_lex_state = 2}, - [2608] = {.lex_state = 11, .external_lex_state = 2}, - [2609] = {.lex_state = 11, .external_lex_state = 2}, - [2610] = {.lex_state = 11, .external_lex_state = 2}, - [2611] = {.lex_state = 11, .external_lex_state = 2}, - [2612] = {.lex_state = 11, .external_lex_state = 2}, - [2613] = {.lex_state = 4, .external_lex_state = 2}, - [2614] = {.lex_state = 4, .external_lex_state = 2}, - [2615] = {.lex_state = 11, .external_lex_state = 2}, - [2616] = {.lex_state = 11, .external_lex_state = 2}, - [2617] = {.lex_state = 4, .external_lex_state = 2}, - [2618] = {.lex_state = 11, .external_lex_state = 2}, - [2619] = {.lex_state = 4, .external_lex_state = 2}, - [2620] = {.lex_state = 11, .external_lex_state = 2}, - [2621] = {.lex_state = 4, .external_lex_state = 2}, - [2622] = {.lex_state = 11, .external_lex_state = 2}, - [2623] = {.lex_state = 11, .external_lex_state = 2}, - [2624] = {.lex_state = 11, .external_lex_state = 2}, - [2625] = {.lex_state = 4, .external_lex_state = 2}, - [2626] = {.lex_state = 4, .external_lex_state = 2}, - [2627] = {.lex_state = 11, .external_lex_state = 2}, - [2628] = {.lex_state = 11, .external_lex_state = 2}, - [2629] = {.lex_state = 4, .external_lex_state = 2}, - [2630] = {.lex_state = 11, .external_lex_state = 2}, - [2631] = {.lex_state = 4, .external_lex_state = 2}, - [2632] = {.lex_state = 4, .external_lex_state = 2}, - [2633] = {.lex_state = 4, .external_lex_state = 2}, - [2634] = {.lex_state = 11, .external_lex_state = 2}, - [2635] = {.lex_state = 11, .external_lex_state = 2}, - [2636] = {.lex_state = 4, .external_lex_state = 2}, - [2637] = {.lex_state = 4, .external_lex_state = 2}, - [2638] = {.lex_state = 13, .external_lex_state = 2}, - [2639] = {.lex_state = 13, .external_lex_state = 2}, - [2640] = {.lex_state = 4, .external_lex_state = 2}, - [2641] = {.lex_state = 4, .external_lex_state = 2}, - [2642] = {.lex_state = 4, .external_lex_state = 2}, - [2643] = {.lex_state = 12, .external_lex_state = 2}, - [2644] = {.lex_state = 11, .external_lex_state = 2}, - [2645] = {.lex_state = 12, .external_lex_state = 2}, - [2646] = {.lex_state = 11, .external_lex_state = 2}, - [2647] = {.lex_state = 7, .external_lex_state = 2}, - [2648] = {.lex_state = 7, .external_lex_state = 2}, - [2649] = {.lex_state = 7, .external_lex_state = 2}, - [2650] = {.lex_state = 116, .external_lex_state = 3}, - [2651] = {.lex_state = 116, .external_lex_state = 3}, - [2652] = {.lex_state = 4, .external_lex_state = 2}, - [2653] = {.lex_state = 116, .external_lex_state = 3}, - [2654] = {.lex_state = 11, .external_lex_state = 2}, - [2655] = {.lex_state = 116, .external_lex_state = 3}, - [2656] = {.lex_state = 116, .external_lex_state = 3}, - [2657] = {.lex_state = 116, .external_lex_state = 3}, - [2658] = {.lex_state = 102, .external_lex_state = 2}, - [2659] = {.lex_state = 13, .external_lex_state = 2}, - [2660] = {.lex_state = 116, .external_lex_state = 3}, - [2661] = {.lex_state = 116, .external_lex_state = 3}, - [2662] = {.lex_state = 4, .external_lex_state = 2}, - [2663] = {.lex_state = 4, .external_lex_state = 2}, - [2664] = {.lex_state = 22, .external_lex_state = 2}, - [2665] = {.lex_state = 7, .external_lex_state = 2}, - [2666] = {.lex_state = 4, .external_lex_state = 2}, - [2667] = {.lex_state = 4, .external_lex_state = 2}, - [2668] = {.lex_state = 116, .external_lex_state = 3}, - [2669] = {.lex_state = 4, .external_lex_state = 2}, - [2670] = {.lex_state = 4, .external_lex_state = 2}, - [2671] = {.lex_state = 12, .external_lex_state = 2}, - [2672] = {.lex_state = 13, .external_lex_state = 2}, - [2673] = {.lex_state = 4, .external_lex_state = 2}, - [2674] = {.lex_state = 116, .external_lex_state = 3}, - [2675] = {.lex_state = 11, .external_lex_state = 2}, - [2676] = {.lex_state = 4, .external_lex_state = 2}, - [2677] = {.lex_state = 116, .external_lex_state = 3}, - [2678] = {.lex_state = 12, .external_lex_state = 2}, - [2679] = {.lex_state = 4, .external_lex_state = 2}, - [2680] = {.lex_state = 116, .external_lex_state = 3}, - [2681] = {.lex_state = 116, .external_lex_state = 3}, - [2682] = {.lex_state = 4, .external_lex_state = 2}, - [2683] = {.lex_state = 13, .external_lex_state = 2}, - [2684] = {.lex_state = 116, .external_lex_state = 3}, - [2685] = {.lex_state = 4, .external_lex_state = 2}, - [2686] = {.lex_state = 4, .external_lex_state = 2}, - [2687] = {.lex_state = 116, .external_lex_state = 3}, - [2688] = {.lex_state = 22, .external_lex_state = 2}, - [2689] = {.lex_state = 4, .external_lex_state = 2}, - [2690] = {.lex_state = 4, .external_lex_state = 2}, - [2691] = {.lex_state = 4, .external_lex_state = 2}, - [2692] = {.lex_state = 4, .external_lex_state = 2}, - [2693] = {.lex_state = 116, .external_lex_state = 3}, - [2694] = {.lex_state = 4, .external_lex_state = 2}, - [2695] = {.lex_state = 4, .external_lex_state = 2}, - [2696] = {.lex_state = 4, .external_lex_state = 2}, - [2697] = {.lex_state = 4, .external_lex_state = 2}, - [2698] = {.lex_state = 116, .external_lex_state = 3}, - [2699] = {.lex_state = 118, .external_lex_state = 3}, - [2700] = {.lex_state = 116, .external_lex_state = 3}, - [2701] = {.lex_state = 116, .external_lex_state = 3}, - [2702] = {.lex_state = 116, .external_lex_state = 3}, - [2703] = {.lex_state = 116, .external_lex_state = 3}, - [2704] = {.lex_state = 116, .external_lex_state = 3}, - [2705] = {.lex_state = 118, .external_lex_state = 3}, - [2706] = {.lex_state = 116, .external_lex_state = 3}, - [2707] = {.lex_state = 116, .external_lex_state = 3}, - [2708] = {.lex_state = 116, .external_lex_state = 3}, - [2709] = {.lex_state = 11, .external_lex_state = 2}, - [2710] = {.lex_state = 116, .external_lex_state = 3}, - [2711] = {.lex_state = 118, .external_lex_state = 3}, - [2712] = {.lex_state = 116, .external_lex_state = 3}, - [2713] = {.lex_state = 116, .external_lex_state = 3}, - [2714] = {.lex_state = 116, .external_lex_state = 3}, - [2715] = {.lex_state = 116, .external_lex_state = 3}, - [2716] = {.lex_state = 116, .external_lex_state = 3}, - [2717] = {.lex_state = 116, .external_lex_state = 3}, - [2718] = {.lex_state = 116, .external_lex_state = 3}, - [2719] = {.lex_state = 116, .external_lex_state = 3}, - [2720] = {.lex_state = 116, .external_lex_state = 3}, - [2721] = {.lex_state = 11, .external_lex_state = 2}, - [2722] = {.lex_state = 116, .external_lex_state = 3}, - [2723] = {.lex_state = 116, .external_lex_state = 3}, - [2724] = {.lex_state = 116, .external_lex_state = 3}, - [2725] = {.lex_state = 11, .external_lex_state = 2}, - [2726] = {.lex_state = 118, .external_lex_state = 3}, - [2727] = {.lex_state = 116, .external_lex_state = 3}, - [2728] = {.lex_state = 116, .external_lex_state = 3}, - [2729] = {.lex_state = 116, .external_lex_state = 3}, - [2730] = {.lex_state = 116, .external_lex_state = 3}, - [2731] = {.lex_state = 116, .external_lex_state = 3}, - [2732] = {.lex_state = 116, .external_lex_state = 3}, - [2733] = {.lex_state = 116, .external_lex_state = 3}, - [2734] = {.lex_state = 116, .external_lex_state = 3}, - [2735] = {.lex_state = 102, .external_lex_state = 2}, - [2736] = {.lex_state = 116, .external_lex_state = 3}, - [2737] = {.lex_state = 24, .external_lex_state = 3}, - [2738] = {.lex_state = 116, .external_lex_state = 3}, - [2739] = {.lex_state = 24, .external_lex_state = 3}, - [2740] = {.lex_state = 24, .external_lex_state = 3}, - [2741] = {.lex_state = 24, .external_lex_state = 3}, - [2742] = {.lex_state = 116, .external_lex_state = 3}, - [2743] = {.lex_state = 116, .external_lex_state = 3}, - [2744] = {.lex_state = 116, .external_lex_state = 3}, - [2745] = {.lex_state = 116, .external_lex_state = 3}, - [2746] = {.lex_state = 22, .external_lex_state = 2}, - [2747] = {.lex_state = 24, .external_lex_state = 3}, - [2748] = {.lex_state = 24, .external_lex_state = 3}, - [2749] = {.lex_state = 24, .external_lex_state = 3}, - [2750] = {.lex_state = 24, .external_lex_state = 3}, - [2751] = {.lex_state = 24, .external_lex_state = 3}, - [2752] = {.lex_state = 24, .external_lex_state = 3}, - [2753] = {.lex_state = 116, .external_lex_state = 3}, - [2754] = {.lex_state = 116, .external_lex_state = 3}, - [2755] = {.lex_state = 116, .external_lex_state = 3}, - [2756] = {.lex_state = 116, .external_lex_state = 3}, - [2757] = {.lex_state = 116, .external_lex_state = 3}, - [2758] = {.lex_state = 116, .external_lex_state = 3}, - [2759] = {.lex_state = 116, .external_lex_state = 3}, - [2760] = {.lex_state = 116, .external_lex_state = 3}, - [2761] = {.lex_state = 116, .external_lex_state = 3}, - [2762] = {.lex_state = 116, .external_lex_state = 3}, - [2763] = {.lex_state = 116, .external_lex_state = 3}, - [2764] = {.lex_state = 24, .external_lex_state = 3}, - [2765] = {.lex_state = 24, .external_lex_state = 3}, - [2766] = {.lex_state = 24, .external_lex_state = 3}, - [2767] = {.lex_state = 24, .external_lex_state = 3}, - [2768] = {.lex_state = 24, .external_lex_state = 3}, - [2769] = {.lex_state = 24, .external_lex_state = 3}, - [2770] = {.lex_state = 24, .external_lex_state = 3}, - [2771] = {.lex_state = 24, .external_lex_state = 3}, - [2772] = {.lex_state = 24, .external_lex_state = 3}, - [2773] = {.lex_state = 24, .external_lex_state = 3}, - [2774] = {.lex_state = 24, .external_lex_state = 3}, - [2775] = {.lex_state = 24, .external_lex_state = 3}, - [2776] = {.lex_state = 24, .external_lex_state = 3}, - [2777] = {.lex_state = 24, .external_lex_state = 3}, - [2778] = {.lex_state = 24, .external_lex_state = 3}, - [2779] = {.lex_state = 24, .external_lex_state = 3}, - [2780] = {.lex_state = 24, .external_lex_state = 3}, - [2781] = {.lex_state = 24, .external_lex_state = 3}, - [2782] = {.lex_state = 24, .external_lex_state = 3}, - [2783] = {.lex_state = 24, .external_lex_state = 3}, - [2784] = {.lex_state = 120, .external_lex_state = 2}, - [2785] = {.lex_state = 24, .external_lex_state = 3}, - [2786] = {.lex_state = 24, .external_lex_state = 3}, - [2787] = {.lex_state = 24, .external_lex_state = 3}, - [2788] = {.lex_state = 24, .external_lex_state = 3}, - [2789] = {.lex_state = 120, .external_lex_state = 2}, - [2790] = {.lex_state = 116, .external_lex_state = 3}, - [2791] = {.lex_state = 24, .external_lex_state = 3}, - [2792] = {.lex_state = 116, .external_lex_state = 3}, - [2793] = {.lex_state = 116, .external_lex_state = 3}, - [2794] = {.lex_state = 24, .external_lex_state = 3}, - [2795] = {.lex_state = 116, .external_lex_state = 3}, - [2796] = {.lex_state = 24, .external_lex_state = 3}, - [2797] = {.lex_state = 24, .external_lex_state = 3}, - [2798] = {.lex_state = 24, .external_lex_state = 3}, - [2799] = {.lex_state = 24, .external_lex_state = 3}, - [2800] = {.lex_state = 24, .external_lex_state = 3}, - [2801] = {.lex_state = 24, .external_lex_state = 3}, - [2802] = {.lex_state = 24, .external_lex_state = 3}, - [2803] = {.lex_state = 24, .external_lex_state = 3}, - [2804] = {.lex_state = 24, .external_lex_state = 3}, - [2805] = {.lex_state = 24, .external_lex_state = 3}, - [2806] = {.lex_state = 24, .external_lex_state = 3}, - [2807] = {.lex_state = 24, .external_lex_state = 3}, - [2808] = {.lex_state = 24, .external_lex_state = 3}, - [2809] = {.lex_state = 24, .external_lex_state = 3}, - [2810] = {.lex_state = 24, .external_lex_state = 3}, - [2811] = {.lex_state = 116, .external_lex_state = 3}, - [2812] = {.lex_state = 24, .external_lex_state = 3}, - [2813] = {.lex_state = 24, .external_lex_state = 3}, - [2814] = {.lex_state = 24, .external_lex_state = 3}, - [2815] = {.lex_state = 24, .external_lex_state = 3}, - [2816] = {.lex_state = 24, .external_lex_state = 3}, - [2817] = {.lex_state = 24, .external_lex_state = 3}, - [2818] = {.lex_state = 24, .external_lex_state = 3}, - [2819] = {.lex_state = 24, .external_lex_state = 3}, - [2820] = {.lex_state = 24, .external_lex_state = 3}, - [2821] = {.lex_state = 24, .external_lex_state = 3}, - [2822] = {.lex_state = 24, .external_lex_state = 3}, - [2823] = {.lex_state = 116, .external_lex_state = 3}, - [2824] = {.lex_state = 24, .external_lex_state = 3}, - [2825] = {.lex_state = 24, .external_lex_state = 3}, - [2826] = {.lex_state = 24, .external_lex_state = 3}, - [2827] = {.lex_state = 24, .external_lex_state = 3}, - [2828] = {.lex_state = 24, .external_lex_state = 3}, - [2829] = {.lex_state = 24, .external_lex_state = 3}, - [2830] = {.lex_state = 24, .external_lex_state = 3}, - [2831] = {.lex_state = 24, .external_lex_state = 3}, - [2832] = {.lex_state = 24, .external_lex_state = 3}, - [2833] = {.lex_state = 24, .external_lex_state = 3}, - [2834] = {.lex_state = 24, .external_lex_state = 3}, - [2835] = {.lex_state = 24, .external_lex_state = 3}, - [2836] = {.lex_state = 24, .external_lex_state = 3}, - [2837] = {.lex_state = 24, .external_lex_state = 3}, - [2838] = {.lex_state = 24, .external_lex_state = 3}, - [2839] = {.lex_state = 24, .external_lex_state = 3}, - [2840] = {.lex_state = 24, .external_lex_state = 3}, - [2841] = {.lex_state = 24, .external_lex_state = 3}, - [2842] = {.lex_state = 24, .external_lex_state = 3}, - [2843] = {.lex_state = 24, .external_lex_state = 3}, - [2844] = {.lex_state = 24, .external_lex_state = 3}, - [2845] = {.lex_state = 24, .external_lex_state = 3}, - [2846] = {.lex_state = 24, .external_lex_state = 3}, - [2847] = {.lex_state = 118, .external_lex_state = 3}, - [2848] = {.lex_state = 25, .external_lex_state = 3}, - [2849] = {.lex_state = 118, .external_lex_state = 3}, - [2850] = {.lex_state = 121, .external_lex_state = 2}, - [2851] = {.lex_state = 121, .external_lex_state = 2}, - [2852] = {.lex_state = 121, .external_lex_state = 2}, - [2853] = {.lex_state = 118, .external_lex_state = 3}, - [2854] = {.lex_state = 117, .external_lex_state = 3}, - [2855] = {.lex_state = 117, .external_lex_state = 3}, - [2856] = {.lex_state = 117, .external_lex_state = 3}, - [2857] = {.lex_state = 117, .external_lex_state = 3}, - [2858] = {.lex_state = 116, .external_lex_state = 3}, - [2859] = {.lex_state = 25, .external_lex_state = 3}, - [2860] = {.lex_state = 25, .external_lex_state = 3}, - [2861] = {.lex_state = 25, .external_lex_state = 3}, - [2862] = {.lex_state = 25, .external_lex_state = 3}, - [2863] = {.lex_state = 25, .external_lex_state = 3}, - [2864] = {.lex_state = 25, .external_lex_state = 3}, - [2865] = {.lex_state = 25, .external_lex_state = 3}, - [2866] = {.lex_state = 25, .external_lex_state = 3}, - [2867] = {.lex_state = 25, .external_lex_state = 3}, - [2868] = {.lex_state = 25, .external_lex_state = 3}, - [2869] = {.lex_state = 118, .external_lex_state = 3}, - [2870] = {.lex_state = 25, .external_lex_state = 3}, - [2871] = {.lex_state = 118, .external_lex_state = 3}, - [2872] = {.lex_state = 25, .external_lex_state = 3}, - [2873] = {.lex_state = 118, .external_lex_state = 3}, - [2874] = {.lex_state = 25, .external_lex_state = 3}, - [2875] = {.lex_state = 118, .external_lex_state = 3}, - [2876] = {.lex_state = 25, .external_lex_state = 3}, - [2877] = {.lex_state = 25, .external_lex_state = 3}, - [2878] = {.lex_state = 118, .external_lex_state = 3}, - [2879] = {.lex_state = 25, .external_lex_state = 3}, - [2880] = {.lex_state = 25, .external_lex_state = 3}, - [2881] = {.lex_state = 25, .external_lex_state = 3}, - [2882] = {.lex_state = 118, .external_lex_state = 3}, - [2883] = {.lex_state = 117, .external_lex_state = 3}, - [2884] = {.lex_state = 25, .external_lex_state = 3}, - [2885] = {.lex_state = 25, .external_lex_state = 3}, - [2886] = {.lex_state = 118, .external_lex_state = 3}, - [2887] = {.lex_state = 118, .external_lex_state = 3}, - [2888] = {.lex_state = 25, .external_lex_state = 3}, - [2889] = {.lex_state = 25, .external_lex_state = 3}, - [2890] = {.lex_state = 118, .external_lex_state = 3}, - [2891] = {.lex_state = 118, .external_lex_state = 3}, - [2892] = {.lex_state = 118, .external_lex_state = 3}, - [2893] = {.lex_state = 118, .external_lex_state = 3}, - [2894] = {.lex_state = 118, .external_lex_state = 3}, - [2895] = {.lex_state = 118, .external_lex_state = 3}, - [2896] = {.lex_state = 118, .external_lex_state = 3}, - [2897] = {.lex_state = 118, .external_lex_state = 3}, - [2898] = {.lex_state = 118, .external_lex_state = 3}, - [2899] = {.lex_state = 118, .external_lex_state = 3}, - [2900] = {.lex_state = 118, .external_lex_state = 3}, - [2901] = {.lex_state = 118, .external_lex_state = 3}, - [2902] = {.lex_state = 118, .external_lex_state = 3}, - [2903] = {.lex_state = 118, .external_lex_state = 3}, - [2904] = {.lex_state = 118, .external_lex_state = 3}, - [2905] = {.lex_state = 118, .external_lex_state = 3}, - [2906] = {.lex_state = 25, .external_lex_state = 3}, - [2907] = {.lex_state = 25, .external_lex_state = 3}, - [2908] = {.lex_state = 118, .external_lex_state = 3}, - [2909] = {.lex_state = 25, .external_lex_state = 3}, - [2910] = {.lex_state = 25, .external_lex_state = 3}, - [2911] = {.lex_state = 118, .external_lex_state = 3}, - [2912] = {.lex_state = 118, .external_lex_state = 3}, - [2913] = {.lex_state = 25, .external_lex_state = 3}, - [2914] = {.lex_state = 118, .external_lex_state = 3}, - [2915] = {.lex_state = 118, .external_lex_state = 3}, - [2916] = {.lex_state = 118, .external_lex_state = 3}, - [2917] = {.lex_state = 25, .external_lex_state = 3}, - [2918] = {.lex_state = 118, .external_lex_state = 3}, - [2919] = {.lex_state = 117, .external_lex_state = 3}, - [2920] = {.lex_state = 118, .external_lex_state = 3}, - [2921] = {.lex_state = 118, .external_lex_state = 3}, - [2922] = {.lex_state = 118, .external_lex_state = 3}, - [2923] = {.lex_state = 118, .external_lex_state = 3}, - [2924] = {.lex_state = 118, .external_lex_state = 3}, - [2925] = {.lex_state = 118, .external_lex_state = 3}, - [2926] = {.lex_state = 25, .external_lex_state = 3}, - [2927] = {.lex_state = 118, .external_lex_state = 3}, - [2928] = {.lex_state = 117, .external_lex_state = 3}, - [2929] = {.lex_state = 118, .external_lex_state = 3}, - [2930] = {.lex_state = 118, .external_lex_state = 3}, - [2931] = {.lex_state = 118, .external_lex_state = 3}, - [2932] = {.lex_state = 118, .external_lex_state = 3}, - [2933] = {.lex_state = 118, .external_lex_state = 3}, - [2934] = {.lex_state = 118, .external_lex_state = 3}, - [2935] = {.lex_state = 118, .external_lex_state = 3}, - [2936] = {.lex_state = 121, .external_lex_state = 2}, - [2937] = {.lex_state = 121, .external_lex_state = 2}, - [2938] = {.lex_state = 118, .external_lex_state = 3}, - [2939] = {.lex_state = 121, .external_lex_state = 2}, - [2940] = {.lex_state = 25, .external_lex_state = 3}, - [2941] = {.lex_state = 118, .external_lex_state = 3}, - [2942] = {.lex_state = 118, .external_lex_state = 3}, - [2943] = {.lex_state = 118, .external_lex_state = 3}, - [2944] = {.lex_state = 121, .external_lex_state = 2}, - [2945] = {.lex_state = 25, .external_lex_state = 3}, - [2946] = {.lex_state = 25, .external_lex_state = 3}, - [2947] = {.lex_state = 118, .external_lex_state = 3}, - [2948] = {.lex_state = 118, .external_lex_state = 3}, - [2949] = {.lex_state = 121, .external_lex_state = 2}, - [2950] = {.lex_state = 120, .external_lex_state = 2}, - [2951] = {.lex_state = 25, .external_lex_state = 3}, - [2952] = {.lex_state = 117, .external_lex_state = 3}, - [2953] = {.lex_state = 118, .external_lex_state = 3}, - [2954] = {.lex_state = 117, .external_lex_state = 3}, - [2955] = {.lex_state = 117, .external_lex_state = 3}, - [2956] = {.lex_state = 25, .external_lex_state = 3}, - [2957] = {.lex_state = 117, .external_lex_state = 3}, - [2958] = {.lex_state = 118, .external_lex_state = 3}, - [2959] = {.lex_state = 118, .external_lex_state = 3}, - [2960] = {.lex_state = 117, .external_lex_state = 3}, - [2961] = {.lex_state = 117, .external_lex_state = 3}, - [2962] = {.lex_state = 117, .external_lex_state = 3}, - [2963] = {.lex_state = 120, .external_lex_state = 2}, - [2964] = {.lex_state = 117, .external_lex_state = 3}, - [2965] = {.lex_state = 118, .external_lex_state = 3}, - [2966] = {.lex_state = 118, .external_lex_state = 3}, - [2967] = {.lex_state = 118, .external_lex_state = 3}, - [2968] = {.lex_state = 25, .external_lex_state = 3}, - [2969] = {.lex_state = 117, .external_lex_state = 3}, - [2970] = {.lex_state = 25, .external_lex_state = 3}, - [2971] = {.lex_state = 121, .external_lex_state = 2}, - [2972] = {.lex_state = 118, .external_lex_state = 3}, - [2973] = {.lex_state = 118, .external_lex_state = 3}, - [2974] = {.lex_state = 121, .external_lex_state = 2}, - [2975] = {.lex_state = 118, .external_lex_state = 3}, - [2976] = {.lex_state = 118, .external_lex_state = 3}, - [2977] = {.lex_state = 25, .external_lex_state = 3}, - [2978] = {.lex_state = 118, .external_lex_state = 3}, - [2979] = {.lex_state = 25, .external_lex_state = 3}, - [2980] = {.lex_state = 118, .external_lex_state = 3}, - [2981] = {.lex_state = 118, .external_lex_state = 3}, - [2982] = {.lex_state = 118, .external_lex_state = 3}, - [2983] = {.lex_state = 25, .external_lex_state = 3}, - [2984] = {.lex_state = 118, .external_lex_state = 3}, - [2985] = {.lex_state = 118, .external_lex_state = 3}, - [2986] = {.lex_state = 25, .external_lex_state = 3}, - [2987] = {.lex_state = 118, .external_lex_state = 3}, - [2988] = {.lex_state = 121, .external_lex_state = 2}, - [2989] = {.lex_state = 25, .external_lex_state = 3}, - [2990] = {.lex_state = 118, .external_lex_state = 3}, - [2991] = {.lex_state = 25, .external_lex_state = 3}, - [2992] = {.lex_state = 118, .external_lex_state = 3}, - [2993] = {.lex_state = 25, .external_lex_state = 3}, - [2994] = {.lex_state = 118, .external_lex_state = 3}, - [2995] = {.lex_state = 118, .external_lex_state = 3}, - [2996] = {.lex_state = 25, .external_lex_state = 3}, - [2997] = {.lex_state = 25, .external_lex_state = 3}, - [2998] = {.lex_state = 118, .external_lex_state = 3}, - [2999] = {.lex_state = 118, .external_lex_state = 3}, - [3000] = {.lex_state = 25, .external_lex_state = 3}, - [3001] = {.lex_state = 25, .external_lex_state = 3}, - [3002] = {.lex_state = 118, .external_lex_state = 3}, - [3003] = {.lex_state = 118, .external_lex_state = 3}, - [3004] = {.lex_state = 25, .external_lex_state = 3}, - [3005] = {.lex_state = 118, .external_lex_state = 3}, - [3006] = {.lex_state = 25, .external_lex_state = 3}, - [3007] = {.lex_state = 118, .external_lex_state = 3}, - [3008] = {.lex_state = 25, .external_lex_state = 3}, - [3009] = {.lex_state = 25, .external_lex_state = 3}, - [3010] = {.lex_state = 25, .external_lex_state = 3}, - [3011] = {.lex_state = 25, .external_lex_state = 3}, - [3012] = {.lex_state = 25, .external_lex_state = 3}, - [3013] = {.lex_state = 25, .external_lex_state = 3}, - [3014] = {.lex_state = 25, .external_lex_state = 3}, - [3015] = {.lex_state = 121, .external_lex_state = 2}, - [3016] = {.lex_state = 25, .external_lex_state = 3}, - [3017] = {.lex_state = 25, .external_lex_state = 3}, - [3018] = {.lex_state = 25, .external_lex_state = 3}, - [3019] = {.lex_state = 25, .external_lex_state = 3}, - [3020] = {.lex_state = 25, .external_lex_state = 3}, - [3021] = {.lex_state = 25, .external_lex_state = 3}, - [3022] = {.lex_state = 25, .external_lex_state = 3}, - [3023] = {.lex_state = 25, .external_lex_state = 3}, - [3024] = {.lex_state = 25, .external_lex_state = 3}, - [3025] = {.lex_state = 118, .external_lex_state = 3}, - [3026] = {.lex_state = 25, .external_lex_state = 3}, - [3027] = {.lex_state = 25, .external_lex_state = 3}, - [3028] = {.lex_state = 25, .external_lex_state = 3}, - [3029] = {.lex_state = 118, .external_lex_state = 3}, - [3030] = {.lex_state = 25, .external_lex_state = 3}, - [3031] = {.lex_state = 25, .external_lex_state = 3}, - [3032] = {.lex_state = 25, .external_lex_state = 3}, - [3033] = {.lex_state = 25, .external_lex_state = 3}, - [3034] = {.lex_state = 25, .external_lex_state = 3}, - [3035] = {.lex_state = 118, .external_lex_state = 3}, - [3036] = {.lex_state = 25, .external_lex_state = 3}, - [3037] = {.lex_state = 25, .external_lex_state = 3}, - [3038] = {.lex_state = 25, .external_lex_state = 3}, - [3039] = {.lex_state = 25, .external_lex_state = 3}, - [3040] = {.lex_state = 118, .external_lex_state = 3}, - [3041] = {.lex_state = 25, .external_lex_state = 3}, - [3042] = {.lex_state = 118, .external_lex_state = 3}, - [3043] = {.lex_state = 25, .external_lex_state = 3}, - [3044] = {.lex_state = 25, .external_lex_state = 3}, - [3045] = {.lex_state = 25, .external_lex_state = 3}, - [3046] = {.lex_state = 116, .external_lex_state = 3}, - [3047] = {.lex_state = 25, .external_lex_state = 3}, - [3048] = {.lex_state = 25, .external_lex_state = 3}, - [3049] = {.lex_state = 25, .external_lex_state = 3}, - [3050] = {.lex_state = 120, .external_lex_state = 2}, - [3051] = {.lex_state = 118, .external_lex_state = 3}, - [3052] = {.lex_state = 118, .external_lex_state = 3}, - [3053] = {.lex_state = 120, .external_lex_state = 2}, - [3054] = {.lex_state = 120, .external_lex_state = 2}, - [3055] = {.lex_state = 120, .external_lex_state = 2}, - [3056] = {.lex_state = 120, .external_lex_state = 2}, - [3057] = {.lex_state = 120, .external_lex_state = 2}, - [3058] = {.lex_state = 120, .external_lex_state = 2}, - [3059] = {.lex_state = 120, .external_lex_state = 2}, - [3060] = {.lex_state = 120, .external_lex_state = 2}, - [3061] = {.lex_state = 118, .external_lex_state = 3}, - [3062] = {.lex_state = 118, .external_lex_state = 3}, - [3063] = {.lex_state = 120, .external_lex_state = 2}, - [3064] = {.lex_state = 117, .external_lex_state = 3}, - [3065] = {.lex_state = 118, .external_lex_state = 3}, - [3066] = {.lex_state = 120, .external_lex_state = 2}, - [3067] = {.lex_state = 120, .external_lex_state = 2}, - [3068] = {.lex_state = 118, .external_lex_state = 3}, - [3069] = {.lex_state = 120, .external_lex_state = 2}, - [3070] = {.lex_state = 120, .external_lex_state = 2}, - [3071] = {.lex_state = 118, .external_lex_state = 3}, - [3072] = {.lex_state = 118, .external_lex_state = 3}, - [3073] = {.lex_state = 120, .external_lex_state = 2}, - [3074] = {.lex_state = 118, .external_lex_state = 3}, - [3075] = {.lex_state = 120, .external_lex_state = 2}, - [3076] = {.lex_state = 118, .external_lex_state = 3}, - [3077] = {.lex_state = 120, .external_lex_state = 2}, - [3078] = {.lex_state = 118, .external_lex_state = 3}, - [3079] = {.lex_state = 120, .external_lex_state = 2}, - [3080] = {.lex_state = 120, .external_lex_state = 2}, - [3081] = {.lex_state = 120, .external_lex_state = 2}, - [3082] = {.lex_state = 118, .external_lex_state = 3}, - [3083] = {.lex_state = 120, .external_lex_state = 2}, - [3084] = {.lex_state = 118, .external_lex_state = 3}, - [3085] = {.lex_state = 118, .external_lex_state = 3}, - [3086] = {.lex_state = 118, .external_lex_state = 3}, - [3087] = {.lex_state = 117, .external_lex_state = 3}, - [3088] = {.lex_state = 117, .external_lex_state = 3}, - [3089] = {.lex_state = 117, .external_lex_state = 3}, - [3090] = {.lex_state = 117, .external_lex_state = 3}, - [3091] = {.lex_state = 117, .external_lex_state = 3}, - [3092] = {.lex_state = 117, .external_lex_state = 3}, - [3093] = {.lex_state = 117, .external_lex_state = 3}, - [3094] = {.lex_state = 117, .external_lex_state = 3}, - [3095] = {.lex_state = 117, .external_lex_state = 3}, - [3096] = {.lex_state = 117, .external_lex_state = 3}, - [3097] = {.lex_state = 117, .external_lex_state = 3}, - [3098] = {.lex_state = 117, .external_lex_state = 3}, - [3099] = {.lex_state = 120, .external_lex_state = 2}, - [3100] = {.lex_state = 120, .external_lex_state = 2}, - [3101] = {.lex_state = 120, .external_lex_state = 2}, - [3102] = {.lex_state = 120, .external_lex_state = 2}, - [3103] = {.lex_state = 118, .external_lex_state = 3}, - [3104] = {.lex_state = 120, .external_lex_state = 2}, - [3105] = {.lex_state = 118, .external_lex_state = 3}, - [3106] = {.lex_state = 120, .external_lex_state = 2}, - [3107] = {.lex_state = 118, .external_lex_state = 3}, - [3108] = {.lex_state = 120, .external_lex_state = 2}, - [3109] = {.lex_state = 120, .external_lex_state = 2}, - [3110] = {.lex_state = 120, .external_lex_state = 2}, - [3111] = {.lex_state = 118, .external_lex_state = 3}, - [3112] = {.lex_state = 120, .external_lex_state = 2}, - [3113] = {.lex_state = 120, .external_lex_state = 2}, - [3114] = {.lex_state = 120, .external_lex_state = 2}, - [3115] = {.lex_state = 120, .external_lex_state = 2}, - [3116] = {.lex_state = 118, .external_lex_state = 3}, - [3117] = {.lex_state = 117, .external_lex_state = 3}, - [3118] = {.lex_state = 118, .external_lex_state = 3}, - [3119] = {.lex_state = 116, .external_lex_state = 3}, - [3120] = {.lex_state = 117, .external_lex_state = 3}, - [3121] = {.lex_state = 120, .external_lex_state = 2}, - [3122] = {.lex_state = 118, .external_lex_state = 3}, - [3123] = {.lex_state = 120, .external_lex_state = 2}, - [3124] = {.lex_state = 120, .external_lex_state = 2}, - [3125] = {.lex_state = 118, .external_lex_state = 3}, - [3126] = {.lex_state = 120, .external_lex_state = 2}, - [3127] = {.lex_state = 120, .external_lex_state = 2}, - [3128] = {.lex_state = 120, .external_lex_state = 2}, - [3129] = {.lex_state = 120, .external_lex_state = 2}, - [3130] = {.lex_state = 120, .external_lex_state = 2}, - [3131] = {.lex_state = 118, .external_lex_state = 3}, - [3132] = {.lex_state = 118, .external_lex_state = 3}, - [3133] = {.lex_state = 118, .external_lex_state = 3}, - [3134] = {.lex_state = 118, .external_lex_state = 3}, - [3135] = {.lex_state = 118, .external_lex_state = 3}, - [3136] = {.lex_state = 118, .external_lex_state = 3}, - [3137] = {.lex_state = 118, .external_lex_state = 3}, - [3138] = {.lex_state = 120, .external_lex_state = 2}, - [3139] = {.lex_state = 118, .external_lex_state = 3}, - [3140] = {.lex_state = 120, .external_lex_state = 2}, - [3141] = {.lex_state = 118, .external_lex_state = 3}, - [3142] = {.lex_state = 118, .external_lex_state = 3}, - [3143] = {.lex_state = 118, .external_lex_state = 3}, - [3144] = {.lex_state = 118, .external_lex_state = 3}, - [3145] = {.lex_state = 117, .external_lex_state = 3}, - [3146] = {.lex_state = 120, .external_lex_state = 2}, - [3147] = {.lex_state = 120, .external_lex_state = 2}, - [3148] = {.lex_state = 120, .external_lex_state = 2}, - [3149] = {.lex_state = 118, .external_lex_state = 3}, - [3150] = {.lex_state = 120, .external_lex_state = 2}, - [3151] = {.lex_state = 120, .external_lex_state = 2}, - [3152] = {.lex_state = 118, .external_lex_state = 3}, - [3153] = {.lex_state = 118, .external_lex_state = 3}, - [3154] = {.lex_state = 118, .external_lex_state = 3}, - [3155] = {.lex_state = 118, .external_lex_state = 3}, - [3156] = {.lex_state = 118, .external_lex_state = 3}, - [3157] = {.lex_state = 118, .external_lex_state = 3}, - [3158] = {.lex_state = 118, .external_lex_state = 3}, - [3159] = {.lex_state = 118, .external_lex_state = 3}, - [3160] = {.lex_state = 118, .external_lex_state = 3}, - [3161] = {.lex_state = 118, .external_lex_state = 3}, - [3162] = {.lex_state = 118, .external_lex_state = 3}, - [3163] = {.lex_state = 118, .external_lex_state = 3}, - [3164] = {.lex_state = 118, .external_lex_state = 3}, - [3165] = {.lex_state = 118, .external_lex_state = 3}, - [3166] = {.lex_state = 118, .external_lex_state = 3}, - [3167] = {.lex_state = 118, .external_lex_state = 3}, - [3168] = {.lex_state = 118, .external_lex_state = 3}, - [3169] = {.lex_state = 118, .external_lex_state = 3}, - [3170] = {.lex_state = 118, .external_lex_state = 3}, - [3171] = {.lex_state = 118, .external_lex_state = 3}, - [3172] = {.lex_state = 120, .external_lex_state = 2}, - [3173] = {.lex_state = 118, .external_lex_state = 3}, - [3174] = {.lex_state = 118, .external_lex_state = 3}, - [3175] = {.lex_state = 120, .external_lex_state = 2}, - [3176] = {.lex_state = 118, .external_lex_state = 3}, - [3177] = {.lex_state = 118, .external_lex_state = 3}, - [3178] = {.lex_state = 118, .external_lex_state = 3}, - [3179] = {.lex_state = 118, .external_lex_state = 3}, - [3180] = {.lex_state = 118, .external_lex_state = 3}, - [3181] = {.lex_state = 118, .external_lex_state = 3}, - [3182] = {.lex_state = 118, .external_lex_state = 3}, - [3183] = {.lex_state = 118, .external_lex_state = 3}, - [3184] = {.lex_state = 118, .external_lex_state = 3}, - [3185] = {.lex_state = 118, .external_lex_state = 3}, - [3186] = {.lex_state = 118, .external_lex_state = 3}, - [3187] = {.lex_state = 118, .external_lex_state = 3}, - [3188] = {.lex_state = 118, .external_lex_state = 3}, - [3189] = {.lex_state = 118, .external_lex_state = 3}, - [3190] = {.lex_state = 118, .external_lex_state = 3}, - [3191] = {.lex_state = 118, .external_lex_state = 3}, - [3192] = {.lex_state = 118, .external_lex_state = 3}, - [3193] = {.lex_state = 118, .external_lex_state = 3}, - [3194] = {.lex_state = 118, .external_lex_state = 3}, - [3195] = {.lex_state = 118, .external_lex_state = 3}, - [3196] = {.lex_state = 120, .external_lex_state = 2}, - [3197] = {.lex_state = 120, .external_lex_state = 2}, - [3198] = {.lex_state = 118, .external_lex_state = 3}, - [3199] = {.lex_state = 118, .external_lex_state = 3}, - [3200] = {.lex_state = 116, .external_lex_state = 3}, - [3201] = {.lex_state = 116, .external_lex_state = 3}, - [3202] = {.lex_state = 24, .external_lex_state = 3}, - [3203] = {.lex_state = 116, .external_lex_state = 3}, - [3204] = {.lex_state = 116, .external_lex_state = 3}, - [3205] = {.lex_state = 116, .external_lex_state = 3}, - [3206] = {.lex_state = 24, .external_lex_state = 3}, - [3207] = {.lex_state = 24, .external_lex_state = 3}, - [3208] = {.lex_state = 116, .external_lex_state = 3}, - [3209] = {.lex_state = 116, .external_lex_state = 3}, - [3210] = {.lex_state = 24, .external_lex_state = 3}, - [3211] = {.lex_state = 116, .external_lex_state = 3}, - [3212] = {.lex_state = 24, .external_lex_state = 3}, - [3213] = {.lex_state = 24, .external_lex_state = 3}, - [3214] = {.lex_state = 117, .external_lex_state = 3}, - [3215] = {.lex_state = 24, .external_lex_state = 3}, - [3216] = {.lex_state = 24, .external_lex_state = 3}, - [3217] = {.lex_state = 116, .external_lex_state = 3}, - [3218] = {.lex_state = 116, .external_lex_state = 3}, - [3219] = {.lex_state = 24, .external_lex_state = 3}, - [3220] = {.lex_state = 116, .external_lex_state = 3}, - [3221] = {.lex_state = 116, .external_lex_state = 3}, - [3222] = {.lex_state = 24, .external_lex_state = 3}, - [3223] = {.lex_state = 116, .external_lex_state = 3}, - [3224] = {.lex_state = 116, .external_lex_state = 3}, - [3225] = {.lex_state = 116, .external_lex_state = 3}, - [3226] = {.lex_state = 116, .external_lex_state = 3}, - [3227] = {.lex_state = 116, .external_lex_state = 3}, - [3228] = {.lex_state = 24, .external_lex_state = 3}, - [3229] = {.lex_state = 116, .external_lex_state = 3}, - [3230] = {.lex_state = 116, .external_lex_state = 3}, - [3231] = {.lex_state = 116, .external_lex_state = 3}, - [3232] = {.lex_state = 116, .external_lex_state = 3}, - [3233] = {.lex_state = 116, .external_lex_state = 3}, - [3234] = {.lex_state = 24, .external_lex_state = 3}, - [3235] = {.lex_state = 24, .external_lex_state = 3}, - [3236] = {.lex_state = 24, .external_lex_state = 3}, - [3237] = {.lex_state = 116, .external_lex_state = 3}, - [3238] = {.lex_state = 116, .external_lex_state = 3}, - [3239] = {.lex_state = 24, .external_lex_state = 3}, - [3240] = {.lex_state = 116, .external_lex_state = 3}, - [3241] = {.lex_state = 24, .external_lex_state = 3}, - [3242] = {.lex_state = 24, .external_lex_state = 3}, - [3243] = {.lex_state = 116, .external_lex_state = 3}, - [3244] = {.lex_state = 116, .external_lex_state = 3}, - [3245] = {.lex_state = 24, .external_lex_state = 3}, - [3246] = {.lex_state = 24, .external_lex_state = 3}, - [3247] = {.lex_state = 116, .external_lex_state = 3}, - [3248] = {.lex_state = 116, .external_lex_state = 3}, - [3249] = {.lex_state = 116, .external_lex_state = 3}, - [3250] = {.lex_state = 116, .external_lex_state = 3}, - [3251] = {.lex_state = 24, .external_lex_state = 3}, - [3252] = {.lex_state = 116, .external_lex_state = 3}, - [3253] = {.lex_state = 116, .external_lex_state = 3}, - [3254] = {.lex_state = 24, .external_lex_state = 3}, - [3255] = {.lex_state = 24, .external_lex_state = 3}, - [3256] = {.lex_state = 25, .external_lex_state = 3}, - [3257] = {.lex_state = 25, .external_lex_state = 3}, - [3258] = {.lex_state = 25, .external_lex_state = 3}, - [3259] = {.lex_state = 25, .external_lex_state = 3}, - [3260] = {.lex_state = 25, .external_lex_state = 3}, - [3261] = {.lex_state = 116, .external_lex_state = 3}, - [3262] = {.lex_state = 25, .external_lex_state = 3}, - [3263] = {.lex_state = 116, .external_lex_state = 3}, - [3264] = {.lex_state = 116, .external_lex_state = 3}, - [3265] = {.lex_state = 116, .external_lex_state = 3}, - [3266] = {.lex_state = 116, .external_lex_state = 3}, - [3267] = {.lex_state = 116, .external_lex_state = 3}, - [3268] = {.lex_state = 116, .external_lex_state = 3}, - [3269] = {.lex_state = 116, .external_lex_state = 3}, - [3270] = {.lex_state = 116, .external_lex_state = 3}, - [3271] = {.lex_state = 25, .external_lex_state = 3}, - [3272] = {.lex_state = 25, .external_lex_state = 3}, - [3273] = {.lex_state = 25, .external_lex_state = 3}, - [3274] = {.lex_state = 4, .external_lex_state = 2}, - [3275] = {.lex_state = 25, .external_lex_state = 3}, - [3276] = {.lex_state = 25, .external_lex_state = 3}, - [3277] = {.lex_state = 25, .external_lex_state = 3}, - [3278] = {.lex_state = 25, .external_lex_state = 3}, - [3279] = {.lex_state = 25, .external_lex_state = 3}, - [3280] = {.lex_state = 25, .external_lex_state = 3}, - [3281] = {.lex_state = 25, .external_lex_state = 3}, - [3282] = {.lex_state = 25, .external_lex_state = 3}, - [3283] = {.lex_state = 116, .external_lex_state = 3}, - [3284] = {.lex_state = 116, .external_lex_state = 3}, - [3285] = {.lex_state = 25, .external_lex_state = 3}, - [3286] = {.lex_state = 116, .external_lex_state = 3}, - [3287] = {.lex_state = 25, .external_lex_state = 3}, - [3288] = {.lex_state = 25, .external_lex_state = 3}, - [3289] = {.lex_state = 25, .external_lex_state = 3}, - [3290] = {.lex_state = 117, .external_lex_state = 3}, - [3291] = {.lex_state = 25, .external_lex_state = 3}, - [3292] = {.lex_state = 25, .external_lex_state = 3}, - [3293] = {.lex_state = 25, .external_lex_state = 3}, - [3294] = {.lex_state = 25, .external_lex_state = 3}, - [3295] = {.lex_state = 4, .external_lex_state = 2}, - [3296] = {.lex_state = 25, .external_lex_state = 3}, - [3297] = {.lex_state = 25, .external_lex_state = 3}, - [3298] = {.lex_state = 116, .external_lex_state = 3}, - [3299] = {.lex_state = 25, .external_lex_state = 3}, - [3300] = {.lex_state = 25, .external_lex_state = 3}, - [3301] = {.lex_state = 25, .external_lex_state = 3}, - [3302] = {.lex_state = 116, .external_lex_state = 3}, - [3303] = {.lex_state = 116, .external_lex_state = 3}, - [3304] = {.lex_state = 116, .external_lex_state = 3}, - [3305] = {.lex_state = 4, .external_lex_state = 2}, - [3306] = {.lex_state = 116, .external_lex_state = 3}, - [3307] = {.lex_state = 116, .external_lex_state = 3}, - [3308] = {.lex_state = 116, .external_lex_state = 3}, - [3309] = {.lex_state = 4, .external_lex_state = 2}, - [3310] = {.lex_state = 8, .external_lex_state = 2}, - [3311] = {.lex_state = 116, .external_lex_state = 3}, - [3312] = {.lex_state = 8, .external_lex_state = 2}, - [3313] = {.lex_state = 8, .external_lex_state = 2}, - [3314] = {.lex_state = 4, .external_lex_state = 2}, - [3315] = {.lex_state = 4, .external_lex_state = 2}, - [3316] = {.lex_state = 4, .external_lex_state = 2}, - [3317] = {.lex_state = 4, .external_lex_state = 2}, - [3318] = {.lex_state = 8, .external_lex_state = 2}, - [3319] = {.lex_state = 116, .external_lex_state = 3}, - [3320] = {.lex_state = 8, .external_lex_state = 2}, - [3321] = {.lex_state = 117, .external_lex_state = 3}, - [3322] = {.lex_state = 117, .external_lex_state = 3}, - [3323] = {.lex_state = 117, .external_lex_state = 3}, - [3324] = {.lex_state = 117, .external_lex_state = 3}, - [3325] = {.lex_state = 117, .external_lex_state = 3}, - [3326] = {.lex_state = 117, .external_lex_state = 3}, - [3327] = {.lex_state = 117, .external_lex_state = 3}, - [3328] = {.lex_state = 106, .external_lex_state = 2}, - [3329] = {.lex_state = 106, .external_lex_state = 2}, - [3330] = {.lex_state = 106, .external_lex_state = 2}, - [3331] = {.lex_state = 117, .external_lex_state = 3}, - [3332] = {.lex_state = 106, .external_lex_state = 2}, - [3333] = {.lex_state = 106, .external_lex_state = 2}, - [3334] = {.lex_state = 117, .external_lex_state = 3}, - [3335] = {.lex_state = 106, .external_lex_state = 2}, - [3336] = {.lex_state = 106, .external_lex_state = 2}, - [3337] = {.lex_state = 106, .external_lex_state = 2}, - [3338] = {.lex_state = 117, .external_lex_state = 3}, - [3339] = {.lex_state = 106, .external_lex_state = 2}, - [3340] = {.lex_state = 106, .external_lex_state = 2}, - [3341] = {.lex_state = 106, .external_lex_state = 2}, - [3342] = {.lex_state = 106, .external_lex_state = 2}, - [3343] = {.lex_state = 106, .external_lex_state = 2}, - [3344] = {.lex_state = 106, .external_lex_state = 2}, - [3345] = {.lex_state = 106, .external_lex_state = 2}, - [3346] = {.lex_state = 106, .external_lex_state = 2}, - [3347] = {.lex_state = 106, .external_lex_state = 2}, - [3348] = {.lex_state = 106, .external_lex_state = 2}, - [3349] = {.lex_state = 106, .external_lex_state = 2}, - [3350] = {.lex_state = 106, .external_lex_state = 2}, - [3351] = {.lex_state = 106, .external_lex_state = 2}, - [3352] = {.lex_state = 106, .external_lex_state = 2}, - [3353] = {.lex_state = 106, .external_lex_state = 2}, - [3354] = {.lex_state = 106, .external_lex_state = 2}, - [3355] = {.lex_state = 106, .external_lex_state = 2}, - [3356] = {.lex_state = 106, .external_lex_state = 2}, - [3357] = {.lex_state = 106, .external_lex_state = 2}, - [3358] = {.lex_state = 106, .external_lex_state = 2}, - [3359] = {.lex_state = 106, .external_lex_state = 2}, - [3360] = {.lex_state = 106, .external_lex_state = 2}, - [3361] = {.lex_state = 106, .external_lex_state = 2}, - [3362] = {.lex_state = 106, .external_lex_state = 2}, - [3363] = {.lex_state = 106, .external_lex_state = 2}, - [3364] = {.lex_state = 106, .external_lex_state = 2}, - [3365] = {.lex_state = 106, .external_lex_state = 2}, - [3366] = {.lex_state = 106, .external_lex_state = 2}, - [3367] = {.lex_state = 106, .external_lex_state = 2}, - [3368] = {.lex_state = 106, .external_lex_state = 2}, - [3369] = {.lex_state = 106, .external_lex_state = 2}, - [3370] = {.lex_state = 106, .external_lex_state = 2}, - [3371] = {.lex_state = 106, .external_lex_state = 2}, - [3372] = {.lex_state = 106, .external_lex_state = 2}, - [3373] = {.lex_state = 106, .external_lex_state = 2}, - [3374] = {.lex_state = 106, .external_lex_state = 2}, - [3375] = {.lex_state = 106, .external_lex_state = 2}, - [3376] = {.lex_state = 106, .external_lex_state = 2}, - [3377] = {.lex_state = 106, .external_lex_state = 2}, - [3378] = {.lex_state = 106, .external_lex_state = 2}, - [3379] = {.lex_state = 106, .external_lex_state = 2}, - [3380] = {.lex_state = 106, .external_lex_state = 2}, - [3381] = {.lex_state = 117, .external_lex_state = 3}, - [3382] = {.lex_state = 117, .external_lex_state = 3}, - [3383] = {.lex_state = 106, .external_lex_state = 2}, - [3384] = {.lex_state = 117, .external_lex_state = 3}, - [3385] = {.lex_state = 106, .external_lex_state = 2}, - [3386] = {.lex_state = 106, .external_lex_state = 2}, - [3387] = {.lex_state = 106, .external_lex_state = 2}, - [3388] = {.lex_state = 106, .external_lex_state = 2}, - [3389] = {.lex_state = 106, .external_lex_state = 2}, - [3390] = {.lex_state = 106, .external_lex_state = 2}, - [3391] = {.lex_state = 106, .external_lex_state = 2}, - [3392] = {.lex_state = 106, .external_lex_state = 2}, - [3393] = {.lex_state = 106, .external_lex_state = 2}, - [3394] = {.lex_state = 106, .external_lex_state = 2}, - [3395] = {.lex_state = 106, .external_lex_state = 2}, - [3396] = {.lex_state = 106, .external_lex_state = 2}, - [3397] = {.lex_state = 106, .external_lex_state = 2}, - [3398] = {.lex_state = 106, .external_lex_state = 2}, - [3399] = {.lex_state = 106, .external_lex_state = 2}, - [3400] = {.lex_state = 106, .external_lex_state = 2}, - [3401] = {.lex_state = 106, .external_lex_state = 2}, - [3402] = {.lex_state = 106, .external_lex_state = 2}, - [3403] = {.lex_state = 106, .external_lex_state = 2}, - [3404] = {.lex_state = 106, .external_lex_state = 2}, - [3405] = {.lex_state = 117, .external_lex_state = 3}, - [3406] = {.lex_state = 106, .external_lex_state = 2}, - [3407] = {.lex_state = 106, .external_lex_state = 2}, - [3408] = {.lex_state = 106, .external_lex_state = 2}, - [3409] = {.lex_state = 106, .external_lex_state = 2}, - [3410] = {.lex_state = 106, .external_lex_state = 2}, - [3411] = {.lex_state = 106, .external_lex_state = 2}, - [3412] = {.lex_state = 106, .external_lex_state = 2}, - [3413] = {.lex_state = 106, .external_lex_state = 2}, - [3414] = {.lex_state = 106, .external_lex_state = 2}, - [3415] = {.lex_state = 106, .external_lex_state = 2}, - [3416] = {.lex_state = 106, .external_lex_state = 2}, - [3417] = {.lex_state = 106, .external_lex_state = 2}, - [3418] = {.lex_state = 106, .external_lex_state = 2}, - [3419] = {.lex_state = 25, .external_lex_state = 3}, - [3420] = {.lex_state = 106, .external_lex_state = 2}, - [3421] = {.lex_state = 106, .external_lex_state = 2}, - [3422] = {.lex_state = 106, .external_lex_state = 2}, - [3423] = {.lex_state = 106, .external_lex_state = 2}, - [3424] = {.lex_state = 106, .external_lex_state = 2}, - [3425] = {.lex_state = 106, .external_lex_state = 2}, - [3426] = {.lex_state = 106, .external_lex_state = 2}, - [3427] = {.lex_state = 25, .external_lex_state = 3}, - [3428] = {.lex_state = 25, .external_lex_state = 3}, - [3429] = {.lex_state = 25, .external_lex_state = 3}, - [3430] = {.lex_state = 25, .external_lex_state = 3}, - [3431] = {.lex_state = 25, .external_lex_state = 3}, - [3432] = {.lex_state = 25, .external_lex_state = 3}, - [3433] = {.lex_state = 25, .external_lex_state = 3}, - [3434] = {.lex_state = 25, .external_lex_state = 3}, - [3435] = {.lex_state = 25, .external_lex_state = 3}, - [3436] = {.lex_state = 25, .external_lex_state = 3}, - [3437] = {.lex_state = 25, .external_lex_state = 3}, - [3438] = {.lex_state = 25, .external_lex_state = 3}, - [3439] = {.lex_state = 25, .external_lex_state = 3}, - [3440] = {.lex_state = 25, .external_lex_state = 3}, - [3441] = {.lex_state = 106, .external_lex_state = 2}, - [3442] = {.lex_state = 106, .external_lex_state = 2}, - [3443] = {.lex_state = 106, .external_lex_state = 2}, - [3444] = {.lex_state = 106, .external_lex_state = 2}, - [3445] = {.lex_state = 106, .external_lex_state = 2}, - [3446] = {.lex_state = 25, .external_lex_state = 3}, - [3447] = {.lex_state = 106, .external_lex_state = 2}, - [3448] = {.lex_state = 25, .external_lex_state = 3}, - [3449] = {.lex_state = 25, .external_lex_state = 3}, - [3450] = {.lex_state = 25, .external_lex_state = 3}, - [3451] = {.lex_state = 106, .external_lex_state = 2}, - [3452] = {.lex_state = 5, .external_lex_state = 3}, - [3453] = {.lex_state = 25, .external_lex_state = 3}, - [3454] = {.lex_state = 106, .external_lex_state = 2}, - [3455] = {.lex_state = 106, .external_lex_state = 2}, - [3456] = {.lex_state = 106, .external_lex_state = 2}, - [3457] = {.lex_state = 25, .external_lex_state = 3}, - [3458] = {.lex_state = 106, .external_lex_state = 2}, - [3459] = {.lex_state = 25, .external_lex_state = 3}, - [3460] = {.lex_state = 25, .external_lex_state = 3}, - [3461] = {.lex_state = 25, .external_lex_state = 3}, - [3462] = {.lex_state = 106, .external_lex_state = 2}, - [3463] = {.lex_state = 106, .external_lex_state = 2}, - [3464] = {.lex_state = 25, .external_lex_state = 3}, - [3465] = {.lex_state = 25, .external_lex_state = 3}, - [3466] = {.lex_state = 106, .external_lex_state = 2}, - [3467] = {.lex_state = 25, .external_lex_state = 3}, - [3468] = {.lex_state = 25, .external_lex_state = 3}, - [3469] = {.lex_state = 106, .external_lex_state = 2}, - [3470] = {.lex_state = 106, .external_lex_state = 2}, - [3471] = {.lex_state = 25, .external_lex_state = 3}, - [3472] = {.lex_state = 25, .external_lex_state = 3}, - [3473] = {.lex_state = 25, .external_lex_state = 3}, - [3474] = {.lex_state = 106, .external_lex_state = 2}, - [3475] = {.lex_state = 106, .external_lex_state = 2}, - [3476] = {.lex_state = 106, .external_lex_state = 2}, - [3477] = {.lex_state = 5, .external_lex_state = 3}, - [3478] = {.lex_state = 104, .external_lex_state = 2}, - [3479] = {.lex_state = 25, .external_lex_state = 3}, - [3480] = {.lex_state = 106, .external_lex_state = 2}, - [3481] = {.lex_state = 106, .external_lex_state = 2}, - [3482] = {.lex_state = 106, .external_lex_state = 2}, - [3483] = {.lex_state = 106, .external_lex_state = 2}, - [3484] = {.lex_state = 106, .external_lex_state = 2}, - [3485] = {.lex_state = 5, .external_lex_state = 3}, - [3486] = {.lex_state = 106, .external_lex_state = 2}, - [3487] = {.lex_state = 106, .external_lex_state = 2}, - [3488] = {.lex_state = 106, .external_lex_state = 2}, - [3489] = {.lex_state = 106, .external_lex_state = 2}, - [3490] = {.lex_state = 106, .external_lex_state = 2}, - [3491] = {.lex_state = 106, .external_lex_state = 2}, - [3492] = {.lex_state = 106, .external_lex_state = 2}, - [3493] = {.lex_state = 106, .external_lex_state = 2}, - [3494] = {.lex_state = 106, .external_lex_state = 2}, - [3495] = {.lex_state = 106, .external_lex_state = 2}, - [3496] = {.lex_state = 106, .external_lex_state = 2}, - [3497] = {.lex_state = 106, .external_lex_state = 2}, - [3498] = {.lex_state = 5, .external_lex_state = 3}, - [3499] = {.lex_state = 106, .external_lex_state = 2}, - [3500] = {.lex_state = 106, .external_lex_state = 2}, - [3501] = {.lex_state = 106, .external_lex_state = 2}, - [3502] = {.lex_state = 106, .external_lex_state = 2}, - [3503] = {.lex_state = 106, .external_lex_state = 2}, - [3504] = {.lex_state = 106, .external_lex_state = 2}, - [3505] = {.lex_state = 27, .external_lex_state = 3}, - [3506] = {.lex_state = 106, .external_lex_state = 2}, - [3507] = {.lex_state = 106, .external_lex_state = 2}, - [3508] = {.lex_state = 106, .external_lex_state = 2}, - [3509] = {.lex_state = 106, .external_lex_state = 2}, - [3510] = {.lex_state = 106, .external_lex_state = 2}, - [3511] = {.lex_state = 106, .external_lex_state = 2}, - [3512] = {.lex_state = 106, .external_lex_state = 2}, - [3513] = {.lex_state = 106, .external_lex_state = 2}, - [3514] = {.lex_state = 106, .external_lex_state = 2}, - [3515] = {.lex_state = 119, .external_lex_state = 2}, - [3516] = {.lex_state = 106, .external_lex_state = 2}, - [3517] = {.lex_state = 106, .external_lex_state = 2}, - [3518] = {.lex_state = 106, .external_lex_state = 2}, - [3519] = {.lex_state = 106, .external_lex_state = 2}, - [3520] = {.lex_state = 106, .external_lex_state = 2}, - [3521] = {.lex_state = 106, .external_lex_state = 2}, - [3522] = {.lex_state = 106, .external_lex_state = 2}, - [3523] = {.lex_state = 106, .external_lex_state = 2}, - [3524] = {.lex_state = 106, .external_lex_state = 2}, - [3525] = {.lex_state = 106, .external_lex_state = 2}, - [3526] = {.lex_state = 106, .external_lex_state = 2}, - [3527] = {.lex_state = 106, .external_lex_state = 2}, - [3528] = {.lex_state = 106, .external_lex_state = 2}, - [3529] = {.lex_state = 106, .external_lex_state = 2}, - [3530] = {.lex_state = 106, .external_lex_state = 2}, - [3531] = {.lex_state = 106, .external_lex_state = 2}, - [3532] = {.lex_state = 119, .external_lex_state = 2}, - [3533] = {.lex_state = 106, .external_lex_state = 2}, - [3534] = {.lex_state = 106, .external_lex_state = 2}, - [3535] = {.lex_state = 27, .external_lex_state = 3}, - [3536] = {.lex_state = 123, .external_lex_state = 2}, - [3537] = {.lex_state = 106, .external_lex_state = 2}, - [3538] = {.lex_state = 106, .external_lex_state = 2}, - [3539] = {.lex_state = 106, .external_lex_state = 2}, - [3540] = {.lex_state = 106, .external_lex_state = 2}, - [3541] = {.lex_state = 106, .external_lex_state = 2}, - [3542] = {.lex_state = 27, .external_lex_state = 3}, - [3543] = {.lex_state = 27, .external_lex_state = 3}, - [3544] = {.lex_state = 106, .external_lex_state = 2}, - [3545] = {.lex_state = 119, .external_lex_state = 2}, - [3546] = {.lex_state = 9, .external_lex_state = 2}, - [3547] = {.lex_state = 9, .external_lex_state = 2}, - [3548] = {.lex_state = 9, .external_lex_state = 2}, - [3549] = {.lex_state = 9, .external_lex_state = 2}, - [3550] = {.lex_state = 9, .external_lex_state = 2}, - [3551] = {.lex_state = 9, .external_lex_state = 2}, - [3552] = {.lex_state = 24, .external_lex_state = 3}, - [3553] = {.lex_state = 9, .external_lex_state = 2}, - [3554] = {.lex_state = 9, .external_lex_state = 2}, - [3555] = {.lex_state = 9, .external_lex_state = 2}, - [3556] = {.lex_state = 119, .external_lex_state = 2}, - [3557] = {.lex_state = 9, .external_lex_state = 2}, - [3558] = {.lex_state = 9, .external_lex_state = 2}, - [3559] = {.lex_state = 9, .external_lex_state = 2}, - [3560] = {.lex_state = 9, .external_lex_state = 2}, - [3561] = {.lex_state = 9, .external_lex_state = 2}, - [3562] = {.lex_state = 9, .external_lex_state = 2}, - [3563] = {.lex_state = 119, .external_lex_state = 2}, - [3564] = {.lex_state = 9, .external_lex_state = 2}, - [3565] = {.lex_state = 119, .external_lex_state = 2}, - [3566] = {.lex_state = 9, .external_lex_state = 2}, - [3567] = {.lex_state = 104, .external_lex_state = 2}, - [3568] = {.lex_state = 119, .external_lex_state = 2}, - [3569] = {.lex_state = 119, .external_lex_state = 2}, - [3570] = {.lex_state = 9, .external_lex_state = 2}, - [3571] = {.lex_state = 9, .external_lex_state = 2}, - [3572] = {.lex_state = 9, .external_lex_state = 2}, - [3573] = {.lex_state = 9, .external_lex_state = 2}, - [3574] = {.lex_state = 119, .external_lex_state = 2}, - [3575] = {.lex_state = 119, .external_lex_state = 2}, - [3576] = {.lex_state = 9, .external_lex_state = 2}, - [3577] = {.lex_state = 9, .external_lex_state = 2}, - [3578] = {.lex_state = 9, .external_lex_state = 2}, - [3579] = {.lex_state = 119, .external_lex_state = 2}, - [3580] = {.lex_state = 9, .external_lex_state = 2}, - [3581] = {.lex_state = 104, .external_lex_state = 2}, - [3582] = {.lex_state = 9, .external_lex_state = 2}, - [3583] = {.lex_state = 9, .external_lex_state = 2}, - [3584] = {.lex_state = 9, .external_lex_state = 2}, - [3585] = {.lex_state = 104, .external_lex_state = 2}, - [3586] = {.lex_state = 119, .external_lex_state = 2}, - [3587] = {.lex_state = 9, .external_lex_state = 2}, - [3588] = {.lex_state = 24, .external_lex_state = 3}, - [3589] = {.lex_state = 9, .external_lex_state = 2}, - [3590] = {.lex_state = 24, .external_lex_state = 3}, - [3591] = {.lex_state = 119, .external_lex_state = 2}, - [3592] = {.lex_state = 9, .external_lex_state = 2}, - [3593] = {.lex_state = 9, .external_lex_state = 2}, - [3594] = {.lex_state = 119, .external_lex_state = 2}, - [3595] = {.lex_state = 24, .external_lex_state = 3}, - [3596] = {.lex_state = 119, .external_lex_state = 2}, - [3597] = {.lex_state = 24, .external_lex_state = 3}, - [3598] = {.lex_state = 24, .external_lex_state = 3}, - [3599] = {.lex_state = 24, .external_lex_state = 3}, - [3600] = {.lex_state = 104, .external_lex_state = 2}, - [3601] = {.lex_state = 104, .external_lex_state = 2}, - [3602] = {.lex_state = 24, .external_lex_state = 3}, - [3603] = {.lex_state = 9, .external_lex_state = 2}, - [3604] = {.lex_state = 9, .external_lex_state = 2}, - [3605] = {.lex_state = 9, .external_lex_state = 2}, - [3606] = {.lex_state = 119, .external_lex_state = 2}, - [3607] = {.lex_state = 9, .external_lex_state = 2}, - [3608] = {.lex_state = 104, .external_lex_state = 2}, - [3609] = {.lex_state = 24, .external_lex_state = 3}, - [3610] = {.lex_state = 119, .external_lex_state = 2}, - [3611] = {.lex_state = 104, .external_lex_state = 2}, - [3612] = {.lex_state = 119, .external_lex_state = 2}, - [3613] = {.lex_state = 24, .external_lex_state = 3}, - [3614] = {.lex_state = 9, .external_lex_state = 2}, - [3615] = {.lex_state = 9, .external_lex_state = 2}, - [3616] = {.lex_state = 9, .external_lex_state = 2}, - [3617] = {.lex_state = 9, .external_lex_state = 2}, - [3618] = {.lex_state = 24, .external_lex_state = 3}, - [3619] = {.lex_state = 24, .external_lex_state = 3}, - [3620] = {.lex_state = 24, .external_lex_state = 3}, - [3621] = {.lex_state = 9, .external_lex_state = 2}, - [3622] = {.lex_state = 9, .external_lex_state = 2}, - [3623] = {.lex_state = 9, .external_lex_state = 2}, - [3624] = {.lex_state = 9, .external_lex_state = 2}, - [3625] = {.lex_state = 9, .external_lex_state = 2}, - [3626] = {.lex_state = 9, .external_lex_state = 2}, - [3627] = {.lex_state = 9, .external_lex_state = 2}, - [3628] = {.lex_state = 119, .external_lex_state = 2}, - [3629] = {.lex_state = 5, .external_lex_state = 3}, - [3630] = {.lex_state = 104, .external_lex_state = 2}, - [3631] = {.lex_state = 119, .external_lex_state = 2}, - [3632] = {.lex_state = 9, .external_lex_state = 2}, - [3633] = {.lex_state = 9, .external_lex_state = 2}, - [3634] = {.lex_state = 119, .external_lex_state = 2}, - [3635] = {.lex_state = 119, .external_lex_state = 2}, - [3636] = {.lex_state = 9, .external_lex_state = 2}, - [3637] = {.lex_state = 24, .external_lex_state = 3}, - [3638] = {.lex_state = 9, .external_lex_state = 2}, - [3639] = {.lex_state = 119, .external_lex_state = 2}, - [3640] = {.lex_state = 9, .external_lex_state = 2}, - [3641] = {.lex_state = 9, .external_lex_state = 2}, - [3642] = {.lex_state = 9, .external_lex_state = 2}, - [3643] = {.lex_state = 9, .external_lex_state = 2}, - [3644] = {.lex_state = 9, .external_lex_state = 2}, - [3645] = {.lex_state = 9, .external_lex_state = 2}, - [3646] = {.lex_state = 119, .external_lex_state = 2}, - [3647] = {.lex_state = 9, .external_lex_state = 2}, - [3648] = {.lex_state = 24, .external_lex_state = 3}, - [3649] = {.lex_state = 9, .external_lex_state = 2}, - [3650] = {.lex_state = 9, .external_lex_state = 2}, - [3651] = {.lex_state = 9, .external_lex_state = 2}, - [3652] = {.lex_state = 9, .external_lex_state = 2}, - [3653] = {.lex_state = 9, .external_lex_state = 2}, - [3654] = {.lex_state = 24, .external_lex_state = 3}, - [3655] = {.lex_state = 9, .external_lex_state = 2}, - [3656] = {.lex_state = 9, .external_lex_state = 2}, - [3657] = {.lex_state = 119, .external_lex_state = 2}, - [3658] = {.lex_state = 24, .external_lex_state = 3}, - [3659] = {.lex_state = 9, .external_lex_state = 2}, - [3660] = {.lex_state = 9, .external_lex_state = 2}, - [3661] = {.lex_state = 104, .external_lex_state = 2}, - [3662] = {.lex_state = 119, .external_lex_state = 2}, - [3663] = {.lex_state = 119, .external_lex_state = 2}, - [3664] = {.lex_state = 9, .external_lex_state = 2}, - [3665] = {.lex_state = 24, .external_lex_state = 3}, - [3666] = {.lex_state = 24, .external_lex_state = 3}, - [3667] = {.lex_state = 104, .external_lex_state = 2}, - [3668] = {.lex_state = 119, .external_lex_state = 2}, - [3669] = {.lex_state = 24, .external_lex_state = 3}, - [3670] = {.lex_state = 104, .external_lex_state = 2}, - [3671] = {.lex_state = 119, .external_lex_state = 2}, - [3672] = {.lex_state = 5, .external_lex_state = 3}, - [3673] = {.lex_state = 9, .external_lex_state = 2}, - [3674] = {.lex_state = 5, .external_lex_state = 3}, - [3675] = {.lex_state = 104, .external_lex_state = 2}, - [3676] = {.lex_state = 9, .external_lex_state = 2}, - [3677] = {.lex_state = 9, .external_lex_state = 2}, - [3678] = {.lex_state = 119, .external_lex_state = 2}, - [3679] = {.lex_state = 9, .external_lex_state = 2}, - [3680] = {.lex_state = 9, .external_lex_state = 2}, - [3681] = {.lex_state = 104, .external_lex_state = 2}, - [3682] = {.lex_state = 104, .external_lex_state = 2}, - [3683] = {.lex_state = 119, .external_lex_state = 2}, - [3684] = {.lex_state = 119, .external_lex_state = 2}, - [3685] = {.lex_state = 119, .external_lex_state = 2}, - [3686] = {.lex_state = 119, .external_lex_state = 2}, - [3687] = {.lex_state = 119, .external_lex_state = 2}, - [3688] = {.lex_state = 119, .external_lex_state = 2}, - [3689] = {.lex_state = 119, .external_lex_state = 2}, - [3690] = {.lex_state = 119, .external_lex_state = 2}, - [3691] = {.lex_state = 104, .external_lex_state = 2}, - [3692] = {.lex_state = 119, .external_lex_state = 2}, - [3693] = {.lex_state = 119, .external_lex_state = 2}, - [3694] = {.lex_state = 24, .external_lex_state = 3}, - [3695] = {.lex_state = 119, .external_lex_state = 2}, - [3696] = {.lex_state = 24, .external_lex_state = 3}, - [3697] = {.lex_state = 24, .external_lex_state = 3}, - [3698] = {.lex_state = 119, .external_lex_state = 2}, - [3699] = {.lex_state = 24, .external_lex_state = 3}, - [3700] = {.lex_state = 119, .external_lex_state = 2}, - [3701] = {.lex_state = 119, .external_lex_state = 2}, - [3702] = {.lex_state = 104, .external_lex_state = 2}, - [3703] = {.lex_state = 119, .external_lex_state = 2}, - [3704] = {.lex_state = 24, .external_lex_state = 3}, - [3705] = {.lex_state = 119, .external_lex_state = 2}, - [3706] = {.lex_state = 24, .external_lex_state = 3}, - [3707] = {.lex_state = 119, .external_lex_state = 2}, - [3708] = {.lex_state = 24, .external_lex_state = 3}, - [3709] = {.lex_state = 119, .external_lex_state = 2}, - [3710] = {.lex_state = 119, .external_lex_state = 2}, - [3711] = {.lex_state = 9, .external_lex_state = 2}, - [3712] = {.lex_state = 5, .external_lex_state = 3}, - [3713] = {.lex_state = 119, .external_lex_state = 2}, - [3714] = {.lex_state = 119, .external_lex_state = 2}, - [3715] = {.lex_state = 119, .external_lex_state = 2}, - [3716] = {.lex_state = 9, .external_lex_state = 2}, - [3717] = {.lex_state = 104, .external_lex_state = 2}, - [3718] = {.lex_state = 119, .external_lex_state = 2}, - [3719] = {.lex_state = 9, .external_lex_state = 2}, - [3720] = {.lex_state = 24, .external_lex_state = 3}, - [3721] = {.lex_state = 119, .external_lex_state = 2}, - [3722] = {.lex_state = 24, .external_lex_state = 3}, - [3723] = {.lex_state = 119, .external_lex_state = 2}, - [3724] = {.lex_state = 119, .external_lex_state = 2}, - [3725] = {.lex_state = 119, .external_lex_state = 2}, - [3726] = {.lex_state = 119, .external_lex_state = 2}, - [3727] = {.lex_state = 24, .external_lex_state = 3}, - [3728] = {.lex_state = 9, .external_lex_state = 2}, - [3729] = {.lex_state = 9, .external_lex_state = 2}, - [3730] = {.lex_state = 9, .external_lex_state = 2}, - [3731] = {.lex_state = 9, .external_lex_state = 2}, - [3732] = {.lex_state = 9, .external_lex_state = 2}, - [3733] = {.lex_state = 24, .external_lex_state = 3}, - [3734] = {.lex_state = 119, .external_lex_state = 2}, - [3735] = {.lex_state = 9, .external_lex_state = 2}, - [3736] = {.lex_state = 119, .external_lex_state = 2}, - [3737] = {.lex_state = 119, .external_lex_state = 2}, - [3738] = {.lex_state = 119, .external_lex_state = 2}, - [3739] = {.lex_state = 119, .external_lex_state = 2}, - [3740] = {.lex_state = 119, .external_lex_state = 2}, - [3741] = {.lex_state = 119, .external_lex_state = 2}, - [3742] = {.lex_state = 9, .external_lex_state = 2}, - [3743] = {.lex_state = 104, .external_lex_state = 2}, - [3744] = {.lex_state = 119, .external_lex_state = 2}, - [3745] = {.lex_state = 119, .external_lex_state = 2}, - [3746] = {.lex_state = 24, .external_lex_state = 3}, - [3747] = {.lex_state = 104, .external_lex_state = 2}, - [3748] = {.lex_state = 24, .external_lex_state = 3}, - [3749] = {.lex_state = 5, .external_lex_state = 3}, - [3750] = {.lex_state = 32, .external_lex_state = 2}, - [3751] = {.lex_state = 5, .external_lex_state = 3}, - [3752] = {.lex_state = 5, .external_lex_state = 3}, - [3753] = {.lex_state = 5, .external_lex_state = 3}, - [3754] = {.lex_state = 5, .external_lex_state = 3}, - [3755] = {.lex_state = 9, .external_lex_state = 2}, - [3756] = {.lex_state = 9, .external_lex_state = 2}, - [3757] = {.lex_state = 5, .external_lex_state = 3}, - [3758] = {.lex_state = 5, .external_lex_state = 3}, - [3759] = {.lex_state = 5, .external_lex_state = 3}, - [3760] = {.lex_state = 28, .external_lex_state = 2}, - [3761] = {.lex_state = 28, .external_lex_state = 2}, - [3762] = {.lex_state = 28, .external_lex_state = 2}, - [3763] = {.lex_state = 28, .external_lex_state = 2}, - [3764] = {.lex_state = 28, .external_lex_state = 2}, - [3765] = {.lex_state = 28, .external_lex_state = 2}, - [3766] = {.lex_state = 5, .external_lex_state = 3}, - [3767] = {.lex_state = 110, .external_lex_state = 2}, - [3768] = {.lex_state = 5, .external_lex_state = 3}, - [3769] = {.lex_state = 28, .external_lex_state = 2}, - [3770] = {.lex_state = 24, .external_lex_state = 3}, - [3771] = {.lex_state = 28, .external_lex_state = 2}, - [3772] = {.lex_state = 28, .external_lex_state = 2}, - [3773] = {.lex_state = 5, .external_lex_state = 3}, - [3774] = {.lex_state = 28, .external_lex_state = 2}, - [3775] = {.lex_state = 28, .external_lex_state = 2}, - [3776] = {.lex_state = 38, .external_lex_state = 3}, - [3777] = {.lex_state = 5, .external_lex_state = 3}, - [3778] = {.lex_state = 5, .external_lex_state = 3}, - [3779] = {.lex_state = 28, .external_lex_state = 2}, - [3780] = {.lex_state = 5, .external_lex_state = 3}, - [3781] = {.lex_state = 5, .external_lex_state = 3}, - [3782] = {.lex_state = 28, .external_lex_state = 2}, - [3783] = {.lex_state = 28, .external_lex_state = 2}, - [3784] = {.lex_state = 5, .external_lex_state = 3}, - [3785] = {.lex_state = 9, .external_lex_state = 2}, - [3786] = {.lex_state = 9, .external_lex_state = 2}, - [3787] = {.lex_state = 28, .external_lex_state = 2}, - [3788] = {.lex_state = 5, .external_lex_state = 3}, - [3789] = {.lex_state = 28, .external_lex_state = 2}, - [3790] = {.lex_state = 38, .external_lex_state = 3}, - [3791] = {.lex_state = 5, .external_lex_state = 3}, - [3792] = {.lex_state = 28, .external_lex_state = 2}, - [3793] = {.lex_state = 28, .external_lex_state = 2}, - [3794] = {.lex_state = 28, .external_lex_state = 2}, - [3795] = {.lex_state = 28, .external_lex_state = 2}, - [3796] = {.lex_state = 28, .external_lex_state = 2}, - [3797] = {.lex_state = 28, .external_lex_state = 2}, - [3798] = {.lex_state = 28, .external_lex_state = 2}, - [3799] = {.lex_state = 28, .external_lex_state = 2}, - [3800] = {.lex_state = 5, .external_lex_state = 3}, - [3801] = {.lex_state = 38, .external_lex_state = 3}, - [3802] = {.lex_state = 9, .external_lex_state = 2}, - [3803] = {.lex_state = 38, .external_lex_state = 3}, - [3804] = {.lex_state = 28, .external_lex_state = 2}, - [3805] = {.lex_state = 28, .external_lex_state = 2}, - [3806] = {.lex_state = 28, .external_lex_state = 2}, - [3807] = {.lex_state = 28, .external_lex_state = 2}, - [3808] = {.lex_state = 28, .external_lex_state = 2}, - [3809] = {.lex_state = 28, .external_lex_state = 2}, - [3810] = {.lex_state = 28, .external_lex_state = 2}, - [3811] = {.lex_state = 28, .external_lex_state = 2}, - [3812] = {.lex_state = 38, .external_lex_state = 3}, - [3813] = {.lex_state = 28, .external_lex_state = 2}, - [3814] = {.lex_state = 28, .external_lex_state = 2}, - [3815] = {.lex_state = 28, .external_lex_state = 2}, - [3816] = {.lex_state = 5, .external_lex_state = 3}, - [3817] = {.lex_state = 28, .external_lex_state = 2}, - [3818] = {.lex_state = 28, .external_lex_state = 2}, - [3819] = {.lex_state = 9, .external_lex_state = 2}, - [3820] = {.lex_state = 9, .external_lex_state = 2}, - [3821] = {.lex_state = 28, .external_lex_state = 2}, - [3822] = {.lex_state = 28, .external_lex_state = 2}, - [3823] = {.lex_state = 9, .external_lex_state = 2}, - [3824] = {.lex_state = 28, .external_lex_state = 2}, - [3825] = {.lex_state = 28, .external_lex_state = 2}, - [3826] = {.lex_state = 9, .external_lex_state = 2}, - [3827] = {.lex_state = 38, .external_lex_state = 3}, - [3828] = {.lex_state = 28, .external_lex_state = 2}, - [3829] = {.lex_state = 9, .external_lex_state = 2}, - [3830] = {.lex_state = 28, .external_lex_state = 2}, - [3831] = {.lex_state = 5, .external_lex_state = 3}, - [3832] = {.lex_state = 38, .external_lex_state = 3}, - [3833] = {.lex_state = 28, .external_lex_state = 2}, - [3834] = {.lex_state = 28, .external_lex_state = 2}, - [3835] = {.lex_state = 28, .external_lex_state = 2}, - [3836] = {.lex_state = 5, .external_lex_state = 3}, - [3837] = {.lex_state = 28, .external_lex_state = 2}, - [3838] = {.lex_state = 28, .external_lex_state = 2}, - [3839] = {.lex_state = 28, .external_lex_state = 2}, - [3840] = {.lex_state = 28, .external_lex_state = 2}, - [3841] = {.lex_state = 28, .external_lex_state = 2}, - [3842] = {.lex_state = 28, .external_lex_state = 2}, - [3843] = {.lex_state = 38, .external_lex_state = 3}, - [3844] = {.lex_state = 28, .external_lex_state = 2}, - [3845] = {.lex_state = 28, .external_lex_state = 2}, - [3846] = {.lex_state = 38, .external_lex_state = 3}, - [3847] = {.lex_state = 28, .external_lex_state = 2}, - [3848] = {.lex_state = 5, .external_lex_state = 3}, - [3849] = {.lex_state = 5, .external_lex_state = 3}, - [3850] = {.lex_state = 28, .external_lex_state = 2}, - [3851] = {.lex_state = 5, .external_lex_state = 3}, - [3852] = {.lex_state = 5, .external_lex_state = 3}, - [3853] = {.lex_state = 5, .external_lex_state = 3}, - [3854] = {.lex_state = 38, .external_lex_state = 3}, - [3855] = {.lex_state = 28, .external_lex_state = 2}, - [3856] = {.lex_state = 5, .external_lex_state = 3}, - [3857] = {.lex_state = 28, .external_lex_state = 2}, - [3858] = {.lex_state = 5, .external_lex_state = 3}, - [3859] = {.lex_state = 5, .external_lex_state = 3}, - [3860] = {.lex_state = 5, .external_lex_state = 3}, - [3861] = {.lex_state = 28, .external_lex_state = 2}, - [3862] = {.lex_state = 28, .external_lex_state = 2}, - [3863] = {.lex_state = 28, .external_lex_state = 2}, - [3864] = {.lex_state = 28, .external_lex_state = 2}, - [3865] = {.lex_state = 5, .external_lex_state = 3}, - [3866] = {.lex_state = 38, .external_lex_state = 3}, - [3867] = {.lex_state = 38, .external_lex_state = 3}, - [3868] = {.lex_state = 28, .external_lex_state = 2}, - [3869] = {.lex_state = 28, .external_lex_state = 2}, - [3870] = {.lex_state = 28, .external_lex_state = 2}, - [3871] = {.lex_state = 28, .external_lex_state = 2}, - [3872] = {.lex_state = 28, .external_lex_state = 2}, - [3873] = {.lex_state = 25, .external_lex_state = 3}, - [3874] = {.lex_state = 25, .external_lex_state = 3}, - [3875] = {.lex_state = 5, .external_lex_state = 3}, - [3876] = {.lex_state = 5, .external_lex_state = 3}, - [3877] = {.lex_state = 5, .external_lex_state = 3}, - [3878] = {.lex_state = 5, .external_lex_state = 3}, - [3879] = {.lex_state = 5, .external_lex_state = 3}, - [3880] = {.lex_state = 5, .external_lex_state = 3}, - [3881] = {.lex_state = 5, .external_lex_state = 3}, - [3882] = {.lex_state = 5, .external_lex_state = 3}, - [3883] = {.lex_state = 5, .external_lex_state = 3}, - [3884] = {.lex_state = 25, .external_lex_state = 3}, - [3885] = {.lex_state = 5, .external_lex_state = 3}, - [3886] = {.lex_state = 25, .external_lex_state = 3}, - [3887] = {.lex_state = 25, .external_lex_state = 3}, - [3888] = {.lex_state = 5, .external_lex_state = 3}, - [3889] = {.lex_state = 25, .external_lex_state = 3}, - [3890] = {.lex_state = 104, .external_lex_state = 3}, - [3891] = {.lex_state = 25, .external_lex_state = 3}, - [3892] = {.lex_state = 5, .external_lex_state = 3}, - [3893] = {.lex_state = 25, .external_lex_state = 3}, - [3894] = {.lex_state = 25, .external_lex_state = 3}, - [3895] = {.lex_state = 126, .external_lex_state = 3}, - [3896] = {.lex_state = 5, .external_lex_state = 3}, - [3897] = {.lex_state = 5, .external_lex_state = 3}, - [3898] = {.lex_state = 25, .external_lex_state = 3}, - [3899] = {.lex_state = 25, .external_lex_state = 3}, - [3900] = {.lex_state = 25, .external_lex_state = 3}, - [3901] = {.lex_state = 5, .external_lex_state = 3}, - [3902] = {.lex_state = 5, .external_lex_state = 3}, - [3903] = {.lex_state = 5, .external_lex_state = 3}, - [3904] = {.lex_state = 25, .external_lex_state = 3}, - [3905] = {.lex_state = 104, .external_lex_state = 3}, - [3906] = {.lex_state = 5, .external_lex_state = 3}, - [3907] = {.lex_state = 102, .external_lex_state = 2}, - [3908] = {.lex_state = 25, .external_lex_state = 3}, - [3909] = {.lex_state = 5, .external_lex_state = 3}, - [3910] = {.lex_state = 26, .external_lex_state = 3}, - [3911] = {.lex_state = 12, .external_lex_state = 2}, - [3912] = {.lex_state = 26, .external_lex_state = 3}, - [3913] = {.lex_state = 12, .external_lex_state = 2}, - [3914] = {.lex_state = 12, .external_lex_state = 2}, - [3915] = {.lex_state = 12, .external_lex_state = 2}, - [3916] = {.lex_state = 110, .external_lex_state = 3}, - [3917] = {.lex_state = 104, .external_lex_state = 3}, - [3918] = {.lex_state = 12, .external_lex_state = 2}, - [3919] = {.lex_state = 12, .external_lex_state = 2}, - [3920] = {.lex_state = 12, .external_lex_state = 2}, - [3921] = {.lex_state = 12, .external_lex_state = 2}, - [3922] = {.lex_state = 12, .external_lex_state = 2}, - [3923] = {.lex_state = 26, .external_lex_state = 3}, - [3924] = {.lex_state = 26, .external_lex_state = 3}, - [3925] = {.lex_state = 12, .external_lex_state = 2}, - [3926] = {.lex_state = 26, .external_lex_state = 3}, - [3927] = {.lex_state = 26, .external_lex_state = 3}, - [3928] = {.lex_state = 26, .external_lex_state = 3}, - [3929] = {.lex_state = 12, .external_lex_state = 2}, - [3930] = {.lex_state = 26, .external_lex_state = 3}, - [3931] = {.lex_state = 12, .external_lex_state = 2}, - [3932] = {.lex_state = 26, .external_lex_state = 3}, - [3933] = {.lex_state = 24, .external_lex_state = 3}, - [3934] = {.lex_state = 12, .external_lex_state = 2}, - [3935] = {.lex_state = 110, .external_lex_state = 3}, - [3936] = {.lex_state = 24, .external_lex_state = 3}, - [3937] = {.lex_state = 12, .external_lex_state = 2}, - [3938] = {.lex_state = 12, .external_lex_state = 2}, - [3939] = {.lex_state = 12, .external_lex_state = 2}, - [3940] = {.lex_state = 12, .external_lex_state = 2}, - [3941] = {.lex_state = 26, .external_lex_state = 3}, - [3942] = {.lex_state = 110, .external_lex_state = 3}, - [3943] = {.lex_state = 26, .external_lex_state = 3}, - [3944] = {.lex_state = 26, .external_lex_state = 3}, - [3945] = {.lex_state = 26, .external_lex_state = 3}, - [3946] = {.lex_state = 26, .external_lex_state = 3}, - [3947] = {.lex_state = 26, .external_lex_state = 3}, - [3948] = {.lex_state = 26, .external_lex_state = 3}, - [3949] = {.lex_state = 102, .external_lex_state = 2}, - [3950] = {.lex_state = 26, .external_lex_state = 3}, - [3951] = {.lex_state = 24, .external_lex_state = 3}, - [3952] = {.lex_state = 26, .external_lex_state = 3}, - [3953] = {.lex_state = 12, .external_lex_state = 2}, - [3954] = {.lex_state = 26, .external_lex_state = 3}, - [3955] = {.lex_state = 12, .external_lex_state = 2}, - [3956] = {.lex_state = 104, .external_lex_state = 3}, - [3957] = {.lex_state = 26, .external_lex_state = 3}, - [3958] = {.lex_state = 26, .external_lex_state = 3}, - [3959] = {.lex_state = 26, .external_lex_state = 3}, - [3960] = {.lex_state = 26, .external_lex_state = 3}, - [3961] = {.lex_state = 12, .external_lex_state = 2}, - [3962] = {.lex_state = 26, .external_lex_state = 3}, - [3963] = {.lex_state = 102, .external_lex_state = 2}, - [3964] = {.lex_state = 102, .external_lex_state = 2}, - [3965] = {.lex_state = 12, .external_lex_state = 2}, - [3966] = {.lex_state = 12, .external_lex_state = 2}, - [3967] = {.lex_state = 26, .external_lex_state = 3}, - [3968] = {.lex_state = 26, .external_lex_state = 3}, - [3969] = {.lex_state = 12, .external_lex_state = 2}, - [3970] = {.lex_state = 12, .external_lex_state = 2}, - [3971] = {.lex_state = 26, .external_lex_state = 3}, - [3972] = {.lex_state = 26, .external_lex_state = 3}, - [3973] = {.lex_state = 12, .external_lex_state = 2}, - [3974] = {.lex_state = 12, .external_lex_state = 2}, - [3975] = {.lex_state = 26, .external_lex_state = 3}, - [3976] = {.lex_state = 12, .external_lex_state = 2}, - [3977] = {.lex_state = 26, .external_lex_state = 3}, - [3978] = {.lex_state = 26, .external_lex_state = 3}, - [3979] = {.lex_state = 26, .external_lex_state = 3}, - [3980] = {.lex_state = 12, .external_lex_state = 2}, - [3981] = {.lex_state = 26, .external_lex_state = 3}, - [3982] = {.lex_state = 26, .external_lex_state = 3}, - [3983] = {.lex_state = 102, .external_lex_state = 2}, - [3984] = {.lex_state = 26, .external_lex_state = 3}, - [3985] = {.lex_state = 12, .external_lex_state = 2}, - [3986] = {.lex_state = 102, .external_lex_state = 2}, - [3987] = {.lex_state = 12, .external_lex_state = 2}, - [3988] = {.lex_state = 26, .external_lex_state = 3}, - [3989] = {.lex_state = 12, .external_lex_state = 2}, - [3990] = {.lex_state = 26, .external_lex_state = 3}, - [3991] = {.lex_state = 26, .external_lex_state = 3}, - [3992] = {.lex_state = 26, .external_lex_state = 3}, - [3993] = {.lex_state = 26, .external_lex_state = 3}, - [3994] = {.lex_state = 12, .external_lex_state = 2}, - [3995] = {.lex_state = 26, .external_lex_state = 3}, - [3996] = {.lex_state = 12, .external_lex_state = 2}, - [3997] = {.lex_state = 12, .external_lex_state = 2}, - [3998] = {.lex_state = 12, .external_lex_state = 2}, - [3999] = {.lex_state = 12, .external_lex_state = 2}, - [4000] = {.lex_state = 12, .external_lex_state = 2}, - [4001] = {.lex_state = 12, .external_lex_state = 2}, - [4002] = {.lex_state = 12, .external_lex_state = 2}, - [4003] = {.lex_state = 12, .external_lex_state = 2}, - [4004] = {.lex_state = 26, .external_lex_state = 3}, - [4005] = {.lex_state = 102, .external_lex_state = 2}, - [4006] = {.lex_state = 26, .external_lex_state = 3}, - [4007] = {.lex_state = 12, .external_lex_state = 2}, - [4008] = {.lex_state = 26, .external_lex_state = 3}, - [4009] = {.lex_state = 24, .external_lex_state = 3}, - [4010] = {.lex_state = 12, .external_lex_state = 2}, - [4011] = {.lex_state = 102, .external_lex_state = 2}, - [4012] = {.lex_state = 12, .external_lex_state = 2}, - [4013] = {.lex_state = 12, .external_lex_state = 2}, - [4014] = {.lex_state = 12, .external_lex_state = 2}, - [4015] = {.lex_state = 110, .external_lex_state = 3}, - [4016] = {.lex_state = 12, .external_lex_state = 2}, - [4017] = {.lex_state = 12, .external_lex_state = 2}, - [4018] = {.lex_state = 12, .external_lex_state = 2}, - [4019] = {.lex_state = 12, .external_lex_state = 2}, - [4020] = {.lex_state = 12, .external_lex_state = 2}, - [4021] = {.lex_state = 12, .external_lex_state = 2}, - [4022] = {.lex_state = 12, .external_lex_state = 2}, - [4023] = {.lex_state = 110, .external_lex_state = 3}, - [4024] = {.lex_state = 12, .external_lex_state = 2}, - [4025] = {.lex_state = 12, .external_lex_state = 2}, - [4026] = {.lex_state = 12, .external_lex_state = 2}, - [4027] = {.lex_state = 12, .external_lex_state = 2}, - [4028] = {.lex_state = 12, .external_lex_state = 2}, - [4029] = {.lex_state = 12, .external_lex_state = 2}, - [4030] = {.lex_state = 12, .external_lex_state = 2}, - [4031] = {.lex_state = 12, .external_lex_state = 2}, - [4032] = {.lex_state = 12, .external_lex_state = 2}, - [4033] = {.lex_state = 12, .external_lex_state = 2}, - [4034] = {.lex_state = 12, .external_lex_state = 2}, - [4035] = {.lex_state = 102, .external_lex_state = 2}, - [4036] = {.lex_state = 12, .external_lex_state = 2}, - [4037] = {.lex_state = 26, .external_lex_state = 3}, - [4038] = {.lex_state = 26, .external_lex_state = 3}, - [4039] = {.lex_state = 26, .external_lex_state = 3}, - [4040] = {.lex_state = 26, .external_lex_state = 3}, - [4041] = {.lex_state = 26, .external_lex_state = 3}, - [4042] = {.lex_state = 26, .external_lex_state = 3}, - [4043] = {.lex_state = 26, .external_lex_state = 3}, - [4044] = {.lex_state = 26, .external_lex_state = 3}, - [4045] = {.lex_state = 12, .external_lex_state = 2}, - [4046] = {.lex_state = 26, .external_lex_state = 3}, - [4047] = {.lex_state = 26, .external_lex_state = 3}, - [4048] = {.lex_state = 12, .external_lex_state = 2}, - [4049] = {.lex_state = 26, .external_lex_state = 3}, - [4050] = {.lex_state = 26, .external_lex_state = 3}, - [4051] = {.lex_state = 26, .external_lex_state = 3}, - [4052] = {.lex_state = 12, .external_lex_state = 2}, - [4053] = {.lex_state = 12, .external_lex_state = 2}, - [4054] = {.lex_state = 12, .external_lex_state = 2}, - [4055] = {.lex_state = 4, .external_lex_state = 2}, - [4056] = {.lex_state = 5, .external_lex_state = 3}, - [4057] = {.lex_state = 26, .external_lex_state = 3}, - [4058] = {.lex_state = 26, .external_lex_state = 3}, - [4059] = {.lex_state = 26, .external_lex_state = 3}, - [4060] = {.lex_state = 26, .external_lex_state = 3}, - [4061] = {.lex_state = 26, .external_lex_state = 3}, - [4062] = {.lex_state = 26, .external_lex_state = 3}, - [4063] = {.lex_state = 26, .external_lex_state = 3}, - [4064] = {.lex_state = 26, .external_lex_state = 3}, - [4065] = {.lex_state = 26, .external_lex_state = 3}, - [4066] = {.lex_state = 26, .external_lex_state = 3}, - [4067] = {.lex_state = 26, .external_lex_state = 3}, - [4068] = {.lex_state = 26, .external_lex_state = 3}, - [4069] = {.lex_state = 26, .external_lex_state = 3}, - [4070] = {.lex_state = 26, .external_lex_state = 3}, - [4071] = {.lex_state = 26, .external_lex_state = 3}, - [4072] = {.lex_state = 12, .external_lex_state = 2}, - [4073] = {.lex_state = 12, .external_lex_state = 2}, - [4074] = {.lex_state = 12, .external_lex_state = 2}, - [4075] = {.lex_state = 26, .external_lex_state = 3}, - [4076] = {.lex_state = 12, .external_lex_state = 2}, - [4077] = {.lex_state = 26, .external_lex_state = 3}, - [4078] = {.lex_state = 26, .external_lex_state = 3}, - [4079] = {.lex_state = 26, .external_lex_state = 3}, - [4080] = {.lex_state = 26, .external_lex_state = 3}, - [4081] = {.lex_state = 26, .external_lex_state = 3}, - [4082] = {.lex_state = 12, .external_lex_state = 2}, - [4083] = {.lex_state = 26, .external_lex_state = 3}, - [4084] = {.lex_state = 26, .external_lex_state = 3}, - [4085] = {.lex_state = 12, .external_lex_state = 2}, - [4086] = {.lex_state = 26, .external_lex_state = 3}, - [4087] = {.lex_state = 26, .external_lex_state = 3}, - [4088] = {.lex_state = 26, .external_lex_state = 3}, - [4089] = {.lex_state = 26, .external_lex_state = 3}, - [4090] = {.lex_state = 26, .external_lex_state = 3}, - [4091] = {.lex_state = 26, .external_lex_state = 3}, - [4092] = {.lex_state = 12, .external_lex_state = 2}, - [4093] = {.lex_state = 12, .external_lex_state = 2}, - [4094] = {.lex_state = 26, .external_lex_state = 3}, - [4095] = {.lex_state = 26, .external_lex_state = 3}, - [4096] = {.lex_state = 26, .external_lex_state = 3}, - [4097] = {.lex_state = 5, .external_lex_state = 3}, - [4098] = {.lex_state = 26, .external_lex_state = 3}, - [4099] = {.lex_state = 26, .external_lex_state = 3}, - [4100] = {.lex_state = 26, .external_lex_state = 3}, - [4101] = {.lex_state = 26, .external_lex_state = 3}, - [4102] = {.lex_state = 26, .external_lex_state = 3}, - [4103] = {.lex_state = 26, .external_lex_state = 3}, - [4104] = {.lex_state = 12, .external_lex_state = 2}, - [4105] = {.lex_state = 26, .external_lex_state = 3}, - [4106] = {.lex_state = 26, .external_lex_state = 3}, - [4107] = {.lex_state = 26, .external_lex_state = 3}, - [4108] = {.lex_state = 26, .external_lex_state = 3}, - [4109] = {.lex_state = 26, .external_lex_state = 3}, - [4110] = {.lex_state = 26, .external_lex_state = 3}, - [4111] = {.lex_state = 27, .external_lex_state = 3}, - [4112] = {.lex_state = 27, .external_lex_state = 3}, - [4113] = {.lex_state = 27, .external_lex_state = 3}, - [4114] = {.lex_state = 27, .external_lex_state = 3}, - [4115] = {.lex_state = 27, .external_lex_state = 3}, - [4116] = {.lex_state = 25, .external_lex_state = 3}, - [4117] = {.lex_state = 12, .external_lex_state = 2}, - [4118] = {.lex_state = 27, .external_lex_state = 3}, - [4119] = {.lex_state = 110, .external_lex_state = 3}, - [4120] = {.lex_state = 27, .external_lex_state = 3}, - [4121] = {.lex_state = 110, .external_lex_state = 3}, - [4122] = {.lex_state = 12, .external_lex_state = 2}, - [4123] = {.lex_state = 25, .external_lex_state = 3}, - [4124] = {.lex_state = 12, .external_lex_state = 2}, - [4125] = {.lex_state = 25, .external_lex_state = 3}, - [4126] = {.lex_state = 110, .external_lex_state = 3}, - [4127] = {.lex_state = 25, .external_lex_state = 3}, - [4128] = {.lex_state = 33, .external_lex_state = 2}, - [4129] = {.lex_state = 12, .external_lex_state = 2}, - [4130] = {.lex_state = 27, .external_lex_state = 3}, - [4131] = {.lex_state = 25, .external_lex_state = 3}, - [4132] = {.lex_state = 27, .external_lex_state = 3}, - [4133] = {.lex_state = 25, .external_lex_state = 3}, - [4134] = {.lex_state = 27, .external_lex_state = 3}, - [4135] = {.lex_state = 25, .external_lex_state = 3}, - [4136] = {.lex_state = 25, .external_lex_state = 3}, - [4137] = {.lex_state = 25, .external_lex_state = 3}, - [4138] = {.lex_state = 25, .external_lex_state = 3}, - [4139] = {.lex_state = 25, .external_lex_state = 3}, - [4140] = {.lex_state = 27, .external_lex_state = 3}, - [4141] = {.lex_state = 27, .external_lex_state = 3}, - [4142] = {.lex_state = 27, .external_lex_state = 3}, - [4143] = {.lex_state = 104, .external_lex_state = 3}, - [4144] = {.lex_state = 27, .external_lex_state = 3}, - [4145] = {.lex_state = 12, .external_lex_state = 2}, - [4146] = {.lex_state = 104, .external_lex_state = 3}, - [4147] = {.lex_state = 27, .external_lex_state = 3}, - [4148] = {.lex_state = 27, .external_lex_state = 3}, - [4149] = {.lex_state = 110, .external_lex_state = 3}, - [4150] = {.lex_state = 15, .external_lex_state = 3}, - [4151] = {.lex_state = 110, .external_lex_state = 3}, - [4152] = {.lex_state = 25, .external_lex_state = 3}, - [4153] = {.lex_state = 25, .external_lex_state = 3}, - [4154] = {.lex_state = 25, .external_lex_state = 3}, - [4155] = {.lex_state = 25, .external_lex_state = 3}, - [4156] = {.lex_state = 104, .external_lex_state = 3}, - [4157] = {.lex_state = 25, .external_lex_state = 3}, - [4158] = {.lex_state = 4, .external_lex_state = 2}, - [4159] = {.lex_state = 20, .external_lex_state = 2}, - [4160] = {.lex_state = 5, .external_lex_state = 3}, - [4161] = {.lex_state = 5, .external_lex_state = 3}, - [4162] = {.lex_state = 15, .external_lex_state = 3}, - [4163] = {.lex_state = 4, .external_lex_state = 2}, - [4164] = {.lex_state = 4, .external_lex_state = 2}, - [4165] = {.lex_state = 4, .external_lex_state = 2}, - [4166] = {.lex_state = 4, .external_lex_state = 2}, - [4167] = {.lex_state = 4, .external_lex_state = 2}, - [4168] = {.lex_state = 4, .external_lex_state = 2}, - [4169] = {.lex_state = 4, .external_lex_state = 2}, - [4170] = {.lex_state = 5, .external_lex_state = 3}, - [4171] = {.lex_state = 4, .external_lex_state = 2}, - [4172] = {.lex_state = 4, .external_lex_state = 2}, - [4173] = {.lex_state = 4, .external_lex_state = 2}, - [4174] = {.lex_state = 5, .external_lex_state = 3}, - [4175] = {.lex_state = 4, .external_lex_state = 2}, - [4176] = {.lex_state = 4, .external_lex_state = 2}, - [4177] = {.lex_state = 4, .external_lex_state = 2}, - [4178] = {.lex_state = 4, .external_lex_state = 2}, - [4179] = {.lex_state = 15, .external_lex_state = 3}, - [4180] = {.lex_state = 4, .external_lex_state = 2}, - [4181] = {.lex_state = 4, .external_lex_state = 2}, - [4182] = {.lex_state = 5, .external_lex_state = 3}, - [4183] = {.lex_state = 4, .external_lex_state = 2}, - [4184] = {.lex_state = 27, .external_lex_state = 3}, - [4185] = {.lex_state = 15, .external_lex_state = 3}, - [4186] = {.lex_state = 5, .external_lex_state = 3}, - [4187] = {.lex_state = 4, .external_lex_state = 2}, - [4188] = {.lex_state = 4, .external_lex_state = 2}, - [4189] = {.lex_state = 4, .external_lex_state = 2}, - [4190] = {.lex_state = 4, .external_lex_state = 2}, - [4191] = {.lex_state = 5, .external_lex_state = 3}, - [4192] = {.lex_state = 4, .external_lex_state = 2}, - [4193] = {.lex_state = 15, .external_lex_state = 3}, - [4194] = {.lex_state = 4, .external_lex_state = 2}, - [4195] = {.lex_state = 4, .external_lex_state = 2}, - [4196] = {.lex_state = 4, .external_lex_state = 2}, - [4197] = {.lex_state = 4, .external_lex_state = 2}, - [4198] = {.lex_state = 4, .external_lex_state = 2}, - [4199] = {.lex_state = 4, .external_lex_state = 2}, - [4200] = {.lex_state = 104, .external_lex_state = 3}, - [4201] = {.lex_state = 4, .external_lex_state = 2}, - [4202] = {.lex_state = 4, .external_lex_state = 2}, - [4203] = {.lex_state = 4, .external_lex_state = 2}, - [4204] = {.lex_state = 4, .external_lex_state = 2}, - [4205] = {.lex_state = 4, .external_lex_state = 2}, - [4206] = {.lex_state = 5, .external_lex_state = 3}, - [4207] = {.lex_state = 4, .external_lex_state = 2}, - [4208] = {.lex_state = 104, .external_lex_state = 3}, - [4209] = {.lex_state = 4, .external_lex_state = 2}, - [4210] = {.lex_state = 4, .external_lex_state = 2}, - [4211] = {.lex_state = 5, .external_lex_state = 3}, - [4212] = {.lex_state = 15, .external_lex_state = 3}, - [4213] = {.lex_state = 4, .external_lex_state = 2}, - [4214] = {.lex_state = 4, .external_lex_state = 2}, - [4215] = {.lex_state = 4, .external_lex_state = 2}, - [4216] = {.lex_state = 4, .external_lex_state = 2}, - [4217] = {.lex_state = 5, .external_lex_state = 3}, - [4218] = {.lex_state = 4, .external_lex_state = 2}, - [4219] = {.lex_state = 4, .external_lex_state = 2}, - [4220] = {.lex_state = 4, .external_lex_state = 2}, - [4221] = {.lex_state = 4, .external_lex_state = 2}, - [4222] = {.lex_state = 104, .external_lex_state = 3}, - [4223] = {.lex_state = 4, .external_lex_state = 2}, - [4224] = {.lex_state = 4, .external_lex_state = 2}, - [4225] = {.lex_state = 4, .external_lex_state = 2}, - [4226] = {.lex_state = 4, .external_lex_state = 2}, - [4227] = {.lex_state = 4, .external_lex_state = 2}, - [4228] = {.lex_state = 20, .external_lex_state = 2}, - [4229] = {.lex_state = 5, .external_lex_state = 3}, - [4230] = {.lex_state = 4, .external_lex_state = 2}, - [4231] = {.lex_state = 4, .external_lex_state = 2}, - [4232] = {.lex_state = 4, .external_lex_state = 2}, - [4233] = {.lex_state = 104, .external_lex_state = 3}, - [4234] = {.lex_state = 4, .external_lex_state = 2}, - [4235] = {.lex_state = 4, .external_lex_state = 2}, - [4236] = {.lex_state = 4, .external_lex_state = 2}, - [4237] = {.lex_state = 4, .external_lex_state = 2}, - [4238] = {.lex_state = 5, .external_lex_state = 3}, - [4239] = {.lex_state = 104, .external_lex_state = 3}, - [4240] = {.lex_state = 4, .external_lex_state = 2}, - [4241] = {.lex_state = 4, .external_lex_state = 2}, - [4242] = {.lex_state = 104, .external_lex_state = 3}, - [4243] = {.lex_state = 4, .external_lex_state = 2}, - [4244] = {.lex_state = 4, .external_lex_state = 2}, - [4245] = {.lex_state = 5, .external_lex_state = 3}, - [4246] = {.lex_state = 24, .external_lex_state = 3}, - [4247] = {.lex_state = 5, .external_lex_state = 3}, - [4248] = {.lex_state = 26, .external_lex_state = 3}, - [4249] = {.lex_state = 5, .external_lex_state = 3}, - [4250] = {.lex_state = 5, .external_lex_state = 3}, - [4251] = {.lex_state = 25, .external_lex_state = 3}, - [4252] = {.lex_state = 5, .external_lex_state = 3}, - [4253] = {.lex_state = 5, .external_lex_state = 3}, - [4254] = {.lex_state = 5, .external_lex_state = 3}, - [4255] = {.lex_state = 5, .external_lex_state = 3}, - [4256] = {.lex_state = 26, .external_lex_state = 3}, - [4257] = {.lex_state = 26, .external_lex_state = 3}, - [4258] = {.lex_state = 5, .external_lex_state = 3}, - [4259] = {.lex_state = 5, .external_lex_state = 3}, - [4260] = {.lex_state = 5, .external_lex_state = 3}, - [4261] = {.lex_state = 5, .external_lex_state = 3}, - [4262] = {.lex_state = 26, .external_lex_state = 3}, - [4263] = {.lex_state = 26, .external_lex_state = 3}, - [4264] = {.lex_state = 5, .external_lex_state = 3}, - [4265] = {.lex_state = 5, .external_lex_state = 3}, - [4266] = {.lex_state = 5, .external_lex_state = 3}, - [4267] = {.lex_state = 5, .external_lex_state = 3}, - [4268] = {.lex_state = 25, .external_lex_state = 3}, - [4269] = {.lex_state = 24, .external_lex_state = 3}, - [4270] = {.lex_state = 5, .external_lex_state = 3}, - [4271] = {.lex_state = 25, .external_lex_state = 3}, - [4272] = {.lex_state = 5, .external_lex_state = 3}, - [4273] = {.lex_state = 25, .external_lex_state = 3}, - [4274] = {.lex_state = 5, .external_lex_state = 3}, - [4275] = {.lex_state = 25, .external_lex_state = 3}, - [4276] = {.lex_state = 26, .external_lex_state = 3}, - [4277] = {.lex_state = 24, .external_lex_state = 3}, - [4278] = {.lex_state = 5, .external_lex_state = 3}, - [4279] = {.lex_state = 25, .external_lex_state = 3}, - [4280] = {.lex_state = 25, .external_lex_state = 3}, - [4281] = {.lex_state = 12, .external_lex_state = 2}, - [4282] = {.lex_state = 5, .external_lex_state = 3}, - [4283] = {.lex_state = 5, .external_lex_state = 3}, - [4284] = {.lex_state = 5, .external_lex_state = 3}, - [4285] = {.lex_state = 25, .external_lex_state = 3}, - [4286] = {.lex_state = 5, .external_lex_state = 3}, - [4287] = {.lex_state = 25, .external_lex_state = 3}, - [4288] = {.lex_state = 104, .external_lex_state = 3}, - [4289] = {.lex_state = 26, .external_lex_state = 3}, - [4290] = {.lex_state = 26, .external_lex_state = 3}, - [4291] = {.lex_state = 29, .external_lex_state = 2}, - [4292] = {.lex_state = 26, .external_lex_state = 3}, - [4293] = {.lex_state = 26, .external_lex_state = 3}, - [4294] = {.lex_state = 5, .external_lex_state = 3}, - [4295] = {.lex_state = 5, .external_lex_state = 3}, - [4296] = {.lex_state = 5, .external_lex_state = 3}, - [4297] = {.lex_state = 26, .external_lex_state = 3}, - [4298] = {.lex_state = 5, .external_lex_state = 3}, - [4299] = {.lex_state = 24, .external_lex_state = 3}, - [4300] = {.lex_state = 5, .external_lex_state = 3}, - [4301] = {.lex_state = 5, .external_lex_state = 3}, - [4302] = {.lex_state = 26, .external_lex_state = 3}, - [4303] = {.lex_state = 5, .external_lex_state = 3}, - [4304] = {.lex_state = 104, .external_lex_state = 3}, - [4305] = {.lex_state = 5, .external_lex_state = 3}, - [4306] = {.lex_state = 119, .external_lex_state = 3}, - [4307] = {.lex_state = 25, .external_lex_state = 3}, - [4308] = {.lex_state = 26, .external_lex_state = 3}, - [4309] = {.lex_state = 5, .external_lex_state = 3}, - [4310] = {.lex_state = 26, .external_lex_state = 3}, - [4311] = {.lex_state = 26, .external_lex_state = 3}, - [4312] = {.lex_state = 24, .external_lex_state = 3}, - [4313] = {.lex_state = 5, .external_lex_state = 3}, - [4314] = {.lex_state = 5, .external_lex_state = 3}, - [4315] = {.lex_state = 104, .external_lex_state = 3}, - [4316] = {.lex_state = 26, .external_lex_state = 3}, - [4317] = {.lex_state = 5, .external_lex_state = 3}, - [4318] = {.lex_state = 5, .external_lex_state = 3}, - [4319] = {.lex_state = 5, .external_lex_state = 3}, - [4320] = {.lex_state = 26, .external_lex_state = 3}, - [4321] = {.lex_state = 5, .external_lex_state = 3}, - [4322] = {.lex_state = 5, .external_lex_state = 3}, - [4323] = {.lex_state = 5, .external_lex_state = 3}, - [4324] = {.lex_state = 5, .external_lex_state = 3}, - [4325] = {.lex_state = 26, .external_lex_state = 3}, - [4326] = {.lex_state = 26, .external_lex_state = 3}, - [4327] = {.lex_state = 12, .external_lex_state = 2}, - [4328] = {.lex_state = 5, .external_lex_state = 3}, - [4329] = {.lex_state = 5, .external_lex_state = 3}, - [4330] = {.lex_state = 25, .external_lex_state = 3}, - [4331] = {.lex_state = 5, .external_lex_state = 3}, - [4332] = {.lex_state = 5, .external_lex_state = 3}, - [4333] = {.lex_state = 26, .external_lex_state = 3}, - [4334] = {.lex_state = 5, .external_lex_state = 3}, - [4335] = {.lex_state = 5, .external_lex_state = 3}, - [4336] = {.lex_state = 5, .external_lex_state = 3}, - [4337] = {.lex_state = 5, .external_lex_state = 3}, - [4338] = {.lex_state = 5, .external_lex_state = 3}, - [4339] = {.lex_state = 5, .external_lex_state = 3}, - [4340] = {.lex_state = 26, .external_lex_state = 3}, - [4341] = {.lex_state = 26, .external_lex_state = 3}, - [4342] = {.lex_state = 26, .external_lex_state = 3}, - [4343] = {.lex_state = 25, .external_lex_state = 3}, - [4344] = {.lex_state = 5, .external_lex_state = 3}, - [4345] = {.lex_state = 5, .external_lex_state = 3}, - [4346] = {.lex_state = 5, .external_lex_state = 3}, - [4347] = {.lex_state = 25, .external_lex_state = 3}, - [4348] = {.lex_state = 119, .external_lex_state = 3}, - [4349] = {.lex_state = 5, .external_lex_state = 3}, - [4350] = {.lex_state = 25, .external_lex_state = 3}, - [4351] = {.lex_state = 5, .external_lex_state = 3}, - [4352] = {.lex_state = 5, .external_lex_state = 3}, - [4353] = {.lex_state = 25, .external_lex_state = 3}, - [4354] = {.lex_state = 5, .external_lex_state = 3}, - [4355] = {.lex_state = 25, .external_lex_state = 3}, - [4356] = {.lex_state = 5, .external_lex_state = 3}, - [4357] = {.lex_state = 5, .external_lex_state = 3}, - [4358] = {.lex_state = 5, .external_lex_state = 3}, - [4359] = {.lex_state = 24, .external_lex_state = 3}, - [4360] = {.lex_state = 24, .external_lex_state = 3}, - [4361] = {.lex_state = 5, .external_lex_state = 3}, - [4362] = {.lex_state = 26, .external_lex_state = 3}, - [4363] = {.lex_state = 24, .external_lex_state = 3}, - [4364] = {.lex_state = 5, .external_lex_state = 3}, - [4365] = {.lex_state = 5, .external_lex_state = 3}, - [4366] = {.lex_state = 5, .external_lex_state = 3}, - [4367] = {.lex_state = 5, .external_lex_state = 3}, - [4368] = {.lex_state = 5, .external_lex_state = 3}, - [4369] = {.lex_state = 5, .external_lex_state = 3}, - [4370] = {.lex_state = 5, .external_lex_state = 3}, - [4371] = {.lex_state = 24, .external_lex_state = 3}, - [4372] = {.lex_state = 24, .external_lex_state = 3}, - [4373] = {.lex_state = 5, .external_lex_state = 3}, - [4374] = {.lex_state = 5, .external_lex_state = 3}, - [4375] = {.lex_state = 5, .external_lex_state = 3}, - [4376] = {.lex_state = 5, .external_lex_state = 3}, - [4377] = {.lex_state = 5, .external_lex_state = 3}, - [4378] = {.lex_state = 5, .external_lex_state = 3}, - [4379] = {.lex_state = 5, .external_lex_state = 3}, - [4380] = {.lex_state = 5, .external_lex_state = 3}, - [4381] = {.lex_state = 5, .external_lex_state = 3}, - [4382] = {.lex_state = 26, .external_lex_state = 3}, - [4383] = {.lex_state = 5, .external_lex_state = 3}, - [4384] = {.lex_state = 26, .external_lex_state = 3}, - [4385] = {.lex_state = 5, .external_lex_state = 3}, - [4386] = {.lex_state = 5, .external_lex_state = 3}, - [4387] = {.lex_state = 5, .external_lex_state = 3}, - [4388] = {.lex_state = 5, .external_lex_state = 3}, - [4389] = {.lex_state = 5, .external_lex_state = 3}, - [4390] = {.lex_state = 5, .external_lex_state = 3}, - [4391] = {.lex_state = 5, .external_lex_state = 3}, - [4392] = {.lex_state = 5, .external_lex_state = 3}, - [4393] = {.lex_state = 5, .external_lex_state = 3}, - [4394] = {.lex_state = 5, .external_lex_state = 3}, - [4395] = {.lex_state = 5, .external_lex_state = 3}, - [4396] = {.lex_state = 5, .external_lex_state = 3}, - [4397] = {.lex_state = 5, .external_lex_state = 3}, - [4398] = {.lex_state = 5, .external_lex_state = 3}, - [4399] = {.lex_state = 26, .external_lex_state = 3}, - [4400] = {.lex_state = 26, .external_lex_state = 3}, - [4401] = {.lex_state = 26, .external_lex_state = 3}, - [4402] = {.lex_state = 5, .external_lex_state = 3}, - [4403] = {.lex_state = 26, .external_lex_state = 3}, - [4404] = {.lex_state = 5, .external_lex_state = 3}, - [4405] = {.lex_state = 5, .external_lex_state = 3}, - [4406] = {.lex_state = 5, .external_lex_state = 3}, - [4407] = {.lex_state = 29, .external_lex_state = 2}, - [4408] = {.lex_state = 5, .external_lex_state = 3}, - [4409] = {.lex_state = 24, .external_lex_state = 3}, - [4410] = {.lex_state = 12, .external_lex_state = 2}, - [4411] = {.lex_state = 5, .external_lex_state = 3}, - [4412] = {.lex_state = 5, .external_lex_state = 3}, - [4413] = {.lex_state = 24, .external_lex_state = 3}, - [4414] = {.lex_state = 24, .external_lex_state = 3}, - [4415] = {.lex_state = 24, .external_lex_state = 3}, - [4416] = {.lex_state = 24, .external_lex_state = 3}, - [4417] = {.lex_state = 24, .external_lex_state = 3}, - [4418] = {.lex_state = 24, .external_lex_state = 3}, - [4419] = {.lex_state = 24, .external_lex_state = 3}, - [4420] = {.lex_state = 24, .external_lex_state = 3}, - [4421] = {.lex_state = 24, .external_lex_state = 3}, - [4422] = {.lex_state = 30, .external_lex_state = 2}, - [4423] = {.lex_state = 24, .external_lex_state = 3}, - [4424] = {.lex_state = 29, .external_lex_state = 2}, - [4425] = {.lex_state = 24, .external_lex_state = 3}, - [4426] = {.lex_state = 24, .external_lex_state = 3}, - [4427] = {.lex_state = 24, .external_lex_state = 3}, - [4428] = {.lex_state = 30, .external_lex_state = 2}, - [4429] = {.lex_state = 119, .external_lex_state = 3}, - [4430] = {.lex_state = 24, .external_lex_state = 3}, - [4431] = {.lex_state = 24, .external_lex_state = 3}, - [4432] = {.lex_state = 24, .external_lex_state = 3}, - [4433] = {.lex_state = 24, .external_lex_state = 3}, - [4434] = {.lex_state = 24, .external_lex_state = 3}, - [4435] = {.lex_state = 24, .external_lex_state = 3}, - [4436] = {.lex_state = 24, .external_lex_state = 3}, - [4437] = {.lex_state = 24, .external_lex_state = 3}, - [4438] = {.lex_state = 30, .external_lex_state = 2}, - [4439] = {.lex_state = 24, .external_lex_state = 3}, - [4440] = {.lex_state = 24, .external_lex_state = 3}, - [4441] = {.lex_state = 24, .external_lex_state = 3}, - [4442] = {.lex_state = 110, .external_lex_state = 3}, - [4443] = {.lex_state = 110, .external_lex_state = 3}, - [4444] = {.lex_state = 24, .external_lex_state = 3}, - [4445] = {.lex_state = 24, .external_lex_state = 3}, - [4446] = {.lex_state = 24, .external_lex_state = 3}, - [4447] = {.lex_state = 24, .external_lex_state = 3}, - [4448] = {.lex_state = 24, .external_lex_state = 3}, - [4449] = {.lex_state = 24, .external_lex_state = 3}, - [4450] = {.lex_state = 24, .external_lex_state = 3}, - [4451] = {.lex_state = 5, .external_lex_state = 3}, - [4452] = {.lex_state = 29, .external_lex_state = 2}, - [4453] = {.lex_state = 30, .external_lex_state = 2}, - [4454] = {.lex_state = 30, .external_lex_state = 2}, - [4455] = {.lex_state = 24, .external_lex_state = 3}, - [4456] = {.lex_state = 24, .external_lex_state = 3}, - [4457] = {.lex_state = 24, .external_lex_state = 3}, - [4458] = {.lex_state = 30, .external_lex_state = 2}, - [4459] = {.lex_state = 5, .external_lex_state = 3}, - [4460] = {.lex_state = 24, .external_lex_state = 3}, - [4461] = {.lex_state = 5, .external_lex_state = 3}, - [4462] = {.lex_state = 30, .external_lex_state = 2}, - [4463] = {.lex_state = 24, .external_lex_state = 3}, - [4464] = {.lex_state = 24, .external_lex_state = 3}, - [4465] = {.lex_state = 30, .external_lex_state = 2}, - [4466] = {.lex_state = 24, .external_lex_state = 3}, - [4467] = {.lex_state = 24, .external_lex_state = 3}, - [4468] = {.lex_state = 5, .external_lex_state = 3}, - [4469] = {.lex_state = 24, .external_lex_state = 3}, - [4470] = {.lex_state = 24, .external_lex_state = 3}, - [4471] = {.lex_state = 29, .external_lex_state = 2}, - [4472] = {.lex_state = 30, .external_lex_state = 2}, - [4473] = {.lex_state = 30, .external_lex_state = 2}, - [4474] = {.lex_state = 30, .external_lex_state = 2}, - [4475] = {.lex_state = 24, .external_lex_state = 3}, - [4476] = {.lex_state = 24, .external_lex_state = 3}, - [4477] = {.lex_state = 24, .external_lex_state = 3}, - [4478] = {.lex_state = 24, .external_lex_state = 3}, - [4479] = {.lex_state = 24, .external_lex_state = 3}, - [4480] = {.lex_state = 24, .external_lex_state = 3}, - [4481] = {.lex_state = 24, .external_lex_state = 3}, - [4482] = {.lex_state = 24, .external_lex_state = 3}, - [4483] = {.lex_state = 24, .external_lex_state = 3}, - [4484] = {.lex_state = 24, .external_lex_state = 3}, - [4485] = {.lex_state = 24, .external_lex_state = 3}, - [4486] = {.lex_state = 24, .external_lex_state = 3}, - [4487] = {.lex_state = 24, .external_lex_state = 3}, - [4488] = {.lex_state = 30, .external_lex_state = 2}, - [4489] = {.lex_state = 24, .external_lex_state = 3}, - [4490] = {.lex_state = 24, .external_lex_state = 3}, - [4491] = {.lex_state = 110, .external_lex_state = 3}, - [4492] = {.lex_state = 24, .external_lex_state = 3}, - [4493] = {.lex_state = 24, .external_lex_state = 3}, - [4494] = {.lex_state = 29, .external_lex_state = 2}, - [4495] = {.lex_state = 6, .external_lex_state = 3}, - [4496] = {.lex_state = 29, .external_lex_state = 2}, - [4497] = {.lex_state = 29, .external_lex_state = 2}, - [4498] = {.lex_state = 29, .external_lex_state = 2}, - [4499] = {.lex_state = 26, .external_lex_state = 3}, - [4500] = {.lex_state = 29, .external_lex_state = 2}, - [4501] = {.lex_state = 124, .external_lex_state = 3}, - [4502] = {.lex_state = 110, .external_lex_state = 3}, - [4503] = {.lex_state = 124, .external_lex_state = 3}, - [4504] = {.lex_state = 26, .external_lex_state = 3}, - [4505] = {.lex_state = 119, .external_lex_state = 3}, - [4506] = {.lex_state = 119, .external_lex_state = 3}, - [4507] = {.lex_state = 6, .external_lex_state = 3}, - [4508] = {.lex_state = 26, .external_lex_state = 3}, - [4509] = {.lex_state = 29, .external_lex_state = 2}, - [4510] = {.lex_state = 26, .external_lex_state = 3}, - [4511] = {.lex_state = 29, .external_lex_state = 2}, - [4512] = {.lex_state = 29, .external_lex_state = 2}, - [4513] = {.lex_state = 29, .external_lex_state = 2}, - [4514] = {.lex_state = 29, .external_lex_state = 2}, - [4515] = {.lex_state = 29, .external_lex_state = 2}, - [4516] = {.lex_state = 29, .external_lex_state = 2}, - [4517] = {.lex_state = 29, .external_lex_state = 2}, - [4518] = {.lex_state = 29, .external_lex_state = 2}, - [4519] = {.lex_state = 26, .external_lex_state = 3}, - [4520] = {.lex_state = 26, .external_lex_state = 3}, - [4521] = {.lex_state = 29, .external_lex_state = 2}, - [4522] = {.lex_state = 6, .external_lex_state = 3}, - [4523] = {.lex_state = 29, .external_lex_state = 2}, - [4524] = {.lex_state = 29, .external_lex_state = 2}, - [4525] = {.lex_state = 24, .external_lex_state = 3}, - [4526] = {.lex_state = 29, .external_lex_state = 2}, - [4527] = {.lex_state = 29, .external_lex_state = 2}, - [4528] = {.lex_state = 29, .external_lex_state = 2}, - [4529] = {.lex_state = 24, .external_lex_state = 3}, - [4530] = {.lex_state = 119, .external_lex_state = 3}, - [4531] = {.lex_state = 24, .external_lex_state = 3}, - [4532] = {.lex_state = 29, .external_lex_state = 2}, - [4533] = {.lex_state = 29, .external_lex_state = 2}, - [4534] = {.lex_state = 24, .external_lex_state = 3}, - [4535] = {.lex_state = 29, .external_lex_state = 2}, - [4536] = {.lex_state = 29, .external_lex_state = 2}, - [4537] = {.lex_state = 29, .external_lex_state = 2}, - [4538] = {.lex_state = 29, .external_lex_state = 2}, - [4539] = {.lex_state = 29, .external_lex_state = 2}, - [4540] = {.lex_state = 29, .external_lex_state = 2}, - [4541] = {.lex_state = 24, .external_lex_state = 3}, - [4542] = {.lex_state = 29, .external_lex_state = 2}, - [4543] = {.lex_state = 29, .external_lex_state = 2}, - [4544] = {.lex_state = 24, .external_lex_state = 3}, - [4545] = {.lex_state = 29, .external_lex_state = 2}, - [4546] = {.lex_state = 124, .external_lex_state = 3}, - [4547] = {.lex_state = 5, .external_lex_state = 3}, - [4548] = {.lex_state = 29, .external_lex_state = 2}, - [4549] = {.lex_state = 26, .external_lex_state = 3}, - [4550] = {.lex_state = 29, .external_lex_state = 2}, - [4551] = {.lex_state = 29, .external_lex_state = 2}, - [4552] = {.lex_state = 29, .external_lex_state = 2}, - [4553] = {.lex_state = 29, .external_lex_state = 2}, - [4554] = {.lex_state = 24, .external_lex_state = 3}, - [4555] = {.lex_state = 29, .external_lex_state = 2}, - [4556] = {.lex_state = 29, .external_lex_state = 2}, - [4557] = {.lex_state = 37, .external_lex_state = 3}, - [4558] = {.lex_state = 29, .external_lex_state = 2}, - [4559] = {.lex_state = 5, .external_lex_state = 3}, - [4560] = {.lex_state = 29, .external_lex_state = 2}, - [4561] = {.lex_state = 29, .external_lex_state = 2}, - [4562] = {.lex_state = 29, .external_lex_state = 2}, - [4563] = {.lex_state = 29, .external_lex_state = 2}, - [4564] = {.lex_state = 110, .external_lex_state = 3}, - [4565] = {.lex_state = 29, .external_lex_state = 2}, - [4566] = {.lex_state = 29, .external_lex_state = 2}, - [4567] = {.lex_state = 29, .external_lex_state = 2}, - [4568] = {.lex_state = 29, .external_lex_state = 2}, - [4569] = {.lex_state = 29, .external_lex_state = 2}, - [4570] = {.lex_state = 29, .external_lex_state = 2}, - [4571] = {.lex_state = 29, .external_lex_state = 2}, - [4572] = {.lex_state = 29, .external_lex_state = 2}, - [4573] = {.lex_state = 29, .external_lex_state = 2}, - [4574] = {.lex_state = 124, .external_lex_state = 3}, - [4575] = {.lex_state = 119, .external_lex_state = 3}, - [4576] = {.lex_state = 119, .external_lex_state = 3}, - [4577] = {.lex_state = 119, .external_lex_state = 3}, - [4578] = {.lex_state = 27, .external_lex_state = 3}, - [4579] = {.lex_state = 25, .external_lex_state = 3}, - [4580] = {.lex_state = 124, .external_lex_state = 3}, - [4581] = {.lex_state = 124, .external_lex_state = 3}, - [4582] = {.lex_state = 119, .external_lex_state = 3}, - [4583] = {.lex_state = 119, .external_lex_state = 3}, - [4584] = {.lex_state = 119, .external_lex_state = 3}, - [4585] = {.lex_state = 119, .external_lex_state = 3}, - [4586] = {.lex_state = 124, .external_lex_state = 3}, - [4587] = {.lex_state = 124, .external_lex_state = 3}, - [4588] = {.lex_state = 119, .external_lex_state = 3}, - [4589] = {.lex_state = 124, .external_lex_state = 3}, - [4590] = {.lex_state = 25, .external_lex_state = 3}, - [4591] = {.lex_state = 124, .external_lex_state = 3}, - [4592] = {.lex_state = 119, .external_lex_state = 3}, - [4593] = {.lex_state = 119, .external_lex_state = 3}, - [4594] = {.lex_state = 119, .external_lex_state = 3}, - [4595] = {.lex_state = 119, .external_lex_state = 3}, - [4596] = {.lex_state = 25, .external_lex_state = 3}, - [4597] = {.lex_state = 27, .external_lex_state = 3}, - [4598] = {.lex_state = 25, .external_lex_state = 3}, - [4599] = {.lex_state = 119, .external_lex_state = 3}, - [4600] = {.lex_state = 124, .external_lex_state = 3}, - [4601] = {.lex_state = 25, .external_lex_state = 3}, - [4602] = {.lex_state = 124, .external_lex_state = 3}, - [4603] = {.lex_state = 119, .external_lex_state = 3}, - [4604] = {.lex_state = 124, .external_lex_state = 3}, - [4605] = {.lex_state = 124, .external_lex_state = 3}, - [4606] = {.lex_state = 119, .external_lex_state = 3}, - [4607] = {.lex_state = 6, .external_lex_state = 3}, - [4608] = {.lex_state = 119, .external_lex_state = 3}, - [4609] = {.lex_state = 25, .external_lex_state = 3}, - [4610] = {.lex_state = 119, .external_lex_state = 3}, - [4611] = {.lex_state = 25, .external_lex_state = 3}, - [4612] = {.lex_state = 119, .external_lex_state = 3}, - [4613] = {.lex_state = 119, .external_lex_state = 3}, - [4614] = {.lex_state = 119, .external_lex_state = 3}, - [4615] = {.lex_state = 119, .external_lex_state = 3}, - [4616] = {.lex_state = 119, .external_lex_state = 3}, - [4617] = {.lex_state = 119, .external_lex_state = 3}, - [4618] = {.lex_state = 119, .external_lex_state = 3}, - [4619] = {.lex_state = 119, .external_lex_state = 3}, - [4620] = {.lex_state = 119, .external_lex_state = 3}, - [4621] = {.lex_state = 119, .external_lex_state = 3}, - [4622] = {.lex_state = 124, .external_lex_state = 3}, - [4623] = {.lex_state = 119, .external_lex_state = 3}, - [4624] = {.lex_state = 124, .external_lex_state = 3}, - [4625] = {.lex_state = 119, .external_lex_state = 3}, - [4626] = {.lex_state = 119, .external_lex_state = 3}, - [4627] = {.lex_state = 9, .external_lex_state = 3}, - [4628] = {.lex_state = 119, .external_lex_state = 3}, - [4629] = {.lex_state = 9, .external_lex_state = 3}, - [4630] = {.lex_state = 9, .external_lex_state = 3}, - [4631] = {.lex_state = 9, .external_lex_state = 3}, - [4632] = {.lex_state = 9, .external_lex_state = 3}, - [4633] = {.lex_state = 9, .external_lex_state = 3}, - [4634] = {.lex_state = 9, .external_lex_state = 3}, - [4635] = {.lex_state = 9, .external_lex_state = 3}, - [4636] = {.lex_state = 5, .external_lex_state = 3}, - [4637] = {.lex_state = 9, .external_lex_state = 3}, - [4638] = {.lex_state = 9, .external_lex_state = 3}, - [4639] = {.lex_state = 9, .external_lex_state = 3}, - [4640] = {.lex_state = 5, .external_lex_state = 3}, - [4641] = {.lex_state = 9, .external_lex_state = 3}, - [4642] = {.lex_state = 9, .external_lex_state = 3}, - [4643] = {.lex_state = 9, .external_lex_state = 3}, - [4644] = {.lex_state = 9, .external_lex_state = 3}, - [4645] = {.lex_state = 9, .external_lex_state = 3}, - [4646] = {.lex_state = 6, .external_lex_state = 3}, - [4647] = {.lex_state = 28, .external_lex_state = 3}, - [4648] = {.lex_state = 9, .external_lex_state = 3}, - [4649] = {.lex_state = 9, .external_lex_state = 3}, - [4650] = {.lex_state = 9, .external_lex_state = 3}, - [4651] = {.lex_state = 9, .external_lex_state = 3}, - [4652] = {.lex_state = 9, .external_lex_state = 3}, - [4653] = {.lex_state = 119, .external_lex_state = 3}, - [4654] = {.lex_state = 9, .external_lex_state = 3}, - [4655] = {.lex_state = 9, .external_lex_state = 3}, - [4656] = {.lex_state = 9, .external_lex_state = 3}, - [4657] = {.lex_state = 9, .external_lex_state = 3}, - [4658] = {.lex_state = 9, .external_lex_state = 3}, - [4659] = {.lex_state = 9, .external_lex_state = 3}, - [4660] = {.lex_state = 9, .external_lex_state = 3}, - [4661] = {.lex_state = 9, .external_lex_state = 3}, - [4662] = {.lex_state = 119, .external_lex_state = 3}, - [4663] = {.lex_state = 5, .external_lex_state = 3}, - [4664] = {.lex_state = 9, .external_lex_state = 3}, - [4665] = {.lex_state = 119, .external_lex_state = 3}, - [4666] = {.lex_state = 119, .external_lex_state = 3}, - [4667] = {.lex_state = 39, .external_lex_state = 3}, - [4668] = {.lex_state = 9, .external_lex_state = 3}, - [4669] = {.lex_state = 119, .external_lex_state = 3}, - [4670] = {.lex_state = 104, .external_lex_state = 3}, - [4671] = {.lex_state = 104, .external_lex_state = 3}, - [4672] = {.lex_state = 104, .external_lex_state = 3}, - [4673] = {.lex_state = 25, .external_lex_state = 3}, - [4674] = {.lex_state = 104, .external_lex_state = 3}, - [4675] = {.lex_state = 119, .external_lex_state = 3}, - [4676] = {.lex_state = 39, .external_lex_state = 3}, - [4677] = {.lex_state = 104, .external_lex_state = 3}, - [4678] = {.lex_state = 104, .external_lex_state = 3}, - [4679] = {.lex_state = 5, .external_lex_state = 3}, - [4680] = {.lex_state = 5, .external_lex_state = 3}, - [4681] = {.lex_state = 24, .external_lex_state = 3}, - [4682] = {.lex_state = 5, .external_lex_state = 3}, - [4683] = {.lex_state = 5, .external_lex_state = 3}, - [4684] = {.lex_state = 104, .external_lex_state = 3}, - [4685] = {.lex_state = 24, .external_lex_state = 3}, - [4686] = {.lex_state = 124, .external_lex_state = 3}, - [4687] = {.lex_state = 24, .external_lex_state = 3}, - [4688] = {.lex_state = 25, .external_lex_state = 3}, - [4689] = {.lex_state = 5, .external_lex_state = 3}, - [4690] = {.lex_state = 25, .external_lex_state = 3}, - [4691] = {.lex_state = 25, .external_lex_state = 3}, - [4692] = {.lex_state = 25, .external_lex_state = 3}, - [4693] = {.lex_state = 24, .external_lex_state = 3}, - [4694] = {.lex_state = 5, .external_lex_state = 3}, - [4695] = {.lex_state = 126, .external_lex_state = 3}, - [4696] = {.lex_state = 5, .external_lex_state = 3}, - [4697] = {.lex_state = 24, .external_lex_state = 3}, - [4698] = {.lex_state = 24, .external_lex_state = 3}, - [4699] = {.lex_state = 5, .external_lex_state = 3}, - [4700] = {.lex_state = 9, .external_lex_state = 3}, - [4701] = {.lex_state = 9, .external_lex_state = 3}, - [4702] = {.lex_state = 9, .external_lex_state = 3}, - [4703] = {.lex_state = 104, .external_lex_state = 3}, - [4704] = {.lex_state = 25, .external_lex_state = 3}, - [4705] = {.lex_state = 24, .external_lex_state = 3}, - [4706] = {.lex_state = 25, .external_lex_state = 3}, - [4707] = {.lex_state = 5, .external_lex_state = 3}, - [4708] = {.lex_state = 5, .external_lex_state = 3}, - [4709] = {.lex_state = 5, .external_lex_state = 3}, - [4710] = {.lex_state = 5, .external_lex_state = 3}, - [4711] = {.lex_state = 5, .external_lex_state = 3}, - [4712] = {.lex_state = 104, .external_lex_state = 3}, - [4713] = {.lex_state = 124, .external_lex_state = 3}, - [4714] = {.lex_state = 5, .external_lex_state = 3}, - [4715] = {.lex_state = 101, .external_lex_state = 3}, - [4716] = {.lex_state = 5, .external_lex_state = 3}, - [4717] = {.lex_state = 117, .external_lex_state = 3}, - [4718] = {.lex_state = 124, .external_lex_state = 3}, - [4719] = {.lex_state = 117, .external_lex_state = 3}, - [4720] = {.lex_state = 117, .external_lex_state = 3}, - [4721] = {.lex_state = 5, .external_lex_state = 3}, - [4722] = {.lex_state = 117, .external_lex_state = 3}, - [4723] = {.lex_state = 117, .external_lex_state = 3}, - [4724] = {.lex_state = 117, .external_lex_state = 3}, - [4725] = {.lex_state = 117, .external_lex_state = 3}, - [4726] = {.lex_state = 5, .external_lex_state = 3}, - [4727] = {.lex_state = 117, .external_lex_state = 3}, - [4728] = {.lex_state = 117, .external_lex_state = 3}, - [4729] = {.lex_state = 5, .external_lex_state = 3}, - [4730] = {.lex_state = 5, .external_lex_state = 3}, - [4731] = {.lex_state = 5, .external_lex_state = 3}, - [4732] = {.lex_state = 5, .external_lex_state = 3}, - [4733] = {.lex_state = 124, .external_lex_state = 3}, - [4734] = {.lex_state = 5, .external_lex_state = 3}, - [4735] = {.lex_state = 5, .external_lex_state = 3}, - [4736] = {.lex_state = 5, .external_lex_state = 3}, - [4737] = {.lex_state = 5, .external_lex_state = 3}, - [4738] = {.lex_state = 117, .external_lex_state = 3}, - [4739] = {.lex_state = 5, .external_lex_state = 3}, - [4740] = {.lex_state = 117, .external_lex_state = 3}, - [4741] = {.lex_state = 117, .external_lex_state = 3}, - [4742] = {.lex_state = 117, .external_lex_state = 3}, - [4743] = {.lex_state = 5, .external_lex_state = 3}, - [4744] = {.lex_state = 24, .external_lex_state = 3}, - [4745] = {.lex_state = 117, .external_lex_state = 3}, - [4746] = {.lex_state = 117, .external_lex_state = 3}, - [4747] = {.lex_state = 5, .external_lex_state = 3}, - [4748] = {.lex_state = 4, .external_lex_state = 3}, - [4749] = {.lex_state = 5, .external_lex_state = 3}, - [4750] = {.lex_state = 5, .external_lex_state = 3}, - [4751] = {.lex_state = 5, .external_lex_state = 3}, - [4752] = {.lex_state = 5, .external_lex_state = 3}, - [4753] = {.lex_state = 5, .external_lex_state = 3}, - [4754] = {.lex_state = 117, .external_lex_state = 3}, - [4755] = {.lex_state = 117, .external_lex_state = 3}, - [4756] = {.lex_state = 117, .external_lex_state = 3}, - [4757] = {.lex_state = 117, .external_lex_state = 3}, - [4758] = {.lex_state = 117, .external_lex_state = 3}, - [4759] = {.lex_state = 117, .external_lex_state = 3}, - [4760] = {.lex_state = 5, .external_lex_state = 3}, - [4761] = {.lex_state = 5, .external_lex_state = 3}, - [4762] = {.lex_state = 5, .external_lex_state = 3}, - [4763] = {.lex_state = 5, .external_lex_state = 3}, - [4764] = {.lex_state = 117, .external_lex_state = 3}, - [4765] = {.lex_state = 117, .external_lex_state = 3}, - [4766] = {.lex_state = 5, .external_lex_state = 3}, - [4767] = {.lex_state = 5, .external_lex_state = 3}, - [4768] = {.lex_state = 4, .external_lex_state = 3}, - [4769] = {.lex_state = 117, .external_lex_state = 3}, - [4770] = {.lex_state = 5, .external_lex_state = 3}, - [4771] = {.lex_state = 117, .external_lex_state = 3}, - [4772] = {.lex_state = 117, .external_lex_state = 3}, - [4773] = {.lex_state = 5, .external_lex_state = 3}, - [4774] = {.lex_state = 117, .external_lex_state = 3}, - [4775] = {.lex_state = 5, .external_lex_state = 3}, - [4776] = {.lex_state = 117, .external_lex_state = 3}, - [4777] = {.lex_state = 117, .external_lex_state = 3}, - [4778] = {.lex_state = 117, .external_lex_state = 3}, - [4779] = {.lex_state = 117, .external_lex_state = 3}, - [4780] = {.lex_state = 119, .external_lex_state = 3}, - [4781] = {.lex_state = 117, .external_lex_state = 3}, - [4782] = {.lex_state = 5, .external_lex_state = 3}, - [4783] = {.lex_state = 117, .external_lex_state = 3}, - [4784] = {.lex_state = 5, .external_lex_state = 3}, - [4785] = {.lex_state = 117, .external_lex_state = 3}, - [4786] = {.lex_state = 117, .external_lex_state = 3}, - [4787] = {.lex_state = 117, .external_lex_state = 3}, - [4788] = {.lex_state = 5, .external_lex_state = 3}, - [4789] = {.lex_state = 117, .external_lex_state = 3}, - [4790] = {.lex_state = 117, .external_lex_state = 3}, - [4791] = {.lex_state = 5, .external_lex_state = 3}, - [4792] = {.lex_state = 117, .external_lex_state = 3}, - [4793] = {.lex_state = 117, .external_lex_state = 3}, - [4794] = {.lex_state = 9, .external_lex_state = 3}, - [4795] = {.lex_state = 117, .external_lex_state = 3}, - [4796] = {.lex_state = 5, .external_lex_state = 3}, - [4797] = {.lex_state = 5, .external_lex_state = 3}, - [4798] = {.lex_state = 5, .external_lex_state = 3}, - [4799] = {.lex_state = 5, .external_lex_state = 3}, - [4800] = {.lex_state = 5, .external_lex_state = 3}, - [4801] = {.lex_state = 4, .external_lex_state = 3}, - [4802] = {.lex_state = 117, .external_lex_state = 3}, - [4803] = {.lex_state = 117, .external_lex_state = 3}, - [4804] = {.lex_state = 124, .external_lex_state = 3}, - [4805] = {.lex_state = 5, .external_lex_state = 3}, - [4806] = {.lex_state = 5, .external_lex_state = 3}, - [4807] = {.lex_state = 24, .external_lex_state = 3}, - [4808] = {.lex_state = 5, .external_lex_state = 3}, - [4809] = {.lex_state = 5, .external_lex_state = 3}, - [4810] = {.lex_state = 110, .external_lex_state = 2}, - [4811] = {.lex_state = 117, .external_lex_state = 3}, - [4812] = {.lex_state = 5, .external_lex_state = 3}, - [4813] = {.lex_state = 117, .external_lex_state = 3}, - [4814] = {.lex_state = 117, .external_lex_state = 3}, - [4815] = {.lex_state = 117, .external_lex_state = 3}, - [4816] = {.lex_state = 5, .external_lex_state = 3}, - [4817] = {.lex_state = 4, .external_lex_state = 3}, - [4818] = {.lex_state = 5, .external_lex_state = 3}, - [4819] = {.lex_state = 5, .external_lex_state = 3}, - [4820] = {.lex_state = 5, .external_lex_state = 3}, - [4821] = {.lex_state = 117, .external_lex_state = 3}, - [4822] = {.lex_state = 5, .external_lex_state = 3}, - [4823] = {.lex_state = 117, .external_lex_state = 3}, - [4824] = {.lex_state = 117, .external_lex_state = 3}, - [4825] = {.lex_state = 5, .external_lex_state = 3}, - [4826] = {.lex_state = 5, .external_lex_state = 3}, - [4827] = {.lex_state = 117, .external_lex_state = 3}, - [4828] = {.lex_state = 5, .external_lex_state = 3}, - [4829] = {.lex_state = 117, .external_lex_state = 3}, - [4830] = {.lex_state = 5, .external_lex_state = 3}, - [4831] = {.lex_state = 5, .external_lex_state = 3}, - [4832] = {.lex_state = 5, .external_lex_state = 3}, - [4833] = {.lex_state = 5, .external_lex_state = 3}, - [4834] = {.lex_state = 5, .external_lex_state = 3}, - [4835] = {.lex_state = 5, .external_lex_state = 3}, - [4836] = {.lex_state = 5, .external_lex_state = 3}, - [4837] = {.lex_state = 117, .external_lex_state = 3}, - [4838] = {.lex_state = 5, .external_lex_state = 3}, - [4839] = {.lex_state = 5, .external_lex_state = 3}, - [4840] = {.lex_state = 4, .external_lex_state = 3}, - [4841] = {.lex_state = 24, .external_lex_state = 3}, - [4842] = {.lex_state = 124, .external_lex_state = 3}, - [4843] = {.lex_state = 117, .external_lex_state = 3}, - [4844] = {.lex_state = 5, .external_lex_state = 3}, - [4845] = {.lex_state = 5, .external_lex_state = 3}, - [4846] = {.lex_state = 5, .external_lex_state = 3}, - [4847] = {.lex_state = 24, .external_lex_state = 3}, - [4848] = {.lex_state = 117, .external_lex_state = 3}, - [4849] = {.lex_state = 5, .external_lex_state = 3}, - [4850] = {.lex_state = 24, .external_lex_state = 3}, - [4851] = {.lex_state = 4, .external_lex_state = 3}, - [4852] = {.lex_state = 117, .external_lex_state = 3}, - [4853] = {.lex_state = 117, .external_lex_state = 3}, - [4854] = {.lex_state = 124, .external_lex_state = 3}, - [4855] = {.lex_state = 5, .external_lex_state = 3}, - [4856] = {.lex_state = 5, .external_lex_state = 3}, - [4857] = {.lex_state = 5, .external_lex_state = 3}, - [4858] = {.lex_state = 5, .external_lex_state = 3}, - [4859] = {.lex_state = 5, .external_lex_state = 3}, - [4860] = {.lex_state = 5, .external_lex_state = 3}, - [4861] = {.lex_state = 117, .external_lex_state = 3}, - [4862] = {.lex_state = 24, .external_lex_state = 3}, - [4863] = {.lex_state = 117, .external_lex_state = 3}, - [4864] = {.lex_state = 5, .external_lex_state = 3}, - [4865] = {.lex_state = 119, .external_lex_state = 3}, - [4866] = {.lex_state = 5, .external_lex_state = 3}, - [4867] = {.lex_state = 5, .external_lex_state = 3}, - [4868] = {.lex_state = 124, .external_lex_state = 3}, - [4869] = {.lex_state = 5, .external_lex_state = 3}, - [4870] = {.lex_state = 117, .external_lex_state = 3}, - [4871] = {.lex_state = 5, .external_lex_state = 3}, - [4872] = {.lex_state = 117, .external_lex_state = 3}, - [4873] = {.lex_state = 117, .external_lex_state = 3}, - [4874] = {.lex_state = 5, .external_lex_state = 3}, - [4875] = {.lex_state = 5, .external_lex_state = 3}, - [4876] = {.lex_state = 5, .external_lex_state = 3}, - [4877] = {.lex_state = 4, .external_lex_state = 3}, - [4878] = {.lex_state = 5, .external_lex_state = 3}, - [4879] = {.lex_state = 104, .external_lex_state = 3}, - [4880] = {.lex_state = 117, .external_lex_state = 3}, - [4881] = {.lex_state = 5, .external_lex_state = 3}, - [4882] = {.lex_state = 117, .external_lex_state = 3}, - [4883] = {.lex_state = 5, .external_lex_state = 3}, - [4884] = {.lex_state = 101, .external_lex_state = 3}, - [4885] = {.lex_state = 9, .external_lex_state = 3}, - [4886] = {.lex_state = 119, .external_lex_state = 3}, - [4887] = {.lex_state = 104, .external_lex_state = 3}, - [4888] = {.lex_state = 4, .external_lex_state = 3}, - [4889] = {.lex_state = 101, .external_lex_state = 3}, - [4890] = {.lex_state = 119, .external_lex_state = 3}, - [4891] = {.lex_state = 104, .external_lex_state = 3}, - [4892] = {.lex_state = 119, .external_lex_state = 3}, - [4893] = {.lex_state = 119, .external_lex_state = 3}, - [4894] = {.lex_state = 101, .external_lex_state = 3}, - [4895] = {.lex_state = 4, .external_lex_state = 3}, - [4896] = {.lex_state = 119, .external_lex_state = 3}, - [4897] = {.lex_state = 101, .external_lex_state = 3}, - [4898] = {.lex_state = 104, .external_lex_state = 3}, - [4899] = {.lex_state = 4, .external_lex_state = 3}, - [4900] = {.lex_state = 104, .external_lex_state = 3}, - [4901] = {.lex_state = 9, .external_lex_state = 3}, - [4902] = {.lex_state = 124, .external_lex_state = 3}, - [4903] = {.lex_state = 124, .external_lex_state = 3}, - [4904] = {.lex_state = 4, .external_lex_state = 3}, - [4905] = {.lex_state = 104, .external_lex_state = 3}, - [4906] = {.lex_state = 9, .external_lex_state = 3}, - [4907] = {.lex_state = 104, .external_lex_state = 3}, - [4908] = {.lex_state = 104, .external_lex_state = 3}, - [4909] = {.lex_state = 104, .external_lex_state = 3}, - [4910] = {.lex_state = 104, .external_lex_state = 3}, - [4911] = {.lex_state = 104, .external_lex_state = 3}, - [4912] = {.lex_state = 9, .external_lex_state = 3}, - [4913] = {.lex_state = 101, .external_lex_state = 3}, - [4914] = {.lex_state = 9, .external_lex_state = 3}, - [4915] = {.lex_state = 33, .external_lex_state = 2}, - [4916] = {.lex_state = 119, .external_lex_state = 3}, - [4917] = {.lex_state = 101, .external_lex_state = 3}, - [4918] = {.lex_state = 104, .external_lex_state = 3}, - [4919] = {.lex_state = 4, .external_lex_state = 3}, - [4920] = {.lex_state = 104, .external_lex_state = 3}, - [4921] = {.lex_state = 119, .external_lex_state = 3}, - [4922] = {.lex_state = 33, .external_lex_state = 2}, - [4923] = {.lex_state = 104, .external_lex_state = 3}, - [4924] = {.lex_state = 9, .external_lex_state = 3}, - [4925] = {.lex_state = 33, .external_lex_state = 2}, - [4926] = {.lex_state = 104, .external_lex_state = 3}, - [4927] = {.lex_state = 104, .external_lex_state = 3}, - [4928] = {.lex_state = 104, .external_lex_state = 3}, - [4929] = {.lex_state = 104, .external_lex_state = 3}, - [4930] = {.lex_state = 104, .external_lex_state = 3}, - [4931] = {.lex_state = 104, .external_lex_state = 3}, - [4932] = {.lex_state = 104, .external_lex_state = 3}, - [4933] = {.lex_state = 5, .external_lex_state = 3}, - [4934] = {.lex_state = 101, .external_lex_state = 3}, - [4935] = {.lex_state = 104, .external_lex_state = 3}, - [4936] = {.lex_state = 104, .external_lex_state = 3}, - [4937] = {.lex_state = 37, .external_lex_state = 3}, - [4938] = {.lex_state = 101, .external_lex_state = 3}, - [4939] = {.lex_state = 101, .external_lex_state = 3}, - [4940] = {.lex_state = 104, .external_lex_state = 3}, - [4941] = {.lex_state = 33, .external_lex_state = 2}, - [4942] = {.lex_state = 124, .external_lex_state = 3}, - [4943] = {.lex_state = 104, .external_lex_state = 3}, - [4944] = {.lex_state = 124, .external_lex_state = 3}, - [4945] = {.lex_state = 104, .external_lex_state = 3}, - [4946] = {.lex_state = 28, .external_lex_state = 3}, - [4947] = {.lex_state = 104, .external_lex_state = 3}, - [4948] = {.lex_state = 104, .external_lex_state = 3}, - [4949] = {.lex_state = 9, .external_lex_state = 3}, - [4950] = {.lex_state = 104, .external_lex_state = 3}, - [4951] = {.lex_state = 124, .external_lex_state = 3}, - [4952] = {.lex_state = 104, .external_lex_state = 3}, - [4953] = {.lex_state = 101, .external_lex_state = 3}, - [4954] = {.lex_state = 9, .external_lex_state = 3}, - [4955] = {.lex_state = 119, .external_lex_state = 3}, - [4956] = {.lex_state = 28, .external_lex_state = 3}, - [4957] = {.lex_state = 9, .external_lex_state = 3}, - [4958] = {.lex_state = 5, .external_lex_state = 3}, - [4959] = {.lex_state = 104, .external_lex_state = 3}, - [4960] = {.lex_state = 5, .external_lex_state = 3}, - [4961] = {.lex_state = 5, .external_lex_state = 3}, - [4962] = {.lex_state = 5, .external_lex_state = 3}, - [4963] = {.lex_state = 5, .external_lex_state = 3}, - [4964] = {.lex_state = 5, .external_lex_state = 3}, - [4965] = {.lex_state = 4, .external_lex_state = 3}, - [4966] = {.lex_state = 4, .external_lex_state = 3}, - [4967] = {.lex_state = 4, .external_lex_state = 3}, - [4968] = {.lex_state = 5, .external_lex_state = 3}, - [4969] = {.lex_state = 5, .external_lex_state = 3}, - [4970] = {.lex_state = 104, .external_lex_state = 3}, - [4971] = {.lex_state = 5, .external_lex_state = 3}, - [4972] = {.lex_state = 5, .external_lex_state = 3}, - [4973] = {.lex_state = 5, .external_lex_state = 3}, - [4974] = {.lex_state = 5, .external_lex_state = 3}, - [4975] = {.lex_state = 112, .external_lex_state = 3}, - [4976] = {.lex_state = 4, .external_lex_state = 3}, - [4977] = {.lex_state = 104, .external_lex_state = 3}, - [4978] = {.lex_state = 5, .external_lex_state = 3}, - [4979] = {.lex_state = 104, .external_lex_state = 3}, - [4980] = {.lex_state = 5, .external_lex_state = 3}, - [4981] = {.lex_state = 4, .external_lex_state = 2}, - [4982] = {.lex_state = 104, .external_lex_state = 3}, - [4983] = {.lex_state = 9, .external_lex_state = 3}, - [4984] = {.lex_state = 104, .external_lex_state = 3}, - [4985] = {.lex_state = 104, .external_lex_state = 3}, - [4986] = {.lex_state = 5, .external_lex_state = 3}, - [4987] = {.lex_state = 9, .external_lex_state = 3}, - [4988] = {.lex_state = 5, .external_lex_state = 3}, - [4989] = {.lex_state = 4, .external_lex_state = 3}, - [4990] = {.lex_state = 5, .external_lex_state = 3}, - [4991] = {.lex_state = 5, .external_lex_state = 3}, - [4992] = {.lex_state = 5, .external_lex_state = 3}, - [4993] = {.lex_state = 104, .external_lex_state = 3}, - [4994] = {.lex_state = 104, .external_lex_state = 3}, - [4995] = {.lex_state = 5, .external_lex_state = 3}, - [4996] = {.lex_state = 5, .external_lex_state = 3}, - [4997] = {.lex_state = 5, .external_lex_state = 3}, - [4998] = {.lex_state = 4, .external_lex_state = 3}, - [4999] = {.lex_state = 5, .external_lex_state = 3}, - [5000] = {.lex_state = 4, .external_lex_state = 3}, - [5001] = {.lex_state = 5, .external_lex_state = 3}, - [5002] = {.lex_state = 5, .external_lex_state = 3}, - [5003] = {.lex_state = 4, .external_lex_state = 3}, - [5004] = {.lex_state = 4, .external_lex_state = 3}, - [5005] = {.lex_state = 4, .external_lex_state = 3}, - [5006] = {.lex_state = 5, .external_lex_state = 3}, - [5007] = {.lex_state = 4, .external_lex_state = 3}, - [5008] = {.lex_state = 4, .external_lex_state = 3}, - [5009] = {.lex_state = 4, .external_lex_state = 3}, - [5010] = {.lex_state = 4, .external_lex_state = 3}, - [5011] = {.lex_state = 4, .external_lex_state = 3}, - [5012] = {.lex_state = 104, .external_lex_state = 3}, - [5013] = {.lex_state = 5, .external_lex_state = 3}, - [5014] = {.lex_state = 5, .external_lex_state = 3}, - [5015] = {.lex_state = 124, .external_lex_state = 3}, - [5016] = {.lex_state = 124, .external_lex_state = 3}, - [5017] = {.lex_state = 104, .external_lex_state = 3}, - [5018] = {.lex_state = 5, .external_lex_state = 3}, - [5019] = {.lex_state = 5, .external_lex_state = 3}, - [5020] = {.lex_state = 124, .external_lex_state = 3}, - [5021] = {.lex_state = 5, .external_lex_state = 3}, - [5022] = {.lex_state = 5, .external_lex_state = 3}, - [5023] = {.lex_state = 5, .external_lex_state = 3}, - [5024] = {.lex_state = 5, .external_lex_state = 3}, - [5025] = {.lex_state = 5, .external_lex_state = 3}, - [5026] = {.lex_state = 104, .external_lex_state = 3}, - [5027] = {.lex_state = 5, .external_lex_state = 3}, - [5028] = {.lex_state = 104, .external_lex_state = 3}, - [5029] = {.lex_state = 5, .external_lex_state = 3}, - [5030] = {.lex_state = 5, .external_lex_state = 3}, - [5031] = {.lex_state = 104, .external_lex_state = 3}, - [5032] = {.lex_state = 104, .external_lex_state = 3}, - [5033] = {.lex_state = 104, .external_lex_state = 3}, - [5034] = {.lex_state = 104, .external_lex_state = 3}, - [5035] = {.lex_state = 104, .external_lex_state = 3}, - [5036] = {.lex_state = 104, .external_lex_state = 3}, - [5037] = {.lex_state = 104, .external_lex_state = 3}, - [5038] = {.lex_state = 104, .external_lex_state = 3}, - [5039] = {.lex_state = 5, .external_lex_state = 3}, - [5040] = {.lex_state = 5, .external_lex_state = 3}, - [5041] = {.lex_state = 5, .external_lex_state = 3}, - [5042] = {.lex_state = 101, .external_lex_state = 3}, - [5043] = {.lex_state = 5, .external_lex_state = 3}, - [5044] = {.lex_state = 5, .external_lex_state = 3}, - [5045] = {.lex_state = 4, .external_lex_state = 3}, - [5046] = {.lex_state = 104, .external_lex_state = 3}, - [5047] = {.lex_state = 104, .external_lex_state = 3}, - [5048] = {.lex_state = 104, .external_lex_state = 3}, - [5049] = {.lex_state = 4, .external_lex_state = 3}, - [5050] = {.lex_state = 4, .external_lex_state = 3}, - [5051] = {.lex_state = 101, .external_lex_state = 3}, - [5052] = {.lex_state = 9, .external_lex_state = 3}, - [5053] = {.lex_state = 101, .external_lex_state = 3}, - [5054] = {.lex_state = 104, .external_lex_state = 3}, - [5055] = {.lex_state = 115, .external_lex_state = 3}, - [5056] = {.lex_state = 112, .external_lex_state = 3}, - [5057] = {.lex_state = 104, .external_lex_state = 3}, - [5058] = {.lex_state = 115, .external_lex_state = 3}, - [5059] = {.lex_state = 112, .external_lex_state = 3}, - [5060] = {.lex_state = 5, .external_lex_state = 3}, - [5061] = {.lex_state = 101, .external_lex_state = 3}, - [5062] = {.lex_state = 101, .external_lex_state = 3}, - [5063] = {.lex_state = 101, .external_lex_state = 3}, - [5064] = {.lex_state = 115, .external_lex_state = 3}, - [5065] = {.lex_state = 104, .external_lex_state = 3}, - [5066] = {.lex_state = 101, .external_lex_state = 3}, - [5067] = {.lex_state = 104, .external_lex_state = 3}, - [5068] = {.lex_state = 101, .external_lex_state = 3}, - [5069] = {.lex_state = 28, .external_lex_state = 3}, - [5070] = {.lex_state = 104, .external_lex_state = 3}, - [5071] = {.lex_state = 101, .external_lex_state = 3}, - [5072] = {.lex_state = 101, .external_lex_state = 3}, - [5073] = {.lex_state = 115, .external_lex_state = 3}, - [5074] = {.lex_state = 9, .external_lex_state = 3}, - [5075] = {.lex_state = 101, .external_lex_state = 3}, - [5076] = {.lex_state = 104, .external_lex_state = 3}, - [5077] = {.lex_state = 9, .external_lex_state = 3}, - [5078] = {.lex_state = 28, .external_lex_state = 3}, - [5079] = {.lex_state = 101, .external_lex_state = 3}, - [5080] = {.lex_state = 101, .external_lex_state = 3}, - [5081] = {.lex_state = 101, .external_lex_state = 3}, - [5082] = {.lex_state = 101, .external_lex_state = 3}, - [5083] = {.lex_state = 9, .external_lex_state = 3}, - [5084] = {.lex_state = 104, .external_lex_state = 3}, - [5085] = {.lex_state = 9, .external_lex_state = 3}, - [5086] = {.lex_state = 5, .external_lex_state = 3}, - [5087] = {.lex_state = 101, .external_lex_state = 3}, - [5088] = {.lex_state = 112, .external_lex_state = 3}, - [5089] = {.lex_state = 112, .external_lex_state = 3}, - [5090] = {.lex_state = 9, .external_lex_state = 3}, - [5091] = {.lex_state = 37, .external_lex_state = 3}, - [5092] = {.lex_state = 8, .external_lex_state = 3}, - [5093] = {.lex_state = 104, .external_lex_state = 3}, - [5094] = {.lex_state = 115, .external_lex_state = 3}, - [5095] = {.lex_state = 104, .external_lex_state = 3}, - [5096] = {.lex_state = 110, .external_lex_state = 2}, - [5097] = {.lex_state = 8, .external_lex_state = 3}, - [5098] = {.lex_state = 112, .external_lex_state = 3}, - [5099] = {.lex_state = 112, .external_lex_state = 3}, - [5100] = {.lex_state = 8, .external_lex_state = 3}, - [5101] = {.lex_state = 101, .external_lex_state = 3}, - [5102] = {.lex_state = 36, .external_lex_state = 3}, - [5103] = {.lex_state = 8, .external_lex_state = 3}, - [5104] = {.lex_state = 101, .external_lex_state = 3}, - [5105] = {.lex_state = 8, .external_lex_state = 3}, - [5106] = {.lex_state = 8, .external_lex_state = 3}, - [5107] = {.lex_state = 101, .external_lex_state = 3}, - [5108] = {.lex_state = 5, .external_lex_state = 3}, - [5109] = {.lex_state = 101, .external_lex_state = 3}, - [5110] = {.lex_state = 112, .external_lex_state = 3}, - [5111] = {.lex_state = 5, .external_lex_state = 3}, - [5112] = {.lex_state = 125, .external_lex_state = 3}, - [5113] = {.lex_state = 101, .external_lex_state = 3}, - [5114] = {.lex_state = 101, .external_lex_state = 3}, - [5115] = {.lex_state = 101, .external_lex_state = 3}, - [5116] = {.lex_state = 101, .external_lex_state = 3}, - [5117] = {.lex_state = 101, .external_lex_state = 3}, - [5118] = {.lex_state = 101, .external_lex_state = 3}, - [5119] = {.lex_state = 101, .external_lex_state = 3}, - [5120] = {.lex_state = 101, .external_lex_state = 3}, - [5121] = {.lex_state = 5, .external_lex_state = 3}, - [5122] = {.lex_state = 112, .external_lex_state = 3}, - [5123] = {.lex_state = 5, .external_lex_state = 3}, - [5124] = {.lex_state = 101, .external_lex_state = 3}, - [5125] = {.lex_state = 104, .external_lex_state = 3}, - [5126] = {.lex_state = 9, .external_lex_state = 3}, - [5127] = {.lex_state = 112, .external_lex_state = 3}, - [5128] = {.lex_state = 112, .external_lex_state = 3}, - [5129] = {.lex_state = 9, .external_lex_state = 3}, - [5130] = {.lex_state = 110, .external_lex_state = 2}, - [5131] = {.lex_state = 5, .external_lex_state = 3}, - [5132] = {.lex_state = 101, .external_lex_state = 3}, - [5133] = {.lex_state = 5, .external_lex_state = 3}, - [5134] = {.lex_state = 112, .external_lex_state = 3}, - [5135] = {.lex_state = 101, .external_lex_state = 3}, - [5136] = {.lex_state = 9, .external_lex_state = 3}, - [5137] = {.lex_state = 115, .external_lex_state = 3}, - [5138] = {.lex_state = 104, .external_lex_state = 3}, - [5139] = {.lex_state = 101, .external_lex_state = 3}, - [5140] = {.lex_state = 9, .external_lex_state = 3}, - [5141] = {.lex_state = 9, .external_lex_state = 3}, - [5142] = {.lex_state = 104, .external_lex_state = 3}, - [5143] = {.lex_state = 12, .external_lex_state = 3}, - [5144] = {.lex_state = 4, .external_lex_state = 3}, - [5145] = {.lex_state = 20, .external_lex_state = 2}, - [5146] = {.lex_state = 12, .external_lex_state = 3}, - [5147] = {.lex_state = 20, .external_lex_state = 2}, - [5148] = {.lex_state = 5, .external_lex_state = 3}, - [5149] = {.lex_state = 104, .external_lex_state = 3}, - [5150] = {.lex_state = 20, .external_lex_state = 2}, - [5151] = {.lex_state = 110, .external_lex_state = 3}, - [5152] = {.lex_state = 112, .external_lex_state = 3}, - [5153] = {.lex_state = 104, .external_lex_state = 3}, - [5154] = {.lex_state = 12, .external_lex_state = 3}, - [5155] = {.lex_state = 104, .external_lex_state = 3}, - [5156] = {.lex_state = 12, .external_lex_state = 3}, - [5157] = {.lex_state = 104, .external_lex_state = 3}, - [5158] = {.lex_state = 104, .external_lex_state = 3}, - [5159] = {.lex_state = 104, .external_lex_state = 3}, - [5160] = {.lex_state = 104, .external_lex_state = 3}, - [5161] = {.lex_state = 104, .external_lex_state = 3}, - [5162] = {.lex_state = 104, .external_lex_state = 3}, - [5163] = {.lex_state = 104, .external_lex_state = 3}, - [5164] = {.lex_state = 104, .external_lex_state = 3}, - [5165] = {.lex_state = 104, .external_lex_state = 3}, - [5166] = {.lex_state = 125, .external_lex_state = 3}, - [5167] = {.lex_state = 104, .external_lex_state = 3}, - [5168] = {.lex_state = 104, .external_lex_state = 3}, - [5169] = {.lex_state = 104, .external_lex_state = 3}, - [5170] = {.lex_state = 104, .external_lex_state = 3}, - [5171] = {.lex_state = 104, .external_lex_state = 3}, - [5172] = {.lex_state = 104, .external_lex_state = 3}, - [5173] = {.lex_state = 104, .external_lex_state = 3}, - [5174] = {.lex_state = 104, .external_lex_state = 3}, - [5175] = {.lex_state = 12, .external_lex_state = 3}, - [5176] = {.lex_state = 104, .external_lex_state = 3}, - [5177] = {.lex_state = 104, .external_lex_state = 3}, - [5178] = {.lex_state = 104, .external_lex_state = 3}, - [5179] = {.lex_state = 104, .external_lex_state = 3}, - [5180] = {.lex_state = 104, .external_lex_state = 3}, - [5181] = {.lex_state = 9, .external_lex_state = 3}, - [5182] = {.lex_state = 12, .external_lex_state = 3}, - [5183] = {.lex_state = 110, .external_lex_state = 3}, - [5184] = {.lex_state = 104, .external_lex_state = 3}, - [5185] = {.lex_state = 104, .external_lex_state = 3}, - [5186] = {.lex_state = 104, .external_lex_state = 3}, - [5187] = {.lex_state = 104, .external_lex_state = 3}, - [5188] = {.lex_state = 104, .external_lex_state = 3}, - [5189] = {.lex_state = 104, .external_lex_state = 3}, - [5190] = {.lex_state = 12, .external_lex_state = 3}, - [5191] = {.lex_state = 112, .external_lex_state = 3}, - [5192] = {.lex_state = 104, .external_lex_state = 3}, - [5193] = {.lex_state = 104, .external_lex_state = 3}, - [5194] = {.lex_state = 12, .external_lex_state = 3}, - [5195] = {.lex_state = 104, .external_lex_state = 3}, - [5196] = {.lex_state = 12, .external_lex_state = 3}, - [5197] = {.lex_state = 9, .external_lex_state = 3}, - [5198] = {.lex_state = 104, .external_lex_state = 3}, - [5199] = {.lex_state = 104, .external_lex_state = 3}, - [5200] = {.lex_state = 4, .external_lex_state = 3}, - [5201] = {.lex_state = 104, .external_lex_state = 3}, - [5202] = {.lex_state = 104, .external_lex_state = 3}, - [5203] = {.lex_state = 104, .external_lex_state = 3}, - [5204] = {.lex_state = 104, .external_lex_state = 3}, - [5205] = {.lex_state = 104, .external_lex_state = 3}, - [5206] = {.lex_state = 104, .external_lex_state = 3}, - [5207] = {.lex_state = 104, .external_lex_state = 3}, - [5208] = {.lex_state = 104, .external_lex_state = 3}, - [5209] = {.lex_state = 104, .external_lex_state = 3}, - [5210] = {.lex_state = 104, .external_lex_state = 3}, - [5211] = {.lex_state = 104, .external_lex_state = 3}, - [5212] = {.lex_state = 104, .external_lex_state = 3}, - [5213] = {.lex_state = 12, .external_lex_state = 3}, - [5214] = {.lex_state = 125, .external_lex_state = 3}, - [5215] = {.lex_state = 104, .external_lex_state = 3}, - [5216] = {.lex_state = 12, .external_lex_state = 3}, - [5217] = {.lex_state = 104, .external_lex_state = 3}, - [5218] = {.lex_state = 104, .external_lex_state = 3}, - [5219] = {.lex_state = 4, .external_lex_state = 3}, - [5220] = {.lex_state = 104, .external_lex_state = 3}, - [5221] = {.lex_state = 104, .external_lex_state = 3}, - [5222] = {.lex_state = 104, .external_lex_state = 3}, - [5223] = {.lex_state = 9, .external_lex_state = 3}, - [5224] = {.lex_state = 104, .external_lex_state = 3}, - [5225] = {.lex_state = 9, .external_lex_state = 3}, - [5226] = {.lex_state = 104, .external_lex_state = 3}, - [5227] = {.lex_state = 104, .external_lex_state = 3}, - [5228] = {.lex_state = 104, .external_lex_state = 3}, - [5229] = {.lex_state = 104, .external_lex_state = 3}, - [5230] = {.lex_state = 110, .external_lex_state = 3}, - [5231] = {.lex_state = 12, .external_lex_state = 3}, - [5232] = {.lex_state = 104, .external_lex_state = 3}, - [5233] = {.lex_state = 104, .external_lex_state = 3}, - [5234] = {.lex_state = 104, .external_lex_state = 3}, - [5235] = {.lex_state = 9, .external_lex_state = 3}, - [5236] = {.lex_state = 12, .external_lex_state = 3}, - [5237] = {.lex_state = 104, .external_lex_state = 3}, - [5238] = {.lex_state = 104, .external_lex_state = 3}, - [5239] = {.lex_state = 104, .external_lex_state = 3}, - [5240] = {.lex_state = 104, .external_lex_state = 3}, - [5241] = {.lex_state = 104, .external_lex_state = 3}, - [5242] = {.lex_state = 104, .external_lex_state = 3}, - [5243] = {.lex_state = 9, .external_lex_state = 3}, - [5244] = {.lex_state = 104, .external_lex_state = 3}, - [5245] = {.lex_state = 104, .external_lex_state = 3}, - [5246] = {.lex_state = 104, .external_lex_state = 3}, - [5247] = {.lex_state = 104, .external_lex_state = 3}, - [5248] = {.lex_state = 104, .external_lex_state = 3}, - [5249] = {.lex_state = 104, .external_lex_state = 3}, - [5250] = {.lex_state = 104, .external_lex_state = 3}, - [5251] = {.lex_state = 104, .external_lex_state = 3}, - [5252] = {.lex_state = 104, .external_lex_state = 3}, - [5253] = {.lex_state = 104, .external_lex_state = 3}, - [5254] = {.lex_state = 12, .external_lex_state = 3}, - [5255] = {.lex_state = 12, .external_lex_state = 3}, - [5256] = {.lex_state = 104, .external_lex_state = 3}, - [5257] = {.lex_state = 104, .external_lex_state = 3}, - [5258] = {.lex_state = 104, .external_lex_state = 3}, - [5259] = {.lex_state = 12, .external_lex_state = 3}, - [5260] = {.lex_state = 104, .external_lex_state = 3}, - [5261] = {.lex_state = 104, .external_lex_state = 3}, - [5262] = {.lex_state = 104, .external_lex_state = 3}, - [5263] = {.lex_state = 104, .external_lex_state = 3}, - [5264] = {.lex_state = 104, .external_lex_state = 3}, - [5265] = {.lex_state = 104, .external_lex_state = 3}, - [5266] = {.lex_state = 104, .external_lex_state = 3}, - [5267] = {.lex_state = 104, .external_lex_state = 3}, - [5268] = {.lex_state = 104, .external_lex_state = 3}, - [5269] = {.lex_state = 104, .external_lex_state = 3}, - [5270] = {.lex_state = 104, .external_lex_state = 3}, - [5271] = {.lex_state = 104, .external_lex_state = 3}, - [5272] = {.lex_state = 104, .external_lex_state = 3}, - [5273] = {.lex_state = 104, .external_lex_state = 3}, - [5274] = {.lex_state = 104, .external_lex_state = 3}, - [5275] = {.lex_state = 104, .external_lex_state = 3}, - [5276] = {.lex_state = 104, .external_lex_state = 3}, - [5277] = {.lex_state = 125, .external_lex_state = 3}, - [5278] = {.lex_state = 104, .external_lex_state = 3}, - [5279] = {.lex_state = 12, .external_lex_state = 3}, - [5280] = {.lex_state = 12, .external_lex_state = 3}, - [5281] = {.lex_state = 5, .external_lex_state = 3}, - [5282] = {.lex_state = 104, .external_lex_state = 3}, - [5283] = {.lex_state = 125, .external_lex_state = 3}, - [5284] = {.lex_state = 9, .external_lex_state = 3}, - [5285] = {.lex_state = 112, .external_lex_state = 3}, - [5286] = {.lex_state = 104, .external_lex_state = 3}, - [5287] = {.lex_state = 104, .external_lex_state = 3}, - [5288] = {.lex_state = 104, .external_lex_state = 3}, - [5289] = {.lex_state = 4, .external_lex_state = 3}, - [5290] = {.lex_state = 12, .external_lex_state = 3}, - [5291] = {.lex_state = 12, .external_lex_state = 3}, - [5292] = {.lex_state = 12, .external_lex_state = 3}, - [5293] = {.lex_state = 110, .external_lex_state = 3}, - [5294] = {.lex_state = 12, .external_lex_state = 3}, - [5295] = {.lex_state = 12, .external_lex_state = 3}, - [5296] = {.lex_state = 12, .external_lex_state = 3}, - [5297] = {.lex_state = 12, .external_lex_state = 3}, - [5298] = {.lex_state = 12, .external_lex_state = 3}, - [5299] = {.lex_state = 12, .external_lex_state = 3}, - [5300] = {.lex_state = 110, .external_lex_state = 3}, - [5301] = {.lex_state = 12, .external_lex_state = 3}, - [5302] = {.lex_state = 104, .external_lex_state = 3}, - [5303] = {.lex_state = 110, .external_lex_state = 3}, - [5304] = {.lex_state = 12, .external_lex_state = 3}, - [5305] = {.lex_state = 12, .external_lex_state = 3}, - [5306] = {.lex_state = 12, .external_lex_state = 3}, - [5307] = {.lex_state = 12, .external_lex_state = 3}, - [5308] = {.lex_state = 12, .external_lex_state = 3}, - [5309] = {.lex_state = 125, .external_lex_state = 3}, - [5310] = {.lex_state = 110, .external_lex_state = 3}, - [5311] = {.lex_state = 12, .external_lex_state = 3}, - [5312] = {.lex_state = 110, .external_lex_state = 3}, - [5313] = {.lex_state = 12, .external_lex_state = 3}, - [5314] = {.lex_state = 12, .external_lex_state = 3}, - [5315] = {.lex_state = 12, .external_lex_state = 3}, - [5316] = {.lex_state = 12, .external_lex_state = 3}, - [5317] = {.lex_state = 12, .external_lex_state = 3}, - [5318] = {.lex_state = 12, .external_lex_state = 3}, - [5319] = {.lex_state = 12, .external_lex_state = 3}, - [5320] = {.lex_state = 12, .external_lex_state = 3}, - [5321] = {.lex_state = 12, .external_lex_state = 3}, - [5322] = {.lex_state = 12, .external_lex_state = 3}, - [5323] = {.lex_state = 12, .external_lex_state = 3}, - [5324] = {.lex_state = 12, .external_lex_state = 3}, - [5325] = {.lex_state = 12, .external_lex_state = 3}, - [5326] = {.lex_state = 12, .external_lex_state = 3}, - [5327] = {.lex_state = 12, .external_lex_state = 3}, - [5328] = {.lex_state = 12, .external_lex_state = 3}, - [5329] = {.lex_state = 5, .external_lex_state = 3}, - [5330] = {.lex_state = 12, .external_lex_state = 3}, - [5331] = {.lex_state = 12, .external_lex_state = 3}, - [5332] = {.lex_state = 9, .external_lex_state = 3}, - [5333] = {.lex_state = 12, .external_lex_state = 3}, - [5334] = {.lex_state = 4, .external_lex_state = 3}, - [5335] = {.lex_state = 104, .external_lex_state = 3}, - [5336] = {.lex_state = 9, .external_lex_state = 3}, - [5337] = {.lex_state = 12, .external_lex_state = 3}, - [5338] = {.lex_state = 12, .external_lex_state = 3}, - [5339] = {.lex_state = 12, .external_lex_state = 3}, - [5340] = {.lex_state = 4, .external_lex_state = 3}, - [5341] = {.lex_state = 12, .external_lex_state = 3}, - [5342] = {.lex_state = 12, .external_lex_state = 3}, - [5343] = {.lex_state = 12, .external_lex_state = 3}, - [5344] = {.lex_state = 12, .external_lex_state = 3}, - [5345] = {.lex_state = 12, .external_lex_state = 3}, - [5346] = {.lex_state = 12, .external_lex_state = 3}, - [5347] = {.lex_state = 12, .external_lex_state = 3}, - [5348] = {.lex_state = 12, .external_lex_state = 3}, - [5349] = {.lex_state = 12, .external_lex_state = 3}, - [5350] = {.lex_state = 12, .external_lex_state = 3}, - [5351] = {.lex_state = 12, .external_lex_state = 3}, - [5352] = {.lex_state = 4, .external_lex_state = 3}, - [5353] = {.lex_state = 12, .external_lex_state = 3}, - [5354] = {.lex_state = 12, .external_lex_state = 3}, - [5355] = {.lex_state = 110, .external_lex_state = 3}, - [5356] = {.lex_state = 110, .external_lex_state = 3}, - [5357] = {.lex_state = 12, .external_lex_state = 3}, - [5358] = {.lex_state = 12, .external_lex_state = 3}, - [5359] = {.lex_state = 20, .external_lex_state = 2}, - [5360] = {.lex_state = 12, .external_lex_state = 3}, - [5361] = {.lex_state = 4, .external_lex_state = 3}, - [5362] = {.lex_state = 110, .external_lex_state = 3}, - [5363] = {.lex_state = 110, .external_lex_state = 3}, - [5364] = {.lex_state = 12, .external_lex_state = 3}, - [5365] = {.lex_state = 12, .external_lex_state = 3}, - [5366] = {.lex_state = 4, .external_lex_state = 3}, - [5367] = {.lex_state = 110, .external_lex_state = 3}, - [5368] = {.lex_state = 28, .external_lex_state = 3}, - [5369] = {.lex_state = 12, .external_lex_state = 3}, - [5370] = {.lex_state = 12, .external_lex_state = 3}, - [5371] = {.lex_state = 12, .external_lex_state = 3}, - [5372] = {.lex_state = 12, .external_lex_state = 3}, - [5373] = {.lex_state = 28, .external_lex_state = 3}, - [5374] = {.lex_state = 12, .external_lex_state = 3}, - [5375] = {.lex_state = 12, .external_lex_state = 3}, - [5376] = {.lex_state = 12, .external_lex_state = 3}, - [5377] = {.lex_state = 12, .external_lex_state = 3}, - [5378] = {.lex_state = 12, .external_lex_state = 3}, - [5379] = {.lex_state = 12, .external_lex_state = 3}, - [5380] = {.lex_state = 12, .external_lex_state = 3}, - [5381] = {.lex_state = 28, .external_lex_state = 3}, - [5382] = {.lex_state = 12, .external_lex_state = 3}, - [5383] = {.lex_state = 12, .external_lex_state = 3}, - [5384] = {.lex_state = 12, .external_lex_state = 3}, - [5385] = {.lex_state = 12, .external_lex_state = 3}, - [5386] = {.lex_state = 12, .external_lex_state = 3}, - [5387] = {.lex_state = 12, .external_lex_state = 3}, - [5388] = {.lex_state = 12, .external_lex_state = 3}, - [5389] = {.lex_state = 12, .external_lex_state = 3}, - [5390] = {.lex_state = 12, .external_lex_state = 3}, - [5391] = {.lex_state = 12, .external_lex_state = 3}, - [5392] = {.lex_state = 12, .external_lex_state = 3}, - [5393] = {.lex_state = 12, .external_lex_state = 3}, - [5394] = {.lex_state = 12, .external_lex_state = 3}, - [5395] = {.lex_state = 12, .external_lex_state = 3}, - [5396] = {.lex_state = 12, .external_lex_state = 3}, - [5397] = {.lex_state = 12, .external_lex_state = 3}, - [5398] = {.lex_state = 12, .external_lex_state = 3}, - [5399] = {.lex_state = 12, .external_lex_state = 3}, - [5400] = {.lex_state = 12, .external_lex_state = 3}, - [5401] = {.lex_state = 110, .external_lex_state = 3}, - [5402] = {.lex_state = 12, .external_lex_state = 3}, - [5403] = {.lex_state = 12, .external_lex_state = 3}, - [5404] = {.lex_state = 12, .external_lex_state = 3}, - [5405] = {.lex_state = 12, .external_lex_state = 3}, - [5406] = {.lex_state = 110, .external_lex_state = 3}, - [5407] = {.lex_state = 12, .external_lex_state = 3}, - [5408] = {.lex_state = 110, .external_lex_state = 3}, - [5409] = {.lex_state = 12, .external_lex_state = 3}, - [5410] = {.lex_state = 4, .external_lex_state = 3}, - [5411] = {.lex_state = 12, .external_lex_state = 3}, - [5412] = {.lex_state = 12, .external_lex_state = 3}, - [5413] = {.lex_state = 12, .external_lex_state = 3}, - [5414] = {.lex_state = 12, .external_lex_state = 3}, - [5415] = {.lex_state = 12, .external_lex_state = 3}, - [5416] = {.lex_state = 12, .external_lex_state = 3}, - [5417] = {.lex_state = 110, .external_lex_state = 3}, - [5418] = {.lex_state = 12, .external_lex_state = 3}, - [5419] = {.lex_state = 12, .external_lex_state = 3}, - [5420] = {.lex_state = 104, .external_lex_state = 3}, - [5421] = {.lex_state = 12, .external_lex_state = 3}, - [5422] = {.lex_state = 4, .external_lex_state = 3}, - [5423] = {.lex_state = 12, .external_lex_state = 3}, - [5424] = {.lex_state = 12, .external_lex_state = 3}, - [5425] = {.lex_state = 12, .external_lex_state = 3}, - [5426] = {.lex_state = 110, .external_lex_state = 3}, - [5427] = {.lex_state = 12, .external_lex_state = 3}, - [5428] = {.lex_state = 104, .external_lex_state = 3}, - [5429] = {.lex_state = 12, .external_lex_state = 3}, - [5430] = {.lex_state = 104, .external_lex_state = 3}, - [5431] = {.lex_state = 12, .external_lex_state = 3}, - [5432] = {.lex_state = 12, .external_lex_state = 3}, - [5433] = {.lex_state = 12, .external_lex_state = 3}, - [5434] = {.lex_state = 9, .external_lex_state = 3}, - [5435] = {.lex_state = 104, .external_lex_state = 3}, - [5436] = {.lex_state = 12, .external_lex_state = 3}, - [5437] = {.lex_state = 12, .external_lex_state = 3}, - [5438] = {.lex_state = 104, .external_lex_state = 3}, - [5439] = {.lex_state = 12, .external_lex_state = 3}, - [5440] = {.lex_state = 12, .external_lex_state = 3}, - [5441] = {.lex_state = 12, .external_lex_state = 3}, - [5442] = {.lex_state = 12, .external_lex_state = 3}, - [5443] = {.lex_state = 9, .external_lex_state = 3}, - [5444] = {.lex_state = 9, .external_lex_state = 3}, - [5445] = {.lex_state = 9, .external_lex_state = 3}, - [5446] = {.lex_state = 104, .external_lex_state = 3}, - [5447] = {.lex_state = 9, .external_lex_state = 3}, - [5448] = {.lex_state = 12, .external_lex_state = 3}, - [5449] = {.lex_state = 110, .external_lex_state = 3}, - [5450] = {.lex_state = 12, .external_lex_state = 3}, - [5451] = {.lex_state = 12, .external_lex_state = 3}, - [5452] = {.lex_state = 110, .external_lex_state = 3}, - [5453] = {.lex_state = 110, .external_lex_state = 3}, - [5454] = {.lex_state = 9, .external_lex_state = 3}, - [5455] = {.lex_state = 9, .external_lex_state = 3}, - [5456] = {.lex_state = 12, .external_lex_state = 3}, - [5457] = {.lex_state = 9, .external_lex_state = 3}, - [5458] = {.lex_state = 12, .external_lex_state = 3}, - [5459] = {.lex_state = 12, .external_lex_state = 3}, - [5460] = {.lex_state = 12, .external_lex_state = 3}, - [5461] = {.lex_state = 9, .external_lex_state = 3}, - [5462] = {.lex_state = 104, .external_lex_state = 3}, - [5463] = {.lex_state = 125, .external_lex_state = 3}, - [5464] = {.lex_state = 110, .external_lex_state = 3}, - [5465] = {.lex_state = 12, .external_lex_state = 3}, - [5466] = {.lex_state = 12, .external_lex_state = 3}, - [5467] = {.lex_state = 9, .external_lex_state = 3}, - [5468] = {.lex_state = 12, .external_lex_state = 3}, - [5469] = {.lex_state = 12, .external_lex_state = 3}, - [5470] = {.lex_state = 9, .external_lex_state = 3}, - [5471] = {.lex_state = 12, .external_lex_state = 3}, - [5472] = {.lex_state = 110, .external_lex_state = 3}, - [5473] = {.lex_state = 110, .external_lex_state = 2}, - [5474] = {.lex_state = 12, .external_lex_state = 3}, - [5475] = {.lex_state = 12, .external_lex_state = 3}, - [5476] = {.lex_state = 12, .external_lex_state = 3}, - [5477] = {.lex_state = 5, .external_lex_state = 3}, - [5478] = {.lex_state = 12, .external_lex_state = 3}, - [5479] = {.lex_state = 9, .external_lex_state = 3}, - [5480] = {.lex_state = 5, .external_lex_state = 3}, - [5481] = {.lex_state = 5, .external_lex_state = 3}, - [5482] = {.lex_state = 5, .external_lex_state = 3}, - [5483] = {.lex_state = 9, .external_lex_state = 3}, - [5484] = {.lex_state = 5, .external_lex_state = 3}, - [5485] = {.lex_state = 12, .external_lex_state = 3}, - [5486] = {.lex_state = 12, .external_lex_state = 3}, - [5487] = {.lex_state = 5, .external_lex_state = 3}, - [5488] = {.lex_state = 12, .external_lex_state = 3}, - [5489] = {.lex_state = 12, .external_lex_state = 3}, - [5490] = {.lex_state = 110, .external_lex_state = 3}, - [5491] = {.lex_state = 12, .external_lex_state = 3}, - [5492] = {.lex_state = 12, .external_lex_state = 3}, - [5493] = {.lex_state = 104, .external_lex_state = 3}, - [5494] = {.lex_state = 12, .external_lex_state = 3}, - [5495] = {.lex_state = 104, .external_lex_state = 3}, - [5496] = {.lex_state = 12, .external_lex_state = 3}, - [5497] = {.lex_state = 12, .external_lex_state = 3}, - [5498] = {.lex_state = 12, .external_lex_state = 3}, - [5499] = {.lex_state = 9, .external_lex_state = 3}, - [5500] = {.lex_state = 110, .external_lex_state = 3}, - [5501] = {.lex_state = 12, .external_lex_state = 3}, - [5502] = {.lex_state = 12, .external_lex_state = 3}, - [5503] = {.lex_state = 110, .external_lex_state = 3}, - [5504] = {.lex_state = 9, .external_lex_state = 3}, - [5505] = {.lex_state = 12, .external_lex_state = 3}, - [5506] = {.lex_state = 4, .external_lex_state = 3}, - [5507] = {.lex_state = 104, .external_lex_state = 3}, - [5508] = {.lex_state = 9, .external_lex_state = 3}, - [5509] = {.lex_state = 125, .external_lex_state = 3}, - [5510] = {.lex_state = 9, .external_lex_state = 3}, - [5511] = {.lex_state = 12, .external_lex_state = 3}, - [5512] = {.lex_state = 112, .external_lex_state = 3}, - [5513] = {.lex_state = 5, .external_lex_state = 3}, - [5514] = {.lex_state = 4, .external_lex_state = 3}, - [5515] = {.lex_state = 9, .external_lex_state = 3}, - [5516] = {.lex_state = 40, .external_lex_state = 3}, - [5517] = {.lex_state = 4, .external_lex_state = 3}, - [5518] = {.lex_state = 12, .external_lex_state = 2}, - [5519] = {.lex_state = 4, .external_lex_state = 3}, - [5520] = {.lex_state = 4, .external_lex_state = 3}, - [5521] = {.lex_state = 36, .external_lex_state = 3}, - [5522] = {.lex_state = 125, .external_lex_state = 3}, - [5523] = {.lex_state = 1, .external_lex_state = 5}, - [5524] = {.lex_state = 112, .external_lex_state = 3}, - [5525] = {.lex_state = 9, .external_lex_state = 3}, - [5526] = {.lex_state = 4, .external_lex_state = 3}, - [5527] = {.lex_state = 112, .external_lex_state = 3}, - [5528] = {.lex_state = 4, .external_lex_state = 3}, - [5529] = {.lex_state = 1, .external_lex_state = 5}, - [5530] = {.lex_state = 4, .external_lex_state = 3}, - [5531] = {.lex_state = 4, .external_lex_state = 3}, - [5532] = {.lex_state = 104, .external_lex_state = 3}, - [5533] = {.lex_state = 1, .external_lex_state = 5}, - [5534] = {.lex_state = 9, .external_lex_state = 3}, - [5535] = {.lex_state = 1, .external_lex_state = 5}, - [5536] = {.lex_state = 1, .external_lex_state = 5}, - [5537] = {.lex_state = 1, .external_lex_state = 5}, - [5538] = {.lex_state = 1, .external_lex_state = 5}, - [5539] = {.lex_state = 112, .external_lex_state = 3}, - [5540] = {.lex_state = 110, .external_lex_state = 3}, - [5541] = {.lex_state = 1, .external_lex_state = 5}, - [5542] = {.lex_state = 104, .external_lex_state = 3}, - [5543] = {.lex_state = 1, .external_lex_state = 5}, - [5544] = {.lex_state = 104, .external_lex_state = 3}, - [5545] = {.lex_state = 104, .external_lex_state = 3}, - [5546] = {.lex_state = 104, .external_lex_state = 3}, - [5547] = {.lex_state = 104, .external_lex_state = 3}, - [5548] = {.lex_state = 1, .external_lex_state = 5}, - [5549] = {.lex_state = 104, .external_lex_state = 3}, - [5550] = {.lex_state = 104, .external_lex_state = 3}, - [5551] = {.lex_state = 104, .external_lex_state = 3}, - [5552] = {.lex_state = 4, .external_lex_state = 3}, - [5553] = {.lex_state = 4, .external_lex_state = 3}, - [5554] = {.lex_state = 12, .external_lex_state = 3}, - [5555] = {.lex_state = 104, .external_lex_state = 3}, - [5556] = {.lex_state = 110, .external_lex_state = 2}, - [5557] = {.lex_state = 1, .external_lex_state = 5}, - [5558] = {.lex_state = 125, .external_lex_state = 3}, - [5559] = {.lex_state = 112, .external_lex_state = 3}, - [5560] = {.lex_state = 4, .external_lex_state = 3}, - [5561] = {.lex_state = 104, .external_lex_state = 3}, - [5562] = {.lex_state = 1, .external_lex_state = 5}, - [5563] = {.lex_state = 110, .external_lex_state = 3}, - [5564] = {.lex_state = 1, .external_lex_state = 5}, - [5565] = {.lex_state = 4, .external_lex_state = 3}, - [5566] = {.lex_state = 4, .external_lex_state = 3}, - [5567] = {.lex_state = 1, .external_lex_state = 5}, - [5568] = {.lex_state = 1, .external_lex_state = 5}, - [5569] = {.lex_state = 5, .external_lex_state = 3}, - [5570] = {.lex_state = 1, .external_lex_state = 5}, - [5571] = {.lex_state = 104, .external_lex_state = 3}, - [5572] = {.lex_state = 12, .external_lex_state = 3}, - [5573] = {.lex_state = 104, .external_lex_state = 3}, - [5574] = {.lex_state = 4, .external_lex_state = 3}, - [5575] = {.lex_state = 4, .external_lex_state = 3}, - [5576] = {.lex_state = 112, .external_lex_state = 3}, - [5577] = {.lex_state = 110, .external_lex_state = 3}, - [5578] = {.lex_state = 112, .external_lex_state = 3}, - [5579] = {.lex_state = 112, .external_lex_state = 3}, - [5580] = {.lex_state = 1, .external_lex_state = 5}, - [5581] = {.lex_state = 5, .external_lex_state = 2}, - [5582] = {.lex_state = 1, .external_lex_state = 5}, - [5583] = {.lex_state = 1, .external_lex_state = 5}, - [5584] = {.lex_state = 110, .external_lex_state = 3}, - [5585] = {.lex_state = 104, .external_lex_state = 3}, - [5586] = {.lex_state = 12, .external_lex_state = 3}, - [5587] = {.lex_state = 4, .external_lex_state = 3}, - [5588] = {.lex_state = 4, .external_lex_state = 3}, - [5589] = {.lex_state = 104, .external_lex_state = 3}, - [5590] = {.lex_state = 4, .external_lex_state = 3}, - [5591] = {.lex_state = 1, .external_lex_state = 5}, - [5592] = {.lex_state = 4, .external_lex_state = 3}, - [5593] = {.lex_state = 5, .external_lex_state = 3}, - [5594] = {.lex_state = 5, .external_lex_state = 3}, - [5595] = {.lex_state = 1, .external_lex_state = 5}, - [5596] = {.lex_state = 4, .external_lex_state = 3}, - [5597] = {.lex_state = 4, .external_lex_state = 3}, - [5598] = {.lex_state = 5, .external_lex_state = 2}, - [5599] = {.lex_state = 5, .external_lex_state = 3}, - [5600] = {.lex_state = 1, .external_lex_state = 5}, - [5601] = {.lex_state = 1, .external_lex_state = 5}, - [5602] = {.lex_state = 1, .external_lex_state = 5}, - [5603] = {.lex_state = 5, .external_lex_state = 3}, - [5604] = {.lex_state = 9, .external_lex_state = 3}, - [5605] = {.lex_state = 4, .external_lex_state = 3}, - [5606] = {.lex_state = 4, .external_lex_state = 3}, - [5607] = {.lex_state = 1, .external_lex_state = 5}, - [5608] = {.lex_state = 1, .external_lex_state = 5}, - [5609] = {.lex_state = 9, .external_lex_state = 3}, - [5610] = {.lex_state = 104, .external_lex_state = 3}, - [5611] = {.lex_state = 4, .external_lex_state = 2}, - [5612] = {.lex_state = 9, .external_lex_state = 3}, - [5613] = {.lex_state = 104, .external_lex_state = 3}, - [5614] = {.lex_state = 12, .external_lex_state = 3}, - [5615] = {.lex_state = 104, .external_lex_state = 3}, - [5616] = {.lex_state = 12, .external_lex_state = 3}, - [5617] = {.lex_state = 5, .external_lex_state = 3}, - [5618] = {.lex_state = 9, .external_lex_state = 3}, - [5619] = {.lex_state = 9, .external_lex_state = 3}, - [5620] = {.lex_state = 12, .external_lex_state = 3}, - [5621] = {.lex_state = 112, .external_lex_state = 3}, - [5622] = {.lex_state = 104, .external_lex_state = 3}, - [5623] = {.lex_state = 12, .external_lex_state = 3}, - [5624] = {.lex_state = 12, .external_lex_state = 3}, - [5625] = {.lex_state = 12, .external_lex_state = 3}, - [5626] = {.lex_state = 104, .external_lex_state = 3}, - [5627] = {.lex_state = 12, .external_lex_state = 3}, - [5628] = {.lex_state = 5, .external_lex_state = 3}, - [5629] = {.lex_state = 112, .external_lex_state = 3}, - [5630] = {.lex_state = 104, .external_lex_state = 3}, - [5631] = {.lex_state = 9, .external_lex_state = 3}, - [5632] = {.lex_state = 9, .external_lex_state = 3}, - [5633] = {.lex_state = 12, .external_lex_state = 3}, - [5634] = {.lex_state = 12, .external_lex_state = 3}, - [5635] = {.lex_state = 12, .external_lex_state = 3}, - [5636] = {.lex_state = 12, .external_lex_state = 3}, - [5637] = {.lex_state = 112, .external_lex_state = 3}, - [5638] = {.lex_state = 9, .external_lex_state = 3}, - [5639] = {.lex_state = 12, .external_lex_state = 3}, - [5640] = {.lex_state = 4, .external_lex_state = 2}, - [5641] = {.lex_state = 112, .external_lex_state = 3}, - [5642] = {.lex_state = 9, .external_lex_state = 3}, - [5643] = {.lex_state = 5, .external_lex_state = 3}, - [5644] = {.lex_state = 112, .external_lex_state = 3}, - [5645] = {.lex_state = 112, .external_lex_state = 3}, - [5646] = {.lex_state = 12, .external_lex_state = 3}, - [5647] = {.lex_state = 5, .external_lex_state = 3}, - [5648] = {.lex_state = 12, .external_lex_state = 3}, - [5649] = {.lex_state = 4, .external_lex_state = 2}, - [5650] = {.lex_state = 104, .external_lex_state = 3}, - [5651] = {.lex_state = 104, .external_lex_state = 3}, - [5652] = {.lex_state = 9, .external_lex_state = 3}, - [5653] = {.lex_state = 12, .external_lex_state = 3}, - [5654] = {.lex_state = 9, .external_lex_state = 3}, - [5655] = {.lex_state = 112, .external_lex_state = 3}, - [5656] = {.lex_state = 104, .external_lex_state = 3}, - [5657] = {.lex_state = 12, .external_lex_state = 3}, - [5658] = {.lex_state = 12, .external_lex_state = 3}, - [5659] = {.lex_state = 104, .external_lex_state = 3}, - [5660] = {.lex_state = 12, .external_lex_state = 3}, - [5661] = {.lex_state = 12, .external_lex_state = 3}, - [5662] = {.lex_state = 110, .external_lex_state = 2}, - [5663] = {.lex_state = 112, .external_lex_state = 3}, - [5664] = {.lex_state = 110, .external_lex_state = 2}, - [5665] = {.lex_state = 1, .external_lex_state = 5}, - [5666] = {.lex_state = 9, .external_lex_state = 3}, - [5667] = {.lex_state = 4, .external_lex_state = 2}, - [5668] = {.lex_state = 12, .external_lex_state = 3}, - [5669] = {.lex_state = 12, .external_lex_state = 3}, - [5670] = {.lex_state = 104, .external_lex_state = 3}, - [5671] = {.lex_state = 12, .external_lex_state = 3}, - [5672] = {.lex_state = 112, .external_lex_state = 3}, - [5673] = {.lex_state = 12, .external_lex_state = 3}, - [5674] = {.lex_state = 12, .external_lex_state = 3}, - [5675] = {.lex_state = 12, .external_lex_state = 3}, - [5676] = {.lex_state = 112, .external_lex_state = 3}, - [5677] = {.lex_state = 9, .external_lex_state = 3}, - [5678] = {.lex_state = 12, .external_lex_state = 3}, - [5679] = {.lex_state = 5, .external_lex_state = 3}, - [5680] = {.lex_state = 12, .external_lex_state = 3}, - [5681] = {.lex_state = 12, .external_lex_state = 3}, - [5682] = {.lex_state = 5, .external_lex_state = 3}, - [5683] = {.lex_state = 12, .external_lex_state = 3}, - [5684] = {.lex_state = 12, .external_lex_state = 3}, - [5685] = {.lex_state = 9, .external_lex_state = 3}, - [5686] = {.lex_state = 104, .external_lex_state = 3}, - [5687] = {.lex_state = 112, .external_lex_state = 3}, - [5688] = {.lex_state = 112, .external_lex_state = 3}, - [5689] = {.lex_state = 12, .external_lex_state = 3}, - [5690] = {.lex_state = 9, .external_lex_state = 3}, - [5691] = {.lex_state = 112, .external_lex_state = 3}, - [5692] = {.lex_state = 12, .external_lex_state = 3}, - [5693] = {.lex_state = 112, .external_lex_state = 3}, - [5694] = {.lex_state = 12, .external_lex_state = 3}, - [5695] = {.lex_state = 104, .external_lex_state = 3}, - [5696] = {.lex_state = 12, .external_lex_state = 3}, - [5697] = {.lex_state = 9, .external_lex_state = 3}, - [5698] = {.lex_state = 104, .external_lex_state = 3}, - [5699] = {.lex_state = 104, .external_lex_state = 3}, - [5700] = {.lex_state = 12, .external_lex_state = 3}, - [5701] = {.lex_state = 12, .external_lex_state = 3}, - [5702] = {.lex_state = 12, .external_lex_state = 3}, - [5703] = {.lex_state = 12, .external_lex_state = 3}, - [5704] = {.lex_state = 12, .external_lex_state = 3}, - [5705] = {.lex_state = 104, .external_lex_state = 3}, - [5706] = {.lex_state = 9, .external_lex_state = 3}, - [5707] = {.lex_state = 1, .external_lex_state = 5}, - [5708] = {.lex_state = 12, .external_lex_state = 3}, - [5709] = {.lex_state = 104, .external_lex_state = 3}, - [5710] = {.lex_state = 12, .external_lex_state = 3}, - [5711] = {.lex_state = 104, .external_lex_state = 3}, - [5712] = {.lex_state = 4, .external_lex_state = 3}, - [5713] = {.lex_state = 12, .external_lex_state = 3}, - [5714] = {.lex_state = 12, .external_lex_state = 3}, - [5715] = {.lex_state = 12, .external_lex_state = 3}, - [5716] = {.lex_state = 112, .external_lex_state = 3}, - [5717] = {.lex_state = 12, .external_lex_state = 3}, - [5718] = {.lex_state = 12, .external_lex_state = 3}, - [5719] = {.lex_state = 12, .external_lex_state = 3}, - [5720] = {.lex_state = 12, .external_lex_state = 3}, - [5721] = {.lex_state = 12, .external_lex_state = 3}, - [5722] = {.lex_state = 12, .external_lex_state = 3}, - [5723] = {.lex_state = 104, .external_lex_state = 3}, - [5724] = {.lex_state = 104, .external_lex_state = 3}, - [5725] = {.lex_state = 104, .external_lex_state = 3}, - [5726] = {.lex_state = 12, .external_lex_state = 3}, - [5727] = {.lex_state = 12, .external_lex_state = 3}, - [5728] = {.lex_state = 12, .external_lex_state = 3}, - [5729] = {.lex_state = 9, .external_lex_state = 3}, - [5730] = {.lex_state = 12, .external_lex_state = 3}, - [5731] = {.lex_state = 110, .external_lex_state = 3}, - [5732] = {.lex_state = 112, .external_lex_state = 3}, - [5733] = {.lex_state = 112, .external_lex_state = 3}, - [5734] = {.lex_state = 4, .external_lex_state = 3}, - [5735] = {.lex_state = 4, .external_lex_state = 3}, - [5736] = {.lex_state = 12, .external_lex_state = 3}, - [5737] = {.lex_state = 4, .external_lex_state = 3}, - [5738] = {.lex_state = 12, .external_lex_state = 3}, - [5739] = {.lex_state = 12, .external_lex_state = 3}, - [5740] = {.lex_state = 12, .external_lex_state = 3}, - [5741] = {.lex_state = 104, .external_lex_state = 3}, - [5742] = {.lex_state = 12, .external_lex_state = 3}, - [5743] = {.lex_state = 4, .external_lex_state = 3}, - [5744] = {.lex_state = 12, .external_lex_state = 3}, - [5745] = {.lex_state = 40, .external_lex_state = 3}, - [5746] = {.lex_state = 4, .external_lex_state = 3}, - [5747] = {.lex_state = 104, .external_lex_state = 3}, - [5748] = {.lex_state = 4, .external_lex_state = 3}, - [5749] = {.lex_state = 4, .external_lex_state = 3}, - [5750] = {.lex_state = 112, .external_lex_state = 3}, - [5751] = {.lex_state = 112, .external_lex_state = 3}, - [5752] = {.lex_state = 12, .external_lex_state = 3}, - [5753] = {.lex_state = 4, .external_lex_state = 3}, - [5754] = {.lex_state = 12, .external_lex_state = 3}, - [5755] = {.lex_state = 4, .external_lex_state = 3}, - [5756] = {.lex_state = 9, .external_lex_state = 3}, - [5757] = {.lex_state = 4, .external_lex_state = 3}, - [5758] = {.lex_state = 12, .external_lex_state = 3}, - [5759] = {.lex_state = 12, .external_lex_state = 3}, - [5760] = {.lex_state = 4, .external_lex_state = 3}, - [5761] = {.lex_state = 112, .external_lex_state = 3}, - [5762] = {.lex_state = 112, .external_lex_state = 3}, - [5763] = {.lex_state = 12, .external_lex_state = 3}, - [5764] = {.lex_state = 12, .external_lex_state = 3}, - [5765] = {.lex_state = 4, .external_lex_state = 3}, - [5766] = {.lex_state = 12, .external_lex_state = 3}, - [5767] = {.lex_state = 12, .external_lex_state = 3}, - [5768] = {.lex_state = 4, .external_lex_state = 3}, - [5769] = {.lex_state = 4, .external_lex_state = 3}, - [5770] = {.lex_state = 12, .external_lex_state = 3}, - [5771] = {.lex_state = 5, .external_lex_state = 3}, - [5772] = {.lex_state = 4, .external_lex_state = 3}, - [5773] = {.lex_state = 4, .external_lex_state = 3}, - [5774] = {.lex_state = 5, .external_lex_state = 3}, - [5775] = {.lex_state = 12, .external_lex_state = 3}, - [5776] = {.lex_state = 12, .external_lex_state = 3}, - [5777] = {.lex_state = 4, .external_lex_state = 3}, - [5778] = {.lex_state = 4, .external_lex_state = 3}, - [5779] = {.lex_state = 12, .external_lex_state = 3}, - [5780] = {.lex_state = 4, .external_lex_state = 3}, - [5781] = {.lex_state = 12, .external_lex_state = 3}, - [5782] = {.lex_state = 5, .external_lex_state = 2}, - [5783] = {.lex_state = 12, .external_lex_state = 3}, - [5784] = {.lex_state = 12, .external_lex_state = 3}, - [5785] = {.lex_state = 4, .external_lex_state = 3}, - [5786] = {.lex_state = 4, .external_lex_state = 3}, - [5787] = {.lex_state = 4, .external_lex_state = 3}, - [5788] = {.lex_state = 4, .external_lex_state = 3}, - [5789] = {.lex_state = 5, .external_lex_state = 3}, - [5790] = {.lex_state = 4, .external_lex_state = 3}, - [5791] = {.lex_state = 12, .external_lex_state = 3}, - [5792] = {.lex_state = 4, .external_lex_state = 3}, - [5793] = {.lex_state = 5, .external_lex_state = 3}, - [5794] = {.lex_state = 104, .external_lex_state = 3}, - [5795] = {.lex_state = 110, .external_lex_state = 3}, - [5796] = {.lex_state = 72, .external_lex_state = 3}, - [5797] = {.lex_state = 72, .external_lex_state = 3}, - [5798] = {.lex_state = 110, .external_lex_state = 3}, - [5799] = {.lex_state = 110, .external_lex_state = 3}, - [5800] = {.lex_state = 110, .external_lex_state = 3}, - [5801] = {.lex_state = 1, .external_lex_state = 5}, - [5802] = {.lex_state = 110, .external_lex_state = 3}, - [5803] = {.lex_state = 35, .external_lex_state = 3}, - [5804] = {.lex_state = 110, .external_lex_state = 3}, - [5805] = {.lex_state = 35, .external_lex_state = 3}, - [5806] = {.lex_state = 110, .external_lex_state = 3}, - [5807] = {.lex_state = 35, .external_lex_state = 3}, - [5808] = {.lex_state = 110, .external_lex_state = 3}, - [5809] = {.lex_state = 72, .external_lex_state = 3}, - [5810] = {.lex_state = 72, .external_lex_state = 3}, - [5811] = {.lex_state = 110, .external_lex_state = 3}, - [5812] = {.lex_state = 110, .external_lex_state = 3}, - [5813] = {.lex_state = 35, .external_lex_state = 3}, - [5814] = {.lex_state = 110, .external_lex_state = 3}, - [5815] = {.lex_state = 1, .external_lex_state = 5}, - [5816] = {.lex_state = 5, .external_lex_state = 3}, - [5817] = {.lex_state = 72, .external_lex_state = 3}, - [5818] = {.lex_state = 110, .external_lex_state = 3}, - [5819] = {.lex_state = 35, .external_lex_state = 3}, - [5820] = {.lex_state = 35, .external_lex_state = 3}, - [5821] = {.lex_state = 35, .external_lex_state = 3}, - [5822] = {.lex_state = 5, .external_lex_state = 3}, - [5823] = {.lex_state = 110, .external_lex_state = 3}, - [5824] = {.lex_state = 5, .external_lex_state = 3}, - [5825] = {.lex_state = 35, .external_lex_state = 3}, - [5826] = {.lex_state = 110, .external_lex_state = 3}, - [5827] = {.lex_state = 110, .external_lex_state = 3}, - [5828] = {.lex_state = 110, .external_lex_state = 3}, - [5829] = {.lex_state = 5, .external_lex_state = 3}, - [5830] = {.lex_state = 110, .external_lex_state = 3}, - [5831] = {.lex_state = 110, .external_lex_state = 3}, - [5832] = {.lex_state = 110, .external_lex_state = 3}, - [5833] = {.lex_state = 110, .external_lex_state = 3}, - [5834] = {.lex_state = 5, .external_lex_state = 3}, - [5835] = {.lex_state = 5, .external_lex_state = 3}, - [5836] = {.lex_state = 72, .external_lex_state = 3}, - [5837] = {.lex_state = 5, .external_lex_state = 3}, - [5838] = {.lex_state = 35, .external_lex_state = 3}, - [5839] = {.lex_state = 110, .external_lex_state = 3}, - [5840] = {.lex_state = 72, .external_lex_state = 3}, - [5841] = {.lex_state = 5, .external_lex_state = 3}, - [5842] = {.lex_state = 5, .external_lex_state = 3}, - [5843] = {.lex_state = 5, .external_lex_state = 3}, - [5844] = {.lex_state = 5, .external_lex_state = 3}, - [5845] = {.lex_state = 72, .external_lex_state = 3}, - [5846] = {.lex_state = 110, .external_lex_state = 3}, - [5847] = {.lex_state = 5, .external_lex_state = 3}, - [5848] = {.lex_state = 104, .external_lex_state = 3}, - [5849] = {.lex_state = 5, .external_lex_state = 3}, - [5850] = {.lex_state = 104, .external_lex_state = 3}, - [5851] = {.lex_state = 104, .external_lex_state = 3}, - [5852] = {.lex_state = 104, .external_lex_state = 3}, - [5853] = {.lex_state = 72, .external_lex_state = 3}, - [5854] = {.lex_state = 110, .external_lex_state = 3}, - [5855] = {.lex_state = 110, .external_lex_state = 3}, - [5856] = {.lex_state = 9, .external_lex_state = 3}, - [5857] = {.lex_state = 9, .external_lex_state = 3}, - [5858] = {.lex_state = 9, .external_lex_state = 3}, - [5859] = {.lex_state = 9, .external_lex_state = 3}, - [5860] = {.lex_state = 9, .external_lex_state = 3}, - [5861] = {.lex_state = 9, .external_lex_state = 3}, - [5862] = {.lex_state = 9, .external_lex_state = 3}, - [5863] = {.lex_state = 9, .external_lex_state = 3}, - [5864] = {.lex_state = 9, .external_lex_state = 3}, - [5865] = {.lex_state = 4, .external_lex_state = 3}, - [5866] = {.lex_state = 9, .external_lex_state = 3}, - [5867] = {.lex_state = 9, .external_lex_state = 3}, - [5868] = {.lex_state = 4, .external_lex_state = 3}, - [5869] = {.lex_state = 9, .external_lex_state = 3}, - [5870] = {.lex_state = 9, .external_lex_state = 3}, - [5871] = {.lex_state = 4, .external_lex_state = 3}, - [5872] = {.lex_state = 9, .external_lex_state = 3}, - [5873] = {.lex_state = 9, .external_lex_state = 3}, - [5874] = {.lex_state = 9, .external_lex_state = 3}, - [5875] = {.lex_state = 9, .external_lex_state = 3}, - [5876] = {.lex_state = 4, .external_lex_state = 3}, - [5877] = {.lex_state = 9, .external_lex_state = 3}, - [5878] = {.lex_state = 9, .external_lex_state = 3}, - [5879] = {.lex_state = 9, .external_lex_state = 3}, - [5880] = {.lex_state = 9, .external_lex_state = 3}, - [5881] = {.lex_state = 9, .external_lex_state = 3}, - [5882] = {.lex_state = 4, .external_lex_state = 3}, - [5883] = {.lex_state = 4, .external_lex_state = 3}, - [5884] = {.lex_state = 5, .external_lex_state = 3}, - [5885] = {.lex_state = 5, .external_lex_state = 3}, - [5886] = {.lex_state = 9, .external_lex_state = 3}, - [5887] = {.lex_state = 4, .external_lex_state = 3}, - [5888] = {.lex_state = 5, .external_lex_state = 3}, - [5889] = {.lex_state = 9, .external_lex_state = 3}, - [5890] = {.lex_state = 4, .external_lex_state = 3}, - [5891] = {.lex_state = 12, .external_lex_state = 3}, - [5892] = {.lex_state = 12, .external_lex_state = 3}, - [5893] = {.lex_state = 9, .external_lex_state = 3}, - [5894] = {.lex_state = 9, .external_lex_state = 3}, - [5895] = {.lex_state = 5, .external_lex_state = 3}, - [5896] = {.lex_state = 4, .external_lex_state = 3}, - [5897] = {.lex_state = 4, .external_lex_state = 3}, - [5898] = {.lex_state = 4, .external_lex_state = 3}, - [5899] = {.lex_state = 5, .external_lex_state = 3}, - [5900] = {.lex_state = 36, .external_lex_state = 3}, - [5901] = {.lex_state = 4, .external_lex_state = 3}, - [5902] = {.lex_state = 4, .external_lex_state = 3}, - [5903] = {.lex_state = 12, .external_lex_state = 3}, - [5904] = {.lex_state = 102, .external_lex_state = 3}, - [5905] = {.lex_state = 102, .external_lex_state = 3}, - [5906] = {.lex_state = 102, .external_lex_state = 3}, - [5907] = {.lex_state = 4, .external_lex_state = 3}, - [5908] = {.lex_state = 102, .external_lex_state = 3}, - [5909] = {.lex_state = 5, .external_lex_state = 3}, - [5910] = {.lex_state = 102, .external_lex_state = 3}, - [5911] = {.lex_state = 5, .external_lex_state = 3}, - [5912] = {.lex_state = 102, .external_lex_state = 3}, - [5913] = {.lex_state = 28, .external_lex_state = 3}, - [5914] = {.lex_state = 5, .external_lex_state = 3}, - [5915] = {.lex_state = 12, .external_lex_state = 3}, - [5916] = {.lex_state = 12, .external_lex_state = 3}, - [5917] = {.lex_state = 102, .external_lex_state = 3}, - [5918] = {.lex_state = 12, .external_lex_state = 3}, - [5919] = {.lex_state = 12, .external_lex_state = 3}, - [5920] = {.lex_state = 4, .external_lex_state = 3}, - [5921] = {.lex_state = 12, .external_lex_state = 3}, - [5922] = {.lex_state = 12, .external_lex_state = 3}, - [5923] = {.lex_state = 102, .external_lex_state = 3}, - [5924] = {.lex_state = 102, .external_lex_state = 3}, - [5925] = {.lex_state = 102, .external_lex_state = 3}, - [5926] = {.lex_state = 102, .external_lex_state = 3}, - [5927] = {.lex_state = 12, .external_lex_state = 3}, - [5928] = {.lex_state = 4, .external_lex_state = 3}, - [5929] = {.lex_state = 102, .external_lex_state = 3}, - [5930] = {.lex_state = 102, .external_lex_state = 3}, - [5931] = {.lex_state = 102, .external_lex_state = 3}, - [5932] = {.lex_state = 102, .external_lex_state = 3}, - [5933] = {.lex_state = 12, .external_lex_state = 3}, - [5934] = {.lex_state = 102, .external_lex_state = 3}, - [5935] = {.lex_state = 102, .external_lex_state = 3}, - [5936] = {.lex_state = 102, .external_lex_state = 3}, - [5937] = {.lex_state = 5, .external_lex_state = 3}, - [5938] = {.lex_state = 5, .external_lex_state = 3}, - [5939] = {.lex_state = 4, .external_lex_state = 3}, - [5940] = {.lex_state = 12, .external_lex_state = 3}, - [5941] = {.lex_state = 12, .external_lex_state = 3}, - [5942] = {.lex_state = 4, .external_lex_state = 3}, - [5943] = {.lex_state = 102, .external_lex_state = 3}, - [5944] = {.lex_state = 5, .external_lex_state = 3}, - [5945] = {.lex_state = 5, .external_lex_state = 3}, - [5946] = {.lex_state = 102, .external_lex_state = 3}, - [5947] = {.lex_state = 12, .external_lex_state = 3}, - [5948] = {.lex_state = 102, .external_lex_state = 3}, - [5949] = {.lex_state = 102, .external_lex_state = 3}, - [5950] = {.lex_state = 102, .external_lex_state = 3}, - [5951] = {.lex_state = 5, .external_lex_state = 3}, - [5952] = {.lex_state = 12, .external_lex_state = 3}, - [5953] = {.lex_state = 102, .external_lex_state = 3}, - [5954] = {.lex_state = 12, .external_lex_state = 3}, - [5955] = {.lex_state = 102, .external_lex_state = 3}, - [5956] = {.lex_state = 12, .external_lex_state = 3}, - [5957] = {.lex_state = 102, .external_lex_state = 3}, - [5958] = {.lex_state = 102, .external_lex_state = 3}, - [5959] = {.lex_state = 12, .external_lex_state = 3}, - [5960] = {.lex_state = 12, .external_lex_state = 3}, - [5961] = {.lex_state = 4, .external_lex_state = 3}, - [5962] = {.lex_state = 12, .external_lex_state = 3}, - [5963] = {.lex_state = 102, .external_lex_state = 3}, - [5964] = {.lex_state = 102, .external_lex_state = 3}, - [5965] = {.lex_state = 102, .external_lex_state = 3}, - [5966] = {.lex_state = 102, .external_lex_state = 3}, - [5967] = {.lex_state = 102, .external_lex_state = 3}, - [5968] = {.lex_state = 12, .external_lex_state = 3}, - [5969] = {.lex_state = 102, .external_lex_state = 3}, - [5970] = {.lex_state = 5, .external_lex_state = 3}, - [5971] = {.lex_state = 102, .external_lex_state = 3}, - [5972] = {.lex_state = 5, .external_lex_state = 3}, - [5973] = {.lex_state = 5, .external_lex_state = 3}, - [5974] = {.lex_state = 102, .external_lex_state = 3}, - [5975] = {.lex_state = 102, .external_lex_state = 3}, - [5976] = {.lex_state = 12, .external_lex_state = 3}, - [5977] = {.lex_state = 2, .external_lex_state = 6}, - [5978] = {.lex_state = 2, .external_lex_state = 6}, - [5979] = {.lex_state = 2, .external_lex_state = 6}, - [5980] = {.lex_state = 9, .external_lex_state = 3}, - [5981] = {.lex_state = 9, .external_lex_state = 3}, - [5982] = {.lex_state = 2, .external_lex_state = 6}, - [5983] = {.lex_state = 9, .external_lex_state = 3}, - [5984] = {.lex_state = 2, .external_lex_state = 6}, - [5985] = {.lex_state = 2, .external_lex_state = 6}, - [5986] = {.lex_state = 2, .external_lex_state = 6}, - [5987] = {.lex_state = 9, .external_lex_state = 3}, - [5988] = {.lex_state = 2, .external_lex_state = 6}, - [5989] = {.lex_state = 9, .external_lex_state = 3}, - [5990] = {.lex_state = 2, .external_lex_state = 6}, - [5991] = {.lex_state = 2, .external_lex_state = 6}, - [5992] = {.lex_state = 9, .external_lex_state = 3}, - [5993] = {.lex_state = 9, .external_lex_state = 3}, - [5994] = {.lex_state = 9, .external_lex_state = 3}, - [5995] = {.lex_state = 9, .external_lex_state = 3}, - [5996] = {.lex_state = 9, .external_lex_state = 3}, - [5997] = {.lex_state = 2, .external_lex_state = 6}, - [5998] = {.lex_state = 5, .external_lex_state = 3}, - [5999] = {.lex_state = 2, .external_lex_state = 6}, - [6000] = {.lex_state = 9, .external_lex_state = 3}, - [6001] = {.lex_state = 2, .external_lex_state = 6}, - [6002] = {.lex_state = 9, .external_lex_state = 3}, - [6003] = {.lex_state = 2, .external_lex_state = 6}, - [6004] = {.lex_state = 2, .external_lex_state = 6}, - [6005] = {.lex_state = 9, .external_lex_state = 3}, - [6006] = {.lex_state = 9, .external_lex_state = 3}, - [6007] = {.lex_state = 2, .external_lex_state = 6}, - [6008] = {.lex_state = 2, .external_lex_state = 6}, - [6009] = {.lex_state = 2, .external_lex_state = 6}, - [6010] = {.lex_state = 2, .external_lex_state = 6}, - [6011] = {.lex_state = 2, .external_lex_state = 6}, - [6012] = {.lex_state = 2, .external_lex_state = 6}, - [6013] = {.lex_state = 2, .external_lex_state = 6}, - [6014] = {.lex_state = 9, .external_lex_state = 3}, - [6015] = {.lex_state = 2, .external_lex_state = 6}, - [6016] = {.lex_state = 4, .external_lex_state = 3}, - [6017] = {.lex_state = 4, .external_lex_state = 3}, - [6018] = {.lex_state = 4, .external_lex_state = 3}, - [6019] = {.lex_state = 2, .external_lex_state = 6}, - [6020] = {.lex_state = 9, .external_lex_state = 3}, - [6021] = {.lex_state = 9, .external_lex_state = 3}, - [6022] = {.lex_state = 9, .external_lex_state = 3}, - [6023] = {.lex_state = 2, .external_lex_state = 6}, - [6024] = {.lex_state = 9, .external_lex_state = 3}, - [6025] = {.lex_state = 9, .external_lex_state = 3}, - [6026] = {.lex_state = 2, .external_lex_state = 6}, - [6027] = {.lex_state = 2, .external_lex_state = 6}, - [6028] = {.lex_state = 2, .external_lex_state = 6}, - [6029] = {.lex_state = 2, .external_lex_state = 6}, - [6030] = {.lex_state = 2, .external_lex_state = 6}, - [6031] = {.lex_state = 5, .external_lex_state = 3}, - [6032] = {.lex_state = 2, .external_lex_state = 6}, - [6033] = {.lex_state = 2, .external_lex_state = 6}, - [6034] = {.lex_state = 2, .external_lex_state = 6}, - [6035] = {.lex_state = 9, .external_lex_state = 3}, - [6036] = {.lex_state = 2, .external_lex_state = 6}, - [6037] = {.lex_state = 5, .external_lex_state = 3}, - [6038] = {.lex_state = 9, .external_lex_state = 3}, - [6039] = {.lex_state = 2, .external_lex_state = 6}, - [6040] = {.lex_state = 2, .external_lex_state = 6}, - [6041] = {.lex_state = 2, .external_lex_state = 6}, - [6042] = {.lex_state = 9, .external_lex_state = 3}, - [6043] = {.lex_state = 2, .external_lex_state = 6}, - [6044] = {.lex_state = 9, .external_lex_state = 3}, - [6045] = {.lex_state = 9, .external_lex_state = 3}, - [6046] = {.lex_state = 2, .external_lex_state = 6}, - [6047] = {.lex_state = 47, .external_lex_state = 3}, - [6048] = {.lex_state = 9, .external_lex_state = 3}, - [6049] = {.lex_state = 2, .external_lex_state = 6}, - [6050] = {.lex_state = 4, .external_lex_state = 3}, - [6051] = {.lex_state = 2, .external_lex_state = 6}, - [6052] = {.lex_state = 4, .external_lex_state = 3}, - [6053] = {.lex_state = 9, .external_lex_state = 3}, - [6054] = {.lex_state = 2, .external_lex_state = 6}, - [6055] = {.lex_state = 9, .external_lex_state = 3}, - [6056] = {.lex_state = 2, .external_lex_state = 6}, - [6057] = {.lex_state = 9, .external_lex_state = 3}, - [6058] = {.lex_state = 2, .external_lex_state = 6}, - [6059] = {.lex_state = 9, .external_lex_state = 3}, - [6060] = {.lex_state = 2, .external_lex_state = 6}, - [6061] = {.lex_state = 2, .external_lex_state = 6}, - [6062] = {.lex_state = 2, .external_lex_state = 6}, - [6063] = {.lex_state = 2, .external_lex_state = 6}, - [6064] = {.lex_state = 2, .external_lex_state = 6}, - [6065] = {.lex_state = 2, .external_lex_state = 6}, - [6066] = {.lex_state = 2, .external_lex_state = 6}, - [6067] = {.lex_state = 2, .external_lex_state = 6}, - [6068] = {.lex_state = 2, .external_lex_state = 6}, - [6069] = {.lex_state = 2, .external_lex_state = 6}, - [6070] = {.lex_state = 12, .external_lex_state = 3}, - [6071] = {.lex_state = 2, .external_lex_state = 6}, - [6072] = {.lex_state = 2, .external_lex_state = 6}, - [6073] = {.lex_state = 2, .external_lex_state = 6}, - [6074] = {.lex_state = 2, .external_lex_state = 6}, - [6075] = {.lex_state = 2, .external_lex_state = 6}, - [6076] = {.lex_state = 2, .external_lex_state = 6}, - [6077] = {.lex_state = 2, .external_lex_state = 6}, - [6078] = {.lex_state = 2, .external_lex_state = 6}, - [6079] = {.lex_state = 2, .external_lex_state = 6}, - [6080] = {.lex_state = 2, .external_lex_state = 6}, - [6081] = {.lex_state = 2, .external_lex_state = 6}, - [6082] = {.lex_state = 9, .external_lex_state = 3}, - [6083] = {.lex_state = 2, .external_lex_state = 6}, - [6084] = {.lex_state = 12, .external_lex_state = 3}, - [6085] = {.lex_state = 2, .external_lex_state = 6}, - [6086] = {.lex_state = 2, .external_lex_state = 6}, - [6087] = {.lex_state = 2, .external_lex_state = 6}, - [6088] = {.lex_state = 2, .external_lex_state = 6}, - [6089] = {.lex_state = 2, .external_lex_state = 6}, - [6090] = {.lex_state = 2, .external_lex_state = 6}, - [6091] = {.lex_state = 2, .external_lex_state = 6}, - [6092] = {.lex_state = 2, .external_lex_state = 6}, - [6093] = {.lex_state = 2, .external_lex_state = 6}, - [6094] = {.lex_state = 2, .external_lex_state = 6}, - [6095] = {.lex_state = 4, .external_lex_state = 3}, - [6096] = {.lex_state = 12, .external_lex_state = 3}, - [6097] = {.lex_state = 47, .external_lex_state = 3}, - [6098] = {.lex_state = 2, .external_lex_state = 6}, - [6099] = {.lex_state = 9, .external_lex_state = 3}, - [6100] = {.lex_state = 4, .external_lex_state = 3}, - [6101] = {.lex_state = 2, .external_lex_state = 6}, - [6102] = {.lex_state = 2, .external_lex_state = 6}, - [6103] = {.lex_state = 2, .external_lex_state = 6}, - [6104] = {.lex_state = 2, .external_lex_state = 6}, - [6105] = {.lex_state = 47, .external_lex_state = 3}, - [6106] = {.lex_state = 2, .external_lex_state = 6}, - [6107] = {.lex_state = 40, .external_lex_state = 3}, - [6108] = {.lex_state = 2, .external_lex_state = 6}, - [6109] = {.lex_state = 4, .external_lex_state = 3}, - [6110] = {.lex_state = 2, .external_lex_state = 6}, - [6111] = {.lex_state = 2, .external_lex_state = 6}, - [6112] = {.lex_state = 2, .external_lex_state = 6}, - [6113] = {.lex_state = 2, .external_lex_state = 6}, - [6114] = {.lex_state = 2, .external_lex_state = 6}, - [6115] = {.lex_state = 2, .external_lex_state = 6}, - [6116] = {.lex_state = 5, .external_lex_state = 3}, - [6117] = {.lex_state = 2, .external_lex_state = 6}, - [6118] = {.lex_state = 9, .external_lex_state = 3}, - [6119] = {.lex_state = 9, .external_lex_state = 3}, - [6120] = {.lex_state = 4, .external_lex_state = 3}, - [6121] = {.lex_state = 4, .external_lex_state = 3}, - [6122] = {.lex_state = 40, .external_lex_state = 3}, - [6123] = {.lex_state = 2, .external_lex_state = 6}, - [6124] = {.lex_state = 12, .external_lex_state = 3}, - [6125] = {.lex_state = 12, .external_lex_state = 3}, - [6126] = {.lex_state = 47, .external_lex_state = 3}, - [6127] = {.lex_state = 12, .external_lex_state = 3}, - [6128] = {.lex_state = 12, .external_lex_state = 3}, - [6129] = {.lex_state = 12, .external_lex_state = 3}, - [6130] = {.lex_state = 4, .external_lex_state = 3}, - [6131] = {.lex_state = 4, .external_lex_state = 3}, - [6132] = {.lex_state = 12, .external_lex_state = 3}, - [6133] = {.lex_state = 12, .external_lex_state = 3}, - [6134] = {.lex_state = 12, .external_lex_state = 3}, - [6135] = {.lex_state = 40, .external_lex_state = 3}, - [6136] = {.lex_state = 28, .external_lex_state = 3}, - [6137] = {.lex_state = 12, .external_lex_state = 3}, - [6138] = {.lex_state = 40, .external_lex_state = 3}, - [6139] = {.lex_state = 4, .external_lex_state = 3}, - [6140] = {.lex_state = 12, .external_lex_state = 3}, - [6141] = {.lex_state = 4, .external_lex_state = 3}, - [6142] = {.lex_state = 4, .external_lex_state = 3}, - [6143] = {.lex_state = 12, .external_lex_state = 3}, - [6144] = {.lex_state = 12, .external_lex_state = 3}, - [6145] = {.lex_state = 12, .external_lex_state = 3}, - [6146] = {.lex_state = 12, .external_lex_state = 3}, - [6147] = {.lex_state = 12, .external_lex_state = 3}, - [6148] = {.lex_state = 12, .external_lex_state = 3}, - [6149] = {.lex_state = 12, .external_lex_state = 3}, - [6150] = {.lex_state = 4, .external_lex_state = 3}, - [6151] = {.lex_state = 4, .external_lex_state = 3}, - [6152] = {.lex_state = 12, .external_lex_state = 3}, - [6153] = {.lex_state = 12, .external_lex_state = 3}, - [6154] = {.lex_state = 12, .external_lex_state = 3}, - [6155] = {.lex_state = 12, .external_lex_state = 3}, - [6156] = {.lex_state = 12, .external_lex_state = 3}, - [6157] = {.lex_state = 2, .external_lex_state = 6}, - [6158] = {.lex_state = 12, .external_lex_state = 3}, - [6159] = {.lex_state = 12, .external_lex_state = 3}, - [6160] = {.lex_state = 12, .external_lex_state = 3}, - [6161] = {.lex_state = 12, .external_lex_state = 3}, - [6162] = {.lex_state = 12, .external_lex_state = 3}, - [6163] = {.lex_state = 12, .external_lex_state = 3}, - [6164] = {.lex_state = 12, .external_lex_state = 3}, - [6165] = {.lex_state = 4, .external_lex_state = 3}, - [6166] = {.lex_state = 12, .external_lex_state = 3}, - [6167] = {.lex_state = 12, .external_lex_state = 3}, - [6168] = {.lex_state = 12, .external_lex_state = 3}, - [6169] = {.lex_state = 12, .external_lex_state = 3}, - [6170] = {.lex_state = 40, .external_lex_state = 3}, - [6171] = {.lex_state = 4, .external_lex_state = 3}, - [6172] = {.lex_state = 12, .external_lex_state = 3}, - [6173] = {.lex_state = 12, .external_lex_state = 3}, - [6174] = {.lex_state = 12, .external_lex_state = 3}, - [6175] = {.lex_state = 4, .external_lex_state = 3}, - [6176] = {.lex_state = 4, .external_lex_state = 3}, - [6177] = {.lex_state = 4, .external_lex_state = 3}, - [6178] = {.lex_state = 12, .external_lex_state = 3}, - [6179] = {.lex_state = 12, .external_lex_state = 3}, - [6180] = {.lex_state = 12, .external_lex_state = 3}, - [6181] = {.lex_state = 4, .external_lex_state = 3}, - [6182] = {.lex_state = 12, .external_lex_state = 3}, - [6183] = {.lex_state = 4, .external_lex_state = 3}, - [6184] = {.lex_state = 12, .external_lex_state = 3}, - [6185] = {.lex_state = 4, .external_lex_state = 3}, - [6186] = {.lex_state = 4, .external_lex_state = 3}, - [6187] = {.lex_state = 4, .external_lex_state = 3}, - [6188] = {.lex_state = 4, .external_lex_state = 3}, - [6189] = {.lex_state = 12, .external_lex_state = 3}, - [6190] = {.lex_state = 2, .external_lex_state = 6}, - [6191] = {.lex_state = 12, .external_lex_state = 3}, - [6192] = {.lex_state = 4, .external_lex_state = 3}, - [6193] = {.lex_state = 12, .external_lex_state = 3}, - [6194] = {.lex_state = 47, .external_lex_state = 3}, - [6195] = {.lex_state = 4, .external_lex_state = 3}, - [6196] = {.lex_state = 12, .external_lex_state = 3}, - [6197] = {.lex_state = 12, .external_lex_state = 3}, - [6198] = {.lex_state = 4, .external_lex_state = 3}, - [6199] = {.lex_state = 12, .external_lex_state = 3}, - [6200] = {.lex_state = 47, .external_lex_state = 3}, - [6201] = {.lex_state = 12, .external_lex_state = 3}, - [6202] = {.lex_state = 4, .external_lex_state = 3}, - [6203] = {.lex_state = 12, .external_lex_state = 3}, - [6204] = {.lex_state = 12, .external_lex_state = 3}, - [6205] = {.lex_state = 12, .external_lex_state = 3}, - [6206] = {.lex_state = 12, .external_lex_state = 3}, - [6207] = {.lex_state = 12, .external_lex_state = 3}, - [6208] = {.lex_state = 12, .external_lex_state = 3}, - [6209] = {.lex_state = 12, .external_lex_state = 3}, - [6210] = {.lex_state = 12, .external_lex_state = 3}, - [6211] = {.lex_state = 28, .external_lex_state = 3}, - [6212] = {.lex_state = 12, .external_lex_state = 3}, - [6213] = {.lex_state = 4, .external_lex_state = 3}, - [6214] = {.lex_state = 12, .external_lex_state = 3}, - [6215] = {.lex_state = 12, .external_lex_state = 3}, - [6216] = {.lex_state = 12, .external_lex_state = 3}, - [6217] = {.lex_state = 12, .external_lex_state = 3}, - [6218] = {.lex_state = 12, .external_lex_state = 3}, - [6219] = {.lex_state = 4, .external_lex_state = 3}, - [6220] = {.lex_state = 4, .external_lex_state = 3}, - [6221] = {.lex_state = 12, .external_lex_state = 3}, - [6222] = {.lex_state = 12, .external_lex_state = 3}, - [6223] = {.lex_state = 12, .external_lex_state = 3}, - [6224] = {.lex_state = 4, .external_lex_state = 3}, - [6225] = {.lex_state = 4, .external_lex_state = 3}, - [6226] = {.lex_state = 4, .external_lex_state = 3}, - [6227] = {.lex_state = 12, .external_lex_state = 3}, - [6228] = {.lex_state = 12, .external_lex_state = 3}, - [6229] = {.lex_state = 12, .external_lex_state = 3}, - [6230] = {.lex_state = 4, .external_lex_state = 3}, - [6231] = {.lex_state = 4, .external_lex_state = 3}, - [6232] = {.lex_state = 4, .external_lex_state = 3}, - [6233] = {.lex_state = 12, .external_lex_state = 3}, - [6234] = {.lex_state = 4, .external_lex_state = 3}, - [6235] = {.lex_state = 4, .external_lex_state = 3}, - [6236] = {.lex_state = 4, .external_lex_state = 3}, - [6237] = {.lex_state = 12, .external_lex_state = 3}, - [6238] = {.lex_state = 4, .external_lex_state = 3}, - [6239] = {.lex_state = 47, .external_lex_state = 3}, - [6240] = {.lex_state = 12, .external_lex_state = 3}, - [6241] = {.lex_state = 12, .external_lex_state = 3}, - [6242] = {.lex_state = 4, .external_lex_state = 3}, - [6243] = {.lex_state = 4, .external_lex_state = 3}, - [6244] = {.lex_state = 12, .external_lex_state = 3}, - [6245] = {.lex_state = 12, .external_lex_state = 3}, - [6246] = {.lex_state = 12, .external_lex_state = 3}, - [6247] = {.lex_state = 12, .external_lex_state = 3}, - [6248] = {.lex_state = 12, .external_lex_state = 3}, - [6249] = {.lex_state = 12, .external_lex_state = 3}, - [6250] = {.lex_state = 4, .external_lex_state = 3}, - [6251] = {.lex_state = 12, .external_lex_state = 3}, - [6252] = {.lex_state = 12, .external_lex_state = 3}, - [6253] = {.lex_state = 12, .external_lex_state = 3}, - [6254] = {.lex_state = 12, .external_lex_state = 3}, - [6255] = {.lex_state = 9, .external_lex_state = 3}, - [6256] = {.lex_state = 12, .external_lex_state = 3}, - [6257] = {.lex_state = 4, .external_lex_state = 3}, - [6258] = {.lex_state = 12, .external_lex_state = 3}, - [6259] = {.lex_state = 9, .external_lex_state = 3}, - [6260] = {.lex_state = 47, .external_lex_state = 3}, - [6261] = {.lex_state = 12, .external_lex_state = 3}, - [6262] = {.lex_state = 47, .external_lex_state = 3}, - [6263] = {.lex_state = 9, .external_lex_state = 3}, - [6264] = {.lex_state = 47, .external_lex_state = 3}, - [6265] = {.lex_state = 12, .external_lex_state = 3}, - [6266] = {.lex_state = 12, .external_lex_state = 3}, - [6267] = {.lex_state = 12, .external_lex_state = 3}, - [6268] = {.lex_state = 12, .external_lex_state = 3}, - [6269] = {.lex_state = 12, .external_lex_state = 3}, - [6270] = {.lex_state = 12, .external_lex_state = 3}, - [6271] = {.lex_state = 12, .external_lex_state = 3}, - [6272] = {.lex_state = 2, .external_lex_state = 6}, - [6273] = {.lex_state = 47, .external_lex_state = 3}, - [6274] = {.lex_state = 9, .external_lex_state = 3}, - [6275] = {.lex_state = 9, .external_lex_state = 3}, - [6276] = {.lex_state = 9, .external_lex_state = 3}, - [6277] = {.lex_state = 9, .external_lex_state = 3}, - [6278] = {.lex_state = 4, .external_lex_state = 3}, - [6279] = {.lex_state = 9, .external_lex_state = 3}, - [6280] = {.lex_state = 9, .external_lex_state = 3}, - [6281] = {.lex_state = 9, .external_lex_state = 3}, - [6282] = {.lex_state = 9, .external_lex_state = 3}, - [6283] = {.lex_state = 9, .external_lex_state = 3}, - [6284] = {.lex_state = 4, .external_lex_state = 3}, - [6285] = {.lex_state = 9, .external_lex_state = 3}, - [6286] = {.lex_state = 9, .external_lex_state = 3}, - [6287] = {.lex_state = 9, .external_lex_state = 3}, - [6288] = {.lex_state = 9, .external_lex_state = 3}, - [6289] = {.lex_state = 4, .external_lex_state = 3}, - [6290] = {.lex_state = 9, .external_lex_state = 3}, - [6291] = {.lex_state = 9, .external_lex_state = 3}, - [6292] = {.lex_state = 9, .external_lex_state = 3}, - [6293] = {.lex_state = 4, .external_lex_state = 3}, - [6294] = {.lex_state = 9, .external_lex_state = 3}, - [6295] = {.lex_state = 4, .external_lex_state = 3}, - [6296] = {.lex_state = 47, .external_lex_state = 3}, - [6297] = {.lex_state = 9, .external_lex_state = 3}, - [6298] = {.lex_state = 4, .external_lex_state = 3}, - [6299] = {.lex_state = 9, .external_lex_state = 3}, - [6300] = {.lex_state = 9, .external_lex_state = 3}, - [6301] = {.lex_state = 9, .external_lex_state = 3}, - [6302] = {.lex_state = 9, .external_lex_state = 3}, - [6303] = {.lex_state = 4, .external_lex_state = 3}, - [6304] = {.lex_state = 9, .external_lex_state = 3}, - [6305] = {.lex_state = 9, .external_lex_state = 3}, - [6306] = {.lex_state = 9, .external_lex_state = 3}, - [6307] = {.lex_state = 4, .external_lex_state = 3}, - [6308] = {.lex_state = 4, .external_lex_state = 3}, - [6309] = {.lex_state = 4, .external_lex_state = 3}, - [6310] = {.lex_state = 9, .external_lex_state = 3}, - [6311] = {.lex_state = 9, .external_lex_state = 3}, - [6312] = {.lex_state = 48, .external_lex_state = 3}, - [6313] = {.lex_state = 4, .external_lex_state = 3}, - [6314] = {.lex_state = 4, .external_lex_state = 3}, - [6315] = {.lex_state = 6, .external_lex_state = 3}, - [6316] = {.lex_state = 48, .external_lex_state = 3}, - [6317] = {.lex_state = 4, .external_lex_state = 3}, - [6318] = {.lex_state = 4, .external_lex_state = 3}, - [6319] = {.lex_state = 4, .external_lex_state = 3}, - [6320] = {.lex_state = 48, .external_lex_state = 3}, - [6321] = {.lex_state = 4, .external_lex_state = 3}, - [6322] = {.lex_state = 48, .external_lex_state = 3}, - [6323] = {.lex_state = 4, .external_lex_state = 3}, - [6324] = {.lex_state = 4, .external_lex_state = 3}, - [6325] = {.lex_state = 4, .external_lex_state = 3}, - [6326] = {.lex_state = 4, .external_lex_state = 3}, - [6327] = {.lex_state = 4, .external_lex_state = 3}, - [6328] = {.lex_state = 4, .external_lex_state = 3}, - [6329] = {.lex_state = 4, .external_lex_state = 3}, - [6330] = {.lex_state = 4, .external_lex_state = 3}, - [6331] = {.lex_state = 4, .external_lex_state = 3}, - [6332] = {.lex_state = 4, .external_lex_state = 3}, - [6333] = {.lex_state = 48, .external_lex_state = 3}, - [6334] = {.lex_state = 28, .external_lex_state = 3}, - [6335] = {.lex_state = 4, .external_lex_state = 3}, - [6336] = {.lex_state = 4, .external_lex_state = 3}, - [6337] = {.lex_state = 4, .external_lex_state = 3}, - [6338] = {.lex_state = 4, .external_lex_state = 3}, - [6339] = {.lex_state = 48, .external_lex_state = 3}, - [6340] = {.lex_state = 4, .external_lex_state = 3}, - [6341] = {.lex_state = 6, .external_lex_state = 3}, - [6342] = {.lex_state = 9, .external_lex_state = 3}, - [6343] = {.lex_state = 48, .external_lex_state = 3}, - [6344] = {.lex_state = 9, .external_lex_state = 3}, - [6345] = {.lex_state = 48, .external_lex_state = 3}, - [6346] = {.lex_state = 9, .external_lex_state = 3}, - [6347] = {.lex_state = 4, .external_lex_state = 3}, - [6348] = {.lex_state = 4, .external_lex_state = 3}, - [6349] = {.lex_state = 48, .external_lex_state = 3}, - [6350] = {.lex_state = 9, .external_lex_state = 3}, - [6351] = {.lex_state = 48, .external_lex_state = 3}, - [6352] = {.lex_state = 9, .external_lex_state = 3}, - [6353] = {.lex_state = 6, .external_lex_state = 3}, - [6354] = {.lex_state = 48, .external_lex_state = 3}, - [6355] = {.lex_state = 48, .external_lex_state = 3}, - [6356] = {.lex_state = 12, .external_lex_state = 3}, - [6357] = {.lex_state = 48, .external_lex_state = 3}, - [6358] = {.lex_state = 48, .external_lex_state = 3}, - [6359] = {.lex_state = 9, .external_lex_state = 3}, - [6360] = {.lex_state = 9, .external_lex_state = 3}, - [6361] = {.lex_state = 48, .external_lex_state = 3}, - [6362] = {.lex_state = 4, .external_lex_state = 3}, - [6363] = {.lex_state = 4, .external_lex_state = 3}, - [6364] = {.lex_state = 4, .external_lex_state = 3}, - [6365] = {.lex_state = 12, .external_lex_state = 3}, - [6366] = {.lex_state = 48, .external_lex_state = 3}, - [6367] = {.lex_state = 4, .external_lex_state = 3}, - [6368] = {.lex_state = 9, .external_lex_state = 3}, - [6369] = {.lex_state = 48, .external_lex_state = 3}, - [6370] = {.lex_state = 6, .external_lex_state = 3}, - [6371] = {.lex_state = 48, .external_lex_state = 3}, - [6372] = {.lex_state = 12, .external_lex_state = 3}, - [6373] = {.lex_state = 102, .external_lex_state = 3}, - [6374] = {.lex_state = 71, .external_lex_state = 7}, - [6375] = {.lex_state = 4, .external_lex_state = 3}, - [6376] = {.lex_state = 4, .external_lex_state = 3}, - [6377] = {.lex_state = 102, .external_lex_state = 3}, - [6378] = {.lex_state = 9, .external_lex_state = 3}, - [6379] = {.lex_state = 9, .external_lex_state = 3}, - [6380] = {.lex_state = 71, .external_lex_state = 7}, - [6381] = {.lex_state = 9, .external_lex_state = 3}, - [6382] = {.lex_state = 102, .external_lex_state = 3}, - [6383] = {.lex_state = 71, .external_lex_state = 7}, - [6384] = {.lex_state = 9, .external_lex_state = 3}, - [6385] = {.lex_state = 9, .external_lex_state = 3}, - [6386] = {.lex_state = 71, .external_lex_state = 7}, - [6387] = {.lex_state = 71, .external_lex_state = 7}, - [6388] = {.lex_state = 9, .external_lex_state = 3}, - [6389] = {.lex_state = 71, .external_lex_state = 7}, - [6390] = {.lex_state = 71, .external_lex_state = 7}, - [6391] = {.lex_state = 71, .external_lex_state = 7}, - [6392] = {.lex_state = 4, .external_lex_state = 3}, - [6393] = {.lex_state = 102, .external_lex_state = 3}, - [6394] = {.lex_state = 6, .external_lex_state = 3}, - [6395] = {.lex_state = 4, .external_lex_state = 3}, - [6396] = {.lex_state = 71, .external_lex_state = 7}, - [6397] = {.lex_state = 71, .external_lex_state = 7}, - [6398] = {.lex_state = 4, .external_lex_state = 3}, - [6399] = {.lex_state = 71, .external_lex_state = 7}, - [6400] = {.lex_state = 102, .external_lex_state = 3}, - [6401] = {.lex_state = 4, .external_lex_state = 3}, - [6402] = {.lex_state = 71, .external_lex_state = 7}, - [6403] = {.lex_state = 71, .external_lex_state = 7}, - [6404] = {.lex_state = 4, .external_lex_state = 3}, - [6405] = {.lex_state = 4, .external_lex_state = 3}, - [6406] = {.lex_state = 102, .external_lex_state = 3}, - [6407] = {.lex_state = 71, .external_lex_state = 7}, - [6408] = {.lex_state = 4, .external_lex_state = 3}, - [6409] = {.lex_state = 4, .external_lex_state = 3}, - [6410] = {.lex_state = 4, .external_lex_state = 3}, - [6411] = {.lex_state = 71, .external_lex_state = 7}, - [6412] = {.lex_state = 71, .external_lex_state = 7}, - [6413] = {.lex_state = 102, .external_lex_state = 3}, - [6414] = {.lex_state = 71, .external_lex_state = 7}, - [6415] = {.lex_state = 6, .external_lex_state = 3}, - [6416] = {.lex_state = 9, .external_lex_state = 3}, - [6417] = {.lex_state = 12, .external_lex_state = 3}, - [6418] = {.lex_state = 71, .external_lex_state = 7}, - [6419] = {.lex_state = 6, .external_lex_state = 3}, - [6420] = {.lex_state = 71, .external_lex_state = 7}, - [6421] = {.lex_state = 12, .external_lex_state = 3}, - [6422] = {.lex_state = 102, .external_lex_state = 3}, - [6423] = {.lex_state = 4, .external_lex_state = 3}, - [6424] = {.lex_state = 71, .external_lex_state = 7}, - [6425] = {.lex_state = 12, .external_lex_state = 3}, - [6426] = {.lex_state = 9, .external_lex_state = 3}, - [6427] = {.lex_state = 6, .external_lex_state = 3}, - [6428] = {.lex_state = 71, .external_lex_state = 7}, - [6429] = {.lex_state = 6, .external_lex_state = 3}, - [6430] = {.lex_state = 4, .external_lex_state = 3}, - [6431] = {.lex_state = 71, .external_lex_state = 7}, - [6432] = {.lex_state = 4, .external_lex_state = 3}, - [6433] = {.lex_state = 71, .external_lex_state = 7}, - [6434] = {.lex_state = 102, .external_lex_state = 3}, - [6435] = {.lex_state = 71, .external_lex_state = 7}, - [6436] = {.lex_state = 6, .external_lex_state = 3}, - [6437] = {.lex_state = 6, .external_lex_state = 3}, - [6438] = {.lex_state = 9, .external_lex_state = 3}, - [6439] = {.lex_state = 71, .external_lex_state = 7}, - [6440] = {.lex_state = 8, .external_lex_state = 3}, - [6441] = {.lex_state = 4, .external_lex_state = 3}, - [6442] = {.lex_state = 4, .external_lex_state = 3}, - [6443] = {.lex_state = 4, .external_lex_state = 3}, - [6444] = {.lex_state = 4, .external_lex_state = 3}, - [6445] = {.lex_state = 4, .external_lex_state = 3}, - [6446] = {.lex_state = 12, .external_lex_state = 3}, - [6447] = {.lex_state = 12, .external_lex_state = 3}, - [6448] = {.lex_state = 4, .external_lex_state = 3}, - [6449] = {.lex_state = 4, .external_lex_state = 3}, - [6450] = {.lex_state = 5, .external_lex_state = 3}, - [6451] = {.lex_state = 4, .external_lex_state = 3}, - [6452] = {.lex_state = 12, .external_lex_state = 3}, - [6453] = {.lex_state = 51, .external_lex_state = 3}, - [6454] = {.lex_state = 28, .external_lex_state = 3}, - [6455] = {.lex_state = 9, .external_lex_state = 3}, - [6456] = {.lex_state = 9, .external_lex_state = 3}, - [6457] = {.lex_state = 4, .external_lex_state = 3}, - [6458] = {.lex_state = 12, .external_lex_state = 3}, - [6459] = {.lex_state = 9, .external_lex_state = 3}, - [6460] = {.lex_state = 4, .external_lex_state = 3}, - [6461] = {.lex_state = 5, .external_lex_state = 3}, - [6462] = {.lex_state = 4, .external_lex_state = 3}, - [6463] = {.lex_state = 5, .external_lex_state = 3}, - [6464] = {.lex_state = 4, .external_lex_state = 3}, - [6465] = {.lex_state = 9, .external_lex_state = 3}, - [6466] = {.lex_state = 51, .external_lex_state = 3}, - [6467] = {.lex_state = 4, .external_lex_state = 3}, - [6468] = {.lex_state = 4, .external_lex_state = 3}, - [6469] = {.lex_state = 6, .external_lex_state = 3}, - [6470] = {.lex_state = 12, .external_lex_state = 3}, - [6471] = {.lex_state = 6, .external_lex_state = 3}, - [6472] = {.lex_state = 4, .external_lex_state = 3}, - [6473] = {.lex_state = 12, .external_lex_state = 3}, - [6474] = {.lex_state = 4, .external_lex_state = 3}, - [6475] = {.lex_state = 4, .external_lex_state = 3}, - [6476] = {.lex_state = 12, .external_lex_state = 3}, - [6477] = {.lex_state = 4, .external_lex_state = 3}, - [6478] = {.lex_state = 5, .external_lex_state = 3}, - [6479] = {.lex_state = 4, .external_lex_state = 3}, - [6480] = {.lex_state = 4, .external_lex_state = 3}, - [6481] = {.lex_state = 4, .external_lex_state = 3}, - [6482] = {.lex_state = 4, .external_lex_state = 3}, - [6483] = {.lex_state = 4, .external_lex_state = 3}, - [6484] = {.lex_state = 4, .external_lex_state = 3}, - [6485] = {.lex_state = 51, .external_lex_state = 3}, - [6486] = {.lex_state = 4, .external_lex_state = 3}, - [6487] = {.lex_state = 12, .external_lex_state = 3}, - [6488] = {.lex_state = 5, .external_lex_state = 3}, - [6489] = {.lex_state = 8, .external_lex_state = 3}, - [6490] = {.lex_state = 4, .external_lex_state = 3}, - [6491] = {.lex_state = 12, .external_lex_state = 3}, - [6492] = {.lex_state = 12, .external_lex_state = 3}, - [6493] = {.lex_state = 4, .external_lex_state = 3}, - [6494] = {.lex_state = 9, .external_lex_state = 3}, - [6495] = {.lex_state = 4, .external_lex_state = 3}, - [6496] = {.lex_state = 4, .external_lex_state = 3}, - [6497] = {.lex_state = 4, .external_lex_state = 3}, - [6498] = {.lex_state = 51, .external_lex_state = 3}, - [6499] = {.lex_state = 4, .external_lex_state = 3}, - [6500] = {.lex_state = 8, .external_lex_state = 3}, - [6501] = {.lex_state = 8, .external_lex_state = 3}, - [6502] = {.lex_state = 4, .external_lex_state = 3}, - [6503] = {.lex_state = 51, .external_lex_state = 3}, - [6504] = {.lex_state = 51, .external_lex_state = 3}, - [6505] = {.lex_state = 28, .external_lex_state = 3}, - [6506] = {.lex_state = 9, .external_lex_state = 3}, - [6507] = {.lex_state = 4, .external_lex_state = 3}, - [6508] = {.lex_state = 4, .external_lex_state = 3}, - [6509] = {.lex_state = 51, .external_lex_state = 3}, - [6510] = {.lex_state = 4, .external_lex_state = 3}, - [6511] = {.lex_state = 8, .external_lex_state = 3}, - [6512] = {.lex_state = 4, .external_lex_state = 3}, - [6513] = {.lex_state = 4, .external_lex_state = 3}, - [6514] = {.lex_state = 51, .external_lex_state = 3}, - [6515] = {.lex_state = 12, .external_lex_state = 3}, - [6516] = {.lex_state = 4, .external_lex_state = 3}, - [6517] = {.lex_state = 12, .external_lex_state = 3}, - [6518] = {.lex_state = 4, .external_lex_state = 3}, - [6519] = {.lex_state = 4, .external_lex_state = 3}, - [6520] = {.lex_state = 9, .external_lex_state = 3}, - [6521] = {.lex_state = 8, .external_lex_state = 3}, - [6522] = {.lex_state = 4, .external_lex_state = 3}, - [6523] = {.lex_state = 51, .external_lex_state = 3}, - [6524] = {.lex_state = 4, .external_lex_state = 3}, - [6525] = {.lex_state = 4, .external_lex_state = 3}, - [6526] = {.lex_state = 4, .external_lex_state = 3}, - [6527] = {.lex_state = 51, .external_lex_state = 3}, - [6528] = {.lex_state = 4, .external_lex_state = 3}, - [6529] = {.lex_state = 12, .external_lex_state = 3}, - [6530] = {.lex_state = 51, .external_lex_state = 3}, - [6531] = {.lex_state = 4, .external_lex_state = 3}, - [6532] = {.lex_state = 12, .external_lex_state = 3}, - [6533] = {.lex_state = 5, .external_lex_state = 3}, - [6534] = {.lex_state = 51, .external_lex_state = 3}, - [6535] = {.lex_state = 4, .external_lex_state = 3}, - [6536] = {.lex_state = 4, .external_lex_state = 3}, - [6537] = {.lex_state = 12, .external_lex_state = 3}, - [6538] = {.lex_state = 5, .external_lex_state = 3}, - [6539] = {.lex_state = 9, .external_lex_state = 3}, - [6540] = {.lex_state = 4, .external_lex_state = 3}, - [6541] = {.lex_state = 4, .external_lex_state = 3}, - [6542] = {.lex_state = 4, .external_lex_state = 3}, - [6543] = {.lex_state = 4, .external_lex_state = 3}, - [6544] = {.lex_state = 4, .external_lex_state = 3}, - [6545] = {.lex_state = 12, .external_lex_state = 3}, - [6546] = {.lex_state = 4, .external_lex_state = 3}, - [6547] = {.lex_state = 9, .external_lex_state = 3}, - [6548] = {.lex_state = 4, .external_lex_state = 3}, - [6549] = {.lex_state = 4, .external_lex_state = 3}, - [6550] = {.lex_state = 8, .external_lex_state = 3}, - [6551] = {.lex_state = 4, .external_lex_state = 3}, - [6552] = {.lex_state = 9, .external_lex_state = 3}, - [6553] = {.lex_state = 5, .external_lex_state = 3}, - [6554] = {.lex_state = 4, .external_lex_state = 3}, - [6555] = {.lex_state = 12, .external_lex_state = 3}, - [6556] = {.lex_state = 12, .external_lex_state = 3}, - [6557] = {.lex_state = 12, .external_lex_state = 3}, - [6558] = {.lex_state = 4, .external_lex_state = 3}, - [6559] = {.lex_state = 51, .external_lex_state = 3}, - [6560] = {.lex_state = 28, .external_lex_state = 3}, - [6561] = {.lex_state = 9, .external_lex_state = 3}, - [6562] = {.lex_state = 8, .external_lex_state = 3}, - [6563] = {.lex_state = 8, .external_lex_state = 3}, - [6564] = {.lex_state = 4, .external_lex_state = 3}, - [6565] = {.lex_state = 4, .external_lex_state = 3}, - [6566] = {.lex_state = 4, .external_lex_state = 3}, - [6567] = {.lex_state = 12, .external_lex_state = 3}, - [6568] = {.lex_state = 4, .external_lex_state = 3}, - [6569] = {.lex_state = 4, .external_lex_state = 3}, - [6570] = {.lex_state = 9, .external_lex_state = 3}, - [6571] = {.lex_state = 4, .external_lex_state = 3}, - [6572] = {.lex_state = 9, .external_lex_state = 3}, - [6573] = {.lex_state = 4, .external_lex_state = 3}, - [6574] = {.lex_state = 9, .external_lex_state = 3}, - [6575] = {.lex_state = 6, .external_lex_state = 3}, - [6576] = {.lex_state = 4, .external_lex_state = 3}, - [6577] = {.lex_state = 9, .external_lex_state = 3}, - [6578] = {.lex_state = 4, .external_lex_state = 3}, - [6579] = {.lex_state = 4, .external_lex_state = 3}, - [6580] = {.lex_state = 12, .external_lex_state = 3}, - [6581] = {.lex_state = 12, .external_lex_state = 3}, - [6582] = {.lex_state = 4, .external_lex_state = 3}, - [6583] = {.lex_state = 4, .external_lex_state = 3}, - [6584] = {.lex_state = 9, .external_lex_state = 3}, - [6585] = {.lex_state = 5, .external_lex_state = 3}, - [6586] = {.lex_state = 4, .external_lex_state = 3}, - [6587] = {.lex_state = 12, .external_lex_state = 3}, - [6588] = {.lex_state = 4, .external_lex_state = 3}, - [6589] = {.lex_state = 4, .external_lex_state = 3}, - [6590] = {.lex_state = 4, .external_lex_state = 3}, - [6591] = {.lex_state = 4, .external_lex_state = 3}, - [6592] = {.lex_state = 5, .external_lex_state = 3}, - [6593] = {.lex_state = 9, .external_lex_state = 3}, - [6594] = {.lex_state = 4, .external_lex_state = 3}, - [6595] = {.lex_state = 4, .external_lex_state = 3}, - [6596] = {.lex_state = 12, .external_lex_state = 3}, - [6597] = {.lex_state = 8, .external_lex_state = 3}, - [6598] = {.lex_state = 12, .external_lex_state = 3}, - [6599] = {.lex_state = 12, .external_lex_state = 3}, - [6600] = {.lex_state = 4, .external_lex_state = 3}, - [6601] = {.lex_state = 8, .external_lex_state = 3}, - [6602] = {.lex_state = 12, .external_lex_state = 3}, - [6603] = {.lex_state = 4, .external_lex_state = 3}, - [6604] = {.lex_state = 12, .external_lex_state = 8}, - [6605] = {.lex_state = 12, .external_lex_state = 3}, - [6606] = {.lex_state = 8, .external_lex_state = 3}, - [6607] = {.lex_state = 8, .external_lex_state = 3}, - [6608] = {.lex_state = 12, .external_lex_state = 3}, - [6609] = {.lex_state = 8, .external_lex_state = 3}, - [6610] = {.lex_state = 12, .external_lex_state = 3}, - [6611] = {.lex_state = 12, .external_lex_state = 3}, - [6612] = {.lex_state = 12, .external_lex_state = 3}, - [6613] = {.lex_state = 8, .external_lex_state = 3}, - [6614] = {.lex_state = 4, .external_lex_state = 3}, - [6615] = {.lex_state = 4, .external_lex_state = 3}, - [6616] = {.lex_state = 13, .external_lex_state = 3}, - [6617] = {.lex_state = 8, .external_lex_state = 3}, - [6618] = {.lex_state = 4, .external_lex_state = 3}, - [6619] = {.lex_state = 8, .external_lex_state = 3}, - [6620] = {.lex_state = 13, .external_lex_state = 3}, - [6621] = {.lex_state = 13, .external_lex_state = 3}, - [6622] = {.lex_state = 12, .external_lex_state = 3}, - [6623] = {.lex_state = 8, .external_lex_state = 3}, - [6624] = {.lex_state = 8, .external_lex_state = 3}, - [6625] = {.lex_state = 13, .external_lex_state = 3}, - [6626] = {.lex_state = 4, .external_lex_state = 3}, - [6627] = {.lex_state = 8, .external_lex_state = 3}, - [6628] = {.lex_state = 13, .external_lex_state = 3}, - [6629] = {.lex_state = 12, .external_lex_state = 3}, - [6630] = {.lex_state = 12, .external_lex_state = 8}, - [6631] = {.lex_state = 12, .external_lex_state = 3}, - [6632] = {.lex_state = 8, .external_lex_state = 3}, - [6633] = {.lex_state = 8, .external_lex_state = 3}, - [6634] = {.lex_state = 8, .external_lex_state = 3}, - [6635] = {.lex_state = 12, .external_lex_state = 3}, - [6636] = {.lex_state = 12, .external_lex_state = 3}, - [6637] = {.lex_state = 12, .external_lex_state = 3}, - [6638] = {.lex_state = 4, .external_lex_state = 3}, - [6639] = {.lex_state = 4, .external_lex_state = 3}, - [6640] = {.lex_state = 12, .external_lex_state = 3}, - [6641] = {.lex_state = 12, .external_lex_state = 3}, - [6642] = {.lex_state = 8, .external_lex_state = 3}, - [6643] = {.lex_state = 4, .external_lex_state = 3}, - [6644] = {.lex_state = 12, .external_lex_state = 3}, - [6645] = {.lex_state = 4, .external_lex_state = 3}, - [6646] = {.lex_state = 8, .external_lex_state = 3}, - [6647] = {.lex_state = 4, .external_lex_state = 3}, - [6648] = {.lex_state = 12, .external_lex_state = 3}, - [6649] = {.lex_state = 12, .external_lex_state = 3}, - [6650] = {.lex_state = 12, .external_lex_state = 3}, - [6651] = {.lex_state = 12, .external_lex_state = 3}, - [6652] = {.lex_state = 12, .external_lex_state = 3}, - [6653] = {.lex_state = 4, .external_lex_state = 3}, - [6654] = {.lex_state = 4, .external_lex_state = 3}, - [6655] = {.lex_state = 12, .external_lex_state = 3}, - [6656] = {.lex_state = 8, .external_lex_state = 3}, - [6657] = {.lex_state = 4, .external_lex_state = 3}, - [6658] = {.lex_state = 8, .external_lex_state = 3}, - [6659] = {.lex_state = 8, .external_lex_state = 3}, - [6660] = {.lex_state = 4, .external_lex_state = 3}, - [6661] = {.lex_state = 12, .external_lex_state = 3}, - [6662] = {.lex_state = 12, .external_lex_state = 3}, - [6663] = {.lex_state = 4, .external_lex_state = 3}, - [6664] = {.lex_state = 4, .external_lex_state = 3}, - [6665] = {.lex_state = 8, .external_lex_state = 3}, - [6666] = {.lex_state = 4, .external_lex_state = 3}, - [6667] = {.lex_state = 12, .external_lex_state = 3}, - [6668] = {.lex_state = 4, .external_lex_state = 3}, - [6669] = {.lex_state = 4, .external_lex_state = 3}, - [6670] = {.lex_state = 8, .external_lex_state = 3}, - [6671] = {.lex_state = 12, .external_lex_state = 3}, - [6672] = {.lex_state = 4, .external_lex_state = 3}, - [6673] = {.lex_state = 4, .external_lex_state = 3}, - [6674] = {.lex_state = 8, .external_lex_state = 3}, - [6675] = {.lex_state = 8, .external_lex_state = 3}, - [6676] = {.lex_state = 12, .external_lex_state = 8}, - [6677] = {.lex_state = 13, .external_lex_state = 3}, - [6678] = {.lex_state = 8, .external_lex_state = 3}, - [6679] = {.lex_state = 12, .external_lex_state = 3}, - [6680] = {.lex_state = 8, .external_lex_state = 3}, - [6681] = {.lex_state = 12, .external_lex_state = 3}, - [6682] = {.lex_state = 12, .external_lex_state = 8}, - [6683] = {.lex_state = 8, .external_lex_state = 3}, - [6684] = {.lex_state = 12, .external_lex_state = 3}, - [6685] = {.lex_state = 24, .external_lex_state = 3}, - [6686] = {.lex_state = 8, .external_lex_state = 3}, - [6687] = {.lex_state = 8, .external_lex_state = 3}, - [6688] = {.lex_state = 12, .external_lex_state = 3}, - [6689] = {.lex_state = 8, .external_lex_state = 3}, - [6690] = {.lex_state = 8, .external_lex_state = 3}, - [6691] = {.lex_state = 8, .external_lex_state = 3}, - [6692] = {.lex_state = 8, .external_lex_state = 3}, - [6693] = {.lex_state = 12, .external_lex_state = 3}, - [6694] = {.lex_state = 8, .external_lex_state = 3}, - [6695] = {.lex_state = 8, .external_lex_state = 3}, - [6696] = {.lex_state = 12, .external_lex_state = 3}, - [6697] = {.lex_state = 8, .external_lex_state = 3}, - [6698] = {.lex_state = 8, .external_lex_state = 3}, - [6699] = {.lex_state = 4, .external_lex_state = 3}, - [6700] = {.lex_state = 8, .external_lex_state = 3}, - [6701] = {.lex_state = 12, .external_lex_state = 3}, - [6702] = {.lex_state = 12, .external_lex_state = 8}, - [6703] = {.lex_state = 8, .external_lex_state = 3}, - [6704] = {.lex_state = 13, .external_lex_state = 3}, - [6705] = {.lex_state = 12, .external_lex_state = 3}, - [6706] = {.lex_state = 12, .external_lex_state = 3}, - [6707] = {.lex_state = 4, .external_lex_state = 3}, - [6708] = {.lex_state = 24, .external_lex_state = 3}, - [6709] = {.lex_state = 12, .external_lex_state = 3}, - [6710] = {.lex_state = 8, .external_lex_state = 3}, - [6711] = {.lex_state = 13, .external_lex_state = 3}, - [6712] = {.lex_state = 4, .external_lex_state = 3}, - [6713] = {.lex_state = 4, .external_lex_state = 3}, - [6714] = {.lex_state = 12, .external_lex_state = 8}, - [6715] = {.lex_state = 8, .external_lex_state = 3}, - [6716] = {.lex_state = 12, .external_lex_state = 3}, - [6717] = {.lex_state = 8, .external_lex_state = 3}, - [6718] = {.lex_state = 8, .external_lex_state = 3}, - [6719] = {.lex_state = 8, .external_lex_state = 3}, - [6720] = {.lex_state = 13, .external_lex_state = 3}, - [6721] = {.lex_state = 4, .external_lex_state = 3}, - [6722] = {.lex_state = 24, .external_lex_state = 3}, - [6723] = {.lex_state = 12, .external_lex_state = 3}, - [6724] = {.lex_state = 9, .external_lex_state = 3}, - [6725] = {.lex_state = 6, .external_lex_state = 3}, - [6726] = {.lex_state = 9, .external_lex_state = 3}, - [6727] = {.lex_state = 4, .external_lex_state = 3}, - [6728] = {.lex_state = 8, .external_lex_state = 3}, - [6729] = {.lex_state = 12, .external_lex_state = 3}, - [6730] = {.lex_state = 8, .external_lex_state = 3}, - [6731] = {.lex_state = 12, .external_lex_state = 3}, - [6732] = {.lex_state = 12, .external_lex_state = 3}, - [6733] = {.lex_state = 12, .external_lex_state = 3}, - [6734] = {.lex_state = 13, .external_lex_state = 3}, - [6735] = {.lex_state = 24, .external_lex_state = 3}, - [6736] = {.lex_state = 12, .external_lex_state = 8}, - [6737] = {.lex_state = 4, .external_lex_state = 3}, - [6738] = {.lex_state = 8, .external_lex_state = 3}, - [6739] = {.lex_state = 12, .external_lex_state = 3}, - [6740] = {.lex_state = 8, .external_lex_state = 3}, - [6741] = {.lex_state = 8, .external_lex_state = 3}, - [6742] = {.lex_state = 12, .external_lex_state = 3}, - [6743] = {.lex_state = 8, .external_lex_state = 3}, - [6744] = {.lex_state = 12, .external_lex_state = 3}, - [6745] = {.lex_state = 4, .external_lex_state = 3}, - [6746] = {.lex_state = 8, .external_lex_state = 3}, - [6747] = {.lex_state = 8, .external_lex_state = 3}, - [6748] = {.lex_state = 13, .external_lex_state = 3}, - [6749] = {.lex_state = 8, .external_lex_state = 3}, - [6750] = {.lex_state = 12, .external_lex_state = 3}, - [6751] = {.lex_state = 8, .external_lex_state = 3}, - [6752] = {.lex_state = 8, .external_lex_state = 3}, - [6753] = {.lex_state = 8, .external_lex_state = 3}, - [6754] = {.lex_state = 8, .external_lex_state = 3}, - [6755] = {.lex_state = 12, .external_lex_state = 8}, - [6756] = {.lex_state = 4, .external_lex_state = 3}, - [6757] = {.lex_state = 4, .external_lex_state = 3}, - [6758] = {.lex_state = 4, .external_lex_state = 3}, - [6759] = {.lex_state = 4, .external_lex_state = 3}, - [6760] = {.lex_state = 12, .external_lex_state = 3}, - [6761] = {.lex_state = 4, .external_lex_state = 3}, - [6762] = {.lex_state = 12, .external_lex_state = 8}, - [6763] = {.lex_state = 12, .external_lex_state = 3}, - [6764] = {.lex_state = 12, .external_lex_state = 3}, - [6765] = {.lex_state = 12, .external_lex_state = 3}, - [6766] = {.lex_state = 9, .external_lex_state = 3}, - [6767] = {.lex_state = 12, .external_lex_state = 3}, - [6768] = {.lex_state = 8, .external_lex_state = 3}, - [6769] = {.lex_state = 8, .external_lex_state = 3}, - [6770] = {.lex_state = 8, .external_lex_state = 3}, - [6771] = {.lex_state = 12, .external_lex_state = 3}, - [6772] = {.lex_state = 12, .external_lex_state = 3}, - [6773] = {.lex_state = 12, .external_lex_state = 3}, - [6774] = {.lex_state = 4, .external_lex_state = 3}, - [6775] = {.lex_state = 8, .external_lex_state = 3}, - [6776] = {.lex_state = 8, .external_lex_state = 3}, - [6777] = {.lex_state = 8, .external_lex_state = 3}, - [6778] = {.lex_state = 8, .external_lex_state = 3}, - [6779] = {.lex_state = 8, .external_lex_state = 3}, - [6780] = {.lex_state = 8, .external_lex_state = 3}, - [6781] = {.lex_state = 24, .external_lex_state = 3}, - [6782] = {.lex_state = 8, .external_lex_state = 3}, - [6783] = {.lex_state = 12, .external_lex_state = 3}, - [6784] = {.lex_state = 4, .external_lex_state = 3}, - [6785] = {.lex_state = 8, .external_lex_state = 3}, - [6786] = {.lex_state = 4, .external_lex_state = 3}, - [6787] = {.lex_state = 8, .external_lex_state = 3}, - [6788] = {.lex_state = 12, .external_lex_state = 3}, - [6789] = {.lex_state = 8, .external_lex_state = 3}, - [6790] = {.lex_state = 8, .external_lex_state = 3}, - [6791] = {.lex_state = 8, .external_lex_state = 3}, - [6792] = {.lex_state = 12, .external_lex_state = 3}, - [6793] = {.lex_state = 12, .external_lex_state = 3}, - [6794] = {.lex_state = 8, .external_lex_state = 3}, - [6795] = {.lex_state = 4, .external_lex_state = 3}, - [6796] = {.lex_state = 8, .external_lex_state = 3}, - [6797] = {.lex_state = 12, .external_lex_state = 3}, - [6798] = {.lex_state = 8, .external_lex_state = 3}, - [6799] = {.lex_state = 8, .external_lex_state = 3}, - [6800] = {.lex_state = 13, .external_lex_state = 3}, - [6801] = {.lex_state = 8, .external_lex_state = 3}, - [6802] = {.lex_state = 12, .external_lex_state = 3}, - [6803] = {.lex_state = 8, .external_lex_state = 3}, - [6804] = {.lex_state = 4, .external_lex_state = 3}, - [6805] = {.lex_state = 8, .external_lex_state = 3}, - [6806] = {.lex_state = 12, .external_lex_state = 3}, - [6807] = {.lex_state = 8, .external_lex_state = 3}, - [6808] = {.lex_state = 12, .external_lex_state = 3}, - [6809] = {.lex_state = 8, .external_lex_state = 3}, - [6810] = {.lex_state = 12, .external_lex_state = 3}, - [6811] = {.lex_state = 12, .external_lex_state = 3}, - [6812] = {.lex_state = 12, .external_lex_state = 3}, - [6813] = {.lex_state = 12, .external_lex_state = 3}, - [6814] = {.lex_state = 12, .external_lex_state = 3}, - [6815] = {.lex_state = 12, .external_lex_state = 3}, - [6816] = {.lex_state = 12, .external_lex_state = 3}, - [6817] = {.lex_state = 4, .external_lex_state = 3}, - [6818] = {.lex_state = 12, .external_lex_state = 3}, - [6819] = {.lex_state = 9, .external_lex_state = 3}, - [6820] = {.lex_state = 12, .external_lex_state = 3}, - [6821] = {.lex_state = 12, .external_lex_state = 3}, - [6822] = {.lex_state = 4, .external_lex_state = 3}, - [6823] = {.lex_state = 12, .external_lex_state = 3}, - [6824] = {.lex_state = 4, .external_lex_state = 3}, - [6825] = {.lex_state = 9, .external_lex_state = 3}, - [6826] = {.lex_state = 12, .external_lex_state = 3}, - [6827] = {.lex_state = 12, .external_lex_state = 3}, - [6828] = {.lex_state = 4, .external_lex_state = 3}, - [6829] = {.lex_state = 4, .external_lex_state = 3}, - [6830] = {.lex_state = 4, .external_lex_state = 3}, - [6831] = {.lex_state = 4, .external_lex_state = 3}, - [6832] = {.lex_state = 12, .external_lex_state = 3}, - [6833] = {.lex_state = 12, .external_lex_state = 3}, - [6834] = {.lex_state = 12, .external_lex_state = 3}, - [6835] = {.lex_state = 12, .external_lex_state = 3}, - [6836] = {.lex_state = 12, .external_lex_state = 3}, - [6837] = {.lex_state = 4, .external_lex_state = 3}, - [6838] = {.lex_state = 4, .external_lex_state = 3}, - [6839] = {.lex_state = 103, .external_lex_state = 3}, - [6840] = {.lex_state = 4, .external_lex_state = 3}, - [6841] = {.lex_state = 12, .external_lex_state = 3}, - [6842] = {.lex_state = 12, .external_lex_state = 3}, - [6843] = {.lex_state = 12, .external_lex_state = 3}, - [6844] = {.lex_state = 4, .external_lex_state = 3}, - [6845] = {.lex_state = 4, .external_lex_state = 3}, - [6846] = {.lex_state = 12, .external_lex_state = 3}, - [6847] = {.lex_state = 12, .external_lex_state = 3}, - [6848] = {.lex_state = 4, .external_lex_state = 3}, - [6849] = {.lex_state = 12, .external_lex_state = 3}, - [6850] = {.lex_state = 12, .external_lex_state = 3}, - [6851] = {.lex_state = 4, .external_lex_state = 3}, - [6852] = {.lex_state = 4, .external_lex_state = 3}, - [6853] = {.lex_state = 12, .external_lex_state = 3}, - [6854] = {.lex_state = 4, .external_lex_state = 3}, - [6855] = {.lex_state = 12, .external_lex_state = 3}, - [6856] = {.lex_state = 4, .external_lex_state = 3}, - [6857] = {.lex_state = 12, .external_lex_state = 3}, - [6858] = {.lex_state = 4, .external_lex_state = 3}, - [6859] = {.lex_state = 12, .external_lex_state = 3}, - [6860] = {.lex_state = 9, .external_lex_state = 3}, - [6861] = {.lex_state = 12, .external_lex_state = 3}, - [6862] = {.lex_state = 5, .external_lex_state = 3}, - [6863] = {.lex_state = 12, .external_lex_state = 3}, - [6864] = {.lex_state = 103, .external_lex_state = 3}, - [6865] = {.lex_state = 12, .external_lex_state = 3}, - [6866] = {.lex_state = 12, .external_lex_state = 3}, - [6867] = {.lex_state = 12, .external_lex_state = 3}, - [6868] = {.lex_state = 12, .external_lex_state = 3}, - [6869] = {.lex_state = 12, .external_lex_state = 3}, - [6870] = {.lex_state = 12, .external_lex_state = 3}, - [6871] = {.lex_state = 9, .external_lex_state = 3}, - [6872] = {.lex_state = 12, .external_lex_state = 3}, - [6873] = {.lex_state = 103, .external_lex_state = 3}, - [6874] = {.lex_state = 4, .external_lex_state = 3}, - [6875] = {.lex_state = 12, .external_lex_state = 3}, - [6876] = {.lex_state = 12, .external_lex_state = 3}, - [6877] = {.lex_state = 12, .external_lex_state = 3}, - [6878] = {.lex_state = 12, .external_lex_state = 3}, - [6879] = {.lex_state = 12, .external_lex_state = 3}, - [6880] = {.lex_state = 12, .external_lex_state = 3}, - [6881] = {.lex_state = 4, .external_lex_state = 3}, - [6882] = {.lex_state = 12, .external_lex_state = 3}, - [6883] = {.lex_state = 4, .external_lex_state = 3}, - [6884] = {.lex_state = 12, .external_lex_state = 3}, - [6885] = {.lex_state = 12, .external_lex_state = 3}, - [6886] = {.lex_state = 4, .external_lex_state = 3}, - [6887] = {.lex_state = 12, .external_lex_state = 3}, - [6888] = {.lex_state = 4, .external_lex_state = 3}, - [6889] = {.lex_state = 9, .external_lex_state = 3}, - [6890] = {.lex_state = 12, .external_lex_state = 3}, - [6891] = {.lex_state = 12, .external_lex_state = 3}, - [6892] = {.lex_state = 4, .external_lex_state = 3}, - [6893] = {.lex_state = 4, .external_lex_state = 3}, - [6894] = {.lex_state = 4, .external_lex_state = 3}, - [6895] = {.lex_state = 4, .external_lex_state = 3}, - [6896] = {.lex_state = 12, .external_lex_state = 3}, - [6897] = {.lex_state = 4, .external_lex_state = 3}, - [6898] = {.lex_state = 4, .external_lex_state = 3}, - [6899] = {.lex_state = 4, .external_lex_state = 3}, - [6900] = {.lex_state = 4, .external_lex_state = 3}, - [6901] = {.lex_state = 12, .external_lex_state = 3}, - [6902] = {.lex_state = 4, .external_lex_state = 3}, - [6903] = {.lex_state = 9, .external_lex_state = 3}, - [6904] = {.lex_state = 4, .external_lex_state = 3}, - [6905] = {.lex_state = 4, .external_lex_state = 3}, - [6906] = {.lex_state = 4, .external_lex_state = 3}, - [6907] = {.lex_state = 12, .external_lex_state = 3}, - [6908] = {.lex_state = 12, .external_lex_state = 3}, - [6909] = {.lex_state = 9, .external_lex_state = 3}, - [6910] = {.lex_state = 4, .external_lex_state = 3}, - [6911] = {.lex_state = 12, .external_lex_state = 3}, - [6912] = {.lex_state = 4, .external_lex_state = 3}, - [6913] = {.lex_state = 9, .external_lex_state = 3}, - [6914] = {.lex_state = 9, .external_lex_state = 3}, - [6915] = {.lex_state = 12, .external_lex_state = 3}, - [6916] = {.lex_state = 4, .external_lex_state = 3}, - [6917] = {.lex_state = 4, .external_lex_state = 3}, - [6918] = {.lex_state = 12, .external_lex_state = 3}, - [6919] = {.lex_state = 116, .external_lex_state = 3}, - [6920] = {.lex_state = 12, .external_lex_state = 3}, - [6921] = {.lex_state = 12, .external_lex_state = 3}, - [6922] = {.lex_state = 13, .external_lex_state = 3}, - [6923] = {.lex_state = 12, .external_lex_state = 3}, - [6924] = {.lex_state = 103, .external_lex_state = 3}, - [6925] = {.lex_state = 102, .external_lex_state = 3}, - [6926] = {.lex_state = 116, .external_lex_state = 3}, - [6927] = {.lex_state = 102, .external_lex_state = 3}, - [6928] = {.lex_state = 12, .external_lex_state = 3}, - [6929] = {.lex_state = 102, .external_lex_state = 3}, - [6930] = {.lex_state = 4, .external_lex_state = 3}, - [6931] = {.lex_state = 12, .external_lex_state = 3}, - [6932] = {.lex_state = 12, .external_lex_state = 3}, - [6933] = {.lex_state = 102, .external_lex_state = 3}, - [6934] = {.lex_state = 12, .external_lex_state = 3}, - [6935] = {.lex_state = 103, .external_lex_state = 3}, - [6936] = {.lex_state = 12, .external_lex_state = 3}, - [6937] = {.lex_state = 4, .external_lex_state = 3}, - [6938] = {.lex_state = 4, .external_lex_state = 3}, - [6939] = {.lex_state = 103, .external_lex_state = 3}, - [6940] = {.lex_state = 102, .external_lex_state = 3}, - [6941] = {.lex_state = 4, .external_lex_state = 3}, - [6942] = {.lex_state = 116, .external_lex_state = 3}, - [6943] = {.lex_state = 103, .external_lex_state = 3}, - [6944] = {.lex_state = 12, .external_lex_state = 3}, - [6945] = {.lex_state = 12, .external_lex_state = 3}, - [6946] = {.lex_state = 12, .external_lex_state = 3}, - [6947] = {.lex_state = 12, .external_lex_state = 3}, - [6948] = {.lex_state = 12, .external_lex_state = 3}, - [6949] = {.lex_state = 102, .external_lex_state = 3}, - [6950] = {.lex_state = 102, .external_lex_state = 3}, - [6951] = {.lex_state = 103, .external_lex_state = 3}, - [6952] = {.lex_state = 12, .external_lex_state = 3}, - [6953] = {.lex_state = 103, .external_lex_state = 3}, - [6954] = {.lex_state = 102, .external_lex_state = 3}, - [6955] = {.lex_state = 12, .external_lex_state = 3}, - [6956] = {.lex_state = 102, .external_lex_state = 3}, - [6957] = {.lex_state = 102, .external_lex_state = 3}, - [6958] = {.lex_state = 12, .external_lex_state = 3}, - [6959] = {.lex_state = 12, .external_lex_state = 3}, - [6960] = {.lex_state = 102, .external_lex_state = 3}, - [6961] = {.lex_state = 116, .external_lex_state = 3}, - [6962] = {.lex_state = 116, .external_lex_state = 3}, - [6963] = {.lex_state = 12, .external_lex_state = 3}, - [6964] = {.lex_state = 12, .external_lex_state = 3}, - [6965] = {.lex_state = 12, .external_lex_state = 3}, - [6966] = {.lex_state = 12, .external_lex_state = 3}, - [6967] = {.lex_state = 116, .external_lex_state = 3}, - [6968] = {.lex_state = 12, .external_lex_state = 3}, - [6969] = {.lex_state = 12, .external_lex_state = 3}, - [6970] = {.lex_state = 102, .external_lex_state = 3}, - [6971] = {.lex_state = 12, .external_lex_state = 3}, - [6972] = {.lex_state = 12, .external_lex_state = 3}, - [6973] = {.lex_state = 102, .external_lex_state = 3}, - [6974] = {.lex_state = 12, .external_lex_state = 3}, - [6975] = {.lex_state = 12, .external_lex_state = 3}, - [6976] = {.lex_state = 12, .external_lex_state = 3}, - [6977] = {.lex_state = 12, .external_lex_state = 3}, - [6978] = {.lex_state = 13, .external_lex_state = 3}, - [6979] = {.lex_state = 102, .external_lex_state = 3}, - [6980] = {.lex_state = 12, .external_lex_state = 3}, - [6981] = {.lex_state = 102, .external_lex_state = 3}, - [6982] = {.lex_state = 4, .external_lex_state = 3}, - [6983] = {.lex_state = 12, .external_lex_state = 3}, - [6984] = {.lex_state = 12, .external_lex_state = 3}, - [6985] = {.lex_state = 102, .external_lex_state = 3}, - [6986] = {.lex_state = 102, .external_lex_state = 3}, - [6987] = {.lex_state = 103, .external_lex_state = 3}, - [6988] = {.lex_state = 12, .external_lex_state = 3}, - [6989] = {.lex_state = 103, .external_lex_state = 3}, - [6990] = {.lex_state = 116, .external_lex_state = 3}, - [6991] = {.lex_state = 12, .external_lex_state = 3}, - [6992] = {.lex_state = 4, .external_lex_state = 3}, - [6993] = {.lex_state = 12, .external_lex_state = 3}, - [6994] = {.lex_state = 12, .external_lex_state = 3}, - [6995] = {.lex_state = 102, .external_lex_state = 3}, - [6996] = {.lex_state = 116, .external_lex_state = 3}, - [6997] = {.lex_state = 13, .external_lex_state = 3}, - [6998] = {.lex_state = 12, .external_lex_state = 3}, - [6999] = {.lex_state = 54, .external_lex_state = 8}, - [7000] = {.lex_state = 24, .external_lex_state = 3}, - [7001] = {.lex_state = 24, .external_lex_state = 3}, - [7002] = {.lex_state = 12, .external_lex_state = 3}, - [7003] = {.lex_state = 12, .external_lex_state = 3}, - [7004] = {.lex_state = 12, .external_lex_state = 3}, - [7005] = {.lex_state = 12, .external_lex_state = 3}, - [7006] = {.lex_state = 12, .external_lex_state = 3}, - [7007] = {.lex_state = 12, .external_lex_state = 3}, - [7008] = {.lex_state = 12, .external_lex_state = 3}, - [7009] = {.lex_state = 12, .external_lex_state = 3}, - [7010] = {.lex_state = 12, .external_lex_state = 3}, - [7011] = {.lex_state = 12, .external_lex_state = 3}, - [7012] = {.lex_state = 12, .external_lex_state = 3}, - [7013] = {.lex_state = 12, .external_lex_state = 3}, - [7014] = {.lex_state = 13, .external_lex_state = 3}, - [7015] = {.lex_state = 13, .external_lex_state = 3}, - [7016] = {.lex_state = 12, .external_lex_state = 3}, - [7017] = {.lex_state = 12, .external_lex_state = 3}, - [7018] = {.lex_state = 102, .external_lex_state = 3}, - [7019] = {.lex_state = 102, .external_lex_state = 3}, - [7020] = {.lex_state = 12, .external_lex_state = 3}, - [7021] = {.lex_state = 103, .external_lex_state = 3}, - [7022] = {.lex_state = 4, .external_lex_state = 3}, - [7023] = {.lex_state = 12, .external_lex_state = 3}, - [7024] = {.lex_state = 4, .external_lex_state = 3}, - [7025] = {.lex_state = 12, .external_lex_state = 3}, - [7026] = {.lex_state = 12, .external_lex_state = 3}, - [7027] = {.lex_state = 12, .external_lex_state = 3}, - [7028] = {.lex_state = 12, .external_lex_state = 3}, - [7029] = {.lex_state = 116, .external_lex_state = 3}, - [7030] = {.lex_state = 13, .external_lex_state = 3}, - [7031] = {.lex_state = 102, .external_lex_state = 3}, - [7032] = {.lex_state = 102, .external_lex_state = 3}, - [7033] = {.lex_state = 102, .external_lex_state = 3}, - [7034] = {.lex_state = 102, .external_lex_state = 3}, - [7035] = {.lex_state = 12, .external_lex_state = 3}, - [7036] = {.lex_state = 102, .external_lex_state = 3}, - [7037] = {.lex_state = 12, .external_lex_state = 3}, - [7038] = {.lex_state = 12, .external_lex_state = 3}, - [7039] = {.lex_state = 12, .external_lex_state = 3}, - [7040] = {.lex_state = 102, .external_lex_state = 3}, - [7041] = {.lex_state = 102, .external_lex_state = 3}, - [7042] = {.lex_state = 103, .external_lex_state = 3}, - [7043] = {.lex_state = 12, .external_lex_state = 3}, - [7044] = {.lex_state = 12, .external_lex_state = 3}, - [7045] = {.lex_state = 103, .external_lex_state = 3}, - [7046] = {.lex_state = 12, .external_lex_state = 3}, - [7047] = {.lex_state = 103, .external_lex_state = 3}, - [7048] = {.lex_state = 12, .external_lex_state = 3}, - [7049] = {.lex_state = 5, .external_lex_state = 3}, - [7050] = {.lex_state = 12, .external_lex_state = 3}, - [7051] = {.lex_state = 24, .external_lex_state = 3}, - [7052] = {.lex_state = 102, .external_lex_state = 3}, - [7053] = {.lex_state = 102, .external_lex_state = 3}, - [7054] = {.lex_state = 12, .external_lex_state = 3}, - [7055] = {.lex_state = 12, .external_lex_state = 3}, - [7056] = {.lex_state = 12, .external_lex_state = 3}, - [7057] = {.lex_state = 12, .external_lex_state = 3}, - [7058] = {.lex_state = 103, .external_lex_state = 3}, - [7059] = {.lex_state = 102, .external_lex_state = 3}, - [7060] = {.lex_state = 12, .external_lex_state = 3}, - [7061] = {.lex_state = 102, .external_lex_state = 3}, - [7062] = {.lex_state = 102, .external_lex_state = 3}, - [7063] = {.lex_state = 102, .external_lex_state = 3}, - [7064] = {.lex_state = 12, .external_lex_state = 3}, - [7065] = {.lex_state = 12, .external_lex_state = 3}, - [7066] = {.lex_state = 103, .external_lex_state = 3}, - [7067] = {.lex_state = 12, .external_lex_state = 3}, - [7068] = {.lex_state = 103, .external_lex_state = 3}, - [7069] = {.lex_state = 12, .external_lex_state = 3}, - [7070] = {.lex_state = 12, .external_lex_state = 3}, - [7071] = {.lex_state = 12, .external_lex_state = 3}, - [7072] = {.lex_state = 12, .external_lex_state = 3}, - [7073] = {.lex_state = 4, .external_lex_state = 3}, - [7074] = {.lex_state = 102, .external_lex_state = 3}, - [7075] = {.lex_state = 12, .external_lex_state = 3}, - [7076] = {.lex_state = 103, .external_lex_state = 3}, - [7077] = {.lex_state = 12, .external_lex_state = 3}, - [7078] = {.lex_state = 13, .external_lex_state = 3}, - [7079] = {.lex_state = 103, .external_lex_state = 3}, - [7080] = {.lex_state = 12, .external_lex_state = 3}, - [7081] = {.lex_state = 12, .external_lex_state = 3}, - [7082] = {.lex_state = 102, .external_lex_state = 3}, - [7083] = {.lex_state = 12, .external_lex_state = 3}, - [7084] = {.lex_state = 12, .external_lex_state = 3}, - [7085] = {.lex_state = 12, .external_lex_state = 3}, - [7086] = {.lex_state = 24, .external_lex_state = 3}, - [7087] = {.lex_state = 103, .external_lex_state = 3}, - [7088] = {.lex_state = 12, .external_lex_state = 3}, - [7089] = {.lex_state = 12, .external_lex_state = 3}, - [7090] = {.lex_state = 12, .external_lex_state = 3}, - [7091] = {.lex_state = 102, .external_lex_state = 3}, - [7092] = {.lex_state = 12, .external_lex_state = 3}, - [7093] = {.lex_state = 12, .external_lex_state = 3}, - [7094] = {.lex_state = 116, .external_lex_state = 3}, - [7095] = {.lex_state = 4, .external_lex_state = 3}, - [7096] = {.lex_state = 12, .external_lex_state = 3}, - [7097] = {.lex_state = 12, .external_lex_state = 3}, - [7098] = {.lex_state = 12, .external_lex_state = 3}, - [7099] = {.lex_state = 12, .external_lex_state = 3}, - [7100] = {.lex_state = 102, .external_lex_state = 3}, - [7101] = {.lex_state = 12, .external_lex_state = 3}, - [7102] = {.lex_state = 12, .external_lex_state = 3}, - [7103] = {.lex_state = 12, .external_lex_state = 3}, - [7104] = {.lex_state = 102, .external_lex_state = 3}, - [7105] = {.lex_state = 4, .external_lex_state = 3}, - [7106] = {.lex_state = 12, .external_lex_state = 3}, - [7107] = {.lex_state = 116, .external_lex_state = 3}, - [7108] = {.lex_state = 12, .external_lex_state = 3}, - [7109] = {.lex_state = 13, .external_lex_state = 3}, - [7110] = {.lex_state = 12, .external_lex_state = 3}, - [7111] = {.lex_state = 12, .external_lex_state = 3}, - [7112] = {.lex_state = 12, .external_lex_state = 3}, - [7113] = {.lex_state = 116, .external_lex_state = 3}, - [7114] = {.lex_state = 103, .external_lex_state = 3}, - [7115] = {.lex_state = 103, .external_lex_state = 3}, - [7116] = {.lex_state = 12, .external_lex_state = 3}, - [7117] = {.lex_state = 116, .external_lex_state = 3}, - [7118] = {.lex_state = 12, .external_lex_state = 3}, - [7119] = {.lex_state = 12, .external_lex_state = 3}, - [7120] = {.lex_state = 12, .external_lex_state = 3}, - [7121] = {.lex_state = 12, .external_lex_state = 3}, - [7122] = {.lex_state = 12, .external_lex_state = 3}, - [7123] = {.lex_state = 116, .external_lex_state = 3}, - [7124] = {.lex_state = 102, .external_lex_state = 3}, - [7125] = {.lex_state = 24, .external_lex_state = 3}, - [7126] = {.lex_state = 102, .external_lex_state = 3}, - [7127] = {.lex_state = 12, .external_lex_state = 3}, - [7128] = {.lex_state = 116, .external_lex_state = 3}, - [7129] = {.lex_state = 4, .external_lex_state = 3}, - [7130] = {.lex_state = 12, .external_lex_state = 3}, - [7131] = {.lex_state = 12, .external_lex_state = 3}, - [7132] = {.lex_state = 12, .external_lex_state = 3}, - [7133] = {.lex_state = 12, .external_lex_state = 3}, - [7134] = {.lex_state = 12, .external_lex_state = 3}, - [7135] = {.lex_state = 12, .external_lex_state = 3}, - [7136] = {.lex_state = 102, .external_lex_state = 3}, - [7137] = {.lex_state = 102, .external_lex_state = 3}, - [7138] = {.lex_state = 54, .external_lex_state = 8}, - [7139] = {.lex_state = 4, .external_lex_state = 3}, - [7140] = {.lex_state = 102, .external_lex_state = 3}, - [7141] = {.lex_state = 12, .external_lex_state = 3}, - [7142] = {.lex_state = 102, .external_lex_state = 3}, - [7143] = {.lex_state = 12, .external_lex_state = 3}, - [7144] = {.lex_state = 102, .external_lex_state = 3}, - [7145] = {.lex_state = 12, .external_lex_state = 3}, - [7146] = {.lex_state = 12, .external_lex_state = 3}, - [7147] = {.lex_state = 102, .external_lex_state = 3}, - [7148] = {.lex_state = 102, .external_lex_state = 3}, - [7149] = {.lex_state = 12, .external_lex_state = 3}, - [7150] = {.lex_state = 102, .external_lex_state = 3}, - [7151] = {.lex_state = 103, .external_lex_state = 3}, - [7152] = {.lex_state = 102, .external_lex_state = 3}, - [7153] = {.lex_state = 12, .external_lex_state = 3}, - [7154] = {.lex_state = 102, .external_lex_state = 3}, - [7155] = {.lex_state = 102, .external_lex_state = 3}, - [7156] = {.lex_state = 24, .external_lex_state = 3}, - [7157] = {.lex_state = 12, .external_lex_state = 3}, - [7158] = {.lex_state = 12, .external_lex_state = 3}, - [7159] = {.lex_state = 12, .external_lex_state = 3}, - [7160] = {.lex_state = 4, .external_lex_state = 3}, - [7161] = {.lex_state = 54, .external_lex_state = 8}, - [7162] = {.lex_state = 12, .external_lex_state = 3}, - [7163] = {.lex_state = 13, .external_lex_state = 3}, - [7164] = {.lex_state = 116, .external_lex_state = 3}, - [7165] = {.lex_state = 12, .external_lex_state = 3}, - [7166] = {.lex_state = 116, .external_lex_state = 3}, - [7167] = {.lex_state = 24, .external_lex_state = 3}, - [7168] = {.lex_state = 12, .external_lex_state = 3}, - [7169] = {.lex_state = 12, .external_lex_state = 3}, - [7170] = {.lex_state = 102, .external_lex_state = 3}, - [7171] = {.lex_state = 12, .external_lex_state = 3}, - [7172] = {.lex_state = 13, .external_lex_state = 3}, - [7173] = {.lex_state = 102, .external_lex_state = 3}, - [7174] = {.lex_state = 12, .external_lex_state = 3}, - [7175] = {.lex_state = 12, .external_lex_state = 3}, - [7176] = {.lex_state = 12, .external_lex_state = 3}, - [7177] = {.lex_state = 24, .external_lex_state = 3}, - [7178] = {.lex_state = 12, .external_lex_state = 3}, - [7179] = {.lex_state = 12, .external_lex_state = 3}, - [7180] = {.lex_state = 12, .external_lex_state = 3}, - [7181] = {.lex_state = 116, .external_lex_state = 3}, - [7182] = {.lex_state = 12, .external_lex_state = 3}, - [7183] = {.lex_state = 102, .external_lex_state = 3}, - [7184] = {.lex_state = 103, .external_lex_state = 3}, - [7185] = {.lex_state = 102, .external_lex_state = 3}, - [7186] = {.lex_state = 12, .external_lex_state = 3}, - [7187] = {.lex_state = 12, .external_lex_state = 3}, - [7188] = {.lex_state = 12, .external_lex_state = 3}, - [7189] = {.lex_state = 12, .external_lex_state = 3}, - [7190] = {.lex_state = 102, .external_lex_state = 3}, - [7191] = {.lex_state = 103, .external_lex_state = 3}, - [7192] = {.lex_state = 12, .external_lex_state = 3}, - [7193] = {.lex_state = 12, .external_lex_state = 3}, - [7194] = {.lex_state = 12, .external_lex_state = 3}, - [7195] = {.lex_state = 102, .external_lex_state = 3}, - [7196] = {.lex_state = 4, .external_lex_state = 3}, - [7197] = {.lex_state = 12, .external_lex_state = 3}, - [7198] = {.lex_state = 12, .external_lex_state = 3}, - [7199] = {.lex_state = 102, .external_lex_state = 3}, - [7200] = {.lex_state = 102, .external_lex_state = 3}, - [7201] = {.lex_state = 102, .external_lex_state = 3}, - [7202] = {.lex_state = 12, .external_lex_state = 3}, - [7203] = {.lex_state = 102, .external_lex_state = 3}, - [7204] = {.lex_state = 4, .external_lex_state = 3}, - [7205] = {.lex_state = 4, .external_lex_state = 3}, - [7206] = {.lex_state = 116, .external_lex_state = 3}, - [7207] = {.lex_state = 102, .external_lex_state = 3}, - [7208] = {.lex_state = 102, .external_lex_state = 3}, - [7209] = {.lex_state = 12, .external_lex_state = 3}, - [7210] = {.lex_state = 116, .external_lex_state = 3}, - [7211] = {.lex_state = 12, .external_lex_state = 3}, - [7212] = {.lex_state = 12, .external_lex_state = 3}, - [7213] = {.lex_state = 103, .external_lex_state = 3}, - [7214] = {.lex_state = 4, .external_lex_state = 3}, - [7215] = {.lex_state = 102, .external_lex_state = 3}, - [7216] = {.lex_state = 103, .external_lex_state = 3}, - [7217] = {.lex_state = 12, .external_lex_state = 3}, - [7218] = {.lex_state = 4, .external_lex_state = 3}, - [7219] = {.lex_state = 12, .external_lex_state = 3}, - [7220] = {.lex_state = 4, .external_lex_state = 3}, - [7221] = {.lex_state = 17, .external_lex_state = 3}, - [7222] = {.lex_state = 12, .external_lex_state = 3}, - [7223] = {.lex_state = 12, .external_lex_state = 3}, - [7224] = {.lex_state = 102, .external_lex_state = 3}, - [7225] = {.lex_state = 4, .external_lex_state = 3}, - [7226] = {.lex_state = 4, .external_lex_state = 3}, - [7227] = {.lex_state = 17, .external_lex_state = 3}, - [7228] = {.lex_state = 102, .external_lex_state = 3}, - [7229] = {.lex_state = 12, .external_lex_state = 3}, - [7230] = {.lex_state = 17, .external_lex_state = 3}, - [7231] = {.lex_state = 16, .external_lex_state = 3}, - [7232] = {.lex_state = 102, .external_lex_state = 3}, - [7233] = {.lex_state = 103, .external_lex_state = 3}, - [7234] = {.lex_state = 4, .external_lex_state = 3}, - [7235] = {.lex_state = 4, .external_lex_state = 3}, - [7236] = {.lex_state = 102, .external_lex_state = 3}, - [7237] = {.lex_state = 48, .external_lex_state = 3}, - [7238] = {.lex_state = 17, .external_lex_state = 3}, - [7239] = {.lex_state = 17, .external_lex_state = 3}, - [7240] = {.lex_state = 102, .external_lex_state = 3}, - [7241] = {.lex_state = 12, .external_lex_state = 3}, - [7242] = {.lex_state = 12, .external_lex_state = 3}, - [7243] = {.lex_state = 12, .external_lex_state = 3}, - [7244] = {.lex_state = 17, .external_lex_state = 3}, - [7245] = {.lex_state = 17, .external_lex_state = 3}, - [7246] = {.lex_state = 4, .external_lex_state = 3}, - [7247] = {.lex_state = 17, .external_lex_state = 3}, - [7248] = {.lex_state = 17, .external_lex_state = 3}, - [7249] = {.lex_state = 103, .external_lex_state = 3}, - [7250] = {.lex_state = 103, .external_lex_state = 3}, - [7251] = {.lex_state = 4, .external_lex_state = 3}, - [7252] = {.lex_state = 4, .external_lex_state = 3}, - [7253] = {.lex_state = 12, .external_lex_state = 3}, - [7254] = {.lex_state = 17, .external_lex_state = 3}, - [7255] = {.lex_state = 102, .external_lex_state = 3}, - [7256] = {.lex_state = 17, .external_lex_state = 3}, - [7257] = {.lex_state = 102, .external_lex_state = 3}, - [7258] = {.lex_state = 102, .external_lex_state = 3}, - [7259] = {.lex_state = 17, .external_lex_state = 3}, - [7260] = {.lex_state = 17, .external_lex_state = 3}, - [7261] = {.lex_state = 12, .external_lex_state = 3}, - [7262] = {.lex_state = 16, .external_lex_state = 3}, - [7263] = {.lex_state = 17, .external_lex_state = 3}, - [7264] = {.lex_state = 12, .external_lex_state = 3}, - [7265] = {.lex_state = 17, .external_lex_state = 3}, - [7266] = {.lex_state = 102, .external_lex_state = 3}, - [7267] = {.lex_state = 4, .external_lex_state = 3}, - [7268] = {.lex_state = 102, .external_lex_state = 3}, - [7269] = {.lex_state = 16, .external_lex_state = 3}, - [7270] = {.lex_state = 16, .external_lex_state = 3}, - [7271] = {.lex_state = 17, .external_lex_state = 3}, - [7272] = {.lex_state = 4, .external_lex_state = 3}, - [7273] = {.lex_state = 102, .external_lex_state = 3}, - [7274] = {.lex_state = 102, .external_lex_state = 3}, - [7275] = {.lex_state = 17, .external_lex_state = 3}, - [7276] = {.lex_state = 17, .external_lex_state = 3}, - [7277] = {.lex_state = 17, .external_lex_state = 3}, - [7278] = {.lex_state = 17, .external_lex_state = 3}, - [7279] = {.lex_state = 12, .external_lex_state = 3}, - [7280] = {.lex_state = 12, .external_lex_state = 3}, - [7281] = {.lex_state = 12, .external_lex_state = 3}, - [7282] = {.lex_state = 12, .external_lex_state = 3}, - [7283] = {.lex_state = 12, .external_lex_state = 3}, - [7284] = {.lex_state = 48, .external_lex_state = 3}, - [7285] = {.lex_state = 12, .external_lex_state = 3}, - [7286] = {.lex_state = 12, .external_lex_state = 3}, - [7287] = {.lex_state = 12, .external_lex_state = 3}, - [7288] = {.lex_state = 12, .external_lex_state = 3}, - [7289] = {.lex_state = 4, .external_lex_state = 3}, - [7290] = {.lex_state = 12, .external_lex_state = 3}, - [7291] = {.lex_state = 17, .external_lex_state = 3}, - [7292] = {.lex_state = 12, .external_lex_state = 3}, - [7293] = {.lex_state = 12, .external_lex_state = 3}, - [7294] = {.lex_state = 12, .external_lex_state = 3}, - [7295] = {.lex_state = 12, .external_lex_state = 3}, - [7296] = {.lex_state = 12, .external_lex_state = 3}, - [7297] = {.lex_state = 12, .external_lex_state = 3}, - [7298] = {.lex_state = 12, .external_lex_state = 3}, - [7299] = {.lex_state = 17, .external_lex_state = 3}, - [7300] = {.lex_state = 12, .external_lex_state = 3}, - [7301] = {.lex_state = 17, .external_lex_state = 3}, - [7302] = {.lex_state = 12, .external_lex_state = 3}, - [7303] = {.lex_state = 12, .external_lex_state = 3}, - [7304] = {.lex_state = 12, .external_lex_state = 3}, - [7305] = {.lex_state = 12, .external_lex_state = 3}, - [7306] = {.lex_state = 12, .external_lex_state = 3}, - [7307] = {.lex_state = 103, .external_lex_state = 3}, - [7308] = {.lex_state = 12, .external_lex_state = 3}, - [7309] = {.lex_state = 12, .external_lex_state = 3}, - [7310] = {.lex_state = 17, .external_lex_state = 3}, - [7311] = {.lex_state = 12, .external_lex_state = 3}, - [7312] = {.lex_state = 12, .external_lex_state = 3}, - [7313] = {.lex_state = 12, .external_lex_state = 3}, - [7314] = {.lex_state = 12, .external_lex_state = 3}, - [7315] = {.lex_state = 12, .external_lex_state = 3}, - [7316] = {.lex_state = 12, .external_lex_state = 3}, - [7317] = {.lex_state = 12, .external_lex_state = 3}, - [7318] = {.lex_state = 12, .external_lex_state = 3}, - [7319] = {.lex_state = 12, .external_lex_state = 3}, - [7320] = {.lex_state = 12, .external_lex_state = 3}, - [7321] = {.lex_state = 17, .external_lex_state = 3}, - [7322] = {.lex_state = 4, .external_lex_state = 3}, - [7323] = {.lex_state = 103, .external_lex_state = 3}, - [7324] = {.lex_state = 103, .external_lex_state = 3}, - [7325] = {.lex_state = 102, .external_lex_state = 3}, - [7326] = {.lex_state = 12, .external_lex_state = 3}, - [7327] = {.lex_state = 4, .external_lex_state = 3}, - [7328] = {.lex_state = 12, .external_lex_state = 3}, - [7329] = {.lex_state = 102, .external_lex_state = 3}, - [7330] = {.lex_state = 4, .external_lex_state = 3}, - [7331] = {.lex_state = 48, .external_lex_state = 3}, - [7332] = {.lex_state = 103, .external_lex_state = 3}, - [7333] = {.lex_state = 4, .external_lex_state = 3}, - [7334] = {.lex_state = 103, .external_lex_state = 3}, - [7335] = {.lex_state = 48, .external_lex_state = 3}, - [7336] = {.lex_state = 12, .external_lex_state = 3}, - [7337] = {.lex_state = 4, .external_lex_state = 3}, - [7338] = {.lex_state = 102, .external_lex_state = 3}, - [7339] = {.lex_state = 12, .external_lex_state = 3}, - [7340] = {.lex_state = 102, .external_lex_state = 3}, - [7341] = {.lex_state = 102, .external_lex_state = 3}, - [7342] = {.lex_state = 4, .external_lex_state = 3}, - [7343] = {.lex_state = 12, .external_lex_state = 3}, - [7344] = {.lex_state = 4, .external_lex_state = 3}, - [7345] = {.lex_state = 103, .external_lex_state = 3}, - [7346] = {.lex_state = 103, .external_lex_state = 3}, - [7347] = {.lex_state = 4, .external_lex_state = 3}, - [7348] = {.lex_state = 12, .external_lex_state = 3}, - [7349] = {.lex_state = 4, .external_lex_state = 3}, - [7350] = {.lex_state = 17, .external_lex_state = 3}, - [7351] = {.lex_state = 102, .external_lex_state = 3}, - [7352] = {.lex_state = 102, .external_lex_state = 3}, - [7353] = {.lex_state = 102, .external_lex_state = 3}, - [7354] = {.lex_state = 116, .external_lex_state = 3}, - [7355] = {.lex_state = 17, .external_lex_state = 3}, - [7356] = {.lex_state = 4, .external_lex_state = 3}, - [7357] = {.lex_state = 116, .external_lex_state = 3}, - [7358] = {.lex_state = 4, .external_lex_state = 3}, - [7359] = {.lex_state = 116, .external_lex_state = 3}, - [7360] = {.lex_state = 48, .external_lex_state = 3}, - [7361] = {.lex_state = 12, .external_lex_state = 3}, - [7362] = {.lex_state = 12, .external_lex_state = 3}, - [7363] = {.lex_state = 102, .external_lex_state = 3}, - [7364] = {.lex_state = 116, .external_lex_state = 3}, - [7365] = {.lex_state = 48, .external_lex_state = 3}, - [7366] = {.lex_state = 17, .external_lex_state = 3}, - [7367] = {.lex_state = 116, .external_lex_state = 3}, - [7368] = {.lex_state = 102, .external_lex_state = 3}, - [7369] = {.lex_state = 116, .external_lex_state = 3}, - [7370] = {.lex_state = 102, .external_lex_state = 3}, - [7371] = {.lex_state = 116, .external_lex_state = 3}, - [7372] = {.lex_state = 102, .external_lex_state = 3}, - [7373] = {.lex_state = 12, .external_lex_state = 3}, - [7374] = {.lex_state = 102, .external_lex_state = 3}, - [7375] = {.lex_state = 116, .external_lex_state = 3}, - [7376] = {.lex_state = 4, .external_lex_state = 3}, - [7377] = {.lex_state = 116, .external_lex_state = 3}, - [7378] = {.lex_state = 12, .external_lex_state = 3}, - [7379] = {.lex_state = 116, .external_lex_state = 3}, - [7380] = {.lex_state = 12, .external_lex_state = 3}, - [7381] = {.lex_state = 4, .external_lex_state = 3}, - [7382] = {.lex_state = 4, .external_lex_state = 3}, - [7383] = {.lex_state = 4, .external_lex_state = 3}, - [7384] = {.lex_state = 17, .external_lex_state = 3}, - [7385] = {.lex_state = 116, .external_lex_state = 3}, - [7386] = {.lex_state = 4, .external_lex_state = 3}, - [7387] = {.lex_state = 116, .external_lex_state = 3}, - [7388] = {.lex_state = 103, .external_lex_state = 3}, - [7389] = {.lex_state = 116, .external_lex_state = 3}, - [7390] = {.lex_state = 116, .external_lex_state = 3}, - [7391] = {.lex_state = 103, .external_lex_state = 3}, - [7392] = {.lex_state = 102, .external_lex_state = 3}, - [7393] = {.lex_state = 102, .external_lex_state = 3}, - [7394] = {.lex_state = 17, .external_lex_state = 3}, - [7395] = {.lex_state = 17, .external_lex_state = 3}, - [7396] = {.lex_state = 4, .external_lex_state = 3}, - [7397] = {.lex_state = 17, .external_lex_state = 3}, - [7398] = {.lex_state = 103, .external_lex_state = 3}, - [7399] = {.lex_state = 4, .external_lex_state = 3}, - [7400] = {.lex_state = 4, .external_lex_state = 3}, - [7401] = {.lex_state = 116, .external_lex_state = 3}, - [7402] = {.lex_state = 116, .external_lex_state = 3}, - [7403] = {.lex_state = 102, .external_lex_state = 3}, - [7404] = {.lex_state = 17, .external_lex_state = 3}, - [7405] = {.lex_state = 17, .external_lex_state = 3}, - [7406] = {.lex_state = 102, .external_lex_state = 2}, - [7407] = {.lex_state = 12, .external_lex_state = 3}, - [7408] = {.lex_state = 116, .external_lex_state = 3}, - [7409] = {.lex_state = 116, .external_lex_state = 3}, - [7410] = {.lex_state = 17, .external_lex_state = 3}, - [7411] = {.lex_state = 12, .external_lex_state = 3}, - [7412] = {.lex_state = 102, .external_lex_state = 3}, - [7413] = {.lex_state = 116, .external_lex_state = 3}, - [7414] = {.lex_state = 12, .external_lex_state = 3}, - [7415] = {.lex_state = 116, .external_lex_state = 3}, - [7416] = {.lex_state = 102, .external_lex_state = 3}, - [7417] = {.lex_state = 16, .external_lex_state = 3}, - [7418] = {.lex_state = 12, .external_lex_state = 3}, - [7419] = {.lex_state = 116, .external_lex_state = 3}, - [7420] = {.lex_state = 116, .external_lex_state = 3}, - [7421] = {.lex_state = 12, .external_lex_state = 3}, - [7422] = {.lex_state = 12, .external_lex_state = 3}, - [7423] = {.lex_state = 17, .external_lex_state = 3}, - [7424] = {.lex_state = 116, .external_lex_state = 3}, - [7425] = {.lex_state = 116, .external_lex_state = 3}, - [7426] = {.lex_state = 17, .external_lex_state = 3}, - [7427] = {.lex_state = 48, .external_lex_state = 3}, - [7428] = {.lex_state = 4, .external_lex_state = 3}, - [7429] = {.lex_state = 116, .external_lex_state = 3}, - [7430] = {.lex_state = 12, .external_lex_state = 3}, - [7431] = {.lex_state = 116, .external_lex_state = 3}, - [7432] = {.lex_state = 17, .external_lex_state = 3}, - [7433] = {.lex_state = 48, .external_lex_state = 3}, - [7434] = {.lex_state = 17, .external_lex_state = 3}, - [7435] = {.lex_state = 17, .external_lex_state = 3}, - [7436] = {.lex_state = 12, .external_lex_state = 3}, - [7437] = {.lex_state = 4, .external_lex_state = 3}, - [7438] = {.lex_state = 17, .external_lex_state = 3}, - [7439] = {.lex_state = 102, .external_lex_state = 2}, - [7440] = {.lex_state = 116, .external_lex_state = 3}, - [7441] = {.lex_state = 116, .external_lex_state = 3}, - [7442] = {.lex_state = 17, .external_lex_state = 3}, - [7443] = {.lex_state = 102, .external_lex_state = 3}, - [7444] = {.lex_state = 17, .external_lex_state = 3}, - [7445] = {.lex_state = 12, .external_lex_state = 3}, - [7446] = {.lex_state = 17, .external_lex_state = 3}, - [7447] = {.lex_state = 17, .external_lex_state = 3}, - [7448] = {.lex_state = 116, .external_lex_state = 3}, - [7449] = {.lex_state = 102, .external_lex_state = 3}, - [7450] = {.lex_state = 12, .external_lex_state = 3}, - [7451] = {.lex_state = 16, .external_lex_state = 3}, - [7452] = {.lex_state = 116, .external_lex_state = 3}, - [7453] = {.lex_state = 102, .external_lex_state = 3}, - [7454] = {.lex_state = 12, .external_lex_state = 3}, - [7455] = {.lex_state = 102, .external_lex_state = 3}, - [7456] = {.lex_state = 17, .external_lex_state = 3}, - [7457] = {.lex_state = 16, .external_lex_state = 3}, - [7458] = {.lex_state = 17, .external_lex_state = 3}, - [7459] = {.lex_state = 17, .external_lex_state = 3}, - [7460] = {.lex_state = 116, .external_lex_state = 3}, - [7461] = {.lex_state = 116, .external_lex_state = 3}, - [7462] = {.lex_state = 17, .external_lex_state = 3}, - [7463] = {.lex_state = 16, .external_lex_state = 3}, - [7464] = {.lex_state = 102, .external_lex_state = 3}, - [7465] = {.lex_state = 17, .external_lex_state = 3}, - [7466] = {.lex_state = 17, .external_lex_state = 3}, - [7467] = {.lex_state = 103, .external_lex_state = 3}, - [7468] = {.lex_state = 12, .external_lex_state = 3}, - [7469] = {.lex_state = 17, .external_lex_state = 3}, - [7470] = {.lex_state = 116, .external_lex_state = 3}, - [7471] = {.lex_state = 17, .external_lex_state = 3}, - [7472] = {.lex_state = 102, .external_lex_state = 3}, - [7473] = {.lex_state = 17, .external_lex_state = 3}, - [7474] = {.lex_state = 116, .external_lex_state = 3}, - [7475] = {.lex_state = 102, .external_lex_state = 3}, - [7476] = {.lex_state = 103, .external_lex_state = 3}, - [7477] = {.lex_state = 4, .external_lex_state = 3}, - [7478] = {.lex_state = 103, .external_lex_state = 3}, - [7479] = {.lex_state = 4, .external_lex_state = 3}, - [7480] = {.lex_state = 12, .external_lex_state = 3}, - [7481] = {.lex_state = 17, .external_lex_state = 3}, - [7482] = {.lex_state = 4, .external_lex_state = 3}, - [7483] = {.lex_state = 4, .external_lex_state = 3}, - [7484] = {.lex_state = 17, .external_lex_state = 3}, - [7485] = {.lex_state = 12, .external_lex_state = 3}, - [7486] = {.lex_state = 116, .external_lex_state = 3}, - [7487] = {.lex_state = 4, .external_lex_state = 3}, - [7488] = {.lex_state = 17, .external_lex_state = 3}, - [7489] = {.lex_state = 116, .external_lex_state = 3}, - [7490] = {.lex_state = 103, .external_lex_state = 3}, - [7491] = {.lex_state = 102, .external_lex_state = 3}, - [7492] = {.lex_state = 102, .external_lex_state = 3}, - [7493] = {.lex_state = 48, .external_lex_state = 3}, - [7494] = {.lex_state = 17, .external_lex_state = 3}, - [7495] = {.lex_state = 102, .external_lex_state = 3}, - [7496] = {.lex_state = 29, .external_lex_state = 3}, - [7497] = {.lex_state = 17, .external_lex_state = 3}, - [7498] = {.lex_state = 17, .external_lex_state = 3}, - [7499] = {.lex_state = 9, .external_lex_state = 3}, - [7500] = {.lex_state = 17, .external_lex_state = 3}, - [7501] = {.lex_state = 103, .external_lex_state = 3}, - [7502] = {.lex_state = 12, .external_lex_state = 3}, - [7503] = {.lex_state = 103, .external_lex_state = 3}, - [7504] = {.lex_state = 16, .external_lex_state = 3}, - [7505] = {.lex_state = 4, .external_lex_state = 3}, - [7506] = {.lex_state = 4, .external_lex_state = 3}, - [7507] = {.lex_state = 17, .external_lex_state = 3}, - [7508] = {.lex_state = 102, .external_lex_state = 3}, - [7509] = {.lex_state = 12, .external_lex_state = 3}, - [7510] = {.lex_state = 17, .external_lex_state = 3}, - [7511] = {.lex_state = 17, .external_lex_state = 3}, - [7512] = {.lex_state = 4, .external_lex_state = 3}, - [7513] = {.lex_state = 116, .external_lex_state = 3}, - [7514] = {.lex_state = 17, .external_lex_state = 3}, - [7515] = {.lex_state = 12, .external_lex_state = 3}, - [7516] = {.lex_state = 102, .external_lex_state = 3}, - [7517] = {.lex_state = 17, .external_lex_state = 3}, - [7518] = {.lex_state = 4, .external_lex_state = 3}, - [7519] = {.lex_state = 116, .external_lex_state = 3}, - [7520] = {.lex_state = 102, .external_lex_state = 3}, - [7521] = {.lex_state = 48, .external_lex_state = 3}, - [7522] = {.lex_state = 4, .external_lex_state = 3}, - [7523] = {.lex_state = 102, .external_lex_state = 3}, - [7524] = {.lex_state = 102, .external_lex_state = 3}, - [7525] = {.lex_state = 12, .external_lex_state = 3}, - [7526] = {.lex_state = 48, .external_lex_state = 3}, - [7527] = {.lex_state = 102, .external_lex_state = 3}, - [7528] = {.lex_state = 102, .external_lex_state = 2}, - [7529] = {.lex_state = 102, .external_lex_state = 3}, - [7530] = {.lex_state = 4, .external_lex_state = 3}, - [7531] = {.lex_state = 17, .external_lex_state = 3}, - [7532] = {.lex_state = 12, .external_lex_state = 3}, - [7533] = {.lex_state = 17, .external_lex_state = 3}, - [7534] = {.lex_state = 12, .external_lex_state = 3}, - [7535] = {.lex_state = 16, .external_lex_state = 3}, - [7536] = {.lex_state = 102, .external_lex_state = 3}, - [7537] = {.lex_state = 17, .external_lex_state = 3}, - [7538] = {.lex_state = 102, .external_lex_state = 3}, - [7539] = {.lex_state = 4, .external_lex_state = 3}, - [7540] = {.lex_state = 102, .external_lex_state = 3}, - [7541] = {.lex_state = 4, .external_lex_state = 3}, - [7542] = {.lex_state = 17, .external_lex_state = 3}, - [7543] = {.lex_state = 16, .external_lex_state = 3}, - [7544] = {.lex_state = 17, .external_lex_state = 3}, - [7545] = {.lex_state = 17, .external_lex_state = 3}, - [7546] = {.lex_state = 17, .external_lex_state = 3}, - [7547] = {.lex_state = 12, .external_lex_state = 3}, - [7548] = {.lex_state = 17, .external_lex_state = 3}, - [7549] = {.lex_state = 16, .external_lex_state = 3}, - [7550] = {.lex_state = 16, .external_lex_state = 3}, - [7551] = {.lex_state = 102, .external_lex_state = 3}, - [7552] = {.lex_state = 17, .external_lex_state = 3}, - [7553] = {.lex_state = 4, .external_lex_state = 3}, - [7554] = {.lex_state = 17, .external_lex_state = 3}, - [7555] = {.lex_state = 4, .external_lex_state = 3}, - [7556] = {.lex_state = 17, .external_lex_state = 3}, - [7557] = {.lex_state = 12, .external_lex_state = 3}, - [7558] = {.lex_state = 17, .external_lex_state = 3}, - [7559] = {.lex_state = 116, .external_lex_state = 3}, - [7560] = {.lex_state = 103, .external_lex_state = 3}, - [7561] = {.lex_state = 103, .external_lex_state = 3}, - [7562] = {.lex_state = 17, .external_lex_state = 3}, - [7563] = {.lex_state = 102, .external_lex_state = 3}, - [7564] = {.lex_state = 4, .external_lex_state = 3}, - [7565] = {.lex_state = 5, .external_lex_state = 3}, - [7566] = {.lex_state = 17, .external_lex_state = 3}, - [7567] = {.lex_state = 17, .external_lex_state = 3}, - [7568] = {.lex_state = 4, .external_lex_state = 3}, - [7569] = {.lex_state = 17, .external_lex_state = 3}, - [7570] = {.lex_state = 17, .external_lex_state = 3}, - [7571] = {.lex_state = 102, .external_lex_state = 3}, - [7572] = {.lex_state = 102, .external_lex_state = 3}, - [7573] = {.lex_state = 102, .external_lex_state = 3}, - [7574] = {.lex_state = 17, .external_lex_state = 3}, - [7575] = {.lex_state = 4, .external_lex_state = 3}, - [7576] = {.lex_state = 17, .external_lex_state = 3}, - [7577] = {.lex_state = 17, .external_lex_state = 3}, - [7578] = {.lex_state = 17, .external_lex_state = 3}, - [7579] = {.lex_state = 4, .external_lex_state = 3}, - [7580] = {.lex_state = 17, .external_lex_state = 3}, - [7581] = {.lex_state = 17, .external_lex_state = 3}, - [7582] = {.lex_state = 17, .external_lex_state = 3}, - [7583] = {.lex_state = 12, .external_lex_state = 3}, - [7584] = {.lex_state = 16, .external_lex_state = 3}, - [7585] = {.lex_state = 16, .external_lex_state = 3}, - [7586] = {.lex_state = 17, .external_lex_state = 3}, - [7587] = {.lex_state = 9, .external_lex_state = 3}, - [7588] = {.lex_state = 4, .external_lex_state = 3}, - [7589] = {.lex_state = 102, .external_lex_state = 3}, - [7590] = {.lex_state = 12, .external_lex_state = 3}, - [7591] = {.lex_state = 17, .external_lex_state = 3}, - [7592] = {.lex_state = 4, .external_lex_state = 3}, - [7593] = {.lex_state = 102, .external_lex_state = 3}, - [7594] = {.lex_state = 4, .external_lex_state = 3}, - [7595] = {.lex_state = 12, .external_lex_state = 3}, - [7596] = {.lex_state = 17, .external_lex_state = 3}, - [7597] = {.lex_state = 12, .external_lex_state = 3}, - [7598] = {.lex_state = 17, .external_lex_state = 3}, - [7599] = {.lex_state = 12, .external_lex_state = 3}, - [7600] = {.lex_state = 17, .external_lex_state = 3}, - [7601] = {.lex_state = 48, .external_lex_state = 3}, - [7602] = {.lex_state = 12, .external_lex_state = 3}, - [7603] = {.lex_state = 12, .external_lex_state = 3}, - [7604] = {.lex_state = 102, .external_lex_state = 3}, - [7605] = {.lex_state = 12, .external_lex_state = 3}, - [7606] = {.lex_state = 102, .external_lex_state = 3}, - [7607] = {.lex_state = 102, .external_lex_state = 3}, - [7608] = {.lex_state = 17, .external_lex_state = 3}, - [7609] = {.lex_state = 17, .external_lex_state = 3}, - [7610] = {.lex_state = 4, .external_lex_state = 3}, - [7611] = {.lex_state = 4, .external_lex_state = 3}, - [7612] = {.lex_state = 17, .external_lex_state = 3}, - [7613] = {.lex_state = 17, .external_lex_state = 3}, - [7614] = {.lex_state = 9, .external_lex_state = 3}, - [7615] = {.lex_state = 16, .external_lex_state = 3}, - [7616] = {.lex_state = 16, .external_lex_state = 3}, - [7617] = {.lex_state = 102, .external_lex_state = 3}, - [7618] = {.lex_state = 48, .external_lex_state = 3}, - [7619] = {.lex_state = 12, .external_lex_state = 3}, - [7620] = {.lex_state = 12, .external_lex_state = 3}, - [7621] = {.lex_state = 4, .external_lex_state = 3}, - [7622] = {.lex_state = 12, .external_lex_state = 3}, - [7623] = {.lex_state = 17, .external_lex_state = 3}, - [7624] = {.lex_state = 17, .external_lex_state = 3}, - [7625] = {.lex_state = 17, .external_lex_state = 3}, - [7626] = {.lex_state = 4, .external_lex_state = 3}, - [7627] = {.lex_state = 4, .external_lex_state = 3}, - [7628] = {.lex_state = 12, .external_lex_state = 3}, - [7629] = {.lex_state = 4, .external_lex_state = 3}, - [7630] = {.lex_state = 12, .external_lex_state = 3}, - [7631] = {.lex_state = 16, .external_lex_state = 3}, - [7632] = {.lex_state = 4, .external_lex_state = 3}, - [7633] = {.lex_state = 9, .external_lex_state = 3}, - [7634] = {.lex_state = 4, .external_lex_state = 3}, - [7635] = {.lex_state = 17, .external_lex_state = 3}, - [7636] = {.lex_state = 103, .external_lex_state = 3}, - [7637] = {.lex_state = 103, .external_lex_state = 3}, - [7638] = {.lex_state = 12, .external_lex_state = 3}, - [7639] = {.lex_state = 9, .external_lex_state = 3}, - [7640] = {.lex_state = 4, .external_lex_state = 3}, - [7641] = {.lex_state = 4, .external_lex_state = 3}, - [7642] = {.lex_state = 102, .external_lex_state = 3}, - [7643] = {.lex_state = 12, .external_lex_state = 3}, - [7644] = {.lex_state = 102, .external_lex_state = 3}, - [7645] = {.lex_state = 12, .external_lex_state = 3}, - [7646] = {.lex_state = 17, .external_lex_state = 3}, - [7647] = {.lex_state = 103, .external_lex_state = 3}, - [7648] = {.lex_state = 17, .external_lex_state = 3}, - [7649] = {.lex_state = 102, .external_lex_state = 3}, - [7650] = {.lex_state = 102, .external_lex_state = 3}, - [7651] = {.lex_state = 102, .external_lex_state = 3}, - [7652] = {.lex_state = 102, .external_lex_state = 3}, - [7653] = {.lex_state = 103, .external_lex_state = 3}, - [7654] = {.lex_state = 17, .external_lex_state = 3}, - [7655] = {.lex_state = 16, .external_lex_state = 3}, - [7656] = {.lex_state = 102, .external_lex_state = 2}, - [7657] = {.lex_state = 17, .external_lex_state = 3}, - [7658] = {.lex_state = 12, .external_lex_state = 3}, - [7659] = {.lex_state = 4, .external_lex_state = 3}, - [7660] = {.lex_state = 4, .external_lex_state = 3}, - [7661] = {.lex_state = 103, .external_lex_state = 3}, - [7662] = {.lex_state = 103, .external_lex_state = 3}, - [7663] = {.lex_state = 16, .external_lex_state = 3}, - [7664] = {.lex_state = 12, .external_lex_state = 3}, - [7665] = {.lex_state = 102, .external_lex_state = 3}, - [7666] = {.lex_state = 12, .external_lex_state = 3}, - [7667] = {.lex_state = 102, .external_lex_state = 3}, - [7668] = {.lex_state = 12, .external_lex_state = 3}, - [7669] = {.lex_state = 16, .external_lex_state = 3}, - [7670] = {.lex_state = 4, .external_lex_state = 3}, - [7671] = {.lex_state = 17, .external_lex_state = 3}, - [7672] = {.lex_state = 48, .external_lex_state = 3}, - [7673] = {.lex_state = 17, .external_lex_state = 3}, - [7674] = {.lex_state = 12, .external_lex_state = 3}, - [7675] = {.lex_state = 102, .external_lex_state = 3}, - [7676] = {.lex_state = 102, .external_lex_state = 3}, - [7677] = {.lex_state = 4, .external_lex_state = 3}, - [7678] = {.lex_state = 12, .external_lex_state = 3}, - [7679] = {.lex_state = 102, .external_lex_state = 3}, - [7680] = {.lex_state = 4, .external_lex_state = 3}, - [7681] = {.lex_state = 103, .external_lex_state = 3}, - [7682] = {.lex_state = 17, .external_lex_state = 3}, - [7683] = {.lex_state = 17, .external_lex_state = 3}, - [7684] = {.lex_state = 102, .external_lex_state = 3}, - [7685] = {.lex_state = 17, .external_lex_state = 3}, - [7686] = {.lex_state = 17, .external_lex_state = 3}, - [7687] = {.lex_state = 17, .external_lex_state = 3}, - [7688] = {.lex_state = 12, .external_lex_state = 3}, - [7689] = {.lex_state = 103, .external_lex_state = 3}, - [7690] = {.lex_state = 102, .external_lex_state = 3}, - [7691] = {.lex_state = 102, .external_lex_state = 3}, - [7692] = {.lex_state = 17, .external_lex_state = 3}, - [7693] = {.lex_state = 102, .external_lex_state = 3}, - [7694] = {.lex_state = 9, .external_lex_state = 3}, - [7695] = {.lex_state = 9, .external_lex_state = 3}, - [7696] = {.lex_state = 17, .external_lex_state = 3}, - [7697] = {.lex_state = 12, .external_lex_state = 3}, - [7698] = {.lex_state = 17, .external_lex_state = 3}, - [7699] = {.lex_state = 103, .external_lex_state = 3}, - [7700] = {.lex_state = 103, .external_lex_state = 3}, - [7701] = {.lex_state = 17, .external_lex_state = 3}, - [7702] = {.lex_state = 16, .external_lex_state = 3}, - [7703] = {.lex_state = 4, .external_lex_state = 3}, - [7704] = {.lex_state = 16, .external_lex_state = 3}, - [7705] = {.lex_state = 4, .external_lex_state = 3}, - [7706] = {.lex_state = 17, .external_lex_state = 3}, - [7707] = {.lex_state = 4, .external_lex_state = 3}, - [7708] = {.lex_state = 12, .external_lex_state = 3}, - [7709] = {.lex_state = 17, .external_lex_state = 3}, - [7710] = {.lex_state = 12, .external_lex_state = 3}, - [7711] = {.lex_state = 102, .external_lex_state = 3}, - [7712] = {.lex_state = 17, .external_lex_state = 3}, - [7713] = {.lex_state = 17, .external_lex_state = 3}, - [7714] = {.lex_state = 48, .external_lex_state = 3}, - [7715] = {.lex_state = 103, .external_lex_state = 3}, - [7716] = {.lex_state = 116, .external_lex_state = 3}, - [7717] = {.lex_state = 17, .external_lex_state = 3}, - [7718] = {.lex_state = 12, .external_lex_state = 3}, - [7719] = {.lex_state = 17, .external_lex_state = 3}, - [7720] = {.lex_state = 12, .external_lex_state = 3}, - [7721] = {.lex_state = 54, .external_lex_state = 8}, - [7722] = {.lex_state = 116, .external_lex_state = 3}, - [7723] = {.lex_state = 12, .external_lex_state = 3}, - [7724] = {.lex_state = 17, .external_lex_state = 3}, - [7725] = {.lex_state = 102, .external_lex_state = 3}, - [7726] = {.lex_state = 116, .external_lex_state = 3}, - [7727] = {.lex_state = 4, .external_lex_state = 3}, - [7728] = {.lex_state = 17, .external_lex_state = 3}, - [7729] = {.lex_state = 4, .external_lex_state = 3}, - [7730] = {.lex_state = 17, .external_lex_state = 3}, - [7731] = {.lex_state = 4, .external_lex_state = 3}, - [7732] = {.lex_state = 116, .external_lex_state = 3}, - [7733] = {.lex_state = 17, .external_lex_state = 3}, - [7734] = {.lex_state = 12, .external_lex_state = 3}, - [7735] = {.lex_state = 12, .external_lex_state = 3}, - [7736] = {.lex_state = 4, .external_lex_state = 3}, - [7737] = {.lex_state = 13, .external_lex_state = 3}, - [7738] = {.lex_state = 16, .external_lex_state = 3}, - [7739] = {.lex_state = 103, .external_lex_state = 3}, - [7740] = {.lex_state = 102, .external_lex_state = 3}, - [7741] = {.lex_state = 103, .external_lex_state = 3}, - [7742] = {.lex_state = 4, .external_lex_state = 3}, - [7743] = {.lex_state = 17, .external_lex_state = 3}, - [7744] = {.lex_state = 17, .external_lex_state = 3}, - [7745] = {.lex_state = 102, .external_lex_state = 3}, - [7746] = {.lex_state = 17, .external_lex_state = 3}, - [7747] = {.lex_state = 102, .external_lex_state = 3}, - [7748] = {.lex_state = 16, .external_lex_state = 3}, - [7749] = {.lex_state = 4, .external_lex_state = 3}, - [7750] = {.lex_state = 12, .external_lex_state = 3}, - [7751] = {.lex_state = 17, .external_lex_state = 3}, - [7752] = {.lex_state = 102, .external_lex_state = 3}, - [7753] = {.lex_state = 17, .external_lex_state = 3}, - [7754] = {.lex_state = 17, .external_lex_state = 3}, - [7755] = {.lex_state = 12, .external_lex_state = 3}, - [7756] = {.lex_state = 17, .external_lex_state = 3}, - [7757] = {.lex_state = 17, .external_lex_state = 3}, - [7758] = {.lex_state = 17, .external_lex_state = 3}, - [7759] = {.lex_state = 4, .external_lex_state = 3}, - [7760] = {.lex_state = 12, .external_lex_state = 3}, - [7761] = {.lex_state = 102, .external_lex_state = 3}, - [7762] = {.lex_state = 17, .external_lex_state = 3}, - [7763] = {.lex_state = 17, .external_lex_state = 3}, - [7764] = {.lex_state = 4, .external_lex_state = 3}, - [7765] = {.lex_state = 12, .external_lex_state = 3}, - [7766] = {.lex_state = 17, .external_lex_state = 3}, - [7767] = {.lex_state = 12, .external_lex_state = 3}, - [7768] = {.lex_state = 48, .external_lex_state = 3}, - [7769] = {.lex_state = 116, .external_lex_state = 3}, - [7770] = {.lex_state = 12, .external_lex_state = 3}, - [7771] = {.lex_state = 12, .external_lex_state = 3}, - [7772] = {.lex_state = 9, .external_lex_state = 3}, - [7773] = {.lex_state = 17, .external_lex_state = 3}, - [7774] = {.lex_state = 12, .external_lex_state = 3}, - [7775] = {.lex_state = 17, .external_lex_state = 3}, - [7776] = {.lex_state = 12, .external_lex_state = 3}, - [7777] = {.lex_state = 48, .external_lex_state = 3}, - [7778] = {.lex_state = 17, .external_lex_state = 3}, - [7779] = {.lex_state = 12, .external_lex_state = 3}, - [7780] = {.lex_state = 12, .external_lex_state = 3}, - [7781] = {.lex_state = 17, .external_lex_state = 3}, - [7782] = {.lex_state = 12, .external_lex_state = 3}, - [7783] = {.lex_state = 16, .external_lex_state = 3}, - [7784] = {.lex_state = 16, .external_lex_state = 3}, - [7785] = {.lex_state = 17, .external_lex_state = 3}, - [7786] = {.lex_state = 17, .external_lex_state = 3}, - [7787] = {.lex_state = 4, .external_lex_state = 3}, - [7788] = {.lex_state = 4, .external_lex_state = 3}, - [7789] = {.lex_state = 17, .external_lex_state = 3}, - [7790] = {.lex_state = 17, .external_lex_state = 3}, - [7791] = {.lex_state = 12, .external_lex_state = 3}, - [7792] = {.lex_state = 12, .external_lex_state = 3}, - [7793] = {.lex_state = 48, .external_lex_state = 3}, - [7794] = {.lex_state = 12, .external_lex_state = 3}, - [7795] = {.lex_state = 12, .external_lex_state = 3}, - [7796] = {.lex_state = 4, .external_lex_state = 3}, - [7797] = {.lex_state = 4, .external_lex_state = 3}, - [7798] = {.lex_state = 12, .external_lex_state = 3}, - [7799] = {.lex_state = 17, .external_lex_state = 3}, - [7800] = {.lex_state = 17, .external_lex_state = 3}, - [7801] = {.lex_state = 12, .external_lex_state = 3}, - [7802] = {.lex_state = 4, .external_lex_state = 3}, - [7803] = {.lex_state = 102, .external_lex_state = 3}, - [7804] = {.lex_state = 4, .external_lex_state = 3}, - [7805] = {.lex_state = 17, .external_lex_state = 3}, - [7806] = {.lex_state = 12, .external_lex_state = 3}, - [7807] = {.lex_state = 17, .external_lex_state = 3}, - [7808] = {.lex_state = 102, .external_lex_state = 3}, - [7809] = {.lex_state = 16, .external_lex_state = 3}, - [7810] = {.lex_state = 103, .external_lex_state = 3}, - [7811] = {.lex_state = 17, .external_lex_state = 3}, - [7812] = {.lex_state = 103, .external_lex_state = 3}, - [7813] = {.lex_state = 103, .external_lex_state = 3}, - [7814] = {.lex_state = 17, .external_lex_state = 3}, - [7815] = {.lex_state = 12, .external_lex_state = 3}, - [7816] = {.lex_state = 17, .external_lex_state = 3}, - [7817] = {.lex_state = 9, .external_lex_state = 3}, - [7818] = {.lex_state = 4, .external_lex_state = 3}, - [7819] = {.lex_state = 16, .external_lex_state = 3}, - [7820] = {.lex_state = 9, .external_lex_state = 3}, - [7821] = {.lex_state = 17, .external_lex_state = 3}, - [7822] = {.lex_state = 4, .external_lex_state = 3}, - [7823] = {.lex_state = 17, .external_lex_state = 3}, - [7824] = {.lex_state = 12, .external_lex_state = 3}, - [7825] = {.lex_state = 4, .external_lex_state = 3}, - [7826] = {.lex_state = 102, .external_lex_state = 3}, - [7827] = {.lex_state = 17, .external_lex_state = 3}, - [7828] = {.lex_state = 103, .external_lex_state = 3}, - [7829] = {.lex_state = 12, .external_lex_state = 3}, - [7830] = {.lex_state = 54, .external_lex_state = 8}, - [7831] = {.lex_state = 17, .external_lex_state = 3}, - [7832] = {.lex_state = 9, .external_lex_state = 3}, - [7833] = {.lex_state = 17, .external_lex_state = 3}, - [7834] = {.lex_state = 102, .external_lex_state = 3}, - [7835] = {.lex_state = 17, .external_lex_state = 3}, - [7836] = {.lex_state = 17, .external_lex_state = 3}, - [7837] = {.lex_state = 102, .external_lex_state = 3}, - [7838] = {.lex_state = 17, .external_lex_state = 3}, - [7839] = {.lex_state = 12, .external_lex_state = 3}, - [7840] = {.lex_state = 12, .external_lex_state = 3}, - [7841] = {.lex_state = 102, .external_lex_state = 3}, - [7842] = {.lex_state = 12, .external_lex_state = 3}, - [7843] = {.lex_state = 102, .external_lex_state = 3}, - [7844] = {.lex_state = 17, .external_lex_state = 3}, - [7845] = {.lex_state = 17, .external_lex_state = 3}, - [7846] = {.lex_state = 17, .external_lex_state = 3}, - [7847] = {.lex_state = 102, .external_lex_state = 3}, - [7848] = {.lex_state = 103, .external_lex_state = 3}, - [7849] = {.lex_state = 4, .external_lex_state = 3}, - [7850] = {.lex_state = 12, .external_lex_state = 3}, - [7851] = {.lex_state = 4, .external_lex_state = 3}, - [7852] = {.lex_state = 102, .external_lex_state = 3}, - [7853] = {.lex_state = 17, .external_lex_state = 3}, - [7854] = {.lex_state = 17, .external_lex_state = 3}, - [7855] = {.lex_state = 17, .external_lex_state = 3}, - [7856] = {.lex_state = 17, .external_lex_state = 3}, - [7857] = {.lex_state = 12, .external_lex_state = 3}, - [7858] = {.lex_state = 5, .external_lex_state = 3}, - [7859] = {.lex_state = 17, .external_lex_state = 3}, - [7860] = {.lex_state = 17, .external_lex_state = 3}, - [7861] = {.lex_state = 17, .external_lex_state = 3}, - [7862] = {.lex_state = 12, .external_lex_state = 3}, - [7863] = {.lex_state = 17, .external_lex_state = 3}, - [7864] = {.lex_state = 12, .external_lex_state = 3}, - [7865] = {.lex_state = 102, .external_lex_state = 3}, - [7866] = {.lex_state = 17, .external_lex_state = 3}, - [7867] = {.lex_state = 102, .external_lex_state = 3}, - [7868] = {.lex_state = 17, .external_lex_state = 3}, - [7869] = {.lex_state = 17, .external_lex_state = 3}, - [7870] = {.lex_state = 17, .external_lex_state = 3}, - [7871] = {.lex_state = 17, .external_lex_state = 3}, - [7872] = {.lex_state = 17, .external_lex_state = 3}, - [7873] = {.lex_state = 102, .external_lex_state = 3}, - [7874] = {.lex_state = 102, .external_lex_state = 3}, - [7875] = {.lex_state = 17, .external_lex_state = 3}, - [7876] = {.lex_state = 17, .external_lex_state = 3}, - [7877] = {.lex_state = 17, .external_lex_state = 3}, - [7878] = {.lex_state = 12, .external_lex_state = 3}, - [7879] = {.lex_state = 12, .external_lex_state = 3}, - [7880] = {.lex_state = 12, .external_lex_state = 3}, - [7881] = {.lex_state = 12, .external_lex_state = 3}, - [7882] = {.lex_state = 17, .external_lex_state = 3}, - [7883] = {.lex_state = 12, .external_lex_state = 3}, - [7884] = {.lex_state = 17, .external_lex_state = 3}, - [7885] = {.lex_state = 17, .external_lex_state = 3}, - [7886] = {.lex_state = 12, .external_lex_state = 3}, - [7887] = {.lex_state = 12, .external_lex_state = 3}, - [7888] = {.lex_state = 17, .external_lex_state = 3}, - [7889] = {.lex_state = 102, .external_lex_state = 3}, - [7890] = {.lex_state = 102, .external_lex_state = 3}, - [7891] = {.lex_state = 12, .external_lex_state = 3}, - [7892] = {.lex_state = 17, .external_lex_state = 3}, - [7893] = {.lex_state = 17, .external_lex_state = 3}, - [7894] = {.lex_state = 102, .external_lex_state = 3}, - [7895] = {.lex_state = 17, .external_lex_state = 3}, - [7896] = {.lex_state = 12, .external_lex_state = 3}, - [7897] = {.lex_state = 102, .external_lex_state = 3}, - [7898] = {.lex_state = 12, .external_lex_state = 3}, - [7899] = {.lex_state = 12, .external_lex_state = 3}, - [7900] = {.lex_state = 12, .external_lex_state = 3}, - [7901] = {.lex_state = 102, .external_lex_state = 3}, - [7902] = {.lex_state = 102, .external_lex_state = 3}, - [7903] = {.lex_state = 12, .external_lex_state = 3}, - [7904] = {.lex_state = 54, .external_lex_state = 8}, - [7905] = {.lex_state = 12, .external_lex_state = 3}, - [7906] = {.lex_state = 12, .external_lex_state = 3}, - [7907] = {.lex_state = 102, .external_lex_state = 3}, - [7908] = {.lex_state = 102, .external_lex_state = 3}, - [7909] = {.lex_state = 12, .external_lex_state = 3}, - [7910] = {.lex_state = 12, .external_lex_state = 3}, - [7911] = {.lex_state = 102, .external_lex_state = 3}, - [7912] = {.lex_state = 12, .external_lex_state = 3}, - [7913] = {.lex_state = 17, .external_lex_state = 3}, - [7914] = {.lex_state = 12, .external_lex_state = 3}, - [7915] = {.lex_state = 17, .external_lex_state = 3}, - [7916] = {.lex_state = 12, .external_lex_state = 3}, - [7917] = {.lex_state = 102, .external_lex_state = 3}, - [7918] = {.lex_state = 17, .external_lex_state = 3}, - [7919] = {.lex_state = 17, .external_lex_state = 3}, - [7920] = {.lex_state = 17, .external_lex_state = 3}, - [7921] = {.lex_state = 102, .external_lex_state = 3}, - [7922] = {.lex_state = 12, .external_lex_state = 3}, - [7923] = {.lex_state = 102, .external_lex_state = 3}, - [7924] = {.lex_state = 12, .external_lex_state = 3}, - [7925] = {.lex_state = 17, .external_lex_state = 3}, - [7926] = {.lex_state = 12, .external_lex_state = 3}, - [7927] = {.lex_state = 12, .external_lex_state = 3}, - [7928] = {.lex_state = 102, .external_lex_state = 3}, - [7929] = {.lex_state = 12, .external_lex_state = 3}, - [7930] = {.lex_state = 24, .external_lex_state = 3}, - [7931] = {.lex_state = 12, .external_lex_state = 3}, - [7932] = {.lex_state = 12, .external_lex_state = 3}, - [7933] = {.lex_state = 12, .external_lex_state = 3}, - [7934] = {.lex_state = 12, .external_lex_state = 3}, - [7935] = {.lex_state = 12, .external_lex_state = 3}, - [7936] = {.lex_state = 12, .external_lex_state = 3}, - [7937] = {.lex_state = 102, .external_lex_state = 3}, - [7938] = {.lex_state = 12, .external_lex_state = 3}, - [7939] = {.lex_state = 17, .external_lex_state = 3}, - [7940] = {.lex_state = 17, .external_lex_state = 3}, - [7941] = {.lex_state = 17, .external_lex_state = 3}, - [7942] = {.lex_state = 17, .external_lex_state = 3}, - [7943] = {.lex_state = 17, .external_lex_state = 3}, - [7944] = {.lex_state = 102, .external_lex_state = 3}, - [7945] = {.lex_state = 17, .external_lex_state = 3}, - [7946] = {.lex_state = 12, .external_lex_state = 3}, - [7947] = {.lex_state = 12, .external_lex_state = 3}, - [7948] = {.lex_state = 102, .external_lex_state = 3}, - [7949] = {.lex_state = 12, .external_lex_state = 3}, - [7950] = {.lex_state = 12, .external_lex_state = 3}, - [7951] = {.lex_state = 12, .external_lex_state = 3}, - [7952] = {.lex_state = 12, .external_lex_state = 3}, - [7953] = {.lex_state = 12, .external_lex_state = 3}, - [7954] = {.lex_state = 12, .external_lex_state = 3}, - [7955] = {.lex_state = 102, .external_lex_state = 3}, - [7956] = {.lex_state = 102, .external_lex_state = 3}, - [7957] = {.lex_state = 12, .external_lex_state = 3}, - [7958] = {.lex_state = 12, .external_lex_state = 3}, - [7959] = {.lex_state = 102, .external_lex_state = 3}, - [7960] = {.lex_state = 12, .external_lex_state = 3}, - [7961] = {.lex_state = 12, .external_lex_state = 3}, - [7962] = {.lex_state = 12, .external_lex_state = 3}, - [7963] = {.lex_state = 12, .external_lex_state = 3}, - [7964] = {.lex_state = 12, .external_lex_state = 3}, - [7965] = {.lex_state = 12, .external_lex_state = 3}, - [7966] = {.lex_state = 12, .external_lex_state = 3}, - [7967] = {.lex_state = 12, .external_lex_state = 3}, - [7968] = {.lex_state = 17, .external_lex_state = 3}, - [7969] = {.lex_state = 12, .external_lex_state = 3}, - [7970] = {.lex_state = 102, .external_lex_state = 3}, - [7971] = {.lex_state = 17, .external_lex_state = 3}, - [7972] = {.lex_state = 4, .external_lex_state = 3}, - [7973] = {.lex_state = 12, .external_lex_state = 3}, - [7974] = {.lex_state = 102, .external_lex_state = 3}, - [7975] = {.lex_state = 4, .external_lex_state = 3}, - [7976] = {.lex_state = 102, .external_lex_state = 3}, - [7977] = {.lex_state = 17, .external_lex_state = 3}, - [7978] = {.lex_state = 17, .external_lex_state = 3}, - [7979] = {.lex_state = 102, .external_lex_state = 3}, - [7980] = {.lex_state = 17, .external_lex_state = 3}, - [7981] = {.lex_state = 17, .external_lex_state = 3}, - [7982] = {.lex_state = 102, .external_lex_state = 3}, - [7983] = {.lex_state = 12, .external_lex_state = 3}, - [7984] = {.lex_state = 12, .external_lex_state = 3}, - [7985] = {.lex_state = 102, .external_lex_state = 3}, - [7986] = {.lex_state = 12, .external_lex_state = 3}, - [7987] = {.lex_state = 12, .external_lex_state = 3}, - [7988] = {.lex_state = 17, .external_lex_state = 3}, - [7989] = {.lex_state = 12, .external_lex_state = 3}, - [7990] = {.lex_state = 102, .external_lex_state = 3}, - [7991] = {.lex_state = 102, .external_lex_state = 3}, - [7992] = {.lex_state = 17, .external_lex_state = 3}, - [7993] = {.lex_state = 12, .external_lex_state = 3}, - [7994] = {.lex_state = 12, .external_lex_state = 3}, - [7995] = {.lex_state = 17, .external_lex_state = 3}, - [7996] = {.lex_state = 12, .external_lex_state = 3}, - [7997] = {.lex_state = 12, .external_lex_state = 3}, - [7998] = {.lex_state = 102, .external_lex_state = 3}, - [7999] = {.lex_state = 12, .external_lex_state = 3}, - [8000] = {.lex_state = 12, .external_lex_state = 3}, - [8001] = {.lex_state = 12, .external_lex_state = 3}, - [8002] = {.lex_state = 17, .external_lex_state = 3}, - [8003] = {.lex_state = 102, .external_lex_state = 3}, - [8004] = {.lex_state = 17, .external_lex_state = 3}, - [8005] = {.lex_state = 102, .external_lex_state = 3}, - [8006] = {.lex_state = 12, .external_lex_state = 3}, - [8007] = {.lex_state = 102, .external_lex_state = 3}, - [8008] = {.lex_state = 17, .external_lex_state = 3}, - [8009] = {.lex_state = 12, .external_lex_state = 3}, - [8010] = {.lex_state = 102, .external_lex_state = 3}, - [8011] = {.lex_state = 102, .external_lex_state = 3}, - [8012] = {.lex_state = 24, .external_lex_state = 3}, - [8013] = {.lex_state = 102, .external_lex_state = 3}, - [8014] = {.lex_state = 12, .external_lex_state = 3}, - [8015] = {.lex_state = 102, .external_lex_state = 3}, - [8016] = {.lex_state = 12, .external_lex_state = 3}, - [8017] = {.lex_state = 12, .external_lex_state = 3}, - [8018] = {.lex_state = 12, .external_lex_state = 3}, - [8019] = {.lex_state = 102, .external_lex_state = 3}, - [8020] = {.lex_state = 12, .external_lex_state = 3}, - [8021] = {.lex_state = 102, .external_lex_state = 3}, - [8022] = {.lex_state = 17, .external_lex_state = 3}, - [8023] = {.lex_state = 102, .external_lex_state = 3}, - [8024] = {.lex_state = 12, .external_lex_state = 3}, - [8025] = {.lex_state = 102, .external_lex_state = 3}, - [8026] = {.lex_state = 102, .external_lex_state = 3}, - [8027] = {.lex_state = 12, .external_lex_state = 3}, - [8028] = {.lex_state = 12, .external_lex_state = 3}, - [8029] = {.lex_state = 12, .external_lex_state = 3}, - [8030] = {.lex_state = 12, .external_lex_state = 3}, - [8031] = {.lex_state = 102, .external_lex_state = 3}, - [8032] = {.lex_state = 102, .external_lex_state = 3}, - [8033] = {.lex_state = 12, .external_lex_state = 3}, - [8034] = {.lex_state = 102, .external_lex_state = 3}, - [8035] = {.lex_state = 102, .external_lex_state = 3}, - [8036] = {.lex_state = 17, .external_lex_state = 3}, - [8037] = {.lex_state = 17, .external_lex_state = 3}, - [8038] = {.lex_state = 17, .external_lex_state = 3}, - [8039] = {.lex_state = 17, .external_lex_state = 3}, - [8040] = {.lex_state = 17, .external_lex_state = 3}, - [8041] = {.lex_state = 12, .external_lex_state = 3}, - [8042] = {.lex_state = 17, .external_lex_state = 3}, - [8043] = {.lex_state = 102, .external_lex_state = 3}, - [8044] = {.lex_state = 17, .external_lex_state = 3}, - [8045] = {.lex_state = 17, .external_lex_state = 3}, - [8046] = {.lex_state = 17, .external_lex_state = 3}, - [8047] = {.lex_state = 12, .external_lex_state = 3}, - [8048] = {.lex_state = 102, .external_lex_state = 3}, - [8049] = {.lex_state = 12, .external_lex_state = 3}, - [8050] = {.lex_state = 102, .external_lex_state = 3}, - [8051] = {.lex_state = 12, .external_lex_state = 3}, - [8052] = {.lex_state = 12, .external_lex_state = 3}, - [8053] = {.lex_state = 102, .external_lex_state = 3}, - [8054] = {.lex_state = 12, .external_lex_state = 3}, - [8055] = {.lex_state = 17, .external_lex_state = 3}, - [8056] = {.lex_state = 5, .external_lex_state = 3}, - [8057] = {.lex_state = 103, .external_lex_state = 3}, - [8058] = {.lex_state = 102, .external_lex_state = 3}, - [8059] = {.lex_state = 12, .external_lex_state = 3}, - [8060] = {.lex_state = 102, .external_lex_state = 3}, - [8061] = {.lex_state = 103, .external_lex_state = 3}, - [8062] = {.lex_state = 102, .external_lex_state = 3}, - [8063] = {.lex_state = 12, .external_lex_state = 3}, - [8064] = {.lex_state = 102, .external_lex_state = 3}, - [8065] = {.lex_state = 5, .external_lex_state = 3}, - [8066] = {.lex_state = 102, .external_lex_state = 3}, - [8067] = {.lex_state = 102, .external_lex_state = 3}, - [8068] = {.lex_state = 12, .external_lex_state = 3}, - [8069] = {.lex_state = 102, .external_lex_state = 3}, - [8070] = {.lex_state = 12, .external_lex_state = 3}, - [8071] = {.lex_state = 17, .external_lex_state = 3}, - [8072] = {.lex_state = 102, .external_lex_state = 3}, - [8073] = {.lex_state = 12, .external_lex_state = 3}, - [8074] = {.lex_state = 17, .external_lex_state = 3}, - [8075] = {.lex_state = 17, .external_lex_state = 3}, - [8076] = {.lex_state = 102, .external_lex_state = 3}, - [8077] = {.lex_state = 102, .external_lex_state = 3}, - [8078] = {.lex_state = 54, .external_lex_state = 8}, - [8079] = {.lex_state = 12, .external_lex_state = 3}, - [8080] = {.lex_state = 102, .external_lex_state = 3}, - [8081] = {.lex_state = 102, .external_lex_state = 3}, - [8082] = {.lex_state = 12, .external_lex_state = 3}, - [8083] = {.lex_state = 102, .external_lex_state = 3}, - [8084] = {.lex_state = 102, .external_lex_state = 3}, - [8085] = {.lex_state = 102, .external_lex_state = 3}, - [8086] = {.lex_state = 12, .external_lex_state = 3}, - [8087] = {.lex_state = 12, .external_lex_state = 3}, - [8088] = {.lex_state = 12, .external_lex_state = 3}, - [8089] = {.lex_state = 102, .external_lex_state = 3}, - [8090] = {.lex_state = 12, .external_lex_state = 3}, - [8091] = {.lex_state = 102, .external_lex_state = 3}, - [8092] = {.lex_state = 12, .external_lex_state = 3}, - [8093] = {.lex_state = 12, .external_lex_state = 3}, - [8094] = {.lex_state = 102, .external_lex_state = 3}, - [8095] = {.lex_state = 54, .external_lex_state = 8}, - [8096] = {.lex_state = 54, .external_lex_state = 8}, - [8097] = {.lex_state = 17, .external_lex_state = 3}, - [8098] = {.lex_state = 17, .external_lex_state = 3}, - [8099] = {.lex_state = 102, .external_lex_state = 3}, - [8100] = {.lex_state = 17, .external_lex_state = 3}, - [8101] = {.lex_state = 102, .external_lex_state = 3}, - [8102] = {.lex_state = 102, .external_lex_state = 3}, - [8103] = {.lex_state = 103, .external_lex_state = 3}, - [8104] = {.lex_state = 12, .external_lex_state = 3}, - [8105] = {.lex_state = 102, .external_lex_state = 3}, - [8106] = {.lex_state = 102, .external_lex_state = 3}, - [8107] = {.lex_state = 17, .external_lex_state = 3}, - [8108] = {.lex_state = 12, .external_lex_state = 3}, - [8109] = {.lex_state = 102, .external_lex_state = 3}, - [8110] = {.lex_state = 12, .external_lex_state = 3}, - [8111] = {.lex_state = 12, .external_lex_state = 3}, - [8112] = {.lex_state = 12, .external_lex_state = 3}, - [8113] = {.lex_state = 12, .external_lex_state = 3}, - [8114] = {.lex_state = 54, .external_lex_state = 8}, - [8115] = {.lex_state = 12, .external_lex_state = 3}, - [8116] = {.lex_state = 102, .external_lex_state = 3}, - [8117] = {.lex_state = 12, .external_lex_state = 3}, - [8118] = {.lex_state = 54, .external_lex_state = 8}, - [8119] = {.lex_state = 102, .external_lex_state = 3}, - [8120] = {.lex_state = 17, .external_lex_state = 3}, - [8121] = {.lex_state = 102, .external_lex_state = 3}, - [8122] = {.lex_state = 12, .external_lex_state = 3}, - [8123] = {.lex_state = 17, .external_lex_state = 3}, - [8124] = {.lex_state = 102, .external_lex_state = 3}, - [8125] = {.lex_state = 12, .external_lex_state = 3}, - [8126] = {.lex_state = 102, .external_lex_state = 3}, - [8127] = {.lex_state = 12, .external_lex_state = 3}, - [8128] = {.lex_state = 24, .external_lex_state = 3}, - [8129] = {.lex_state = 17, .external_lex_state = 3}, - [8130] = {.lex_state = 54, .external_lex_state = 8}, - [8131] = {.lex_state = 102, .external_lex_state = 3}, - [8132] = {.lex_state = 17, .external_lex_state = 3}, - [8133] = {.lex_state = 102, .external_lex_state = 3}, - [8134] = {.lex_state = 17, .external_lex_state = 3}, - [8135] = {.lex_state = 12, .external_lex_state = 3}, - [8136] = {.lex_state = 102, .external_lex_state = 3}, - [8137] = {.lex_state = 12, .external_lex_state = 3}, - [8138] = {.lex_state = 12, .external_lex_state = 3}, - [8139] = {.lex_state = 12, .external_lex_state = 3}, - [8140] = {.lex_state = 12, .external_lex_state = 3}, - [8141] = {.lex_state = 54, .external_lex_state = 8}, - [8142] = {.lex_state = 102, .external_lex_state = 3}, - [8143] = {.lex_state = 12, .external_lex_state = 3}, - [8144] = {.lex_state = 102, .external_lex_state = 3}, - [8145] = {.lex_state = 102, .external_lex_state = 3}, - [8146] = {.lex_state = 102, .external_lex_state = 3}, - [8147] = {.lex_state = 12, .external_lex_state = 3}, - [8148] = {.lex_state = 102, .external_lex_state = 3}, - [8149] = {.lex_state = 12, .external_lex_state = 3}, - [8150] = {.lex_state = 12, .external_lex_state = 3}, - [8151] = {.lex_state = 5, .external_lex_state = 3}, - [8152] = {.lex_state = 12, .external_lex_state = 3}, - [8153] = {.lex_state = 102, .external_lex_state = 3}, - [8154] = {.lex_state = 12, .external_lex_state = 3}, - [8155] = {.lex_state = 54, .external_lex_state = 8}, - [8156] = {.lex_state = 12, .external_lex_state = 3}, - [8157] = {.lex_state = 12, .external_lex_state = 3}, - [8158] = {.lex_state = 102, .external_lex_state = 3}, - [8159] = {.lex_state = 12, .external_lex_state = 3}, - [8160] = {.lex_state = 102, .external_lex_state = 3}, - [8161] = {.lex_state = 102, .external_lex_state = 3}, - [8162] = {.lex_state = 12, .external_lex_state = 3}, - [8163] = {.lex_state = 12, .external_lex_state = 3}, - [8164] = {.lex_state = 54, .external_lex_state = 8}, - [8165] = {.lex_state = 102, .external_lex_state = 3}, - [8166] = {.lex_state = 102, .external_lex_state = 3}, - [8167] = {.lex_state = 17, .external_lex_state = 3}, - [8168] = {.lex_state = 17, .external_lex_state = 3}, - [8169] = {.lex_state = 12, .external_lex_state = 3}, - [8170] = {.lex_state = 17, .external_lex_state = 3}, - [8171] = {.lex_state = 102, .external_lex_state = 3}, - [8172] = {.lex_state = 102, .external_lex_state = 3}, - [8173] = {.lex_state = 116, .external_lex_state = 3}, - [8174] = {.lex_state = 102, .external_lex_state = 3}, - [8175] = {.lex_state = 12, .external_lex_state = 3}, - [8176] = {.lex_state = 12, .external_lex_state = 3}, - [8177] = {.lex_state = 12, .external_lex_state = 3}, - [8178] = {.lex_state = 12, .external_lex_state = 3}, - [8179] = {.lex_state = 102, .external_lex_state = 3}, - [8180] = {.lex_state = 102, .external_lex_state = 3}, - [8181] = {.lex_state = 102, .external_lex_state = 3}, - [8182] = {.lex_state = 102, .external_lex_state = 3}, - [8183] = {.lex_state = 54, .external_lex_state = 8}, - [8184] = {.lex_state = 102, .external_lex_state = 3}, - [8185] = {.lex_state = 54, .external_lex_state = 8}, - [8186] = {.lex_state = 12, .external_lex_state = 3}, - [8187] = {.lex_state = 54, .external_lex_state = 8}, - [8188] = {.lex_state = 12, .external_lex_state = 3}, - [8189] = {.lex_state = 17, .external_lex_state = 3}, - [8190] = {.lex_state = 102, .external_lex_state = 3}, - [8191] = {.lex_state = 102, .external_lex_state = 3}, - [8192] = {.lex_state = 17, .external_lex_state = 3}, - [8193] = {.lex_state = 54, .external_lex_state = 8}, - [8194] = {.lex_state = 102, .external_lex_state = 3}, - [8195] = {.lex_state = 102, .external_lex_state = 3}, - [8196] = {.lex_state = 102, .external_lex_state = 3}, - [8197] = {.lex_state = 17, .external_lex_state = 3}, - [8198] = {.lex_state = 17, .external_lex_state = 3}, - [8199] = {.lex_state = 12, .external_lex_state = 3}, - [8200] = {.lex_state = 17, .external_lex_state = 3}, - [8201] = {.lex_state = 12, .external_lex_state = 3}, - [8202] = {.lex_state = 12, .external_lex_state = 3}, - [8203] = {.lex_state = 103, .external_lex_state = 3}, - [8204] = {.lex_state = 102, .external_lex_state = 3}, - [8205] = {.lex_state = 54, .external_lex_state = 8}, - [8206] = {.lex_state = 102, .external_lex_state = 3}, - [8207] = {.lex_state = 12, .external_lex_state = 3}, - [8208] = {.lex_state = 12, .external_lex_state = 3}, - [8209] = {.lex_state = 102, .external_lex_state = 3}, - [8210] = {.lex_state = 102, .external_lex_state = 3}, - [8211] = {.lex_state = 102, .external_lex_state = 3}, - [8212] = {.lex_state = 102, .external_lex_state = 3}, - [8213] = {.lex_state = 103, .external_lex_state = 3}, - [8214] = {.lex_state = 12, .external_lex_state = 3}, - [8215] = {.lex_state = 54, .external_lex_state = 8}, - [8216] = {.lex_state = 54, .external_lex_state = 8}, - [8217] = {.lex_state = 102, .external_lex_state = 3}, - [8218] = {.lex_state = 12, .external_lex_state = 3}, - [8219] = {.lex_state = 17, .external_lex_state = 3}, - [8220] = {.lex_state = 17, .external_lex_state = 3}, - [8221] = {.lex_state = 17, .external_lex_state = 3}, - [8222] = {.lex_state = 102, .external_lex_state = 3}, - [8223] = {.lex_state = 12, .external_lex_state = 3}, - [8224] = {.lex_state = 12, .external_lex_state = 3}, - [8225] = {.lex_state = 54, .external_lex_state = 8}, - [8226] = {.lex_state = 102, .external_lex_state = 3}, - [8227] = {.lex_state = 54, .external_lex_state = 8}, - [8228] = {.lex_state = 102, .external_lex_state = 3}, - [8229] = {.lex_state = 54, .external_lex_state = 8}, - [8230] = {.lex_state = 54, .external_lex_state = 8}, - [8231] = {.lex_state = 102, .external_lex_state = 3}, - [8232] = {.lex_state = 54, .external_lex_state = 8}, - [8233] = {.lex_state = 102, .external_lex_state = 3}, - [8234] = {.lex_state = 102, .external_lex_state = 3}, - [8235] = {.lex_state = 54, .external_lex_state = 8}, - [8236] = {.lex_state = 102, .external_lex_state = 3}, - [8237] = {.lex_state = 12, .external_lex_state = 3}, - [8238] = {.lex_state = 102, .external_lex_state = 3}, - [8239] = {.lex_state = 102, .external_lex_state = 3}, - [8240] = {.lex_state = 54, .external_lex_state = 8}, - [8241] = {.lex_state = 5, .external_lex_state = 3}, - [8242] = {.lex_state = 102, .external_lex_state = 3}, - [8243] = {.lex_state = 102, .external_lex_state = 3}, - [8244] = {.lex_state = 54, .external_lex_state = 8}, - [8245] = {.lex_state = 102, .external_lex_state = 3}, - [8246] = {.lex_state = 17, .external_lex_state = 3}, - [8247] = {.lex_state = 54, .external_lex_state = 8}, - [8248] = {.lex_state = 17, .external_lex_state = 3}, - [8249] = {.lex_state = 102, .external_lex_state = 3}, - [8250] = {.lex_state = 54, .external_lex_state = 8}, - [8251] = {.lex_state = 17, .external_lex_state = 3}, - [8252] = {.lex_state = 12, .external_lex_state = 3}, - [8253] = {.lex_state = 54, .external_lex_state = 8}, - [8254] = {.lex_state = 54, .external_lex_state = 8}, - [8255] = {.lex_state = 54, .external_lex_state = 8}, - [8256] = {.lex_state = 54, .external_lex_state = 8}, - [8257] = {.lex_state = 12, .external_lex_state = 3}, - [8258] = {.lex_state = 12, .external_lex_state = 3}, - [8259] = {.lex_state = 102, .external_lex_state = 3}, - [8260] = {.lex_state = 24, .external_lex_state = 3}, - [8261] = {.lex_state = 12, .external_lex_state = 3}, - [8262] = {.lex_state = 102, .external_lex_state = 3}, - [8263] = {.lex_state = 102, .external_lex_state = 3}, - [8264] = {.lex_state = 54, .external_lex_state = 8}, - [8265] = {.lex_state = 102, .external_lex_state = 3}, - [8266] = {.lex_state = 12, .external_lex_state = 3}, - [8267] = {.lex_state = 12, .external_lex_state = 3}, - [8268] = {.lex_state = 102, .external_lex_state = 3}, - [8269] = {.lex_state = 102, .external_lex_state = 3}, - [8270] = {.lex_state = 17, .external_lex_state = 3}, - [8271] = {.lex_state = 102, .external_lex_state = 3}, - [8272] = {.lex_state = 17, .external_lex_state = 3}, - [8273] = {.lex_state = 12, .external_lex_state = 3}, - [8274] = {.lex_state = 102, .external_lex_state = 3}, - [8275] = {.lex_state = 12, .external_lex_state = 3}, - [8276] = {.lex_state = 12, .external_lex_state = 3}, - [8277] = {.lex_state = 12, .external_lex_state = 3}, - [8278] = {.lex_state = 102, .external_lex_state = 3}, - [8279] = {.lex_state = 102, .external_lex_state = 3}, - [8280] = {.lex_state = 102, .external_lex_state = 3}, - [8281] = {.lex_state = 102, .external_lex_state = 3}, - [8282] = {.lex_state = 12, .external_lex_state = 3}, - [8283] = {.lex_state = 12, .external_lex_state = 3}, - [8284] = {.lex_state = 12, .external_lex_state = 3}, - [8285] = {.lex_state = 17, .external_lex_state = 3}, - [8286] = {.lex_state = 17, .external_lex_state = 3}, - [8287] = {.lex_state = 102, .external_lex_state = 3}, - [8288] = {.lex_state = 17, .external_lex_state = 3}, - [8289] = {.lex_state = 17, .external_lex_state = 3}, - [8290] = {.lex_state = 102, .external_lex_state = 3}, - [8291] = {.lex_state = 17, .external_lex_state = 3}, - [8292] = {.lex_state = 12, .external_lex_state = 3}, - [8293] = {.lex_state = 102, .external_lex_state = 3}, - [8294] = {.lex_state = 102, .external_lex_state = 3}, - [8295] = {.lex_state = 12, .external_lex_state = 3}, - [8296] = {.lex_state = 102, .external_lex_state = 3}, - [8297] = {.lex_state = 12, .external_lex_state = 3}, - [8298] = {.lex_state = 12, .external_lex_state = 3}, - [8299] = {.lex_state = 12, .external_lex_state = 3}, - [8300] = {.lex_state = 12, .external_lex_state = 3}, - [8301] = {.lex_state = 102, .external_lex_state = 3}, - [8302] = {.lex_state = 102, .external_lex_state = 3}, - [8303] = {.lex_state = 102, .external_lex_state = 3}, - [8304] = {.lex_state = 102, .external_lex_state = 3}, - [8305] = {.lex_state = 102, .external_lex_state = 3}, - [8306] = {.lex_state = 102, .external_lex_state = 3}, - [8307] = {.lex_state = 12, .external_lex_state = 3}, - [8308] = {.lex_state = 12, .external_lex_state = 3}, - [8309] = {.lex_state = 12, .external_lex_state = 3}, - [8310] = {.lex_state = 12, .external_lex_state = 3}, - [8311] = {.lex_state = 102, .external_lex_state = 3}, - [8312] = {.lex_state = 102, .external_lex_state = 3}, - [8313] = {.lex_state = 12, .external_lex_state = 3}, - [8314] = {.lex_state = 102, .external_lex_state = 3}, - [8315] = {.lex_state = 12, .external_lex_state = 3}, - [8316] = {.lex_state = 102, .external_lex_state = 8}, - [8317] = {.lex_state = 12, .external_lex_state = 3}, - [8318] = {.lex_state = 12, .external_lex_state = 3}, - [8319] = {.lex_state = 102, .external_lex_state = 3}, - [8320] = {.lex_state = 102, .external_lex_state = 3}, - [8321] = {.lex_state = 102, .external_lex_state = 9}, - [8322] = {.lex_state = 12, .external_lex_state = 3}, - [8323] = {.lex_state = 102, .external_lex_state = 2}, - [8324] = {.lex_state = 102, .external_lex_state = 3}, - [8325] = {.lex_state = 12, .external_lex_state = 3}, - [8326] = {.lex_state = 102, .external_lex_state = 3}, - [8327] = {.lex_state = 12, .external_lex_state = 3}, - [8328] = {.lex_state = 12, .external_lex_state = 3}, - [8329] = {.lex_state = 12, .external_lex_state = 3}, - [8330] = {.lex_state = 102, .external_lex_state = 3}, - [8331] = {.lex_state = 102, .external_lex_state = 3}, - [8332] = {.lex_state = 102, .external_lex_state = 3}, - [8333] = {.lex_state = 102, .external_lex_state = 3}, - [8334] = {.lex_state = 102, .external_lex_state = 3}, - [8335] = {.lex_state = 12, .external_lex_state = 3}, - [8336] = {.lex_state = 102, .external_lex_state = 3}, - [8337] = {.lex_state = 103, .external_lex_state = 3}, - [8338] = {.lex_state = 12, .external_lex_state = 3}, - [8339] = {.lex_state = 102, .external_lex_state = 3}, - [8340] = {.lex_state = 102, .external_lex_state = 9}, - [8341] = {.lex_state = 12, .external_lex_state = 3}, - [8342] = {.lex_state = 12, .external_lex_state = 3}, - [8343] = {.lex_state = 102, .external_lex_state = 3}, - [8344] = {.lex_state = 12, .external_lex_state = 3}, - [8345] = {.lex_state = 102, .external_lex_state = 3}, - [8346] = {.lex_state = 102, .external_lex_state = 9}, - [8347] = {.lex_state = 102, .external_lex_state = 3}, - [8348] = {.lex_state = 102, .external_lex_state = 3}, - [8349] = {.lex_state = 102, .external_lex_state = 3}, - [8350] = {.lex_state = 102, .external_lex_state = 3}, - [8351] = {.lex_state = 102, .external_lex_state = 3}, - [8352] = {.lex_state = 102, .external_lex_state = 3}, - [8353] = {.lex_state = 102, .external_lex_state = 3}, - [8354] = {.lex_state = 102, .external_lex_state = 3}, - [8355] = {.lex_state = 102, .external_lex_state = 3}, - [8356] = {.lex_state = 102, .external_lex_state = 3}, - [8357] = {.lex_state = 102, .external_lex_state = 3}, - [8358] = {.lex_state = 102, .external_lex_state = 3}, - [8359] = {.lex_state = 102, .external_lex_state = 3}, - [8360] = {.lex_state = 102, .external_lex_state = 3}, - [8361] = {.lex_state = 103, .external_lex_state = 3}, - [8362] = {.lex_state = 102, .external_lex_state = 3}, - [8363] = {.lex_state = 102, .external_lex_state = 9}, - [8364] = {.lex_state = 12, .external_lex_state = 3}, - [8365] = {.lex_state = 102, .external_lex_state = 3}, - [8366] = {.lex_state = 102, .external_lex_state = 3}, - [8367] = {.lex_state = 103, .external_lex_state = 3}, - [8368] = {.lex_state = 102, .external_lex_state = 3}, - [8369] = {.lex_state = 102, .external_lex_state = 9}, - [8370] = {.lex_state = 102, .external_lex_state = 3}, - [8371] = {.lex_state = 12, .external_lex_state = 3}, - [8372] = {.lex_state = 102, .external_lex_state = 3}, - [8373] = {.lex_state = 102, .external_lex_state = 3}, - [8374] = {.lex_state = 12, .external_lex_state = 3}, - [8375] = {.lex_state = 102, .external_lex_state = 3}, - [8376] = {.lex_state = 102, .external_lex_state = 3}, - [8377] = {.lex_state = 102, .external_lex_state = 3}, - [8378] = {.lex_state = 102, .external_lex_state = 3}, - [8379] = {.lex_state = 102, .external_lex_state = 3}, - [8380] = {.lex_state = 102, .external_lex_state = 9}, - [8381] = {.lex_state = 102, .external_lex_state = 3}, - [8382] = {.lex_state = 102, .external_lex_state = 3}, - [8383] = {.lex_state = 102, .external_lex_state = 3}, - [8384] = {.lex_state = 102, .external_lex_state = 3}, - [8385] = {.lex_state = 12, .external_lex_state = 3}, - [8386] = {.lex_state = 102, .external_lex_state = 3}, - [8387] = {.lex_state = 12, .external_lex_state = 3}, - [8388] = {.lex_state = 102, .external_lex_state = 3}, - [8389] = {.lex_state = 12, .external_lex_state = 3}, - [8390] = {.lex_state = 102, .external_lex_state = 3}, - [8391] = {.lex_state = 102, .external_lex_state = 3}, - [8392] = {.lex_state = 102, .external_lex_state = 3}, - [8393] = {.lex_state = 102, .external_lex_state = 3}, - [8394] = {.lex_state = 102, .external_lex_state = 3}, - [8395] = {.lex_state = 102, .external_lex_state = 9}, - [8396] = {.lex_state = 102, .external_lex_state = 3}, - [8397] = {.lex_state = 102, .external_lex_state = 3}, - [8398] = {.lex_state = 102, .external_lex_state = 3}, - [8399] = {.lex_state = 102, .external_lex_state = 3}, - [8400] = {.lex_state = 102, .external_lex_state = 3}, - [8401] = {.lex_state = 102, .external_lex_state = 3}, - [8402] = {.lex_state = 102, .external_lex_state = 3}, - [8403] = {.lex_state = 102, .external_lex_state = 3}, - [8404] = {.lex_state = 102, .external_lex_state = 3}, - [8405] = {.lex_state = 102, .external_lex_state = 9}, - [8406] = {.lex_state = 102, .external_lex_state = 9}, - [8407] = {.lex_state = 102, .external_lex_state = 3}, - [8408] = {.lex_state = 102, .external_lex_state = 3}, - [8409] = {.lex_state = 102, .external_lex_state = 3}, - [8410] = {.lex_state = 102, .external_lex_state = 3}, - [8411] = {.lex_state = 102, .external_lex_state = 3}, - [8412] = {.lex_state = 102, .external_lex_state = 3}, - [8413] = {.lex_state = 12, .external_lex_state = 3}, - [8414] = {.lex_state = 102, .external_lex_state = 3}, - [8415] = {.lex_state = 102, .external_lex_state = 3}, - [8416] = {.lex_state = 102, .external_lex_state = 3}, - [8417] = {.lex_state = 102, .external_lex_state = 9}, - [8418] = {.lex_state = 102, .external_lex_state = 3}, - [8419] = {.lex_state = 102, .external_lex_state = 3}, - [8420] = {.lex_state = 102, .external_lex_state = 3}, - [8421] = {.lex_state = 102, .external_lex_state = 3}, - [8422] = {.lex_state = 102, .external_lex_state = 3}, - [8423] = {.lex_state = 102, .external_lex_state = 3}, - [8424] = {.lex_state = 102, .external_lex_state = 3}, - [8425] = {.lex_state = 102, .external_lex_state = 3}, - [8426] = {.lex_state = 102, .external_lex_state = 3}, - [8427] = {.lex_state = 102, .external_lex_state = 3}, - [8428] = {.lex_state = 102, .external_lex_state = 3}, - [8429] = {.lex_state = 102, .external_lex_state = 3}, - [8430] = {.lex_state = 102, .external_lex_state = 3}, - [8431] = {.lex_state = 12, .external_lex_state = 3}, - [8432] = {.lex_state = 102, .external_lex_state = 3}, - [8433] = {.lex_state = 103, .external_lex_state = 3}, - [8434] = {.lex_state = 12, .external_lex_state = 3}, - [8435] = {.lex_state = 12, .external_lex_state = 3}, - [8436] = {.lex_state = 102, .external_lex_state = 3}, - [8437] = {.lex_state = 103, .external_lex_state = 3}, - [8438] = {.lex_state = 102, .external_lex_state = 3}, - [8439] = {.lex_state = 102, .external_lex_state = 3}, - [8440] = {.lex_state = 102, .external_lex_state = 3}, - [8441] = {.lex_state = 102, .external_lex_state = 9}, - [8442] = {.lex_state = 102, .external_lex_state = 3}, - [8443] = {.lex_state = 102, .external_lex_state = 3}, - [8444] = {.lex_state = 102, .external_lex_state = 3}, - [8445] = {.lex_state = 102, .external_lex_state = 3}, - [8446] = {.lex_state = 12, .external_lex_state = 3}, - [8447] = {.lex_state = 12, .external_lex_state = 3}, - [8448] = {.lex_state = 12, .external_lex_state = 3}, - [8449] = {.lex_state = 102, .external_lex_state = 3}, - [8450] = {.lex_state = 12, .external_lex_state = 3}, - [8451] = {.lex_state = 12, .external_lex_state = 3}, - [8452] = {.lex_state = 102, .external_lex_state = 3}, - [8453] = {.lex_state = 102, .external_lex_state = 3}, - [8454] = {.lex_state = 102, .external_lex_state = 3}, - [8455] = {.lex_state = 12, .external_lex_state = 3}, - [8456] = {.lex_state = 102, .external_lex_state = 3}, - [8457] = {.lex_state = 102, .external_lex_state = 3}, - [8458] = {.lex_state = 102, .external_lex_state = 3}, - [8459] = {.lex_state = 102, .external_lex_state = 3}, - [8460] = {.lex_state = 12, .external_lex_state = 3}, - [8461] = {.lex_state = 102, .external_lex_state = 9}, - [8462] = {.lex_state = 102, .external_lex_state = 9}, - [8463] = {.lex_state = 102, .external_lex_state = 3}, - [8464] = {.lex_state = 102, .external_lex_state = 3}, - [8465] = {.lex_state = 102, .external_lex_state = 3}, - [8466] = {.lex_state = 102, .external_lex_state = 3}, - [8467] = {.lex_state = 102, .external_lex_state = 3}, - [8468] = {.lex_state = 102, .external_lex_state = 3}, - [8469] = {.lex_state = 102, .external_lex_state = 9}, - [8470] = {.lex_state = 102, .external_lex_state = 3}, - [8471] = {.lex_state = 102, .external_lex_state = 3}, - [8472] = {.lex_state = 102, .external_lex_state = 3}, - [8473] = {.lex_state = 102, .external_lex_state = 3}, - [8474] = {.lex_state = 102, .external_lex_state = 3}, - [8475] = {.lex_state = 102, .external_lex_state = 3}, - [8476] = {.lex_state = 102, .external_lex_state = 3}, - [8477] = {.lex_state = 102, .external_lex_state = 3}, - [8478] = {.lex_state = 102, .external_lex_state = 3}, - [8479] = {.lex_state = 102, .external_lex_state = 3}, - [8480] = {.lex_state = 12, .external_lex_state = 3}, - [8481] = {.lex_state = 102, .external_lex_state = 3}, - [8482] = {.lex_state = 102, .external_lex_state = 3}, - [8483] = {.lex_state = 12, .external_lex_state = 3}, - [8484] = {.lex_state = 12, .external_lex_state = 3}, - [8485] = {.lex_state = 12, .external_lex_state = 3}, - [8486] = {.lex_state = 102, .external_lex_state = 3}, - [8487] = {.lex_state = 102, .external_lex_state = 3}, - [8488] = {.lex_state = 102, .external_lex_state = 3}, - [8489] = {.lex_state = 102, .external_lex_state = 3}, - [8490] = {.lex_state = 102, .external_lex_state = 9}, - [8491] = {.lex_state = 102, .external_lex_state = 3}, - [8492] = {.lex_state = 102, .external_lex_state = 2}, - [8493] = {.lex_state = 12, .external_lex_state = 3}, - [8494] = {.lex_state = 12, .external_lex_state = 3}, - [8495] = {.lex_state = 102, .external_lex_state = 3}, - [8496] = {.lex_state = 12, .external_lex_state = 3}, - [8497] = {.lex_state = 12, .external_lex_state = 3}, - [8498] = {.lex_state = 12, .external_lex_state = 3}, - [8499] = {.lex_state = 102, .external_lex_state = 3}, - [8500] = {.lex_state = 102, .external_lex_state = 3}, - [8501] = {.lex_state = 12, .external_lex_state = 3}, - [8502] = {.lex_state = 12, .external_lex_state = 3}, - [8503] = {.lex_state = 102, .external_lex_state = 3}, - [8504] = {.lex_state = 102, .external_lex_state = 3}, - [8505] = {.lex_state = 102, .external_lex_state = 3}, - [8506] = {.lex_state = 102, .external_lex_state = 9}, - [8507] = {.lex_state = 102, .external_lex_state = 3}, - [8508] = {.lex_state = 102, .external_lex_state = 3}, - [8509] = {.lex_state = 107, .external_lex_state = 3}, - [8510] = {.lex_state = 107, .external_lex_state = 3}, - [8511] = {.lex_state = 107, .external_lex_state = 3}, - [8512] = {.lex_state = 102, .external_lex_state = 3}, - [8513] = {.lex_state = 102, .external_lex_state = 9}, - [8514] = {.lex_state = 102, .external_lex_state = 3}, - [8515] = {.lex_state = 102, .external_lex_state = 3}, - [8516] = {.lex_state = 102, .external_lex_state = 3}, - [8517] = {.lex_state = 12, .external_lex_state = 3}, - [8518] = {.lex_state = 12, .external_lex_state = 3}, - [8519] = {.lex_state = 102, .external_lex_state = 3}, - [8520] = {.lex_state = 102, .external_lex_state = 3}, - [8521] = {.lex_state = 102, .external_lex_state = 3}, - [8522] = {.lex_state = 102, .external_lex_state = 3}, - [8523] = {.lex_state = 102, .external_lex_state = 3}, - [8524] = {.lex_state = 12, .external_lex_state = 3}, - [8525] = {.lex_state = 12, .external_lex_state = 3}, - [8526] = {.lex_state = 12, .external_lex_state = 3}, - [8527] = {.lex_state = 12, .external_lex_state = 3}, - [8528] = {.lex_state = 12, .external_lex_state = 3}, - [8529] = {.lex_state = 12, .external_lex_state = 3}, - [8530] = {.lex_state = 102, .external_lex_state = 3}, - [8531] = {.lex_state = 12, .external_lex_state = 3}, - [8532] = {.lex_state = 102, .external_lex_state = 3}, - [8533] = {.lex_state = 12, .external_lex_state = 3}, - [8534] = {.lex_state = 102, .external_lex_state = 9}, - [8535] = {.lex_state = 102, .external_lex_state = 3}, - [8536] = {.lex_state = 102, .external_lex_state = 3}, - [8537] = {.lex_state = 12, .external_lex_state = 3}, - [8538] = {.lex_state = 12, .external_lex_state = 3}, - [8539] = {.lex_state = 102, .external_lex_state = 3}, - [8540] = {.lex_state = 102, .external_lex_state = 2}, - [8541] = {.lex_state = 12, .external_lex_state = 3}, - [8542] = {.lex_state = 103, .external_lex_state = 3}, - [8543] = {.lex_state = 102, .external_lex_state = 3}, - [8544] = {.lex_state = 12, .external_lex_state = 3}, - [8545] = {.lex_state = 102, .external_lex_state = 3}, - [8546] = {.lex_state = 102, .external_lex_state = 3}, - [8547] = {.lex_state = 102, .external_lex_state = 3}, - [8548] = {.lex_state = 102, .external_lex_state = 3}, - [8549] = {.lex_state = 102, .external_lex_state = 3}, - [8550] = {.lex_state = 102, .external_lex_state = 9}, - [8551] = {.lex_state = 102, .external_lex_state = 3}, - [8552] = {.lex_state = 102, .external_lex_state = 3}, - [8553] = {.lex_state = 12, .external_lex_state = 3}, - [8554] = {.lex_state = 102, .external_lex_state = 3}, - [8555] = {.lex_state = 102, .external_lex_state = 3}, - [8556] = {.lex_state = 102, .external_lex_state = 3}, - [8557] = {.lex_state = 102, .external_lex_state = 9}, - [8558] = {.lex_state = 102, .external_lex_state = 3}, - [8559] = {.lex_state = 102, .external_lex_state = 3}, - [8560] = {.lex_state = 102, .external_lex_state = 3}, - [8561] = {.lex_state = 103, .external_lex_state = 3}, - [8562] = {.lex_state = 102, .external_lex_state = 3}, - [8563] = {.lex_state = 102, .external_lex_state = 3}, - [8564] = {.lex_state = 102, .external_lex_state = 3}, - [8565] = {.lex_state = 12, .external_lex_state = 3}, - [8566] = {.lex_state = 12, .external_lex_state = 3}, - [8567] = {.lex_state = 102, .external_lex_state = 3}, - [8568] = {.lex_state = 102, .external_lex_state = 3}, - [8569] = {.lex_state = 102, .external_lex_state = 3}, - [8570] = {.lex_state = 102, .external_lex_state = 3}, - [8571] = {.lex_state = 102, .external_lex_state = 3}, - [8572] = {.lex_state = 12, .external_lex_state = 3}, - [8573] = {.lex_state = 12, .external_lex_state = 3}, - [8574] = {.lex_state = 102, .external_lex_state = 3}, - [8575] = {.lex_state = 102, .external_lex_state = 3}, - [8576] = {.lex_state = 102, .external_lex_state = 3}, - [8577] = {.lex_state = 102, .external_lex_state = 3}, - [8578] = {.lex_state = 102, .external_lex_state = 9}, - [8579] = {.lex_state = 102, .external_lex_state = 3}, - [8580] = {.lex_state = 102, .external_lex_state = 3}, - [8581] = {.lex_state = 12, .external_lex_state = 3}, - [8582] = {.lex_state = 12, .external_lex_state = 3}, - [8583] = {.lex_state = 102, .external_lex_state = 3}, - [8584] = {.lex_state = 102, .external_lex_state = 3}, - [8585] = {.lex_state = 102, .external_lex_state = 3}, - [8586] = {.lex_state = 102, .external_lex_state = 3}, - [8587] = {.lex_state = 102, .external_lex_state = 3}, - [8588] = {.lex_state = 12, .external_lex_state = 3}, - [8589] = {.lex_state = 102, .external_lex_state = 3}, - [8590] = {.lex_state = 102, .external_lex_state = 3}, - [8591] = {.lex_state = 102, .external_lex_state = 3}, - [8592] = {.lex_state = 102, .external_lex_state = 3}, - [8593] = {.lex_state = 12, .external_lex_state = 3}, - [8594] = {.lex_state = 102, .external_lex_state = 9}, - [8595] = {.lex_state = 102, .external_lex_state = 3}, - [8596] = {.lex_state = 102, .external_lex_state = 3}, - [8597] = {.lex_state = 102, .external_lex_state = 3}, - [8598] = {.lex_state = 12, .external_lex_state = 3}, - [8599] = {.lex_state = 102, .external_lex_state = 3}, - [8600] = {.lex_state = 102, .external_lex_state = 9}, - [8601] = {.lex_state = 102, .external_lex_state = 3}, - [8602] = {.lex_state = 102, .external_lex_state = 3}, - [8603] = {.lex_state = 102, .external_lex_state = 3}, - [8604] = {.lex_state = 12, .external_lex_state = 3}, - [8605] = {.lex_state = 102, .external_lex_state = 3}, - [8606] = {.lex_state = 102, .external_lex_state = 3}, - [8607] = {.lex_state = 102, .external_lex_state = 3}, - [8608] = {.lex_state = 102, .external_lex_state = 3}, - [8609] = {.lex_state = 102, .external_lex_state = 3}, - [8610] = {.lex_state = 102, .external_lex_state = 3}, - [8611] = {.lex_state = 102, .external_lex_state = 3}, - [8612] = {.lex_state = 102, .external_lex_state = 3}, - [8613] = {.lex_state = 102, .external_lex_state = 3}, - [8614] = {.lex_state = 102, .external_lex_state = 3}, - [8615] = {.lex_state = 12, .external_lex_state = 3}, - [8616] = {.lex_state = 12, .external_lex_state = 3}, - [8617] = {.lex_state = 102, .external_lex_state = 3}, - [8618] = {.lex_state = 102, .external_lex_state = 3}, - [8619] = {.lex_state = 102, .external_lex_state = 3}, - [8620] = {.lex_state = 102, .external_lex_state = 3}, - [8621] = {.lex_state = 102, .external_lex_state = 9}, - [8622] = {.lex_state = 102, .external_lex_state = 3}, - [8623] = {.lex_state = 102, .external_lex_state = 3}, - [8624] = {.lex_state = 12, .external_lex_state = 3}, - [8625] = {.lex_state = 12, .external_lex_state = 3}, - [8626] = {.lex_state = 102, .external_lex_state = 3}, - [8627] = {.lex_state = 102, .external_lex_state = 3}, - [8628] = {.lex_state = 102, .external_lex_state = 3}, - [8629] = {.lex_state = 102, .external_lex_state = 3}, - [8630] = {.lex_state = 102, .external_lex_state = 3}, - [8631] = {.lex_state = 102, .external_lex_state = 9}, - [8632] = {.lex_state = 102, .external_lex_state = 3}, - [8633] = {.lex_state = 102, .external_lex_state = 3}, - [8634] = {.lex_state = 102, .external_lex_state = 3}, - [8635] = {.lex_state = 102, .external_lex_state = 3}, - [8636] = {.lex_state = 102, .external_lex_state = 3}, - [8637] = {.lex_state = 102, .external_lex_state = 9}, - [8638] = {.lex_state = 102, .external_lex_state = 3}, - [8639] = {.lex_state = 102, .external_lex_state = 3}, - [8640] = {.lex_state = 102, .external_lex_state = 3}, - [8641] = {.lex_state = 102, .external_lex_state = 3}, - [8642] = {.lex_state = 102, .external_lex_state = 3}, - [8643] = {.lex_state = 102, .external_lex_state = 9}, - [8644] = {.lex_state = 102, .external_lex_state = 3}, - [8645] = {.lex_state = 102, .external_lex_state = 3}, - [8646] = {.lex_state = 102, .external_lex_state = 3}, - [8647] = {.lex_state = 102, .external_lex_state = 3}, - [8648] = {.lex_state = 102, .external_lex_state = 3}, - [8649] = {.lex_state = 103, .external_lex_state = 3}, - [8650] = {.lex_state = 12, .external_lex_state = 3}, - [8651] = {.lex_state = 102, .external_lex_state = 3}, - [8652] = {.lex_state = 12, .external_lex_state = 3}, - [8653] = {.lex_state = 102, .external_lex_state = 3}, - [8654] = {.lex_state = 102, .external_lex_state = 9}, - [8655] = {.lex_state = 12, .external_lex_state = 3}, - [8656] = {.lex_state = 102, .external_lex_state = 3}, - [8657] = {.lex_state = 12, .external_lex_state = 3}, - [8658] = {.lex_state = 12, .external_lex_state = 3}, - [8659] = {.lex_state = 102, .external_lex_state = 3}, - [8660] = {.lex_state = 12, .external_lex_state = 3}, - [8661] = {.lex_state = 102, .external_lex_state = 3}, - [8662] = {.lex_state = 12, .external_lex_state = 3}, - [8663] = {.lex_state = 102, .external_lex_state = 9}, - [8664] = {.lex_state = 102, .external_lex_state = 3}, - [8665] = {.lex_state = 102, .external_lex_state = 3}, - [8666] = {.lex_state = 12, .external_lex_state = 3}, - [8667] = {.lex_state = 12, .external_lex_state = 3}, - [8668] = {.lex_state = 102, .external_lex_state = 3}, - [8669] = {.lex_state = 12, .external_lex_state = 3}, - [8670] = {.lex_state = 102, .external_lex_state = 3}, - [8671] = {.lex_state = 12, .external_lex_state = 3}, - [8672] = {.lex_state = 102, .external_lex_state = 3}, - [8673] = {.lex_state = 102, .external_lex_state = 3}, - [8674] = {.lex_state = 102, .external_lex_state = 3}, - [8675] = {.lex_state = 102, .external_lex_state = 3}, - [8676] = {.lex_state = 102, .external_lex_state = 3}, - [8677] = {.lex_state = 102, .external_lex_state = 3}, - [8678] = {.lex_state = 102, .external_lex_state = 3}, - [8679] = {.lex_state = 102, .external_lex_state = 9}, - [8680] = {.lex_state = 12, .external_lex_state = 3}, - [8681] = {.lex_state = 102, .external_lex_state = 3}, - [8682] = {.lex_state = 102, .external_lex_state = 3}, - [8683] = {.lex_state = 102, .external_lex_state = 3}, - [8684] = {.lex_state = 102, .external_lex_state = 3}, - [8685] = {.lex_state = 102, .external_lex_state = 9}, - [8686] = {.lex_state = 102, .external_lex_state = 3}, - [8687] = {.lex_state = 102, .external_lex_state = 3}, - [8688] = {.lex_state = 102, .external_lex_state = 3}, - [8689] = {.lex_state = 102, .external_lex_state = 3}, - [8690] = {.lex_state = 102, .external_lex_state = 2}, - [8691] = {.lex_state = 102, .external_lex_state = 3}, - [8692] = {.lex_state = 102, .external_lex_state = 3}, - [8693] = {.lex_state = 12, .external_lex_state = 3}, - [8694] = {.lex_state = 102, .external_lex_state = 3}, - [8695] = {.lex_state = 102, .external_lex_state = 3}, - [8696] = {.lex_state = 12, .external_lex_state = 3}, - [8697] = {.lex_state = 102, .external_lex_state = 3}, - [8698] = {.lex_state = 12, .external_lex_state = 3}, - [8699] = {.lex_state = 12, .external_lex_state = 3}, - [8700] = {.lex_state = 12, .external_lex_state = 3}, - [8701] = {.lex_state = 102, .external_lex_state = 3}, - [8702] = {.lex_state = 12, .external_lex_state = 3}, - [8703] = {.lex_state = 12, .external_lex_state = 3}, - [8704] = {.lex_state = 12, .external_lex_state = 3}, - [8705] = {.lex_state = 102, .external_lex_state = 9}, - [8706] = {.lex_state = 102, .external_lex_state = 2}, - [8707] = {.lex_state = 102, .external_lex_state = 3}, - [8708] = {.lex_state = 12, .external_lex_state = 3}, - [8709] = {.lex_state = 12, .external_lex_state = 3}, - [8710] = {.lex_state = 12, .external_lex_state = 3}, - [8711] = {.lex_state = 102, .external_lex_state = 3}, - [8712] = {.lex_state = 102, .external_lex_state = 3}, - [8713] = {.lex_state = 102, .external_lex_state = 3}, - [8714] = {.lex_state = 102, .external_lex_state = 3}, - [8715] = {.lex_state = 102, .external_lex_state = 3}, - [8716] = {.lex_state = 102, .external_lex_state = 9}, - [8717] = {.lex_state = 12, .external_lex_state = 3}, - [8718] = {.lex_state = 102, .external_lex_state = 3}, - [8719] = {.lex_state = 102, .external_lex_state = 3}, - [8720] = {.lex_state = 102, .external_lex_state = 3}, - [8721] = {.lex_state = 102, .external_lex_state = 9}, - [8722] = {.lex_state = 102, .external_lex_state = 3}, - [8723] = {.lex_state = 102, .external_lex_state = 3}, - [8724] = {.lex_state = 12, .external_lex_state = 3}, - [8725] = {.lex_state = 12, .external_lex_state = 3}, - [8726] = {.lex_state = 102, .external_lex_state = 3}, - [8727] = {.lex_state = 102, .external_lex_state = 9}, - [8728] = {.lex_state = 102, .external_lex_state = 3}, - [8729] = {.lex_state = 102, .external_lex_state = 3}, - [8730] = {.lex_state = 102, .external_lex_state = 3}, - [8731] = {.lex_state = 102, .external_lex_state = 3}, - [8732] = {.lex_state = 102, .external_lex_state = 3}, - [8733] = {.lex_state = 12, .external_lex_state = 3}, - [8734] = {.lex_state = 102, .external_lex_state = 3}, - [8735] = {.lex_state = 102, .external_lex_state = 3}, - [8736] = {.lex_state = 102, .external_lex_state = 3}, - [8737] = {.lex_state = 102, .external_lex_state = 3}, - [8738] = {.lex_state = 12, .external_lex_state = 3}, - [8739] = {.lex_state = 12, .external_lex_state = 3}, - [8740] = {.lex_state = 12, .external_lex_state = 3}, - [8741] = {.lex_state = 12, .external_lex_state = 3}, - [8742] = {.lex_state = 12, .external_lex_state = 3}, - [8743] = {.lex_state = 102, .external_lex_state = 3}, - [8744] = {.lex_state = 102, .external_lex_state = 3}, - [8745] = {.lex_state = 12, .external_lex_state = 3}, - [8746] = {.lex_state = 102, .external_lex_state = 3}, - [8747] = {.lex_state = 102, .external_lex_state = 9}, - [8748] = {.lex_state = 102, .external_lex_state = 3}, - [8749] = {.lex_state = 102, .external_lex_state = 3}, - [8750] = {.lex_state = 12, .external_lex_state = 3}, - [8751] = {.lex_state = 12, .external_lex_state = 3}, - [8752] = {.lex_state = 102, .external_lex_state = 3}, - [8753] = {.lex_state = 102, .external_lex_state = 3}, - [8754] = {.lex_state = 102, .external_lex_state = 3}, - [8755] = {.lex_state = 102, .external_lex_state = 3}, - [8756] = {.lex_state = 102, .external_lex_state = 3}, - [8757] = {.lex_state = 102, .external_lex_state = 3}, - [8758] = {.lex_state = 102, .external_lex_state = 3}, - [8759] = {.lex_state = 102, .external_lex_state = 3}, - [8760] = {.lex_state = 102, .external_lex_state = 3}, - [8761] = {.lex_state = 102, .external_lex_state = 3}, - [8762] = {.lex_state = 102, .external_lex_state = 3}, - [8763] = {.lex_state = 102, .external_lex_state = 9}, - [8764] = {.lex_state = 102, .external_lex_state = 3}, - [8765] = {.lex_state = 102, .external_lex_state = 3}, - [8766] = {.lex_state = 102, .external_lex_state = 3}, - [8767] = {.lex_state = 102, .external_lex_state = 3}, - [8768] = {.lex_state = 102, .external_lex_state = 3}, - [8769] = {.lex_state = 102, .external_lex_state = 9}, - [8770] = {.lex_state = 102, .external_lex_state = 3}, - [8771] = {.lex_state = 102, .external_lex_state = 3}, - [8772] = {.lex_state = 102, .external_lex_state = 3}, - [8773] = {.lex_state = 102, .external_lex_state = 3}, - [8774] = {.lex_state = 102, .external_lex_state = 3}, - [8775] = {.lex_state = 102, .external_lex_state = 3}, - [8776] = {.lex_state = 102, .external_lex_state = 3}, - [8777] = {.lex_state = 102, .external_lex_state = 3}, - [8778] = {.lex_state = 102, .external_lex_state = 3}, - [8779] = {.lex_state = 102, .external_lex_state = 3}, - [8780] = {.lex_state = 103, .external_lex_state = 3}, - [8781] = {.lex_state = 102, .external_lex_state = 3}, - [8782] = {.lex_state = 12, .external_lex_state = 3}, - [8783] = {.lex_state = 12, .external_lex_state = 3}, - [8784] = {.lex_state = 102, .external_lex_state = 3}, - [8785] = {.lex_state = 102, .external_lex_state = 3}, - [8786] = {.lex_state = 102, .external_lex_state = 3}, - [8787] = {.lex_state = 102, .external_lex_state = 3}, - [8788] = {.lex_state = 102, .external_lex_state = 9}, - [8789] = {.lex_state = 12, .external_lex_state = 3}, - [8790] = {.lex_state = 102, .external_lex_state = 3}, - [8791] = {.lex_state = 12, .external_lex_state = 3}, - [8792] = {.lex_state = 12, .external_lex_state = 3}, - [8793] = {.lex_state = 102, .external_lex_state = 3}, - [8794] = {.lex_state = 12, .external_lex_state = 3}, - [8795] = {.lex_state = 12, .external_lex_state = 3}, - [8796] = {.lex_state = 102, .external_lex_state = 3}, - [8797] = {.lex_state = 102, .external_lex_state = 3}, - [8798] = {.lex_state = 102, .external_lex_state = 3}, - [8799] = {.lex_state = 102, .external_lex_state = 3}, - [8800] = {.lex_state = 102, .external_lex_state = 3}, - [8801] = {.lex_state = 103, .external_lex_state = 3}, - [8802] = {.lex_state = 102, .external_lex_state = 3}, - [8803] = {.lex_state = 102, .external_lex_state = 3}, - [8804] = {.lex_state = 102, .external_lex_state = 9}, - [8805] = {.lex_state = 12, .external_lex_state = 3}, - [8806] = {.lex_state = 102, .external_lex_state = 3}, - [8807] = {.lex_state = 102, .external_lex_state = 3}, - [8808] = {.lex_state = 102, .external_lex_state = 9}, - [8809] = {.lex_state = 102, .external_lex_state = 3}, - [8810] = {.lex_state = 102, .external_lex_state = 9}, - [8811] = {.lex_state = 102, .external_lex_state = 3}, - [8812] = {.lex_state = 102, .external_lex_state = 3}, - [8813] = {.lex_state = 102, .external_lex_state = 3}, - [8814] = {.lex_state = 102, .external_lex_state = 3}, - [8815] = {.lex_state = 102, .external_lex_state = 3}, - [8816] = {.lex_state = 102, .external_lex_state = 3}, - [8817] = {.lex_state = 102, .external_lex_state = 3}, - [8818] = {.lex_state = 102, .external_lex_state = 9}, - [8819] = {.lex_state = 102, .external_lex_state = 3}, - [8820] = {.lex_state = 102, .external_lex_state = 3}, - [8821] = {.lex_state = 102, .external_lex_state = 3}, - [8822] = {.lex_state = 102, .external_lex_state = 3}, - [8823] = {.lex_state = 102, .external_lex_state = 3}, - [8824] = {.lex_state = 102, .external_lex_state = 9}, - [8825] = {.lex_state = 102, .external_lex_state = 3}, - [8826] = {.lex_state = 102, .external_lex_state = 3}, - [8827] = {.lex_state = 102, .external_lex_state = 3}, - [8828] = {.lex_state = 102, .external_lex_state = 3}, - [8829] = {.lex_state = 102, .external_lex_state = 3}, - [8830] = {.lex_state = 102, .external_lex_state = 3}, - [8831] = {.lex_state = 102, .external_lex_state = 3}, - [8832] = {.lex_state = 102, .external_lex_state = 3}, - [8833] = {.lex_state = 12, .external_lex_state = 3}, - [8834] = {.lex_state = 102, .external_lex_state = 3}, - [8835] = {.lex_state = 102, .external_lex_state = 2}, - [8836] = {.lex_state = 102, .external_lex_state = 3}, - [8837] = {.lex_state = 102, .external_lex_state = 3}, - [8838] = {.lex_state = 102, .external_lex_state = 9}, - [8839] = {.lex_state = 12, .external_lex_state = 3}, - [8840] = {.lex_state = 102, .external_lex_state = 3}, - [8841] = {.lex_state = 102, .external_lex_state = 3}, - [8842] = {.lex_state = 102, .external_lex_state = 3}, - [8843] = {.lex_state = 102, .external_lex_state = 3}, - [8844] = {.lex_state = 102, .external_lex_state = 9}, - [8845] = {.lex_state = 102, .external_lex_state = 3}, - [8846] = {.lex_state = 102, .external_lex_state = 3}, - [8847] = {.lex_state = 102, .external_lex_state = 3}, - [8848] = {.lex_state = 102, .external_lex_state = 3}, - [8849] = {.lex_state = 102, .external_lex_state = 3}, - [8850] = {.lex_state = 102, .external_lex_state = 3}, - [8851] = {.lex_state = 102, .external_lex_state = 3}, - [8852] = {.lex_state = 102, .external_lex_state = 3}, - [8853] = {.lex_state = 102, .external_lex_state = 3}, - [8854] = {.lex_state = 102, .external_lex_state = 3}, - [8855] = {.lex_state = 102, .external_lex_state = 3}, - [8856] = {.lex_state = 102, .external_lex_state = 3}, - [8857] = {.lex_state = 12, .external_lex_state = 3}, - [8858] = {.lex_state = 102, .external_lex_state = 9}, - [8859] = {.lex_state = 102, .external_lex_state = 3}, - [8860] = {.lex_state = 102, .external_lex_state = 3}, - [8861] = {.lex_state = 102, .external_lex_state = 3}, - [8862] = {.lex_state = 102, .external_lex_state = 3}, - [8863] = {.lex_state = 102, .external_lex_state = 3}, - [8864] = {.lex_state = 102, .external_lex_state = 3}, - [8865] = {.lex_state = 102, .external_lex_state = 3}, - [8866] = {.lex_state = 102, .external_lex_state = 3}, - [8867] = {.lex_state = 102, .external_lex_state = 3}, - [8868] = {.lex_state = 102, .external_lex_state = 3}, - [8869] = {.lex_state = 102, .external_lex_state = 3}, - [8870] = {.lex_state = 102, .external_lex_state = 3}, - [8871] = {.lex_state = 102, .external_lex_state = 3}, - [8872] = {.lex_state = 102, .external_lex_state = 9}, - [8873] = {.lex_state = 102, .external_lex_state = 3}, - [8874] = {.lex_state = 102, .external_lex_state = 3}, - [8875] = {.lex_state = 102, .external_lex_state = 3}, - [8876] = {.lex_state = 102, .external_lex_state = 3}, - [8877] = {.lex_state = 102, .external_lex_state = 3}, - [8878] = {.lex_state = 102, .external_lex_state = 9}, - [8879] = {.lex_state = 102, .external_lex_state = 3}, - [8880] = {.lex_state = 102, .external_lex_state = 3}, - [8881] = {.lex_state = 102, .external_lex_state = 3}, - [8882] = {.lex_state = 102, .external_lex_state = 3}, - [8883] = {.lex_state = 102, .external_lex_state = 3}, - [8884] = {.lex_state = 102, .external_lex_state = 3}, - [8885] = {.lex_state = 102, .external_lex_state = 3}, - [8886] = {.lex_state = 102, .external_lex_state = 3}, - [8887] = {.lex_state = 102, .external_lex_state = 9}, - [8888] = {.lex_state = 102, .external_lex_state = 3}, - [8889] = {.lex_state = 102, .external_lex_state = 3}, - [8890] = {.lex_state = 102, .external_lex_state = 3}, - [8891] = {.lex_state = 12, .external_lex_state = 3}, - [8892] = {.lex_state = 12, .external_lex_state = 3}, - [8893] = {.lex_state = 12, .external_lex_state = 3}, - [8894] = {.lex_state = 102, .external_lex_state = 3}, - [8895] = {.lex_state = 102, .external_lex_state = 3}, - [8896] = {.lex_state = 102, .external_lex_state = 9}, - [8897] = {.lex_state = 12, .external_lex_state = 3}, - [8898] = {.lex_state = 102, .external_lex_state = 3}, - [8899] = {.lex_state = 102, .external_lex_state = 9}, - [8900] = {.lex_state = 102, .external_lex_state = 3}, - [8901] = {.lex_state = 102, .external_lex_state = 3}, - [8902] = {.lex_state = 102, .external_lex_state = 3}, - [8903] = {.lex_state = 102, .external_lex_state = 3}, - [8904] = {.lex_state = 102, .external_lex_state = 3}, - [8905] = {.lex_state = 102, .external_lex_state = 3}, - [8906] = {.lex_state = 102, .external_lex_state = 9}, - [8907] = {.lex_state = 102, .external_lex_state = 3}, - [8908] = {.lex_state = 102, .external_lex_state = 3}, - [8909] = {.lex_state = 102, .external_lex_state = 3}, - [8910] = {.lex_state = 102, .external_lex_state = 3}, - [8911] = {.lex_state = 102, .external_lex_state = 9}, - [8912] = {.lex_state = 102, .external_lex_state = 3}, - [8913] = {.lex_state = 102, .external_lex_state = 9}, - [8914] = {.lex_state = 102, .external_lex_state = 3}, - [8915] = {.lex_state = 102, .external_lex_state = 3}, - [8916] = {.lex_state = 102, .external_lex_state = 3}, - [8917] = {.lex_state = 102, .external_lex_state = 3}, - [8918] = {.lex_state = 102, .external_lex_state = 3}, - [8919] = {.lex_state = 102, .external_lex_state = 3}, - [8920] = {.lex_state = 102, .external_lex_state = 9}, - [8921] = {.lex_state = 102, .external_lex_state = 3}, - [8922] = {.lex_state = 102, .external_lex_state = 3}, - [8923] = {.lex_state = 12, .external_lex_state = 3}, - [8924] = {.lex_state = 102, .external_lex_state = 3}, - [8925] = {.lex_state = 102, .external_lex_state = 9}, - [8926] = {.lex_state = 103, .external_lex_state = 3}, - [8927] = {.lex_state = 102, .external_lex_state = 9}, - [8928] = {.lex_state = 102, .external_lex_state = 3}, - [8929] = {.lex_state = 102, .external_lex_state = 3}, - [8930] = {.lex_state = 102, .external_lex_state = 3}, - [8931] = {.lex_state = 102, .external_lex_state = 3}, - [8932] = {.lex_state = 102, .external_lex_state = 3}, - [8933] = {.lex_state = 12, .external_lex_state = 3}, - [8934] = {.lex_state = 102, .external_lex_state = 9}, - [8935] = {.lex_state = 12, .external_lex_state = 3}, - [8936] = {.lex_state = 12, .external_lex_state = 3}, - [8937] = {.lex_state = 12, .external_lex_state = 3}, - [8938] = {.lex_state = 102, .external_lex_state = 3}, - [8939] = {.lex_state = 102, .external_lex_state = 9}, - [8940] = {.lex_state = 102, .external_lex_state = 3}, - [8941] = {.lex_state = 102, .external_lex_state = 9}, - [8942] = {.lex_state = 102, .external_lex_state = 3}, - [8943] = {.lex_state = 102, .external_lex_state = 3}, - [8944] = {.lex_state = 102, .external_lex_state = 3}, - [8945] = {.lex_state = 102, .external_lex_state = 3}, - [8946] = {.lex_state = 102, .external_lex_state = 3}, - [8947] = {.lex_state = 102, .external_lex_state = 3}, - [8948] = {.lex_state = 102, .external_lex_state = 9}, - [8949] = {.lex_state = 102, .external_lex_state = 3}, - [8950] = {.lex_state = 102, .external_lex_state = 3}, - [8951] = {.lex_state = 12, .external_lex_state = 3}, - [8952] = {.lex_state = 102, .external_lex_state = 3}, - [8953] = {.lex_state = 102, .external_lex_state = 9}, - [8954] = {.lex_state = 102, .external_lex_state = 2}, - [8955] = {.lex_state = 102, .external_lex_state = 9}, - [8956] = {.lex_state = 102, .external_lex_state = 3}, - [8957] = {.lex_state = 102, .external_lex_state = 3}, - [8958] = {.lex_state = 102, .external_lex_state = 3}, - [8959] = {.lex_state = 12, .external_lex_state = 3}, - [8960] = {.lex_state = 102, .external_lex_state = 3}, - [8961] = {.lex_state = 102, .external_lex_state = 3}, - [8962] = {.lex_state = 102, .external_lex_state = 9}, - [8963] = {.lex_state = 102, .external_lex_state = 3}, - [8964] = {.lex_state = 102, .external_lex_state = 3}, - [8965] = {.lex_state = 103, .external_lex_state = 3}, - [8966] = {.lex_state = 12, .external_lex_state = 3}, - [8967] = {.lex_state = 102, .external_lex_state = 9}, - [8968] = {.lex_state = 102, .external_lex_state = 3}, - [8969] = {.lex_state = 102, .external_lex_state = 9}, - [8970] = {.lex_state = 102, .external_lex_state = 3}, - [8971] = {.lex_state = 102, .external_lex_state = 3}, - [8972] = {.lex_state = 102, .external_lex_state = 3}, - [8973] = {.lex_state = 102, .external_lex_state = 3}, - [8974] = {.lex_state = 102, .external_lex_state = 3}, - [8975] = {.lex_state = 12, .external_lex_state = 3}, - [8976] = {.lex_state = 102, .external_lex_state = 9}, - [8977] = {.lex_state = 102, .external_lex_state = 3}, - [8978] = {.lex_state = 12, .external_lex_state = 3}, - [8979] = {.lex_state = 102, .external_lex_state = 3}, - [8980] = {.lex_state = 102, .external_lex_state = 3}, - [8981] = {.lex_state = 102, .external_lex_state = 9}, - [8982] = {.lex_state = 102, .external_lex_state = 3}, - [8983] = {.lex_state = 102, .external_lex_state = 9}, - [8984] = {.lex_state = 102, .external_lex_state = 3}, - [8985] = {.lex_state = 102, .external_lex_state = 3}, - [8986] = {.lex_state = 102, .external_lex_state = 3}, - [8987] = {.lex_state = 102, .external_lex_state = 3}, - [8988] = {.lex_state = 102, .external_lex_state = 3}, - [8989] = {.lex_state = 102, .external_lex_state = 3}, - [8990] = {.lex_state = 102, .external_lex_state = 9}, - [8991] = {.lex_state = 102, .external_lex_state = 3}, - [8992] = {.lex_state = 102, .external_lex_state = 3}, - [8993] = {.lex_state = 102, .external_lex_state = 3}, - [8994] = {.lex_state = 102, .external_lex_state = 3}, - [8995] = {.lex_state = 102, .external_lex_state = 9}, - [8996] = {.lex_state = 102, .external_lex_state = 3}, - [8997] = {.lex_state = 102, .external_lex_state = 9}, - [8998] = {.lex_state = 102, .external_lex_state = 3}, - [8999] = {.lex_state = 102, .external_lex_state = 3}, - [9000] = {.lex_state = 102, .external_lex_state = 3}, - [9001] = {.lex_state = 102, .external_lex_state = 3}, - [9002] = {.lex_state = 102, .external_lex_state = 3}, - [9003] = {.lex_state = 102, .external_lex_state = 9}, - [9004] = {.lex_state = 102, .external_lex_state = 3}, - [9005] = {.lex_state = 102, .external_lex_state = 9}, - [9006] = {.lex_state = 102, .external_lex_state = 3}, - [9007] = {.lex_state = 102, .external_lex_state = 3}, - [9008] = {.lex_state = 102, .external_lex_state = 9}, - [9009] = {.lex_state = 102, .external_lex_state = 3}, - [9010] = {.lex_state = 102, .external_lex_state = 9}, - [9011] = {.lex_state = 102, .external_lex_state = 3}, - [9012] = {.lex_state = 102, .external_lex_state = 3}, - [9013] = {.lex_state = 102, .external_lex_state = 9}, - [9014] = {.lex_state = 102, .external_lex_state = 3}, - [9015] = {.lex_state = 102, .external_lex_state = 9}, - [9016] = {.lex_state = 102, .external_lex_state = 3}, - [9017] = {.lex_state = 102, .external_lex_state = 3}, - [9018] = {.lex_state = 102, .external_lex_state = 9}, - [9019] = {.lex_state = 102, .external_lex_state = 3}, - [9020] = {.lex_state = 102, .external_lex_state = 9}, - [9021] = {.lex_state = 12, .external_lex_state = 3}, - [9022] = {.lex_state = 12, .external_lex_state = 3}, - [9023] = {.lex_state = 102, .external_lex_state = 9}, - [9024] = {.lex_state = 12, .external_lex_state = 3}, - [9025] = {.lex_state = 102, .external_lex_state = 9}, - [9026] = {.lex_state = 102, .external_lex_state = 3}, - [9027] = {.lex_state = 12, .external_lex_state = 3}, - [9028] = {.lex_state = 102, .external_lex_state = 9}, - [9029] = {.lex_state = 102, .external_lex_state = 3}, - [9030] = {.lex_state = 102, .external_lex_state = 9}, - [9031] = {.lex_state = 102, .external_lex_state = 2}, - [9032] = {.lex_state = 102, .external_lex_state = 3}, - [9033] = {.lex_state = 102, .external_lex_state = 3}, - [9034] = {.lex_state = 12, .external_lex_state = 3}, - [9035] = {.lex_state = 12, .external_lex_state = 3}, - [9036] = {.lex_state = 12, .external_lex_state = 3}, - [9037] = {.lex_state = 102, .external_lex_state = 3}, - [9038] = {.lex_state = 102, .external_lex_state = 3}, - [9039] = {.lex_state = 12, .external_lex_state = 3}, - [9040] = {.lex_state = 12, .external_lex_state = 3}, - [9041] = {.lex_state = 102, .external_lex_state = 3}, - [9042] = {.lex_state = 102, .external_lex_state = 3}, - [9043] = {.lex_state = 102, .external_lex_state = 2}, - [9044] = {.lex_state = 12, .external_lex_state = 3}, - [9045] = {.lex_state = 102, .external_lex_state = 3}, - [9046] = {.lex_state = 102, .external_lex_state = 3}, - [9047] = {.lex_state = 102, .external_lex_state = 3}, - [9048] = {.lex_state = 102, .external_lex_state = 3}, - [9049] = {.lex_state = 12, .external_lex_state = 3}, - [9050] = {.lex_state = 102, .external_lex_state = 3}, - [9051] = {.lex_state = 102, .external_lex_state = 3}, - [9052] = {.lex_state = 102, .external_lex_state = 3}, - [9053] = {.lex_state = 102, .external_lex_state = 8}, - [9054] = {.lex_state = 12, .external_lex_state = 3}, - [9055] = {.lex_state = 12, .external_lex_state = 3}, - [9056] = {.lex_state = 102, .external_lex_state = 8}, - [9057] = {.lex_state = 12, .external_lex_state = 3}, - [9058] = {.lex_state = 102, .external_lex_state = 3}, - [9059] = {.lex_state = 12, .external_lex_state = 3}, - [9060] = {.lex_state = 12, .external_lex_state = 3}, - [9061] = {.lex_state = 12, .external_lex_state = 3}, - [9062] = {.lex_state = 102, .external_lex_state = 3}, - [9063] = {.lex_state = 12, .external_lex_state = 3}, - [9064] = {.lex_state = 102, .external_lex_state = 3}, - [9065] = {.lex_state = 102, .external_lex_state = 3}, - [9066] = {.lex_state = 102, .external_lex_state = 3}, - [9067] = {.lex_state = 102, .external_lex_state = 3}, - [9068] = {.lex_state = 102, .external_lex_state = 3}, - [9069] = {.lex_state = 12, .external_lex_state = 3}, - [9070] = {.lex_state = 12, .external_lex_state = 3}, - [9071] = {.lex_state = 102, .external_lex_state = 3}, - [9072] = {.lex_state = 12, .external_lex_state = 3}, - [9073] = {.lex_state = 12, .external_lex_state = 3}, - [9074] = {.lex_state = 102, .external_lex_state = 3}, - [9075] = {.lex_state = 102, .external_lex_state = 3}, - [9076] = {.lex_state = 102, .external_lex_state = 3}, - [9077] = {.lex_state = 12, .external_lex_state = 3}, - [9078] = {.lex_state = 102, .external_lex_state = 8}, - [9079] = {.lex_state = 12, .external_lex_state = 3}, - [9080] = {.lex_state = 12, .external_lex_state = 3}, - [9081] = {.lex_state = 102, .external_lex_state = 3}, - [9082] = {.lex_state = 102, .external_lex_state = 3}, - [9083] = {.lex_state = 102, .external_lex_state = 3}, - [9084] = {.lex_state = 12, .external_lex_state = 3}, - [9085] = {.lex_state = 102, .external_lex_state = 3}, - [9086] = {.lex_state = 102, .external_lex_state = 3}, - [9087] = {.lex_state = 102, .external_lex_state = 3}, - [9088] = {.lex_state = 102, .external_lex_state = 3}, - [9089] = {.lex_state = 102, .external_lex_state = 3}, - [9090] = {.lex_state = 103, .external_lex_state = 3}, - [9091] = {.lex_state = 102, .external_lex_state = 3}, - [9092] = {.lex_state = 107, .external_lex_state = 3}, - [9093] = {.lex_state = 102, .external_lex_state = 3}, - [9094] = {.lex_state = 102, .external_lex_state = 3}, - [9095] = {.lex_state = 12, .external_lex_state = 3}, - [9096] = {.lex_state = 102, .external_lex_state = 3}, - [9097] = {.lex_state = 102, .external_lex_state = 3}, - [9098] = {.lex_state = 102, .external_lex_state = 3}, - [9099] = {.lex_state = 102, .external_lex_state = 3}, - [9100] = {.lex_state = 12, .external_lex_state = 3}, - [9101] = {.lex_state = 102, .external_lex_state = 3}, - [9102] = {.lex_state = 103, .external_lex_state = 3}, - [9103] = {.lex_state = 102, .external_lex_state = 3}, - [9104] = {.lex_state = 102, .external_lex_state = 9}, - [9105] = {.lex_state = 102, .external_lex_state = 2}, - [9106] = {.lex_state = 12, .external_lex_state = 3}, - [9107] = {.lex_state = 107, .external_lex_state = 3}, - [9108] = {.lex_state = 107, .external_lex_state = 3}, - [9109] = {.lex_state = 107, .external_lex_state = 3}, - [9110] = {.lex_state = 12, .external_lex_state = 3}, - [9111] = {.lex_state = 12, .external_lex_state = 3}, - [9112] = {.lex_state = 12, .external_lex_state = 3}, - [9113] = {.lex_state = 102, .external_lex_state = 3}, - [9114] = {.lex_state = 102, .external_lex_state = 3}, - [9115] = {.lex_state = 102, .external_lex_state = 3}, - [9116] = {.lex_state = 102, .external_lex_state = 3}, - [9117] = {.lex_state = 102, .external_lex_state = 3}, - [9118] = {.lex_state = 102, .external_lex_state = 3}, - [9119] = {.lex_state = 103, .external_lex_state = 3}, - [9120] = {.lex_state = 102, .external_lex_state = 3}, - [9121] = {.lex_state = 12, .external_lex_state = 3}, - [9122] = {.lex_state = 102, .external_lex_state = 3}, - [9123] = {.lex_state = 102, .external_lex_state = 3}, - [9124] = {.lex_state = 102, .external_lex_state = 3}, - [9125] = {.lex_state = 102, .external_lex_state = 9}, - [9126] = {.lex_state = 102, .external_lex_state = 3}, - [9127] = {.lex_state = 102, .external_lex_state = 3}, - [9128] = {.lex_state = 102, .external_lex_state = 3}, - [9129] = {.lex_state = 102, .external_lex_state = 3}, - [9130] = {.lex_state = 103, .external_lex_state = 3}, - [9131] = {.lex_state = 12, .external_lex_state = 3}, - [9132] = {.lex_state = 102, .external_lex_state = 3}, - [9133] = {.lex_state = 102, .external_lex_state = 3}, - [9134] = {.lex_state = 102, .external_lex_state = 3}, - [9135] = {.lex_state = 102, .external_lex_state = 2}, - [9136] = {.lex_state = 102, .external_lex_state = 3}, - [9137] = {.lex_state = 102, .external_lex_state = 3}, - [9138] = {.lex_state = 12, .external_lex_state = 3}, - [9139] = {.lex_state = 102, .external_lex_state = 3}, - [9140] = {.lex_state = 102, .external_lex_state = 3}, - [9141] = {.lex_state = 102, .external_lex_state = 3}, - [9142] = {.lex_state = 102, .external_lex_state = 3}, - [9143] = {.lex_state = 102, .external_lex_state = 3}, - [9144] = {.lex_state = 103, .external_lex_state = 3}, - [9145] = {.lex_state = 102, .external_lex_state = 3}, - [9146] = {.lex_state = 102, .external_lex_state = 3}, - [9147] = {.lex_state = 102, .external_lex_state = 3}, - [9148] = {.lex_state = 102, .external_lex_state = 3}, - [9149] = {.lex_state = 102, .external_lex_state = 3}, - [9150] = {.lex_state = 102, .external_lex_state = 3}, - [9151] = {.lex_state = 102, .external_lex_state = 3}, - [9152] = {.lex_state = 12, .external_lex_state = 3}, - [9153] = {.lex_state = 102, .external_lex_state = 3}, - [9154] = {.lex_state = 102, .external_lex_state = 3}, - [9155] = {.lex_state = 102, .external_lex_state = 9}, - [9156] = {.lex_state = 102, .external_lex_state = 3}, - [9157] = {.lex_state = 102, .external_lex_state = 3}, - [9158] = {.lex_state = 102, .external_lex_state = 3}, - [9159] = {.lex_state = 102, .external_lex_state = 3}, - [9160] = {.lex_state = 102, .external_lex_state = 3}, - [9161] = {.lex_state = 102, .external_lex_state = 3}, - [9162] = {.lex_state = 102, .external_lex_state = 3}, - [9163] = {.lex_state = 102, .external_lex_state = 3}, - [9164] = {.lex_state = 12, .external_lex_state = 3}, - [9165] = {.lex_state = 102, .external_lex_state = 3}, - [9166] = {.lex_state = 102, .external_lex_state = 3}, - [9167] = {.lex_state = 102, .external_lex_state = 3}, - [9168] = {.lex_state = 102, .external_lex_state = 3}, - [9169] = {.lex_state = 102, .external_lex_state = 3}, - [9170] = {.lex_state = 12, .external_lex_state = 3}, - [9171] = {.lex_state = 102, .external_lex_state = 3}, - [9172] = {.lex_state = 12, .external_lex_state = 3}, - [9173] = {.lex_state = 12, .external_lex_state = 3}, - [9174] = {.lex_state = 102, .external_lex_state = 3}, - [9175] = {.lex_state = 102, .external_lex_state = 3}, - [9176] = {.lex_state = 12, .external_lex_state = 3}, - [9177] = {.lex_state = 102, .external_lex_state = 3}, - [9178] = {.lex_state = 102, .external_lex_state = 3}, - [9179] = {.lex_state = 102, .external_lex_state = 3}, - [9180] = {.lex_state = 102, .external_lex_state = 3}, - [9181] = {.lex_state = 102, .external_lex_state = 3}, - [9182] = {.lex_state = 102, .external_lex_state = 3}, - [9183] = {.lex_state = 102, .external_lex_state = 3}, - [9184] = {.lex_state = 102, .external_lex_state = 3}, - [9185] = {.lex_state = 12, .external_lex_state = 3}, - [9186] = {.lex_state = 102, .external_lex_state = 3}, - [9187] = {.lex_state = 102, .external_lex_state = 3}, - [9188] = {.lex_state = 102, .external_lex_state = 3}, - [9189] = {.lex_state = 102, .external_lex_state = 9}, - [9190] = {.lex_state = 102, .external_lex_state = 3}, - [9191] = {.lex_state = 102, .external_lex_state = 3}, - [9192] = {.lex_state = 102, .external_lex_state = 3}, - [9193] = {.lex_state = 12, .external_lex_state = 3}, - [9194] = {.lex_state = 102, .external_lex_state = 3}, - [9195] = {.lex_state = 102, .external_lex_state = 3}, - [9196] = {.lex_state = 102, .external_lex_state = 3}, - [9197] = {.lex_state = 102, .external_lex_state = 3}, - [9198] = {.lex_state = 102, .external_lex_state = 3}, - [9199] = {.lex_state = 102, .external_lex_state = 3}, - [9200] = {.lex_state = 102, .external_lex_state = 3}, - [9201] = {.lex_state = 102, .external_lex_state = 3}, - [9202] = {.lex_state = 12, .external_lex_state = 3}, - [9203] = {.lex_state = 12, .external_lex_state = 3}, - [9204] = {.lex_state = 102, .external_lex_state = 3}, - [9205] = {.lex_state = 102, .external_lex_state = 3}, - [9206] = {.lex_state = 102, .external_lex_state = 3}, - [9207] = {.lex_state = 102, .external_lex_state = 3}, - [9208] = {.lex_state = 102, .external_lex_state = 3}, - [9209] = {.lex_state = 102, .external_lex_state = 3}, - [9210] = {.lex_state = 12, .external_lex_state = 3}, - [9211] = {.lex_state = 102, .external_lex_state = 3}, - [9212] = {.lex_state = 102, .external_lex_state = 3}, - [9213] = {.lex_state = 102, .external_lex_state = 3}, - [9214] = {.lex_state = 102, .external_lex_state = 3}, - [9215] = {.lex_state = 102, .external_lex_state = 3}, - [9216] = {.lex_state = 102, .external_lex_state = 3}, - [9217] = {.lex_state = 102, .external_lex_state = 3}, - [9218] = {.lex_state = 102, .external_lex_state = 3}, - [9219] = {.lex_state = 102, .external_lex_state = 3}, - [9220] = {.lex_state = 102, .external_lex_state = 3}, - [9221] = {.lex_state = 12, .external_lex_state = 3}, - [9222] = {.lex_state = 102, .external_lex_state = 3}, - [9223] = {.lex_state = 102, .external_lex_state = 3}, - [9224] = {.lex_state = 102, .external_lex_state = 3}, - [9225] = {.lex_state = 12, .external_lex_state = 3}, - [9226] = {.lex_state = 102, .external_lex_state = 3}, - [9227] = {.lex_state = 102, .external_lex_state = 3}, - [9228] = {.lex_state = 102, .external_lex_state = 9}, - [9229] = {.lex_state = 102, .external_lex_state = 3}, - [9230] = {.lex_state = 102, .external_lex_state = 3}, - [9231] = {.lex_state = 102, .external_lex_state = 3}, - [9232] = {.lex_state = 12, .external_lex_state = 3}, - [9233] = {.lex_state = 12, .external_lex_state = 3}, - [9234] = {.lex_state = 12, .external_lex_state = 3}, - [9235] = {.lex_state = 102, .external_lex_state = 3}, - [9236] = {.lex_state = 104, .external_lex_state = 3}, - [9237] = {.lex_state = 102, .external_lex_state = 3}, - [9238] = {.lex_state = 102, .external_lex_state = 3}, - [9239] = {.lex_state = 102, .external_lex_state = 3}, - [9240] = {.lex_state = 102, .external_lex_state = 3}, - [9241] = {.lex_state = 102, .external_lex_state = 3}, - [9242] = {.lex_state = 102, .external_lex_state = 3}, - [9243] = {.lex_state = 102, .external_lex_state = 3}, - [9244] = {.lex_state = 12, .external_lex_state = 3}, - [9245] = {.lex_state = 12, .external_lex_state = 3}, - [9246] = {.lex_state = 102, .external_lex_state = 3}, - [9247] = {.lex_state = 12, .external_lex_state = 3}, - [9248] = {.lex_state = 12, .external_lex_state = 3}, - [9249] = {.lex_state = 102, .external_lex_state = 3}, - [9250] = {.lex_state = 102, .external_lex_state = 3}, - [9251] = {.lex_state = 102, .external_lex_state = 3}, - [9252] = {.lex_state = 102, .external_lex_state = 3}, - [9253] = {.lex_state = 102, .external_lex_state = 3}, - [9254] = {.lex_state = 102, .external_lex_state = 2}, - [9255] = {.lex_state = 12, .external_lex_state = 3}, - [9256] = {.lex_state = 102, .external_lex_state = 3}, - [9257] = {.lex_state = 102, .external_lex_state = 3}, - [9258] = {.lex_state = 102, .external_lex_state = 3}, - [9259] = {.lex_state = 12, .external_lex_state = 3}, - [9260] = {.lex_state = 12, .external_lex_state = 3}, - [9261] = {.lex_state = 12, .external_lex_state = 3}, - [9262] = {.lex_state = 102, .external_lex_state = 3}, - [9263] = {.lex_state = 102, .external_lex_state = 9}, - [9264] = {.lex_state = 102, .external_lex_state = 3}, - [9265] = {.lex_state = 12, .external_lex_state = 3}, - [9266] = {.lex_state = 102, .external_lex_state = 3}, - [9267] = {.lex_state = 102, .external_lex_state = 3}, - [9268] = {.lex_state = 102, .external_lex_state = 3}, - [9269] = {.lex_state = 102, .external_lex_state = 3}, - [9270] = {.lex_state = 102, .external_lex_state = 3}, - [9271] = {.lex_state = 102, .external_lex_state = 3}, - [9272] = {.lex_state = 102, .external_lex_state = 3}, - [9273] = {.lex_state = 12, .external_lex_state = 3}, - [9274] = {.lex_state = 102, .external_lex_state = 3}, - [9275] = {.lex_state = 102, .external_lex_state = 3}, - [9276] = {.lex_state = 102, .external_lex_state = 3}, - [9277] = {.lex_state = 102, .external_lex_state = 3}, - [9278] = {.lex_state = 102, .external_lex_state = 3}, - [9279] = {.lex_state = 102, .external_lex_state = 3}, - [9280] = {.lex_state = 102, .external_lex_state = 8}, - [9281] = {.lex_state = 102, .external_lex_state = 3}, - [9282] = {.lex_state = 102, .external_lex_state = 3}, - [9283] = {.lex_state = 102, .external_lex_state = 3}, - [9284] = {.lex_state = 102, .external_lex_state = 3}, - [9285] = {.lex_state = 102, .external_lex_state = 3}, - [9286] = {.lex_state = 12, .external_lex_state = 3}, - [9287] = {.lex_state = 102, .external_lex_state = 3}, - [9288] = {.lex_state = 102, .external_lex_state = 3}, - [9289] = {.lex_state = 12, .external_lex_state = 3}, - [9290] = {.lex_state = 12, .external_lex_state = 3}, - [9291] = {.lex_state = 102, .external_lex_state = 3}, - [9292] = {.lex_state = 102, .external_lex_state = 8}, - [9293] = {.lex_state = 102, .external_lex_state = 3}, - [9294] = {.lex_state = 102, .external_lex_state = 3}, - [9295] = {.lex_state = 102, .external_lex_state = 3}, - [9296] = {.lex_state = 102, .external_lex_state = 3}, - [9297] = {.lex_state = 102, .external_lex_state = 3}, - [9298] = {.lex_state = 102, .external_lex_state = 3}, - [9299] = {.lex_state = 102, .external_lex_state = 2}, - [9300] = {.lex_state = 102, .external_lex_state = 3}, - [9301] = {.lex_state = 102, .external_lex_state = 3}, - [9302] = {.lex_state = 102, .external_lex_state = 8}, - [9303] = {.lex_state = 12, .external_lex_state = 3}, - [9304] = {.lex_state = 102, .external_lex_state = 3}, - [9305] = {.lex_state = 102, .external_lex_state = 3}, - [9306] = {.lex_state = 12, .external_lex_state = 3}, - [9307] = {.lex_state = 103, .external_lex_state = 3}, - [9308] = {.lex_state = 102, .external_lex_state = 3}, - [9309] = {.lex_state = 102, .external_lex_state = 3}, - [9310] = {.lex_state = 107, .external_lex_state = 3}, - [9311] = {.lex_state = 107, .external_lex_state = 3}, - [9312] = {.lex_state = 107, .external_lex_state = 3}, - [9313] = {.lex_state = 102, .external_lex_state = 3}, - [9314] = {.lex_state = 102, .external_lex_state = 3}, - [9315] = {.lex_state = 102, .external_lex_state = 3}, - [9316] = {.lex_state = 12, .external_lex_state = 3}, - [9317] = {.lex_state = 102, .external_lex_state = 3}, - [9318] = {.lex_state = 102, .external_lex_state = 3}, - [9319] = {.lex_state = 102, .external_lex_state = 3}, - [9320] = {.lex_state = 102, .external_lex_state = 3}, - [9321] = {.lex_state = 12, .external_lex_state = 3}, - [9322] = {.lex_state = 102, .external_lex_state = 3}, - [9323] = {.lex_state = 102, .external_lex_state = 3}, - [9324] = {.lex_state = 102, .external_lex_state = 3}, - [9325] = {.lex_state = 12, .external_lex_state = 3}, - [9326] = {.lex_state = 102, .external_lex_state = 3}, - [9327] = {.lex_state = 102, .external_lex_state = 3}, - [9328] = {.lex_state = 102, .external_lex_state = 3}, - [9329] = {.lex_state = 102, .external_lex_state = 3}, - [9330] = {.lex_state = 12, .external_lex_state = 3}, - [9331] = {.lex_state = 102, .external_lex_state = 3}, - [9332] = {.lex_state = 102, .external_lex_state = 3}, - [9333] = {.lex_state = 102, .external_lex_state = 3}, - [9334] = {.lex_state = 102, .external_lex_state = 3}, - [9335] = {.lex_state = 12, .external_lex_state = 3}, - [9336] = {.lex_state = 102, .external_lex_state = 3}, - [9337] = {.lex_state = 102, .external_lex_state = 3}, - [9338] = {.lex_state = 102, .external_lex_state = 3}, - [9339] = {.lex_state = 102, .external_lex_state = 8}, - [9340] = {.lex_state = 102, .external_lex_state = 3}, - [9341] = {.lex_state = 102, .external_lex_state = 3}, - [9342] = {.lex_state = 102, .external_lex_state = 3}, - [9343] = {.lex_state = 103, .external_lex_state = 3}, - [9344] = {.lex_state = 102, .external_lex_state = 3}, - [9345] = {.lex_state = 12, .external_lex_state = 3}, - [9346] = {.lex_state = 102, .external_lex_state = 3}, - [9347] = {.lex_state = 102, .external_lex_state = 3}, - [9348] = {.lex_state = 102, .external_lex_state = 3}, - [9349] = {.lex_state = 102, .external_lex_state = 8}, - [9350] = {.lex_state = 12, .external_lex_state = 3}, - [9351] = {.lex_state = 102, .external_lex_state = 3}, - [9352] = {.lex_state = 102, .external_lex_state = 2}, - [9353] = {.lex_state = 103, .external_lex_state = 3}, - [9354] = {.lex_state = 102, .external_lex_state = 3}, - [9355] = {.lex_state = 107, .external_lex_state = 3}, - [9356] = {.lex_state = 107, .external_lex_state = 3}, - [9357] = {.lex_state = 107, .external_lex_state = 3}, - [9358] = {.lex_state = 107, .external_lex_state = 3}, - [9359] = {.lex_state = 102, .external_lex_state = 3}, - [9360] = {.lex_state = 102, .external_lex_state = 3}, - [9361] = {.lex_state = 102, .external_lex_state = 3}, - [9362] = {.lex_state = 102, .external_lex_state = 3}, - [9363] = {.lex_state = 102, .external_lex_state = 3}, - [9364] = {.lex_state = 12, .external_lex_state = 3}, - [9365] = {.lex_state = 102, .external_lex_state = 3}, - [9366] = {.lex_state = 102, .external_lex_state = 3}, - [9367] = {.lex_state = 102, .external_lex_state = 3}, - [9368] = {.lex_state = 102, .external_lex_state = 8}, - [9369] = {.lex_state = 102, .external_lex_state = 3}, - [9370] = {.lex_state = 102, .external_lex_state = 3}, - [9371] = {.lex_state = 102, .external_lex_state = 3}, - [9372] = {.lex_state = 102, .external_lex_state = 3}, - [9373] = {.lex_state = 102, .external_lex_state = 3}, - [9374] = {.lex_state = 102, .external_lex_state = 8}, - [9375] = {.lex_state = 12, .external_lex_state = 3}, - [9376] = {.lex_state = 102, .external_lex_state = 3}, - [9377] = {.lex_state = 102, .external_lex_state = 3}, - [9378] = {.lex_state = 103, .external_lex_state = 3}, - [9379] = {.lex_state = 102, .external_lex_state = 3}, - [9380] = {.lex_state = 107, .external_lex_state = 3}, - [9381] = {.lex_state = 107, .external_lex_state = 3}, - [9382] = {.lex_state = 107, .external_lex_state = 3}, - [9383] = {.lex_state = 102, .external_lex_state = 3}, - [9384] = {.lex_state = 102, .external_lex_state = 2}, - [9385] = {.lex_state = 102, .external_lex_state = 3}, - [9386] = {.lex_state = 102, .external_lex_state = 3}, - [9387] = {.lex_state = 12, .external_lex_state = 3}, - [9388] = {.lex_state = 102, .external_lex_state = 2}, - [9389] = {.lex_state = 102, .external_lex_state = 3}, - [9390] = {.lex_state = 102, .external_lex_state = 3}, - [9391] = {.lex_state = 102, .external_lex_state = 3}, - [9392] = {.lex_state = 102, .external_lex_state = 3}, - [9393] = {.lex_state = 102, .external_lex_state = 8}, - [9394] = {.lex_state = 12, .external_lex_state = 3}, - [9395] = {.lex_state = 102, .external_lex_state = 3}, - [9396] = {.lex_state = 103, .external_lex_state = 3}, - [9397] = {.lex_state = 107, .external_lex_state = 3}, - [9398] = {.lex_state = 107, .external_lex_state = 3}, - [9399] = {.lex_state = 107, .external_lex_state = 3}, - [9400] = {.lex_state = 102, .external_lex_state = 3}, - [9401] = {.lex_state = 102, .external_lex_state = 3}, - [9402] = {.lex_state = 102, .external_lex_state = 3}, - [9403] = {.lex_state = 102, .external_lex_state = 3}, - [9404] = {.lex_state = 102, .external_lex_state = 3}, - [9405] = {.lex_state = 102, .external_lex_state = 3}, - [9406] = {.lex_state = 12, .external_lex_state = 3}, - [9407] = {.lex_state = 102, .external_lex_state = 3}, - [9408] = {.lex_state = 102, .external_lex_state = 2}, - [9409] = {.lex_state = 102, .external_lex_state = 3}, - [9410] = {.lex_state = 102, .external_lex_state = 8}, - [9411] = {.lex_state = 12, .external_lex_state = 3}, - [9412] = {.lex_state = 102, .external_lex_state = 3}, - [9413] = {.lex_state = 107, .external_lex_state = 3}, - [9414] = {.lex_state = 107, .external_lex_state = 3}, - [9415] = {.lex_state = 107, .external_lex_state = 3}, - [9416] = {.lex_state = 102, .external_lex_state = 3}, - [9417] = {.lex_state = 102, .external_lex_state = 3}, - [9418] = {.lex_state = 102, .external_lex_state = 3}, - [9419] = {.lex_state = 107, .external_lex_state = 3}, - [9420] = {.lex_state = 102, .external_lex_state = 3}, - [9421] = {.lex_state = 102, .external_lex_state = 3}, - [9422] = {.lex_state = 102, .external_lex_state = 3}, - [9423] = {.lex_state = 102, .external_lex_state = 3}, - [9424] = {.lex_state = 102, .external_lex_state = 3}, - [9425] = {.lex_state = 102, .external_lex_state = 3}, - [9426] = {.lex_state = 102, .external_lex_state = 8}, - [9427] = {.lex_state = 12, .external_lex_state = 3}, - [9428] = {.lex_state = 102, .external_lex_state = 3}, - [9429] = {.lex_state = 107, .external_lex_state = 3}, - [9430] = {.lex_state = 107, .external_lex_state = 3}, - [9431] = {.lex_state = 107, .external_lex_state = 3}, - [9432] = {.lex_state = 102, .external_lex_state = 3}, - [9433] = {.lex_state = 102, .external_lex_state = 3}, - [9434] = {.lex_state = 102, .external_lex_state = 3}, - [9435] = {.lex_state = 102, .external_lex_state = 3}, - [9436] = {.lex_state = 104, .external_lex_state = 3}, - [9437] = {.lex_state = 102, .external_lex_state = 2}, - [9438] = {.lex_state = 102, .external_lex_state = 3}, - [9439] = {.lex_state = 102, .external_lex_state = 3}, - [9440] = {.lex_state = 102, .external_lex_state = 3}, - [9441] = {.lex_state = 102, .external_lex_state = 3}, - [9442] = {.lex_state = 102, .external_lex_state = 8}, - [9443] = {.lex_state = 12, .external_lex_state = 3}, - [9444] = {.lex_state = 102, .external_lex_state = 3}, - [9445] = {.lex_state = 107, .external_lex_state = 3}, - [9446] = {.lex_state = 107, .external_lex_state = 3}, - [9447] = {.lex_state = 107, .external_lex_state = 3}, - [9448] = {.lex_state = 12, .external_lex_state = 3}, - [9449] = {.lex_state = 102, .external_lex_state = 3}, - [9450] = {.lex_state = 102, .external_lex_state = 3}, - [9451] = {.lex_state = 102, .external_lex_state = 3}, - [9452] = {.lex_state = 102, .external_lex_state = 3}, - [9453] = {.lex_state = 102, .external_lex_state = 3}, - [9454] = {.lex_state = 102, .external_lex_state = 3}, - [9455] = {.lex_state = 102, .external_lex_state = 3}, - [9456] = {.lex_state = 102, .external_lex_state = 3}, - [9457] = {.lex_state = 12, .external_lex_state = 3}, - [9458] = {.lex_state = 102, .external_lex_state = 8}, - [9459] = {.lex_state = 102, .external_lex_state = 3}, - [9460] = {.lex_state = 107, .external_lex_state = 3}, - [9461] = {.lex_state = 107, .external_lex_state = 3}, - [9462] = {.lex_state = 107, .external_lex_state = 3}, - [9463] = {.lex_state = 12, .external_lex_state = 3}, - [9464] = {.lex_state = 102, .external_lex_state = 3}, - [9465] = {.lex_state = 12, .external_lex_state = 3}, - [9466] = {.lex_state = 102, .external_lex_state = 3}, - [9467] = {.lex_state = 12, .external_lex_state = 3}, - [9468] = {.lex_state = 12, .external_lex_state = 3}, - [9469] = {.lex_state = 102, .external_lex_state = 3}, - [9470] = {.lex_state = 102, .external_lex_state = 2}, - [9471] = {.lex_state = 102, .external_lex_state = 3}, - [9472] = {.lex_state = 102, .external_lex_state = 3}, - [9473] = {.lex_state = 102, .external_lex_state = 8}, - [9474] = {.lex_state = 102, .external_lex_state = 3}, - [9475] = {.lex_state = 107, .external_lex_state = 3}, - [9476] = {.lex_state = 107, .external_lex_state = 3}, - [9477] = {.lex_state = 107, .external_lex_state = 3}, - [9478] = {.lex_state = 102, .external_lex_state = 3}, - [9479] = {.lex_state = 102, .external_lex_state = 3}, - [9480] = {.lex_state = 102, .external_lex_state = 3}, - [9481] = {.lex_state = 102, .external_lex_state = 3}, - [9482] = {.lex_state = 102, .external_lex_state = 3}, - [9483] = {.lex_state = 102, .external_lex_state = 3}, - [9484] = {.lex_state = 102, .external_lex_state = 3}, - [9485] = {.lex_state = 102, .external_lex_state = 3}, - [9486] = {.lex_state = 12, .external_lex_state = 3}, - [9487] = {.lex_state = 102, .external_lex_state = 3}, - [9488] = {.lex_state = 102, .external_lex_state = 8}, - [9489] = {.lex_state = 102, .external_lex_state = 3}, - [9490] = {.lex_state = 107, .external_lex_state = 3}, - [9491] = {.lex_state = 107, .external_lex_state = 3}, - [9492] = {.lex_state = 107, .external_lex_state = 3}, - [9493] = {.lex_state = 72, .external_lex_state = 3}, - [9494] = {.lex_state = 102, .external_lex_state = 3}, - [9495] = {.lex_state = 102, .external_lex_state = 3}, - [9496] = {.lex_state = 102, .external_lex_state = 3}, - [9497] = {.lex_state = 12, .external_lex_state = 3}, - [9498] = {.lex_state = 12, .external_lex_state = 3}, - [9499] = {.lex_state = 12, .external_lex_state = 3}, - [9500] = {.lex_state = 102, .external_lex_state = 3}, - [9501] = {.lex_state = 102, .external_lex_state = 3}, - [9502] = {.lex_state = 102, .external_lex_state = 3}, - [9503] = {.lex_state = 102, .external_lex_state = 8}, - [9504] = {.lex_state = 102, .external_lex_state = 3}, - [9505] = {.lex_state = 107, .external_lex_state = 3}, - [9506] = {.lex_state = 107, .external_lex_state = 3}, - [9507] = {.lex_state = 107, .external_lex_state = 3}, - [9508] = {.lex_state = 102, .external_lex_state = 2}, - [9509] = {.lex_state = 12, .external_lex_state = 3}, - [9510] = {.lex_state = 102, .external_lex_state = 3}, - [9511] = {.lex_state = 102, .external_lex_state = 3}, - [9512] = {.lex_state = 102, .external_lex_state = 3}, - [9513] = {.lex_state = 102, .external_lex_state = 3}, - [9514] = {.lex_state = 102, .external_lex_state = 3}, - [9515] = {.lex_state = 102, .external_lex_state = 2}, - [9516] = {.lex_state = 102, .external_lex_state = 3}, - [9517] = {.lex_state = 102, .external_lex_state = 3}, - [9518] = {.lex_state = 102, .external_lex_state = 8}, - [9519] = {.lex_state = 102, .external_lex_state = 3}, - [9520] = {.lex_state = 107, .external_lex_state = 3}, - [9521] = {.lex_state = 107, .external_lex_state = 3}, - [9522] = {.lex_state = 107, .external_lex_state = 3}, - [9523] = {.lex_state = 102, .external_lex_state = 3}, - [9524] = {.lex_state = 102, .external_lex_state = 3}, - [9525] = {.lex_state = 102, .external_lex_state = 3}, - [9526] = {.lex_state = 102, .external_lex_state = 3}, - [9527] = {.lex_state = 102, .external_lex_state = 3}, - [9528] = {.lex_state = 102, .external_lex_state = 3}, - [9529] = {.lex_state = 102, .external_lex_state = 3}, - [9530] = {.lex_state = 102, .external_lex_state = 3}, - [9531] = {.lex_state = 102, .external_lex_state = 3}, - [9532] = {.lex_state = 102, .external_lex_state = 3}, - [9533] = {.lex_state = 102, .external_lex_state = 8}, - [9534] = {.lex_state = 102, .external_lex_state = 3}, - [9535] = {.lex_state = 107, .external_lex_state = 3}, - [9536] = {.lex_state = 107, .external_lex_state = 3}, - [9537] = {.lex_state = 107, .external_lex_state = 3}, - [9538] = {.lex_state = 102, .external_lex_state = 3}, - [9539] = {.lex_state = 102, .external_lex_state = 3}, - [9540] = {.lex_state = 102, .external_lex_state = 3}, - [9541] = {.lex_state = 102, .external_lex_state = 3}, - [9542] = {.lex_state = 102, .external_lex_state = 3}, - [9543] = {.lex_state = 102, .external_lex_state = 8}, - [9544] = {.lex_state = 102, .external_lex_state = 2}, - [9545] = {.lex_state = 107, .external_lex_state = 3}, - [9546] = {.lex_state = 107, .external_lex_state = 3}, - [9547] = {.lex_state = 107, .external_lex_state = 3}, - [9548] = {.lex_state = 102, .external_lex_state = 3}, - [9549] = {.lex_state = 102, .external_lex_state = 3}, - [9550] = {.lex_state = 102, .external_lex_state = 3}, - [9551] = {.lex_state = 102, .external_lex_state = 3}, - [9552] = {.lex_state = 12, .external_lex_state = 3}, - [9553] = {.lex_state = 102, .external_lex_state = 8}, - [9554] = {.lex_state = 102, .external_lex_state = 3}, - [9555] = {.lex_state = 107, .external_lex_state = 3}, - [9556] = {.lex_state = 107, .external_lex_state = 3}, - [9557] = {.lex_state = 107, .external_lex_state = 3}, - [9558] = {.lex_state = 12, .external_lex_state = 3}, - [9559] = {.lex_state = 102, .external_lex_state = 3}, - [9560] = {.lex_state = 102, .external_lex_state = 3}, - [9561] = {.lex_state = 102, .external_lex_state = 3}, - [9562] = {.lex_state = 102, .external_lex_state = 8}, - [9563] = {.lex_state = 107, .external_lex_state = 3}, - [9564] = {.lex_state = 107, .external_lex_state = 3}, - [9565] = {.lex_state = 107, .external_lex_state = 3}, - [9566] = {.lex_state = 102, .external_lex_state = 3}, - [9567] = {.lex_state = 102, .external_lex_state = 3}, - [9568] = {.lex_state = 102, .external_lex_state = 8}, - [9569] = {.lex_state = 107, .external_lex_state = 3}, - [9570] = {.lex_state = 107, .external_lex_state = 3}, - [9571] = {.lex_state = 107, .external_lex_state = 3}, - [9572] = {.lex_state = 102, .external_lex_state = 3}, - [9573] = {.lex_state = 102, .external_lex_state = 3}, - [9574] = {.lex_state = 102, .external_lex_state = 8}, - [9575] = {.lex_state = 107, .external_lex_state = 3}, - [9576] = {.lex_state = 107, .external_lex_state = 3}, - [9577] = {.lex_state = 107, .external_lex_state = 3}, - [9578] = {.lex_state = 102, .external_lex_state = 3}, - [9579] = {.lex_state = 102, .external_lex_state = 2}, - [9580] = {.lex_state = 102, .external_lex_state = 8}, - [9581] = {.lex_state = 107, .external_lex_state = 3}, - [9582] = {.lex_state = 107, .external_lex_state = 3}, - [9583] = {.lex_state = 107, .external_lex_state = 3}, - [9584] = {.lex_state = 102, .external_lex_state = 3}, - [9585] = {.lex_state = 102, .external_lex_state = 3}, - [9586] = {.lex_state = 102, .external_lex_state = 8}, - [9587] = {.lex_state = 107, .external_lex_state = 3}, - [9588] = {.lex_state = 107, .external_lex_state = 3}, - [9589] = {.lex_state = 107, .external_lex_state = 3}, - [9590] = {.lex_state = 102, .external_lex_state = 3}, - [9591] = {.lex_state = 102, .external_lex_state = 3}, - [9592] = {.lex_state = 102, .external_lex_state = 8}, - [9593] = {.lex_state = 107, .external_lex_state = 3}, - [9594] = {.lex_state = 107, .external_lex_state = 3}, - [9595] = {.lex_state = 107, .external_lex_state = 3}, - [9596] = {.lex_state = 102, .external_lex_state = 3}, - [9597] = {.lex_state = 102, .external_lex_state = 3}, - [9598] = {.lex_state = 102, .external_lex_state = 8}, - [9599] = {.lex_state = 107, .external_lex_state = 3}, - [9600] = {.lex_state = 107, .external_lex_state = 3}, - [9601] = {.lex_state = 107, .external_lex_state = 3}, - [9602] = {.lex_state = 102, .external_lex_state = 3}, - [9603] = {.lex_state = 102, .external_lex_state = 3}, - [9604] = {.lex_state = 102, .external_lex_state = 8}, - [9605] = {.lex_state = 107, .external_lex_state = 3}, - [9606] = {.lex_state = 107, .external_lex_state = 3}, - [9607] = {.lex_state = 107, .external_lex_state = 3}, - [9608] = {.lex_state = 102, .external_lex_state = 3}, - [9609] = {.lex_state = 102, .external_lex_state = 8}, - [9610] = {.lex_state = 102, .external_lex_state = 3}, - [9611] = {.lex_state = 102, .external_lex_state = 8}, - [9612] = {.lex_state = 102, .external_lex_state = 3}, - [9613] = {.lex_state = 102, .external_lex_state = 8}, - [9614] = {.lex_state = 102, .external_lex_state = 3}, - [9615] = {.lex_state = 102, .external_lex_state = 8}, - [9616] = {.lex_state = 102, .external_lex_state = 3}, - [9617] = {.lex_state = 102, .external_lex_state = 8}, - [9618] = {.lex_state = 102, .external_lex_state = 3}, - [9619] = {.lex_state = 102, .external_lex_state = 8}, - [9620] = {.lex_state = 102, .external_lex_state = 3}, - [9621] = {.lex_state = 102, .external_lex_state = 3}, - [9622] = {.lex_state = 102, .external_lex_state = 3}, - [9623] = {.lex_state = 72, .external_lex_state = 3}, - [9624] = {.lex_state = 12, .external_lex_state = 3}, - [9625] = {.lex_state = 12, .external_lex_state = 3}, - [9626] = {.lex_state = 104, .external_lex_state = 3}, - [9627] = {.lex_state = 102, .external_lex_state = 3}, - [9628] = {.lex_state = 12, .external_lex_state = 3}, - [9629] = {.lex_state = 102, .external_lex_state = 3}, - [9630] = {.lex_state = 104, .external_lex_state = 3}, - [9631] = {.lex_state = 102, .external_lex_state = 3}, - [9632] = {.lex_state = 102, .external_lex_state = 8}, - [9633] = {.lex_state = 102, .external_lex_state = 3}, - [9634] = {.lex_state = 102, .external_lex_state = 3}, - [9635] = {.lex_state = 12, .external_lex_state = 3}, - [9636] = {.lex_state = 12, .external_lex_state = 3}, - [9637] = {.lex_state = 102, .external_lex_state = 3}, - [9638] = {.lex_state = 102, .external_lex_state = 3}, - [9639] = {.lex_state = 102, .external_lex_state = 3}, - [9640] = {.lex_state = 102, .external_lex_state = 3}, - [9641] = {.lex_state = 102, .external_lex_state = 3}, - [9642] = {.lex_state = 12, .external_lex_state = 3}, - [9643] = {.lex_state = 102, .external_lex_state = 3}, - [9644] = {.lex_state = 12, .external_lex_state = 3}, - [9645] = {.lex_state = 102, .external_lex_state = 3}, - [9646] = {.lex_state = 102, .external_lex_state = 3}, - [9647] = {.lex_state = 102, .external_lex_state = 3}, - [9648] = {.lex_state = 102, .external_lex_state = 3}, - [9649] = {.lex_state = 102, .external_lex_state = 3}, - [9650] = {.lex_state = 102, .external_lex_state = 3}, - [9651] = {.lex_state = 102, .external_lex_state = 3}, - [9652] = {.lex_state = 72, .external_lex_state = 3}, - [9653] = {.lex_state = 102, .external_lex_state = 3}, - [9654] = {.lex_state = 12, .external_lex_state = 3}, - [9655] = {.lex_state = 102, .external_lex_state = 3}, - [9656] = {.lex_state = 102, .external_lex_state = 3}, - [9657] = {.lex_state = 102, .external_lex_state = 3}, - [9658] = {.lex_state = 102, .external_lex_state = 2}, - [9659] = {.lex_state = 72, .external_lex_state = 3}, - [9660] = {.lex_state = 102, .external_lex_state = 3}, - [9661] = {.lex_state = 102, .external_lex_state = 3}, - [9662] = {.lex_state = 102, .external_lex_state = 3}, - [9663] = {.lex_state = 72, .external_lex_state = 3}, - [9664] = {.lex_state = 102, .external_lex_state = 3}, - [9665] = {.lex_state = 72, .external_lex_state = 3}, - [9666] = {.lex_state = 102, .external_lex_state = 3}, - [9667] = {.lex_state = 72, .external_lex_state = 3}, - [9668] = {.lex_state = 102, .external_lex_state = 3}, - [9669] = {.lex_state = 72, .external_lex_state = 3}, - [9670] = {.lex_state = 102, .external_lex_state = 3}, - [9671] = {.lex_state = 72, .external_lex_state = 3}, - [9672] = {.lex_state = 102, .external_lex_state = 3}, - [9673] = {.lex_state = 72, .external_lex_state = 3}, - [9674] = {.lex_state = 102, .external_lex_state = 3}, - [9675] = {.lex_state = 72, .external_lex_state = 3}, - [9676] = {.lex_state = 102, .external_lex_state = 3}, - [9677] = {.lex_state = 72, .external_lex_state = 3}, - [9678] = {.lex_state = 102, .external_lex_state = 3}, - [9679] = {.lex_state = 72, .external_lex_state = 3}, - [9680] = {.lex_state = 102, .external_lex_state = 3}, - [9681] = {.lex_state = 72, .external_lex_state = 3}, - [9682] = {.lex_state = 102, .external_lex_state = 3}, - [9683] = {.lex_state = 72, .external_lex_state = 3}, - [9684] = {.lex_state = 102, .external_lex_state = 3}, - [9685] = {.lex_state = 72, .external_lex_state = 3}, - [9686] = {.lex_state = 102, .external_lex_state = 3}, - [9687] = {.lex_state = 72, .external_lex_state = 3}, - [9688] = {.lex_state = 102, .external_lex_state = 3}, - [9689] = {.lex_state = 72, .external_lex_state = 3}, - [9690] = {.lex_state = 102, .external_lex_state = 3}, - [9691] = {.lex_state = 72, .external_lex_state = 3}, - [9692] = {.lex_state = 102, .external_lex_state = 3}, - [9693] = {.lex_state = 72, .external_lex_state = 3}, - [9694] = {.lex_state = 102, .external_lex_state = 3}, - [9695] = {.lex_state = 72, .external_lex_state = 3}, - [9696] = {.lex_state = 102, .external_lex_state = 3}, - [9697] = {.lex_state = 72, .external_lex_state = 3}, - [9698] = {.lex_state = 102, .external_lex_state = 3}, - [9699] = {.lex_state = 72, .external_lex_state = 3}, - [9700] = {.lex_state = 12, .external_lex_state = 3}, - [9701] = {.lex_state = 72, .external_lex_state = 3}, - [9702] = {.lex_state = 102, .external_lex_state = 3}, - [9703] = {.lex_state = 72, .external_lex_state = 3}, - [9704] = {.lex_state = 102, .external_lex_state = 2}, - [9705] = {.lex_state = 102, .external_lex_state = 3}, - [9706] = {.lex_state = 102, .external_lex_state = 3}, - [9707] = {.lex_state = 102, .external_lex_state = 3}, - [9708] = {.lex_state = 102, .external_lex_state = 3}, - [9709] = {.lex_state = 102, .external_lex_state = 3}, - [9710] = {.lex_state = 102, .external_lex_state = 3}, - [9711] = {.lex_state = 102, .external_lex_state = 3}, - [9712] = {.lex_state = 102, .external_lex_state = 3}, - [9713] = {.lex_state = 102, .external_lex_state = 3}, - [9714] = {.lex_state = 12, .external_lex_state = 3}, - [9715] = {.lex_state = 102, .external_lex_state = 3}, - [9716] = {.lex_state = 102, .external_lex_state = 3}, - [9717] = {.lex_state = 102, .external_lex_state = 3}, - [9718] = {.lex_state = 102, .external_lex_state = 3}, - [9719] = {.lex_state = 102, .external_lex_state = 3}, - [9720] = {.lex_state = 12, .external_lex_state = 3}, - [9721] = {.lex_state = 12, .external_lex_state = 3}, - [9722] = {.lex_state = 12, .external_lex_state = 3}, - [9723] = {.lex_state = 102, .external_lex_state = 3}, - [9724] = {.lex_state = 102, .external_lex_state = 3}, - [9725] = {.lex_state = 102, .external_lex_state = 3}, - [9726] = {.lex_state = 102, .external_lex_state = 3}, - [9727] = {.lex_state = 102, .external_lex_state = 3}, - [9728] = {.lex_state = 12, .external_lex_state = 3}, - [9729] = {.lex_state = 102, .external_lex_state = 3}, - [9730] = {.lex_state = 102, .external_lex_state = 3}, - [9731] = {.lex_state = 102, .external_lex_state = 3}, - [9732] = {.lex_state = 103, .external_lex_state = 3}, - [9733] = {.lex_state = 102, .external_lex_state = 3}, - [9734] = {.lex_state = 102, .external_lex_state = 3}, - [9735] = {.lex_state = 102, .external_lex_state = 2}, - [9736] = {.lex_state = 102, .external_lex_state = 3}, - [9737] = {.lex_state = 12, .external_lex_state = 3}, - [9738] = {.lex_state = 102, .external_lex_state = 3}, - [9739] = {.lex_state = 102, .external_lex_state = 3}, - [9740] = {.lex_state = 102, .external_lex_state = 3}, - [9741] = {.lex_state = 102, .external_lex_state = 3}, - [9742] = {.lex_state = 102, .external_lex_state = 3}, - [9743] = {.lex_state = 102, .external_lex_state = 3}, - [9744] = {.lex_state = 102, .external_lex_state = 3}, - [9745] = {.lex_state = 102, .external_lex_state = 3}, - [9746] = {.lex_state = 102, .external_lex_state = 3}, - [9747] = {.lex_state = 102, .external_lex_state = 3}, - [9748] = {.lex_state = 102, .external_lex_state = 3}, - [9749] = {.lex_state = 102, .external_lex_state = 3}, - [9750] = {.lex_state = 103, .external_lex_state = 3}, - [9751] = {.lex_state = 102, .external_lex_state = 3}, - [9752] = {.lex_state = 102, .external_lex_state = 3}, - [9753] = {.lex_state = 102, .external_lex_state = 3}, - [9754] = {.lex_state = 102, .external_lex_state = 3}, - [9755] = {.lex_state = 102, .external_lex_state = 3}, - [9756] = {.lex_state = 102, .external_lex_state = 3}, - [9757] = {.lex_state = 102, .external_lex_state = 3}, - [9758] = {.lex_state = 102, .external_lex_state = 3}, - [9759] = {(TSStateId)(-1)}, - [9760] = {(TSStateId)(-1)}, -}; - -enum { - ts_external_token_comment = 0, - ts_external_token__left_quoted_string_delimiter = 1, - ts_external_token__right_quoted_string_delimiter = 2, - ts_external_token_DQUOTE = 3, - ts_external_token_line_number_directive = 4, - ts_external_token__null = 5, -}; - -static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { - [ts_external_token_comment] = sym_comment, - [ts_external_token__left_quoted_string_delimiter] = sym__left_quoted_string_delimiter, - [ts_external_token__right_quoted_string_delimiter] = sym__right_quoted_string_delimiter, - [ts_external_token_DQUOTE] = anon_sym_DQUOTE, - [ts_external_token_line_number_directive] = sym_line_number_directive, - [ts_external_token__null] = sym__null, -}; - -static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { - [1] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [2] = { - [ts_external_token_comment] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - }, - [3] = { - [ts_external_token_comment] = true, - [ts_external_token_line_number_directive] = true, - }, - [4] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - }, - [5] = { - [ts_external_token_comment] = true, - [ts_external_token_DQUOTE] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [6] = { - [ts_external_token_comment] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [7] = { - [ts_external_token_comment] = true, - [ts_external_token_line_number_directive] = true, - [ts_external_token__null] = true, - }, - [8] = { - [ts_external_token_comment] = true, - [ts_external_token__left_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - }, - [9] = { - [ts_external_token_comment] = true, - [ts_external_token__right_quoted_string_delimiter] = true, - [ts_external_token_line_number_directive] = true, - }, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [sym_attribute] = STATE(0), - [ts_builtin_sym_end] = ACTIONS(1), - [sym__identifier] = ACTIONS(1), - [sym_shebang] = ACTIONS(1), - [anon_sym_SEMI_SEMI] = ACTIONS(1), - [anon_sym_let] = ACTIONS(1), - [anon_sym_rec] = ACTIONS(1), - [anon_sym_and] = ACTIONS(1), - [anon_sym_COLON_GT] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_external] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_nonrec] = ACTIONS(1), - [anon_sym_private] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym__] = ACTIONS(1), - [anon_sym_COLON_EQ] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_true] = ACTIONS(1), - [anon_sym_false] = ACTIONS(1), - [anon_sym_of] = ACTIONS(1), - [anon_sym_COLON2] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_DASH_GT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_mutable] = ACTIONS(1), - [anon_sym_constraint] = ACTIONS(1), - [anon_sym_exception] = ACTIONS(1), - [anon_sym_module] = ACTIONS(1), - [anon_sym_open] = ACTIONS(1), - [anon_sym_include] = ACTIONS(1), - [anon_sym_class] = ACTIONS(1), - [anon_sym_virtual] = ACTIONS(1), - [anon_sym_val] = ACTIONS(1), - [anon_sym_sig] = ACTIONS(1), - [anon_sym_end] = ACTIONS(1), - [anon_sym_with] = ACTIONS(1), - [anon_sym_functor] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_object] = ACTIONS(1), - [anon_sym_inherit] = ACTIONS(1), - [anon_sym_method] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_fun] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_initializer] = ACTIONS(1), - [anon_sym_LBRACK_GT] = ACTIONS(1), - [anon_sym_LBRACK_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_COLON_COLON] = ACTIONS(1), - [anon_sym_LBRACK_PIPE] = ACTIONS(1), - [anon_sym_PIPE_RBRACK] = ACTIONS(1), - [anon_sym_LT_DASH] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_then] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_done] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_to] = ACTIONS(1), - [anon_sym_downto] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_when] = ACTIONS(1), - [anon_sym_function] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), - [anon_sym_assert] = ACTIONS(1), - [anon_sym_lazy] = ACTIONS(1), - [anon_sym_new] = ACTIONS(1), - [anon_sym_LBRACE_LT] = ACTIONS(1), - [anon_sym_begin] = ACTIONS(1), - [sym_ocamlyacc_value] = ACTIONS(1), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [aux_sym_number_token1] = ACTIONS(1), - [anon_sym_SQUOTE] = ACTIONS(1), - [anon_sym_DQUOTE] = ACTIONS(1), - [anon_sym_LBRACK_AT2] = ACTIONS(1), - [anon_sym_LBRACK_AT_AT2] = ACTIONS(1), - [anon_sym_LBRACK_AT_AT_AT2] = ACTIONS(1), - [aux_sym_string_content_token2] = ACTIONS(1), - [aux_sym_string_content_token3] = ACTIONS(1), - [aux_sym_escape_sequence_token1] = ACTIONS(1), - [aux_sym_escape_sequence_token2] = ACTIONS(1), - [aux_sym_escape_sequence_token3] = ACTIONS(1), - [aux_sym_escape_sequence_token4] = ACTIONS(1), - [sym_pretty_printing_indication] = ACTIONS(1), - [anon_sym_PLUS_DOT] = ACTIONS(1), - [anon_sym_DASH_DOT] = ACTIONS(1), - [sym_hash_operator] = ACTIONS(1), - [aux_sym__pow_operator_token1] = ACTIONS(1), - [anon_sym_lsl] = ACTIONS(1), - [anon_sym_lsr] = ACTIONS(1), - [anon_sym_asr] = ACTIONS(1), - [anon_sym_mod] = ACTIONS(1), - [anon_sym_land] = ACTIONS(1), - [anon_sym_lor] = ACTIONS(1), - [anon_sym_lxor] = ACTIONS(1), - [sym__concat_operator] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_or] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [sym_let_operator] = ACTIONS(1), - [sym_and_operator] = ACTIONS(1), - [sym_match_operator] = ACTIONS(1), - [sym__capitalized_identifier] = ACTIONS(1), - [aux_sym_directive_token1] = ACTIONS(1), - [aux_sym_type_variable_token1] = ACTIONS(1), - [aux_sym_tag_token1] = ACTIONS(1), - [aux_sym_attribute_id_token1] = ACTIONS(1), - [sym_comment] = ACTIONS(5), - [sym__left_quoted_string_delimiter] = ACTIONS(1), - [sym__right_quoted_string_delimiter] = ACTIONS(1), - [sym_line_number_directive] = ACTIONS(5), - [sym__null] = ACTIONS(1), - }, - [1] = { - [sym_compilation_unit] = STATE(9539), - [sym__structure] = STATE(9532), - [sym_expression_item] = STATE(4126), - [sym_toplevel_directive] = STATE(4126), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(4126), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(7), - [sym__identifier] = ACTIONS(9), - [sym_shebang] = ACTIONS(11), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(97), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [2] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2811), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(2), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__attribute] = STATE(532), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [3] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(3), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__attribute] = STATE(571), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(167), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [4] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2811), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(4), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__attribute] = STATE(951), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(181), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(183), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [5] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(5), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__attribute] = STATE(864), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(233), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(235), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [6] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(6), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__attribute] = STATE(645), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [7] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(7), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__attribute] = STATE(796), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(107), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [8] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(8), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9541), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(307), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [9] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(9), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9573), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(317), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [10] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(10), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9376), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(319), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [11] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(11), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8562), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(321), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [12] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(12), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9519), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(323), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [13] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(13), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9369), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(325), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [14] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(14), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9269), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(327), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [15] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(15), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9451), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(329), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [16] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(16), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9208), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(331), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [17] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(17), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8720), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(333), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [18] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(18), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8411), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(335), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [19] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(19), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9174), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(337), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [20] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(20), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9719), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(339), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [21] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(21), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9226), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(341), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [22] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(22), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9243), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(343), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [23] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(23), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9464), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(345), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [24] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(24), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9647), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(347), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [25] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(25), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9612), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(349), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [26] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(26), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9300), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(351), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [27] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(27), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9351), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(353), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [28] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(28), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8668), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(355), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [29] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(29), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9065), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(357), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [30] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(30), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9058), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(359), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [31] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(31), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8860), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(361), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [32] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(32), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8968), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(363), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [33] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(33), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8370), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(365), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [34] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(34), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9062), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(367), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [35] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(35), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9363), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(369), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [36] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(36), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9726), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(371), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [37] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(37), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8974), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(373), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [38] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(38), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9386), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(375), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [39] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(39), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8873), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(377), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [40] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(40), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9405), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(379), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [41] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(41), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(8457), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(381), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [42] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(42), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9340), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(383), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [43] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(43), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9051), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(385), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [44] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(44), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9432), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(387), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [45] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(45), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9511), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(389), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [46] = { - [sym__structure] = STATE(9275), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(46), - [sym_floating_attribute] = STATE(5846), - [sym_attribute_payload] = STATE(9274), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_QMARK] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(391), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_COLON2] = ACTIONS(309), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [47] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3292), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(47), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__attribute] = STATE(683), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_constraint] = ACTIONS(107), - [anon_sym_val] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(107), - [anon_sym_method] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_initializer] = ACTIONS(107), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [48] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3292), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(48), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__attribute] = STATE(694), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_COLON_GT] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(107), - [anon_sym_DASH_GT] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_end] = ACTIONS(107), - [anon_sym_with] = ACTIONS(107), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_then] = ACTIONS(107), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(103), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [49] = { - [sym_expression_item] = STATE(4023), - [sym_toplevel_directive] = STATE(4023), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(4023), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(49), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(475), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(477), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [50] = { - [sym__structure] = STATE(9203), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(50), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(479), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [51] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3535), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(51), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(764), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_COLON_GT] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(107), - [anon_sym_DASH_GT] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_end] = ACTIONS(107), - [anon_sym_with] = ACTIONS(107), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_then] = ACTIONS(107), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(103), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [52] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(52), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(541), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(543), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [53] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(53), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(545), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(547), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [54] = { - [sym__structure] = STATE(9152), - [sym_expression_item] = STATE(3916), - [sym_toplevel_directive] = STATE(3916), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(3916), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(54), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(49), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(549), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [55] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3292), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(55), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(594), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_constraint] = ACTIONS(107), - [anon_sym_val] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(107), - [anon_sym_method] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_initializer] = ACTIONS(107), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [56] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(56), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(571), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_end] = ACTIONS(573), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [57] = { - [sym__structure] = STATE(9517), - [sym_expression_item] = STATE(4126), - [sym_toplevel_directive] = STATE(4126), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(4126), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(57), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(59), - [ts_builtin_sym_end] = ACTIONS(575), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [58] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(58), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(2658), - [ts_builtin_sym_end] = ACTIONS(541), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [59] = { - [sym_expression_item] = STATE(4151), - [sym_toplevel_directive] = STATE(4151), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(4151), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(59), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(2658), - [ts_builtin_sym_end] = ACTIONS(475), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [60] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(60), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(2658), - [ts_builtin_sym_end] = ACTIONS(545), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [61] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(61), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(2658), - [ts_builtin_sym_end] = ACTIONS(571), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [62] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5811), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(62), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1843), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(311), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(313), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [63] = { - [sym_expression_item] = STATE(5854), - [sym_toplevel_directive] = STATE(5854), - [sym__structure_item] = STATE(5839), - [sym__structure_item_ext] = STATE(5854), - [sym_value_definition] = STATE(5855), - [sym_external] = STATE(5846), - [sym_type_definition] = STATE(5846), - [sym_exception_definition] = STATE(5846), - [sym_module_definition] = STATE(5846), - [sym_module_type_definition] = STATE(5846), - [sym_open_module] = STATE(5846), - [sym_include_module] = STATE(5846), - [sym_class_definition] = STATE(5846), - [sym_class_type_definition] = STATE(5846), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5563), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(63), - [sym_floating_attribute] = STATE(5846), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__item_extension] = STATE(5839), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_directive] = STATE(3767), - [sym_tag] = STATE(1853), - [aux_sym__structure_repeat1] = STATE(2658), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(13), - [anon_sym_let] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(19), - [anon_sym_type] = ACTIONS(21), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(37), - [anon_sym_class] = ACTIONS(39), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(91), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(315), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [64] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9205), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(64), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8945), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(591), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(593), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(609), - [sym_and_operator] = ACTIONS(593), - [sym_match_operator] = ACTIONS(611), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [65] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7142), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(65), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8520), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(617), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(619), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(621), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(623), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(625), - [sym_and_operator] = ACTIONS(623), - [sym_match_operator] = ACTIONS(627), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [66] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7152), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(66), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9439), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(633), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(635), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(637), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(639), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(641), - [sym_and_operator] = ACTIONS(639), - [sym_match_operator] = ACTIONS(643), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [67] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9645), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(67), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9478), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(645), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(649), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(651), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(653), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(655), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(657), - [sym_and_operator] = ACTIONS(655), - [sym_match_operator] = ACTIONS(659), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [68] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7061), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(68), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9482), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(661), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(665), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(667), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(669), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(671), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(673), - [sym_and_operator] = ACTIONS(671), - [sym_match_operator] = ACTIONS(675), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [69] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6927), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(69), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9620), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(677), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(681), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(683), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(685), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(687), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(689), - [sym_and_operator] = ACTIONS(687), - [sym_match_operator] = ACTIONS(691), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [70] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8678), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(70), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9326), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(693), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(697), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(699), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(701), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(703), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(705), - [sym_and_operator] = ACTIONS(703), - [sym_match_operator] = ACTIONS(707), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [71] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7063), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(71), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9478), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(647), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(649), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(711), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(653), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(655), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(657), - [sym_and_operator] = ACTIONS(655), - [sym_match_operator] = ACTIONS(659), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [72] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8409), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(72), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9117), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(717), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(719), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(721), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(723), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(725), - [sym_and_operator] = ACTIONS(723), - [sym_match_operator] = ACTIONS(727), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [73] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9295), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(73), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9549), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(733), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(735), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(737), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(739), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(741), - [sym_and_operator] = ACTIONS(739), - [sym_match_operator] = ACTIONS(743), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [74] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7200), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(74), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9412), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(745), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(749), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(751), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(753), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(755), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(757), - [sym_and_operator] = ACTIONS(755), - [sym_match_operator] = ACTIONS(759), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [75] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8421), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(75), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9482), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(663), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(665), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(763), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(669), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(671), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(673), - [sym_and_operator] = ACTIONS(671), - [sym_match_operator] = ACTIONS(675), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [76] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8760), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(76), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9684), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(765), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(769), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(771), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(773), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(775), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(777), - [sym_and_operator] = ACTIONS(775), - [sym_match_operator] = ACTIONS(779), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [77] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7074), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(77), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9452), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(785), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(787), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(789), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(791), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(793), - [sym_and_operator] = ACTIONS(791), - [sym_match_operator] = ACTIONS(795), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [78] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8439), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(78), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9240), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(801), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(803), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(805), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(807), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(809), - [sym_and_operator] = ACTIONS(807), - [sym_match_operator] = ACTIONS(811), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [79] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7031), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(79), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9240), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(813), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(801), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(815), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(805), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(807), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(809), - [sym_and_operator] = ACTIONS(807), - [sym_match_operator] = ACTIONS(811), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [80] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7018), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(80), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9752), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(821), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(825), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(827), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(829), - [sym_and_operator] = ACTIONS(827), - [sym_match_operator] = ACTIONS(831), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [81] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7032), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(81), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9326), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(695), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(697), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(701), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(703), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(705), - [sym_and_operator] = ACTIONS(703), - [sym_match_operator] = ACTIONS(707), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [82] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8869), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(82), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8520), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(617), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(839), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(621), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(623), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(625), - [sym_and_operator] = ACTIONS(623), - [sym_match_operator] = ACTIONS(627), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [83] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6970), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(83), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9549), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(841), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(731), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(733), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(843), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(737), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(739), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(741), - [sym_and_operator] = ACTIONS(739), - [sym_match_operator] = ACTIONS(743), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [84] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8908), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(84), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9752), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(845), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(821), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(847), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(825), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(827), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(829), - [sym_and_operator] = ACTIONS(827), - [sym_match_operator] = ACTIONS(831), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [85] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9751), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(85), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9439), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(849), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(631), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(633), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(851), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(637), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(639), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(641), - [sym_and_operator] = ACTIONS(639), - [sym_match_operator] = ACTIONS(643), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [86] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9197), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(86), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9585), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(853), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(857), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(859), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(861), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(863), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(865), - [sym_and_operator] = ACTIONS(863), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [87] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7062), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(87), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9117), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(869), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(717), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(871), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(721), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(723), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(725), - [sym_and_operator] = ACTIONS(723), - [sym_match_operator] = ACTIONS(727), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [88] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7041), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(88), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8945), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(873), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(875), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(591), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(593), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(609), - [sym_and_operator] = ACTIONS(593), - [sym_match_operator] = ACTIONS(611), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [89] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7041), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(89), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9050), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(875), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(881), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(883), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(885), - [sym_and_operator] = ACTIONS(883), - [sym_match_operator] = ACTIONS(887), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [90] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7091), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(90), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9672), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(889), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(893), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(895), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(897), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(899), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(901), - [sym_and_operator] = ACTIONS(899), - [sym_match_operator] = ACTIONS(903), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [91] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7036), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(91), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8508), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(905), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(909), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(911), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(915), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(917), - [sym_and_operator] = ACTIONS(915), - [sym_match_operator] = ACTIONS(919), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [92] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7201), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(92), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9684), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(921), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(767), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(769), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(923), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(773), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(775), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(777), - [sym_and_operator] = ACTIONS(775), - [sym_match_operator] = ACTIONS(779), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [93] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8992), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(93), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9672), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(925), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(891), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(893), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(927), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(897), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(899), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(901), - [sym_and_operator] = ACTIONS(899), - [sym_match_operator] = ACTIONS(903), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [94] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9481), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(94), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9452), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(929), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(785), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(931), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(789), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(791), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(793), - [sym_and_operator] = ACTIONS(791), - [sym_match_operator] = ACTIONS(795), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [95] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7034), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(95), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9585), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(933), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(855), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(857), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(935), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(861), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(863), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(865), - [sym_and_operator] = ACTIONS(863), - [sym_match_operator] = ACTIONS(867), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [96] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9098), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(96), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9620), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(679), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(681), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(939), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(685), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(687), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(689), - [sym_and_operator] = ACTIONS(687), - [sym_match_operator] = ACTIONS(691), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [97] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8614), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(97), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(8508), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(941), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(907), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(909), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(943), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(913), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(915), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(917), - [sym_and_operator] = ACTIONS(915), - [sym_match_operator] = ACTIONS(919), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [98] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9205), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(98), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9050), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(577), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(585), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(589), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(881), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(883), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(885), - [sym_and_operator] = ACTIONS(883), - [sym_match_operator] = ACTIONS(887), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [99] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9706), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(99), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym_infix_operator] = STATE(9412), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(945), - [anon_sym_PLUS] = ACTIONS(579), - [anon_sym_DASH] = ACTIONS(579), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(747), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_module] = ACTIONS(749), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_COLON_COLON] = ACTIONS(947), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(753), - [anon_sym_PLUS_DOT] = ACTIONS(579), - [anon_sym_DASH_DOT] = ACTIONS(579), - [sym_hash_operator] = ACTIONS(755), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(757), - [sym_and_operator] = ACTIONS(755), - [sym_match_operator] = ACTIONS(759), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [100] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4276), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(100), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__attribute] = STATE(836), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [101] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3535), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(101), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__attribute] = STATE(593), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [102] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4276), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(102), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__attribute] = STATE(867), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(107), - [anon_sym_for] = ACTIONS(971), - [anon_sym_to] = ACTIONS(107), - [anon_sym_downto] = ACTIONS(107), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [103] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3292), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(103), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__attribute] = STATE(856), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(413), - [anon_sym_do] = ACTIONS(107), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [104] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3535), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(104), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(914), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_PIPE] = ACTIONS(107), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(103), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [105] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3535), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(105), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(559), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_COLON_EQ] = ACTIONS(103), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(103), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_AMP] = ACTIONS(107), - [anon_sym_COLON_COLON] = ACTIONS(103), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_else] = ACTIONS(107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(107), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(147), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(23), - [anon_sym_DASH_DOT] = ACTIONS(23), - [aux_sym__pow_operator_token1] = ACTIONS(103), - [anon_sym_lsl] = ACTIONS(107), - [anon_sym_lsr] = ACTIONS(107), - [anon_sym_asr] = ACTIONS(107), - [aux_sym__mult_operator_token1] = ACTIONS(107), - [anon_sym_mod] = ACTIONS(107), - [anon_sym_land] = ACTIONS(107), - [anon_sym_lor] = ACTIONS(107), - [anon_sym_lxor] = ACTIONS(107), - [aux_sym__add_operator_token1] = ACTIONS(107), - [sym__concat_operator] = ACTIONS(103), - [sym__rel_operator] = ACTIONS(107), - [anon_sym_AMP_AMP] = ACTIONS(107), - [anon_sym_or] = ACTIONS(107), - [anon_sym_PIPE_PIPE] = ACTIONS(107), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [106] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(106), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [107] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(107), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [108] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(108), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [109] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(109), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [110] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(110), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [111] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(111), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [112] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(112), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [113] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(113), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [114] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(114), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [115] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(115), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [116] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(116), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [117] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(117), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [118] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2811), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(118), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__attribute] = STATE(518), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(105), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [119] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(119), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [120] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(120), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [121] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(121), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [122] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(122), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1187), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [123] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(123), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [124] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(124), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [125] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(125), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [126] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(126), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1169), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [127] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(127), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [128] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(128), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [129] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(129), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [130] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(130), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [131] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(131), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [132] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(132), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1143), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [133] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(133), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [134] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(134), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1213), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [135] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(135), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [136] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(136), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [137] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2811), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(137), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__attribute] = STATE(529), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(181), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(183), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [138] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(138), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [139] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(139), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [140] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(140), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__attribute] = STATE(521), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(167), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [141] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(141), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [142] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(142), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [143] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(143), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [144] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(144), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [145] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(145), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1215), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [146] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(146), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [147] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(147), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [148] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(148), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [149] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(149), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [150] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(150), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [151] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(151), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1179), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [152] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(152), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1173), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [153] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(153), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [154] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(154), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [155] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(155), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [156] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(156), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [157] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(157), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [158] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(158), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1169), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [159] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(159), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [160] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(160), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [161] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(161), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [162] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(162), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [163] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(163), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1225), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [164] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(164), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1214), - [sym__mult_operator] = STATE(1216), - [sym__add_operator] = STATE(1218), - [sym__and_operator] = STATE(1219), - [sym__or_operator] = STATE(1222), - [sym__assign_operator] = STATE(1230), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1147), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1227), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1131), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1141), - [sym__rel_operator] = ACTIONS(1153), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [165] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(165), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [166] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(166), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__attribute] = STATE(668), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(233), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(235), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [167] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(167), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [168] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(168), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [169] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(169), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [170] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(170), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [171] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(171), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1173), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [172] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(172), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [173] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(173), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1143), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [174] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(174), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1179), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [175] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(175), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__pow_operator] = STATE(1155), - [sym__mult_operator] = STATE(1154), - [sym__add_operator] = STATE(1151), - [sym__and_operator] = STATE(1148), - [sym__or_operator] = STATE(1147), - [sym__assign_operator] = STATE(1146), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(224), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1189), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1229), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(117), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1191), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1193), - [sym__rel_operator] = ACTIONS(1195), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [176] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(176), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1269), - [sym__mult_operator] = STATE(1270), - [sym__add_operator] = STATE(1272), - [sym__and_operator] = STATE(1273), - [sym__or_operator] = STATE(1274), - [sym__assign_operator] = STATE(1278), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1211), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1231), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1203), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1207), - [sym__rel_operator] = ACTIONS(1209), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [177] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(177), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [178] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(178), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [179] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(179), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [180] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(180), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [181] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(181), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [182] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(182), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [183] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(183), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [184] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(184), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [185] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(185), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__attribute] = STATE(819), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [186] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(186), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [187] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(187), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [188] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(188), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [189] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(189), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [190] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(190), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [191] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(191), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [192] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(192), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [193] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(193), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [194] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(194), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__attribute] = STATE(577), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [ts_builtin_sym_end] = ACTIONS(103), - [sym__identifier] = ACTIONS(9), - [anon_sym_SEMI_SEMI] = ACTIONS(103), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(107), - [anon_sym_type] = ACTIONS(107), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_exception] = ACTIONS(107), - [anon_sym_module] = ACTIONS(107), - [anon_sym_open] = ACTIONS(107), - [anon_sym_include] = ACTIONS(107), - [anon_sym_class] = ACTIONS(107), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(103), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [195] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(195), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [196] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(196), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__pow_operator] = STATE(1195), - [sym__mult_operator] = STATE(1200), - [sym__add_operator] = STATE(1205), - [sym__and_operator] = STATE(1207), - [sym__or_operator] = STATE(1208), - [sym__assign_operator] = STATE(1212), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(231), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1217), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1261), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(193), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1219), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1221), - [sym__rel_operator] = ACTIONS(1223), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [197] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(197), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1157), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1157), - [anon_sym_let] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1159), - [anon_sym_type] = ACTIONS(1159), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1159), - [anon_sym_exception] = ACTIONS(1159), - [anon_sym_module] = ACTIONS(1159), - [anon_sym_open] = ACTIONS(1159), - [anon_sym_include] = ACTIONS(1159), - [anon_sym_class] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1159), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [198] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(198), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1169), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1169), - [anon_sym_let] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1171), - [anon_sym_type] = ACTIONS(1171), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1171), - [anon_sym_exception] = ACTIONS(1171), - [anon_sym_module] = ACTIONS(1171), - [anon_sym_open] = ACTIONS(1171), - [anon_sym_include] = ACTIONS(1171), - [anon_sym_class] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1171), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [199] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(199), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1143), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1143), - [anon_sym_let] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1145), - [anon_sym_type] = ACTIONS(1145), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1145), - [anon_sym_exception] = ACTIONS(1145), - [anon_sym_module] = ACTIONS(1145), - [anon_sym_open] = ACTIONS(1145), - [anon_sym_include] = ACTIONS(1145), - [anon_sym_class] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1145), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [200] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(200), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1271), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [201] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(201), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1161), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1161), - [anon_sym_let] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1163), - [anon_sym_type] = ACTIONS(1163), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1163), - [anon_sym_exception] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(1163), - [anon_sym_open] = ACTIONS(1163), - [anon_sym_include] = ACTIONS(1163), - [anon_sym_class] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1163), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [202] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(202), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [203] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(203), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [204] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(204), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1179), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1179), - [anon_sym_let] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1181), - [anon_sym_type] = ACTIONS(1181), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1181), - [anon_sym_exception] = ACTIONS(1181), - [anon_sym_module] = ACTIONS(1181), - [anon_sym_open] = ACTIONS(1181), - [anon_sym_include] = ACTIONS(1181), - [anon_sym_class] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_let_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1181), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [205] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(205), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [206] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(206), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [207] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(207), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1165), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1165), - [anon_sym_let] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1167), - [anon_sym_type] = ACTIONS(1167), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1167), - [anon_sym_exception] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1167), - [anon_sym_open] = ACTIONS(1167), - [anon_sym_include] = ACTIONS(1167), - [anon_sym_class] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1167), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [208] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(208), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [209] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(209), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1173), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1173), - [anon_sym_let] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1175), - [anon_sym_type] = ACTIONS(1175), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1175), - [anon_sym_exception] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(1175), - [anon_sym_open] = ACTIONS(1175), - [anon_sym_include] = ACTIONS(1175), - [anon_sym_class] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_let_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1175), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [210] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(210), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [211] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(211), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1119), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1121), - [anon_sym_exception] = ACTIONS(1121), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_open] = ACTIONS(1121), - [anon_sym_include] = ACTIONS(1121), - [anon_sym_class] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_let_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1121), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [212] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(212), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(220), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1279), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_constraint] = ACTIONS(1279), - [anon_sym_val] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1279), - [anon_sym_with] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1279), - [anon_sym_method] = ACTIONS(1279), - [anon_sym_initializer] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1275), - [anon_sym_then] = ACTIONS(1279), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [213] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(213), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__pow_operator] = STATE(1115), - [sym__mult_operator] = STATE(1109), - [sym__add_operator] = STATE(1107), - [sym__and_operator] = STATE(1104), - [sym__or_operator] = STATE(1103), - [sym__assign_operator] = STATE(1102), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(300), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1287), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1241), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1245), - [sym__rel_operator] = ACTIONS(1247), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [214] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(214), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__pow_operator] = STATE(1295), - [sym__mult_operator] = STATE(1293), - [sym__add_operator] = STATE(1285), - [sym__and_operator] = STATE(1261), - [sym__or_operator] = STATE(1244), - [sym__assign_operator] = STATE(1240), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(302), - [ts_builtin_sym_end] = ACTIONS(1183), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1183), - [anon_sym_let] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1185), - [anon_sym_type] = ACTIONS(1185), - [anon_sym_COMMA] = ACTIONS(1263), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1289), - [anon_sym_exception] = ACTIONS(1185), - [anon_sym_module] = ACTIONS(1185), - [anon_sym_open] = ACTIONS(1185), - [anon_sym_include] = ACTIONS(1185), - [anon_sym_class] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1265), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1267), - [sym__rel_operator] = ACTIONS(1269), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_let_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1185), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [215] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(215), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(222), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_and] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_exception] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_open] = ACTIONS(1279), - [anon_sym_include] = ACTIONS(1279), - [anon_sym_class] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym_let_operator] = ACTIONS(1275), - [sym_and_operator] = ACTIONS(1275), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1279), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [216] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(216), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(260), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1275), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1275), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1279), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1279), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_RBRACE] = ACTIONS(1275), - [anon_sym_constraint] = ACTIONS(1279), - [anon_sym_val] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1279), - [anon_sym_with] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1279), - [anon_sym_method] = ACTIONS(1279), - [anon_sym_initializer] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1279), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1275), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [217] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(217), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(229), - [ts_builtin_sym_end] = ACTIONS(1275), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_and] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_exception] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_open] = ACTIONS(1279), - [anon_sym_include] = ACTIONS(1279), - [anon_sym_class] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym_let_operator] = ACTIONS(1275), - [sym_and_operator] = ACTIONS(1275), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1279), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [218] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(218), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(786), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_constraint] = ACTIONS(107), - [anon_sym_val] = ACTIONS(107), - [anon_sym_end] = ACTIONS(107), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(107), - [anon_sym_method] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_initializer] = ACTIONS(107), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(107), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(103), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [219] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(219), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(219), - [sym__identifier] = ACTIONS(1301), - [anon_sym_COLON_GT] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1306), - [anon_sym_QMARK] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(1309), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1314), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1317), - [anon_sym_false] = ACTIONS(1317), - [anon_sym_COLON2] = ACTIONS(1312), - [anon_sym_DASH_GT] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_constraint] = ACTIONS(1312), - [anon_sym_val] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1323), - [anon_sym_inherit] = ACTIONS(1312), - [anon_sym_method] = ACTIONS(1312), - [anon_sym_initializer] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1326), - [anon_sym_PIPE_RBRACK] = ACTIONS(1304), - [anon_sym_then] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1329), - [anon_sym_LBRACE_LT] = ACTIONS(1332), - [anon_sym_GT_RBRACE] = ACTIONS(1304), - [anon_sym_begin] = ACTIONS(1335), - [sym_ocamlyacc_value] = ACTIONS(1338), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1344), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1347), - [anon_sym_SQUOTE] = ACTIONS(1350), - [anon_sym_DQUOTE] = ACTIONS(1353), - [sym_prefix_operator] = ACTIONS(1356), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym__capitalized_identifier] = ACTIONS(1359), - [aux_sym_tag_token1] = ACTIONS(1362), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [220] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(220), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(219), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1367), - [anon_sym_DASH_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_constraint] = ACTIONS(1367), - [anon_sym_val] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_with] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1367), - [anon_sym_method] = ACTIONS(1367), - [anon_sym_initializer] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1365), - [anon_sym_then] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1365), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [221] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(221), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(219), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1367), - [anon_sym_DASH_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_constraint] = ACTIONS(1367), - [anon_sym_val] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_with] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1367), - [anon_sym_method] = ACTIONS(1367), - [anon_sym_initializer] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1365), - [anon_sym_then] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1365), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [222] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(222), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(223), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [223] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(223), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(223), - [sym__identifier] = ACTIONS(1369), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1375), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1378), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1384), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1387), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1390), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1393), - [anon_sym_LBRACE_LT] = ACTIONS(1396), - [anon_sym_begin] = ACTIONS(1399), - [sym_ocamlyacc_value] = ACTIONS(1402), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1408), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1411), - [anon_sym_SQUOTE] = ACTIONS(1414), - [anon_sym_DQUOTE] = ACTIONS(1417), - [sym_prefix_operator] = ACTIONS(1420), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym_let_operator] = ACTIONS(1304), - [sym_and_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(1423), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(1426), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [224] = { - [sym__simple_expression] = STATE(1627), - [sym_typed_expression] = STATE(1548), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1548), - [sym_hash_expression] = STATE(1548), - [sym_field_get_expression] = STATE(1548), - [sym_array_get_expression] = STATE(1548), - [sym_string_get_expression] = STATE(1548), - [sym_bigarray_get_expression] = STATE(1548), - [sym_coercion_expression] = STATE(1548), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(224), - [sym__extension] = STATE(1627), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym__label] = STATE(1747), - [sym_tag] = STATE(1548), - [aux_sym_class_application_repeat1] = STATE(223), - [sym__identifier] = ACTIONS(1117), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(117), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(143), - [anon_sym_LBRACE_PERCENT] = ACTIONS(145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [225] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(225), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(299), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1275), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_exception] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_open] = ACTIONS(1279), - [anon_sym_include] = ACTIONS(1279), - [anon_sym_class] = ACTIONS(1279), - [anon_sym_end] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym_let_operator] = ACTIONS(1275), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1279), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [226] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(226), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_constraint] = ACTIONS(1163), - [anon_sym_val] = ACTIONS(1163), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1163), - [anon_sym_method] = ACTIONS(1163), - [anon_sym_initializer] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [227] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(227), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym__identifier] = ACTIONS(1437), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1443), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1449), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1452), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1455), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_LBRACE_LT] = ACTIONS(1461), - [anon_sym_begin] = ACTIONS(1464), - [sym_ocamlyacc_value] = ACTIONS(1467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1470), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1476), - [anon_sym_SQUOTE] = ACTIONS(1479), - [anon_sym_DQUOTE] = ACTIONS(1482), - [sym_prefix_operator] = ACTIONS(1485), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym_let_operator] = ACTIONS(1304), - [sym_and_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(1488), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(1491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [228] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(228), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1157), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [229] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(229), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [230] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(230), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(304), - [ts_builtin_sym_end] = ACTIONS(1275), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1275), - [anon_sym_let] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1279), - [anon_sym_type] = ACTIONS(1279), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1279), - [anon_sym_exception] = ACTIONS(1279), - [anon_sym_module] = ACTIONS(1279), - [anon_sym_open] = ACTIONS(1279), - [anon_sym_include] = ACTIONS(1279), - [anon_sym_class] = ACTIONS(1279), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1279), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1275), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1275), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym_let_operator] = ACTIONS(1275), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1279), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [231] = { - [sym__simple_expression] = STATE(1714), - [sym_typed_expression] = STATE(1701), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym__argument] = STATE(1754), - [sym_labeled_argument] = STATE(1751), - [sym_prefix_expression] = STATE(1701), - [sym_hash_expression] = STATE(1701), - [sym_field_get_expression] = STATE(1701), - [sym_array_get_expression] = STATE(1701), - [sym_string_get_expression] = STATE(1701), - [sym_bigarray_get_expression] = STATE(1701), - [sym_coercion_expression] = STATE(1701), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(231), - [sym__extension] = STATE(1714), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym__label] = STATE(1815), - [sym_tag] = STATE(1701), - [aux_sym_class_application_repeat1] = STATE(227), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym__identifier] = ACTIONS(1197), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1123), - [anon_sym_QMARK] = ACTIONS(1123), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(193), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(215), - [anon_sym_LBRACE_PERCENT] = ACTIONS(217), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [232] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(232), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [233] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(233), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [234] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(234), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1143), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [235] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(235), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1161), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [236] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(236), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_constraint] = ACTIONS(1171), - [anon_sym_val] = ACTIONS(1171), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1171), - [anon_sym_method] = ACTIONS(1171), - [anon_sym_initializer] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [237] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(237), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_constraint] = ACTIONS(1175), - [anon_sym_val] = ACTIONS(1175), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1175), - [anon_sym_method] = ACTIONS(1175), - [anon_sym_initializer] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [238] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(238), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(238), - [sym__identifier] = ACTIONS(1502), - [anon_sym_COLON_GT] = ACTIONS(1304), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_RPAREN] = ACTIONS(1304), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [anon_sym_COLON2] = ACTIONS(1312), - [anon_sym_DASH_GT] = ACTIONS(1312), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_RBRACE] = ACTIONS(1304), - [anon_sym_constraint] = ACTIONS(1312), - [anon_sym_val] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_with] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1520), - [anon_sym_inherit] = ACTIONS(1312), - [anon_sym_method] = ACTIONS(1312), - [anon_sym_initializer] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1523), - [anon_sym_then] = ACTIONS(1312), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_LBRACE_LT] = ACTIONS(1529), - [anon_sym_GT_RBRACE] = ACTIONS(1304), - [anon_sym_begin] = ACTIONS(1532), - [sym_ocamlyacc_value] = ACTIONS(1535), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1538), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1541), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_prefix_operator] = ACTIONS(1553), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym__capitalized_identifier] = ACTIONS(1556), - [aux_sym_tag_token1] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [239] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(239), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1562), - [anon_sym_constraint] = ACTIONS(1185), - [anon_sym_val] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1185), - [anon_sym_method] = ACTIONS(1185), - [anon_sym_initializer] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [240] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(240), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [241] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(241), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [242] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(242), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1175), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_with] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1173), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [243] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(243), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(238), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1367), - [anon_sym_DASH_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_constraint] = ACTIONS(1367), - [anon_sym_val] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_with] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1367), - [anon_sym_method] = ACTIONS(1367), - [anon_sym_initializer] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1365), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [244] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(244), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [245] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(245), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_constraint] = ACTIONS(1167), - [anon_sym_val] = ACTIONS(1167), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1167), - [anon_sym_method] = ACTIONS(1167), - [anon_sym_initializer] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [246] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(246), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [247] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(247), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1564), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1183), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [248] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(248), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [249] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(249), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(702), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_COLON_GT] = ACTIONS(103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(103), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(103), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(107), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_RBRACE] = ACTIONS(103), - [anon_sym_end] = ACTIONS(107), - [anon_sym_with] = ACTIONS(107), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_then] = ACTIONS(107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [250] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(250), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [251] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(251), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [252] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(252), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [253] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(253), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [254] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(254), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [255] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(255), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [256] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(256), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [257] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(257), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [258] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(258), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_constraint] = ACTIONS(1159), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1159), - [anon_sym_method] = ACTIONS(1159), - [anon_sym_initializer] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [259] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(259), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [260] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(260), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(238), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1365), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1365), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1367), - [anon_sym_DASH_GT] = ACTIONS(1367), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_RBRACE] = ACTIONS(1365), - [anon_sym_constraint] = ACTIONS(1367), - [anon_sym_val] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_with] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1367), - [anon_sym_method] = ACTIONS(1367), - [anon_sym_initializer] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1367), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1365), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [261] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(261), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_constraint] = ACTIONS(1145), - [anon_sym_val] = ACTIONS(1145), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1145), - [anon_sym_method] = ACTIONS(1145), - [anon_sym_initializer] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [262] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(262), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_with] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1169), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [263] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(263), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1177), - [sym__mult_operator] = STATE(1095), - [sym__add_operator] = STATE(1112), - [sym__and_operator] = STATE(1121), - [sym__or_operator] = STATE(1138), - [sym__assign_operator] = STATE(1142), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_COLON_GT] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_COLON2] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1496), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_then] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_GT_RBRACE] = ACTIONS(1165), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1498), - [sym__rel_operator] = ACTIONS(1500), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [264] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(264), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_constraint] = ACTIONS(1181), - [anon_sym_val] = ACTIONS(1181), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1181), - [anon_sym_method] = ACTIONS(1181), - [anon_sym_initializer] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [265] = { - [sym__simple_expression] = STATE(1652), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(265), - [sym__extension] = STATE(1652), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1249), - [sym__mult_operator] = STATE(1246), - [sym__add_operator] = STATE(1245), - [sym__and_operator] = STATE(1243), - [sym__or_operator] = STATE(1242), - [sym__assign_operator] = STATE(1241), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(1759), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(243), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1429), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(405), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1431), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(435), - [anon_sym_LBRACE_PERCENT] = ACTIONS(437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1433), - [sym__rel_operator] = ACTIONS(1435), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [266] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(266), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [267] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(267), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1173), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1173), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1173), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1175), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1175), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_with] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1175), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1173), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [268] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(268), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_constraint] = ACTIONS(1163), - [anon_sym_val] = ACTIONS(1163), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1163), - [anon_sym_method] = ACTIONS(1163), - [anon_sym_initializer] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1163), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1161), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1161), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [269] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(269), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_constraint] = ACTIONS(1175), - [anon_sym_val] = ACTIONS(1175), - [anon_sym_end] = ACTIONS(1175), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1175), - [anon_sym_method] = ACTIONS(1175), - [anon_sym_initializer] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1175), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1173), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1173), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [270] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(270), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_constraint] = ACTIONS(1167), - [anon_sym_val] = ACTIONS(1167), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1167), - [anon_sym_method] = ACTIONS(1167), - [anon_sym_initializer] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1167), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1165), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1165), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [271] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(271), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [272] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(272), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_constraint] = ACTIONS(1145), - [anon_sym_val] = ACTIONS(1145), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1145), - [anon_sym_method] = ACTIONS(1145), - [anon_sym_initializer] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1143), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [273] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(273), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [274] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(274), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1157), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1157), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1157), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1159), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1159), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_with] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1159), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1157), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [275] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(275), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [276] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(276), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_constraint] = ACTIONS(1171), - [anon_sym_val] = ACTIONS(1171), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1171), - [anon_sym_method] = ACTIONS(1171), - [anon_sym_initializer] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1171), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1169), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1169), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [277] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(277), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_constraint] = ACTIONS(1181), - [anon_sym_val] = ACTIONS(1181), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1181), - [anon_sym_method] = ACTIONS(1181), - [anon_sym_initializer] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1179), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [278] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(278), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [279] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(279), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1161), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1161), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1161), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1163), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1163), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_end] = ACTIONS(1163), - [anon_sym_with] = ACTIONS(1163), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1163), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1161), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [280] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(280), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1143), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1143), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1145), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1145), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_RBRACE] = ACTIONS(1143), - [anon_sym_end] = ACTIONS(1145), - [anon_sym_with] = ACTIONS(1145), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1145), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1143), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [281] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(281), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [282] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(282), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [283] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(283), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_constraint] = ACTIONS(1159), - [anon_sym_val] = ACTIONS(1159), - [anon_sym_end] = ACTIONS(1159), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1159), - [anon_sym_method] = ACTIONS(1159), - [anon_sym_initializer] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1159), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1157), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1157), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [284] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(284), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [285] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(285), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1165), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1165), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1165), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1167), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1167), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_end] = ACTIONS(1167), - [anon_sym_with] = ACTIONS(1167), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1167), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1165), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [286] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(286), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [287] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(287), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1582), - [anon_sym_constraint] = ACTIONS(1185), - [anon_sym_val] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1185), - [anon_sym_method] = ACTIONS(1185), - [anon_sym_initializer] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [288] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(288), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1169), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1169), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1171), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1171), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_end] = ACTIONS(1171), - [anon_sym_with] = ACTIONS(1171), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1171), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1169), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [289] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(289), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [290] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(290), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [291] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(291), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1185), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1183), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [292] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(292), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [293] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(293), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [294] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(294), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [295] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(295), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1119), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1119), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1119), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1121), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1121), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_with] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1121), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1119), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [296] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(296), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1179), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1179), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1179), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1181), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1181), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_RBRACE] = ACTIONS(1179), - [anon_sym_end] = ACTIONS(1181), - [anon_sym_with] = ACTIONS(1181), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1181), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(1179), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [297] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(297), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_constraint] = ACTIONS(1121), - [anon_sym_val] = ACTIONS(1121), - [anon_sym_end] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1121), - [anon_sym_method] = ACTIONS(1121), - [anon_sym_initializer] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1119), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [298] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(298), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(298), - [sym__identifier] = ACTIONS(1586), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_QMARK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1595), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(1598), - [anon_sym_false] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1601), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1604), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1607), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1610), - [anon_sym_LBRACE_LT] = ACTIONS(1613), - [anon_sym_begin] = ACTIONS(1616), - [sym_ocamlyacc_value] = ACTIONS(1619), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1622), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1625), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1628), - [anon_sym_SQUOTE] = ACTIONS(1631), - [anon_sym_DQUOTE] = ACTIONS(1634), - [sym_prefix_operator] = ACTIONS(1637), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym_let_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(1640), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(1643), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [299] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(299), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(298), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [300] = { - [sym__simple_expression] = STATE(1818), - [sym_typed_expression] = STATE(1843), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1843), - [sym_hash_expression] = STATE(1843), - [sym_field_get_expression] = STATE(1843), - [sym_array_get_expression] = STATE(1843), - [sym_string_get_expression] = STATE(1843), - [sym_bigarray_get_expression] = STATE(1843), - [sym_coercion_expression] = STATE(1843), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(300), - [sym__extension] = STATE(1818), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym__label] = STATE(1928), - [sym_tag] = STATE(1843), - [aux_sym_class_application_repeat1] = STATE(298), - [sym__identifier] = ACTIONS(1233), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_RBRACK] = ACTIONS(1365), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_end] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(261), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(283), - [anon_sym_LBRACE_PERCENT] = ACTIONS(285), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [301] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(301), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1096), - [sym__mult_operator] = STATE(1097), - [sym__add_operator] = STATE(1099), - [sym__and_operator] = STATE(1100), - [sym__or_operator] = STATE(1106), - [sym__assign_operator] = STATE(1108), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1646), - [anon_sym_constraint] = ACTIONS(1185), - [anon_sym_val] = ACTIONS(1185), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(493), - [anon_sym_inherit] = ACTIONS(1185), - [anon_sym_method] = ACTIONS(1185), - [anon_sym_initializer] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1568), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(565), - [anon_sym_LBRACE_PERCENT] = ACTIONS(567), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1570), - [sym__rel_operator] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [302] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(302), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [303] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(303), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym__identifier] = ACTIONS(1648), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(1589), - [anon_sym_QMARK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1651), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1657), - [anon_sym_false] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1660), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(1663), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1666), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1669), - [anon_sym_LBRACE_LT] = ACTIONS(1672), - [anon_sym_begin] = ACTIONS(1675), - [sym_ocamlyacc_value] = ACTIONS(1678), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1681), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1684), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(1687), - [anon_sym_SQUOTE] = ACTIONS(1690), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym_prefix_operator] = ACTIONS(1696), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym_let_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(1699), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(1702), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [304] = { - [sym__simple_expression] = STATE(1847), - [sym_typed_expression] = STATE(1853), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym__argument] = STATE(1930), - [sym_labeled_argument] = STATE(1929), - [sym_prefix_expression] = STATE(1853), - [sym_hash_expression] = STATE(1853), - [sym_field_get_expression] = STATE(1853), - [sym_array_get_expression] = STATE(1853), - [sym_string_get_expression] = STATE(1853), - [sym_bigarray_get_expression] = STATE(1853), - [sym_coercion_expression] = STATE(1853), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(304), - [sym__extension] = STATE(1847), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym__label] = STATE(1935), - [sym_tag] = STATE(1853), - [aux_sym_class_application_repeat1] = STATE(303), - [ts_builtin_sym_end] = ACTIONS(1365), - [sym__identifier] = ACTIONS(1253), - [anon_sym_SEMI_SEMI] = ACTIONS(1365), - [anon_sym_let] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1235), - [anon_sym_QMARK] = ACTIONS(1235), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_external] = ACTIONS(1367), - [anon_sym_type] = ACTIONS(1367), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_SEMI] = ACTIONS(1367), - [anon_sym_exception] = ACTIONS(1367), - [anon_sym_module] = ACTIONS(1367), - [anon_sym_open] = ACTIONS(1367), - [anon_sym_include] = ACTIONS(1367), - [anon_sym_class] = ACTIONS(1367), - [anon_sym_object] = ACTIONS(41), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1367), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(73), - [anon_sym_LBRACE_PERCENT] = ACTIONS(75), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1365), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1365), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_let_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_directive_token1] = ACTIONS(1365), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [305] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3535), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(305), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__attribute] = STATE(514), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_and] = ACTIONS(107), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(107), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(103), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_and_operator] = ACTIONS(103), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [306] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(306), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1183), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1183), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1183), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1185), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1705), - [anon_sym_RBRACE] = ACTIONS(1183), - [anon_sym_end] = ACTIONS(1185), - [anon_sym_with] = ACTIONS(1185), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_then] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [307] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2811), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(307), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__attribute] = STATE(556), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(107), - [anon_sym_for] = ACTIONS(971), - [anon_sym_to] = ACTIONS(107), - [anon_sym_downto] = ACTIONS(107), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [308] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(308), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [309] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(309), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [310] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(310), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [311] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(311), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [312] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(312), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [313] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(313), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [314] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(314), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [315] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(315), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1725), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [316] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(316), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [317] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(317), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [318] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(318), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [319] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(319), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [320] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(320), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [321] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(321), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [322] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(322), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [323] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(323), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1290), - [sym__mult_operator] = STATE(1294), - [sym__add_operator] = STATE(1300), - [sym__and_operator] = STATE(1303), - [sym__or_operator] = STATE(1304), - [sym__assign_operator] = STATE(1305), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1717), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1719), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1721), - [sym__rel_operator] = ACTIONS(1723), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [324] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9737), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(324), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(613), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1727), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [325] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(325), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [326] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9245), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(326), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(669), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1745), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [327] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(327), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [328] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(328), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [329] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(329), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [330] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(330), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [331] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8951), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(331), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(740), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1751), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [332] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8680), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(332), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(783), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1753), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [333] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(333), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [334] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(334), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_done] = ACTIONS(1159), - [anon_sym_to] = ACTIONS(1159), - [anon_sym_downto] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [335] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9700), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(335), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(628), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1757), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [336] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9325), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(336), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(941), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1759), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [337] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(337), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1175), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1175), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1173), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym_and_operator] = ACTIONS(1173), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [338] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(338), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_done] = ACTIONS(1171), - [anon_sym_to] = ACTIONS(1171), - [anon_sym_downto] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [339] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9036), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(339), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(922), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1761), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [340] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(340), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1181), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1181), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym_and_operator] = ACTIONS(1179), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [341] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(341), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1167), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1167), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1165), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1165), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [342] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(342), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_done] = ACTIONS(1145), - [anon_sym_to] = ACTIONS(1145), - [anon_sym_downto] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [343] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9330), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(343), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(648), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1767), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [344] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9131), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(344), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(693), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1769), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [345] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9100), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(345), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(937), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [346] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(346), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [347] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8833), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(347), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(762), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1773), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [348] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2084), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(348), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(617), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_do] = ACTIONS(107), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [349] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(349), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [350] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8710), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(350), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(916), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1775), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [351] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(351), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_done] = ACTIONS(1181), - [anon_sym_to] = ACTIONS(1181), - [anon_sym_downto] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [352] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(352), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1777), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_done] = ACTIONS(1185), - [anon_sym_to] = ACTIONS(1185), - [anon_sym_downto] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [353] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(353), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1145), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1145), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1143), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [354] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8533), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(354), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(804), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1779), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [355] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9387), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(355), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(755), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1781), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [356] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4531), - [sym__sequence_expression] = STATE(8746), - [sym__sequence_expression_ext] = STATE(8764), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(8749), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(356), - [sym__extension] = STATE(962), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(866), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DASH_GT] = ACTIONS(103), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [357] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(357), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [358] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(358), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_done] = ACTIONS(1175), - [anon_sym_to] = ACTIONS(1175), - [anon_sym_downto] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [359] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(359), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_done] = ACTIONS(1167), - [anon_sym_to] = ACTIONS(1167), - [anon_sym_downto] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [360] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(360), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1783), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [361] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(361), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1163), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1163), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1161), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1161), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [362] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(362), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1171), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1171), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1169), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1169), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [363] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(363), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [364] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(364), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_done] = ACTIONS(1163), - [anon_sym_to] = ACTIONS(1163), - [anon_sym_downto] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [365] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9039), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(365), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(718), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1785), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [366] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(366), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [367] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(367), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [368] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(368), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [369] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9387), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(369), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(755), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1787), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [370] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8496), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(370), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(849), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1789), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [371] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(371), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [372] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(372), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1159), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1159), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1157), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1157), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [373] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(373), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_done] = ACTIONS(1121), - [anon_sym_to] = ACTIONS(1121), - [anon_sym_downto] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [374] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(374), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1121), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1121), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1119), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [375] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8325), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(375), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(821), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_end] = ACTIONS(1791), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [376] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8657), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(376), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(606), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [377] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(377), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(547), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [378] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8658), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(378), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(598), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [379] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8699), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(379), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(578), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [380] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4384), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_refutation_case] = STATE(4384), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(380), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [381] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3282), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3282), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(381), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [382] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8138), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(382), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(686), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [383] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(383), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [384] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7899), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(384), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(919), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [385] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8700), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(385), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(576), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [386] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(386), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__pow_operator] = STATE(1123), - [sym__mult_operator] = STATE(1128), - [sym__add_operator] = STATE(1129), - [sym__and_operator] = STATE(1131), - [sym__or_operator] = STATE(1133), - [sym__assign_operator] = STATE(1141), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1329), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1185), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1763), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1803), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1747), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1749), - [sym__rel_operator] = ACTIONS(1765), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym_and_operator] = ACTIONS(1183), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [387] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7935), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(387), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(954), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [388] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7967), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(388), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(742), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [389] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7946), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(389), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(715), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [390] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7934), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(390), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(884), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [391] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(391), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [392] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8616), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(392), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(625), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [393] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4325), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_refutation_case] = STATE(4325), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(393), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [394] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8615), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(394), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(626), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [395] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4384), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_refutation_case] = STATE(4384), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(395), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [396] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(396), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [397] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8480), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(397), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(907), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [398] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8149), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(398), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(519), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [399] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8483), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(399), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(908), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [400] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(400), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [401] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8572), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(401), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(654), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [402] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8573), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(402), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(651), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [403] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(403), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [404] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4862), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_refutation_case] = STATE(4862), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(404), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [405] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8529), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(405), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(685), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [406] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7969), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(406), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(743), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [407] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8154), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(407), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(892), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [408] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8309), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(408), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(601), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [409] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8317), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(409), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(833), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [410] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8528), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(410), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(701), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [411] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8318), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(411), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(832), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [412] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3291), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3291), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(412), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [413] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8159), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(413), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(939), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [414] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(414), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [415] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8001), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(415), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(788), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [416] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9286), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(416), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(546), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [417] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7880), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(417), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(553), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [418] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8485), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(418), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(727), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [419] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8082), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(419), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(878), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [420] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8484), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(420), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(737), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [421] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7965), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(421), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(739), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [422] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(422), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [423] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8041), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(423), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(542), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [424] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8108), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(424), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(883), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [425] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8137), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(425), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(752), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [426] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3282), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3282), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(426), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [427] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(427), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [428] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9345), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(428), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(890), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [429] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8741), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(429), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(562), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [430] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8371), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(430), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(509), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [431] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8374), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(431), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(754), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [432] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8742), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(432), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(558), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [433] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9335), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(433), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(935), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [434] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(434), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [435] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8435), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(435), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(747), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [436] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8434), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(436), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(749), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [437] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3291), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3291), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(437), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [438] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8725), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(438), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(929), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [439] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7900), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(439), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(607), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [440] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(440), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [441] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8782), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(441), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(550), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [442] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3282), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3282), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(442), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [443] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8733), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(443), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(927), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [444] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8783), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(444), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(544), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [445] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4325), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_refutation_case] = STATE(4325), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(445), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1793), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [446] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3230), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3230), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(446), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [447] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3291), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_refutation_case] = STATE(3291), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(447), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1795), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [448] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3227), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_refutation_case] = STATE(3227), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(448), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_DOT] = ACTIONS(1797), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [449] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4850), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_refutation_case] = STATE(4850), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(449), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1817), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [450] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8070), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(450), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__attribute] = STATE(858), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [anon_sym_PERCENT] = ACTIONS(1177), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [451] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(451), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [452] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(452), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1819), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [453] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(453), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1821), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [454] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(454), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [455] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8897), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(455), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(1829), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [456] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(456), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [457] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(457), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [458] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(458), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [459] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(459), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [460] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(460), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [461] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(461), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [462] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(462), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1841), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1183), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [463] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(463), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [464] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(464), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [465] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(465), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [466] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(466), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1843), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [467] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(467), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [468] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(468), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1845), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [469] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(9406), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(469), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(1847), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [470] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(470), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1185), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1849), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [471] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(471), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [472] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(472), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1851), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [473] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(473), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1853), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [474] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(474), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1855), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [475] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(475), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [476] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(476), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [477] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(477), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1857), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [478] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(478), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [479] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(479), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [480] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(480), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1179), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [481] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(481), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1169), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [482] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(482), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1165), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [483] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(483), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1161), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [484] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(484), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1859), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [485] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(485), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1173), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [486] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(486), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1145), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1143), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [487] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(487), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1861), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [488] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(488), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [489] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(489), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1159), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1157), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [490] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(490), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_PIPE] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [491] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(491), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1865), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [492] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(492), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1867), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [493] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(493), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_PIPE] = ACTIONS(1171), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [494] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(494), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1869), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [495] = { - [sym__module_typed] = STATE(8105), - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(495), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1871), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [496] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(496), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1877), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [497] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(497), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1879), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [498] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(498), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1167), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [499] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(499), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1121), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [500] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(500), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1881), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [501] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(501), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__pow_operator] = STATE(1224), - [sym__mult_operator] = STATE(1211), - [sym__add_operator] = STATE(1198), - [sym__and_operator] = STATE(1090), - [sym__or_operator] = STATE(1187), - [sym__assign_operator] = STATE(1181), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1332), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1755), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1883), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1737), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_done] = ACTIONS(1185), - [anon_sym_to] = ACTIONS(1185), - [anon_sym_downto] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1741), - [sym__rel_operator] = ACTIONS(1743), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [502] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(502), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1885), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [503] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(9221), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(503), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(1887), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [504] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(504), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_PIPE] = ACTIONS(1175), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [505] = { - [sym__module_typed] = STATE(8259), - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(505), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_COLON_GT] = ACTIONS(1889), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(1891), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(1875), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [506] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8455), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(506), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_done] = ACTIONS(1893), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [507] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(507), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__pow_operator] = STATE(1210), - [sym__mult_operator] = STATE(1199), - [sym__add_operator] = STATE(1075), - [sym__and_operator] = STATE(1191), - [sym__or_operator] = STATE(1180), - [sym__assign_operator] = STATE(1173), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1338), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1831), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_PIPE] = ACTIONS(1163), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1833), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1835), - [sym__rel_operator] = ACTIONS(1837), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [508] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5134), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(508), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [509] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8387), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(509), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [510] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(510), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [511] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8113), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(511), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [512] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(512), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [513] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8310), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(513), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [514] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3505), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(514), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [515] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(515), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7456), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1895), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1897), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [516] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(516), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [517] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(517), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7463), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1899), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1901), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [518] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2823), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(518), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [519] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7929), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(519), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [520] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8112), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(520), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [521] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(521), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [522] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8088), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(522), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [523] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(8086), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(523), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [524] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(524), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [525] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4531), - [sym__sequence_expression] = STATE(8746), - [sym__sequence_expression_ext] = STATE(8294), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(8749), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(525), - [sym__extension] = STATE(962), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [526] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(6628), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(526), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [527] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(527), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [528] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(528), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [529] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2823), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(529), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [530] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(7964), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(530), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [531] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(7952), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(531), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [532] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2823), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(532), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [533] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(533), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [534] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5099), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(534), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [535] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(535), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [536] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9345), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(536), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [537] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(537), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [538] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(538), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [539] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5088), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(539), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [540] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(540), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7600), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1903), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1905), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [541] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(541), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7615), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1907), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1909), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [542] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7961), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(542), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [543] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3251), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(543), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [544] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8792), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(544), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [545] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(545), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [546] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9244), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(546), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [547] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9247), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(547), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [548] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(548), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [549] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(549), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [550] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8791), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(550), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [551] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9290), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(551), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [552] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8782), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(552), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [553] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7914), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(553), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [554] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3216), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(554), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [555] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5134), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(555), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [556] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2823), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(556), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [557] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(557), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [558] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8751), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(558), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [559] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3505), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(559), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [560] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4403), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(560), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [561] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(561), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [562] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8750), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(562), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [563] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8396), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(563), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [564] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8398), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(564), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [565] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8403), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(565), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [566] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9692), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(566), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [567] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9694), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(567), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [568] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9696), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(568), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [569] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8741), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(569), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [570] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(570), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [571] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(571), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [572] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5110), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(572), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [573] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6161), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(573), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [574] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5110), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(574), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [575] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5088), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(575), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [576] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8709), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(576), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [577] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3290), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(577), - [sym__extension] = STATE(214), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [578] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8708), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(578), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [579] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(579), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [580] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6160), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(580), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [581] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8699), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(581), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [582] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4403), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(582), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [583] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(583), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1173), - [anon_sym_PLUS] = ACTIONS(1175), - [anon_sym_DASH] = ACTIONS(1175), - [anon_sym_COLON_EQ] = ACTIONS(1173), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1173), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1175), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1173), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1175), - [anon_sym_do] = ACTIONS(1175), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1175), - [anon_sym_DASH_DOT] = ACTIONS(1175), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1173), - [anon_sym_lsl] = ACTIONS(1175), - [anon_sym_lsr] = ACTIONS(1175), - [anon_sym_asr] = ACTIONS(1175), - [aux_sym__mult_operator_token1] = ACTIONS(1175), - [anon_sym_mod] = ACTIONS(1175), - [anon_sym_land] = ACTIONS(1175), - [anon_sym_lor] = ACTIONS(1175), - [anon_sym_lxor] = ACTIONS(1175), - [aux_sym__add_operator_token1] = ACTIONS(1175), - [sym__concat_operator] = ACTIONS(1173), - [sym__rel_operator] = ACTIONS(1175), - [anon_sym_AMP_AMP] = ACTIONS(1175), - [anon_sym_or] = ACTIONS(1175), - [anon_sym_PIPE_PIPE] = ACTIONS(1175), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [584] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3246), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(584), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [585] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3245), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(585), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [586] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4362), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(586), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [587] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3242), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(587), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [588] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(588), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7728), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1911), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1913), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [589] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4403), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(589), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [590] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(590), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7748), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1915), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1917), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [591] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3241), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(591), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [592] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6155), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(592), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [593] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3505), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(593), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [594] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3297), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(594), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [595] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4297), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(595), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [596] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4293), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(596), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [597] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5128), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(597), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [598] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8667), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(598), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [599] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4292), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(599), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [600] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4289), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(600), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [601] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8282), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(601), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [602] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(602), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1167), - [anon_sym_do] = ACTIONS(1167), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [603] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4248), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(603), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [604] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(604), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1169), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1169), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1169), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1171), - [anon_sym_do] = ACTIONS(1171), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [605] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4297), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(605), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [606] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8666), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(606), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [607] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8087), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(607), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [608] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3278), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(608), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [609] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9708), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(609), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [610] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9709), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(610), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [611] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9710), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(611), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [612] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8657), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(612), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [613] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9720), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(613), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [614] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3299), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(614), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [615] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9758), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(615), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [616] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9276), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(616), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [617] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(617), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [618] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(618), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7270), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1929), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [619] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8841), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(619), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [620] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(620), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7481), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1931), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1933), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [621] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9746), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(621), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [622] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9744), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(622), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [623] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6144), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(623), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [624] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9742), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(624), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [625] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8625), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(625), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [626] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8624), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(626), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [627] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3276), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(627), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [628] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9722), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(628), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [629] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5088), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(629), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [630] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3207), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(630), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [631] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9668), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(631), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [632] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(632), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1179), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1179), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1181), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1181), - [anon_sym_do] = ACTIONS(1181), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1179), - [sym__rel_operator] = ACTIONS(1181), - [anon_sym_AMP_AMP] = ACTIONS(1181), - [anon_sym_or] = ACTIONS(1181), - [anon_sym_PIPE_PIPE] = ACTIONS(1181), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [633] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9666), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(633), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [634] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6133), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(634), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [635] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3293), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(635), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [636] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9664), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(636), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [637] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(637), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [638] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4362), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(638), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [639] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9634), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(639), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [640] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3301), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(640), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [641] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8615), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(641), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [642] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(642), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [643] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9616), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(643), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [644] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9629), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(644), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [645] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(645), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [646] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(646), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7816), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1937), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [647] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(647), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7809), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1941), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [648] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9486), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(648), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [649] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(649), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [650] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3272), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(650), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [651] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8582), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(651), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [652] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7878), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(652), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [653] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(653), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1121), - [anon_sym_mod] = ACTIONS(1121), - [anon_sym_land] = ACTIONS(1121), - [anon_sym_lor] = ACTIONS(1121), - [anon_sym_lxor] = ACTIONS(1121), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [654] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8581), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(654), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [655] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3275), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(655), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [656] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5128), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(656), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [657] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9313), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(657), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [658] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9308), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(658), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [659] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9304), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(659), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [660] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(660), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1121), - [anon_sym_DASH] = ACTIONS(1121), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1121), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1119), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1121), - [anon_sym_DASH_DOT] = ACTIONS(1121), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1121), - [sym__concat_operator] = ACTIONS(1119), - [sym__rel_operator] = ACTIONS(1121), - [anon_sym_AMP_AMP] = ACTIONS(1121), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [661] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8572), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(661), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [662] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6127), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(662), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [663] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(663), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1121), - [anon_sym_PIPE_PIPE] = ACTIONS(1121), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [664] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9288), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(664), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [665] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9284), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(665), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [666] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9282), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(666), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [667] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(667), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [668] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(668), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [669] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9265), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(669), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [670] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(670), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7746), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1943), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1945), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [671] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(671), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1119), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_do] = ACTIONS(1121), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [672] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(672), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7738), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1949), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [673] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(673), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1161), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1163), - [anon_sym_do] = ACTIONS(1163), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [674] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(674), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7783), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1953), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [675] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(675), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [676] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3207), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(676), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [677] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9214), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(677), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [678] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9212), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(678), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [679] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9209), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(679), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [680] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9159), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(680), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [681] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9192), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(681), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [682] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3272), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(682), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [683] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3297), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(683), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [684] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(684), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7504), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1957), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [685] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8538), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(685), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [686] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8275), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(686), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [687] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9190), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(687), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [688] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(688), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1143), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1145), - [anon_sym_do] = ACTIONS(1145), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [689] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9187), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(689), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [690] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9168), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(690), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [691] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(6720), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(691), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [692] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4470), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3216), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(692), - [sym__extension] = STATE(865), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [693] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9170), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(693), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [694] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3297), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(694), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [695] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(695), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1157), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1159), - [anon_sym_do] = ACTIONS(1159), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [696] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7997), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(696), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [697] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3275), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(697), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [698] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3301), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(698), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [699] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(699), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7773), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1961), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [700] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(700), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7244), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1965), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [701] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8537), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(701), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [702] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(702), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [703] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8528), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(703), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [704] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9096), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(704), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [705] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9094), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(705), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [706] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9093), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(706), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [707] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5134), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(707), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [708] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9006), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(708), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [709] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9085), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(709), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [710] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4297), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(710), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [711] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(711), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [712] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4293), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(712), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [713] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4292), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(713), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [714] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9081), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(714), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [715] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7862), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(715), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [716] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9076), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(716), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [717] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6197), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(717), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [718] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9060), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(718), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [719] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4289), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(719), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [720] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(720), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7580), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1969), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [721] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(721), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [722] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3276), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(722), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [723] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(723), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [724] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6205), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(724), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [725] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5110), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(725), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [726] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3216), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(726), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [727] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8494), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(727), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [728] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3299), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(728), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [729] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6209), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(729), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [730] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9004), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(730), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [731] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9001), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(731), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [732] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8996), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(732), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [733] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6217), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(733), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [734] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8987), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(734), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [735] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3241), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(735), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [736] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8982), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(736), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [737] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8493), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(737), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [738] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8980), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(738), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [739] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7840), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(739), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [740] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8966), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(740), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [741] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(741), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7673), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1973), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [742] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7912), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(742), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [743] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7963), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(743), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [744] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(744), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7669), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1977), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [745] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3207), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(745), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [746] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8484), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(746), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [747] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8447), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(747), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [748] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8921), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(748), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [749] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8446), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(749), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [750] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8919), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(750), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [751] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8434), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(751), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [752] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8092), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(752), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [753] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8866), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(753), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [754] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8389), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(754), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [755] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9306), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(755), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [756] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8895), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(756), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [757] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8882), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(757), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [758] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3216), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(758), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [759] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5128), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(759), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [760] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8876), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(760), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [761] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3207), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(761), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [762] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8857), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(762), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [763] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5099), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(763), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [764] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3505), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(764), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [765] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(6711), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(765), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [766] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8371), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(766), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [767] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3241), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(767), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [768] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(768), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7426), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1981), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [769] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(769), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7417), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1985), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [770] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2650), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(770), - [sym__extension] = STATE(122), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [771] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(3046), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5134), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(771), - [sym__extension] = STATE(175), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [772] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9215), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(772), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [773] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(773), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7554), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1989), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [774] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3242), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(774), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [775] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8777), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(775), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [776] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8776), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(776), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [777] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8773), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(777), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [778] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9213), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(778), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [779] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8757), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(779), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [780] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8755), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(780), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [781] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8752), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(781), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [782] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9211), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(782), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [783] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8717), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(783), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [784] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3245), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(784), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [785] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3246), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(785), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [786] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(786), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [787] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(787), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7549), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [788] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7962), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(788), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [789] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4248), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(789), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [790] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(790), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [791] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6182), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(791), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [792] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8634), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(792), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [793] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9161), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(793), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [794] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8632), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(794), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [795] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8608), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(795), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [796] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(796), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [797] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9160), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(797), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [798] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8589), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(798), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [799] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8586), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(799), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [800] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9158), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(800), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [801] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8585), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(801), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [802] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3241), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(802), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [803] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9143), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(803), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [804] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8553), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(804), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [805] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7984), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(805), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [806] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(806), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [807] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3242), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(807), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [808] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3245), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(808), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [809] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9129), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(809), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [810] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8465), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(810), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [811] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8464), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(811), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [812] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8463), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(812), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [813] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9127), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(813), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [814] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7966), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(814), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [815] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8427), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(815), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [816] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8422), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(816), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [817] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8412), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(817), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [818] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3246), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(818), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [819] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(3214), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(819), - [sym__extension] = STATE(213), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [820] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(820), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7585), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(1997), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [821] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8364), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(821), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [822] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8294), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(822), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [823] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(823), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [824] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(824), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [825] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3552), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3251), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(825), - [sym__extension] = STATE(291), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [826] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(826), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [827] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9118), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(827), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [828] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(828), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [829] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8377), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(829), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [830] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8378), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(830), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [831] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8379), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(831), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [832] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8329), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(832), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [833] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8328), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(833), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [834] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(834), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [835] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3465), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3293), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(835), - [sym__extension] = STATE(239), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [836] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4008), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4326), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(836), - [sym__extension] = STATE(315), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [837] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8317), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(837), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [838] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(838), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [839] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8414), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(839), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [840] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8424), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(840), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [841] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(841), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7471), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2001), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [842] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6163), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(842), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [843] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8425), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(843), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [844] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4293), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(844), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [845] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(845), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7451), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2005), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [846] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4292), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(846), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [847] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(847), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [848] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5099), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(848), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [849] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8460), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(849), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [850] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4289), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(850), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [851] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3293), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(851), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [852] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(852), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7687), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2009), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [853] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3242), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(853), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [854] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(854), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [855] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3272), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(855), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [856] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3297), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(856), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [857] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6124), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(857), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [858] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8006), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(858), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [859] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3245), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(859), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [860] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3275), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(860), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [861] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3301), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(861), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [862] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3246), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(862), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [863] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3276), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(863), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [864] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(2082), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(864), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [865] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(865), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_else] = ACTIONS(1185), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [866] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4531), - [sym__sequence_expression] = STATE(8746), - [sym__sequence_expression_ext] = STATE(8774), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(8749), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(866), - [sym__extension] = STATE(962), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [867] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4326), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(867), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [868] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(868), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7608), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2013), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2015), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [869] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3299), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(869), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [870] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3669), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3251), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(870), - [sym__extension] = STATE(287), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [871] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(871), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7663), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2017), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2019), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [872] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(872), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7276), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2021), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2023), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [873] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8571), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(873), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [874] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8576), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(874), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [875] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5088), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(875), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [876] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8577), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(876), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [877] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(877), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7269), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2025), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2027), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [878] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7989), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(878), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [879] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2928), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(879), - [sym__extension] = STATE(181), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [880] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(3119), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(5110), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(880), - [sym__extension] = STATE(196), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [881] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(881), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7616), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2029), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2031), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [882] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(882), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [883] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7983), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(883), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [884] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7958), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(884), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [885] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(6625), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(885), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [886] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3217), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(886), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [887] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3251), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(887), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [888] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6189), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(888), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [889] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8620), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(889), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [890] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9121), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(890), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [891] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6215), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(891), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [892] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8117), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(892), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [893] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2790), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3220), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(893), - [sym__extension] = STATE(163), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [894] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6222), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(894), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [895] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4148), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(4362), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(895), - [sym__extension] = STATE(360), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [896] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9757), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(896), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [897] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6247), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(897), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [898] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6227), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(898), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [899] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8622), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(899), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [900] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(900), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7256), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2033), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2035), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [901] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4269), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(7933), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(901), - [sym__extension] = STATE(501), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [902] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8623), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(902), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [903] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(903), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [aux_sym_list_expression_repeat1] = STATE(7262), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2037), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2039), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [904] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8733), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(904), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [905] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8300), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(905), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [906] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9745), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(906), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [907] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8448), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(907), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [908] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8450), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(908), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [909] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6229), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(909), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [910] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9748), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(910), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [911] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4184), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(6800), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(911), - [sym__extension] = STATE(386), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [912] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2795), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5128), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(912), - [sym__extension] = STATE(164), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [913] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8292), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(913), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [914] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4299), - [sym__sequence_expression] = STATE(3543), - [sym__sequence_expression_ext] = STATE(3505), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(3542), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(914), - [sym__extension] = STATE(462), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [915] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2858), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(5099), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(915), - [sym__extension] = STATE(176), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [916] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8669), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(916), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [917] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9733), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(917), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [918] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9474), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(918), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [919] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7886), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(919), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [920] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9656), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(920), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [921] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9655), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(921), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [922] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8975), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(922), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [923] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9653), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(923), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [924] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9435), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(924), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [925] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9434), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(925), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [926] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3253), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(926), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [927] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8698), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(927), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [928] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6134), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(928), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [929] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8696), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(929), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [930] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3087), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(930), - [sym__extension] = STATE(200), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [931] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9425), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(931), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [932] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3237), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(932), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [933] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3464), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3278), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(933), - [sym__extension] = STATE(247), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [934] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4343), - [sym__sequence_expression] = STATE(3273), - [sym__sequence_expression_ext] = STATE(3278), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_sequence_expression] = STATE(3280), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(934), - [sym__extension] = STATE(470), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [935] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9077), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(935), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [936] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4116), - [sym__sequence_expression] = STATE(4256), - [sym__sequence_expression_ext] = STATE(4248), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_sequence_expression] = STATE(4257), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(936), - [sym__extension] = STATE(352), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [937] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9225), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(937), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [938] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7957), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(938), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [939] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7949), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(939), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [940] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(7947), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(940), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [941] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(9070), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(941), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [942] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8823), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(942), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [943] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8825), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(943), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [944] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8828), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(944), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [945] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8830), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(945), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [946] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8832), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(946), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [947] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8826), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(947), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [948] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6179), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(948), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [949] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8483), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(949), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [950] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3250), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(950), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [951] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2704), - [sym__sequence_expression] = STATE(2792), - [sym__sequence_expression_ext] = STATE(2823), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2793), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(951), - [sym__extension] = STATE(134), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [952] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3748), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(6184), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(952), - [sym__extension] = STATE(301), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [953] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3249), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(953), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [954] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4554), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8014), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(954), - [sym__extension] = STATE(960), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [955] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2723), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(3247), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(955), - [sym__extension] = STATE(145), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [956] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8883), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(956), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [957] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8885), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(957), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [958] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3770), - [sym__sequence_expression] = STATE(2118), - [sym__sequence_expression_ext] = STATE(8888), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_sequence_expression] = STATE(2114), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(958), - [sym__extension] = STATE(306), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [959] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(959), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1169), - [sym__mult_operator] = STATE(1166), - [sym__add_operator] = STATE(1165), - [sym__and_operator] = STATE(1125), - [sym__or_operator] = STATE(1119), - [sym__assign_operator] = STATE(1114), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1839), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1823), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2041), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1825), - [sym__rel_operator] = ACTIONS(1827), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [960] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(960), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1259), - [sym__mult_operator] = STATE(1253), - [sym__add_operator] = STATE(1248), - [sym__and_operator] = STATE(1247), - [sym__or_operator] = STATE(1235), - [sym__assign_operator] = STATE(1234), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1919), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1921), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_do] = ACTIONS(1185), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1923), - [sym__rel_operator] = ACTIONS(1925), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [961] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(961), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2045), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_GT_RBRACE] = ACTIONS(2045), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [962] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(962), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(1185), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2047), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [963] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(963), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2041), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2041), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [964] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(964), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2049), - [anon_sym_RBRACE] = ACTIONS(2049), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [965] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(965), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__pow_operator] = STATE(1086), - [sym__mult_operator] = STATE(1087), - [sym__add_operator] = STATE(1088), - [sym__and_operator] = STATE(1089), - [sym__or_operator] = STATE(1091), - [sym__assign_operator] = STATE(1093), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(221), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_COMMA] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1125), - [anon_sym_DASH] = ACTIONS(1125), - [anon_sym_COLON_EQ] = ACTIONS(1149), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_SEMI] = ACTIONS(2051), - [anon_sym_RBRACE] = ACTIONS(2051), - [anon_sym_object] = ACTIONS(493), - [anon_sym_AMP] = ACTIONS(1151), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(1574), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(1125), - [anon_sym_DASH_DOT] = ACTIONS(1125), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(1135), - [anon_sym_lsl] = ACTIONS(1137), - [anon_sym_lsr] = ACTIONS(1137), - [anon_sym_asr] = ACTIONS(1137), - [aux_sym__mult_operator_token1] = ACTIONS(1139), - [anon_sym_mod] = ACTIONS(1139), - [anon_sym_land] = ACTIONS(1139), - [anon_sym_lor] = ACTIONS(1139), - [anon_sym_lxor] = ACTIONS(1139), - [aux_sym__add_operator_token1] = ACTIONS(1125), - [sym__concat_operator] = ACTIONS(1576), - [sym__rel_operator] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1151), - [anon_sym_or] = ACTIONS(1155), - [anon_sym_PIPE_PIPE] = ACTIONS(1155), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [966] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(966), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2053), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [967] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4439), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(967), - [sym__extension] = STATE(517), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [968] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(968), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2057), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [969] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(969), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2059), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [970] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4483), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(970), - [sym__extension] = STATE(820), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2061), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [971] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(971), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2063), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [972] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4463), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(972), - [sym__extension] = STATE(871), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2065), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [973] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(973), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2067), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [974] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(974), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1330), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1279), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1279), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1713), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1275), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1715), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym_and_operator] = ACTIONS(1275), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [975] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(975), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2069), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [976] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(976), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2071), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [977] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(977), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2073), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [978] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4480), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(978), - [sym__extension] = STATE(684), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2075), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [979] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4487), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(979), - [sym__extension] = STATE(540), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2077), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [980] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(980), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2079), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [981] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4478), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(981), - [sym__extension] = STATE(541), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [982] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4440), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(982), - [sym__extension] = STATE(620), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2083), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [983] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(983), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [984] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(984), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2087), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [985] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(985), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [986] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(986), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [987] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(987), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [988] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(988), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [989] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4423), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(989), - [sym__extension] = STATE(588), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2097), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [990] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4467), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(990), - [sym__extension] = STATE(590), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2099), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [991] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(991), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [992] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(992), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2103), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [993] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(993), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2105), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [994] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(994), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2107), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [995] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(995), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [996] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(996), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2111), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [997] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(997), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2113), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [998] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(998), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2115), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [999] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(999), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2117), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1000] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1000), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2119), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1001] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1001), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2121), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1002] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1002), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2123), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1003] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1003), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2125), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1004] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4466), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1004), - [sym__extension] = STATE(900), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2127), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1005] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1005), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2129), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1006] = { - [sym__abstract_type] = STATE(9162), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6544), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1006), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9050), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(883), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(883), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(883), - [sym_and_operator] = ACTIONS(883), - [sym_match_operator] = ACTIONS(883), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1007] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4481), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1007), - [sym__extension] = STATE(646), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2173), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1008] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1008), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2175), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1009] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4479), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1009), - [sym__extension] = STATE(647), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2177), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1010] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1010), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2179), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1011] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1011), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2181), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1012] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1012), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2183), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1013] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1013), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2185), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1014] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1014), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1015] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1015), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2189), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1016] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4476), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1016), - [sym__extension] = STATE(670), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2191), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1017] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1017), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2193), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1018] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4431), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1018), - [sym__extension] = STATE(618), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1019] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4426), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1019), - [sym__extension] = STATE(720), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2197), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1020] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4450), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1020), - [sym__extension] = STATE(903), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1021] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1021), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1022] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1022), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1023] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1023), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1024] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1024), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2207), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1025] = { - [sym__abstract_type] = STATE(9162), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6571), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1025), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8665), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2215), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2215), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2215), - [sym_and_operator] = ACTIONS(2215), - [sym_match_operator] = ACTIONS(2215), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1026] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1026), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1027] = { - [sym__abstract_type] = STATE(9184), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6508), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1027), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9029), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2227), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2227), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2227), - [sym_and_operator] = ACTIONS(2227), - [sym_match_operator] = ACTIONS(2227), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1028] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1028), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1029] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4447), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1029), - [sym__extension] = STATE(768), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1030] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1030), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1031] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1031), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2235), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1032] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1032), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1033] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1033), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2239), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1034] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4427), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1034), - [sym__extension] = STATE(741), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2241), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1035] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4430), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1035), - [sym__extension] = STATE(744), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2243), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1036] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4456), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1036), - [sym__extension] = STATE(877), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1037] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4475), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1037), - [sym__extension] = STATE(672), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2247), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1038] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4455), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1038), - [sym__extension] = STATE(872), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1039] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1039), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2251), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1040] = { - [sym__abstract_type] = STATE(9336), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6496), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1040), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9524), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2261), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2261), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2261), - [sym_and_operator] = ACTIONS(2261), - [sym_match_operator] = ACTIONS(2261), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1041] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4434), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1041), - [sym__extension] = STATE(515), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2263), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1042] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1042), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1043] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1043), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2267), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1044] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1044), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2269), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1045] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4484), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1045), - [sym__extension] = STATE(868), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2271), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1046] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4441), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1046), - [sym__extension] = STATE(769), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1047] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1047), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2275), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1048] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1048), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2277), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1049] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1049), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2279), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1050] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1050), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2281), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1051] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4469), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1051), - [sym__extension] = STATE(852), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2283), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1052] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1052), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2285), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1053] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1053), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2287), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1054] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1054), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2289), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1055] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1055), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2291), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1056] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1056), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2293), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1057] = { - [sym__abstract_type] = STATE(9162), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6546), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1057), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8731), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2301), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2301), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2301), - [sym_and_operator] = ACTIONS(2301), - [sym_match_operator] = ACTIONS(2301), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1058] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1058), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2303), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1059] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4482), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1059), - [sym__extension] = STATE(881), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2305), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1060] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4432), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1060), - [sym__extension] = STATE(773), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2307), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1061] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4433), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1061), - [sym__extension] = STATE(787), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2309), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1062] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1062), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2311), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1063] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1063), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2313), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1064] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1064), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2315), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1065] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1065), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2317), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1066] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1066), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2319), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1067] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4449), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1067), - [sym__extension] = STATE(845), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2321), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1068] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4444), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1068), - [sym__extension] = STATE(700), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2323), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1069] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4446), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1069), - [sym__extension] = STATE(674), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2325), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1070] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4436), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1070), - [sym__extension] = STATE(699), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2327), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1071] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1071), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2329), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1072] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4448), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1072), - [sym__extension] = STATE(841), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_RBRACK] = ACTIONS(2331), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1073] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1073), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_PIPE_RBRACK] = ACTIONS(2333), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1074] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2661), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1074), - [sym__extension] = STATE(120), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1075] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4347), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1075), - [sym__extension] = STATE(478), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1076] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3708), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1076), - [sym__extension] = STATE(281), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1077] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3706), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1077), - [sym__extension] = STATE(277), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1078] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3699), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1078), - [sym__extension] = STATE(276), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1079] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3697), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1079), - [sym__extension] = STATE(270), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1080] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3696), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1080), - [sym__extension] = STATE(269), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1081] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3588), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1081), - [sym__extension] = STATE(285), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1082] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3590), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1082), - [sym__extension] = STATE(288), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1083] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3595), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1083), - [sym__extension] = STATE(296), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1084] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3597), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1084), - [sym__extension] = STATE(295), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1085] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3598), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1085), - [sym__extension] = STATE(294), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1086] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3599), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1086), - [sym__extension] = STATE(284), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1087] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3648), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1087), - [sym__extension] = STATE(266), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1088] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3609), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1088), - [sym__extension] = STATE(271), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1089] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3613), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1089), - [sym__extension] = STATE(273), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1090] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4136), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1090), - [sym__extension] = STATE(373), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1091] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3618), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1091), - [sym__extension] = STATE(275), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1092] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4360), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1092), - [sym__extension] = STATE(486), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1093] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3619), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1093), - [sym__extension] = STATE(278), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1094] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3620), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1094), - [sym__extension] = STATE(279), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1095] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3472), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1095), - [sym__extension] = STATE(251), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1096] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3720), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1096), - [sym__extension] = STATE(286), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1097] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3722), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1097), - [sym__extension] = STATE(289), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1098] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4134), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1098), - [sym__extension] = STATE(341), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1099] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3733), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1099), - [sym__extension] = STATE(290), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1100] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3704), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1100), - [sym__extension] = STATE(292), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1101] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2952), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1101), - [sym__extension] = STATE(190), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1102] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2954), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1102), - [sym__extension] = STATE(191), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1103] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2955), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1103), - [sym__extension] = STATE(177), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1104] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2957), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1104), - [sym__extension] = STATE(189), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1105] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2657), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1105), - [sym__extension] = STATE(111), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1106] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3658), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1106), - [sym__extension] = STATE(293), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1107] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2854), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1107), - [sym__extension] = STATE(184), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1108] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3666), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1108), - [sym__extension] = STATE(297), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1109] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2855), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1109), - [sym__extension] = STATE(183), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1110] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3746), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1110), - [sym__extension] = STATE(268), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1111] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4132), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1111), - [sym__extension] = STATE(362), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1112] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3468), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1112), - [sym__extension] = STATE(250), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1113] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4363), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1113), - [sym__extension] = STATE(483), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1114] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4371), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1114), - [sym__extension] = STATE(471), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1115] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2856), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1115), - [sym__extension] = STATE(179), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1116] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4130), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1116), - [sym__extension] = STATE(340), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1117] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3453), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1117), - [sym__extension] = STATE(255), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1118] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3654), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1118), - [sym__extension] = STATE(272), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1119] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4372), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1119), - [sym__extension] = STATE(463), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1120] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4120), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1120), - [sym__extension] = STATE(333), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1121] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3450), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1121), - [sym__extension] = STATE(248), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1122] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4118), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1122), - [sym__extension] = STATE(330), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1123] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4141), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1123), - [sym__extension] = STATE(329), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1124] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2960), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1124), - [sym__extension] = STATE(180), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1125] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4246), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1125), - [sym__extension] = STATE(454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1126] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4330), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1126), - [sym__extension] = STATE(467), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1127] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2961), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1127), - [sym__extension] = STATE(182), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1128] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4142), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1128), - [sym__extension] = STATE(328), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1129] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4144), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1129), - [sym__extension] = STATE(327), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1130] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4307), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1130), - [sym__extension] = STATE(460), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1131] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4114), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1131), - [sym__extension] = STATE(349), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1132] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3602), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1132), - [sym__extension] = STATE(267), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1133] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4111), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1133), - [sym__extension] = STATE(346), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1134] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2677), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1134), - [sym__extension] = STATE(116), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1135] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2962), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1135), - [sym__extension] = STATE(193), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1136] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3419), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1136), - [sym__extension] = STATE(256), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1137] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2655), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1137), - [sym__extension] = STATE(114), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1138] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3449), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1138), - [sym__extension] = STATE(246), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1139] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3479), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1139), - [sym__extension] = STATE(242), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1140] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2715), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1140), - [sym__extension] = STATE(142), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1141] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4112), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1141), - [sym__extension] = STATE(374), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1142] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3448), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1142), - [sym__extension] = STATE(244), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1143] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3637), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1143), - [sym__extension] = STATE(280), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1144] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2718), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1144), - [sym__extension] = STATE(135), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1145] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2701), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1145), - [sym__extension] = STATE(123), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1146] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2719), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1146), - [sym__extension] = STATE(128), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1147] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2702), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1147), - [sym__extension] = STATE(127), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1148] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2703), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1148), - [sym__extension] = STATE(124), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1149] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4359), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1149), - [sym__extension] = STATE(489), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1150] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3446), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1150), - [sym__extension] = STATE(235), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1151] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2733), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1151), - [sym__extension] = STATE(144), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1152] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4113), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1152), - [sym__extension] = STATE(361), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1153] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2964), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1153), - [sym__extension] = STATE(186), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1154] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2731), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1154), - [sym__extension] = STATE(147), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1155] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2729), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1155), - [sym__extension] = STATE(148), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1156] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2706), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1156), - [sym__extension] = STATE(149), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1157] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2707), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1157), - [sym__extension] = STATE(150), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1158] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2708), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1158), - [sym__extension] = STATE(154), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1159] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4541), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1159), - [sym__extension] = STATE(964), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1160] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2919), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1160), - [sym__extension] = STATE(187), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1161] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2710), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1161), - [sym__extension] = STATE(155), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1162] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2651), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1162), - [sym__extension] = STATE(106), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1163] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2714), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1163), - [sym__extension] = STATE(133), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1164] = { - [sym_value_definition] = STATE(9035), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2727), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1622), - [sym_array_get_expression] = STATE(1622), - [sym_string_get_expression] = STATE(1622), - [sym_bigarray_get_expression] = STATE(1622), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1164), - [sym__extension] = STATE(131), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1164), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(165), - [anon_sym_let] = ACTIONS(167), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(169), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(171), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(173), - [anon_sym_function] = ACTIONS(175), - [anon_sym_try] = ACTIONS(177), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(179), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1165] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4420), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1165), - [sym__extension] = STATE(451), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1166] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4419), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1166), - [sym__extension] = STATE(457), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1167] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2969), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1167), - [sym__extension] = STATE(188), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1168] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4525), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1168), - [sym__extension] = STATE(963), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1169] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4418), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1169), - [sym__extension] = STATE(458), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1170] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4139), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1170), - [sym__extension] = STATE(364), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1171] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4287), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1171), - [sym__extension] = STATE(507), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1172] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2883), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1172), - [sym__extension] = STATE(178), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1173] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4285), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1173), - [sym__extension] = STATE(499), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1174] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2745), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1174), - [sym__extension] = STATE(171), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1175] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4157), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1175), - [sym__extension] = STATE(342), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1176] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2684), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1176), - [sym__extension] = STATE(109), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1177] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3473), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1177), - [sym__extension] = STATE(254), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1178] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3440), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1178), - [sym__extension] = STATE(234), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1179] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4486), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1179), - [sym__extension] = STATE(695), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1180] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4280), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1180), - [sym__extension] = STATE(465), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1181] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4138), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1181), - [sym__extension] = STATE(366), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1182] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4417), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1182), - [sym__extension] = STATE(464), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1183] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2763), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1183), - [sym__extension] = STATE(172), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1184] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2762), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1184), - [sym__extension] = STATE(158), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1185] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3427), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1185), - [sym__extension] = STATE(258), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1186] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4544), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1186), - [sym__extension] = STATE(965), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1187] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4137), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1187), - [sym__extension] = STATE(325), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1188] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2761), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1188), - [sym__extension] = STATE(174), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1189] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4416), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1189), - [sym__extension] = STATE(479), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1190] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2760), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1190), - [sym__extension] = STATE(170), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1191] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4279), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1191), - [sym__extension] = STATE(461), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1192] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4415), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1192), - [sym__extension] = STATE(480), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1193] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2759), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1193), - [sym__extension] = STATE(169), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1194] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4277), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1194), - [sym__extension] = STATE(495), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1195] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2744), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1195), - [sym__extension] = STATE(168), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1196] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3461), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1196), - [sym__extension] = STATE(263), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1197] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3727), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1197), - [sym__extension] = STATE(282), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1198] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4155), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1198), - [sym__extension] = STATE(371), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1199] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4350), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1199), - [sym__extension] = STATE(456), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1200] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2743), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1200), - [sym__extension] = STATE(165), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1201] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1201), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1333), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_DOT] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1735), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_done] = ACTIONS(1279), - [anon_sym_to] = ACTIONS(1279), - [anon_sym_downto] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1739), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1202] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4115), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1202), - [sym__extension] = STATE(372), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1203] = { - [sym_value_definition] = STATE(9316), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3694), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1978), - [sym_array_get_expression] = STATE(1978), - [sym_string_get_expression] = STATE(1978), - [sym_bigarray_get_expression] = STATE(1978), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1203), - [sym__extension] = STATE(283), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1080), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(551), - [anon_sym_let] = ACTIONS(553), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(555), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(557), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(559), - [anon_sym_function] = ACTIONS(561), - [anon_sym_try] = ACTIONS(563), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(569), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1204] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3439), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1204), - [sym__extension] = STATE(228), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1205] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2742), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1205), - [sym__extension] = STATE(162), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1206] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4414), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1206), - [sym__extension] = STATE(481), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1207] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2758), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1207), - [sym__extension] = STATE(161), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1208] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2757), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1208), - [sym__extension] = STATE(160), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1209] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4413), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1209), - [sym__extension] = STATE(482), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1210] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4353), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1210), - [sym__extension] = STATE(459), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1211] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4154), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1211), - [sym__extension] = STATE(368), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1212] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2756), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1212), - [sym__extension] = STATE(159), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1213] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2687), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1213), - [sym__extension] = STATE(107), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1214] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2681), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1214), - [sym__extension] = STATE(119), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1215] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2755), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1215), - [sym__extension] = STATE(167), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1216] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2674), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1216), - [sym__extension] = STATE(121), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1217] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(3665), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1217), - [sym__extension] = STATE(274), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1218] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2668), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1218), - [sym__extension] = STATE(117), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1219] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2653), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1219), - [sym__extension] = STATE(115), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1220] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2754), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1220), - [sym__extension] = STATE(173), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1221] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4409), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1221), - [sym__extension] = STATE(485), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1222] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2693), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1222), - [sym__extension] = STATE(113), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1223] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3457), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1223), - [sym__extension] = STATE(257), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1224] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4152), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1224), - [sym__extension] = STATE(367), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1225] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3145), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1225), - [sym__extension] = STATE(197), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1226] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4135), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1226), - [sym__extension] = STATE(363), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1227] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4421), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1227), - [sym__extension] = STATE(688), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1228] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4147), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1228), - [sym__extension] = STATE(353), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1229] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3098), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1229), - [sym__extension] = STATE(201), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1230] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2680), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1230), - [sym__extension] = STATE(112), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1231] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4493), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1231), - [sym__extension] = STATE(673), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1232] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2712), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1232), - [sym__extension] = STATE(152), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1233] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2700), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1233), - [sym__extension] = STATE(146), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1234] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4492), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1234), - [sym__extension] = STATE(671), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1235] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4490), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1235), - [sym__extension] = STATE(667), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1236] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4133), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1236), - [sym__extension] = STATE(357), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1237] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3429), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1237), - [sym__extension] = STATE(261), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1238] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4127), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1238), - [sym__extension] = STATE(358), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1239] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3430), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1239), - [sym__extension] = STATE(226), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1240] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3097), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1240), - [sym__extension] = STATE(202), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1241] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3431), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1241), - [sym__extension] = STATE(265), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1242] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3432), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1242), - [sym__extension] = STATE(253), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1243] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3433), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1243), - [sym__extension] = STATE(252), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1244] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3096), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1244), - [sym__extension] = STATE(203), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1245] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3428), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1245), - [sym__extension] = STATE(241), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1246] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3471), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1246), - [sym__extension] = STATE(240), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1247] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4477), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1247), - [sym__extension] = STATE(663), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1248] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4445), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1248), - [sym__extension] = STATE(660), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1249] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3467), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1249), - [sym__extension] = STATE(233), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1250] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3434), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1250), - [sym__extension] = STATE(232), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1251] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3435), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1251), - [sym__extension] = STATE(259), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1252] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3436), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1252), - [sym__extension] = STATE(264), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1253] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4464), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1253), - [sym__extension] = STATE(653), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1254] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2716), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1254), - [sym__extension] = STATE(141), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1255] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3437), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1255), - [sym__extension] = STATE(236), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1256] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3438), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1256), - [sym__extension] = STATE(245), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1257] = { - [sym_value_definition] = STATE(8978), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3460), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1961), - [sym_array_get_expression] = STATE(1961), - [sym_string_get_expression] = STATE(1961), - [sym_bigarray_get_expression] = STATE(1961), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1257), - [sym__extension] = STATE(237), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1257), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(393), - [anon_sym_let] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(407), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(411), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(417), - [anon_sym_function] = ACTIONS(419), - [anon_sym_try] = ACTIONS(421), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(447), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1258] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4153), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1258), - [sym__extension] = STATE(334), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1259] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4435), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1259), - [sym__extension] = STATE(649), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1260] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2724), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1260), - [sym__extension] = STATE(126), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1261] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3095), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1261), - [sym__extension] = STATE(208), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1262] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4275), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1262), - [sym__extension] = STATE(475), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1263] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2728), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1263), - [sym__extension] = STATE(151), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1264] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4273), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1264), - [sym__extension] = STATE(476), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1265] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4437), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1265), - [sym__extension] = STATE(642), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1266] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2730), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1266), - [sym__extension] = STATE(138), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1267] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4460), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1267), - [sym__extension] = STATE(637), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1268] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2732), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1268), - [sym__extension] = STATE(136), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1269] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2717), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1269), - [sym__extension] = STATE(139), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1270] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2736), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1270), - [sym__extension] = STATE(156), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1271] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3064), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1271), - [sym__extension] = STATE(209), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1272] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2720), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1272), - [sym__extension] = STATE(130), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1273] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2734), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1273), - [sym__extension] = STATE(153), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1274] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2738), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1274), - [sym__extension] = STATE(125), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1275] = { - [sym_value_definition] = STATE(9448), - [sym__simple_expression] = STATE(225), - [sym__expression] = STATE(2857), - [sym_typed_expression] = STATE(1843), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1843), - [sym_array_expression] = STATE(1843), - [sym_record_expression] = STATE(1843), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1843), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1843), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1743), - [sym_array_get_expression] = STATE(1743), - [sym_string_get_expression] = STATE(1743), - [sym_bigarray_get_expression] = STATE(1743), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1843), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1843), - [sym_package_expression] = STATE(1843), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1843), - [sym_object_copy_expression] = STATE(1843), - [sym_method_invocation] = STATE(1843), - [sym_object_expression] = STATE(1843), - [sym_parenthesized_expression] = STATE(1843), - [sym_attribute] = STATE(1275), - [sym__extension] = STATE(192), - [sym_extension] = STATE(1768), - [sym_quoted_extension] = STATE(1768), - [sym__constant] = STATE(1843), - [sym_number] = STATE(1773), - [sym_character] = STATE(1773), - [sym_string] = STATE(1773), - [sym_quoted_string] = STATE(1773), - [sym_boolean] = STATE(1773), - [sym_unit] = STATE(1773), - [sym_sign_operator] = STATE(1275), - [sym__value_name] = STATE(1829), - [sym_parenthesized_operator] = STATE(1841), - [sym_value_path] = STATE(1843), - [sym_module_path] = STATE(8503), - [sym_constructor_path] = STATE(1843), - [sym_tag] = STATE(1843), - [sym__identifier] = ACTIONS(249), - [anon_sym_let] = ACTIONS(251), - [anon_sym_LPAREN] = ACTIONS(253), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(255), - [anon_sym_true] = ACTIONS(257), - [anon_sym_false] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(259), - [anon_sym_object] = ACTIONS(261), - [anon_sym_fun] = ACTIONS(263), - [anon_sym_LBRACK_PIPE] = ACTIONS(265), - [anon_sym_if] = ACTIONS(267), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(269), - [anon_sym_function] = ACTIONS(271), - [anon_sym_try] = ACTIONS(273), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(275), - [anon_sym_LBRACE_LT] = ACTIONS(277), - [anon_sym_begin] = ACTIONS(279), - [sym_ocamlyacc_value] = ACTIONS(281), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1813), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1815), - [aux_sym_number_token1] = ACTIONS(287), - [anon_sym_SQUOTE] = ACTIONS(289), - [anon_sym_DQUOTE] = ACTIONS(291), - [sym_prefix_operator] = ACTIONS(293), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(295), - [sym__capitalized_identifier] = ACTIONS(297), - [aux_sym_tag_token1] = ACTIONS(299), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1276] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4271), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1276), - [sym__extension] = STATE(490), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1277] = { - [sym_value_definition] = STATE(8671), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2753), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1665), - [sym_array_get_expression] = STATE(1665), - [sym_string_get_expression] = STATE(1665), - [sym_bigarray_get_expression] = STATE(1665), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1277), - [sym__extension] = STATE(157), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1174), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(233), - [anon_sym_let] = ACTIONS(235), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(237), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(239), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(241), - [anon_sym_function] = ACTIONS(243), - [anon_sym_try] = ACTIONS(245), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(247), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1278] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2722), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1278), - [sym__extension] = STATE(129), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1279] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3967), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1279), - [sym__extension] = STATE(318), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1280] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3993), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1280), - [sym__extension] = STATE(316), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1281] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2698), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1281), - [sym__extension] = STATE(143), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1282] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4489), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1282), - [sym__extension] = STATE(604), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1283] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3990), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1283), - [sym__extension] = STATE(310), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1284] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2660), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1284), - [sym__extension] = STATE(110), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1285] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3094), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1285), - [sym__extension] = STATE(195), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1286] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3988), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1286), - [sym__extension] = STATE(311), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1287] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3982), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1287), - [sym__extension] = STATE(320), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1288] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4457), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1288), - [sym__extension] = STATE(602), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1289] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3981), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1289), - [sym__extension] = STATE(312), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1290] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3912), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1290), - [sym__extension] = STATE(313), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1291] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4529), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1291), - [sym__extension] = STATE(961), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1292] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4425), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1292), - [sym__extension] = STATE(583), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1293] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3093), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1293), - [sym__extension] = STATE(211), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1294] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4075), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1294), - [sym__extension] = STATE(314), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1295] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3092), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1295), - [sym__extension] = STATE(210), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1296] = { - [sym_value_definition] = STATE(9040), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4534), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2645), - [sym_array_get_expression] = STATE(2645), - [sym_string_get_expression] = STATE(2645), - [sym_bigarray_get_expression] = STATE(2645), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1296), - [sym__extension] = STATE(959), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1221), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1085), - [anon_sym_let] = ACTIONS(1087), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1089), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1091), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1093), - [anon_sym_function] = ACTIONS(1095), - [anon_sym_try] = ACTIONS(1097), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1099), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1297] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3968), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1297), - [sym__extension] = STATE(322), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1298] = { - [sym_value_definition] = STATE(8517), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(4140), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2449), - [sym_array_get_expression] = STATE(2449), - [sym_string_get_expression] = STATE(2449), - [sym_bigarray_get_expression] = STATE(2449), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1298), - [sym__extension] = STATE(337), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1298), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(1009), - [anon_sym_let] = ACTIONS(1011), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(1013), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(1015), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1299] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3091), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1299), - [sym__extension] = STATE(206), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1300] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3962), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1300), - [sym__extension] = STATE(308), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1301] = { - [sym_value_definition] = STATE(9049), - [sym__simple_expression] = STATE(217), - [sym__expression] = STATE(2713), - [sym_typed_expression] = STATE(1701), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1701), - [sym_array_expression] = STATE(1701), - [sym_record_expression] = STATE(1701), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1701), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1701), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1537), - [sym_array_get_expression] = STATE(1537), - [sym_string_get_expression] = STATE(1537), - [sym_bigarray_get_expression] = STATE(1537), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1701), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1701), - [sym_package_expression] = STATE(1701), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1701), - [sym_object_copy_expression] = STATE(1701), - [sym_method_invocation] = STATE(1701), - [sym_object_expression] = STATE(1701), - [sym_parenthesized_expression] = STATE(1701), - [sym_attribute] = STATE(1301), - [sym__extension] = STATE(132), - [sym_extension] = STATE(1685), - [sym_quoted_extension] = STATE(1685), - [sym__constant] = STATE(1701), - [sym_number] = STATE(1683), - [sym_character] = STATE(1683), - [sym_string] = STATE(1683), - [sym_quoted_string] = STATE(1683), - [sym_boolean] = STATE(1683), - [sym_unit] = STATE(1683), - [sym_sign_operator] = STATE(1232), - [sym__value_name] = STATE(1657), - [sym_parenthesized_operator] = STATE(1660), - [sym_value_path] = STATE(1701), - [sym_module_path] = STATE(8479), - [sym_constructor_path] = STATE(1701), - [sym_tag] = STATE(1701), - [sym__identifier] = ACTIONS(181), - [anon_sym_let] = ACTIONS(183), - [anon_sym_LPAREN] = ACTIONS(185), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_true] = ACTIONS(189), - [anon_sym_false] = ACTIONS(189), - [anon_sym_LBRACE] = ACTIONS(191), - [anon_sym_object] = ACTIONS(193), - [anon_sym_fun] = ACTIONS(195), - [anon_sym_LBRACK_PIPE] = ACTIONS(197), - [anon_sym_if] = ACTIONS(199), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(201), - [anon_sym_function] = ACTIONS(203), - [anon_sym_try] = ACTIONS(205), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(207), - [anon_sym_LBRACE_LT] = ACTIONS(209), - [anon_sym_begin] = ACTIONS(211), - [sym_ocamlyacc_value] = ACTIONS(213), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1799), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1801), - [aux_sym_number_token1] = ACTIONS(219), - [anon_sym_SQUOTE] = ACTIONS(221), - [anon_sym_DQUOTE] = ACTIONS(223), - [sym_prefix_operator] = ACTIONS(225), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(227), - [sym__capitalized_identifier] = ACTIONS(229), - [aux_sym_tag_token1] = ACTIONS(231), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1302] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3090), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1302), - [sym__extension] = STATE(205), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1303] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3979), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1303), - [sym__extension] = STATE(317), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1304] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3977), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1304), - [sym__extension] = STATE(319), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1305] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3975), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1305), - [sym__extension] = STATE(321), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1306] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3089), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1306), - [sym__extension] = STATE(204), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1307] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3972), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1307), - [sym__extension] = STATE(309), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1308] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3117), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1308), - [sym__extension] = STATE(198), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1309] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4131), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1309), - [sym__extension] = STATE(351), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1310] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4125), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1310), - [sym__extension] = STATE(338), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1311] = { - [sym_value_definition] = STATE(9059), - [sym__simple_expression] = STATE(974), - [sym__expression] = STATE(3971), - [sym_typed_expression] = STATE(2486), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2486), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2486), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2291), - [sym_array_get_expression] = STATE(2291), - [sym_string_get_expression] = STATE(2291), - [sym_bigarray_get_expression] = STATE(2291), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2486), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1311), - [sym__extension] = STATE(323), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym_sign_operator] = STATE(1279), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym_tag] = STATE(2486), - [sym__identifier] = ACTIONS(949), - [anon_sym_let] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_object] = ACTIONS(961), - [anon_sym_fun] = ACTIONS(963), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_if] = ACTIONS(967), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(973), - [anon_sym_function] = ACTIONS(975), - [anon_sym_try] = ACTIONS(977), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1003), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1312] = { - [sym_value_definition] = STATE(8335), - [sym__simple_expression] = STATE(216), - [sym__expression] = STATE(3459), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(1974), - [sym_array_get_expression] = STATE(1974), - [sym_string_get_expression] = STATE(1974), - [sym_bigarray_get_expression] = STATE(1974), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1312), - [sym__extension] = STATE(262), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1139), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(453), - [anon_sym_let] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(457), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(459), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(461), - [anon_sym_function] = ACTIONS(463), - [anon_sym_try] = ACTIONS(465), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(473), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1313] = { - [sym_value_definition] = STATE(9468), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4312), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(1982), - [sym_array_get_expression] = STATE(1982), - [sym_string_get_expression] = STATE(1982), - [sym_bigarray_get_expression] = STATE(1982), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1313), - [sym__extension] = STATE(505), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1132), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(481), - [anon_sym_let] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(495), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(499), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(505), - [anon_sym_function] = ACTIONS(507), - [anon_sym_try] = ACTIONS(509), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(535), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1314] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4268), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1314), - [sym__extension] = STATE(493), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1315] = { - [sym_value_definition] = STATE(8724), - [sym__simple_expression] = STATE(1201), - [sym__expression] = STATE(4123), - [sym_typed_expression] = STATE(2554), - [sym_product_expression] = STATE(4341), - [sym_cons_expression] = STATE(4341), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym_application_expression] = STATE(4341), - [sym_prefix_expression] = STATE(2554), - [sym_sign_expression] = STATE(4341), - [sym_hash_expression] = STATE(2554), - [sym_infix_expression] = STATE(4341), - [sym_field_get_expression] = STATE(2437), - [sym_array_get_expression] = STATE(2437), - [sym_string_get_expression] = STATE(2437), - [sym_bigarray_get_expression] = STATE(2437), - [sym_set_expression] = STATE(4341), - [sym_if_expression] = STATE(4341), - [sym_while_expression] = STATE(4341), - [sym_for_expression] = STATE(4341), - [sym_match_expression] = STATE(4341), - [sym_function_expression] = STATE(4341), - [sym_fun_expression] = STATE(4341), - [sym_try_expression] = STATE(4341), - [sym_let_expression] = STATE(4341), - [sym_coercion_expression] = STATE(2554), - [sym_assert_expression] = STATE(4341), - [sym_lazy_expression] = STATE(4341), - [sym_let_module_expression] = STATE(4341), - [sym_let_open_expression] = STATE(4341), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_let_exception_expression] = STATE(4341), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1315), - [sym__extension] = STATE(359), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym_sign_operator] = STATE(1238), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym_tag] = STATE(2554), - [sym__identifier] = ACTIONS(1017), - [anon_sym_let] = ACTIONS(1019), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_fun] = ACTIONS(1031), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_if] = ACTIONS(1035), - [anon_sym_while] = ACTIONS(969), - [anon_sym_for] = ACTIONS(971), - [anon_sym_match] = ACTIONS(1037), - [anon_sym_function] = ACTIONS(1039), - [anon_sym_try] = ACTIONS(1041), - [anon_sym_assert] = ACTIONS(979), - [anon_sym_lazy] = ACTIONS(981), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1063), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1316] = { - [sym_value_definition] = STATE(8805), - [sym__simple_expression] = STATE(215), - [sym__expression] = STATE(2656), - [sym_typed_expression] = STATE(1548), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1548), - [sym_array_expression] = STATE(1548), - [sym_record_expression] = STATE(1548), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1548), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1548), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1438), - [sym_array_get_expression] = STATE(1438), - [sym_string_get_expression] = STATE(1438), - [sym_bigarray_get_expression] = STATE(1438), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1548), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1548), - [sym_package_expression] = STATE(1548), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1548), - [sym_object_copy_expression] = STATE(1548), - [sym_method_invocation] = STATE(1548), - [sym_object_expression] = STATE(1548), - [sym_parenthesized_expression] = STATE(1548), - [sym_attribute] = STATE(1316), - [sym__extension] = STATE(108), - [sym_extension] = STATE(1591), - [sym_quoted_extension] = STATE(1591), - [sym__constant] = STATE(1548), - [sym_number] = STATE(1628), - [sym_character] = STATE(1628), - [sym_string] = STATE(1628), - [sym_quoted_string] = STATE(1628), - [sym_boolean] = STATE(1628), - [sym_unit] = STATE(1628), - [sym_sign_operator] = STATE(1134), - [sym__value_name] = STATE(1502), - [sym_parenthesized_operator] = STATE(1497), - [sym_value_path] = STATE(1548), - [sym_module_path] = STATE(8778), - [sym_constructor_path] = STATE(1548), - [sym_tag] = STATE(1548), - [sym__identifier] = ACTIONS(101), - [anon_sym_let] = ACTIONS(105), - [anon_sym_LPAREN] = ACTIONS(109), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(111), - [anon_sym_true] = ACTIONS(113), - [anon_sym_false] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(115), - [anon_sym_object] = ACTIONS(117), - [anon_sym_fun] = ACTIONS(119), - [anon_sym_LBRACK_PIPE] = ACTIONS(121), - [anon_sym_if] = ACTIONS(123), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(125), - [anon_sym_function] = ACTIONS(127), - [anon_sym_try] = ACTIONS(129), - [anon_sym_assert] = ACTIONS(131), - [anon_sym_lazy] = ACTIONS(133), - [anon_sym_new] = ACTIONS(135), - [anon_sym_LBRACE_LT] = ACTIONS(137), - [anon_sym_begin] = ACTIONS(139), - [sym_ocamlyacc_value] = ACTIONS(141), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1805), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1807), - [aux_sym_number_token1] = ACTIONS(149), - [anon_sym_SQUOTE] = ACTIONS(151), - [anon_sym_DQUOTE] = ACTIONS(153), - [sym_prefix_operator] = ACTIONS(155), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(159), - [sym__capitalized_identifier] = ACTIONS(161), - [aux_sym_tag_token1] = ACTIONS(163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1317] = { - [sym_value_definition] = STATE(9624), - [sym__simple_expression] = STATE(212), - [sym__expression] = STATE(4485), - [sym_typed_expression] = STATE(1407), - [sym_product_expression] = STATE(3206), - [sym_cons_expression] = STATE(3206), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym_application_expression] = STATE(3206), - [sym_prefix_expression] = STATE(1407), - [sym_sign_expression] = STATE(3206), - [sym_hash_expression] = STATE(1407), - [sym_infix_expression] = STATE(3206), - [sym_field_get_expression] = STATE(2671), - [sym_array_get_expression] = STATE(2671), - [sym_string_get_expression] = STATE(2671), - [sym_bigarray_get_expression] = STATE(2671), - [sym_set_expression] = STATE(3206), - [sym_if_expression] = STATE(3206), - [sym_while_expression] = STATE(3206), - [sym_for_expression] = STATE(3206), - [sym_match_expression] = STATE(3206), - [sym_function_expression] = STATE(3206), - [sym_fun_expression] = STATE(3206), - [sym_try_expression] = STATE(3206), - [sym_let_expression] = STATE(3206), - [sym_coercion_expression] = STATE(1407), - [sym_assert_expression] = STATE(3206), - [sym_lazy_expression] = STATE(3206), - [sym_let_module_expression] = STATE(3206), - [sym_let_open_expression] = STATE(3206), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_let_exception_expression] = STATE(3206), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1317), - [sym__extension] = STATE(632), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym_sign_operator] = STATE(1292), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym_tag] = STATE(1407), - [sym__identifier] = ACTIONS(1101), - [anon_sym_let] = ACTIONS(1103), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_fun] = ACTIONS(1105), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_if] = ACTIONS(1107), - [anon_sym_while] = ACTIONS(501), - [anon_sym_for] = ACTIONS(503), - [anon_sym_match] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(1111), - [anon_sym_try] = ACTIONS(1113), - [anon_sym_assert] = ACTIONS(511), - [anon_sym_lazy] = ACTIONS(513), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1115), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1318] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3088), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1318), - [sym__extension] = STATE(207), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1319] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4251), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1319), - [sym__extension] = STATE(498), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1320] = { - [sym_value_definition] = STATE(8593), - [sym__simple_expression] = STATE(1328), - [sym__expression] = STATE(4355), - [sym_typed_expression] = STATE(1541), - [sym_product_expression] = STATE(3285), - [sym_cons_expression] = STATE(3285), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym_application_expression] = STATE(3285), - [sym_prefix_expression] = STATE(1541), - [sym_sign_expression] = STATE(3285), - [sym_hash_expression] = STATE(1541), - [sym_infix_expression] = STATE(3285), - [sym_field_get_expression] = STATE(2646), - [sym_array_get_expression] = STATE(2646), - [sym_string_get_expression] = STATE(2646), - [sym_bigarray_get_expression] = STATE(2646), - [sym_set_expression] = STATE(3285), - [sym_if_expression] = STATE(3285), - [sym_while_expression] = STATE(3285), - [sym_for_expression] = STATE(3285), - [sym_match_expression] = STATE(3285), - [sym_function_expression] = STATE(3285), - [sym_fun_expression] = STATE(3285), - [sym_try_expression] = STATE(3285), - [sym_let_expression] = STATE(3285), - [sym_coercion_expression] = STATE(1541), - [sym_assert_expression] = STATE(3285), - [sym_lazy_expression] = STATE(3285), - [sym_let_module_expression] = STATE(3285), - [sym_let_open_expression] = STATE(3285), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_let_exception_expression] = STATE(3285), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1320), - [sym__extension] = STATE(504), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym_sign_operator] = STATE(1320), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym_tag] = STATE(1541), - [sym__identifier] = ACTIONS(1069), - [anon_sym_let] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_object] = ACTIONS(405), - [anon_sym_fun] = ACTIONS(1073), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_if] = ACTIONS(1075), - [anon_sym_while] = ACTIONS(413), - [anon_sym_for] = ACTIONS(415), - [anon_sym_match] = ACTIONS(1077), - [anon_sym_function] = ACTIONS(1079), - [anon_sym_try] = ACTIONS(1081), - [anon_sym_assert] = ACTIONS(423), - [anon_sym_lazy] = ACTIONS(425), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(1083), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1321] = { - [sym_value_definition] = STATE(9084), - [sym__simple_expression] = STATE(230), - [sym__expression] = STATE(3120), - [sym_typed_expression] = STATE(1853), - [sym_product_expression] = STATE(3204), - [sym_cons_expression] = STATE(3204), - [sym_list_expression] = STATE(1853), - [sym_array_expression] = STATE(1853), - [sym_record_expression] = STATE(1853), - [sym_application_expression] = STATE(3204), - [sym_prefix_expression] = STATE(1853), - [sym_sign_expression] = STATE(3204), - [sym_hash_expression] = STATE(1853), - [sym_infix_expression] = STATE(3204), - [sym_field_get_expression] = STATE(1823), - [sym_array_get_expression] = STATE(1823), - [sym_string_get_expression] = STATE(1823), - [sym_bigarray_get_expression] = STATE(1823), - [sym_set_expression] = STATE(3204), - [sym_if_expression] = STATE(3204), - [sym_while_expression] = STATE(3204), - [sym_for_expression] = STATE(3204), - [sym_match_expression] = STATE(3204), - [sym_function_expression] = STATE(3204), - [sym_fun_expression] = STATE(3204), - [sym_try_expression] = STATE(3204), - [sym_let_expression] = STATE(3204), - [sym_coercion_expression] = STATE(1853), - [sym_assert_expression] = STATE(3204), - [sym_lazy_expression] = STATE(3204), - [sym_let_module_expression] = STATE(3204), - [sym_let_open_expression] = STATE(3204), - [sym_local_open_expression] = STATE(1853), - [sym_package_expression] = STATE(1853), - [sym_let_exception_expression] = STATE(3204), - [sym_new_expression] = STATE(1853), - [sym_object_copy_expression] = STATE(1853), - [sym_method_invocation] = STATE(1853), - [sym_object_expression] = STATE(1853), - [sym_parenthesized_expression] = STATE(1853), - [sym_attribute] = STATE(1321), - [sym__extension] = STATE(199), - [sym_extension] = STATE(1857), - [sym_quoted_extension] = STATE(1857), - [sym__constant] = STATE(1853), - [sym_number] = STATE(1859), - [sym_character] = STATE(1859), - [sym_string] = STATE(1859), - [sym_quoted_string] = STATE(1859), - [sym_boolean] = STATE(1859), - [sym_unit] = STATE(1859), - [sym_sign_operator] = STATE(1271), - [sym__value_name] = STATE(1860), - [sym_parenthesized_operator] = STATE(1861), - [sym_value_path] = STATE(1853), - [sym_module_path] = STATE(9523), - [sym_constructor_path] = STATE(1853), - [sym_tag] = STATE(1853), - [sym__identifier] = ACTIONS(9), - [anon_sym_let] = ACTIONS(301), - [anon_sym_LPAREN] = ACTIONS(17), - [anon_sym_PLUS] = ACTIONS(23), - [anon_sym_DASH] = ACTIONS(23), - [anon_sym_LBRACK] = ACTIONS(25), - [anon_sym_true] = ACTIONS(27), - [anon_sym_false] = ACTIONS(27), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_object] = ACTIONS(41), - [anon_sym_fun] = ACTIONS(43), - [anon_sym_LBRACK_PIPE] = ACTIONS(45), - [anon_sym_if] = ACTIONS(47), - [anon_sym_while] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_match] = ACTIONS(53), - [anon_sym_function] = ACTIONS(55), - [anon_sym_try] = ACTIONS(57), - [anon_sym_assert] = ACTIONS(59), - [anon_sym_lazy] = ACTIONS(61), - [anon_sym_new] = ACTIONS(63), - [anon_sym_LBRACE_LT] = ACTIONS(65), - [anon_sym_begin] = ACTIONS(67), - [sym_ocamlyacc_value] = ACTIONS(69), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1809), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1811), - [aux_sym_number_token1] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [anon_sym_DQUOTE] = ACTIONS(85), - [sym_prefix_operator] = ACTIONS(87), - [anon_sym_PLUS_DOT] = ACTIONS(89), - [anon_sym_DASH_DOT] = ACTIONS(89), - [sym_let_operator] = ACTIONS(157), - [sym_match_operator] = ACTIONS(93), - [sym__capitalized_identifier] = ACTIONS(95), - [aux_sym_tag_token1] = ACTIONS(99), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1322] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6404), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1322), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9029), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2219), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2223), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2225), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2227), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2227), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2227), - [sym_and_operator] = ACTIONS(2227), - [sym_match_operator] = ACTIONS(2227), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1323] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6376), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1323), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9524), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2253), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2259), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2261), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2261), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2261), - [sym_and_operator] = ACTIONS(2261), - [sym_match_operator] = ACTIONS(2261), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1324] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6544), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1324), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9050), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(883), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(883), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(883), - [sym_and_operator] = ACTIONS(883), - [sym_match_operator] = ACTIONS(883), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1325] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6571), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1325), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8665), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2215), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2215), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2215), - [sym_and_operator] = ACTIONS(2215), - [sym_match_operator] = ACTIONS(2215), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1326] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6408), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1326), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8731), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(2295), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2297), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2299), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2301), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2301), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2301), - [sym_and_operator] = ACTIONS(2301), - [sym_match_operator] = ACTIONS(2301), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1327] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1327), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1327), - [sym__identifier] = ACTIONS(2335), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_QMARK] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(2344), - [anon_sym_true] = ACTIONS(2347), - [anon_sym_false] = ACTIONS(2347), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_object] = ACTIONS(2353), - [anon_sym_in] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(2356), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(2359), - [anon_sym_LBRACE_LT] = ACTIONS(2362), - [anon_sym_begin] = ACTIONS(2365), - [sym_ocamlyacc_value] = ACTIONS(2368), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2371), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2374), - [aux_sym_number_token1] = ACTIONS(2377), - [anon_sym_SQUOTE] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym_prefix_operator] = ACTIONS(2386), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym_and_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(2389), - [aux_sym_tag_token1] = ACTIONS(2392), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1328] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1328), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1340), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1275), - [anon_sym_PLUS] = ACTIONS(1279), - [anon_sym_DASH] = ACTIONS(1279), - [anon_sym_COLON_EQ] = ACTIONS(1275), - [anon_sym_PIPE] = ACTIONS(1279), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1275), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1279), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(1275), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1279), - [anon_sym_do] = ACTIONS(1279), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1279), - [anon_sym_DASH_DOT] = ACTIONS(1279), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(1275), - [anon_sym_lsl] = ACTIONS(1279), - [anon_sym_lsr] = ACTIONS(1279), - [anon_sym_asr] = ACTIONS(1279), - [aux_sym__mult_operator_token1] = ACTIONS(1279), - [anon_sym_mod] = ACTIONS(1279), - [anon_sym_land] = ACTIONS(1279), - [anon_sym_lor] = ACTIONS(1279), - [anon_sym_lxor] = ACTIONS(1279), - [aux_sym__add_operator_token1] = ACTIONS(1279), - [sym__concat_operator] = ACTIONS(1275), - [sym__rel_operator] = ACTIONS(1279), - [anon_sym_AMP_AMP] = ACTIONS(1279), - [anon_sym_or] = ACTIONS(1279), - [anon_sym_PIPE_PIPE] = ACTIONS(1279), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1329] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1329), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1327), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1330] = { - [sym__simple_expression] = STATE(2509), - [sym_typed_expression] = STATE(2486), - [sym_list_expression] = STATE(2486), - [sym_array_expression] = STATE(2486), - [sym_record_expression] = STATE(2486), - [sym__argument] = STATE(2683), - [sym_labeled_argument] = STATE(2659), - [sym_prefix_expression] = STATE(2486), - [sym_hash_expression] = STATE(2486), - [sym_field_get_expression] = STATE(2486), - [sym_array_get_expression] = STATE(2486), - [sym_string_get_expression] = STATE(2486), - [sym_bigarray_get_expression] = STATE(2486), - [sym_coercion_expression] = STATE(2486), - [sym_local_open_expression] = STATE(2486), - [sym_package_expression] = STATE(2486), - [sym_new_expression] = STATE(2486), - [sym_object_copy_expression] = STATE(2486), - [sym_method_invocation] = STATE(2486), - [sym_object_expression] = STATE(2486), - [sym_parenthesized_expression] = STATE(2486), - [sym_attribute] = STATE(1330), - [sym__extension] = STATE(2509), - [sym_extension] = STATE(2314), - [sym_quoted_extension] = STATE(2314), - [sym__constant] = STATE(2486), - [sym_number] = STATE(2328), - [sym_character] = STATE(2328), - [sym_string] = STATE(2328), - [sym_quoted_string] = STATE(2328), - [sym_boolean] = STATE(2328), - [sym_unit] = STATE(2328), - [sym__value_name] = STATE(2506), - [sym_parenthesized_operator] = STATE(2355), - [sym_value_path] = STATE(2486), - [sym_module_path] = STATE(8610), - [sym_constructor_path] = STATE(2486), - [sym__label] = STATE(2638), - [sym_tag] = STATE(2486), - [aux_sym_class_application_repeat1] = STATE(1327), - [sym__identifier] = ACTIONS(1707), - [anon_sym_and] = ACTIONS(1367), - [anon_sym_TILDE] = ACTIONS(1709), - [anon_sym_QMARK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(953), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(961), - [anon_sym_in] = ACTIONS(1367), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(965), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(983), - [anon_sym_LBRACE_LT] = ACTIONS(985), - [anon_sym_begin] = ACTIONS(987), - [sym_ocamlyacc_value] = ACTIONS(989), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1365), - [anon_sym_LBRACK_PERCENT] = ACTIONS(991), - [anon_sym_LBRACE_PERCENT] = ACTIONS(993), - [aux_sym_number_token1] = ACTIONS(995), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_DQUOTE] = ACTIONS(999), - [sym_prefix_operator] = ACTIONS(1001), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym_and_operator] = ACTIONS(1365), - [sym__capitalized_identifier] = ACTIONS(1005), - [aux_sym_tag_token1] = ACTIONS(1007), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1331] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1331), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1331), - [sym__identifier] = ACTIONS(2395), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2401), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2407), - [anon_sym_false] = ACTIONS(2407), - [anon_sym_LBRACE] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_object] = ACTIONS(2413), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(2416), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_done] = ACTIONS(1312), - [anon_sym_to] = ACTIONS(1312), - [anon_sym_downto] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_LBRACE_LT] = ACTIONS(2422), - [anon_sym_begin] = ACTIONS(2425), - [sym_ocamlyacc_value] = ACTIONS(2428), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2431), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2434), - [aux_sym_number_token1] = ACTIONS(2437), - [anon_sym_SQUOTE] = ACTIONS(2440), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym_prefix_operator] = ACTIONS(2446), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym__capitalized_identifier] = ACTIONS(2449), - [aux_sym_tag_token1] = ACTIONS(2452), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1332] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1332), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1331), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_done] = ACTIONS(1367), - [anon_sym_to] = ACTIONS(1367), - [anon_sym_downto] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1333] = { - [sym__simple_expression] = STATE(2541), - [sym_typed_expression] = STATE(2554), - [sym_list_expression] = STATE(2554), - [sym_array_expression] = STATE(2554), - [sym_record_expression] = STATE(2554), - [sym__argument] = STATE(2725), - [sym_labeled_argument] = STATE(2721), - [sym_prefix_expression] = STATE(2554), - [sym_hash_expression] = STATE(2554), - [sym_field_get_expression] = STATE(2554), - [sym_array_get_expression] = STATE(2554), - [sym_string_get_expression] = STATE(2554), - [sym_bigarray_get_expression] = STATE(2554), - [sym_coercion_expression] = STATE(2554), - [sym_local_open_expression] = STATE(2554), - [sym_package_expression] = STATE(2554), - [sym_new_expression] = STATE(2554), - [sym_object_copy_expression] = STATE(2554), - [sym_method_invocation] = STATE(2554), - [sym_object_expression] = STATE(2554), - [sym_parenthesized_expression] = STATE(2554), - [sym_attribute] = STATE(1333), - [sym__extension] = STATE(2541), - [sym_extension] = STATE(2605), - [sym_quoted_extension] = STATE(2605), - [sym__constant] = STATE(2554), - [sym_number] = STATE(2557), - [sym_character] = STATE(2557), - [sym_string] = STATE(2557), - [sym_quoted_string] = STATE(2557), - [sym_boolean] = STATE(2557), - [sym_unit] = STATE(2557), - [sym__value_name] = STATE(2564), - [sym_parenthesized_operator] = STATE(2592), - [sym_value_path] = STATE(2554), - [sym_module_path] = STATE(8567), - [sym_constructor_path] = STATE(2554), - [sym__label] = STATE(2664), - [sym_tag] = STATE(2554), - [aux_sym_class_application_repeat1] = STATE(1331), - [sym__identifier] = ACTIONS(1729), - [anon_sym_TILDE] = ACTIONS(1731), - [anon_sym_QMARK] = ACTIONS(1731), - [anon_sym_LPAREN] = ACTIONS(1021), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1025), - [anon_sym_false] = ACTIONS(1025), - [anon_sym_LBRACE] = ACTIONS(1027), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(1033), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_done] = ACTIONS(1367), - [anon_sym_to] = ACTIONS(1367), - [anon_sym_downto] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(1043), - [anon_sym_LBRACE_LT] = ACTIONS(1045), - [anon_sym_begin] = ACTIONS(1047), - [sym_ocamlyacc_value] = ACTIONS(1049), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(1051), - [anon_sym_LBRACE_PERCENT] = ACTIONS(1053), - [aux_sym_number_token1] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(1057), - [anon_sym_DQUOTE] = ACTIONS(1059), - [sym_prefix_operator] = ACTIONS(1061), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(1065), - [aux_sym_tag_token1] = ACTIONS(1067), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1334] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6582), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1334), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8800), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(2021), - [sym_tag] = STATE(2022), - [sym__identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(2459), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2467), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2469), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2475), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2475), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2475), - [sym_and_operator] = ACTIONS(2475), - [sym_match_operator] = ACTIONS(2475), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1335] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6568), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1335), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9050), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(2021), - [sym_tag] = STATE(2022), - [sym__identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(877), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(879), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2147), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2151), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(883), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(883), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(883), - [sym_and_operator] = ACTIONS(883), - [sym_match_operator] = ACTIONS(883), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1336] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6495), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1336), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(8665), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(2021), - [sym_tag] = STATE(2022), - [sym__identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2211), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(835), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2215), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2215), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2215), - [sym_and_operator] = ACTIONS(2215), - [sym_match_operator] = ACTIONS(2215), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1337] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6518), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1337), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym_infix_operator] = STATE(9083), - [sym__pow_operator] = STATE(9472), - [sym__mult_operator] = STATE(9472), - [sym__add_operator] = STATE(9472), - [sym__and_operator] = STATE(9472), - [sym__or_operator] = STATE(9472), - [sym__assign_operator] = STATE(9472), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(2021), - [sym_tag] = STATE(2022), - [sym__identifier] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_RPAREN] = ACTIONS(2477), - [anon_sym_PLUS] = ACTIONS(2137), - [anon_sym_DASH] = ACTIONS(2137), - [anon_sym_COLON_EQ] = ACTIONS(581), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_DOT] = ACTIONS(2479), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_module] = ACTIONS(2481), - [anon_sym_AMP] = ACTIONS(587), - [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_COLON_COLON] = ACTIONS(2483), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(2473), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym_prefix_operator] = ACTIONS(2485), - [anon_sym_PLUS_DOT] = ACTIONS(601), - [anon_sym_DASH_DOT] = ACTIONS(601), - [sym_hash_operator] = ACTIONS(2485), - [aux_sym__pow_operator_token1] = ACTIONS(595), - [anon_sym_lsl] = ACTIONS(597), - [anon_sym_lsr] = ACTIONS(597), - [anon_sym_asr] = ACTIONS(597), - [aux_sym__mult_operator_token1] = ACTIONS(599), - [anon_sym_mod] = ACTIONS(599), - [anon_sym_land] = ACTIONS(599), - [anon_sym_lor] = ACTIONS(599), - [anon_sym_lxor] = ACTIONS(599), - [aux_sym__add_operator_token1] = ACTIONS(601), - [sym__concat_operator] = ACTIONS(603), - [sym__rel_operator] = ACTIONS(605), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_or] = ACTIONS(607), - [anon_sym_PIPE_PIPE] = ACTIONS(607), - [sym_let_operator] = ACTIONS(2485), - [sym_and_operator] = ACTIONS(2485), - [sym_match_operator] = ACTIONS(2485), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1338] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1338), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1339), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1339] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1339), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1339), - [sym__identifier] = ACTIONS(1502), - [anon_sym_TILDE] = ACTIONS(1505), - [anon_sym_QMARK] = ACTIONS(1505), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1304), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_COLON_EQ] = ACTIONS(1304), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(1511), - [anon_sym_true] = ACTIONS(1514), - [anon_sym_false] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1517), - [anon_sym_SEMI] = ACTIONS(1304), - [anon_sym_object] = ACTIONS(1520), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_COLON_COLON] = ACTIONS(1304), - [anon_sym_LBRACK_PIPE] = ACTIONS(1523), - [anon_sym_else] = ACTIONS(1312), - [anon_sym_do] = ACTIONS(1312), - [anon_sym_new] = ACTIONS(1526), - [anon_sym_LBRACE_LT] = ACTIONS(1529), - [anon_sym_begin] = ACTIONS(1532), - [sym_ocamlyacc_value] = ACTIONS(1535), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2487), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2490), - [aux_sym_number_token1] = ACTIONS(1544), - [anon_sym_SQUOTE] = ACTIONS(1547), - [anon_sym_DQUOTE] = ACTIONS(1550), - [sym_prefix_operator] = ACTIONS(1553), - [anon_sym_PLUS_DOT] = ACTIONS(1312), - [anon_sym_DASH_DOT] = ACTIONS(1312), - [aux_sym__pow_operator_token1] = ACTIONS(1304), - [anon_sym_lsl] = ACTIONS(1312), - [anon_sym_lsr] = ACTIONS(1312), - [anon_sym_asr] = ACTIONS(1312), - [aux_sym__mult_operator_token1] = ACTIONS(1312), - [anon_sym_mod] = ACTIONS(1312), - [anon_sym_land] = ACTIONS(1312), - [anon_sym_lor] = ACTIONS(1312), - [anon_sym_lxor] = ACTIONS(1312), - [aux_sym__add_operator_token1] = ACTIONS(1312), - [sym__concat_operator] = ACTIONS(1304), - [sym__rel_operator] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_or] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [sym__capitalized_identifier] = ACTIONS(1556), - [aux_sym_tag_token1] = ACTIONS(1559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1340] = { - [sym__simple_expression] = STATE(2654), - [sym_typed_expression] = STATE(1541), - [sym_list_expression] = STATE(1541), - [sym_array_expression] = STATE(1541), - [sym_record_expression] = STATE(1541), - [sym__argument] = STATE(1825), - [sym_labeled_argument] = STATE(1808), - [sym_prefix_expression] = STATE(1541), - [sym_hash_expression] = STATE(1541), - [sym_field_get_expression] = STATE(1541), - [sym_array_get_expression] = STATE(1541), - [sym_string_get_expression] = STATE(1541), - [sym_bigarray_get_expression] = STATE(1541), - [sym_coercion_expression] = STATE(1541), - [sym_local_open_expression] = STATE(1541), - [sym_package_expression] = STATE(1541), - [sym_new_expression] = STATE(1541), - [sym_object_copy_expression] = STATE(1541), - [sym_method_invocation] = STATE(1541), - [sym_object_expression] = STATE(1541), - [sym_parenthesized_expression] = STATE(1541), - [sym_attribute] = STATE(1340), - [sym__extension] = STATE(2654), - [sym_extension] = STATE(1503), - [sym_quoted_extension] = STATE(1503), - [sym__constant] = STATE(1541), - [sym_number] = STATE(1573), - [sym_character] = STATE(1573), - [sym_string] = STATE(1573), - [sym_quoted_string] = STATE(1573), - [sym_boolean] = STATE(1573), - [sym_unit] = STATE(1573), - [sym__value_name] = STATE(1500), - [sym_parenthesized_operator] = STATE(1501), - [sym_value_path] = STATE(1541), - [sym_module_path] = STATE(8653), - [sym_constructor_path] = STATE(1541), - [sym__label] = STATE(2746), - [sym_tag] = STATE(1541), - [aux_sym_class_application_repeat1] = STATE(1339), - [sym__identifier] = ACTIONS(1291), - [anon_sym_TILDE] = ACTIONS(1293), - [anon_sym_QMARK] = ACTIONS(1293), - [anon_sym_LPAREN] = ACTIONS(397), - [anon_sym_COMMA] = ACTIONS(1365), - [anon_sym_PLUS] = ACTIONS(1367), - [anon_sym_DASH] = ACTIONS(1367), - [anon_sym_COLON_EQ] = ACTIONS(1365), - [anon_sym_PIPE] = ACTIONS(1367), - [anon_sym_LBRACK] = ACTIONS(399), - [anon_sym_true] = ACTIONS(401), - [anon_sym_false] = ACTIONS(401), - [anon_sym_LBRACE] = ACTIONS(403), - [anon_sym_SEMI] = ACTIONS(1365), - [anon_sym_object] = ACTIONS(405), - [anon_sym_AMP] = ACTIONS(1367), - [anon_sym_COLON_COLON] = ACTIONS(1365), - [anon_sym_LBRACK_PIPE] = ACTIONS(409), - [anon_sym_else] = ACTIONS(1367), - [anon_sym_do] = ACTIONS(1367), - [anon_sym_new] = ACTIONS(427), - [anon_sym_LBRACE_LT] = ACTIONS(429), - [anon_sym_begin] = ACTIONS(431), - [sym_ocamlyacc_value] = ACTIONS(433), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(471), - [aux_sym_number_token1] = ACTIONS(439), - [anon_sym_SQUOTE] = ACTIONS(441), - [anon_sym_DQUOTE] = ACTIONS(443), - [sym_prefix_operator] = ACTIONS(445), - [anon_sym_PLUS_DOT] = ACTIONS(1367), - [anon_sym_DASH_DOT] = ACTIONS(1367), - [aux_sym__pow_operator_token1] = ACTIONS(1365), - [anon_sym_lsl] = ACTIONS(1367), - [anon_sym_lsr] = ACTIONS(1367), - [anon_sym_asr] = ACTIONS(1367), - [aux_sym__mult_operator_token1] = ACTIONS(1367), - [anon_sym_mod] = ACTIONS(1367), - [anon_sym_land] = ACTIONS(1367), - [anon_sym_lor] = ACTIONS(1367), - [anon_sym_lxor] = ACTIONS(1367), - [aux_sym__add_operator_token1] = ACTIONS(1367), - [sym__concat_operator] = ACTIONS(1365), - [sym__rel_operator] = ACTIONS(1367), - [anon_sym_AMP_AMP] = ACTIONS(1367), - [anon_sym_or] = ACTIONS(1367), - [anon_sym_PIPE_PIPE] = ACTIONS(1367), - [sym__capitalized_identifier] = ACTIONS(449), - [aux_sym_tag_token1] = ACTIONS(451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1341] = { - [sym__binding_pattern] = STATE(3055), - [sym__binding_pattern_ext] = STATE(3081), - [sym_alias_binding_pattern] = STATE(3056), - [sym_typed_binding_pattern] = STATE(3056), - [sym_or_binding_pattern] = STATE(3056), - [sym_constructor_binding_pattern] = STATE(3056), - [sym_tag_binding_pattern] = STATE(3056), - [sym_polymorphic_variant_pattern] = STATE(3056), - [sym_tuple_binding_pattern] = STATE(3056), - [sym_record_binding_pattern] = STATE(3058), - [sym_list_binding_pattern] = STATE(3059), - [sym_cons_binding_pattern] = STATE(3056), - [sym_array_binding_pattern] = STATE(3060), - [sym_range_pattern] = STATE(3056), - [sym_lazy_binding_pattern] = STATE(3056), - [sym_local_open_binding_pattern] = STATE(3056), - [sym_package_pattern] = STATE(3056), - [sym_parenthesized_binding_pattern] = STATE(3056), - [sym_attribute] = STATE(1341), - [sym__extension] = STATE(3055), - [sym_extension] = STATE(3140), - [sym_quoted_extension] = STATE(3140), - [sym__constant] = STATE(2850), - [sym__signed_constant] = STATE(2851), - [sym_number] = STATE(2939), - [sym_signed_number] = STATE(2850), - [sym_character] = STATE(2939), - [sym_string] = STATE(2939), - [sym_quoted_string] = STATE(2939), - [sym_boolean] = STATE(2939), - [sym_unit] = STATE(2939), - [sym__value_name] = STATE(3056), - [sym_parenthesized_operator] = STATE(3138), - [sym_module_path] = STATE(9495), - [sym_constructor_path] = STATE(1342), - [sym_tag] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(2493), - [sym__identifier] = ACTIONS(2495), - [anon_sym_SEMI_SEMI] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_and] = ACTIONS(2497), - [anon_sym_COLON_GT] = ACTIONS(2493), - [anon_sym_EQ] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_external] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_COLON2] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_exception] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_open] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_end] = ACTIONS(2497), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(2511), - [anon_sym_lazy] = ACTIONS(2513), - [anon_sym_begin] = ACTIONS(2515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2493), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2519), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2493), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2493), - [aux_sym_number_token1] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym_let_operator] = ACTIONS(2493), - [sym_and_operator] = ACTIONS(2493), - [sym__capitalized_identifier] = ACTIONS(2527), - [aux_sym_directive_token1] = ACTIONS(2497), - [aux_sym_tag_token1] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1342] = { - [sym__binding_pattern] = STATE(3055), - [sym__binding_pattern_ext] = STATE(3079), - [sym_alias_binding_pattern] = STATE(3056), - [sym_typed_binding_pattern] = STATE(3056), - [sym_or_binding_pattern] = STATE(3056), - [sym_constructor_binding_pattern] = STATE(3056), - [sym_tag_binding_pattern] = STATE(3056), - [sym_polymorphic_variant_pattern] = STATE(3056), - [sym_tuple_binding_pattern] = STATE(3056), - [sym_record_binding_pattern] = STATE(3058), - [sym_list_binding_pattern] = STATE(3059), - [sym_cons_binding_pattern] = STATE(3056), - [sym_array_binding_pattern] = STATE(3060), - [sym_range_pattern] = STATE(3056), - [sym_lazy_binding_pattern] = STATE(3056), - [sym_local_open_binding_pattern] = STATE(3056), - [sym_package_pattern] = STATE(3056), - [sym_parenthesized_binding_pattern] = STATE(3056), - [sym_attribute] = STATE(1342), - [sym__extension] = STATE(3055), - [sym_extension] = STATE(3140), - [sym_quoted_extension] = STATE(3140), - [sym__constant] = STATE(2850), - [sym__signed_constant] = STATE(2851), - [sym_number] = STATE(2939), - [sym_signed_number] = STATE(2850), - [sym_character] = STATE(2939), - [sym_string] = STATE(2939), - [sym_quoted_string] = STATE(2939), - [sym_boolean] = STATE(2939), - [sym_unit] = STATE(2939), - [sym__value_name] = STATE(3056), - [sym_parenthesized_operator] = STATE(3138), - [sym_module_path] = STATE(9495), - [sym_constructor_path] = STATE(1342), - [sym_tag] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(2493), - [sym__identifier] = ACTIONS(2495), - [anon_sym_SEMI_SEMI] = ACTIONS(2493), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_and] = ACTIONS(2497), - [anon_sym_COLON_GT] = ACTIONS(2493), - [anon_sym_EQ] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_external] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_COLON2] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_exception] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_open] = ACTIONS(2497), - [anon_sym_include] = ACTIONS(2497), - [anon_sym_class] = ACTIONS(2497), - [anon_sym_end] = ACTIONS(2497), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(2511), - [anon_sym_lazy] = ACTIONS(2513), - [anon_sym_begin] = ACTIONS(2515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2493), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2519), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2493), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2493), - [aux_sym_number_token1] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym_let_operator] = ACTIONS(2493), - [sym_and_operator] = ACTIONS(2493), - [sym__capitalized_identifier] = ACTIONS(2527), - [aux_sym_directive_token1] = ACTIONS(2497), - [aux_sym_tag_token1] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1343] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(8191), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1343), - [sym_item_attribute] = STATE(5285), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(5059), - [aux_sym_let_binding_repeat1] = STATE(2274), - [sym__identifier] = ACTIONS(2531), - [anon_sym_SEMI_SEMI] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_and] = ACTIONS(2535), - [anon_sym_COLON_GT] = ACTIONS(2537), - [anon_sym_EQ] = ACTIONS(2539), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_external] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_RBRACK] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_exception] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_open] = ACTIONS(2535), - [anon_sym_include] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_end] = ACTIONS(2535), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2559), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2569), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2533), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_let_operator] = ACTIONS(2533), - [sym_and_operator] = ACTIONS(2533), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_directive_token1] = ACTIONS(2535), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1344] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(8293), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1344), - [sym_item_attribute] = STATE(5285), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(5059), - [aux_sym_let_binding_repeat1] = STATE(2263), - [sym__identifier] = ACTIONS(2531), - [anon_sym_SEMI_SEMI] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_and] = ACTIONS(2535), - [anon_sym_COLON_GT] = ACTIONS(2581), - [anon_sym_EQ] = ACTIONS(2583), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_external] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_RBRACK] = ACTIONS(2533), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_exception] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_open] = ACTIONS(2535), - [anon_sym_include] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_end] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2559), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2569), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2533), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_let_operator] = ACTIONS(2533), - [sym_and_operator] = ACTIONS(2533), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_directive_token1] = ACTIONS(2535), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1345] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(8066), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1345), - [sym_item_attribute] = STATE(5285), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(5059), - [aux_sym_let_binding_repeat1] = STATE(2299), - [ts_builtin_sym_end] = ACTIONS(2533), - [sym__identifier] = ACTIONS(2531), - [anon_sym_SEMI_SEMI] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_and] = ACTIONS(2535), - [anon_sym_COLON_GT] = ACTIONS(2585), - [anon_sym_EQ] = ACTIONS(2587), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_external] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_exception] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_open] = ACTIONS(2535), - [anon_sym_include] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2559), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2569), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2533), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_let_operator] = ACTIONS(2533), - [sym_and_operator] = ACTIONS(2533), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_directive_token1] = ACTIONS(2535), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1346] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(8003), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1346), - [sym_item_attribute] = STATE(5285), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(5059), - [aux_sym_let_binding_repeat1] = STATE(2289), - [ts_builtin_sym_end] = ACTIONS(2533), - [sym__identifier] = ACTIONS(2531), - [anon_sym_SEMI_SEMI] = ACTIONS(2533), - [anon_sym_let] = ACTIONS(2535), - [anon_sym_and] = ACTIONS(2535), - [anon_sym_COLON_GT] = ACTIONS(2589), - [anon_sym_EQ] = ACTIONS(2591), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_external] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(2549), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_exception] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_open] = ACTIONS(2535), - [anon_sym_include] = ACTIONS(2535), - [anon_sym_class] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(2559), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(2563), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2569), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2533), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_let_operator] = ACTIONS(2533), - [sym_and_operator] = ACTIONS(2533), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_directive_token1] = ACTIONS(2535), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1347] = { - [sym__simple_expression] = STATE(3359), - [sym_typed_expression] = STATE(3400), - [sym_list_expression] = STATE(3400), - [sym_array_expression] = STATE(3400), - [sym_record_expression] = STATE(3400), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3400), - [sym_hash_expression] = STATE(3400), - [sym_field_get_expression] = STATE(3400), - [sym_array_get_expression] = STATE(3400), - [sym_string_get_expression] = STATE(3400), - [sym_bigarray_get_expression] = STATE(3400), - [sym_coercion_expression] = STATE(3400), - [sym_local_open_expression] = STATE(3400), - [sym_package_expression] = STATE(3400), - [sym_new_expression] = STATE(3400), - [sym_object_copy_expression] = STATE(3400), - [sym_method_invocation] = STATE(3400), - [sym_object_expression] = STATE(3400), - [sym_parenthesized_expression] = STATE(3400), - [sym_attribute] = STATE(1347), - [sym__extension] = STATE(3359), - [sym_extension] = STATE(3361), - [sym_quoted_extension] = STATE(3361), - [sym__constant] = STATE(3400), - [sym_number] = STATE(3332), - [sym_character] = STATE(3332), - [sym_string] = STATE(3332), - [sym_quoted_string] = STATE(3332), - [sym_boolean] = STATE(3332), - [sym_unit] = STATE(3332), - [sym__value_name] = STATE(3410), - [sym_parenthesized_operator] = STATE(3412), - [sym_value_path] = STATE(3400), - [sym_module_path] = STATE(8851), - [sym_constructor_path] = STATE(3400), - [sym__label] = STATE(3743), - [sym_tag] = STATE(3400), - [aux_sym_class_application_repeat1] = STATE(1347), - [sym__identifier] = ACTIONS(2593), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_QMARK] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(2605), - [anon_sym_false] = ACTIONS(2605), - [anon_sym_LBRACE] = ACTIONS(2608), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(2611), - [anon_sym_LBRACK_PIPE] = ACTIONS(2614), - [anon_sym_new] = ACTIONS(2617), - [anon_sym_LBRACE_LT] = ACTIONS(2620), - [anon_sym_begin] = ACTIONS(2623), - [sym_ocamlyacc_value] = ACTIONS(2626), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2629), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2632), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(2635), - [anon_sym_SQUOTE] = ACTIONS(2638), - [anon_sym_DQUOTE] = ACTIONS(2641), - [sym_prefix_operator] = ACTIONS(2644), - [sym_let_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(2647), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(2650), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1348] = { - [sym__simple_expression] = STATE(3359), - [sym_typed_expression] = STATE(3400), - [sym_list_expression] = STATE(3400), - [sym_array_expression] = STATE(3400), - [sym_record_expression] = STATE(3400), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3400), - [sym_hash_expression] = STATE(3400), - [sym_field_get_expression] = STATE(3400), - [sym_array_get_expression] = STATE(3400), - [sym_string_get_expression] = STATE(3400), - [sym_bigarray_get_expression] = STATE(3400), - [sym_coercion_expression] = STATE(3400), - [sym_local_open_expression] = STATE(3400), - [sym_package_expression] = STATE(3400), - [sym_new_expression] = STATE(3400), - [sym_object_copy_expression] = STATE(3400), - [sym_method_invocation] = STATE(3400), - [sym_object_expression] = STATE(3400), - [sym_parenthesized_expression] = STATE(3400), - [sym_attribute] = STATE(1348), - [sym__extension] = STATE(3359), - [sym_extension] = STATE(3361), - [sym_quoted_extension] = STATE(3361), - [sym__constant] = STATE(3400), - [sym_number] = STATE(3332), - [sym_character] = STATE(3332), - [sym_string] = STATE(3332), - [sym_quoted_string] = STATE(3332), - [sym_boolean] = STATE(3332), - [sym_unit] = STATE(3332), - [sym__value_name] = STATE(3410), - [sym_parenthesized_operator] = STATE(3412), - [sym_value_path] = STATE(3400), - [sym_module_path] = STATE(8851), - [sym_constructor_path] = STATE(3400), - [sym__label] = STATE(3743), - [sym_tag] = STATE(3400), - [aux_sym_class_application_repeat1] = STATE(1347), - [sym__identifier] = ACTIONS(2653), - [anon_sym_SEMI_SEMI] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_external] = ACTIONS(2657), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_exception] = ACTIONS(2657), - [anon_sym_module] = ACTIONS(2657), - [anon_sym_open] = ACTIONS(2657), - [anon_sym_include] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_end] = ACTIONS(2657), - [anon_sym_object] = ACTIONS(2669), - [anon_sym_LBRACK_PIPE] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_LBRACE_LT] = ACTIONS(2675), - [anon_sym_begin] = ACTIONS(2677), - [sym_ocamlyacc_value] = ACTIONS(2679), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2657), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2655), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2681), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2683), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2655), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2655), - [aux_sym_number_token1] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_prefix_operator] = ACTIONS(2691), - [sym_let_operator] = ACTIONS(2655), - [sym__capitalized_identifier] = ACTIONS(2693), - [aux_sym_directive_token1] = ACTIONS(2655), - [aux_sym_tag_token1] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1349] = { - [sym__simple_expression] = STATE(3359), - [sym_typed_expression] = STATE(3400), - [sym_list_expression] = STATE(3400), - [sym_array_expression] = STATE(3400), - [sym_record_expression] = STATE(3400), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3400), - [sym_hash_expression] = STATE(3400), - [sym_field_get_expression] = STATE(3400), - [sym_array_get_expression] = STATE(3400), - [sym_string_get_expression] = STATE(3400), - [sym_bigarray_get_expression] = STATE(3400), - [sym_coercion_expression] = STATE(3400), - [sym_local_open_expression] = STATE(3400), - [sym_package_expression] = STATE(3400), - [sym_new_expression] = STATE(3400), - [sym_object_copy_expression] = STATE(3400), - [sym_method_invocation] = STATE(3400), - [sym_object_expression] = STATE(3400), - [sym_parenthesized_expression] = STATE(3400), - [sym_attribute] = STATE(1349), - [sym__extension] = STATE(3359), - [sym_extension] = STATE(3361), - [sym_quoted_extension] = STATE(3361), - [sym__constant] = STATE(3400), - [sym_number] = STATE(3332), - [sym_character] = STATE(3332), - [sym_string] = STATE(3332), - [sym_quoted_string] = STATE(3332), - [sym_boolean] = STATE(3332), - [sym_unit] = STATE(3332), - [sym__value_name] = STATE(3410), - [sym_parenthesized_operator] = STATE(3412), - [sym_value_path] = STATE(3400), - [sym_module_path] = STATE(8851), - [sym_constructor_path] = STATE(3400), - [sym__label] = STATE(3743), - [sym_tag] = STATE(3400), - [aux_sym_class_application_repeat1] = STATE(1348), - [sym__identifier] = ACTIONS(2653), - [anon_sym_SEMI_SEMI] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_and] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2661), - [anon_sym_external] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2663), - [anon_sym_RBRACK] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2665), - [anon_sym_false] = ACTIONS(2665), - [anon_sym_LBRACE] = ACTIONS(2667), - [anon_sym_exception] = ACTIONS(2699), - [anon_sym_module] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_include] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_end] = ACTIONS(2699), - [anon_sym_object] = ACTIONS(2669), - [anon_sym_LBRACK_PIPE] = ACTIONS(2671), - [anon_sym_new] = ACTIONS(2673), - [anon_sym_LBRACE_LT] = ACTIONS(2675), - [anon_sym_begin] = ACTIONS(2677), - [sym_ocamlyacc_value] = ACTIONS(2679), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2699), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2697), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2681), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2683), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2697), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2697), - [aux_sym_number_token1] = ACTIONS(2685), - [anon_sym_SQUOTE] = ACTIONS(2687), - [anon_sym_DQUOTE] = ACTIONS(2689), - [sym_prefix_operator] = ACTIONS(2691), - [sym_let_operator] = ACTIONS(2697), - [sym__capitalized_identifier] = ACTIONS(2693), - [aux_sym_directive_token1] = ACTIONS(2697), - [aux_sym_tag_token1] = ACTIONS(2695), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1350] = { - [sym__simple_expression] = STATE(3538), - [sym_typed_expression] = STATE(3533), - [sym_list_expression] = STATE(3533), - [sym_array_expression] = STATE(3533), - [sym_record_expression] = STATE(3533), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3533), - [sym_hash_expression] = STATE(3533), - [sym_field_get_expression] = STATE(3533), - [sym_array_get_expression] = STATE(3533), - [sym_string_get_expression] = STATE(3533), - [sym_bigarray_get_expression] = STATE(3533), - [sym_coercion_expression] = STATE(3533), - [sym_local_open_expression] = STATE(3533), - [sym_package_expression] = STATE(3533), - [sym_new_expression] = STATE(3533), - [sym_object_copy_expression] = STATE(3533), - [sym_method_invocation] = STATE(3533), - [sym_object_expression] = STATE(3533), - [sym_parenthesized_expression] = STATE(3533), - [sym_attribute] = STATE(1350), - [sym__extension] = STATE(3538), - [sym_extension] = STATE(3528), - [sym_quoted_extension] = STATE(3528), - [sym__constant] = STATE(3533), - [sym_number] = STATE(3445), - [sym_character] = STATE(3445), - [sym_string] = STATE(3445), - [sym_quoted_string] = STATE(3445), - [sym_boolean] = STATE(3445), - [sym_unit] = STATE(3445), - [sym__value_name] = STATE(3483), - [sym_parenthesized_operator] = STATE(3482), - [sym_value_path] = STATE(3533), - [sym_module_path] = STATE(8695), - [sym_constructor_path] = STATE(3533), - [sym__label] = STATE(3747), - [sym_tag] = STATE(3533), - [aux_sym_class_application_repeat1] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(1304), - [sym__identifier] = ACTIONS(2701), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_let] = ACTIONS(1312), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(2596), - [anon_sym_QMARK] = ACTIONS(2596), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(2707), - [anon_sym_true] = ACTIONS(2710), - [anon_sym_false] = ACTIONS(2710), - [anon_sym_LBRACE] = ACTIONS(2713), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(2716), - [anon_sym_LBRACK_PIPE] = ACTIONS(2719), - [anon_sym_new] = ACTIONS(2722), - [anon_sym_LBRACE_LT] = ACTIONS(2725), - [anon_sym_begin] = ACTIONS(2728), - [sym_ocamlyacc_value] = ACTIONS(2731), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2734), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2737), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(2740), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_DQUOTE] = ACTIONS(2746), - [sym_prefix_operator] = ACTIONS(2749), - [sym_let_operator] = ACTIONS(1304), - [sym__capitalized_identifier] = ACTIONS(2752), - [aux_sym_directive_token1] = ACTIONS(1304), - [aux_sym_tag_token1] = ACTIONS(2755), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1351] = { - [sym__simple_expression] = STATE(3538), - [sym_typed_expression] = STATE(3533), - [sym_list_expression] = STATE(3533), - [sym_array_expression] = STATE(3533), - [sym_record_expression] = STATE(3533), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3533), - [sym_hash_expression] = STATE(3533), - [sym_field_get_expression] = STATE(3533), - [sym_array_get_expression] = STATE(3533), - [sym_string_get_expression] = STATE(3533), - [sym_bigarray_get_expression] = STATE(3533), - [sym_coercion_expression] = STATE(3533), - [sym_local_open_expression] = STATE(3533), - [sym_package_expression] = STATE(3533), - [sym_new_expression] = STATE(3533), - [sym_object_copy_expression] = STATE(3533), - [sym_method_invocation] = STATE(3533), - [sym_object_expression] = STATE(3533), - [sym_parenthesized_expression] = STATE(3533), - [sym_attribute] = STATE(1351), - [sym__extension] = STATE(3538), - [sym_extension] = STATE(3528), - [sym_quoted_extension] = STATE(3528), - [sym__constant] = STATE(3533), - [sym_number] = STATE(3445), - [sym_character] = STATE(3445), - [sym_string] = STATE(3445), - [sym_quoted_string] = STATE(3445), - [sym_boolean] = STATE(3445), - [sym_unit] = STATE(3445), - [sym__value_name] = STATE(3483), - [sym_parenthesized_operator] = STATE(3482), - [sym_value_path] = STATE(3533), - [sym_module_path] = STATE(8695), - [sym_constructor_path] = STATE(3533), - [sym__label] = STATE(3747), - [sym_tag] = STATE(3533), - [aux_sym_class_application_repeat1] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(2655), - [sym__identifier] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2655), - [anon_sym_let] = ACTIONS(2657), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_external] = ACTIONS(2657), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_exception] = ACTIONS(2657), - [anon_sym_module] = ACTIONS(2657), - [anon_sym_open] = ACTIONS(2657), - [anon_sym_include] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_object] = ACTIONS(2768), - [anon_sym_LBRACK_PIPE] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2772), - [anon_sym_LBRACE_LT] = ACTIONS(2774), - [anon_sym_begin] = ACTIONS(2776), - [sym_ocamlyacc_value] = ACTIONS(2778), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2657), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2655), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2780), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2782), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2655), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2655), - [aux_sym_number_token1] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_prefix_operator] = ACTIONS(2790), - [sym_let_operator] = ACTIONS(2655), - [sym__capitalized_identifier] = ACTIONS(2792), - [aux_sym_directive_token1] = ACTIONS(2655), - [aux_sym_tag_token1] = ACTIONS(2794), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1352] = { - [sym__simple_expression] = STATE(3538), - [sym_typed_expression] = STATE(3533), - [sym_list_expression] = STATE(3533), - [sym_array_expression] = STATE(3533), - [sym_record_expression] = STATE(3533), - [sym__argument] = STATE(3691), - [sym_labeled_argument] = STATE(3717), - [sym_prefix_expression] = STATE(3533), - [sym_hash_expression] = STATE(3533), - [sym_field_get_expression] = STATE(3533), - [sym_array_get_expression] = STATE(3533), - [sym_string_get_expression] = STATE(3533), - [sym_bigarray_get_expression] = STATE(3533), - [sym_coercion_expression] = STATE(3533), - [sym_local_open_expression] = STATE(3533), - [sym_package_expression] = STATE(3533), - [sym_new_expression] = STATE(3533), - [sym_object_copy_expression] = STATE(3533), - [sym_method_invocation] = STATE(3533), - [sym_object_expression] = STATE(3533), - [sym_parenthesized_expression] = STATE(3533), - [sym_attribute] = STATE(1352), - [sym__extension] = STATE(3538), - [sym_extension] = STATE(3528), - [sym_quoted_extension] = STATE(3528), - [sym__constant] = STATE(3533), - [sym_number] = STATE(3445), - [sym_character] = STATE(3445), - [sym_string] = STATE(3445), - [sym_quoted_string] = STATE(3445), - [sym_boolean] = STATE(3445), - [sym_unit] = STATE(3445), - [sym__value_name] = STATE(3483), - [sym_parenthesized_operator] = STATE(3482), - [sym_value_path] = STATE(3533), - [sym_module_path] = STATE(8695), - [sym_constructor_path] = STATE(3533), - [sym__label] = STATE(3747), - [sym_tag] = STATE(3533), - [aux_sym_class_application_repeat1] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(2697), - [sym__identifier] = ACTIONS(2758), - [anon_sym_SEMI_SEMI] = ACTIONS(2697), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_and] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2659), - [anon_sym_QMARK] = ACTIONS(2659), - [anon_sym_LPAREN] = ACTIONS(2760), - [anon_sym_external] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2762), - [anon_sym_true] = ACTIONS(2764), - [anon_sym_false] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_exception] = ACTIONS(2699), - [anon_sym_module] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_include] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_object] = ACTIONS(2768), - [anon_sym_LBRACK_PIPE] = ACTIONS(2770), - [anon_sym_new] = ACTIONS(2772), - [anon_sym_LBRACE_LT] = ACTIONS(2774), - [anon_sym_begin] = ACTIONS(2776), - [sym_ocamlyacc_value] = ACTIONS(2778), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2699), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2697), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2780), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2782), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2697), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2697), - [aux_sym_number_token1] = ACTIONS(2784), - [anon_sym_SQUOTE] = ACTIONS(2786), - [anon_sym_DQUOTE] = ACTIONS(2788), - [sym_prefix_operator] = ACTIONS(2790), - [sym_let_operator] = ACTIONS(2697), - [sym__capitalized_identifier] = ACTIONS(2792), - [aux_sym_directive_token1] = ACTIONS(2697), - [aux_sym_tag_token1] = ACTIONS(2794), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1353] = { - [sym__simple_expression] = STATE(3570), - [sym_typed_expression] = STATE(3617), - [sym_list_expression] = STATE(3617), - [sym_array_expression] = STATE(3617), - [sym_record_expression] = STATE(3617), - [sym__argument] = STATE(3826), - [sym_labeled_argument] = STATE(3823), - [sym_prefix_expression] = STATE(3617), - [sym_hash_expression] = STATE(3617), - [sym_field_get_expression] = STATE(3617), - [sym_array_get_expression] = STATE(3617), - [sym_string_get_expression] = STATE(3617), - [sym_bigarray_get_expression] = STATE(3617), - [sym_coercion_expression] = STATE(3617), - [sym_local_open_expression] = STATE(3617), - [sym_package_expression] = STATE(3617), - [sym_new_expression] = STATE(3617), - [sym_object_copy_expression] = STATE(3617), - [sym_method_invocation] = STATE(3617), - [sym_object_expression] = STATE(3617), - [sym_parenthesized_expression] = STATE(3617), - [sym_attribute] = STATE(1353), - [sym__extension] = STATE(3570), - [sym_extension] = STATE(3729), - [sym_quoted_extension] = STATE(3729), - [sym__constant] = STATE(3617), - [sym_number] = STATE(3621), - [sym_character] = STATE(3621), - [sym_string] = STATE(3621), - [sym_quoted_string] = STATE(3621), - [sym_boolean] = STATE(3621), - [sym_unit] = STATE(3621), - [sym__value_name] = STATE(3673), - [sym_parenthesized_operator] = STATE(3676), - [sym_value_path] = STATE(3617), - [sym_module_path] = STATE(8884), - [sym_constructor_path] = STATE(3617), - [sym__label] = STATE(3755), - [sym_tag] = STATE(3617), - [aux_sym_class_application_repeat1] = STATE(1355), - [sym__identifier] = ACTIONS(2796), - [anon_sym_SEMI_SEMI] = ACTIONS(2655), - [anon_sym_and] = ACTIONS(2657), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_external] = ACTIONS(2657), - [anon_sym_type] = ACTIONS(2657), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_RBRACK] = ACTIONS(2655), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_exception] = ACTIONS(2657), - [anon_sym_module] = ACTIONS(2657), - [anon_sym_open] = ACTIONS(2657), - [anon_sym_include] = ACTIONS(2657), - [anon_sym_class] = ACTIONS(2657), - [anon_sym_val] = ACTIONS(2657), - [anon_sym_end] = ACTIONS(2657), - [anon_sym_object] = ACTIONS(2808), - [anon_sym_LBRACK_PIPE] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2812), - [anon_sym_LBRACE_LT] = ACTIONS(2814), - [anon_sym_begin] = ACTIONS(2816), - [sym_ocamlyacc_value] = ACTIONS(2818), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2657), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2655), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2820), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2822), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2655), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2655), - [aux_sym_number_token1] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_prefix_operator] = ACTIONS(2830), - [sym__capitalized_identifier] = ACTIONS(2832), - [aux_sym_tag_token1] = ACTIONS(2834), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1354] = { - [sym__simple_expression] = STATE(3570), - [sym_typed_expression] = STATE(3617), - [sym_list_expression] = STATE(3617), - [sym_array_expression] = STATE(3617), - [sym_record_expression] = STATE(3617), - [sym__argument] = STATE(3826), - [sym_labeled_argument] = STATE(3823), - [sym_prefix_expression] = STATE(3617), - [sym_hash_expression] = STATE(3617), - [sym_field_get_expression] = STATE(3617), - [sym_array_get_expression] = STATE(3617), - [sym_string_get_expression] = STATE(3617), - [sym_bigarray_get_expression] = STATE(3617), - [sym_coercion_expression] = STATE(3617), - [sym_local_open_expression] = STATE(3617), - [sym_package_expression] = STATE(3617), - [sym_new_expression] = STATE(3617), - [sym_object_copy_expression] = STATE(3617), - [sym_method_invocation] = STATE(3617), - [sym_object_expression] = STATE(3617), - [sym_parenthesized_expression] = STATE(3617), - [sym_attribute] = STATE(1354), - [sym__extension] = STATE(3570), - [sym_extension] = STATE(3729), - [sym_quoted_extension] = STATE(3729), - [sym__constant] = STATE(3617), - [sym_number] = STATE(3621), - [sym_character] = STATE(3621), - [sym_string] = STATE(3621), - [sym_quoted_string] = STATE(3621), - [sym_boolean] = STATE(3621), - [sym_unit] = STATE(3621), - [sym__value_name] = STATE(3673), - [sym_parenthesized_operator] = STATE(3676), - [sym_value_path] = STATE(3617), - [sym_module_path] = STATE(8884), - [sym_constructor_path] = STATE(3617), - [sym__label] = STATE(3755), - [sym_tag] = STATE(3617), - [aux_sym_class_application_repeat1] = STATE(1353), - [sym__identifier] = ACTIONS(2796), - [anon_sym_SEMI_SEMI] = ACTIONS(2697), - [anon_sym_and] = ACTIONS(2699), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_external] = ACTIONS(2699), - [anon_sym_type] = ACTIONS(2699), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_RBRACK] = ACTIONS(2697), - [anon_sym_true] = ACTIONS(2804), - [anon_sym_false] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_exception] = ACTIONS(2699), - [anon_sym_module] = ACTIONS(2699), - [anon_sym_open] = ACTIONS(2699), - [anon_sym_include] = ACTIONS(2699), - [anon_sym_class] = ACTIONS(2699), - [anon_sym_val] = ACTIONS(2699), - [anon_sym_end] = ACTIONS(2699), - [anon_sym_object] = ACTIONS(2808), - [anon_sym_LBRACK_PIPE] = ACTIONS(2810), - [anon_sym_new] = ACTIONS(2812), - [anon_sym_LBRACE_LT] = ACTIONS(2814), - [anon_sym_begin] = ACTIONS(2816), - [sym_ocamlyacc_value] = ACTIONS(2818), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2699), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2697), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2820), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2822), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2697), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2697), - [aux_sym_number_token1] = ACTIONS(2824), - [anon_sym_SQUOTE] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2828), - [sym_prefix_operator] = ACTIONS(2830), - [sym__capitalized_identifier] = ACTIONS(2832), - [aux_sym_tag_token1] = ACTIONS(2834), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1355] = { - [sym__simple_expression] = STATE(3570), - [sym_typed_expression] = STATE(3617), - [sym_list_expression] = STATE(3617), - [sym_array_expression] = STATE(3617), - [sym_record_expression] = STATE(3617), - [sym__argument] = STATE(3826), - [sym_labeled_argument] = STATE(3823), - [sym_prefix_expression] = STATE(3617), - [sym_hash_expression] = STATE(3617), - [sym_field_get_expression] = STATE(3617), - [sym_array_get_expression] = STATE(3617), - [sym_string_get_expression] = STATE(3617), - [sym_bigarray_get_expression] = STATE(3617), - [sym_coercion_expression] = STATE(3617), - [sym_local_open_expression] = STATE(3617), - [sym_package_expression] = STATE(3617), - [sym_new_expression] = STATE(3617), - [sym_object_copy_expression] = STATE(3617), - [sym_method_invocation] = STATE(3617), - [sym_object_expression] = STATE(3617), - [sym_parenthesized_expression] = STATE(3617), - [sym_attribute] = STATE(1355), - [sym__extension] = STATE(3570), - [sym_extension] = STATE(3729), - [sym_quoted_extension] = STATE(3729), - [sym__constant] = STATE(3617), - [sym_number] = STATE(3621), - [sym_character] = STATE(3621), - [sym_string] = STATE(3621), - [sym_quoted_string] = STATE(3621), - [sym_boolean] = STATE(3621), - [sym_unit] = STATE(3621), - [sym__value_name] = STATE(3673), - [sym_parenthesized_operator] = STATE(3676), - [sym_value_path] = STATE(3617), - [sym_module_path] = STATE(8884), - [sym_constructor_path] = STATE(3617), - [sym__label] = STATE(3755), - [sym_tag] = STATE(3617), - [aux_sym_class_application_repeat1] = STATE(1355), - [sym__identifier] = ACTIONS(2836), - [anon_sym_SEMI_SEMI] = ACTIONS(1304), - [anon_sym_and] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(2839), - [anon_sym_QMARK] = ACTIONS(2839), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_external] = ACTIONS(1312), - [anon_sym_type] = ACTIONS(1312), - [anon_sym_LBRACK] = ACTIONS(2845), - [anon_sym_RBRACK] = ACTIONS(1304), - [anon_sym_true] = ACTIONS(2848), - [anon_sym_false] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2851), - [anon_sym_exception] = ACTIONS(1312), - [anon_sym_module] = ACTIONS(1312), - [anon_sym_open] = ACTIONS(1312), - [anon_sym_include] = ACTIONS(1312), - [anon_sym_class] = ACTIONS(1312), - [anon_sym_val] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(2854), - [anon_sym_LBRACK_PIPE] = ACTIONS(2857), - [anon_sym_new] = ACTIONS(2860), - [anon_sym_LBRACE_LT] = ACTIONS(2863), - [anon_sym_begin] = ACTIONS(2866), - [sym_ocamlyacc_value] = ACTIONS(2869), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2872), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2875), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(2878), - [anon_sym_SQUOTE] = ACTIONS(2881), - [anon_sym_DQUOTE] = ACTIONS(2884), - [sym_prefix_operator] = ACTIONS(2887), - [sym__capitalized_identifier] = ACTIONS(2890), - [aux_sym_tag_token1] = ACTIONS(2893), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1356] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5493), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1356), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5195), - [aux_sym_let_binding_repeat1] = STATE(1376), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_include] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2898), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2898), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2898), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2898), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2900), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1357] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5435), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1357), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5270), - [aux_sym_let_binding_repeat1] = STATE(1365), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_and] = ACTIONS(2942), - [anon_sym_EQ] = ACTIONS(2944), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_include] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_end] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2940), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2940), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2940), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2940), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2942), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1358] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5495), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1358), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5251), - [aux_sym_let_binding_repeat1] = STATE(1361), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2946), - [anon_sym_let] = ACTIONS(2948), - [anon_sym_and] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(2950), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2948), - [anon_sym_type] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2948), - [anon_sym_module] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2948), - [anon_sym_include] = ACTIONS(2948), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_end] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2946), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2946), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2946), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2946), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2948), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1359] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5507), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1359), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5273), - [aux_sym_let_binding_repeat1] = STATE(1356), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_and] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(2956), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2954), - [anon_sym_include] = ACTIONS(2954), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_end] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2952), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2952), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2952), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2952), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2954), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1360] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5420), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1360), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5244), - [aux_sym_let_binding_repeat1] = STATE(1376), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_and] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_open] = ACTIONS(2960), - [anon_sym_include] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2960), - [anon_sym_end] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2958), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2958), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2958), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2958), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2960), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1361] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5462), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1361), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5188), - [aux_sym_let_binding_repeat1] = STATE(1376), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_and] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2968), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2964), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_include] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_end] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2964), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2964), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2964), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2964), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2966), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1362] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5446), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1362), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5224), - [aux_sym_let_binding_repeat1] = STATE(1363), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_and] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2974), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2972), - [anon_sym_module] = ACTIONS(2972), - [anon_sym_open] = ACTIONS(2972), - [anon_sym_include] = ACTIONS(2972), - [anon_sym_class] = ACTIONS(2972), - [anon_sym_end] = ACTIONS(2972), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2970), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2970), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2970), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2970), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2972), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1363] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5438), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1363), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5269), - [aux_sym_let_binding_repeat1] = STATE(1376), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2978), - [anon_sym_and] = ACTIONS(2978), - [anon_sym_EQ] = ACTIONS(2980), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2978), - [anon_sym_module] = ACTIONS(2978), - [anon_sym_open] = ACTIONS(2978), - [anon_sym_include] = ACTIONS(2978), - [anon_sym_class] = ACTIONS(2978), - [anon_sym_end] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2976), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2976), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2976), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2976), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2978), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1364] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5428), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1364), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5239), - [aux_sym_let_binding_repeat1] = STATE(1360), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2982), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_and] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(2986), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_open] = ACTIONS(2984), - [anon_sym_include] = ACTIONS(2984), - [anon_sym_class] = ACTIONS(2984), - [anon_sym_end] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2982), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2982), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2982), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2982), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2984), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1365] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5430), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1365), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5247), - [aux_sym_let_binding_repeat1] = STATE(1376), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_and] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(2992), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_include] = ACTIONS(2990), - [anon_sym_class] = ACTIONS(2990), - [anon_sym_end] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2988), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2988), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2988), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2988), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2990), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1366] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5551), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1366), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5188), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2964), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2964), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_and] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2994), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_include] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2964), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2964), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2964), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2964), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2966), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1367] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5571), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1367), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5273), - [aux_sym_let_binding_repeat1] = STATE(1369), - [ts_builtin_sym_end] = ACTIONS(2952), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2954), - [anon_sym_and] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(2996), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2954), - [anon_sym_include] = ACTIONS(2954), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2952), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2952), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2952), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2952), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2954), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1368] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5544), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1368), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5224), - [aux_sym_let_binding_repeat1] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(2970), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2972), - [anon_sym_and] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(2998), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2972), - [anon_sym_module] = ACTIONS(2972), - [anon_sym_open] = ACTIONS(2972), - [anon_sym_include] = ACTIONS(2972), - [anon_sym_class] = ACTIONS(2972), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2970), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2970), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2970), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2970), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2972), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1369] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5561), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1369), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5195), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2898), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2900), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(3000), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_include] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2898), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2898), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2898), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2898), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2900), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1370] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5555), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1370), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5270), - [aux_sym_let_binding_repeat1] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(2940), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2940), - [anon_sym_let] = ACTIONS(2942), - [anon_sym_and] = ACTIONS(2942), - [anon_sym_EQ] = ACTIONS(3002), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_include] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2940), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2940), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2940), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2940), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2942), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1371] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5549), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1371), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5269), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2976), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2976), - [anon_sym_let] = ACTIONS(2978), - [anon_sym_and] = ACTIONS(2978), - [anon_sym_EQ] = ACTIONS(3004), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2978), - [anon_sym_module] = ACTIONS(2978), - [anon_sym_open] = ACTIONS(2978), - [anon_sym_include] = ACTIONS(2978), - [anon_sym_class] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2976), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2976), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2976), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2976), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2978), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1372] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5545), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1372), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5239), - [aux_sym_let_binding_repeat1] = STATE(1373), - [ts_builtin_sym_end] = ACTIONS(2982), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2982), - [anon_sym_let] = ACTIONS(2984), - [anon_sym_and] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(3006), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_open] = ACTIONS(2984), - [anon_sym_include] = ACTIONS(2984), - [anon_sym_class] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2982), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2982), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2982), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2982), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2984), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1373] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5542), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1373), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5244), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2958), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2960), - [anon_sym_and] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(3008), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_open] = ACTIONS(2960), - [anon_sym_include] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2958), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2958), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2958), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2958), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2960), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1374] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5589), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1374), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5247), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(2988), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_let] = ACTIONS(2990), - [anon_sym_and] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(3010), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_include] = ACTIONS(2990), - [anon_sym_class] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2988), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2988), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2988), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2988), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2990), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1375] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__class_typed] = STATE(5550), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1375), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_expression_item_repeat1] = STATE(5251), - [aux_sym_let_binding_repeat1] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(2946), - [sym__identifier] = ACTIONS(2896), - [anon_sym_SEMI_SEMI] = ACTIONS(2946), - [anon_sym_let] = ACTIONS(2948), - [anon_sym_and] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(3012), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_LPAREN] = ACTIONS(2906), - [anon_sym_external] = ACTIONS(2948), - [anon_sym_type] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(2908), - [anon_sym_DASH] = ACTIONS(2908), - [anon_sym_LBRACK] = ACTIONS(2910), - [anon_sym_true] = ACTIONS(2912), - [anon_sym_false] = ACTIONS(2912), - [anon_sym_COLON2] = ACTIONS(2914), - [anon_sym_LBRACE] = ACTIONS(2916), - [anon_sym_exception] = ACTIONS(2948), - [anon_sym_module] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2948), - [anon_sym_include] = ACTIONS(2948), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(2918), - [anon_sym_LBRACK_PIPE] = ACTIONS(2920), - [anon_sym_begin] = ACTIONS(2922), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2946), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2926), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2928), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2946), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2946), - [aux_sym_number_token1] = ACTIONS(2930), - [anon_sym_SQUOTE] = ACTIONS(2932), - [anon_sym_DQUOTE] = ACTIONS(2934), - [sym_let_operator] = ACTIONS(2946), - [sym__capitalized_identifier] = ACTIONS(2936), - [aux_sym_directive_token1] = ACTIONS(2948), - [aux_sym_tag_token1] = ACTIONS(2938), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1376] = { - [sym__parameter] = STATE(3563), - [sym_parameter] = STATE(3565), - [sym__parenthesized_abstract_type] = STATE(3565), - [sym__simple_pattern] = STATE(3568), - [sym__simple_pattern_ext] = STATE(3569), - [sym_typed_pattern] = STATE(3723), - [sym_polymorphic_variant_pattern] = STATE(3723), - [sym_record_pattern] = STATE(3723), - [sym_list_pattern] = STATE(3723), - [sym_array_pattern] = STATE(3723), - [sym_local_open_pattern] = STATE(3723), - [sym_package_pattern] = STATE(3723), - [sym_parenthesized_pattern] = STATE(3723), - [sym_attribute] = STATE(1376), - [sym__extension] = STATE(3568), - [sym_extension] = STATE(3709), - [sym_quoted_extension] = STATE(3709), - [sym__constant] = STATE(3579), - [sym__signed_constant] = STATE(3723), - [sym_number] = STATE(3710), - [sym_signed_number] = STATE(3579), - [sym_character] = STATE(3710), - [sym_string] = STATE(3710), - [sym_quoted_string] = STATE(3710), - [sym_boolean] = STATE(3710), - [sym_unit] = STATE(3710), - [sym__value_pattern] = STATE(3723), - [sym_parenthesized_operator] = STATE(3724), - [sym_module_path] = STATE(8611), - [sym_constructor_path] = STATE(3723), - [sym__label] = STATE(9092), - [sym_tag] = STATE(3723), - [aux_sym_let_binding_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(3014), - [sym__identifier] = ACTIONS(3016), - [anon_sym_SEMI_SEMI] = ACTIONS(3014), - [anon_sym_let] = ACTIONS(3019), - [anon_sym_and] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3024), - [anon_sym_external] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3030), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3033), - [anon_sym_false] = ACTIONS(3033), - [anon_sym_COLON2] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3036), - [anon_sym_exception] = ACTIONS(3019), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_include] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_end] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3039), - [anon_sym_LBRACK_PIPE] = ACTIONS(3042), - [anon_sym_begin] = ACTIONS(3045), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3019), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3014), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3048), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3051), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3014), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3014), - [aux_sym_number_token1] = ACTIONS(3054), - [anon_sym_SQUOTE] = ACTIONS(3057), - [anon_sym_DQUOTE] = ACTIONS(3060), - [sym_let_operator] = ACTIONS(3014), - [sym__capitalized_identifier] = ACTIONS(3063), - [aux_sym_directive_token1] = ACTIONS(3019), - [aux_sym_tag_token1] = ACTIONS(3066), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1377] = { - [sym_attribute] = STATE(1377), - [sym__identifier] = ACTIONS(3069), - [anon_sym_COLON_GT] = ACTIONS(3071), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_COLON2] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_DASH_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_constraint] = ACTIONS(3069), - [anon_sym_val] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_with] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_inherit] = ACTIONS(3069), - [anon_sym_method] = ACTIONS(3069), - [anon_sym_initializer] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_PIPE_RBRACK] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_then] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_do] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_GT_RBRACE] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1378] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5619), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1378), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5239), - [aux_sym_let_binding_repeat1] = STATE(1393), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2982), - [anon_sym_and] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(3075), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2984), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2982), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_open] = ACTIONS(2984), - [anon_sym_include] = ACTIONS(2984), - [anon_sym_class] = ACTIONS(2984), - [anon_sym_val] = ACTIONS(2984), - [anon_sym_end] = ACTIONS(2984), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2982), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2982), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2982), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1379] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5642), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1379), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5273), - [aux_sym_let_binding_repeat1] = STATE(1392), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2952), - [anon_sym_and] = ACTIONS(2954), - [anon_sym_EQ] = ACTIONS(3111), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2954), - [anon_sym_type] = ACTIONS(2954), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2952), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2954), - [anon_sym_open] = ACTIONS(2954), - [anon_sym_include] = ACTIONS(2954), - [anon_sym_class] = ACTIONS(2954), - [anon_sym_val] = ACTIONS(2954), - [anon_sym_end] = ACTIONS(2954), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2952), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2952), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2952), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1380] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5677), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1380), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5224), - [aux_sym_let_binding_repeat1] = STATE(1394), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2970), - [anon_sym_and] = ACTIONS(2972), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2972), - [anon_sym_type] = ACTIONS(2972), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2970), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2972), - [anon_sym_module] = ACTIONS(2972), - [anon_sym_open] = ACTIONS(2972), - [anon_sym_include] = ACTIONS(2972), - [anon_sym_class] = ACTIONS(2972), - [anon_sym_val] = ACTIONS(2972), - [anon_sym_end] = ACTIONS(2972), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2970), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2970), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2970), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1381] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5631), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1381), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5247), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2988), - [anon_sym_and] = ACTIONS(2990), - [anon_sym_EQ] = ACTIONS(3115), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2990), - [anon_sym_type] = ACTIONS(2990), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2988), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2990), - [anon_sym_module] = ACTIONS(2990), - [anon_sym_open] = ACTIONS(2990), - [anon_sym_include] = ACTIONS(2990), - [anon_sym_class] = ACTIONS(2990), - [anon_sym_val] = ACTIONS(2990), - [anon_sym_end] = ACTIONS(2990), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2988), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2988), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2988), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1382] = { - [sym_attribute] = STATE(1382), - [sym__identifier] = ACTIONS(3117), - [anon_sym_COLON_GT] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_COLON2] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_constraint] = ACTIONS(3117), - [anon_sym_val] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_with] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_inherit] = ACTIONS(3117), - [anon_sym_method] = ACTIONS(3117), - [anon_sym_initializer] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_PIPE_RBRACK] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_then] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_GT_RBRACE] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1383] = { - [sym_attribute] = STATE(1383), - [sym__identifier] = ACTIONS(3121), - [anon_sym_COLON_GT] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_COLON2] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_DASH_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_constraint] = ACTIONS(3121), - [anon_sym_val] = ACTIONS(3121), - [anon_sym_end] = ACTIONS(3121), - [anon_sym_with] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_inherit] = ACTIONS(3121), - [anon_sym_method] = ACTIONS(3121), - [anon_sym_initializer] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_PIPE_RBRACK] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_then] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_GT_RBRACE] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1384] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5690), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1384), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5188), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2964), - [anon_sym_and] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2964), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_open] = ACTIONS(2966), - [anon_sym_include] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_val] = ACTIONS(2966), - [anon_sym_end] = ACTIONS(2966), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2964), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2964), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2964), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1385] = { - [sym_attribute] = STATE(1385), - [sym__identifier] = ACTIONS(3127), - [anon_sym_COLON_GT] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_COLON2] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_DASH_GT] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_constraint] = ACTIONS(3127), - [anon_sym_val] = ACTIONS(3127), - [anon_sym_end] = ACTIONS(3127), - [anon_sym_with] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_inherit] = ACTIONS(3127), - [anon_sym_method] = ACTIONS(3127), - [anon_sym_initializer] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_PIPE_RBRACK] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_then] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_GT_RBRACE] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1386] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5666), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1386), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5251), - [aux_sym_let_binding_repeat1] = STATE(1384), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2946), - [anon_sym_and] = ACTIONS(2948), - [anon_sym_EQ] = ACTIONS(3131), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2948), - [anon_sym_type] = ACTIONS(2948), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2946), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2948), - [anon_sym_module] = ACTIONS(2948), - [anon_sym_open] = ACTIONS(2948), - [anon_sym_include] = ACTIONS(2948), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_val] = ACTIONS(2948), - [anon_sym_end] = ACTIONS(2948), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2946), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2946), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2946), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1387] = { - [sym_attribute] = STATE(1387), - [sym__identifier] = ACTIONS(3133), - [anon_sym_COLON_GT] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_COLON2] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_DASH_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_constraint] = ACTIONS(3133), - [anon_sym_val] = ACTIONS(3133), - [anon_sym_end] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_inherit] = ACTIONS(3133), - [anon_sym_method] = ACTIONS(3133), - [anon_sym_initializer] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_PIPE_RBRACK] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_then] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_GT_RBRACE] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1388] = { - [sym_attribute] = STATE(1388), - [sym__identifier] = ACTIONS(3137), - [anon_sym_COLON_GT] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_COLON2] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_DASH_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_constraint] = ACTIONS(3137), - [anon_sym_val] = ACTIONS(3137), - [anon_sym_end] = ACTIONS(3137), - [anon_sym_with] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_inherit] = ACTIONS(3137), - [anon_sym_method] = ACTIONS(3137), - [anon_sym_initializer] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_PIPE_RBRACK] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_then] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_GT_RBRACE] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1389] = { - [sym_attribute] = STATE(1389), - [sym__identifier] = ACTIONS(3141), - [anon_sym_COLON_GT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_COLON2] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_constraint] = ACTIONS(3141), - [anon_sym_val] = ACTIONS(3141), - [anon_sym_end] = ACTIONS(3141), - [anon_sym_with] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_inherit] = ACTIONS(3141), - [anon_sym_method] = ACTIONS(3141), - [anon_sym_initializer] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_PIPE_RBRACK] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_then] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_do] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_GT_RBRACE] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1390] = { - [sym_attribute] = STATE(1390), - [sym__identifier] = ACTIONS(3145), - [anon_sym_COLON_GT] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_COLON2] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_DASH_GT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_constraint] = ACTIONS(3145), - [anon_sym_val] = ACTIONS(3145), - [anon_sym_end] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_inherit] = ACTIONS(3145), - [anon_sym_method] = ACTIONS(3145), - [anon_sym_initializer] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_PIPE_RBRACK] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_then] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_GT_RBRACE] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1391] = { - [sym_attribute] = STATE(1391), - [sym__identifier] = ACTIONS(3149), - [anon_sym_COLON_GT] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_COLON2] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_DASH_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_constraint] = ACTIONS(3149), - [anon_sym_val] = ACTIONS(3149), - [anon_sym_end] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_inherit] = ACTIONS(3149), - [anon_sym_method] = ACTIONS(3149), - [anon_sym_initializer] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_PIPE_RBRACK] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_then] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_GT_RBRACE] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1392] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5632), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1392), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5195), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2898), - [anon_sym_and] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2900), - [anon_sym_type] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2898), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2900), - [anon_sym_module] = ACTIONS(2900), - [anon_sym_open] = ACTIONS(2900), - [anon_sym_include] = ACTIONS(2900), - [anon_sym_class] = ACTIONS(2900), - [anon_sym_val] = ACTIONS(2900), - [anon_sym_end] = ACTIONS(2900), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2898), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2898), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2898), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1393] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5612), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1393), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5244), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2958), - [anon_sym_and] = ACTIONS(2960), - [anon_sym_EQ] = ACTIONS(3155), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2960), - [anon_sym_type] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2958), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2960), - [anon_sym_module] = ACTIONS(2960), - [anon_sym_open] = ACTIONS(2960), - [anon_sym_include] = ACTIONS(2960), - [anon_sym_class] = ACTIONS(2960), - [anon_sym_val] = ACTIONS(2960), - [anon_sym_end] = ACTIONS(2960), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2958), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2958), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2958), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1394] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5654), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1394), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5269), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2976), - [anon_sym_and] = ACTIONS(2978), - [anon_sym_EQ] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2978), - [anon_sym_type] = ACTIONS(2978), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2976), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2978), - [anon_sym_module] = ACTIONS(2978), - [anon_sym_open] = ACTIONS(2978), - [anon_sym_include] = ACTIONS(2978), - [anon_sym_class] = ACTIONS(2978), - [anon_sym_val] = ACTIONS(2978), - [anon_sym_end] = ACTIONS(2978), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2976), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2976), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2976), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1395] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__class_typed] = STATE(5652), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1395), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_expression_item_repeat1] = STATE(5270), - [aux_sym_let_binding_repeat1] = STATE(1381), - [sym__identifier] = ACTIONS(3073), - [anon_sym_SEMI_SEMI] = ACTIONS(2940), - [anon_sym_and] = ACTIONS(2942), - [anon_sym_EQ] = ACTIONS(3159), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_external] = ACTIONS(2942), - [anon_sym_type] = ACTIONS(2942), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_true] = ACTIONS(3085), - [anon_sym_false] = ACTIONS(3085), - [anon_sym_COLON2] = ACTIONS(3087), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_exception] = ACTIONS(2942), - [anon_sym_module] = ACTIONS(2942), - [anon_sym_open] = ACTIONS(2942), - [anon_sym_include] = ACTIONS(2942), - [anon_sym_class] = ACTIONS(2942), - [anon_sym_val] = ACTIONS(2942), - [anon_sym_end] = ACTIONS(2942), - [anon_sym_POUND] = ACTIONS(3091), - [anon_sym_LBRACK_PIPE] = ACTIONS(3093), - [anon_sym_begin] = ACTIONS(3095), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2940), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3097), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3099), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2940), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2940), - [aux_sym_number_token1] = ACTIONS(3101), - [anon_sym_SQUOTE] = ACTIONS(3103), - [anon_sym_DQUOTE] = ACTIONS(3105), - [sym__capitalized_identifier] = ACTIONS(3107), - [aux_sym_tag_token1] = ACTIONS(3109), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1396] = { - [sym_attribute] = STATE(1396), - [sym__identifier] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_COLON2] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_DASH_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_constraint] = ACTIONS(3161), - [anon_sym_val] = ACTIONS(3161), - [anon_sym_end] = ACTIONS(3161), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_inherit] = ACTIONS(3161), - [anon_sym_method] = ACTIONS(3161), - [anon_sym_initializer] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_PIPE_RBRACK] = ACTIONS(3163), - [anon_sym_then] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_GT_RBRACE] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1397] = { - [sym_attribute] = STATE(1397), - [sym__identifier] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_COLON2] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_constraint] = ACTIONS(3165), - [anon_sym_val] = ACTIONS(3165), - [anon_sym_end] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_inherit] = ACTIONS(3165), - [anon_sym_method] = ACTIONS(3165), - [anon_sym_initializer] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_PIPE_RBRACK] = ACTIONS(3167), - [anon_sym_then] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_GT_RBRACE] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1398] = { - [sym_attribute] = STATE(1398), - [sym__identifier] = ACTIONS(3169), - [anon_sym_COLON_GT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_RPAREN] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_COLON2] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_DASH_GT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_constraint] = ACTIONS(3169), - [anon_sym_val] = ACTIONS(3169), - [anon_sym_end] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_inherit] = ACTIONS(3169), - [anon_sym_method] = ACTIONS(3169), - [anon_sym_initializer] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_PIPE_RBRACK] = ACTIONS(3171), - [anon_sym_then] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_do] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_GT_RBRACE] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1399] = { - [sym_attribute] = STATE(1399), - [sym__identifier] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_COLON2] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_DASH_GT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_constraint] = ACTIONS(3173), - [anon_sym_val] = ACTIONS(3173), - [anon_sym_end] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_inherit] = ACTIONS(3173), - [anon_sym_method] = ACTIONS(3173), - [anon_sym_initializer] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_PIPE_RBRACK] = ACTIONS(3175), - [anon_sym_then] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_GT_RBRACE] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1400] = { - [sym_attribute] = STATE(1400), - [sym__identifier] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_RPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_COLON2] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_DASH_GT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_constraint] = ACTIONS(3177), - [anon_sym_val] = ACTIONS(3177), - [anon_sym_end] = ACTIONS(3177), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_inherit] = ACTIONS(3177), - [anon_sym_method] = ACTIONS(3177), - [anon_sym_initializer] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_PIPE_RBRACK] = ACTIONS(3179), - [anon_sym_then] = ACTIONS(3177), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_GT_RBRACE] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1401] = { - [sym_attribute] = STATE(1401), - [sym__identifier] = ACTIONS(3181), - [anon_sym_COLON_GT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_COLON2] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_DASH_GT] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_constraint] = ACTIONS(3181), - [anon_sym_val] = ACTIONS(3181), - [anon_sym_end] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_inherit] = ACTIONS(3181), - [anon_sym_method] = ACTIONS(3181), - [anon_sym_initializer] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_PIPE_RBRACK] = ACTIONS(3183), - [anon_sym_then] = ACTIONS(3181), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_do] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_GT_RBRACE] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1402] = { - [sym_attribute] = STATE(1402), - [sym__identifier] = ACTIONS(3145), - [anon_sym_COLON_GT] = ACTIONS(3147), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_RPAREN] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_COLON2] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_DASH_GT] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3147), - [anon_sym_RBRACE] = ACTIONS(3147), - [anon_sym_constraint] = ACTIONS(3145), - [anon_sym_val] = ACTIONS(3145), - [anon_sym_end] = ACTIONS(3145), - [anon_sym_with] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_inherit] = ACTIONS(3145), - [anon_sym_method] = ACTIONS(3145), - [anon_sym_initializer] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_then] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_do] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_GT_RBRACE] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1403] = { - [sym_attribute] = STATE(1403), - [sym__identifier] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_COLON2] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_constraint] = ACTIONS(3185), - [anon_sym_val] = ACTIONS(3185), - [anon_sym_end] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_inherit] = ACTIONS(3185), - [anon_sym_method] = ACTIONS(3185), - [anon_sym_initializer] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_PIPE_RBRACK] = ACTIONS(3187), - [anon_sym_then] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_GT_RBRACE] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1404] = { - [sym_attribute] = STATE(1404), - [sym__identifier] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_COLON2] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_constraint] = ACTIONS(3189), - [anon_sym_val] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_inherit] = ACTIONS(3189), - [anon_sym_method] = ACTIONS(3189), - [anon_sym_initializer] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_PIPE_RBRACK] = ACTIONS(3191), - [anon_sym_then] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_GT_RBRACE] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1405] = { - [sym_attribute] = STATE(1405), - [sym__identifier] = ACTIONS(3193), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_COLON2] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_constraint] = ACTIONS(3193), - [anon_sym_val] = ACTIONS(3193), - [anon_sym_end] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_inherit] = ACTIONS(3193), - [anon_sym_method] = ACTIONS(3193), - [anon_sym_initializer] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_PIPE_RBRACK] = ACTIONS(3195), - [anon_sym_then] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_GT_RBRACE] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1406] = { - [sym_attribute] = STATE(1406), - [sym__identifier] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_COLON2] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_constraint] = ACTIONS(3197), - [anon_sym_val] = ACTIONS(3197), - [anon_sym_end] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_inherit] = ACTIONS(3197), - [anon_sym_method] = ACTIONS(3197), - [anon_sym_initializer] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_PIPE_RBRACK] = ACTIONS(3199), - [anon_sym_then] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_GT_RBRACE] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1407] = { - [sym_attribute] = STATE(1407), - [sym__identifier] = ACTIONS(3201), - [anon_sym_COLON_GT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_COLON2] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_constraint] = ACTIONS(3201), - [anon_sym_val] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_inherit] = ACTIONS(3201), - [anon_sym_method] = ACTIONS(3201), - [anon_sym_initializer] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_PIPE_RBRACK] = ACTIONS(3203), - [anon_sym_then] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_GT_RBRACE] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1408] = { - [sym__simple_expression] = STATE(3985), - [sym_typed_expression] = STATE(4034), - [sym_list_expression] = STATE(4034), - [sym_array_expression] = STATE(4034), - [sym_record_expression] = STATE(4034), - [sym__argument] = STATE(4327), - [sym_labeled_argument] = STATE(4281), - [sym_prefix_expression] = STATE(4034), - [sym_hash_expression] = STATE(4034), - [sym_field_get_expression] = STATE(4034), - [sym_array_get_expression] = STATE(4034), - [sym_string_get_expression] = STATE(4034), - [sym_bigarray_get_expression] = STATE(4034), - [sym_coercion_expression] = STATE(4034), - [sym_local_open_expression] = STATE(4034), - [sym_package_expression] = STATE(4034), - [sym_new_expression] = STATE(4034), - [sym_object_copy_expression] = STATE(4034), - [sym_method_invocation] = STATE(4034), - [sym_object_expression] = STATE(4034), - [sym_parenthesized_expression] = STATE(4034), - [sym_attribute] = STATE(1408), - [sym__extension] = STATE(3985), - [sym_extension] = STATE(4048), - [sym_quoted_extension] = STATE(4048), - [sym__constant] = STATE(4034), - [sym_number] = STATE(3913), - [sym_character] = STATE(3913), - [sym_string] = STATE(3913), - [sym_quoted_string] = STATE(3913), - [sym_boolean] = STATE(3913), - [sym_unit] = STATE(3913), - [sym__value_name] = STATE(4029), - [sym_parenthesized_operator] = STATE(4030), - [sym_value_path] = STATE(4034), - [sym_module_path] = STATE(8523), - [sym_constructor_path] = STATE(4034), - [sym__label] = STATE(4159), - [sym_tag] = STATE(4034), - [aux_sym_class_application_repeat1] = STATE(1408), - [sym__identifier] = ACTIONS(3205), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_QMARK] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3211), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_true] = ACTIONS(3217), - [anon_sym_false] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_constraint] = ACTIONS(1312), - [anon_sym_val] = ACTIONS(1312), - [anon_sym_end] = ACTIONS(1312), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_inherit] = ACTIONS(1312), - [anon_sym_method] = ACTIONS(1312), - [anon_sym_as] = ACTIONS(1312), - [anon_sym_initializer] = ACTIONS(1312), - [anon_sym_LBRACK_PIPE] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_LBRACE_LT] = ACTIONS(3232), - [anon_sym_begin] = ACTIONS(3235), - [sym_ocamlyacc_value] = ACTIONS(3238), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(1312), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(1304), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3241), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3244), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(1304), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(1304), - [aux_sym_number_token1] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3253), - [sym_prefix_operator] = ACTIONS(3256), - [sym__capitalized_identifier] = ACTIONS(3259), - [aux_sym_tag_token1] = ACTIONS(3262), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1409] = { - [sym__simple_expression] = STATE(3985), - [sym_typed_expression] = STATE(4034), - [sym_list_expression] = STATE(4034), - [sym_array_expression] = STATE(4034), - [sym_record_expression] = STATE(4034), - [sym__argument] = STATE(4327), - [sym_labeled_argument] = STATE(4281), - [sym_prefix_expression] = STATE(4034), - [sym_hash_expression] = STATE(4034), - [sym_field_get_expression] = STATE(4034), - [sym_array_get_expression] = STATE(4034), - [sym_string_get_expression] = STATE(4034), - [sym_bigarray_get_expression] = STATE(4034), - [sym_coercion_expression] = STATE(4034), - [sym_local_open_expression] = STATE(4034), - [sym_package_expression] = STATE(4034), - [sym_new_expression] = STATE(4034), - [sym_object_copy_expression] = STATE(4034), - [sym_method_invocation] = STATE(4034), - [sym_object_expression] = STATE(4034), - [sym_parenthesized_expression] = STATE(4034), - [sym_attribute] = STATE(1409), - [sym__extension] = STATE(3985), - [sym_extension] = STATE(4048), - [sym_quoted_extension] = STATE(4048), - [sym__constant] = STATE(4034), - [sym_number] = STATE(3913), - [sym_character] = STATE(3913), - [sym_string] = STATE(3913), - [sym_quoted_string] = STATE(3913), - [sym_boolean] = STATE(3913), - [sym_unit] = STATE(3913), - [sym__value_name] = STATE(4029), - [sym_parenthesized_operator] = STATE(4030), - [sym_value_path] = STATE(4034), - [sym_module_path] = STATE(8523), - [sym_constructor_path] = STATE(4034), - [sym__label] = STATE(4159), - [sym_tag] = STATE(4034), - [aux_sym_class_application_repeat1] = STATE(1408), - [sym__identifier] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3273), - [anon_sym_false] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_constraint] = ACTIONS(2657), - [anon_sym_val] = ACTIONS(2657), - [anon_sym_end] = ACTIONS(2657), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_inherit] = ACTIONS(2657), - [anon_sym_method] = ACTIONS(2657), - [anon_sym_as] = ACTIONS(2657), - [anon_sym_initializer] = ACTIONS(2657), - [anon_sym_LBRACK_PIPE] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_LBRACE_LT] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [sym_ocamlyacc_value] = ACTIONS(3287), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2657), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2655), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3289), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3291), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2655), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2655), - [aux_sym_number_token1] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_prefix_operator] = ACTIONS(3299), - [sym__capitalized_identifier] = ACTIONS(3301), - [aux_sym_tag_token1] = ACTIONS(3303), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1410] = { - [sym_attribute] = STATE(1410), - [sym__identifier] = ACTIONS(3305), - [anon_sym_COLON_GT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_COLON2] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_DASH_GT] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_constraint] = ACTIONS(3305), - [anon_sym_val] = ACTIONS(3305), - [anon_sym_end] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_inherit] = ACTIONS(3305), - [anon_sym_method] = ACTIONS(3305), - [anon_sym_initializer] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_PIPE_RBRACK] = ACTIONS(3307), - [anon_sym_then] = ACTIONS(3305), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_GT_RBRACE] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1411] = { - [sym_attribute] = STATE(1411), - [sym__identifier] = ACTIONS(3309), - [anon_sym_COLON_GT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_RPAREN] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_COLON2] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_DASH_GT] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_constraint] = ACTIONS(3309), - [anon_sym_val] = ACTIONS(3309), - [anon_sym_end] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_inherit] = ACTIONS(3309), - [anon_sym_method] = ACTIONS(3309), - [anon_sym_initializer] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_PIPE_RBRACK] = ACTIONS(3311), - [anon_sym_then] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_GT_RBRACE] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1412] = { - [sym_attribute] = STATE(1412), - [sym__identifier] = ACTIONS(3313), - [anon_sym_COLON_GT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_COLON2] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_DASH_GT] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_constraint] = ACTIONS(3313), - [anon_sym_val] = ACTIONS(3313), - [anon_sym_end] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_inherit] = ACTIONS(3313), - [anon_sym_method] = ACTIONS(3313), - [anon_sym_initializer] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_PIPE_RBRACK] = ACTIONS(3315), - [anon_sym_then] = ACTIONS(3313), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_GT_RBRACE] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1413] = { - [sym_attribute] = STATE(1413), - [sym__identifier] = ACTIONS(3317), - [anon_sym_COLON_GT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_RPAREN] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_COLON2] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_DASH_GT] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_constraint] = ACTIONS(3317), - [anon_sym_val] = ACTIONS(3317), - [anon_sym_end] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_inherit] = ACTIONS(3317), - [anon_sym_method] = ACTIONS(3317), - [anon_sym_initializer] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_PIPE_RBRACK] = ACTIONS(3319), - [anon_sym_then] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_GT_RBRACE] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1414] = { - [sym_attribute] = STATE(1414), - [sym__identifier] = ACTIONS(3321), - [anon_sym_COLON_GT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_COLON2] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_DASH_GT] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_constraint] = ACTIONS(3321), - [anon_sym_val] = ACTIONS(3321), - [anon_sym_end] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_inherit] = ACTIONS(3321), - [anon_sym_method] = ACTIONS(3321), - [anon_sym_initializer] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_PIPE_RBRACK] = ACTIONS(3323), - [anon_sym_then] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_GT_RBRACE] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1415] = { - [sym_attribute] = STATE(1415), - [sym__identifier] = ACTIONS(3117), - [anon_sym_COLON_GT] = ACTIONS(3119), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_RPAREN] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_COLON2] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_DASH_GT] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3119), - [anon_sym_RBRACE] = ACTIONS(3119), - [anon_sym_constraint] = ACTIONS(3117), - [anon_sym_val] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_with] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_inherit] = ACTIONS(3117), - [anon_sym_method] = ACTIONS(3117), - [anon_sym_initializer] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_then] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_do] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_GT_RBRACE] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1416] = { - [sym_attribute] = STATE(1416), - [sym__identifier] = ACTIONS(3325), - [anon_sym_COLON_GT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_COLON2] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_constraint] = ACTIONS(3325), - [anon_sym_val] = ACTIONS(3325), - [anon_sym_end] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_inherit] = ACTIONS(3325), - [anon_sym_method] = ACTIONS(3325), - [anon_sym_initializer] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_PIPE_RBRACK] = ACTIONS(3327), - [anon_sym_then] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_GT_RBRACE] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1417] = { - [sym_attribute] = STATE(1417), - [sym__identifier] = ACTIONS(3329), - [anon_sym_COLON_GT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_RPAREN] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_COLON2] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_DASH_GT] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_constraint] = ACTIONS(3329), - [anon_sym_val] = ACTIONS(3329), - [anon_sym_end] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_inherit] = ACTIONS(3329), - [anon_sym_method] = ACTIONS(3329), - [anon_sym_initializer] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_PIPE_RBRACK] = ACTIONS(3331), - [anon_sym_then] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_GT_RBRACE] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1418] = { - [sym_attribute] = STATE(1418), - [sym__identifier] = ACTIONS(3333), - [anon_sym_COLON_GT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_RPAREN] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_COLON2] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_DASH_GT] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_constraint] = ACTIONS(3333), - [anon_sym_val] = ACTIONS(3333), - [anon_sym_end] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_inherit] = ACTIONS(3333), - [anon_sym_method] = ACTIONS(3333), - [anon_sym_initializer] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_PIPE_RBRACK] = ACTIONS(3335), - [anon_sym_then] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_GT_RBRACE] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1419] = { - [sym_attribute] = STATE(1419), - [sym__identifier] = ACTIONS(3337), - [anon_sym_COLON_GT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_RPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_COLON2] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_DASH_GT] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_constraint] = ACTIONS(3337), - [anon_sym_val] = ACTIONS(3337), - [anon_sym_end] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_inherit] = ACTIONS(3337), - [anon_sym_method] = ACTIONS(3337), - [anon_sym_initializer] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_PIPE_RBRACK] = ACTIONS(3339), - [anon_sym_then] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_GT_RBRACE] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1420] = { - [sym_attribute] = STATE(1420), - [sym__identifier] = ACTIONS(3341), - [anon_sym_COLON_GT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_COLON2] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_DASH_GT] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_constraint] = ACTIONS(3341), - [anon_sym_val] = ACTIONS(3341), - [anon_sym_end] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_inherit] = ACTIONS(3341), - [anon_sym_method] = ACTIONS(3341), - [anon_sym_initializer] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_PIPE_RBRACK] = ACTIONS(3343), - [anon_sym_then] = ACTIONS(3341), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_do] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_GT_RBRACE] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1421] = { - [sym_attribute] = STATE(1421), - [sym__identifier] = ACTIONS(3345), - [anon_sym_COLON_GT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_COLON2] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_DASH_GT] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_constraint] = ACTIONS(3345), - [anon_sym_val] = ACTIONS(3345), - [anon_sym_end] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_inherit] = ACTIONS(3345), - [anon_sym_method] = ACTIONS(3345), - [anon_sym_initializer] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_PIPE_RBRACK] = ACTIONS(3347), - [anon_sym_then] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_GT_RBRACE] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1422] = { - [sym_attribute] = STATE(1422), - [sym__identifier] = ACTIONS(3133), - [anon_sym_COLON_GT] = ACTIONS(3135), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_RPAREN] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_COLON2] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_DASH_GT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(3135), - [anon_sym_constraint] = ACTIONS(3133), - [anon_sym_val] = ACTIONS(3133), - [anon_sym_end] = ACTIONS(3133), - [anon_sym_with] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_inherit] = ACTIONS(3133), - [anon_sym_method] = ACTIONS(3133), - [anon_sym_initializer] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_then] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_do] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_GT_RBRACE] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1423] = { - [sym_attribute] = STATE(1423), - [sym__identifier] = ACTIONS(3349), - [anon_sym_COLON_GT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_COLON2] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_DASH_GT] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_constraint] = ACTIONS(3349), - [anon_sym_val] = ACTIONS(3349), - [anon_sym_end] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_inherit] = ACTIONS(3349), - [anon_sym_method] = ACTIONS(3349), - [anon_sym_initializer] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_PIPE_RBRACK] = ACTIONS(3351), - [anon_sym_then] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_GT_RBRACE] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1424] = { - [sym_attribute] = STATE(1424), - [sym__identifier] = ACTIONS(3137), - [anon_sym_COLON_GT] = ACTIONS(3139), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_RPAREN] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_COLON2] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_DASH_GT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3139), - [anon_sym_RBRACE] = ACTIONS(3139), - [anon_sym_constraint] = ACTIONS(3137), - [anon_sym_val] = ACTIONS(3137), - [anon_sym_end] = ACTIONS(3137), - [anon_sym_with] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_inherit] = ACTIONS(3137), - [anon_sym_method] = ACTIONS(3137), - [anon_sym_initializer] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_then] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_do] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_GT_RBRACE] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1425] = { - [sym_attribute] = STATE(1425), - [sym__identifier] = ACTIONS(3353), - [anon_sym_COLON_GT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_COLON2] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_DASH_GT] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_constraint] = ACTIONS(3353), - [anon_sym_val] = ACTIONS(3353), - [anon_sym_end] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_inherit] = ACTIONS(3353), - [anon_sym_method] = ACTIONS(3353), - [anon_sym_initializer] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_PIPE_RBRACK] = ACTIONS(3355), - [anon_sym_then] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_GT_RBRACE] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1426] = { - [sym_attribute] = STATE(1426), - [sym__identifier] = ACTIONS(3141), - [anon_sym_COLON_GT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_RPAREN] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_COLON2] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_DASH_GT] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_constraint] = ACTIONS(3141), - [anon_sym_val] = ACTIONS(3141), - [anon_sym_end] = ACTIONS(3141), - [anon_sym_with] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_inherit] = ACTIONS(3141), - [anon_sym_method] = ACTIONS(3141), - [anon_sym_initializer] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_then] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_do] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_GT_RBRACE] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1427] = { - [sym_attribute] = STATE(1427), - [sym__identifier] = ACTIONS(3357), - [anon_sym_COLON_GT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_COLON2] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_DASH_GT] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_constraint] = ACTIONS(3357), - [anon_sym_val] = ACTIONS(3357), - [anon_sym_end] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_inherit] = ACTIONS(3357), - [anon_sym_method] = ACTIONS(3357), - [anon_sym_initializer] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_PIPE_RBRACK] = ACTIONS(3359), - [anon_sym_then] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_GT_RBRACE] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1428] = { - [sym_attribute] = STATE(1428), - [sym__identifier] = ACTIONS(3361), - [anon_sym_COLON_GT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_COLON2] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_DASH_GT] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_constraint] = ACTIONS(3361), - [anon_sym_val] = ACTIONS(3361), - [anon_sym_end] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_inherit] = ACTIONS(3361), - [anon_sym_method] = ACTIONS(3361), - [anon_sym_initializer] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_PIPE_RBRACK] = ACTIONS(3363), - [anon_sym_then] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_GT_RBRACE] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1429] = { - [sym_attribute] = STATE(1429), - [sym__identifier] = ACTIONS(3365), - [anon_sym_COLON_GT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_COLON2] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_DASH_GT] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_constraint] = ACTIONS(3365), - [anon_sym_val] = ACTIONS(3365), - [anon_sym_end] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_inherit] = ACTIONS(3365), - [anon_sym_method] = ACTIONS(3365), - [anon_sym_initializer] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_PIPE_RBRACK] = ACTIONS(3367), - [anon_sym_then] = ACTIONS(3365), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_GT_RBRACE] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1430] = { - [sym_attribute] = STATE(1430), - [sym__identifier] = ACTIONS(3369), - [anon_sym_COLON_GT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_COLON2] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_DASH_GT] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_constraint] = ACTIONS(3369), - [anon_sym_val] = ACTIONS(3369), - [anon_sym_end] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_inherit] = ACTIONS(3369), - [anon_sym_method] = ACTIONS(3369), - [anon_sym_initializer] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_PIPE_RBRACK] = ACTIONS(3371), - [anon_sym_then] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_GT_RBRACE] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1431] = { - [sym__simple_expression] = STATE(3985), - [sym_typed_expression] = STATE(4034), - [sym_list_expression] = STATE(4034), - [sym_array_expression] = STATE(4034), - [sym_record_expression] = STATE(4034), - [sym__argument] = STATE(4327), - [sym_labeled_argument] = STATE(4281), - [sym_prefix_expression] = STATE(4034), - [sym_hash_expression] = STATE(4034), - [sym_field_get_expression] = STATE(4034), - [sym_array_get_expression] = STATE(4034), - [sym_string_get_expression] = STATE(4034), - [sym_bigarray_get_expression] = STATE(4034), - [sym_coercion_expression] = STATE(4034), - [sym_local_open_expression] = STATE(4034), - [sym_package_expression] = STATE(4034), - [sym_new_expression] = STATE(4034), - [sym_object_copy_expression] = STATE(4034), - [sym_method_invocation] = STATE(4034), - [sym_object_expression] = STATE(4034), - [sym_parenthesized_expression] = STATE(4034), - [sym_attribute] = STATE(1431), - [sym__extension] = STATE(3985), - [sym_extension] = STATE(4048), - [sym_quoted_extension] = STATE(4048), - [sym__constant] = STATE(4034), - [sym_number] = STATE(3913), - [sym_character] = STATE(3913), - [sym_string] = STATE(3913), - [sym_quoted_string] = STATE(3913), - [sym_boolean] = STATE(3913), - [sym_unit] = STATE(3913), - [sym__value_name] = STATE(4029), - [sym_parenthesized_operator] = STATE(4030), - [sym_value_path] = STATE(4034), - [sym_module_path] = STATE(8523), - [sym_constructor_path] = STATE(4034), - [sym__label] = STATE(4159), - [sym_tag] = STATE(4034), - [aux_sym_class_application_repeat1] = STATE(1409), - [sym__identifier] = ACTIONS(3265), - [anon_sym_TILDE] = ACTIONS(3267), - [anon_sym_QMARK] = ACTIONS(3267), - [anon_sym_LPAREN] = ACTIONS(3269), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_true] = ACTIONS(3273), - [anon_sym_false] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_constraint] = ACTIONS(2699), - [anon_sym_val] = ACTIONS(2699), - [anon_sym_end] = ACTIONS(2699), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_inherit] = ACTIONS(2699), - [anon_sym_method] = ACTIONS(2699), - [anon_sym_as] = ACTIONS(2699), - [anon_sym_initializer] = ACTIONS(2699), - [anon_sym_LBRACK_PIPE] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_LBRACE_LT] = ACTIONS(3283), - [anon_sym_begin] = ACTIONS(3285), - [sym_ocamlyacc_value] = ACTIONS(3287), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2699), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(2697), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3289), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3291), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(2697), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(2697), - [aux_sym_number_token1] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3297), - [sym_prefix_operator] = ACTIONS(3299), - [sym__capitalized_identifier] = ACTIONS(3301), - [aux_sym_tag_token1] = ACTIONS(3303), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1432] = { - [sym_attribute] = STATE(1432), - [sym__identifier] = ACTIONS(3069), - [anon_sym_COLON_GT] = ACTIONS(3071), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_RPAREN] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_COLON2] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_DASH_GT] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3071), - [anon_sym_RBRACE] = ACTIONS(3071), - [anon_sym_constraint] = ACTIONS(3069), - [anon_sym_val] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_with] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_inherit] = ACTIONS(3069), - [anon_sym_method] = ACTIONS(3069), - [anon_sym_initializer] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_then] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_do] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_GT_RBRACE] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1433] = { - [sym_attribute] = STATE(1433), - [sym__identifier] = ACTIONS(3373), - [anon_sym_COLON_GT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_COLON2] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_constraint] = ACTIONS(3373), - [anon_sym_val] = ACTIONS(3373), - [anon_sym_end] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_inherit] = ACTIONS(3373), - [anon_sym_method] = ACTIONS(3373), - [anon_sym_initializer] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_PIPE_RBRACK] = ACTIONS(3375), - [anon_sym_then] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_GT_RBRACE] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1434] = { - [sym_attribute] = STATE(1434), - [sym__identifier] = ACTIONS(3377), - [anon_sym_COLON_GT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_COLON2] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_DASH_GT] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_constraint] = ACTIONS(3377), - [anon_sym_val] = ACTIONS(3377), - [anon_sym_end] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_inherit] = ACTIONS(3377), - [anon_sym_method] = ACTIONS(3377), - [anon_sym_initializer] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_PIPE_RBRACK] = ACTIONS(3379), - [anon_sym_then] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_GT_RBRACE] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1435] = { - [sym_attribute] = STATE(1435), - [sym__identifier] = ACTIONS(3381), - [anon_sym_COLON_GT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_COLON2] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_constraint] = ACTIONS(3381), - [anon_sym_val] = ACTIONS(3381), - [anon_sym_end] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_inherit] = ACTIONS(3381), - [anon_sym_method] = ACTIONS(3381), - [anon_sym_initializer] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_PIPE_RBRACK] = ACTIONS(3383), - [anon_sym_then] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_GT_RBRACE] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1436] = { - [sym_attribute] = STATE(1436), - [sym__identifier] = ACTIONS(3385), - [anon_sym_COLON_GT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3387), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_COLON2] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_DASH_GT] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_constraint] = ACTIONS(3385), - [anon_sym_val] = ACTIONS(3385), - [anon_sym_end] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_inherit] = ACTIONS(3385), - [anon_sym_method] = ACTIONS(3385), - [anon_sym_initializer] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_PIPE_RBRACK] = ACTIONS(3387), - [anon_sym_then] = ACTIONS(3385), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_GT_RBRACE] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1437] = { - [sym_attribute] = STATE(1437), - [sym__identifier] = ACTIONS(3389), - [anon_sym_COLON_GT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_COLON2] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_constraint] = ACTIONS(3389), - [anon_sym_val] = ACTIONS(3389), - [anon_sym_end] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_inherit] = ACTIONS(3389), - [anon_sym_method] = ACTIONS(3389), - [anon_sym_initializer] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_PIPE_RBRACK] = ACTIONS(3391), - [anon_sym_then] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_GT_RBRACE] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1438] = { - [sym_attribute] = STATE(1438), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1439] = { - [sym_attribute] = STATE(1439), - [sym__identifier] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_RPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_COLON2] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_DASH_GT] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_constraint] = ACTIONS(3397), - [anon_sym_val] = ACTIONS(3397), - [anon_sym_end] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_inherit] = ACTIONS(3397), - [anon_sym_method] = ACTIONS(3397), - [anon_sym_initializer] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_PIPE_RBRACK] = ACTIONS(3399), - [anon_sym_then] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_GT_RBRACE] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1440] = { - [sym_attribute] = STATE(1440), - [sym__identifier] = ACTIONS(3149), - [anon_sym_COLON_GT] = ACTIONS(3151), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_RPAREN] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_COLON2] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_DASH_GT] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3151), - [anon_sym_RBRACE] = ACTIONS(3151), - [anon_sym_constraint] = ACTIONS(3149), - [anon_sym_val] = ACTIONS(3149), - [anon_sym_end] = ACTIONS(3149), - [anon_sym_with] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_inherit] = ACTIONS(3149), - [anon_sym_method] = ACTIONS(3149), - [anon_sym_initializer] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_then] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_do] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_GT_RBRACE] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1441] = { - [sym_attribute] = STATE(1441), - [sym__identifier] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_RPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_COLON2] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_DASH_GT] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_constraint] = ACTIONS(3401), - [anon_sym_val] = ACTIONS(3401), - [anon_sym_end] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_inherit] = ACTIONS(3401), - [anon_sym_method] = ACTIONS(3401), - [anon_sym_initializer] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_PIPE_RBRACK] = ACTIONS(3403), - [anon_sym_then] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_GT_RBRACE] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1442] = { - [sym_attribute] = STATE(1442), - [sym__identifier] = ACTIONS(3127), - [anon_sym_COLON_GT] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_RPAREN] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_COLON2] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_DASH_GT] = ACTIONS(3127), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_constraint] = ACTIONS(3127), - [anon_sym_val] = ACTIONS(3127), - [anon_sym_end] = ACTIONS(3127), - [anon_sym_with] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_inherit] = ACTIONS(3127), - [anon_sym_method] = ACTIONS(3127), - [anon_sym_initializer] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_then] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_do] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_GT_RBRACE] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1443] = { - [sym_attribute] = STATE(1443), - [sym__identifier] = ACTIONS(3121), - [anon_sym_COLON_GT] = ACTIONS(3123), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_RPAREN] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_COLON2] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_DASH_GT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3123), - [anon_sym_RBRACE] = ACTIONS(3123), - [anon_sym_constraint] = ACTIONS(3121), - [anon_sym_val] = ACTIONS(3121), - [anon_sym_end] = ACTIONS(3121), - [anon_sym_with] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_inherit] = ACTIONS(3121), - [anon_sym_method] = ACTIONS(3121), - [anon_sym_initializer] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_then] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_do] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_GT_RBRACE] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1444] = { - [sym_attribute] = STATE(1444), - [sym__identifier] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_COLON2] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_DASH_GT] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_constraint] = ACTIONS(3405), - [anon_sym_val] = ACTIONS(3405), - [anon_sym_end] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_inherit] = ACTIONS(3405), - [anon_sym_method] = ACTIONS(3405), - [anon_sym_initializer] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_PIPE_RBRACK] = ACTIONS(3407), - [anon_sym_then] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_GT_RBRACE] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1445] = { - [sym_attribute] = STATE(1445), - [sym__identifier] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_COLON2] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_constraint] = ACTIONS(3409), - [anon_sym_val] = ACTIONS(3409), - [anon_sym_end] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_inherit] = ACTIONS(3409), - [anon_sym_method] = ACTIONS(3409), - [anon_sym_initializer] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_PIPE_RBRACK] = ACTIONS(3411), - [anon_sym_then] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_GT_RBRACE] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1446] = { - [sym_attribute] = STATE(1446), - [sym__identifier] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_COLON2] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_DASH_GT] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_constraint] = ACTIONS(3413), - [anon_sym_val] = ACTIONS(3413), - [anon_sym_end] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_inherit] = ACTIONS(3413), - [anon_sym_method] = ACTIONS(3413), - [anon_sym_initializer] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_PIPE_RBRACK] = ACTIONS(3415), - [anon_sym_then] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_GT_RBRACE] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1447] = { - [sym_attribute] = STATE(1447), - [sym__identifier] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_COLON2] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_DASH_GT] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_constraint] = ACTIONS(3417), - [anon_sym_val] = ACTIONS(3417), - [anon_sym_end] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_inherit] = ACTIONS(3417), - [anon_sym_method] = ACTIONS(3417), - [anon_sym_initializer] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_PIPE_RBRACK] = ACTIONS(3419), - [anon_sym_then] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_GT_RBRACE] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1448] = { - [sym_attribute] = STATE(1448), - [sym__identifier] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_COLON2] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_DASH_GT] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_constraint] = ACTIONS(3421), - [anon_sym_val] = ACTIONS(3421), - [anon_sym_end] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_inherit] = ACTIONS(3421), - [anon_sym_method] = ACTIONS(3421), - [anon_sym_initializer] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_PIPE_RBRACK] = ACTIONS(3423), - [anon_sym_then] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_GT_RBRACE] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1449] = { - [sym_attribute] = STATE(1449), - [sym__identifier] = ACTIONS(3425), - [anon_sym_COLON_GT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_COLON2] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_DASH_GT] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_constraint] = ACTIONS(3425), - [anon_sym_val] = ACTIONS(3425), - [anon_sym_end] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_inherit] = ACTIONS(3425), - [anon_sym_method] = ACTIONS(3425), - [anon_sym_initializer] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_PIPE_RBRACK] = ACTIONS(3427), - [anon_sym_then] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_GT_RBRACE] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1450] = { - [sym_attribute] = STATE(1450), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_and] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym_and_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1451] = { - [sym_attribute] = STATE(1451), - [sym__identifier] = ACTIONS(3429), - [anon_sym_COLON_GT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_COLON2] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_DASH_GT] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_constraint] = ACTIONS(3429), - [anon_sym_val] = ACTIONS(3429), - [anon_sym_end] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_inherit] = ACTIONS(3429), - [anon_sym_method] = ACTIONS(3429), - [anon_sym_initializer] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_PIPE_RBRACK] = ACTIONS(3431), - [anon_sym_then] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_GT_RBRACE] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1452] = { - [sym_attribute] = STATE(1452), - [sym__identifier] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_COLON2] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_DASH_GT] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_constraint] = ACTIONS(3433), - [anon_sym_val] = ACTIONS(3433), - [anon_sym_end] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_inherit] = ACTIONS(3433), - [anon_sym_method] = ACTIONS(3433), - [anon_sym_initializer] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_PIPE_RBRACK] = ACTIONS(3435), - [anon_sym_then] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_GT_RBRACE] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1453] = { - [sym_attribute] = STATE(1453), - [sym__identifier] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_RPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_COLON2] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_DASH_GT] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_constraint] = ACTIONS(3437), - [anon_sym_val] = ACTIONS(3437), - [anon_sym_end] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_inherit] = ACTIONS(3437), - [anon_sym_method] = ACTIONS(3437), - [anon_sym_initializer] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_PIPE_RBRACK] = ACTIONS(3439), - [anon_sym_then] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_GT_RBRACE] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1454] = { - [sym_attribute] = STATE(1454), - [sym__identifier] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_COLON2] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_constraint] = ACTIONS(3441), - [anon_sym_val] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_inherit] = ACTIONS(3441), - [anon_sym_method] = ACTIONS(3441), - [anon_sym_initializer] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1283), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_PIPE_RBRACK] = ACTIONS(3443), - [anon_sym_then] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_GT_RBRACE] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1285), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1455] = { - [sym_attribute] = STATE(1455), - [sym__identifier] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3447), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_COLON2] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_constraint] = ACTIONS(3445), - [anon_sym_val] = ACTIONS(3445), - [anon_sym_end] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_inherit] = ACTIONS(3445), - [anon_sym_method] = ACTIONS(3445), - [anon_sym_initializer] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_PIPE_RBRACK] = ACTIONS(3447), - [anon_sym_then] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_GT_RBRACE] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1456] = { - [sym_attribute] = STATE(1456), - [sym__identifier] = ACTIONS(3449), - [anon_sym_COLON_GT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_RBRACK] = ACTIONS(3451), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_COLON2] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_DASH_GT] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_constraint] = ACTIONS(3449), - [anon_sym_val] = ACTIONS(3449), - [anon_sym_end] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_inherit] = ACTIONS(3449), - [anon_sym_method] = ACTIONS(3449), - [anon_sym_initializer] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_PIPE_RBRACK] = ACTIONS(3451), - [anon_sym_then] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_GT_RBRACE] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1457] = { - [sym_attribute] = STATE(1457), - [sym__identifier] = ACTIONS(3453), - [anon_sym_COLON_GT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_RPAREN] = ACTIONS(3455), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_COLON2] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_DASH_GT] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_constraint] = ACTIONS(3453), - [anon_sym_val] = ACTIONS(3453), - [anon_sym_end] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_inherit] = ACTIONS(3453), - [anon_sym_method] = ACTIONS(3453), - [anon_sym_initializer] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_PIPE_RBRACK] = ACTIONS(3455), - [anon_sym_then] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_GT_RBRACE] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1458] = { - [sym_attribute] = STATE(1458), - [sym__identifier] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_COLON2] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_constraint] = ACTIONS(3457), - [anon_sym_val] = ACTIONS(3457), - [anon_sym_end] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_inherit] = ACTIONS(3457), - [anon_sym_method] = ACTIONS(3457), - [anon_sym_initializer] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_PIPE_RBRACK] = ACTIONS(3459), - [anon_sym_then] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_GT_RBRACE] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1459] = { - [sym_attribute] = STATE(1459), - [sym__identifier] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_COLON2] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_DASH_GT] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_RBRACE] = ACTIONS(3463), - [anon_sym_constraint] = ACTIONS(3461), - [anon_sym_val] = ACTIONS(3461), - [anon_sym_end] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_inherit] = ACTIONS(3461), - [anon_sym_method] = ACTIONS(3461), - [anon_sym_initializer] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_PIPE_RBRACK] = ACTIONS(3463), - [anon_sym_then] = ACTIONS(3461), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_GT_RBRACE] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1460] = { - [sym_attribute] = STATE(1460), - [sym__identifier] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(3467), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_COLON2] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_DASH_GT] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3467), - [anon_sym_RBRACE] = ACTIONS(3467), - [anon_sym_constraint] = ACTIONS(3465), - [anon_sym_val] = ACTIONS(3465), - [anon_sym_end] = ACTIONS(3465), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_inherit] = ACTIONS(3465), - [anon_sym_method] = ACTIONS(3465), - [anon_sym_initializer] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_PIPE_RBRACK] = ACTIONS(3467), - [anon_sym_then] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_GT_RBRACE] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1461] = { - [sym_attribute] = STATE(1461), - [sym__identifier] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_RPAREN] = ACTIONS(3471), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_COLON2] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_DASH_GT] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_constraint] = ACTIONS(3469), - [anon_sym_val] = ACTIONS(3469), - [anon_sym_end] = ACTIONS(3469), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_inherit] = ACTIONS(3469), - [anon_sym_method] = ACTIONS(3469), - [anon_sym_initializer] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_PIPE_RBRACK] = ACTIONS(3471), - [anon_sym_then] = ACTIONS(3469), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_GT_RBRACE] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1462] = { - [sym_attribute] = STATE(1462), - [sym__identifier] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_RPAREN] = ACTIONS(3475), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3475), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_COLON2] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_DASH_GT] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym_RBRACE] = ACTIONS(3475), - [anon_sym_constraint] = ACTIONS(3473), - [anon_sym_val] = ACTIONS(3473), - [anon_sym_end] = ACTIONS(3473), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_inherit] = ACTIONS(3473), - [anon_sym_method] = ACTIONS(3473), - [anon_sym_initializer] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_PIPE_RBRACK] = ACTIONS(3475), - [anon_sym_then] = ACTIONS(3473), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_GT_RBRACE] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1463] = { - [sym_attribute] = STATE(1463), - [sym__identifier] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_RPAREN] = ACTIONS(3479), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3479), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_COLON2] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_DASH_GT] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym_RBRACE] = ACTIONS(3479), - [anon_sym_constraint] = ACTIONS(3477), - [anon_sym_val] = ACTIONS(3477), - [anon_sym_end] = ACTIONS(3477), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_inherit] = ACTIONS(3477), - [anon_sym_method] = ACTIONS(3477), - [anon_sym_initializer] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_PIPE_RBRACK] = ACTIONS(3479), - [anon_sym_then] = ACTIONS(3477), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_GT_RBRACE] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1464] = { - [sym_attribute] = STATE(1464), - [sym__identifier] = ACTIONS(3481), - [anon_sym_COLON_GT] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_RPAREN] = ACTIONS(3483), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_COLON2] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_DASH_GT] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_constraint] = ACTIONS(3481), - [anon_sym_val] = ACTIONS(3481), - [anon_sym_end] = ACTIONS(3481), - [anon_sym_with] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_inherit] = ACTIONS(3481), - [anon_sym_method] = ACTIONS(3481), - [anon_sym_initializer] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_PIPE_RBRACK] = ACTIONS(3483), - [anon_sym_then] = ACTIONS(3481), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_GT_RBRACE] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1465] = { - [sym_attribute] = STATE(1465), - [sym__identifier] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_RPAREN] = ACTIONS(3487), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_COLON2] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_DASH_GT] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym_RBRACE] = ACTIONS(3487), - [anon_sym_constraint] = ACTIONS(3485), - [anon_sym_val] = ACTIONS(3485), - [anon_sym_end] = ACTIONS(3485), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_inherit] = ACTIONS(3485), - [anon_sym_method] = ACTIONS(3485), - [anon_sym_initializer] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_PIPE_RBRACK] = ACTIONS(3487), - [anon_sym_then] = ACTIONS(3485), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_GT_RBRACE] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1466] = { - [sym_attribute] = STATE(1466), - [sym__identifier] = ACTIONS(3149), - [anon_sym_SEMI_SEMI] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_and] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_external] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_exception] = ACTIONS(3149), - [anon_sym_module] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_include] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_end] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym_let_operator] = ACTIONS(3151), - [sym_and_operator] = ACTIONS(3151), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_directive_token1] = ACTIONS(3149), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1467] = { - [sym_attribute] = STATE(1467), - [sym__identifier] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_RPAREN] = ACTIONS(3491), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_COLON2] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_DASH_GT] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3491), - [anon_sym_RBRACE] = ACTIONS(3491), - [anon_sym_constraint] = ACTIONS(3489), - [anon_sym_val] = ACTIONS(3489), - [anon_sym_end] = ACTIONS(3489), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_inherit] = ACTIONS(3489), - [anon_sym_method] = ACTIONS(3489), - [anon_sym_initializer] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_PIPE_RBRACK] = ACTIONS(3491), - [anon_sym_then] = ACTIONS(3489), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_GT_RBRACE] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1468] = { - [sym_attribute] = STATE(1468), - [sym__identifier] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_RPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_COLON2] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_DASH_GT] = ACTIONS(3493), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_constraint] = ACTIONS(3493), - [anon_sym_val] = ACTIONS(3493), - [anon_sym_end] = ACTIONS(3493), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_inherit] = ACTIONS(3493), - [anon_sym_method] = ACTIONS(3493), - [anon_sym_initializer] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_PIPE_RBRACK] = ACTIONS(3495), - [anon_sym_then] = ACTIONS(3493), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_GT_RBRACE] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1469] = { - [sym_attribute] = STATE(1469), - [sym__identifier] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_RPAREN] = ACTIONS(3499), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_COLON2] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1281), - [anon_sym_DASH_GT] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3499), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_constraint] = ACTIONS(3497), - [anon_sym_val] = ACTIONS(3497), - [anon_sym_end] = ACTIONS(3497), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_inherit] = ACTIONS(3497), - [anon_sym_method] = ACTIONS(3497), - [anon_sym_initializer] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_PIPE_RBRACK] = ACTIONS(3499), - [anon_sym_then] = ACTIONS(3497), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_GT_RBRACE] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1470] = { - [sym_attribute] = STATE(1470), - [sym__identifier] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_RPAREN] = ACTIONS(3503), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_COLON2] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_DASH_GT] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_constraint] = ACTIONS(3501), - [anon_sym_val] = ACTIONS(3501), - [anon_sym_end] = ACTIONS(3501), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_inherit] = ACTIONS(3501), - [anon_sym_method] = ACTIONS(3501), - [anon_sym_initializer] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_PIPE_RBRACK] = ACTIONS(3503), - [anon_sym_then] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_GT_RBRACE] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1471] = { - [sym_attribute] = STATE(1471), - [sym__identifier] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_RPAREN] = ACTIONS(3507), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3507), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_COLON2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_DASH_GT] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3507), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym_constraint] = ACTIONS(3505), - [anon_sym_val] = ACTIONS(3505), - [anon_sym_end] = ACTIONS(3505), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_inherit] = ACTIONS(3505), - [anon_sym_method] = ACTIONS(3505), - [anon_sym_initializer] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_PIPE_RBRACK] = ACTIONS(3507), - [anon_sym_then] = ACTIONS(3505), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_GT_RBRACE] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1472] = { - [sym_attribute] = STATE(1472), - [sym__identifier] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_RPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3511), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_COLON2] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_DASH_GT] = ACTIONS(3509), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_constraint] = ACTIONS(3509), - [anon_sym_val] = ACTIONS(3509), - [anon_sym_end] = ACTIONS(3509), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_inherit] = ACTIONS(3509), - [anon_sym_method] = ACTIONS(3509), - [anon_sym_initializer] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_PIPE_RBRACK] = ACTIONS(3511), - [anon_sym_then] = ACTIONS(3509), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_GT_RBRACE] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1473] = { - [sym_attribute] = STATE(1473), - [sym__identifier] = ACTIONS(3513), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_RPAREN] = ACTIONS(3515), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_COLON2] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_DASH_GT] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3515), - [anon_sym_RBRACE] = ACTIONS(3515), - [anon_sym_constraint] = ACTIONS(3513), - [anon_sym_val] = ACTIONS(3513), - [anon_sym_end] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_inherit] = ACTIONS(3513), - [anon_sym_method] = ACTIONS(3513), - [anon_sym_initializer] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_PIPE_RBRACK] = ACTIONS(3515), - [anon_sym_then] = ACTIONS(3513), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_do] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_GT_RBRACE] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1474] = { - [sym_attribute] = STATE(1474), - [sym__identifier] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_COLON2] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_DASH_GT] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_constraint] = ACTIONS(3517), - [anon_sym_val] = ACTIONS(3517), - [anon_sym_end] = ACTIONS(3517), - [anon_sym_with] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_inherit] = ACTIONS(3517), - [anon_sym_method] = ACTIONS(3517), - [anon_sym_initializer] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_PIPE_RBRACK] = ACTIONS(3519), - [anon_sym_then] = ACTIONS(3517), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_GT_RBRACE] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1475] = { - [sym_attribute] = STATE(1475), - [sym__identifier] = ACTIONS(3521), - [anon_sym_COLON_GT] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_RBRACK] = ACTIONS(3523), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_COLON2] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_DASH_GT] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_RBRACE] = ACTIONS(3523), - [anon_sym_constraint] = ACTIONS(3521), - [anon_sym_val] = ACTIONS(3521), - [anon_sym_end] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_inherit] = ACTIONS(3521), - [anon_sym_method] = ACTIONS(3521), - [anon_sym_initializer] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_PIPE_RBRACK] = ACTIONS(3523), - [anon_sym_then] = ACTIONS(3521), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_do] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_GT_RBRACE] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1476] = { - [sym_attribute] = STATE(1476), - [sym__identifier] = ACTIONS(3525), - [anon_sym_COLON_GT] = ACTIONS(3527), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_RBRACK] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_COLON2] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_DASH_GT] = ACTIONS(3525), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3527), - [anon_sym_RBRACE] = ACTIONS(3527), - [anon_sym_constraint] = ACTIONS(3525), - [anon_sym_val] = ACTIONS(3525), - [anon_sym_end] = ACTIONS(3525), - [anon_sym_with] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_inherit] = ACTIONS(3525), - [anon_sym_method] = ACTIONS(3525), - [anon_sym_initializer] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_PIPE_RBRACK] = ACTIONS(3527), - [anon_sym_then] = ACTIONS(3525), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_do] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_GT_RBRACE] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1477] = { - [sym_attribute] = STATE(1477), - [sym__identifier] = ACTIONS(3531), - [anon_sym_COLON_GT] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_COLON2] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_DASH_GT] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_constraint] = ACTIONS(3531), - [anon_sym_val] = ACTIONS(3531), - [anon_sym_end] = ACTIONS(3531), - [anon_sym_with] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_inherit] = ACTIONS(3531), - [anon_sym_method] = ACTIONS(3531), - [anon_sym_initializer] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_PIPE_RBRACK] = ACTIONS(3533), - [anon_sym_then] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_GT_RBRACE] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1478] = { - [sym_attribute] = STATE(1478), - [sym__identifier] = ACTIONS(3535), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_COLON2] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_DASH_GT] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_constraint] = ACTIONS(3535), - [anon_sym_val] = ACTIONS(3535), - [anon_sym_end] = ACTIONS(3535), - [anon_sym_with] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_inherit] = ACTIONS(3535), - [anon_sym_method] = ACTIONS(3535), - [anon_sym_initializer] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_PIPE_RBRACK] = ACTIONS(3537), - [anon_sym_then] = ACTIONS(3535), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_do] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_GT_RBRACE] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1479] = { - [sym_attribute] = STATE(1479), - [sym__identifier] = ACTIONS(3141), - [anon_sym_SEMI_SEMI] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_and] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_external] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_exception] = ACTIONS(3141), - [anon_sym_module] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_include] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_end] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym_let_operator] = ACTIONS(3143), - [sym_and_operator] = ACTIONS(3143), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_directive_token1] = ACTIONS(3141), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1480] = { - [sym_attribute] = STATE(1480), - [sym__identifier] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_COLON2] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_DASH_GT] = ACTIONS(3539), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_constraint] = ACTIONS(3539), - [anon_sym_val] = ACTIONS(3539), - [anon_sym_end] = ACTIONS(3539), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_inherit] = ACTIONS(3539), - [anon_sym_method] = ACTIONS(3539), - [anon_sym_initializer] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_PIPE_RBRACK] = ACTIONS(3541), - [anon_sym_then] = ACTIONS(3539), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_GT_RBRACE] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1481] = { - [sym_attribute] = STATE(1481), - [sym__identifier] = ACTIONS(3137), - [anon_sym_SEMI_SEMI] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3137), - [anon_sym_and] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_external] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_exception] = ACTIONS(3137), - [anon_sym_module] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_end] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym_let_operator] = ACTIONS(3139), - [sym_and_operator] = ACTIONS(3139), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_directive_token1] = ACTIONS(3137), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1482] = { - [sym_attribute] = STATE(1482), - [sym__identifier] = ACTIONS(3133), - [anon_sym_SEMI_SEMI] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_and] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_external] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_exception] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_include] = ACTIONS(3133), - [anon_sym_class] = ACTIONS(3133), - [anon_sym_end] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym_let_operator] = ACTIONS(3135), - [sym_and_operator] = ACTIONS(3135), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_directive_token1] = ACTIONS(3133), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1483] = { - [sym_attribute] = STATE(1483), - [sym__identifier] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(3545), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_COLON2] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_DASH_GT] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_constraint] = ACTIONS(3543), - [anon_sym_val] = ACTIONS(3543), - [anon_sym_end] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_inherit] = ACTIONS(3543), - [anon_sym_method] = ACTIONS(3543), - [anon_sym_initializer] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_PIPE_RBRACK] = ACTIONS(3545), - [anon_sym_then] = ACTIONS(3543), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_GT_RBRACE] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1484] = { - [sym_attribute] = STATE(1484), - [sym__identifier] = ACTIONS(3547), - [anon_sym_COLON_GT] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_RBRACK] = ACTIONS(3549), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_COLON2] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_DASH_GT] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_constraint] = ACTIONS(3547), - [anon_sym_val] = ACTIONS(3547), - [anon_sym_end] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_inherit] = ACTIONS(3547), - [anon_sym_method] = ACTIONS(3547), - [anon_sym_initializer] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_PIPE_RBRACK] = ACTIONS(3549), - [anon_sym_then] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_do] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_GT_RBRACE] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1485] = { - [sym_attribute] = STATE(1485), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_in] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3555), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1486] = { - [sym_attribute] = STATE(1486), - [sym__identifier] = ACTIONS(3121), - [anon_sym_SEMI_SEMI] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3121), - [anon_sym_and] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_exception] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_end] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym_let_operator] = ACTIONS(3123), - [sym_and_operator] = ACTIONS(3123), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_directive_token1] = ACTIONS(3121), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1487] = { - [sym_attribute] = STATE(1487), - [sym__identifier] = ACTIONS(3145), - [anon_sym_SEMI_SEMI] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_and] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_external] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_exception] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_include] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_end] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym_let_operator] = ACTIONS(3147), - [sym_and_operator] = ACTIONS(3147), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_directive_token1] = ACTIONS(3145), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1488] = { - [sym_attribute] = STATE(1488), - [sym__identifier] = ACTIONS(3557), - [anon_sym_COLON_GT] = ACTIONS(3559), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_RPAREN] = ACTIONS(3559), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_RBRACK] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_COLON2] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_DASH_GT] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_RBRACE] = ACTIONS(3559), - [anon_sym_constraint] = ACTIONS(3557), - [anon_sym_val] = ACTIONS(3557), - [anon_sym_end] = ACTIONS(3557), - [anon_sym_with] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_inherit] = ACTIONS(3557), - [anon_sym_method] = ACTIONS(3557), - [anon_sym_initializer] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_PIPE_RBRACK] = ACTIONS(3559), - [anon_sym_then] = ACTIONS(3557), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_do] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_GT_RBRACE] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1489] = { - [sym_attribute] = STATE(1489), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_and] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym_and_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1490] = { - [sym_attribute] = STATE(1490), - [sym__identifier] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_RPAREN] = ACTIONS(3563), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_COLON2] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_DASH_GT] = ACTIONS(3561), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_RBRACE] = ACTIONS(3563), - [anon_sym_constraint] = ACTIONS(3561), - [anon_sym_val] = ACTIONS(3561), - [anon_sym_end] = ACTIONS(3561), - [anon_sym_with] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_inherit] = ACTIONS(3561), - [anon_sym_method] = ACTIONS(3561), - [anon_sym_initializer] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_PIPE_RBRACK] = ACTIONS(3563), - [anon_sym_then] = ACTIONS(3561), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_GT_RBRACE] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1491] = { - [sym_attribute] = STATE(1491), - [sym__identifier] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_and] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_exception] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_include] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_end] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym_let_operator] = ACTIONS(3129), - [sym_and_operator] = ACTIONS(3129), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_directive_token1] = ACTIONS(3127), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1492] = { - [sym_attribute] = STATE(1492), - [sym__identifier] = ACTIONS(3551), - [anon_sym_COLON_GT] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_COLON2] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_DASH_GT] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_constraint] = ACTIONS(3551), - [anon_sym_val] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_with] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_inherit] = ACTIONS(3551), - [anon_sym_method] = ACTIONS(3551), - [anon_sym_initializer] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_PIPE_RBRACK] = ACTIONS(3553), - [anon_sym_then] = ACTIONS(3551), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_do] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_GT_RBRACE] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1493] = { - [sym_attribute] = STATE(1493), - [sym__identifier] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_and] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_external] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_exception] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_include] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_end] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_in] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_let_operator] = ACTIONS(3351), - [sym_and_operator] = ACTIONS(3351), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_directive_token1] = ACTIONS(3349), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1494] = { - [sym_attribute] = STATE(1494), - [sym__identifier] = ACTIONS(3501), - [anon_sym_SEMI_SEMI] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_and] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_external] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_exception] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_include] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_end] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_in] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym_let_operator] = ACTIONS(3503), - [sym_and_operator] = ACTIONS(3503), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_directive_token1] = ACTIONS(3501), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1495] = { - [sym_attribute] = STATE(1495), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_in] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1496] = { - [sym_attribute] = STATE(1496), - [sym__identifier] = ACTIONS(3313), - [anon_sym_SEMI_SEMI] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_and] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_external] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_exception] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_open] = ACTIONS(3313), - [anon_sym_include] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_end] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_in] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym_let_operator] = ACTIONS(3315), - [sym_and_operator] = ACTIONS(3315), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_directive_token1] = ACTIONS(3313), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1497] = { - [sym_attribute] = STATE(1497), - [sym__identifier] = ACTIONS(3421), - [anon_sym_SEMI_SEMI] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_and] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_external] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_exception] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_include] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_end] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym_let_operator] = ACTIONS(3423), - [sym_and_operator] = ACTIONS(3423), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_directive_token1] = ACTIONS(3421), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1498] = { - [sym_attribute] = STATE(1498), - [sym__identifier] = ACTIONS(3193), - [anon_sym_SEMI_SEMI] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_and] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_external] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_exception] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_include] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_end] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym_let_operator] = ACTIONS(3195), - [sym_and_operator] = ACTIONS(3195), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_directive_token1] = ACTIONS(3193), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1499] = { - [sym_attribute] = STATE(1499), - [sym__identifier] = ACTIONS(3505), - [anon_sym_COLON_GT] = ACTIONS(3507), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_RPAREN] = ACTIONS(3507), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3507), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_COLON2] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_DASH_GT] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3507), - [anon_sym_RBRACE] = ACTIONS(3507), - [anon_sym_constraint] = ACTIONS(3505), - [anon_sym_val] = ACTIONS(3505), - [anon_sym_end] = ACTIONS(3505), - [anon_sym_with] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_inherit] = ACTIONS(3505), - [anon_sym_method] = ACTIONS(3505), - [anon_sym_initializer] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_then] = ACTIONS(3505), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_do] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_GT_RBRACE] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1500] = { - [sym_attribute] = STATE(1500), - [sym__identifier] = ACTIONS(3189), - [anon_sym_COLON_GT] = ACTIONS(3191), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_RPAREN] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_COLON2] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_DASH_GT] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3191), - [anon_sym_RBRACE] = ACTIONS(3191), - [anon_sym_constraint] = ACTIONS(3189), - [anon_sym_val] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_with] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_inherit] = ACTIONS(3189), - [anon_sym_method] = ACTIONS(3189), - [anon_sym_initializer] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_then] = ACTIONS(3189), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_do] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_GT_RBRACE] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1501] = { - [sym_attribute] = STATE(1501), - [sym__identifier] = ACTIONS(3421), - [anon_sym_COLON_GT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_RPAREN] = ACTIONS(3423), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_COLON2] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_DASH_GT] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_constraint] = ACTIONS(3421), - [anon_sym_val] = ACTIONS(3421), - [anon_sym_end] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_inherit] = ACTIONS(3421), - [anon_sym_method] = ACTIONS(3421), - [anon_sym_initializer] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_then] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_GT_RBRACE] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1502] = { - [sym_attribute] = STATE(1502), - [sym__identifier] = ACTIONS(3189), - [anon_sym_SEMI_SEMI] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_external] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_exception] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_include] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_let_operator] = ACTIONS(3191), - [sym_and_operator] = ACTIONS(3191), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_directive_token1] = ACTIONS(3189), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1503] = { - [sym_attribute] = STATE(1503), - [sym__identifier] = ACTIONS(3401), - [anon_sym_COLON_GT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_RPAREN] = ACTIONS(3403), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_COLON2] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_DASH_GT] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_constraint] = ACTIONS(3401), - [anon_sym_val] = ACTIONS(3401), - [anon_sym_end] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_inherit] = ACTIONS(3401), - [anon_sym_method] = ACTIONS(3401), - [anon_sym_initializer] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_then] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_GT_RBRACE] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1504] = { - [sym_attribute] = STATE(1504), - [sym__identifier] = ACTIONS(3329), - [anon_sym_COLON_GT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_RPAREN] = ACTIONS(3331), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_COLON2] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_DASH_GT] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_constraint] = ACTIONS(3329), - [anon_sym_val] = ACTIONS(3329), - [anon_sym_end] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_inherit] = ACTIONS(3329), - [anon_sym_method] = ACTIONS(3329), - [anon_sym_initializer] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_then] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_GT_RBRACE] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1505] = { - [sym_attribute] = STATE(1505), - [sym__identifier] = ACTIONS(3437), - [anon_sym_SEMI_SEMI] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_and] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_external] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_exception] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_include] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_end] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym_let_operator] = ACTIONS(3439), - [sym_and_operator] = ACTIONS(3439), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_directive_token1] = ACTIONS(3437), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1506] = { - [sym_attribute] = STATE(1506), - [sym__identifier] = ACTIONS(3501), - [anon_sym_COLON_GT] = ACTIONS(3503), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_RPAREN] = ACTIONS(3503), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_COLON2] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_DASH_GT] = ACTIONS(3501), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3503), - [anon_sym_RBRACE] = ACTIONS(3503), - [anon_sym_constraint] = ACTIONS(3501), - [anon_sym_val] = ACTIONS(3501), - [anon_sym_end] = ACTIONS(3501), - [anon_sym_with] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_inherit] = ACTIONS(3501), - [anon_sym_method] = ACTIONS(3501), - [anon_sym_initializer] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_then] = ACTIONS(3501), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_do] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_GT_RBRACE] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1507] = { - [sym_attribute] = STATE(1507), - [sym__identifier] = ACTIONS(3365), - [anon_sym_COLON_GT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_RPAREN] = ACTIONS(3367), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_COLON2] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_DASH_GT] = ACTIONS(3365), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_constraint] = ACTIONS(3365), - [anon_sym_val] = ACTIONS(3365), - [anon_sym_end] = ACTIONS(3365), - [anon_sym_with] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_inherit] = ACTIONS(3365), - [anon_sym_method] = ACTIONS(3365), - [anon_sym_initializer] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_then] = ACTIONS(3365), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_do] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_GT_RBRACE] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1508] = { - [sym_attribute] = STATE(1508), - [sym__identifier] = ACTIONS(3497), - [anon_sym_COLON_GT] = ACTIONS(3499), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_RPAREN] = ACTIONS(3499), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_COLON2] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3499), - [anon_sym_RBRACE] = ACTIONS(3499), - [anon_sym_constraint] = ACTIONS(3497), - [anon_sym_val] = ACTIONS(3497), - [anon_sym_end] = ACTIONS(3497), - [anon_sym_with] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_inherit] = ACTIONS(3497), - [anon_sym_method] = ACTIONS(3497), - [anon_sym_initializer] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_then] = ACTIONS(3497), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_do] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_GT_RBRACE] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1509] = { - [sym_attribute] = STATE(1509), - [sym__identifier] = ACTIONS(3369), - [anon_sym_SEMI_SEMI] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_and] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_external] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_exception] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_include] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_end] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_in] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym_let_operator] = ACTIONS(3371), - [sym_and_operator] = ACTIONS(3371), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_directive_token1] = ACTIONS(3369), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1510] = { - [sym_attribute] = STATE(1510), - [sym__identifier] = ACTIONS(3457), - [anon_sym_SEMI_SEMI] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_and] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_external] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_exception] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_include] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_end] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_in] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym_let_operator] = ACTIONS(3459), - [sym_and_operator] = ACTIONS(3459), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_directive_token1] = ACTIONS(3457), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1511] = { - [sym_attribute] = STATE(1511), - [sym__identifier] = ACTIONS(3305), - [anon_sym_SEMI_SEMI] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_and] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_external] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_exception] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_include] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_end] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym_let_operator] = ACTIONS(3307), - [sym_and_operator] = ACTIONS(3307), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_directive_token1] = ACTIONS(3305), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1512] = { - [sym_attribute] = STATE(1512), - [sym__identifier] = ACTIONS(3433), - [anon_sym_SEMI_SEMI] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_and] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_external] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_exception] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_include] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_end] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym_let_operator] = ACTIONS(3435), - [sym_and_operator] = ACTIONS(3435), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_directive_token1] = ACTIONS(3433), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1513] = { - [sym_attribute] = STATE(1513), - [sym__identifier] = ACTIONS(3493), - [anon_sym_COLON_GT] = ACTIONS(3495), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_RPAREN] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_COLON2] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_DASH_GT] = ACTIONS(3493), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_constraint] = ACTIONS(3493), - [anon_sym_val] = ACTIONS(3493), - [anon_sym_end] = ACTIONS(3493), - [anon_sym_with] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_inherit] = ACTIONS(3493), - [anon_sym_method] = ACTIONS(3493), - [anon_sym_initializer] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_then] = ACTIONS(3493), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_do] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_GT_RBRACE] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1514] = { - [sym_attribute] = STATE(1514), - [sym__identifier] = ACTIONS(3481), - [anon_sym_COLON_GT] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_RPAREN] = ACTIONS(3483), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_COLON2] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_DASH_GT] = ACTIONS(3481), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3483), - [anon_sym_RBRACE] = ACTIONS(3483), - [anon_sym_constraint] = ACTIONS(3481), - [anon_sym_val] = ACTIONS(3481), - [anon_sym_end] = ACTIONS(3481), - [anon_sym_with] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_inherit] = ACTIONS(3481), - [anon_sym_method] = ACTIONS(3481), - [anon_sym_initializer] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_then] = ACTIONS(3481), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_do] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_GT_RBRACE] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1515] = { - [sym_attribute] = STATE(1515), - [sym__identifier] = ACTIONS(3517), - [anon_sym_COLON_GT] = ACTIONS(3519), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_RPAREN] = ACTIONS(3519), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_COLON2] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_DASH_GT] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3519), - [anon_sym_RBRACE] = ACTIONS(3519), - [anon_sym_constraint] = ACTIONS(3517), - [anon_sym_val] = ACTIONS(3517), - [anon_sym_end] = ACTIONS(3517), - [anon_sym_with] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_inherit] = ACTIONS(3517), - [anon_sym_method] = ACTIONS(3517), - [anon_sym_initializer] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_then] = ACTIONS(3517), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_do] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_GT_RBRACE] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1516] = { - [sym_attribute] = STATE(1516), - [sym__identifier] = ACTIONS(3185), - [anon_sym_SEMI_SEMI] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_and] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_external] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_exception] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_include] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_end] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym_let_operator] = ACTIONS(3187), - [sym_and_operator] = ACTIONS(3187), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_directive_token1] = ACTIONS(3185), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1517] = { - [sym_attribute] = STATE(1517), - [sym__identifier] = ACTIONS(3181), - [anon_sym_SEMI_SEMI] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_and] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_external] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_exception] = ACTIONS(3181), - [anon_sym_module] = ACTIONS(3181), - [anon_sym_open] = ACTIONS(3181), - [anon_sym_include] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_end] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym_let_operator] = ACTIONS(3183), - [sym_and_operator] = ACTIONS(3183), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_directive_token1] = ACTIONS(3181), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1518] = { - [sym_attribute] = STATE(1518), - [sym__identifier] = ACTIONS(3177), - [anon_sym_SEMI_SEMI] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_external] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_exception] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_include] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_end] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym_let_operator] = ACTIONS(3179), - [sym_and_operator] = ACTIONS(3179), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_directive_token1] = ACTIONS(3177), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1519] = { - [sym_attribute] = STATE(1519), - [sym__identifier] = ACTIONS(3477), - [anon_sym_COLON_GT] = ACTIONS(3479), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_RPAREN] = ACTIONS(3479), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3479), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_COLON2] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_DASH_GT] = ACTIONS(3477), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3479), - [anon_sym_RBRACE] = ACTIONS(3479), - [anon_sym_constraint] = ACTIONS(3477), - [anon_sym_val] = ACTIONS(3477), - [anon_sym_end] = ACTIONS(3477), - [anon_sym_with] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_inherit] = ACTIONS(3477), - [anon_sym_method] = ACTIONS(3477), - [anon_sym_initializer] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_then] = ACTIONS(3477), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_do] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_GT_RBRACE] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1520] = { - [sym_attribute] = STATE(1520), - [sym__identifier] = ACTIONS(3469), - [anon_sym_COLON_GT] = ACTIONS(3471), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_RPAREN] = ACTIONS(3471), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_COLON2] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_DASH_GT] = ACTIONS(3469), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3471), - [anon_sym_RBRACE] = ACTIONS(3471), - [anon_sym_constraint] = ACTIONS(3469), - [anon_sym_val] = ACTIONS(3469), - [anon_sym_end] = ACTIONS(3469), - [anon_sym_with] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_inherit] = ACTIONS(3469), - [anon_sym_method] = ACTIONS(3469), - [anon_sym_initializer] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_then] = ACTIONS(3469), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_do] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_GT_RBRACE] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1521] = { - [sym_attribute] = STATE(1521), - [sym__identifier] = ACTIONS(3173), - [anon_sym_SEMI_SEMI] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_and] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_external] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_exception] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_include] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_end] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym_let_operator] = ACTIONS(3175), - [sym_and_operator] = ACTIONS(3175), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_directive_token1] = ACTIONS(3173), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1522] = { - [sym_attribute] = STATE(1522), - [sym__identifier] = ACTIONS(3557), - [anon_sym_COLON_GT] = ACTIONS(3559), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_RPAREN] = ACTIONS(3559), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_RBRACK] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_COLON2] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_DASH_GT] = ACTIONS(3557), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3559), - [anon_sym_RBRACE] = ACTIONS(3559), - [anon_sym_constraint] = ACTIONS(3557), - [anon_sym_val] = ACTIONS(3557), - [anon_sym_end] = ACTIONS(3557), - [anon_sym_with] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_inherit] = ACTIONS(3557), - [anon_sym_method] = ACTIONS(3557), - [anon_sym_initializer] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_then] = ACTIONS(3557), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_do] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_GT_RBRACE] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1523] = { - [sym_attribute] = STATE(1523), - [sym__identifier] = ACTIONS(3539), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_and] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_external] = ACTIONS(3539), - [anon_sym_type] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_exception] = ACTIONS(3539), - [anon_sym_module] = ACTIONS(3539), - [anon_sym_open] = ACTIONS(3539), - [anon_sym_include] = ACTIONS(3539), - [anon_sym_class] = ACTIONS(3539), - [anon_sym_end] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_in] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym_let_operator] = ACTIONS(3541), - [sym_and_operator] = ACTIONS(3541), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_directive_token1] = ACTIONS(3539), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1524] = { - [sym_attribute] = STATE(1524), - [sym__identifier] = ACTIONS(3169), - [anon_sym_SEMI_SEMI] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_and] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_external] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_exception] = ACTIONS(3169), - [anon_sym_module] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_end] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym_let_operator] = ACTIONS(3171), - [sym_and_operator] = ACTIONS(3171), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_directive_token1] = ACTIONS(3169), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1525] = { - [sym_attribute] = STATE(1525), - [sym__identifier] = ACTIONS(3309), - [anon_sym_SEMI_SEMI] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_and] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_external] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_exception] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_open] = ACTIONS(3309), - [anon_sym_include] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_end] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym_let_operator] = ACTIONS(3311), - [sym_and_operator] = ACTIONS(3311), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_directive_token1] = ACTIONS(3309), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1526] = { - [sym_attribute] = STATE(1526), - [ts_builtin_sym_end] = ACTIONS(3139), - [sym__identifier] = ACTIONS(3137), - [anon_sym_SEMI_SEMI] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3137), - [anon_sym_and] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_external] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_exception] = ACTIONS(3137), - [anon_sym_module] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym_let_operator] = ACTIONS(3139), - [sym_and_operator] = ACTIONS(3139), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_directive_token1] = ACTIONS(3137), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1527] = { - [sym_attribute] = STATE(1527), - [sym__identifier] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_and] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_external] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_exception] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_include] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_end] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym_let_operator] = ACTIONS(3327), - [sym_and_operator] = ACTIONS(3327), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_directive_token1] = ACTIONS(3325), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1528] = { - [sym_attribute] = STATE(1528), - [sym__identifier] = ACTIONS(3333), - [anon_sym_SEMI_SEMI] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_and] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_external] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_exception] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_include] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_end] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_in] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym_let_operator] = ACTIONS(3335), - [sym_and_operator] = ACTIONS(3335), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_directive_token1] = ACTIONS(3333), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1529] = { - [sym_attribute] = STATE(1529), - [sym__identifier] = ACTIONS(3489), - [anon_sym_COLON_GT] = ACTIONS(3491), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_RPAREN] = ACTIONS(3491), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_COLON2] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_DASH_GT] = ACTIONS(3489), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3491), - [anon_sym_RBRACE] = ACTIONS(3491), - [anon_sym_constraint] = ACTIONS(3489), - [anon_sym_val] = ACTIONS(3489), - [anon_sym_end] = ACTIONS(3489), - [anon_sym_with] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_inherit] = ACTIONS(3489), - [anon_sym_method] = ACTIONS(3489), - [anon_sym_initializer] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_then] = ACTIONS(3489), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_do] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_GT_RBRACE] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1530] = { - [sym_attribute] = STATE(1530), - [sym__identifier] = ACTIONS(3337), - [anon_sym_SEMI_SEMI] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_and] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_external] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_exception] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_include] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_end] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_in] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym_let_operator] = ACTIONS(3339), - [sym_and_operator] = ACTIONS(3339), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_directive_token1] = ACTIONS(3337), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1531] = { - [sym_attribute] = STATE(1531), - [sym__identifier] = ACTIONS(3429), - [anon_sym_COLON_GT] = ACTIONS(3431), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_RPAREN] = ACTIONS(3431), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_COLON2] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_DASH_GT] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3431), - [anon_sym_RBRACE] = ACTIONS(3431), - [anon_sym_constraint] = ACTIONS(3429), - [anon_sym_val] = ACTIONS(3429), - [anon_sym_end] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_inherit] = ACTIONS(3429), - [anon_sym_method] = ACTIONS(3429), - [anon_sym_initializer] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_then] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_GT_RBRACE] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1532] = { - [sym_attribute] = STATE(1532), - [sym__identifier] = ACTIONS(3345), - [anon_sym_SEMI_SEMI] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_and] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_external] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_exception] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_include] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_end] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_in] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym_let_operator] = ACTIONS(3347), - [sym_and_operator] = ACTIONS(3347), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_directive_token1] = ACTIONS(3345), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1533] = { - [sym_attribute] = STATE(1533), - [sym__identifier] = ACTIONS(3461), - [anon_sym_SEMI_SEMI] = ACTIONS(3463), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_external] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_exception] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_include] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_end] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym_let_operator] = ACTIONS(3463), - [sym_and_operator] = ACTIONS(3463), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_directive_token1] = ACTIONS(3461), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1534] = { - [sym_attribute] = STATE(1534), - [sym__identifier] = ACTIONS(3461), - [anon_sym_COLON_GT] = ACTIONS(3463), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_RPAREN] = ACTIONS(3463), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_COLON2] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_DASH_GT] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3463), - [anon_sym_RBRACE] = ACTIONS(3463), - [anon_sym_constraint] = ACTIONS(3461), - [anon_sym_val] = ACTIONS(3461), - [anon_sym_end] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_inherit] = ACTIONS(3461), - [anon_sym_method] = ACTIONS(3461), - [anon_sym_initializer] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_then] = ACTIONS(3461), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_GT_RBRACE] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1535] = { - [sym_attribute] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(3071), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_and] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym_and_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1536] = { - [sym_attribute] = STATE(1536), - [sym__identifier] = ACTIONS(3197), - [anon_sym_SEMI_SEMI] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_external] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_exception] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_include] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_end] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_let_operator] = ACTIONS(3199), - [sym_and_operator] = ACTIONS(3199), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_directive_token1] = ACTIONS(3197), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1537] = { - [sym_attribute] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3565), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1538] = { - [sym_attribute] = STATE(1538), - [sym__identifier] = ACTIONS(3357), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_external] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_exception] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_include] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_end] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_in] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym_let_operator] = ACTIONS(3359), - [sym_and_operator] = ACTIONS(3359), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_directive_token1] = ACTIONS(3357), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1539] = { - [sym_attribute] = STATE(1539), - [sym__identifier] = ACTIONS(3465), - [anon_sym_COLON_GT] = ACTIONS(3467), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_RPAREN] = ACTIONS(3467), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_COLON2] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_DASH_GT] = ACTIONS(3465), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3467), - [anon_sym_RBRACE] = ACTIONS(3467), - [anon_sym_constraint] = ACTIONS(3465), - [anon_sym_val] = ACTIONS(3465), - [anon_sym_end] = ACTIONS(3465), - [anon_sym_with] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_inherit] = ACTIONS(3465), - [anon_sym_method] = ACTIONS(3465), - [anon_sym_initializer] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_then] = ACTIONS(3465), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_do] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_GT_RBRACE] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1540] = { - [sym_attribute] = STATE(1540), - [sym__identifier] = ACTIONS(3437), - [anon_sym_COLON_GT] = ACTIONS(3439), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_RPAREN] = ACTIONS(3439), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_COLON2] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_DASH_GT] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3439), - [anon_sym_RBRACE] = ACTIONS(3439), - [anon_sym_constraint] = ACTIONS(3437), - [anon_sym_val] = ACTIONS(3437), - [anon_sym_end] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_inherit] = ACTIONS(3437), - [anon_sym_method] = ACTIONS(3437), - [anon_sym_initializer] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_then] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_GT_RBRACE] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1541] = { - [sym_attribute] = STATE(1541), - [sym__identifier] = ACTIONS(3201), - [anon_sym_COLON_GT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_COLON2] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_constraint] = ACTIONS(3201), - [anon_sym_val] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_inherit] = ACTIONS(3201), - [anon_sym_method] = ACTIONS(3201), - [anon_sym_initializer] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_then] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_do] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_GT_RBRACE] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1542] = { - [sym_attribute] = STATE(1542), - [sym__identifier] = ACTIONS(3409), - [anon_sym_COLON_GT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_RPAREN] = ACTIONS(3411), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_COLON2] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_DASH_GT] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_constraint] = ACTIONS(3409), - [anon_sym_val] = ACTIONS(3409), - [anon_sym_end] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_inherit] = ACTIONS(3409), - [anon_sym_method] = ACTIONS(3409), - [anon_sym_initializer] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_then] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_GT_RBRACE] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1543] = { - [sym_attribute] = STATE(1543), - [sym__identifier] = ACTIONS(3361), - [anon_sym_SEMI_SEMI] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_and] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_external] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_exception] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_include] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_end] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_in] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym_let_operator] = ACTIONS(3363), - [sym_and_operator] = ACTIONS(3363), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_directive_token1] = ACTIONS(3361), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1544] = { - [sym_attribute] = STATE(1544), - [sym__identifier] = ACTIONS(3489), - [anon_sym_SEMI_SEMI] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_and] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_external] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_exception] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_include] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_end] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_in] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym_let_operator] = ACTIONS(3491), - [sym_and_operator] = ACTIONS(3491), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_directive_token1] = ACTIONS(3489), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1545] = { - [sym_attribute] = STATE(1545), - [sym__identifier] = ACTIONS(3373), - [anon_sym_SEMI_SEMI] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_external] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_exception] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_include] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_end] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_in] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_let_operator] = ACTIONS(3375), - [sym_and_operator] = ACTIONS(3375), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_directive_token1] = ACTIONS(3373), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1546] = { - [sym_attribute] = STATE(1546), - [sym__identifier] = ACTIONS(3397), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_and] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_external] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_exception] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_include] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_end] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym_let_operator] = ACTIONS(3399), - [sym_and_operator] = ACTIONS(3399), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_directive_token1] = ACTIONS(3397), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1547] = { - [sym_attribute] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_in] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3567), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1548] = { - [sym_attribute] = STATE(1548), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1549] = { - [sym_attribute] = STATE(1549), - [sym__identifier] = ACTIONS(3405), - [anon_sym_SEMI_SEMI] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_and] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_external] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_exception] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_include] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_end] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym_let_operator] = ACTIONS(3407), - [sym_and_operator] = ACTIONS(3407), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_directive_token1] = ACTIONS(3405), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1550] = { - [sym_attribute] = STATE(1550), - [sym__identifier] = ACTIONS(3341), - [anon_sym_COLON_GT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_RPAREN] = ACTIONS(3343), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_COLON2] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_DASH_GT] = ACTIONS(3341), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_constraint] = ACTIONS(3341), - [anon_sym_val] = ACTIONS(3341), - [anon_sym_end] = ACTIONS(3341), - [anon_sym_with] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_inherit] = ACTIONS(3341), - [anon_sym_method] = ACTIONS(3341), - [anon_sym_initializer] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_then] = ACTIONS(3341), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_do] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_GT_RBRACE] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1551] = { - [sym_attribute] = STATE(1551), - [sym__identifier] = ACTIONS(3453), - [anon_sym_COLON_GT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_RPAREN] = ACTIONS(3455), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_COLON2] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_DASH_GT] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_constraint] = ACTIONS(3453), - [anon_sym_val] = ACTIONS(3453), - [anon_sym_end] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_inherit] = ACTIONS(3453), - [anon_sym_method] = ACTIONS(3453), - [anon_sym_initializer] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_then] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_GT_RBRACE] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1552] = { - [sym_attribute] = STATE(1552), - [sym__identifier] = ACTIONS(3453), - [anon_sym_SEMI_SEMI] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_and] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_external] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_exception] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_include] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_end] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym_let_operator] = ACTIONS(3455), - [sym_and_operator] = ACTIONS(3455), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_directive_token1] = ACTIONS(3453), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1553] = { - [sym_attribute] = STATE(1553), - [sym__identifier] = ACTIONS(3457), - [anon_sym_COLON_GT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_RPAREN] = ACTIONS(3459), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_COLON2] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_DASH_GT] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_constraint] = ACTIONS(3457), - [anon_sym_val] = ACTIONS(3457), - [anon_sym_end] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_inherit] = ACTIONS(3457), - [anon_sym_method] = ACTIONS(3457), - [anon_sym_initializer] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_then] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_GT_RBRACE] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1554] = { - [sym_attribute] = STATE(1554), - [sym__identifier] = ACTIONS(3377), - [anon_sym_COLON_GT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_RPAREN] = ACTIONS(3379), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_COLON2] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_DASH_GT] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_constraint] = ACTIONS(3377), - [anon_sym_val] = ACTIONS(3377), - [anon_sym_end] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_inherit] = ACTIONS(3377), - [anon_sym_method] = ACTIONS(3377), - [anon_sym_initializer] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_then] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_GT_RBRACE] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1555] = { - [sym_attribute] = STATE(1555), - [sym__identifier] = ACTIONS(3539), - [anon_sym_COLON_GT] = ACTIONS(3541), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_RPAREN] = ACTIONS(3541), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_COLON2] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_DASH_GT] = ACTIONS(3539), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3541), - [anon_sym_RBRACE] = ACTIONS(3541), - [anon_sym_constraint] = ACTIONS(3539), - [anon_sym_val] = ACTIONS(3539), - [anon_sym_end] = ACTIONS(3539), - [anon_sym_with] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_inherit] = ACTIONS(3539), - [anon_sym_method] = ACTIONS(3539), - [anon_sym_initializer] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_then] = ACTIONS(3539), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_do] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_GT_RBRACE] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1556] = { - [sym_attribute] = STATE(1556), - [sym__identifier] = ACTIONS(3405), - [anon_sym_COLON_GT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_RPAREN] = ACTIONS(3407), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_COLON2] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_DASH_GT] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_constraint] = ACTIONS(3405), - [anon_sym_val] = ACTIONS(3405), - [anon_sym_end] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_inherit] = ACTIONS(3405), - [anon_sym_method] = ACTIONS(3405), - [anon_sym_initializer] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_then] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_GT_RBRACE] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1557] = { - [sym_attribute] = STATE(1557), - [sym__identifier] = ACTIONS(3161), - [anon_sym_COLON_GT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_RPAREN] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_COLON2] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_DASH_GT] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_constraint] = ACTIONS(3161), - [anon_sym_val] = ACTIONS(3161), - [anon_sym_end] = ACTIONS(3161), - [anon_sym_with] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_inherit] = ACTIONS(3161), - [anon_sym_method] = ACTIONS(3161), - [anon_sym_initializer] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_then] = ACTIONS(3161), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_do] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_GT_RBRACE] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1558] = { - [sym_attribute] = STATE(1558), - [sym__identifier] = ACTIONS(3543), - [anon_sym_COLON_GT] = ACTIONS(3545), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_RPAREN] = ACTIONS(3545), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(3545), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_COLON2] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_DASH_GT] = ACTIONS(3543), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3545), - [anon_sym_RBRACE] = ACTIONS(3545), - [anon_sym_constraint] = ACTIONS(3543), - [anon_sym_val] = ACTIONS(3543), - [anon_sym_end] = ACTIONS(3543), - [anon_sym_with] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_inherit] = ACTIONS(3543), - [anon_sym_method] = ACTIONS(3543), - [anon_sym_initializer] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_then] = ACTIONS(3543), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_do] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_GT_RBRACE] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1559] = { - [sym_attribute] = STATE(1559), - [sym__identifier] = ACTIONS(3525), - [anon_sym_COLON_GT] = ACTIONS(3527), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_RPAREN] = ACTIONS(3527), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_RBRACK] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_COLON2] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_DASH_GT] = ACTIONS(3525), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3527), - [anon_sym_RBRACE] = ACTIONS(3527), - [anon_sym_constraint] = ACTIONS(3525), - [anon_sym_val] = ACTIONS(3525), - [anon_sym_end] = ACTIONS(3525), - [anon_sym_with] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_inherit] = ACTIONS(3525), - [anon_sym_method] = ACTIONS(3525), - [anon_sym_initializer] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_then] = ACTIONS(3525), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_do] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_GT_RBRACE] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1560] = { - [sym_attribute] = STATE(1560), - [sym__identifier] = ACTIONS(3321), - [anon_sym_COLON_GT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_RPAREN] = ACTIONS(3323), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_COLON2] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_DASH_GT] = ACTIONS(3321), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_constraint] = ACTIONS(3321), - [anon_sym_val] = ACTIONS(3321), - [anon_sym_end] = ACTIONS(3321), - [anon_sym_with] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_inherit] = ACTIONS(3321), - [anon_sym_method] = ACTIONS(3321), - [anon_sym_initializer] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_then] = ACTIONS(3321), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_do] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_GT_RBRACE] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1561] = { - [sym_attribute] = STATE(1561), - [sym__identifier] = ACTIONS(3531), - [anon_sym_COLON_GT] = ACTIONS(3533), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_RPAREN] = ACTIONS(3533), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_COLON2] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_DASH_GT] = ACTIONS(3531), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3533), - [anon_sym_RBRACE] = ACTIONS(3533), - [anon_sym_constraint] = ACTIONS(3531), - [anon_sym_val] = ACTIONS(3531), - [anon_sym_end] = ACTIONS(3531), - [anon_sym_with] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_inherit] = ACTIONS(3531), - [anon_sym_method] = ACTIONS(3531), - [anon_sym_initializer] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_then] = ACTIONS(3531), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_do] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_GT_RBRACE] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1562] = { - [sym_attribute] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3147), - [sym__identifier] = ACTIONS(3145), - [anon_sym_SEMI_SEMI] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_and] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_external] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_exception] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_include] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym_let_operator] = ACTIONS(3147), - [sym_and_operator] = ACTIONS(3147), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_directive_token1] = ACTIONS(3145), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1563] = { - [sym_attribute] = STATE(1563), - [sym__identifier] = ACTIONS(3397), - [anon_sym_COLON_GT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_RPAREN] = ACTIONS(3399), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_COLON2] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_DASH_GT] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_constraint] = ACTIONS(3397), - [anon_sym_val] = ACTIONS(3397), - [anon_sym_end] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_inherit] = ACTIONS(3397), - [anon_sym_method] = ACTIONS(3397), - [anon_sym_initializer] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_then] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_GT_RBRACE] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1564] = { - [sym_attribute] = STATE(1564), - [sym__identifier] = ACTIONS(3165), - [anon_sym_COLON_GT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_RPAREN] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_COLON2] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_DASH_GT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_constraint] = ACTIONS(3165), - [anon_sym_val] = ACTIONS(3165), - [anon_sym_end] = ACTIONS(3165), - [anon_sym_with] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_inherit] = ACTIONS(3165), - [anon_sym_method] = ACTIONS(3165), - [anon_sym_initializer] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_then] = ACTIONS(3165), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_do] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_GT_RBRACE] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1565] = { - [sym_attribute] = STATE(1565), - [sym__identifier] = ACTIONS(3465), - [anon_sym_SEMI_SEMI] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_and] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_external] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_exception] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_include] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_end] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_in] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym_let_operator] = ACTIONS(3467), - [sym_and_operator] = ACTIONS(3467), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_directive_token1] = ACTIONS(3465), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1566] = { - [sym_attribute] = STATE(1566), - [sym__identifier] = ACTIONS(3361), - [anon_sym_COLON_GT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_RPAREN] = ACTIONS(3363), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_COLON2] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_DASH_GT] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_constraint] = ACTIONS(3361), - [anon_sym_val] = ACTIONS(3361), - [anon_sym_end] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_inherit] = ACTIONS(3361), - [anon_sym_method] = ACTIONS(3361), - [anon_sym_initializer] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_then] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_GT_RBRACE] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1567] = { - [sym_attribute] = STATE(1567), - [sym__identifier] = ACTIONS(3469), - [anon_sym_SEMI_SEMI] = ACTIONS(3471), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_and] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_external] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_exception] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_include] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_end] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_in] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym_let_operator] = ACTIONS(3471), - [sym_and_operator] = ACTIONS(3471), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_directive_token1] = ACTIONS(3469), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1568] = { - [sym_attribute] = STATE(1568), - [sym__identifier] = ACTIONS(3477), - [anon_sym_SEMI_SEMI] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_and] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_external] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3479), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_exception] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_include] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_end] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_in] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym_let_operator] = ACTIONS(3479), - [sym_and_operator] = ACTIONS(3479), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_directive_token1] = ACTIONS(3477), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1569] = { - [sym_attribute] = STATE(1569), - [sym__identifier] = ACTIONS(3445), - [anon_sym_COLON_GT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_RPAREN] = ACTIONS(3447), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3447), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_COLON2] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_DASH_GT] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_constraint] = ACTIONS(3445), - [anon_sym_val] = ACTIONS(3445), - [anon_sym_end] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_inherit] = ACTIONS(3445), - [anon_sym_method] = ACTIONS(3445), - [anon_sym_initializer] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_then] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_GT_RBRACE] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1570] = { - [sym_attribute] = STATE(1570), - [sym__identifier] = ACTIONS(3425), - [anon_sym_COLON_GT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_RPAREN] = ACTIONS(3427), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_COLON2] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_DASH_GT] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_constraint] = ACTIONS(3425), - [anon_sym_val] = ACTIONS(3425), - [anon_sym_end] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_inherit] = ACTIONS(3425), - [anon_sym_method] = ACTIONS(3425), - [anon_sym_initializer] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_then] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_GT_RBRACE] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1571] = { - [sym_attribute] = STATE(1571), - [sym__identifier] = ACTIONS(3551), - [anon_sym_COLON_GT] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_COLON2] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_DASH_GT] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_constraint] = ACTIONS(3551), - [anon_sym_val] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_with] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_inherit] = ACTIONS(3551), - [anon_sym_method] = ACTIONS(3551), - [anon_sym_initializer] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_then] = ACTIONS(3551), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_do] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_GT_RBRACE] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1572] = { - [sym_attribute] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3135), - [sym__identifier] = ACTIONS(3133), - [anon_sym_SEMI_SEMI] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_and] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_external] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_exception] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_include] = ACTIONS(3133), - [anon_sym_class] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym_let_operator] = ACTIONS(3135), - [sym_and_operator] = ACTIONS(3135), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_directive_token1] = ACTIONS(3133), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1573] = { - [sym_attribute] = STATE(1573), - [sym__identifier] = ACTIONS(3417), - [anon_sym_COLON_GT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_RPAREN] = ACTIONS(3419), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_COLON2] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_DASH_GT] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_constraint] = ACTIONS(3417), - [anon_sym_val] = ACTIONS(3417), - [anon_sym_end] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_inherit] = ACTIONS(3417), - [anon_sym_method] = ACTIONS(3417), - [anon_sym_initializer] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_then] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_GT_RBRACE] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1574] = { - [sym_attribute] = STATE(1574), - [sym__identifier] = ACTIONS(3509), - [anon_sym_COLON_GT] = ACTIONS(3511), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_RPAREN] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3511), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_COLON2] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_DASH_GT] = ACTIONS(3509), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_constraint] = ACTIONS(3509), - [anon_sym_val] = ACTIONS(3509), - [anon_sym_end] = ACTIONS(3509), - [anon_sym_with] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_inherit] = ACTIONS(3509), - [anon_sym_method] = ACTIONS(3509), - [anon_sym_initializer] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_then] = ACTIONS(3509), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_do] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_GT_RBRACE] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1575] = { - [sym_attribute] = STATE(1575), - [sym__identifier] = ACTIONS(3389), - [anon_sym_COLON_GT] = ACTIONS(3391), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_RPAREN] = ACTIONS(3391), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_COLON2] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_DASH_GT] = ACTIONS(3389), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3391), - [anon_sym_RBRACE] = ACTIONS(3391), - [anon_sym_constraint] = ACTIONS(3389), - [anon_sym_val] = ACTIONS(3389), - [anon_sym_end] = ACTIONS(3389), - [anon_sym_with] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_inherit] = ACTIONS(3389), - [anon_sym_method] = ACTIONS(3389), - [anon_sym_initializer] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_then] = ACTIONS(3389), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_do] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_GT_RBRACE] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1576] = { - [sym_attribute] = STATE(1576), - [sym__identifier] = ACTIONS(3385), - [anon_sym_COLON_GT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_RPAREN] = ACTIONS(3387), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3387), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_COLON2] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_DASH_GT] = ACTIONS(3385), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_constraint] = ACTIONS(3385), - [anon_sym_val] = ACTIONS(3385), - [anon_sym_end] = ACTIONS(3385), - [anon_sym_with] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_inherit] = ACTIONS(3385), - [anon_sym_method] = ACTIONS(3385), - [anon_sym_initializer] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_then] = ACTIONS(3385), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_do] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_GT_RBRACE] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1577] = { - [sym_attribute] = STATE(1577), - [sym__identifier] = ACTIONS(3381), - [anon_sym_COLON_GT] = ACTIONS(3383), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_RPAREN] = ACTIONS(3383), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_COLON2] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_DASH_GT] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3383), - [anon_sym_RBRACE] = ACTIONS(3383), - [anon_sym_constraint] = ACTIONS(3381), - [anon_sym_val] = ACTIONS(3381), - [anon_sym_end] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_inherit] = ACTIONS(3381), - [anon_sym_method] = ACTIONS(3381), - [anon_sym_initializer] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_then] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_GT_RBRACE] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1578] = { - [sym_attribute] = STATE(1578), - [sym__identifier] = ACTIONS(3561), - [anon_sym_COLON_GT] = ACTIONS(3563), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_RPAREN] = ACTIONS(3563), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_COLON2] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_DASH_GT] = ACTIONS(3561), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3563), - [anon_sym_RBRACE] = ACTIONS(3563), - [anon_sym_constraint] = ACTIONS(3561), - [anon_sym_val] = ACTIONS(3561), - [anon_sym_end] = ACTIONS(3561), - [anon_sym_with] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_inherit] = ACTIONS(3561), - [anon_sym_method] = ACTIONS(3561), - [anon_sym_initializer] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_then] = ACTIONS(3561), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_do] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_GT_RBRACE] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1579] = { - [sym_attribute] = STATE(1579), - [sym__identifier] = ACTIONS(3481), - [anon_sym_SEMI_SEMI] = ACTIONS(3483), - [anon_sym_let] = ACTIONS(3481), - [anon_sym_and] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_external] = ACTIONS(3481), - [anon_sym_type] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_exception] = ACTIONS(3481), - [anon_sym_module] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_include] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_end] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym_let_operator] = ACTIONS(3483), - [sym_and_operator] = ACTIONS(3483), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_directive_token1] = ACTIONS(3481), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1580] = { - [sym_attribute] = STATE(1580), - [sym__identifier] = ACTIONS(3409), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_and] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_external] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_exception] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_include] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_end] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym_let_operator] = ACTIONS(3411), - [sym_and_operator] = ACTIONS(3411), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_directive_token1] = ACTIONS(3409), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1581] = { - [sym_attribute] = STATE(1581), - [sym__identifier] = ACTIONS(3493), - [anon_sym_SEMI_SEMI] = ACTIONS(3495), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_and] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_external] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_exception] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_include] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_end] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_in] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym_let_operator] = ACTIONS(3495), - [sym_and_operator] = ACTIONS(3495), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_directive_token1] = ACTIONS(3493), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1582] = { - [sym_attribute] = STATE(1582), - [sym__identifier] = ACTIONS(3543), - [anon_sym_SEMI_SEMI] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_and] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_external] = ACTIONS(3543), - [anon_sym_type] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(3545), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3543), - [anon_sym_exception] = ACTIONS(3543), - [anon_sym_module] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3543), - [anon_sym_include] = ACTIONS(3543), - [anon_sym_class] = ACTIONS(3543), - [anon_sym_end] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_in] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym_let_operator] = ACTIONS(3545), - [sym_and_operator] = ACTIONS(3545), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_directive_token1] = ACTIONS(3543), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1583] = { - [sym_attribute] = STATE(1583), - [sym__identifier] = ACTIONS(3357), - [anon_sym_COLON_GT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_RPAREN] = ACTIONS(3359), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_COLON2] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_DASH_GT] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_constraint] = ACTIONS(3357), - [anon_sym_val] = ACTIONS(3357), - [anon_sym_end] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_inherit] = ACTIONS(3357), - [anon_sym_method] = ACTIONS(3357), - [anon_sym_initializer] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_then] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_GT_RBRACE] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1584] = { - [sym_attribute] = STATE(1584), - [sym__identifier] = ACTIONS(3329), - [anon_sym_SEMI_SEMI] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_and] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_external] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_exception] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_include] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_end] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_in] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym_let_operator] = ACTIONS(3331), - [sym_and_operator] = ACTIONS(3331), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_directive_token1] = ACTIONS(3329), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1585] = { - [sym_attribute] = STATE(1585), - [sym__identifier] = ACTIONS(3345), - [anon_sym_COLON_GT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_RPAREN] = ACTIONS(3347), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_COLON2] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_DASH_GT] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_constraint] = ACTIONS(3345), - [anon_sym_val] = ACTIONS(3345), - [anon_sym_end] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_inherit] = ACTIONS(3345), - [anon_sym_method] = ACTIONS(3345), - [anon_sym_initializer] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_then] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_GT_RBRACE] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1586] = { - [sym_attribute] = STATE(1586), - [sym__identifier] = ACTIONS(3433), - [anon_sym_COLON_GT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_RPAREN] = ACTIONS(3435), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_COLON2] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_DASH_GT] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_constraint] = ACTIONS(3433), - [anon_sym_val] = ACTIONS(3433), - [anon_sym_end] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_inherit] = ACTIONS(3433), - [anon_sym_method] = ACTIONS(3433), - [anon_sym_initializer] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_then] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_GT_RBRACE] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1587] = { - [sym_attribute] = STATE(1587), - [sym__identifier] = ACTIONS(3517), - [anon_sym_SEMI_SEMI] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_and] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_external] = ACTIONS(3517), - [anon_sym_type] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_exception] = ACTIONS(3517), - [anon_sym_module] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_include] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_end] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_in] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym_let_operator] = ACTIONS(3519), - [sym_and_operator] = ACTIONS(3519), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_directive_token1] = ACTIONS(3517), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1588] = { - [sym_attribute] = STATE(1588), - [sym__identifier] = ACTIONS(3197), - [anon_sym_COLON_GT] = ACTIONS(3199), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_RPAREN] = ACTIONS(3199), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_COLON2] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_DASH_GT] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3199), - [anon_sym_RBRACE] = ACTIONS(3199), - [anon_sym_constraint] = ACTIONS(3197), - [anon_sym_val] = ACTIONS(3197), - [anon_sym_end] = ACTIONS(3197), - [anon_sym_with] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_inherit] = ACTIONS(3197), - [anon_sym_method] = ACTIONS(3197), - [anon_sym_initializer] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_then] = ACTIONS(3197), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_do] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_GT_RBRACE] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1589] = { - [sym_attribute] = STATE(1589), - [sym__identifier] = ACTIONS(3547), - [anon_sym_COLON_GT] = ACTIONS(3549), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_RPAREN] = ACTIONS(3549), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_RBRACK] = ACTIONS(3549), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_COLON2] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_DASH_GT] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3549), - [anon_sym_constraint] = ACTIONS(3547), - [anon_sym_val] = ACTIONS(3547), - [anon_sym_end] = ACTIONS(3547), - [anon_sym_with] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_inherit] = ACTIONS(3547), - [anon_sym_method] = ACTIONS(3547), - [anon_sym_initializer] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_then] = ACTIONS(3547), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_do] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_GT_RBRACE] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1590] = { - [sym_attribute] = STATE(1590), - [sym__identifier] = ACTIONS(3193), - [anon_sym_COLON_GT] = ACTIONS(3195), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_RPAREN] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_COLON2] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_DASH_GT] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3195), - [anon_sym_RBRACE] = ACTIONS(3195), - [anon_sym_constraint] = ACTIONS(3193), - [anon_sym_val] = ACTIONS(3193), - [anon_sym_end] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_inherit] = ACTIONS(3193), - [anon_sym_method] = ACTIONS(3193), - [anon_sym_initializer] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_then] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_GT_RBRACE] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1591] = { - [sym_attribute] = STATE(1591), - [sym__identifier] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_and] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_external] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_exception] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_include] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_end] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym_let_operator] = ACTIONS(3403), - [sym_and_operator] = ACTIONS(3403), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_directive_token1] = ACTIONS(3401), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1592] = { - [sym_attribute] = STATE(1592), - [sym__identifier] = ACTIONS(3313), - [anon_sym_COLON_GT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_RPAREN] = ACTIONS(3315), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_COLON2] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_DASH_GT] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_constraint] = ACTIONS(3313), - [anon_sym_val] = ACTIONS(3313), - [anon_sym_end] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_inherit] = ACTIONS(3313), - [anon_sym_method] = ACTIONS(3313), - [anon_sym_initializer] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_then] = ACTIONS(3313), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_GT_RBRACE] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1593] = { - [sym_attribute] = STATE(1593), - [sym__identifier] = ACTIONS(3305), - [anon_sym_COLON_GT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_RPAREN] = ACTIONS(3307), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_COLON2] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_DASH_GT] = ACTIONS(3305), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_constraint] = ACTIONS(3305), - [anon_sym_val] = ACTIONS(3305), - [anon_sym_end] = ACTIONS(3305), - [anon_sym_with] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_inherit] = ACTIONS(3305), - [anon_sym_method] = ACTIONS(3305), - [anon_sym_initializer] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_then] = ACTIONS(3305), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_do] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_GT_RBRACE] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1594] = { - [sym_attribute] = STATE(1594), - [sym__identifier] = ACTIONS(3317), - [anon_sym_SEMI_SEMI] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_and] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_external] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_exception] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_open] = ACTIONS(3317), - [anon_sym_include] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_end] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_in] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym_let_operator] = ACTIONS(3319), - [sym_and_operator] = ACTIONS(3319), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_directive_token1] = ACTIONS(3317), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1595] = { - [sym_attribute] = STATE(1595), - [sym__identifier] = ACTIONS(3429), - [anon_sym_SEMI_SEMI] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_and] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_external] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_exception] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_include] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_end] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym_let_operator] = ACTIONS(3431), - [sym_and_operator] = ACTIONS(3431), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_directive_token1] = ACTIONS(3429), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1596] = { - [sym_attribute] = STATE(1596), - [sym__identifier] = ACTIONS(3349), - [anon_sym_COLON_GT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_RPAREN] = ACTIONS(3351), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_COLON2] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_DASH_GT] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_constraint] = ACTIONS(3349), - [anon_sym_val] = ACTIONS(3349), - [anon_sym_end] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_inherit] = ACTIONS(3349), - [anon_sym_method] = ACTIONS(3349), - [anon_sym_initializer] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_then] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_GT_RBRACE] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1597] = { - [sym_attribute] = STATE(1597), - [sym__identifier] = ACTIONS(3535), - [anon_sym_COLON_GT] = ACTIONS(3537), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_RPAREN] = ACTIONS(3537), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_COLON2] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_DASH_GT] = ACTIONS(3535), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3537), - [anon_sym_RBRACE] = ACTIONS(3537), - [anon_sym_constraint] = ACTIONS(3535), - [anon_sym_val] = ACTIONS(3535), - [anon_sym_end] = ACTIONS(3535), - [anon_sym_with] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_inherit] = ACTIONS(3535), - [anon_sym_method] = ACTIONS(3535), - [anon_sym_initializer] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_then] = ACTIONS(3535), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_do] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_GT_RBRACE] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1598] = { - [sym_attribute] = STATE(1598), - [sym__identifier] = ACTIONS(3497), - [anon_sym_SEMI_SEMI] = ACTIONS(3499), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_and] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_external] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_exception] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_include] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_end] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym_let_operator] = ACTIONS(3499), - [sym_and_operator] = ACTIONS(3499), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_directive_token1] = ACTIONS(3497), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1599] = { - [sym_attribute] = STATE(1599), - [sym__identifier] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_and] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_external] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_exception] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_include] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_end] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_in] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym_let_operator] = ACTIONS(3355), - [sym_and_operator] = ACTIONS(3355), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_directive_token1] = ACTIONS(3353), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1600] = { - [sym_attribute] = STATE(1600), - [sym__identifier] = ACTIONS(3341), - [anon_sym_SEMI_SEMI] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_and] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_external] = ACTIONS(3341), - [anon_sym_type] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_exception] = ACTIONS(3341), - [anon_sym_module] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_include] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_end] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_in] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym_let_operator] = ACTIONS(3343), - [sym_and_operator] = ACTIONS(3343), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_directive_token1] = ACTIONS(3341), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1601] = { - [sym_attribute] = STATE(1601), - [sym__identifier] = ACTIONS(3413), - [anon_sym_COLON_GT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_RPAREN] = ACTIONS(3415), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_COLON2] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_DASH_GT] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_constraint] = ACTIONS(3413), - [anon_sym_val] = ACTIONS(3413), - [anon_sym_end] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_inherit] = ACTIONS(3413), - [anon_sym_method] = ACTIONS(3413), - [anon_sym_initializer] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_then] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_GT_RBRACE] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1602] = { - [sym_attribute] = STATE(1602), - [sym__identifier] = ACTIONS(3365), - [anon_sym_SEMI_SEMI] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_and] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_external] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_exception] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_include] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_end] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_in] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym_let_operator] = ACTIONS(3367), - [sym_and_operator] = ACTIONS(3367), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_directive_token1] = ACTIONS(3365), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1603] = { - [sym_attribute] = STATE(1603), - [sym__identifier] = ACTIONS(3337), - [anon_sym_COLON_GT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_RPAREN] = ACTIONS(3339), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_COLON2] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_DASH_GT] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_constraint] = ACTIONS(3337), - [anon_sym_val] = ACTIONS(3337), - [anon_sym_end] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_inherit] = ACTIONS(3337), - [anon_sym_method] = ACTIONS(3337), - [anon_sym_initializer] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_then] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_GT_RBRACE] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1604] = { - [sym_attribute] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(3143), - [sym__identifier] = ACTIONS(3141), - [anon_sym_SEMI_SEMI] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_and] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_external] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_exception] = ACTIONS(3141), - [anon_sym_module] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_include] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym_let_operator] = ACTIONS(3143), - [sym_and_operator] = ACTIONS(3143), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_directive_token1] = ACTIONS(3141), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1605] = { - [sym_attribute] = STATE(1605), - [sym__identifier] = ACTIONS(3333), - [anon_sym_COLON_GT] = ACTIONS(3335), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_RPAREN] = ACTIONS(3335), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_COLON2] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_DASH_GT] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3335), - [anon_sym_RBRACE] = ACTIONS(3335), - [anon_sym_constraint] = ACTIONS(3333), - [anon_sym_val] = ACTIONS(3333), - [anon_sym_end] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_inherit] = ACTIONS(3333), - [anon_sym_method] = ACTIONS(3333), - [anon_sym_initializer] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_then] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_GT_RBRACE] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1606] = { - [sym_attribute] = STATE(1606), - [sym__identifier] = ACTIONS(3309), - [anon_sym_COLON_GT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_RPAREN] = ACTIONS(3311), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_COLON2] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_DASH_GT] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_constraint] = ACTIONS(3309), - [anon_sym_val] = ACTIONS(3309), - [anon_sym_end] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_inherit] = ACTIONS(3309), - [anon_sym_method] = ACTIONS(3309), - [anon_sym_initializer] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_then] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_GT_RBRACE] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1607] = { - [sym_attribute] = STATE(1607), - [sym__identifier] = ACTIONS(3325), - [anon_sym_COLON_GT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_RPAREN] = ACTIONS(3327), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_COLON2] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_DASH_GT] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_constraint] = ACTIONS(3325), - [anon_sym_val] = ACTIONS(3325), - [anon_sym_end] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_inherit] = ACTIONS(3325), - [anon_sym_method] = ACTIONS(3325), - [anon_sym_initializer] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_then] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_GT_RBRACE] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1608] = { - [sym_attribute] = STATE(1608), - [sym__identifier] = ACTIONS(3377), - [anon_sym_SEMI_SEMI] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_and] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_external] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_exception] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_include] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_end] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_in] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym_let_operator] = ACTIONS(3379), - [sym_and_operator] = ACTIONS(3379), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_directive_token1] = ACTIONS(3377), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1609] = { - [sym_attribute] = STATE(1609), - [sym__identifier] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3527), - [anon_sym_let] = ACTIONS(3525), - [anon_sym_and] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_external] = ACTIONS(3525), - [anon_sym_type] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_RBRACK] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_exception] = ACTIONS(3525), - [anon_sym_module] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_include] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_end] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_in] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym_let_operator] = ACTIONS(3527), - [sym_and_operator] = ACTIONS(3527), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_directive_token1] = ACTIONS(3525), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1610] = { - [sym_attribute] = STATE(1610), - [sym__identifier] = ACTIONS(3369), - [anon_sym_COLON_GT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_RPAREN] = ACTIONS(3371), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_COLON2] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_DASH_GT] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_constraint] = ACTIONS(3369), - [anon_sym_val] = ACTIONS(3369), - [anon_sym_end] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_inherit] = ACTIONS(3369), - [anon_sym_method] = ACTIONS(3369), - [anon_sym_initializer] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_then] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_GT_RBRACE] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1611] = { - [sym_attribute] = STATE(1611), - [sym__identifier] = ACTIONS(3473), - [anon_sym_SEMI_SEMI] = ACTIONS(3475), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_and] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_external] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3475), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_exception] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_include] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_end] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_in] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym_let_operator] = ACTIONS(3475), - [sym_and_operator] = ACTIONS(3475), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_directive_token1] = ACTIONS(3473), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1612] = { - [sym_attribute] = STATE(1612), - [sym__identifier] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_external] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_exception] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_include] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_end] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_in] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_let_operator] = ACTIONS(3383), - [sym_and_operator] = ACTIONS(3383), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_directive_token1] = ACTIONS(3381), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1613] = { - [sym_attribute] = STATE(1613), - [sym__identifier] = ACTIONS(3161), - [anon_sym_SEMI_SEMI] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_and] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_external] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_exception] = ACTIONS(3161), - [anon_sym_module] = ACTIONS(3161), - [anon_sym_open] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_end] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym_let_operator] = ACTIONS(3163), - [sym_and_operator] = ACTIONS(3163), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_directive_token1] = ACTIONS(3161), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1614] = { - [sym_attribute] = STATE(1614), - [sym__identifier] = ACTIONS(3169), - [anon_sym_COLON_GT] = ACTIONS(3171), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_RPAREN] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_COLON2] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_DASH_GT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3171), - [anon_sym_RBRACE] = ACTIONS(3171), - [anon_sym_constraint] = ACTIONS(3169), - [anon_sym_val] = ACTIONS(3169), - [anon_sym_end] = ACTIONS(3169), - [anon_sym_with] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_inherit] = ACTIONS(3169), - [anon_sym_method] = ACTIONS(3169), - [anon_sym_initializer] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_then] = ACTIONS(3169), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_do] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_GT_RBRACE] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1615] = { - [sym_attribute] = STATE(1615), - [sym__identifier] = ACTIONS(3165), - [anon_sym_SEMI_SEMI] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_external] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_end] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym_let_operator] = ACTIONS(3167), - [sym_and_operator] = ACTIONS(3167), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_directive_token1] = ACTIONS(3165), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1616] = { - [sym_attribute] = STATE(1616), - [sym__identifier] = ACTIONS(3531), - [anon_sym_SEMI_SEMI] = ACTIONS(3533), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_and] = ACTIONS(3531), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_external] = ACTIONS(3531), - [anon_sym_type] = ACTIONS(3531), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym_exception] = ACTIONS(3531), - [anon_sym_module] = ACTIONS(3531), - [anon_sym_open] = ACTIONS(3531), - [anon_sym_include] = ACTIONS(3531), - [anon_sym_class] = ACTIONS(3531), - [anon_sym_end] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_in] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym_let_operator] = ACTIONS(3533), - [sym_and_operator] = ACTIONS(3533), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_directive_token1] = ACTIONS(3531), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1617] = { - [sym_attribute] = STATE(1617), - [sym__identifier] = ACTIONS(3385), - [anon_sym_SEMI_SEMI] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_and] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_external] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3387), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_exception] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_include] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_end] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_in] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym_let_operator] = ACTIONS(3387), - [sym_and_operator] = ACTIONS(3387), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_directive_token1] = ACTIONS(3385), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1618] = { - [sym_attribute] = STATE(1618), - [sym__identifier] = ACTIONS(3389), - [anon_sym_SEMI_SEMI] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_and] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_external] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_exception] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_include] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_end] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_in] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym_let_operator] = ACTIONS(3391), - [sym_and_operator] = ACTIONS(3391), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_directive_token1] = ACTIONS(3389), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1619] = { - [sym_attribute] = STATE(1619), - [sym__identifier] = ACTIONS(3173), - [anon_sym_COLON_GT] = ACTIONS(3175), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_RPAREN] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_COLON2] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_DASH_GT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3175), - [anon_sym_RBRACE] = ACTIONS(3175), - [anon_sym_constraint] = ACTIONS(3173), - [anon_sym_val] = ACTIONS(3173), - [anon_sym_end] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_inherit] = ACTIONS(3173), - [anon_sym_method] = ACTIONS(3173), - [anon_sym_initializer] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_then] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_GT_RBRACE] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1620] = { - [sym_attribute] = STATE(1620), - [sym__identifier] = ACTIONS(3485), - [anon_sym_COLON_GT] = ACTIONS(3487), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_RPAREN] = ACTIONS(3487), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_COLON2] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_DASH_GT] = ACTIONS(3485), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3487), - [anon_sym_RBRACE] = ACTIONS(3487), - [anon_sym_constraint] = ACTIONS(3485), - [anon_sym_val] = ACTIONS(3485), - [anon_sym_end] = ACTIONS(3485), - [anon_sym_with] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_inherit] = ACTIONS(3485), - [anon_sym_method] = ACTIONS(3485), - [anon_sym_initializer] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_then] = ACTIONS(3485), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_do] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_GT_RBRACE] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1621] = { - [sym_attribute] = STATE(1621), - [sym__identifier] = ACTIONS(3413), - [anon_sym_SEMI_SEMI] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_and] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_external] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_exception] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_include] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_end] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym_let_operator] = ACTIONS(3415), - [sym_and_operator] = ACTIONS(3415), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_directive_token1] = ACTIONS(3413), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1622] = { - [sym_attribute] = STATE(1622), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3569), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1623] = { - [sym_attribute] = STATE(1623), - [sym__identifier] = ACTIONS(3449), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_external] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_RBRACK] = ACTIONS(3451), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_exception] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_include] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_end] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_in] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym_let_operator] = ACTIONS(3451), - [sym_and_operator] = ACTIONS(3451), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_directive_token1] = ACTIONS(3449), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1624] = { - [sym_attribute] = STATE(1624), - [sym__identifier] = ACTIONS(3177), - [anon_sym_COLON_GT] = ACTIONS(3179), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_RPAREN] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_COLON2] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_DASH_GT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3179), - [anon_sym_RBRACE] = ACTIONS(3179), - [anon_sym_constraint] = ACTIONS(3177), - [anon_sym_val] = ACTIONS(3177), - [anon_sym_end] = ACTIONS(3177), - [anon_sym_with] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_inherit] = ACTIONS(3177), - [anon_sym_method] = ACTIONS(3177), - [anon_sym_initializer] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_then] = ACTIONS(3177), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_do] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_GT_RBRACE] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1625] = { - [sym_attribute] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(3123), - [sym__identifier] = ACTIONS(3121), - [anon_sym_SEMI_SEMI] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3121), - [anon_sym_and] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_exception] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym_let_operator] = ACTIONS(3123), - [sym_and_operator] = ACTIONS(3123), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_directive_token1] = ACTIONS(3121), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1626] = { - [sym_attribute] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym__identifier] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_and] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_exception] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_include] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym_let_operator] = ACTIONS(3129), - [sym_and_operator] = ACTIONS(3129), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_directive_token1] = ACTIONS(3127), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1627] = { - [sym_attribute] = STATE(1627), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_and] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1127), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_in] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1129), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1133), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym_and_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3441), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1628] = { - [sym_attribute] = STATE(1628), - [sym__identifier] = ACTIONS(3417), - [anon_sym_SEMI_SEMI] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_and] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_external] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_exception] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_include] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_end] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym_let_operator] = ACTIONS(3419), - [sym_and_operator] = ACTIONS(3419), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_directive_token1] = ACTIONS(3417), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1629] = { - [sym_attribute] = STATE(1629), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3571), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1630] = { - [sym_attribute] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(3151), - [sym__identifier] = ACTIONS(3149), - [anon_sym_SEMI_SEMI] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_and] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_external] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_exception] = ACTIONS(3149), - [anon_sym_module] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_include] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym_let_operator] = ACTIONS(3151), - [sym_and_operator] = ACTIONS(3151), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_directive_token1] = ACTIONS(3149), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1631] = { - [sym_attribute] = STATE(1631), - [sym__identifier] = ACTIONS(3425), - [anon_sym_SEMI_SEMI] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_and] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_external] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_exception] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_include] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_end] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym_let_operator] = ACTIONS(3427), - [sym_and_operator] = ACTIONS(3427), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_directive_token1] = ACTIONS(3425), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1632] = { - [sym_attribute] = STATE(1632), - [sym__identifier] = ACTIONS(3505), - [anon_sym_SEMI_SEMI] = ACTIONS(3507), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_and] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_external] = ACTIONS(3505), - [anon_sym_type] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3507), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_include] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_end] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_in] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym_let_operator] = ACTIONS(3507), - [sym_and_operator] = ACTIONS(3507), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_directive_token1] = ACTIONS(3505), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1633] = { - [sym_attribute] = STATE(1633), - [sym__identifier] = ACTIONS(3509), - [anon_sym_SEMI_SEMI] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_and] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_external] = ACTIONS(3509), - [anon_sym_type] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3511), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_exception] = ACTIONS(3509), - [anon_sym_module] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_include] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_end] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym_let_operator] = ACTIONS(3511), - [sym_and_operator] = ACTIONS(3511), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_directive_token1] = ACTIONS(3509), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1634] = { - [sym_attribute] = STATE(1634), - [sym__identifier] = ACTIONS(3321), - [anon_sym_SEMI_SEMI] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_and] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_external] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_exception] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_include] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_end] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_in] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym_let_operator] = ACTIONS(3323), - [sym_and_operator] = ACTIONS(3323), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_directive_token1] = ACTIONS(3321), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1635] = { - [sym_attribute] = STATE(1635), - [sym__identifier] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_external] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3447), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_exception] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_include] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_end] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym_let_operator] = ACTIONS(3447), - [sym_and_operator] = ACTIONS(3447), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_directive_token1] = ACTIONS(3445), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1636] = { - [sym_attribute] = STATE(1636), - [sym__identifier] = ACTIONS(3485), - [anon_sym_SEMI_SEMI] = ACTIONS(3487), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_and] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_external] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_exception] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_include] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_end] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_in] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym_let_operator] = ACTIONS(3487), - [sym_and_operator] = ACTIONS(3487), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_directive_token1] = ACTIONS(3485), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1637] = { - [sym_attribute] = STATE(1637), - [ts_builtin_sym_end] = ACTIONS(3119), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_and] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym_and_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1638] = { - [sym_attribute] = STATE(1638), - [sym__identifier] = ACTIONS(3561), - [anon_sym_SEMI_SEMI] = ACTIONS(3563), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_and] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_external] = ACTIONS(3561), - [anon_sym_type] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_exception] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_include] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_end] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_in] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym_let_operator] = ACTIONS(3563), - [sym_and_operator] = ACTIONS(3563), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_directive_token1] = ACTIONS(3561), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1639] = { - [sym_attribute] = STATE(1639), - [sym__identifier] = ACTIONS(3449), - [anon_sym_COLON_GT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_RPAREN] = ACTIONS(3451), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_RBRACK] = ACTIONS(3451), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_COLON2] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_DASH_GT] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_constraint] = ACTIONS(3449), - [anon_sym_val] = ACTIONS(3449), - [anon_sym_end] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_inherit] = ACTIONS(3449), - [anon_sym_method] = ACTIONS(3449), - [anon_sym_initializer] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_then] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_GT_RBRACE] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1640] = { - [sym_attribute] = STATE(1640), - [sym__identifier] = ACTIONS(3547), - [anon_sym_SEMI_SEMI] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3547), - [anon_sym_and] = ACTIONS(3547), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_external] = ACTIONS(3547), - [anon_sym_type] = ACTIONS(3547), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_RBRACK] = ACTIONS(3549), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_exception] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3547), - [anon_sym_include] = ACTIONS(3547), - [anon_sym_class] = ACTIONS(3547), - [anon_sym_end] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_in] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym_let_operator] = ACTIONS(3549), - [sym_and_operator] = ACTIONS(3549), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_directive_token1] = ACTIONS(3547), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1641] = { - [sym_attribute] = STATE(1641), - [sym__identifier] = ACTIONS(3181), - [anon_sym_COLON_GT] = ACTIONS(3183), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_RPAREN] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_COLON2] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_DASH_GT] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3183), - [anon_sym_RBRACE] = ACTIONS(3183), - [anon_sym_constraint] = ACTIONS(3181), - [anon_sym_val] = ACTIONS(3181), - [anon_sym_end] = ACTIONS(3181), - [anon_sym_with] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_inherit] = ACTIONS(3181), - [anon_sym_method] = ACTIONS(3181), - [anon_sym_initializer] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_then] = ACTIONS(3181), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_do] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_GT_RBRACE] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1642] = { - [sym_attribute] = STATE(1642), - [sym__identifier] = ACTIONS(3521), - [anon_sym_SEMI_SEMI] = ACTIONS(3523), - [anon_sym_let] = ACTIONS(3521), - [anon_sym_and] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_external] = ACTIONS(3521), - [anon_sym_type] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_RBRACK] = ACTIONS(3523), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_exception] = ACTIONS(3521), - [anon_sym_module] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_include] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_end] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_in] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym_let_operator] = ACTIONS(3523), - [sym_and_operator] = ACTIONS(3523), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_directive_token1] = ACTIONS(3521), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1643] = { - [sym_attribute] = STATE(1643), - [sym__identifier] = ACTIONS(3317), - [anon_sym_COLON_GT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_RPAREN] = ACTIONS(3319), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_COLON2] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_DASH_GT] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_constraint] = ACTIONS(3317), - [anon_sym_val] = ACTIONS(3317), - [anon_sym_end] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_inherit] = ACTIONS(3317), - [anon_sym_method] = ACTIONS(3317), - [anon_sym_initializer] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_then] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_GT_RBRACE] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1644] = { - [sym_attribute] = STATE(1644), - [sym__identifier] = ACTIONS(3513), - [anon_sym_SEMI_SEMI] = ACTIONS(3515), - [anon_sym_let] = ACTIONS(3513), - [anon_sym_and] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_external] = ACTIONS(3513), - [anon_sym_type] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_exception] = ACTIONS(3513), - [anon_sym_module] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_include] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_end] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_in] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym_let_operator] = ACTIONS(3515), - [sym_and_operator] = ACTIONS(3515), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_directive_token1] = ACTIONS(3513), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1645] = { - [sym_attribute] = STATE(1645), - [sym__identifier] = ACTIONS(3185), - [anon_sym_COLON_GT] = ACTIONS(3187), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_RPAREN] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_COLON2] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_DASH_GT] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(3187), - [anon_sym_constraint] = ACTIONS(3185), - [anon_sym_val] = ACTIONS(3185), - [anon_sym_end] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_inherit] = ACTIONS(3185), - [anon_sym_method] = ACTIONS(3185), - [anon_sym_initializer] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_then] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_GT_RBRACE] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1646] = { - [sym_attribute] = STATE(1646), - [sym__identifier] = ACTIONS(3535), - [anon_sym_SEMI_SEMI] = ACTIONS(3537), - [anon_sym_let] = ACTIONS(3535), - [anon_sym_and] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_external] = ACTIONS(3535), - [anon_sym_type] = ACTIONS(3535), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3535), - [anon_sym_exception] = ACTIONS(3535), - [anon_sym_module] = ACTIONS(3535), - [anon_sym_open] = ACTIONS(3535), - [anon_sym_include] = ACTIONS(3535), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_end] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_in] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym_let_operator] = ACTIONS(3537), - [sym_and_operator] = ACTIONS(3537), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_directive_token1] = ACTIONS(3535), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1647] = { - [sym_attribute] = STATE(1647), - [sym__identifier] = ACTIONS(3557), - [anon_sym_SEMI_SEMI] = ACTIONS(3559), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_and] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_external] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_RBRACK] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_exception] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_include] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_end] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_in] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym_let_operator] = ACTIONS(3559), - [sym_and_operator] = ACTIONS(3559), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_directive_token1] = ACTIONS(3557), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1648] = { - [sym_attribute] = STATE(1648), - [sym__identifier] = ACTIONS(3473), - [anon_sym_COLON_GT] = ACTIONS(3475), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_RPAREN] = ACTIONS(3475), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3475), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_COLON2] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_DASH_GT] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3475), - [anon_sym_RBRACE] = ACTIONS(3475), - [anon_sym_constraint] = ACTIONS(3473), - [anon_sym_val] = ACTIONS(3473), - [anon_sym_end] = ACTIONS(3473), - [anon_sym_with] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_inherit] = ACTIONS(3473), - [anon_sym_method] = ACTIONS(3473), - [anon_sym_initializer] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_then] = ACTIONS(3473), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_do] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_GT_RBRACE] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1649] = { - [sym_attribute] = STATE(1649), - [sym__identifier] = ACTIONS(3353), - [anon_sym_COLON_GT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_RPAREN] = ACTIONS(3355), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_COLON2] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_DASH_GT] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_constraint] = ACTIONS(3353), - [anon_sym_val] = ACTIONS(3353), - [anon_sym_end] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_inherit] = ACTIONS(3353), - [anon_sym_method] = ACTIONS(3353), - [anon_sym_initializer] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_then] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_GT_RBRACE] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1650] = { - [sym_attribute] = STATE(1650), - [sym__identifier] = ACTIONS(3521), - [anon_sym_COLON_GT] = ACTIONS(3523), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_RPAREN] = ACTIONS(3523), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_RBRACK] = ACTIONS(3523), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_COLON2] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_DASH_GT] = ACTIONS(3521), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3523), - [anon_sym_RBRACE] = ACTIONS(3523), - [anon_sym_constraint] = ACTIONS(3521), - [anon_sym_val] = ACTIONS(3521), - [anon_sym_end] = ACTIONS(3521), - [anon_sym_with] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_inherit] = ACTIONS(3521), - [anon_sym_method] = ACTIONS(3521), - [anon_sym_initializer] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_then] = ACTIONS(3521), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_do] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_GT_RBRACE] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1651] = { - [sym_attribute] = STATE(1651), - [sym__identifier] = ACTIONS(3513), - [anon_sym_COLON_GT] = ACTIONS(3515), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_RPAREN] = ACTIONS(3515), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_COLON2] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_DASH_GT] = ACTIONS(3513), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3515), - [anon_sym_RBRACE] = ACTIONS(3515), - [anon_sym_constraint] = ACTIONS(3513), - [anon_sym_val] = ACTIONS(3513), - [anon_sym_end] = ACTIONS(3513), - [anon_sym_with] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_inherit] = ACTIONS(3513), - [anon_sym_method] = ACTIONS(3513), - [anon_sym_initializer] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_then] = ACTIONS(3513), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_do] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_GT_RBRACE] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1652] = { - [sym_attribute] = STATE(1652), - [sym__identifier] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_COLON2] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_constraint] = ACTIONS(3441), - [anon_sym_val] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_inherit] = ACTIONS(3441), - [anon_sym_method] = ACTIONS(3441), - [anon_sym_initializer] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_then] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_GT_RBRACE] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1653] = { - [sym_attribute] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(3371), - [sym__identifier] = ACTIONS(3369), - [anon_sym_SEMI_SEMI] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_and] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_external] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_exception] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_include] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_in] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym_let_operator] = ACTIONS(3371), - [sym_and_operator] = ACTIONS(3371), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_directive_token1] = ACTIONS(3369), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1654] = { - [sym_attribute] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(3375), - [sym__identifier] = ACTIONS(3373), - [anon_sym_SEMI_SEMI] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_and] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_external] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_exception] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_include] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_in] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_let_operator] = ACTIONS(3375), - [sym_and_operator] = ACTIONS(3375), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_directive_token1] = ACTIONS(3373), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1655] = { - [sym_attribute] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(3447), - [sym__identifier] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_and] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_external] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_exception] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_include] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_in] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym_let_operator] = ACTIONS(3447), - [sym_and_operator] = ACTIONS(3447), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_directive_token1] = ACTIONS(3445), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1656] = { - [sym_attribute] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(3187), - [sym__identifier] = ACTIONS(3185), - [anon_sym_SEMI_SEMI] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_and] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_external] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_exception] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_include] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym_let_operator] = ACTIONS(3187), - [sym_and_operator] = ACTIONS(3187), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_directive_token1] = ACTIONS(3185), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1657] = { - [sym_attribute] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym__identifier] = ACTIONS(3189), - [anon_sym_SEMI_SEMI] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_external] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_exception] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_include] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_let_operator] = ACTIONS(3191), - [sym_and_operator] = ACTIONS(3191), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_directive_token1] = ACTIONS(3189), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1658] = { - [sym_attribute] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(3183), - [sym__identifier] = ACTIONS(3181), - [anon_sym_SEMI_SEMI] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_and] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_external] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_exception] = ACTIONS(3181), - [anon_sym_module] = ACTIONS(3181), - [anon_sym_open] = ACTIONS(3181), - [anon_sym_include] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym_let_operator] = ACTIONS(3183), - [sym_and_operator] = ACTIONS(3183), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_directive_token1] = ACTIONS(3181), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1659] = { - [sym_attribute] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(3359), - [sym__identifier] = ACTIONS(3357), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_and] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_external] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_exception] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_include] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_in] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym_let_operator] = ACTIONS(3359), - [sym_and_operator] = ACTIONS(3359), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_directive_token1] = ACTIONS(3357), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1660] = { - [sym_attribute] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(3423), - [sym__identifier] = ACTIONS(3421), - [anon_sym_SEMI_SEMI] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_and] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_external] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_exception] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_include] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_in] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym_let_operator] = ACTIONS(3423), - [sym_and_operator] = ACTIONS(3423), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_directive_token1] = ACTIONS(3421), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1661] = { - [sym_attribute] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym__identifier] = ACTIONS(3469), - [anon_sym_SEMI_SEMI] = ACTIONS(3471), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_and] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_external] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_exception] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_include] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_in] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym_let_operator] = ACTIONS(3471), - [sym_and_operator] = ACTIONS(3471), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_directive_token1] = ACTIONS(3469), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1662] = { - [sym_attribute] = STATE(1662), - [ts_builtin_sym_end] = ACTIONS(3347), - [sym__identifier] = ACTIONS(3345), - [anon_sym_SEMI_SEMI] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_and] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_external] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_exception] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_include] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_in] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym_let_operator] = ACTIONS(3347), - [sym_and_operator] = ACTIONS(3347), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_directive_token1] = ACTIONS(3345), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1663] = { - [sym_attribute] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3573), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1664] = { - [sym_attribute] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(3439), - [sym__identifier] = ACTIONS(3437), - [anon_sym_SEMI_SEMI] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_and] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_external] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_exception] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_include] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_in] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym_let_operator] = ACTIONS(3439), - [sym_and_operator] = ACTIONS(3439), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_directive_token1] = ACTIONS(3437), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1665] = { - [sym_attribute] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3575), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1666] = { - [sym_attribute] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(3339), - [sym__identifier] = ACTIONS(3337), - [anon_sym_SEMI_SEMI] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_and] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_external] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_exception] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_include] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_in] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym_let_operator] = ACTIONS(3339), - [sym_and_operator] = ACTIONS(3339), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_directive_token1] = ACTIONS(3337), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1667] = { - [sym_attribute] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(3451), - [sym__identifier] = ACTIONS(3449), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_and] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_external] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_exception] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_include] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_in] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym_let_operator] = ACTIONS(3451), - [sym_and_operator] = ACTIONS(3451), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_directive_token1] = ACTIONS(3449), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1668] = { - [sym_attribute] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym__identifier] = ACTIONS(3501), - [anon_sym_SEMI_SEMI] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_and] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_external] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_exception] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_include] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_in] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym_let_operator] = ACTIONS(3503), - [sym_and_operator] = ACTIONS(3503), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_directive_token1] = ACTIONS(3501), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1669] = { - [sym_attribute] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(3427), - [sym__identifier] = ACTIONS(3425), - [anon_sym_SEMI_SEMI] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_and] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_external] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_exception] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_include] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_in] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym_let_operator] = ACTIONS(3427), - [sym_and_operator] = ACTIONS(3427), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_directive_token1] = ACTIONS(3425), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1670] = { - [sym_attribute] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym__identifier] = ACTIONS(3497), - [anon_sym_SEMI_SEMI] = ACTIONS(3499), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_and] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_external] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_exception] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_include] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_in] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym_let_operator] = ACTIONS(3499), - [sym_and_operator] = ACTIONS(3499), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_directive_token1] = ACTIONS(3497), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1671] = { - [sym_attribute] = STATE(1671), - [sym__identifier] = ACTIONS(3577), - [anon_sym_COLON_GT] = ACTIONS(3579), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3581), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_RPAREN] = ACTIONS(3579), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_COLON2] = ACTIONS(3577), - [anon_sym_DASH_GT] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_constraint] = ACTIONS(3577), - [anon_sym_val] = ACTIONS(3577), - [anon_sym_end] = ACTIONS(3577), - [anon_sym_with] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_inherit] = ACTIONS(3577), - [anon_sym_method] = ACTIONS(3577), - [anon_sym_initializer] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_PIPE_RBRACK] = ACTIONS(3579), - [anon_sym_then] = ACTIONS(3577), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_do] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_GT_RBRACE] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1672] = { - [sym_attribute] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(3335), - [sym__identifier] = ACTIONS(3333), - [anon_sym_SEMI_SEMI] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_and] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_external] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_exception] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_include] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_in] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym_let_operator] = ACTIONS(3335), - [sym_and_operator] = ACTIONS(3335), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_directive_token1] = ACTIONS(3333), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1673] = { - [sym_attribute] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym__identifier] = ACTIONS(3177), - [anon_sym_SEMI_SEMI] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_external] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_exception] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_include] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym_let_operator] = ACTIONS(3179), - [sym_and_operator] = ACTIONS(3179), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_directive_token1] = ACTIONS(3177), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1674] = { - [sym_attribute] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(3367), - [sym__identifier] = ACTIONS(3365), - [anon_sym_SEMI_SEMI] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_and] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_external] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_exception] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_include] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_in] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym_let_operator] = ACTIONS(3367), - [sym_and_operator] = ACTIONS(3367), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_directive_token1] = ACTIONS(3365), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1675] = { - [sym_attribute] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym__identifier] = ACTIONS(3477), - [anon_sym_SEMI_SEMI] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_and] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_external] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_exception] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_include] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_in] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym_let_operator] = ACTIONS(3479), - [sym_and_operator] = ACTIONS(3479), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_directive_token1] = ACTIONS(3477), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1676] = { - [sym_attribute] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(3435), - [sym__identifier] = ACTIONS(3433), - [anon_sym_SEMI_SEMI] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_and] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_external] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_exception] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_include] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_in] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym_let_operator] = ACTIONS(3435), - [sym_and_operator] = ACTIONS(3435), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_directive_token1] = ACTIONS(3433), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1677] = { - [sym_attribute] = STATE(1677), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym__identifier] = ACTIONS(3465), - [anon_sym_SEMI_SEMI] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_and] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_external] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_exception] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_include] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_in] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym_let_operator] = ACTIONS(3467), - [sym_and_operator] = ACTIONS(3467), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_directive_token1] = ACTIONS(3465), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1678] = { - [sym_attribute] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(3363), - [sym__identifier] = ACTIONS(3361), - [anon_sym_SEMI_SEMI] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_and] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_external] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_exception] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_include] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_in] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym_let_operator] = ACTIONS(3363), - [sym_and_operator] = ACTIONS(3363), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_directive_token1] = ACTIONS(3361), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1679] = { - [sym_attribute] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_and] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_in] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym_and_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1680] = { - [sym_attribute] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym__identifier] = ACTIONS(3165), - [anon_sym_SEMI_SEMI] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_and] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_external] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym_let_operator] = ACTIONS(3167), - [sym_and_operator] = ACTIONS(3167), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_directive_token1] = ACTIONS(3165), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1681] = { - [sym_attribute] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym__identifier] = ACTIONS(3505), - [anon_sym_SEMI_SEMI] = ACTIONS(3507), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_and] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_external] = ACTIONS(3505), - [anon_sym_type] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_include] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_in] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym_let_operator] = ACTIONS(3507), - [sym_and_operator] = ACTIONS(3507), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_directive_token1] = ACTIONS(3505), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1682] = { - [sym_attribute] = STATE(1682), - [ts_builtin_sym_end] = ACTIONS(3399), - [sym__identifier] = ACTIONS(3397), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_and] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_external] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_exception] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_include] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_in] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym_let_operator] = ACTIONS(3399), - [sym_and_operator] = ACTIONS(3399), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_directive_token1] = ACTIONS(3397), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1683] = { - [sym_attribute] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(3419), - [sym__identifier] = ACTIONS(3417), - [anon_sym_SEMI_SEMI] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_and] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_external] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_exception] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_include] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_in] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym_let_operator] = ACTIONS(3419), - [sym_and_operator] = ACTIONS(3419), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_directive_token1] = ACTIONS(3417), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1684] = { - [sym_attribute] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym__identifier] = ACTIONS(3521), - [anon_sym_SEMI_SEMI] = ACTIONS(3523), - [anon_sym_let] = ACTIONS(3521), - [anon_sym_and] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_external] = ACTIONS(3521), - [anon_sym_type] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_exception] = ACTIONS(3521), - [anon_sym_module] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_include] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_in] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym_let_operator] = ACTIONS(3523), - [sym_and_operator] = ACTIONS(3523), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_directive_token1] = ACTIONS(3521), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1685] = { - [sym_attribute] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(3403), - [sym__identifier] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_and] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_external] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_exception] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_include] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_in] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym_let_operator] = ACTIONS(3403), - [sym_and_operator] = ACTIONS(3403), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_directive_token1] = ACTIONS(3401), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1686] = { - [sym_attribute] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym__identifier] = ACTIONS(3461), - [anon_sym_SEMI_SEMI] = ACTIONS(3463), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_and] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_external] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_exception] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_include] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_in] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym_let_operator] = ACTIONS(3463), - [sym_and_operator] = ACTIONS(3463), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_directive_token1] = ACTIONS(3461), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1687] = { - [sym_attribute] = STATE(1687), - [sym__identifier] = ACTIONS(3373), - [anon_sym_COLON_GT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_RPAREN] = ACTIONS(3375), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_COLON2] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1295), - [anon_sym_DASH_GT] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_constraint] = ACTIONS(3373), - [anon_sym_val] = ACTIONS(3373), - [anon_sym_end] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_inherit] = ACTIONS(3373), - [anon_sym_method] = ACTIONS(3373), - [anon_sym_initializer] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1297), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_then] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_GT_RBRACE] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1299), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1688] = { - [sym_attribute] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym__identifier] = ACTIONS(3509), - [anon_sym_SEMI_SEMI] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_and] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_external] = ACTIONS(3509), - [anon_sym_type] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_exception] = ACTIONS(3509), - [anon_sym_module] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_include] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym_let_operator] = ACTIONS(3511), - [sym_and_operator] = ACTIONS(3511), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_directive_token1] = ACTIONS(3509), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1689] = { - [sym_attribute] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym__identifier] = ACTIONS(3517), - [anon_sym_SEMI_SEMI] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_and] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_external] = ACTIONS(3517), - [anon_sym_type] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_exception] = ACTIONS(3517), - [anon_sym_module] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_include] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_in] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym_let_operator] = ACTIONS(3519), - [sym_and_operator] = ACTIONS(3519), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_directive_token1] = ACTIONS(3517), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1690] = { - [sym_attribute] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym__identifier] = ACTIONS(3513), - [anon_sym_SEMI_SEMI] = ACTIONS(3515), - [anon_sym_let] = ACTIONS(3513), - [anon_sym_and] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_external] = ACTIONS(3513), - [anon_sym_type] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_exception] = ACTIONS(3513), - [anon_sym_module] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_include] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_in] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym_let_operator] = ACTIONS(3515), - [sym_and_operator] = ACTIONS(3515), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_directive_token1] = ACTIONS(3513), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1691] = { - [sym_attribute] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(3387), - [sym__identifier] = ACTIONS(3385), - [anon_sym_SEMI_SEMI] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_and] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_external] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_exception] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_include] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_in] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym_let_operator] = ACTIONS(3387), - [sym_and_operator] = ACTIONS(3387), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_directive_token1] = ACTIONS(3385), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1692] = { - [sym_attribute] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(3431), - [sym__identifier] = ACTIONS(3429), - [anon_sym_SEMI_SEMI] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_and] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_external] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_exception] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_include] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_in] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym_let_operator] = ACTIONS(3431), - [sym_and_operator] = ACTIONS(3431), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_directive_token1] = ACTIONS(3429), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1693] = { - [sym_attribute] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(3327), - [sym__identifier] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_and] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_external] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_exception] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_include] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym_let_operator] = ACTIONS(3327), - [sym_and_operator] = ACTIONS(3327), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_directive_token1] = ACTIONS(3325), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1694] = { - [sym_attribute] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(3331), - [sym__identifier] = ACTIONS(3329), - [anon_sym_SEMI_SEMI] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_and] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_external] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_exception] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_include] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_in] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym_let_operator] = ACTIONS(3331), - [sym_and_operator] = ACTIONS(3331), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_directive_token1] = ACTIONS(3329), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1695] = { - [sym_attribute] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym__identifier] = ACTIONS(3539), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_and] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_external] = ACTIONS(3539), - [anon_sym_type] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_exception] = ACTIONS(3539), - [anon_sym_module] = ACTIONS(3539), - [anon_sym_open] = ACTIONS(3539), - [anon_sym_include] = ACTIONS(3539), - [anon_sym_class] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_in] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym_let_operator] = ACTIONS(3541), - [sym_and_operator] = ACTIONS(3541), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_directive_token1] = ACTIONS(3539), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1696] = { - [sym_attribute] = STATE(1696), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym__identifier] = ACTIONS(3173), - [anon_sym_SEMI_SEMI] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_and] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_external] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_exception] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_include] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym_let_operator] = ACTIONS(3175), - [sym_and_operator] = ACTIONS(3175), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_directive_token1] = ACTIONS(3173), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1697] = { - [sym_attribute] = STATE(1697), - [ts_builtin_sym_end] = ACTIONS(3383), - [sym__identifier] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_and] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_external] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_exception] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_include] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_in] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_let_operator] = ACTIONS(3383), - [sym_and_operator] = ACTIONS(3383), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_directive_token1] = ACTIONS(3381), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1698] = { - [sym_attribute] = STATE(1698), - [ts_builtin_sym_end] = ACTIONS(3199), - [sym__identifier] = ACTIONS(3197), - [anon_sym_SEMI_SEMI] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_and] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_external] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_exception] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_include] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_let_operator] = ACTIONS(3199), - [sym_and_operator] = ACTIONS(3199), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_directive_token1] = ACTIONS(3197), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1699] = { - [sym_attribute] = STATE(1699), - [ts_builtin_sym_end] = ACTIONS(3319), - [sym__identifier] = ACTIONS(3317), - [anon_sym_SEMI_SEMI] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_and] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_external] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_exception] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_open] = ACTIONS(3317), - [anon_sym_include] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_in] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym_let_operator] = ACTIONS(3319), - [sym_and_operator] = ACTIONS(3319), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_directive_token1] = ACTIONS(3317), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1700] = { - [sym_attribute] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(3407), - [sym__identifier] = ACTIONS(3405), - [anon_sym_SEMI_SEMI] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_and] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_external] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_exception] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_include] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_in] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym_let_operator] = ACTIONS(3407), - [sym_and_operator] = ACTIONS(3407), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_directive_token1] = ACTIONS(3405), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1701] = { - [sym_attribute] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_and] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_in] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym_and_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1702] = { - [sym_attribute] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym__identifier] = ACTIONS(3557), - [anon_sym_SEMI_SEMI] = ACTIONS(3559), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_and] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_external] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_exception] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_include] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_in] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym_let_operator] = ACTIONS(3559), - [sym_and_operator] = ACTIONS(3559), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_directive_token1] = ACTIONS(3557), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1703] = { - [sym_attribute] = STATE(1703), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym__identifier] = ACTIONS(3489), - [anon_sym_SEMI_SEMI] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_and] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_external] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_exception] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_include] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_in] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym_let_operator] = ACTIONS(3491), - [sym_and_operator] = ACTIONS(3491), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_directive_token1] = ACTIONS(3489), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1704] = { - [sym_attribute] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(3415), - [sym__identifier] = ACTIONS(3413), - [anon_sym_SEMI_SEMI] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_and] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_external] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_exception] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_include] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_in] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym_let_operator] = ACTIONS(3415), - [sym_and_operator] = ACTIONS(3415), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_directive_token1] = ACTIONS(3413), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1705] = { - [sym_attribute] = STATE(1705), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym__identifier] = ACTIONS(3535), - [anon_sym_SEMI_SEMI] = ACTIONS(3537), - [anon_sym_let] = ACTIONS(3535), - [anon_sym_and] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_external] = ACTIONS(3535), - [anon_sym_type] = ACTIONS(3535), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3535), - [anon_sym_exception] = ACTIONS(3535), - [anon_sym_module] = ACTIONS(3535), - [anon_sym_open] = ACTIONS(3535), - [anon_sym_include] = ACTIONS(3535), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_in] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym_let_operator] = ACTIONS(3537), - [sym_and_operator] = ACTIONS(3537), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_directive_token1] = ACTIONS(3535), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1706] = { - [sym_attribute] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym__identifier] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3527), - [anon_sym_let] = ACTIONS(3525), - [anon_sym_and] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_external] = ACTIONS(3525), - [anon_sym_type] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_exception] = ACTIONS(3525), - [anon_sym_module] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_include] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_in] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym_let_operator] = ACTIONS(3527), - [sym_and_operator] = ACTIONS(3527), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_directive_token1] = ACTIONS(3525), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1707] = { - [sym_attribute] = STATE(1707), - [ts_builtin_sym_end] = ACTIONS(3307), - [sym__identifier] = ACTIONS(3305), - [anon_sym_SEMI_SEMI] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_and] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_external] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_exception] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_include] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_in] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym_let_operator] = ACTIONS(3307), - [sym_and_operator] = ACTIONS(3307), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_directive_token1] = ACTIONS(3305), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1708] = { - [sym_attribute] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym__identifier] = ACTIONS(3485), - [anon_sym_SEMI_SEMI] = ACTIONS(3487), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_and] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_external] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_exception] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_include] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_in] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym_let_operator] = ACTIONS(3487), - [sym_and_operator] = ACTIONS(3487), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_directive_token1] = ACTIONS(3485), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1709] = { - [sym_attribute] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym__identifier] = ACTIONS(3493), - [anon_sym_SEMI_SEMI] = ACTIONS(3495), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_and] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_external] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_exception] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_include] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_in] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym_let_operator] = ACTIONS(3495), - [sym_and_operator] = ACTIONS(3495), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_directive_token1] = ACTIONS(3493), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1710] = { - [sym__parameter] = STATE(3799), - [sym_parameter] = STATE(3797), - [sym__parenthesized_abstract_type] = STATE(3797), - [sym__simple_pattern] = STATE(3796), - [sym__simple_pattern_ext] = STATE(3792), - [sym_typed_pattern] = STATE(3775), - [sym_polymorphic_variant_pattern] = STATE(3775), - [sym_record_pattern] = STATE(3775), - [sym_list_pattern] = STATE(3775), - [sym_array_pattern] = STATE(3775), - [sym_local_open_pattern] = STATE(3775), - [sym_package_pattern] = STATE(3775), - [sym_parenthesized_pattern] = STATE(3775), - [sym_attribute] = STATE(1710), - [sym__extension] = STATE(3796), - [sym_extension] = STATE(3844), - [sym_quoted_extension] = STATE(3844), - [sym__constant] = STATE(3782), - [sym__signed_constant] = STATE(3775), - [sym_number] = STATE(3850), - [sym_signed_number] = STATE(3782), - [sym_character] = STATE(3850), - [sym_string] = STATE(3850), - [sym_quoted_string] = STATE(3850), - [sym_boolean] = STATE(3850), - [sym_unit] = STATE(3850), - [sym__value_pattern] = STATE(3775), - [sym_parenthesized_operator] = STATE(3841), - [sym_module_path] = STATE(9038), - [sym_constructor_path] = STATE(3775), - [sym__label] = STATE(9419), - [sym_tag] = STATE(3775), - [aux_sym_let_binding_repeat1] = STATE(1710), - [sym__identifier] = ACTIONS(3583), - [anon_sym_SEMI_SEMI] = ACTIONS(3014), - [anon_sym_and] = ACTIONS(3019), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3586), - [anon_sym_QMARK] = ACTIONS(3586), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_external] = ACTIONS(3019), - [anon_sym_type] = ACTIONS(3019), - [anon_sym_PLUS] = ACTIONS(3592), - [anon_sym_DASH] = ACTIONS(3592), - [anon_sym_LBRACK] = ACTIONS(3595), - [anon_sym_RBRACK] = ACTIONS(3014), - [anon_sym_true] = ACTIONS(3598), - [anon_sym_false] = ACTIONS(3598), - [anon_sym_COLON2] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3601), - [anon_sym_exception] = ACTIONS(3019), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_open] = ACTIONS(3019), - [anon_sym_include] = ACTIONS(3019), - [anon_sym_class] = ACTIONS(3019), - [anon_sym_val] = ACTIONS(3019), - [anon_sym_end] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3604), - [anon_sym_LBRACK_PIPE] = ACTIONS(3607), - [anon_sym_begin] = ACTIONS(3610), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3019), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3014), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3613), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3616), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3014), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3014), - [aux_sym_number_token1] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3622), - [anon_sym_DQUOTE] = ACTIONS(3625), - [sym__capitalized_identifier] = ACTIONS(3628), - [aux_sym_tag_token1] = ACTIONS(3631), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1711] = { - [sym_attribute] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(3323), - [sym__identifier] = ACTIONS(3321), - [anon_sym_SEMI_SEMI] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_and] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_external] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_exception] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_include] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_in] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym_let_operator] = ACTIONS(3323), - [sym_and_operator] = ACTIONS(3323), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_directive_token1] = ACTIONS(3321), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1712] = { - [sym_attribute] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(3171), - [sym__identifier] = ACTIONS(3169), - [anon_sym_SEMI_SEMI] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_and] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_external] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_exception] = ACTIONS(3169), - [anon_sym_module] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym_let_operator] = ACTIONS(3171), - [sym_and_operator] = ACTIONS(3171), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_directive_token1] = ACTIONS(3169), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1713] = { - [sym_attribute] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym__identifier] = ACTIONS(3531), - [anon_sym_SEMI_SEMI] = ACTIONS(3533), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_and] = ACTIONS(3531), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_external] = ACTIONS(3531), - [anon_sym_type] = ACTIONS(3531), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym_exception] = ACTIONS(3531), - [anon_sym_module] = ACTIONS(3531), - [anon_sym_open] = ACTIONS(3531), - [anon_sym_include] = ACTIONS(3531), - [anon_sym_class] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_in] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym_let_operator] = ACTIONS(3533), - [sym_and_operator] = ACTIONS(3533), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_directive_token1] = ACTIONS(3531), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1714] = { - [sym_attribute] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_and] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1199), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_in] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1201), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1205), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym_and_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3441), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1715] = { - [sym_attribute] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym__identifier] = ACTIONS(3481), - [anon_sym_SEMI_SEMI] = ACTIONS(3483), - [anon_sym_let] = ACTIONS(3481), - [anon_sym_and] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_external] = ACTIONS(3481), - [anon_sym_type] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_exception] = ACTIONS(3481), - [anon_sym_module] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_include] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_in] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym_let_operator] = ACTIONS(3483), - [sym_and_operator] = ACTIONS(3483), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_directive_token1] = ACTIONS(3481), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1716] = { - [sym_attribute] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(3431), - [sym__identifier] = ACTIONS(3429), - [anon_sym_SEMI_SEMI] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_external] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_exception] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_include] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_val] = ACTIONS(3429), - [anon_sym_end] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym_let_operator] = ACTIONS(3431), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_directive_token1] = ACTIONS(3429), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1717] = { - [sym_attribute] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(3391), - [sym__identifier] = ACTIONS(3389), - [anon_sym_SEMI_SEMI] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_and] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_external] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_exception] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_include] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_in] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym_let_operator] = ACTIONS(3391), - [sym_and_operator] = ACTIONS(3391), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_directive_token1] = ACTIONS(3389), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1718] = { - [sym_attribute] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(3634), - [sym__identifier] = ACTIONS(3636), - [anon_sym_SEMI_SEMI] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_and] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_external] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_exception] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_include] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_end] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_in] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_LBRACE_LT] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [sym_ocamlyacc_value] = ACTIONS(3634), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3636), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3634), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3634), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3634), - [aux_sym_number_token1] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [sym_prefix_operator] = ACTIONS(3634), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [aux_sym__pow_operator_token1] = ACTIONS(3634), - [anon_sym_lsl] = ACTIONS(3636), - [anon_sym_lsr] = ACTIONS(3636), - [anon_sym_asr] = ACTIONS(3636), - [aux_sym__mult_operator_token1] = ACTIONS(3636), - [anon_sym_mod] = ACTIONS(3636), - [anon_sym_land] = ACTIONS(3636), - [anon_sym_lor] = ACTIONS(3636), - [anon_sym_lxor] = ACTIONS(3636), - [aux_sym__add_operator_token1] = ACTIONS(3636), - [sym__concat_operator] = ACTIONS(3634), - [sym__rel_operator] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [sym_let_operator] = ACTIONS(3634), - [sym_and_operator] = ACTIONS(3634), - [sym__capitalized_identifier] = ACTIONS(3634), - [aux_sym_directive_token1] = ACTIONS(3634), - [aux_sym_tag_token1] = ACTIONS(3634), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1719] = { - [sym_attribute] = STATE(1719), - [sym__identifier] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3634), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_COLON2] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_constraint] = ACTIONS(3636), - [anon_sym_val] = ACTIONS(3636), - [anon_sym_end] = ACTIONS(3636), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_inherit] = ACTIONS(3636), - [anon_sym_method] = ACTIONS(3636), - [anon_sym_initializer] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_PIPE_RBRACK] = ACTIONS(3634), - [anon_sym_then] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_LBRACE_LT] = ACTIONS(3634), - [anon_sym_GT_RBRACE] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [sym_ocamlyacc_value] = ACTIONS(3634), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3636), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3634), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3634), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3634), - [aux_sym_number_token1] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [sym_prefix_operator] = ACTIONS(3634), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [aux_sym__pow_operator_token1] = ACTIONS(3634), - [anon_sym_lsl] = ACTIONS(3636), - [anon_sym_lsr] = ACTIONS(3636), - [anon_sym_asr] = ACTIONS(3636), - [aux_sym__mult_operator_token1] = ACTIONS(3636), - [anon_sym_mod] = ACTIONS(3636), - [anon_sym_land] = ACTIONS(3636), - [anon_sym_lor] = ACTIONS(3636), - [anon_sym_lxor] = ACTIONS(3636), - [aux_sym__add_operator_token1] = ACTIONS(3636), - [sym__concat_operator] = ACTIONS(3634), - [sym__rel_operator] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [sym__capitalized_identifier] = ACTIONS(3634), - [aux_sym_tag_token1] = ACTIONS(3634), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1720] = { - [sym_attribute] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(3311), - [sym__identifier] = ACTIONS(3309), - [anon_sym_SEMI_SEMI] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_and] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_external] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_exception] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_open] = ACTIONS(3309), - [anon_sym_include] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym_let_operator] = ACTIONS(3311), - [sym_and_operator] = ACTIONS(3311), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_directive_token1] = ACTIONS(3309), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1721] = { - [sym_attribute] = STATE(1721), - [ts_builtin_sym_end] = ACTIONS(3411), - [sym__identifier] = ACTIONS(3409), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_and] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_external] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_exception] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_include] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_in] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym_let_operator] = ACTIONS(3411), - [sym_and_operator] = ACTIONS(3411), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_directive_token1] = ACTIONS(3409), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1722] = { - [sym_attribute] = STATE(1722), - [ts_builtin_sym_end] = ACTIONS(3195), - [sym__identifier] = ACTIONS(3193), - [anon_sym_SEMI_SEMI] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_and] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_external] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_exception] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_include] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym_let_operator] = ACTIONS(3195), - [sym_and_operator] = ACTIONS(3195), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_directive_token1] = ACTIONS(3193), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1723] = { - [sym_attribute] = STATE(1723), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym__identifier] = ACTIONS(3473), - [anon_sym_SEMI_SEMI] = ACTIONS(3475), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_and] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_external] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_exception] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_include] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_in] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym_let_operator] = ACTIONS(3475), - [sym_and_operator] = ACTIONS(3475), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_directive_token1] = ACTIONS(3473), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1724] = { - [sym_attribute] = STATE(1724), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym__identifier] = ACTIONS(3547), - [anon_sym_SEMI_SEMI] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3547), - [anon_sym_and] = ACTIONS(3547), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_external] = ACTIONS(3547), - [anon_sym_type] = ACTIONS(3547), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_exception] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3547), - [anon_sym_include] = ACTIONS(3547), - [anon_sym_class] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_in] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym_let_operator] = ACTIONS(3549), - [sym_and_operator] = ACTIONS(3549), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_directive_token1] = ACTIONS(3547), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1725] = { - [sym_attribute] = STATE(1725), - [ts_builtin_sym_end] = ACTIONS(3343), - [sym__identifier] = ACTIONS(3341), - [anon_sym_SEMI_SEMI] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_and] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_external] = ACTIONS(3341), - [anon_sym_type] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_exception] = ACTIONS(3341), - [anon_sym_module] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_include] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_in] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym_let_operator] = ACTIONS(3343), - [sym_and_operator] = ACTIONS(3343), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_directive_token1] = ACTIONS(3341), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1726] = { - [sym_attribute] = STATE(1726), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym__identifier] = ACTIONS(3543), - [anon_sym_SEMI_SEMI] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_and] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_external] = ACTIONS(3543), - [anon_sym_type] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3543), - [anon_sym_exception] = ACTIONS(3543), - [anon_sym_module] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3543), - [anon_sym_include] = ACTIONS(3543), - [anon_sym_class] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_in] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym_let_operator] = ACTIONS(3545), - [sym_and_operator] = ACTIONS(3545), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_directive_token1] = ACTIONS(3543), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1727] = { - [sym_attribute] = STATE(1727), - [ts_builtin_sym_end] = ACTIONS(3563), - [sym__identifier] = ACTIONS(3561), - [anon_sym_SEMI_SEMI] = ACTIONS(3563), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_and] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_external] = ACTIONS(3561), - [anon_sym_type] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_exception] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_include] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_in] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym_let_operator] = ACTIONS(3563), - [sym_and_operator] = ACTIONS(3563), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_directive_token1] = ACTIONS(3561), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1728] = { - [sym_attribute] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(3315), - [sym__identifier] = ACTIONS(3313), - [anon_sym_SEMI_SEMI] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_and] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_external] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_exception] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_open] = ACTIONS(3313), - [anon_sym_include] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_in] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym_let_operator] = ACTIONS(3315), - [sym_and_operator] = ACTIONS(3315), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_directive_token1] = ACTIONS(3313), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1729] = { - [sym_attribute] = STATE(1729), - [ts_builtin_sym_end] = ACTIONS(3351), - [sym__identifier] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_and] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_external] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_exception] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_include] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_in] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_let_operator] = ACTIONS(3351), - [sym_and_operator] = ACTIONS(3351), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_directive_token1] = ACTIONS(3349), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1730] = { - [sym_attribute] = STATE(1730), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym__identifier] = ACTIONS(3517), - [anon_sym_SEMI_SEMI] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_external] = ACTIONS(3517), - [anon_sym_type] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_exception] = ACTIONS(3517), - [anon_sym_module] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_include] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_val] = ACTIONS(3517), - [anon_sym_end] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym_let_operator] = ACTIONS(3519), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_directive_token1] = ACTIONS(3517), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1731] = { - [sym_attribute] = STATE(1731), - [ts_builtin_sym_end] = ACTIONS(3355), - [sym__identifier] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_and] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_external] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_exception] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_include] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_in] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym_let_operator] = ACTIONS(3355), - [sym_and_operator] = ACTIONS(3355), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_directive_token1] = ACTIONS(3353), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1732] = { - [sym__parenthesized_abstract_type] = STATE(2175), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6225), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1732), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(3640), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_COMMA] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_RBRACK] = ACTIONS(3638), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_COLON2] = ACTIONS(3646), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_when] = ACTIONS(3646), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1733] = { - [sym_attribute] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(3455), - [sym__identifier] = ACTIONS(3453), - [anon_sym_SEMI_SEMI] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_and] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_external] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_exception] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_include] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_in] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym_let_operator] = ACTIONS(3455), - [sym_and_operator] = ACTIONS(3455), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_directive_token1] = ACTIONS(3453), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1734] = { - [sym_attribute] = STATE(1734), - [ts_builtin_sym_end] = ACTIONS(3459), - [sym__identifier] = ACTIONS(3457), - [anon_sym_SEMI_SEMI] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_and] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_external] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_exception] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_include] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_in] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym_let_operator] = ACTIONS(3459), - [sym_and_operator] = ACTIONS(3459), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_directive_token1] = ACTIONS(3457), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1735] = { - [sym_attribute] = STATE(1735), - [ts_builtin_sym_end] = ACTIONS(3379), - [sym__identifier] = ACTIONS(3377), - [anon_sym_SEMI_SEMI] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_and] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_external] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_exception] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_include] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_in] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym_let_operator] = ACTIONS(3379), - [sym_and_operator] = ACTIONS(3379), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_directive_token1] = ACTIONS(3377), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1736] = { - [sym_attribute] = STATE(1736), - [ts_builtin_sym_end] = ACTIONS(3163), - [sym__identifier] = ACTIONS(3161), - [anon_sym_SEMI_SEMI] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_and] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_external] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_exception] = ACTIONS(3161), - [anon_sym_module] = ACTIONS(3161), - [anon_sym_open] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym_let_operator] = ACTIONS(3163), - [sym_and_operator] = ACTIONS(3163), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_directive_token1] = ACTIONS(3161), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1737] = { - [sym_attribute] = STATE(1737), - [sym__identifier] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_COLON2] = ACTIONS(3441), - [anon_sym_DASH_GT] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_constraint] = ACTIONS(3441), - [anon_sym_val] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_inherit] = ACTIONS(3441), - [anon_sym_method] = ACTIONS(3441), - [anon_sym_initializer] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_PIPE_RBRACK] = ACTIONS(3443), - [anon_sym_then] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_GT_RBRACE] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1738] = { - [sym_attribute] = STATE(1738), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_end] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1739] = { - [sym_attribute] = STATE(1739), - [sym__identifier] = ACTIONS(3121), - [anon_sym_SEMI_SEMI] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_exception] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_end] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym_let_operator] = ACTIONS(3123), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_directive_token1] = ACTIONS(3121), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1740] = { - [sym_attribute] = STATE(1740), - [sym__identifier] = ACTIONS(3149), - [anon_sym_SEMI_SEMI] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_external] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_exception] = ACTIONS(3149), - [anon_sym_module] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_include] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_end] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym_let_operator] = ACTIONS(3151), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_directive_token1] = ACTIONS(3149), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1741] = { - [sym_attribute] = STATE(1741), - [sym__identifier] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3129), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_exception] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_include] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_end] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym_let_operator] = ACTIONS(3129), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_directive_token1] = ACTIONS(3127), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1742] = { - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6242), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1742), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_EQ] = ACTIONS(3638), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_RPAREN] = ACTIONS(3638), - [anon_sym_COMMA] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3644), - [anon_sym_PIPE] = ACTIONS(3638), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_RBRACK] = ACTIONS(3638), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_COLON2] = ACTIONS(3646), - [anon_sym_DASH_GT] = ACTIONS(3638), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_RBRACE] = ACTIONS(3638), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_when] = ACTIONS(3646), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1743] = { - [sym_attribute] = STATE(1743), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3650), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1744] = { - [sym_attribute] = STATE(1744), - [sym__identifier] = ACTIONS(3652), - [anon_sym_COLON_GT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_RPAREN] = ACTIONS(3654), - [anon_sym_COMMA] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_COLON_EQ] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_COLON2] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_constraint] = ACTIONS(3652), - [anon_sym_val] = ACTIONS(3652), - [anon_sym_end] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_inherit] = ACTIONS(3652), - [anon_sym_method] = ACTIONS(3652), - [anon_sym_initializer] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_PIPE] = ACTIONS(3654), - [anon_sym_PIPE_RBRACK] = ACTIONS(3654), - [anon_sym_then] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_LBRACE_LT] = ACTIONS(3654), - [anon_sym_GT_RBRACE] = ACTIONS(3654), - [anon_sym_begin] = ACTIONS(3652), - [sym_ocamlyacc_value] = ACTIONS(3654), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3652), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3654), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3654), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3654), - [aux_sym_number_token1] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_prefix_operator] = ACTIONS(3654), - [anon_sym_PLUS_DOT] = ACTIONS(3652), - [anon_sym_DASH_DOT] = ACTIONS(3652), - [aux_sym__pow_operator_token1] = ACTIONS(3654), - [anon_sym_lsl] = ACTIONS(3652), - [anon_sym_lsr] = ACTIONS(3652), - [anon_sym_asr] = ACTIONS(3652), - [aux_sym__mult_operator_token1] = ACTIONS(3652), - [anon_sym_mod] = ACTIONS(3652), - [anon_sym_land] = ACTIONS(3652), - [anon_sym_lor] = ACTIONS(3652), - [anon_sym_lxor] = ACTIONS(3652), - [aux_sym__add_operator_token1] = ACTIONS(3652), - [sym__concat_operator] = ACTIONS(3654), - [sym__rel_operator] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [sym__capitalized_identifier] = ACTIONS(3654), - [aux_sym_tag_token1] = ACTIONS(3654), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1745] = { - [sym_attribute] = STATE(1745), - [sym__identifier] = ACTIONS(3141), - [anon_sym_SEMI_SEMI] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_external] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_exception] = ACTIONS(3141), - [anon_sym_module] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_include] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_end] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym_let_operator] = ACTIONS(3143), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_directive_token1] = ACTIONS(3141), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1746] = { - [sym_attribute] = STATE(1746), - [sym__identifier] = ACTIONS(3137), - [anon_sym_SEMI_SEMI] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_external] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_exception] = ACTIONS(3137), - [anon_sym_module] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_end] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym_let_operator] = ACTIONS(3139), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_directive_token1] = ACTIONS(3137), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1747] = { - [sym_attribute] = STATE(1747), - [sym__identifier] = ACTIONS(3577), - [anon_sym_SEMI_SEMI] = ACTIONS(3579), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_and] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3656), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_external] = ACTIONS(3577), - [anon_sym_type] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_exception] = ACTIONS(3577), - [anon_sym_module] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_include] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_end] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_in] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym_let_operator] = ACTIONS(3579), - [sym_and_operator] = ACTIONS(3579), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_directive_token1] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1748] = { - [sym_attribute] = STATE(1748), - [sym__identifier] = ACTIONS(3145), - [anon_sym_SEMI_SEMI] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_external] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_exception] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_include] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_end] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym_let_operator] = ACTIONS(3147), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_directive_token1] = ACTIONS(3145), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1749] = { - [sym_attribute] = STATE(1749), - [sym__identifier] = ACTIONS(3133), - [anon_sym_SEMI_SEMI] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_external] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_exception] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_include] = ACTIONS(3133), - [anon_sym_class] = ACTIONS(3133), - [anon_sym_end] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym_let_operator] = ACTIONS(3135), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_directive_token1] = ACTIONS(3133), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1750] = { - [sym_attribute] = STATE(1750), - [sym__identifier] = ACTIONS(3636), - [anon_sym_COLON_GT] = ACTIONS(3634), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_RPAREN] = ACTIONS(3634), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_COLON2] = ACTIONS(3636), - [anon_sym_DASH_GT] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3634), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_constraint] = ACTIONS(3636), - [anon_sym_val] = ACTIONS(3636), - [anon_sym_end] = ACTIONS(3636), - [anon_sym_with] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_inherit] = ACTIONS(3636), - [anon_sym_method] = ACTIONS(3636), - [anon_sym_initializer] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_then] = ACTIONS(3636), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_do] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_LBRACE_LT] = ACTIONS(3634), - [anon_sym_GT_RBRACE] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [sym_ocamlyacc_value] = ACTIONS(3634), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3636), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3634), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3634), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3634), - [aux_sym_number_token1] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [sym_prefix_operator] = ACTIONS(3634), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [aux_sym__pow_operator_token1] = ACTIONS(3634), - [anon_sym_lsl] = ACTIONS(3636), - [anon_sym_lsr] = ACTIONS(3636), - [anon_sym_asr] = ACTIONS(3636), - [aux_sym__mult_operator_token1] = ACTIONS(3636), - [anon_sym_mod] = ACTIONS(3636), - [anon_sym_land] = ACTIONS(3636), - [anon_sym_lor] = ACTIONS(3636), - [anon_sym_lxor] = ACTIONS(3636), - [aux_sym__add_operator_token1] = ACTIONS(3636), - [sym__concat_operator] = ACTIONS(3634), - [sym__rel_operator] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [sym__capitalized_identifier] = ACTIONS(3634), - [aux_sym_tag_token1] = ACTIONS(3634), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1751] = { - [sym_attribute] = STATE(1751), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_and] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_in] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym_and_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1752] = { - [sym_attribute] = STATE(1752), - [sym__identifier] = ACTIONS(3658), - [anon_sym_COLON_GT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_COLON_EQ] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_true] = ACTIONS(3658), - [anon_sym_false] = ACTIONS(3658), - [anon_sym_COLON2] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_constraint] = ACTIONS(3658), - [anon_sym_val] = ACTIONS(3658), - [anon_sym_end] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_inherit] = ACTIONS(3658), - [anon_sym_method] = ACTIONS(3658), - [anon_sym_initializer] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_PIPE] = ACTIONS(3660), - [anon_sym_PIPE_RBRACK] = ACTIONS(3660), - [anon_sym_then] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_LBRACE_LT] = ACTIONS(3660), - [anon_sym_GT_RBRACE] = ACTIONS(3660), - [anon_sym_begin] = ACTIONS(3658), - [sym_ocamlyacc_value] = ACTIONS(3660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3660), - [aux_sym_number_token1] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_prefix_operator] = ACTIONS(3660), - [anon_sym_PLUS_DOT] = ACTIONS(3658), - [anon_sym_DASH_DOT] = ACTIONS(3658), - [aux_sym__pow_operator_token1] = ACTIONS(3660), - [anon_sym_lsl] = ACTIONS(3658), - [anon_sym_lsr] = ACTIONS(3658), - [anon_sym_asr] = ACTIONS(3658), - [aux_sym__mult_operator_token1] = ACTIONS(3658), - [anon_sym_mod] = ACTIONS(3658), - [anon_sym_land] = ACTIONS(3658), - [anon_sym_lor] = ACTIONS(3658), - [anon_sym_lxor] = ACTIONS(3658), - [aux_sym__add_operator_token1] = ACTIONS(3658), - [sym__concat_operator] = ACTIONS(3660), - [sym__rel_operator] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [anon_sym_PIPE_PIPE] = ACTIONS(3658), - [sym__capitalized_identifier] = ACTIONS(3660), - [aux_sym_tag_token1] = ACTIONS(3660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1753] = { - [sym_attribute] = STATE(1753), - [ts_builtin_sym_end] = ACTIONS(3654), - [sym__identifier] = ACTIONS(3652), - [anon_sym_SEMI_SEMI] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_and] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_external] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_COLON_EQ] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_exception] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_open] = ACTIONS(3652), - [anon_sym_include] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_end] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_in] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_PIPE] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_LBRACE_LT] = ACTIONS(3654), - [anon_sym_begin] = ACTIONS(3652), - [sym_ocamlyacc_value] = ACTIONS(3654), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3652), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3654), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3654), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3654), - [aux_sym_number_token1] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_prefix_operator] = ACTIONS(3654), - [anon_sym_PLUS_DOT] = ACTIONS(3652), - [anon_sym_DASH_DOT] = ACTIONS(3652), - [aux_sym__pow_operator_token1] = ACTIONS(3654), - [anon_sym_lsl] = ACTIONS(3652), - [anon_sym_lsr] = ACTIONS(3652), - [anon_sym_asr] = ACTIONS(3652), - [aux_sym__mult_operator_token1] = ACTIONS(3652), - [anon_sym_mod] = ACTIONS(3652), - [anon_sym_land] = ACTIONS(3652), - [anon_sym_lor] = ACTIONS(3652), - [anon_sym_lxor] = ACTIONS(3652), - [aux_sym__add_operator_token1] = ACTIONS(3652), - [sym__concat_operator] = ACTIONS(3654), - [sym__rel_operator] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [sym_let_operator] = ACTIONS(3654), - [sym_and_operator] = ACTIONS(3654), - [sym__capitalized_identifier] = ACTIONS(3654), - [aux_sym_directive_token1] = ACTIONS(3654), - [aux_sym_tag_token1] = ACTIONS(3654), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1754] = { - [sym_attribute] = STATE(1754), - [ts_builtin_sym_end] = ACTIONS(3660), - [sym__identifier] = ACTIONS(3658), - [anon_sym_SEMI_SEMI] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_and] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_external] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_COLON_EQ] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_true] = ACTIONS(3658), - [anon_sym_false] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_exception] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_open] = ACTIONS(3658), - [anon_sym_include] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_end] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_in] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_PIPE] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_LBRACE_LT] = ACTIONS(3660), - [anon_sym_begin] = ACTIONS(3658), - [sym_ocamlyacc_value] = ACTIONS(3660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3660), - [aux_sym_number_token1] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_prefix_operator] = ACTIONS(3660), - [anon_sym_PLUS_DOT] = ACTIONS(3658), - [anon_sym_DASH_DOT] = ACTIONS(3658), - [aux_sym__pow_operator_token1] = ACTIONS(3660), - [anon_sym_lsl] = ACTIONS(3658), - [anon_sym_lsr] = ACTIONS(3658), - [anon_sym_asr] = ACTIONS(3658), - [aux_sym__mult_operator_token1] = ACTIONS(3658), - [anon_sym_mod] = ACTIONS(3658), - [anon_sym_land] = ACTIONS(3658), - [anon_sym_lor] = ACTIONS(3658), - [anon_sym_lxor] = ACTIONS(3658), - [aux_sym__add_operator_token1] = ACTIONS(3658), - [sym__concat_operator] = ACTIONS(3660), - [sym__rel_operator] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [anon_sym_PIPE_PIPE] = ACTIONS(3658), - [sym_let_operator] = ACTIONS(3660), - [sym_and_operator] = ACTIONS(3660), - [sym__capitalized_identifier] = ACTIONS(3660), - [aux_sym_directive_token1] = ACTIONS(3660), - [aux_sym_tag_token1] = ACTIONS(3660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1755] = { - [sym_attribute] = STATE(1755), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_end] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1756] = { - [sym_attribute] = STATE(1756), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3662), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1757] = { - [sym_attribute] = STATE(1757), - [ts_builtin_sym_end] = ACTIONS(3129), - [sym__identifier] = ACTIONS(3127), - [anon_sym_SEMI_SEMI] = ACTIONS(3129), - [anon_sym_let] = ACTIONS(3127), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_external] = ACTIONS(3127), - [anon_sym_type] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3127), - [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_true] = ACTIONS(3127), - [anon_sym_false] = ACTIONS(3127), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_SEMI] = ACTIONS(3127), - [anon_sym_exception] = ACTIONS(3127), - [anon_sym_module] = ACTIONS(3127), - [anon_sym_open] = ACTIONS(3127), - [anon_sym_include] = ACTIONS(3127), - [anon_sym_class] = ACTIONS(3127), - [anon_sym_object] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3127), - [anon_sym_POUND] = ACTIONS(3127), - [anon_sym_COLON_COLON] = ACTIONS(3129), - [anon_sym_LBRACK_PIPE] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_else] = ACTIONS(3127), - [anon_sym_new] = ACTIONS(3127), - [anon_sym_LBRACE_LT] = ACTIONS(3129), - [anon_sym_begin] = ACTIONS(3127), - [sym_ocamlyacc_value] = ACTIONS(3129), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3127), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3129), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3127), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3129), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3129), - [aux_sym_number_token1] = ACTIONS(3129), - [anon_sym_SQUOTE] = ACTIONS(3129), - [anon_sym_DQUOTE] = ACTIONS(3129), - [sym_prefix_operator] = ACTIONS(3129), - [anon_sym_PLUS_DOT] = ACTIONS(3127), - [anon_sym_DASH_DOT] = ACTIONS(3127), - [sym_hash_operator] = ACTIONS(3129), - [aux_sym__pow_operator_token1] = ACTIONS(3129), - [anon_sym_lsl] = ACTIONS(3127), - [anon_sym_lsr] = ACTIONS(3127), - [anon_sym_asr] = ACTIONS(3127), - [aux_sym__mult_operator_token1] = ACTIONS(3127), - [anon_sym_mod] = ACTIONS(3127), - [anon_sym_land] = ACTIONS(3127), - [anon_sym_lor] = ACTIONS(3127), - [anon_sym_lxor] = ACTIONS(3127), - [aux_sym__add_operator_token1] = ACTIONS(3127), - [sym__concat_operator] = ACTIONS(3129), - [sym__rel_operator] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [sym_let_operator] = ACTIONS(3129), - [sym__capitalized_identifier] = ACTIONS(3129), - [aux_sym_directive_token1] = ACTIONS(3127), - [aux_sym_tag_token1] = ACTIONS(3129), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1758] = { - [sym_attribute] = STATE(1758), - [sym__identifier] = ACTIONS(3433), - [anon_sym_SEMI_SEMI] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_external] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_RBRACK] = ACTIONS(3435), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_exception] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_include] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_end] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym_let_operator] = ACTIONS(3435), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_directive_token1] = ACTIONS(3433), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1759] = { - [sym_attribute] = STATE(1759), - [sym__identifier] = ACTIONS(3577), - [anon_sym_COLON_GT] = ACTIONS(3579), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3664), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_RPAREN] = ACTIONS(3579), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_COLON2] = ACTIONS(3577), - [anon_sym_DASH_GT] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3579), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym_constraint] = ACTIONS(3577), - [anon_sym_val] = ACTIONS(3577), - [anon_sym_end] = ACTIONS(3577), - [anon_sym_with] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_inherit] = ACTIONS(3577), - [anon_sym_method] = ACTIONS(3577), - [anon_sym_initializer] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_then] = ACTIONS(3577), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_GT_RBRACE] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1760] = { - [sym_attribute] = STATE(1760), - [sym__identifier] = ACTIONS(3305), - [anon_sym_SEMI_SEMI] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_external] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_RBRACK] = ACTIONS(3307), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_exception] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_include] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_end] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym_let_operator] = ACTIONS(3307), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_directive_token1] = ACTIONS(3305), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1761] = { - [sym_attribute] = STATE(1761), - [sym__identifier] = ACTIONS(3405), - [anon_sym_SEMI_SEMI] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_external] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_RBRACK] = ACTIONS(3407), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_exception] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_include] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_end] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym_let_operator] = ACTIONS(3407), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_directive_token1] = ACTIONS(3405), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1762] = { - [sym_attribute] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(3135), - [sym__identifier] = ACTIONS(3133), - [anon_sym_SEMI_SEMI] = ACTIONS(3135), - [anon_sym_let] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_external] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3133), - [anon_sym_true] = ACTIONS(3133), - [anon_sym_false] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3135), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_exception] = ACTIONS(3133), - [anon_sym_module] = ACTIONS(3133), - [anon_sym_open] = ACTIONS(3133), - [anon_sym_include] = ACTIONS(3133), - [anon_sym_class] = ACTIONS(3133), - [anon_sym_object] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_COLON_COLON] = ACTIONS(3135), - [anon_sym_LBRACK_PIPE] = ACTIONS(3135), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_else] = ACTIONS(3133), - [anon_sym_new] = ACTIONS(3133), - [anon_sym_LBRACE_LT] = ACTIONS(3135), - [anon_sym_begin] = ACTIONS(3133), - [sym_ocamlyacc_value] = ACTIONS(3135), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3133), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3135), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3133), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3135), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3135), - [aux_sym_number_token1] = ACTIONS(3135), - [anon_sym_SQUOTE] = ACTIONS(3135), - [anon_sym_DQUOTE] = ACTIONS(3135), - [sym_prefix_operator] = ACTIONS(3135), - [anon_sym_PLUS_DOT] = ACTIONS(3133), - [anon_sym_DASH_DOT] = ACTIONS(3133), - [sym_hash_operator] = ACTIONS(3135), - [aux_sym__pow_operator_token1] = ACTIONS(3135), - [anon_sym_lsl] = ACTIONS(3133), - [anon_sym_lsr] = ACTIONS(3133), - [anon_sym_asr] = ACTIONS(3133), - [aux_sym__mult_operator_token1] = ACTIONS(3133), - [anon_sym_mod] = ACTIONS(3133), - [anon_sym_land] = ACTIONS(3133), - [anon_sym_lor] = ACTIONS(3133), - [anon_sym_lxor] = ACTIONS(3133), - [aux_sym__add_operator_token1] = ACTIONS(3133), - [sym__concat_operator] = ACTIONS(3135), - [sym__rel_operator] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [sym_let_operator] = ACTIONS(3135), - [sym__capitalized_identifier] = ACTIONS(3135), - [aux_sym_directive_token1] = ACTIONS(3133), - [aux_sym_tag_token1] = ACTIONS(3135), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1763] = { - [sym_attribute] = STATE(1763), - [sym__identifier] = ACTIONS(3453), - [anon_sym_SEMI_SEMI] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_external] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_RBRACK] = ACTIONS(3455), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_exception] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_include] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_end] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym_let_operator] = ACTIONS(3455), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_directive_token1] = ACTIONS(3453), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1764] = { - [sym_attribute] = STATE(1764), - [sym__identifier] = ACTIONS(3397), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_external] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_RBRACK] = ACTIONS(3399), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_exception] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_include] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_end] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym_let_operator] = ACTIONS(3399), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_directive_token1] = ACTIONS(3397), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1765] = { - [sym_attribute] = STATE(1765), - [sym__identifier] = ACTIONS(3461), - [anon_sym_SEMI_SEMI] = ACTIONS(3463), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_external] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_RBRACK] = ACTIONS(3463), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_exception] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_include] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_end] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym_let_operator] = ACTIONS(3463), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_directive_token1] = ACTIONS(3461), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1766] = { - [sym_attribute] = STATE(1766), - [ts_builtin_sym_end] = ACTIONS(3139), - [sym__identifier] = ACTIONS(3137), - [anon_sym_SEMI_SEMI] = ACTIONS(3139), - [anon_sym_let] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_external] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3137), - [anon_sym_true] = ACTIONS(3137), - [anon_sym_false] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_exception] = ACTIONS(3137), - [anon_sym_module] = ACTIONS(3137), - [anon_sym_open] = ACTIONS(3137), - [anon_sym_include] = ACTIONS(3137), - [anon_sym_class] = ACTIONS(3137), - [anon_sym_object] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_COLON_COLON] = ACTIONS(3139), - [anon_sym_LBRACK_PIPE] = ACTIONS(3139), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_else] = ACTIONS(3137), - [anon_sym_new] = ACTIONS(3137), - [anon_sym_LBRACE_LT] = ACTIONS(3139), - [anon_sym_begin] = ACTIONS(3137), - [sym_ocamlyacc_value] = ACTIONS(3139), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3137), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3139), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3137), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3139), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3139), - [aux_sym_number_token1] = ACTIONS(3139), - [anon_sym_SQUOTE] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(3139), - [sym_prefix_operator] = ACTIONS(3139), - [anon_sym_PLUS_DOT] = ACTIONS(3137), - [anon_sym_DASH_DOT] = ACTIONS(3137), - [sym_hash_operator] = ACTIONS(3139), - [aux_sym__pow_operator_token1] = ACTIONS(3139), - [anon_sym_lsl] = ACTIONS(3137), - [anon_sym_lsr] = ACTIONS(3137), - [anon_sym_asr] = ACTIONS(3137), - [aux_sym__mult_operator_token1] = ACTIONS(3137), - [anon_sym_mod] = ACTIONS(3137), - [anon_sym_land] = ACTIONS(3137), - [anon_sym_lor] = ACTIONS(3137), - [anon_sym_lxor] = ACTIONS(3137), - [aux_sym__add_operator_token1] = ACTIONS(3137), - [sym__concat_operator] = ACTIONS(3139), - [sym__rel_operator] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [sym_let_operator] = ACTIONS(3139), - [sym__capitalized_identifier] = ACTIONS(3139), - [aux_sym_directive_token1] = ACTIONS(3137), - [aux_sym_tag_token1] = ACTIONS(3139), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1767] = { - [sym_attribute] = STATE(1767), - [ts_builtin_sym_end] = ACTIONS(3143), - [sym__identifier] = ACTIONS(3141), - [anon_sym_SEMI_SEMI] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_external] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3141), - [anon_sym_true] = ACTIONS(3141), - [anon_sym_false] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_exception] = ACTIONS(3141), - [anon_sym_module] = ACTIONS(3141), - [anon_sym_open] = ACTIONS(3141), - [anon_sym_include] = ACTIONS(3141), - [anon_sym_class] = ACTIONS(3141), - [anon_sym_object] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_COLON_COLON] = ACTIONS(3143), - [anon_sym_LBRACK_PIPE] = ACTIONS(3143), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_else] = ACTIONS(3141), - [anon_sym_new] = ACTIONS(3141), - [anon_sym_LBRACE_LT] = ACTIONS(3143), - [anon_sym_begin] = ACTIONS(3141), - [sym_ocamlyacc_value] = ACTIONS(3143), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3141), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3143), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3141), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3143), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3143), - [aux_sym_number_token1] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [sym_prefix_operator] = ACTIONS(3143), - [anon_sym_PLUS_DOT] = ACTIONS(3141), - [anon_sym_DASH_DOT] = ACTIONS(3141), - [sym_hash_operator] = ACTIONS(3143), - [aux_sym__pow_operator_token1] = ACTIONS(3143), - [anon_sym_lsl] = ACTIONS(3141), - [anon_sym_lsr] = ACTIONS(3141), - [anon_sym_asr] = ACTIONS(3141), - [aux_sym__mult_operator_token1] = ACTIONS(3141), - [anon_sym_mod] = ACTIONS(3141), - [anon_sym_land] = ACTIONS(3141), - [anon_sym_lor] = ACTIONS(3141), - [anon_sym_lxor] = ACTIONS(3141), - [aux_sym__add_operator_token1] = ACTIONS(3141), - [sym__concat_operator] = ACTIONS(3143), - [sym__rel_operator] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [sym_let_operator] = ACTIONS(3143), - [sym__capitalized_identifier] = ACTIONS(3143), - [aux_sym_directive_token1] = ACTIONS(3141), - [aux_sym_tag_token1] = ACTIONS(3143), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1768] = { - [sym_attribute] = STATE(1768), - [sym__identifier] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_external] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_RBRACK] = ACTIONS(3403), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_exception] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_include] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_end] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym_let_operator] = ACTIONS(3403), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_directive_token1] = ACTIONS(3401), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1769] = { - [sym_attribute] = STATE(1769), - [sym__identifier] = ACTIONS(3465), - [anon_sym_SEMI_SEMI] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_external] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_RBRACK] = ACTIONS(3467), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_exception] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_include] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_end] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym_let_operator] = ACTIONS(3467), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_directive_token1] = ACTIONS(3465), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1770] = { - [sym_attribute] = STATE(1770), - [sym__identifier] = ACTIONS(3425), - [anon_sym_SEMI_SEMI] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_external] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_RBRACK] = ACTIONS(3427), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_exception] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_include] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_end] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym_let_operator] = ACTIONS(3427), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_directive_token1] = ACTIONS(3425), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1771] = { - [sym_attribute] = STATE(1771), - [ts_builtin_sym_end] = ACTIONS(3147), - [sym__identifier] = ACTIONS(3145), - [anon_sym_SEMI_SEMI] = ACTIONS(3147), - [anon_sym_let] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_external] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3145), - [anon_sym_true] = ACTIONS(3145), - [anon_sym_false] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3147), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_exception] = ACTIONS(3145), - [anon_sym_module] = ACTIONS(3145), - [anon_sym_open] = ACTIONS(3145), - [anon_sym_include] = ACTIONS(3145), - [anon_sym_class] = ACTIONS(3145), - [anon_sym_object] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_COLON_COLON] = ACTIONS(3147), - [anon_sym_LBRACK_PIPE] = ACTIONS(3147), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_else] = ACTIONS(3145), - [anon_sym_new] = ACTIONS(3145), - [anon_sym_LBRACE_LT] = ACTIONS(3147), - [anon_sym_begin] = ACTIONS(3145), - [sym_ocamlyacc_value] = ACTIONS(3147), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3145), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3147), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3145), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3147), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3147), - [aux_sym_number_token1] = ACTIONS(3147), - [anon_sym_SQUOTE] = ACTIONS(3147), - [anon_sym_DQUOTE] = ACTIONS(3147), - [sym_prefix_operator] = ACTIONS(3147), - [anon_sym_PLUS_DOT] = ACTIONS(3145), - [anon_sym_DASH_DOT] = ACTIONS(3145), - [sym_hash_operator] = ACTIONS(3147), - [aux_sym__pow_operator_token1] = ACTIONS(3147), - [anon_sym_lsl] = ACTIONS(3145), - [anon_sym_lsr] = ACTIONS(3145), - [anon_sym_asr] = ACTIONS(3145), - [aux_sym__mult_operator_token1] = ACTIONS(3145), - [anon_sym_mod] = ACTIONS(3145), - [anon_sym_land] = ACTIONS(3145), - [anon_sym_lor] = ACTIONS(3145), - [anon_sym_lxor] = ACTIONS(3145), - [aux_sym__add_operator_token1] = ACTIONS(3145), - [sym__concat_operator] = ACTIONS(3147), - [sym__rel_operator] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [sym_let_operator] = ACTIONS(3147), - [sym__capitalized_identifier] = ACTIONS(3147), - [aux_sym_directive_token1] = ACTIONS(3145), - [aux_sym_tag_token1] = ACTIONS(3147), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1772] = { - [sym_attribute] = STATE(1772), - [sym__identifier] = ACTIONS(3361), - [anon_sym_SEMI_SEMI] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_external] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_RBRACK] = ACTIONS(3363), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_exception] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_include] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_end] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym_let_operator] = ACTIONS(3363), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_directive_token1] = ACTIONS(3361), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1773] = { - [sym_attribute] = STATE(1773), - [sym__identifier] = ACTIONS(3417), - [anon_sym_SEMI_SEMI] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_external] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_RBRACK] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_exception] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_include] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_end] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym_let_operator] = ACTIONS(3419), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_directive_token1] = ACTIONS(3417), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1774] = { - [sym_attribute] = STATE(1774), - [sym__identifier] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_external] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_RBRACK] = ACTIONS(3355), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_exception] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_include] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_end] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym_let_operator] = ACTIONS(3355), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_directive_token1] = ACTIONS(3353), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1775] = { - [sym_attribute] = STATE(1775), - [sym__identifier] = ACTIONS(3652), - [anon_sym_COLON_GT] = ACTIONS(3654), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_RPAREN] = ACTIONS(3654), - [anon_sym_COMMA] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_COLON_EQ] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_COLON2] = ACTIONS(3652), - [anon_sym_DASH_GT] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3654), - [anon_sym_RBRACE] = ACTIONS(3654), - [anon_sym_constraint] = ACTIONS(3652), - [anon_sym_val] = ACTIONS(3652), - [anon_sym_end] = ACTIONS(3652), - [anon_sym_with] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_inherit] = ACTIONS(3652), - [anon_sym_method] = ACTIONS(3652), - [anon_sym_initializer] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_PIPE] = ACTIONS(3654), - [anon_sym_then] = ACTIONS(3652), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_do] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_LBRACE_LT] = ACTIONS(3654), - [anon_sym_GT_RBRACE] = ACTIONS(3654), - [anon_sym_begin] = ACTIONS(3652), - [sym_ocamlyacc_value] = ACTIONS(3654), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3652), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3654), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3654), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3654), - [aux_sym_number_token1] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_prefix_operator] = ACTIONS(3654), - [anon_sym_PLUS_DOT] = ACTIONS(3652), - [anon_sym_DASH_DOT] = ACTIONS(3652), - [aux_sym__pow_operator_token1] = ACTIONS(3654), - [anon_sym_lsl] = ACTIONS(3652), - [anon_sym_lsr] = ACTIONS(3652), - [anon_sym_asr] = ACTIONS(3652), - [aux_sym__mult_operator_token1] = ACTIONS(3652), - [anon_sym_mod] = ACTIONS(3652), - [anon_sym_land] = ACTIONS(3652), - [anon_sym_lor] = ACTIONS(3652), - [anon_sym_lxor] = ACTIONS(3652), - [aux_sym__add_operator_token1] = ACTIONS(3652), - [sym__concat_operator] = ACTIONS(3654), - [sym__rel_operator] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [sym__capitalized_identifier] = ACTIONS(3654), - [aux_sym_tag_token1] = ACTIONS(3654), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1776] = { - [sym_attribute] = STATE(1776), - [sym__identifier] = ACTIONS(3505), - [anon_sym_SEMI_SEMI] = ACTIONS(3507), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_external] = ACTIONS(3505), - [anon_sym_type] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_RBRACK] = ACTIONS(3507), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_include] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_end] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym_let_operator] = ACTIONS(3507), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_directive_token1] = ACTIONS(3505), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1777] = { - [sym_attribute] = STATE(1777), - [sym__identifier] = ACTIONS(3385), - [anon_sym_SEMI_SEMI] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_external] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_RBRACK] = ACTIONS(3387), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_exception] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_include] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_end] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym_let_operator] = ACTIONS(3387), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_directive_token1] = ACTIONS(3385), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1778] = { - [sym_attribute] = STATE(1778), - [sym__identifier] = ACTIONS(3489), - [anon_sym_SEMI_SEMI] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_external] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_RBRACK] = ACTIONS(3491), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_exception] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_include] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_end] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym_let_operator] = ACTIONS(3491), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_directive_token1] = ACTIONS(3489), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1779] = { - [sym_attribute] = STATE(1779), - [sym__identifier] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_external] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_RBRACK] = ACTIONS(3327), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_exception] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_include] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_end] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym_let_operator] = ACTIONS(3327), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_directive_token1] = ACTIONS(3325), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1780] = { - [sym_attribute] = STATE(1780), - [sym__identifier] = ACTIONS(3469), - [anon_sym_SEMI_SEMI] = ACTIONS(3471), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_external] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_RBRACK] = ACTIONS(3471), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_exception] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_include] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_end] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym_let_operator] = ACTIONS(3471), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_directive_token1] = ACTIONS(3469), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1781] = { - [sym_attribute] = STATE(1781), - [sym__identifier] = ACTIONS(3477), - [anon_sym_SEMI_SEMI] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_external] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_RBRACK] = ACTIONS(3479), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_exception] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_include] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_end] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym_let_operator] = ACTIONS(3479), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_directive_token1] = ACTIONS(3477), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1782] = { - [sym_attribute] = STATE(1782), - [sym__identifier] = ACTIONS(3481), - [anon_sym_SEMI_SEMI] = ACTIONS(3483), - [anon_sym_let] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_external] = ACTIONS(3481), - [anon_sym_type] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_RBRACK] = ACTIONS(3483), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_exception] = ACTIONS(3481), - [anon_sym_module] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_include] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_end] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym_let_operator] = ACTIONS(3483), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_directive_token1] = ACTIONS(3481), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1783] = { - [sym_attribute] = STATE(1783), - [sym__identifier] = ACTIONS(3437), - [anon_sym_SEMI_SEMI] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_external] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_RBRACK] = ACTIONS(3439), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_exception] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_include] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_end] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym_let_operator] = ACTIONS(3439), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_directive_token1] = ACTIONS(3437), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1784] = { - [sym_attribute] = STATE(1784), - [sym__identifier] = ACTIONS(3493), - [anon_sym_SEMI_SEMI] = ACTIONS(3495), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_external] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_RBRACK] = ACTIONS(3495), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_exception] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_include] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_end] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym_let_operator] = ACTIONS(3495), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_directive_token1] = ACTIONS(3493), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1785] = { - [sym_attribute] = STATE(1785), - [sym__identifier] = ACTIONS(3357), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_external] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_RBRACK] = ACTIONS(3359), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_exception] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_include] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_end] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym_let_operator] = ACTIONS(3359), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_directive_token1] = ACTIONS(3357), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1786] = { - [sym_attribute] = STATE(1786), - [sym__identifier] = ACTIONS(3345), - [anon_sym_SEMI_SEMI] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_external] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_RBRACK] = ACTIONS(3347), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_exception] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_include] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_end] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym_let_operator] = ACTIONS(3347), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_directive_token1] = ACTIONS(3345), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1787] = { - [sym_attribute] = STATE(1787), - [sym__identifier] = ACTIONS(3337), - [anon_sym_SEMI_SEMI] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_external] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_RBRACK] = ACTIONS(3339), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_exception] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_include] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_end] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym_let_operator] = ACTIONS(3339), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_directive_token1] = ACTIONS(3337), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1788] = { - [sym_attribute] = STATE(1788), - [sym__identifier] = ACTIONS(3473), - [anon_sym_SEMI_SEMI] = ACTIONS(3475), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_external] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_RBRACK] = ACTIONS(3475), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_exception] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_include] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_end] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym_let_operator] = ACTIONS(3475), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_directive_token1] = ACTIONS(3473), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1789] = { - [sym_attribute] = STATE(1789), - [sym__identifier] = ACTIONS(3449), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_external] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_RBRACK] = ACTIONS(3451), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_exception] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_include] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_end] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym_let_operator] = ACTIONS(3451), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_directive_token1] = ACTIONS(3449), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1790] = { - [sym_attribute] = STATE(1790), - [sym__identifier] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_external] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_RBRACK] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_exception] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_include] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_end] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_let_operator] = ACTIONS(3351), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_directive_token1] = ACTIONS(3349), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1791] = { - [sym_attribute] = STATE(1791), - [sym__identifier] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_external] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_RBRACK] = ACTIONS(3383), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_exception] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_include] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_end] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_let_operator] = ACTIONS(3383), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_directive_token1] = ACTIONS(3381), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1792] = { - [sym_attribute] = STATE(1792), - [sym__identifier] = ACTIONS(3333), - [anon_sym_SEMI_SEMI] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_external] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_RBRACK] = ACTIONS(3335), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_exception] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_include] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_end] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym_let_operator] = ACTIONS(3335), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_directive_token1] = ACTIONS(3333), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1793] = { - [sym_attribute] = STATE(1793), - [ts_builtin_sym_end] = ACTIONS(3151), - [sym__identifier] = ACTIONS(3149), - [anon_sym_SEMI_SEMI] = ACTIONS(3151), - [anon_sym_let] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_external] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3149), - [anon_sym_true] = ACTIONS(3149), - [anon_sym_false] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3151), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_exception] = ACTIONS(3149), - [anon_sym_module] = ACTIONS(3149), - [anon_sym_open] = ACTIONS(3149), - [anon_sym_include] = ACTIONS(3149), - [anon_sym_class] = ACTIONS(3149), - [anon_sym_object] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_COLON_COLON] = ACTIONS(3151), - [anon_sym_LBRACK_PIPE] = ACTIONS(3151), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_else] = ACTIONS(3149), - [anon_sym_new] = ACTIONS(3149), - [anon_sym_LBRACE_LT] = ACTIONS(3151), - [anon_sym_begin] = ACTIONS(3149), - [sym_ocamlyacc_value] = ACTIONS(3151), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3149), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3151), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3149), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3151), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3151), - [aux_sym_number_token1] = ACTIONS(3151), - [anon_sym_SQUOTE] = ACTIONS(3151), - [anon_sym_DQUOTE] = ACTIONS(3151), - [sym_prefix_operator] = ACTIONS(3151), - [anon_sym_PLUS_DOT] = ACTIONS(3149), - [anon_sym_DASH_DOT] = ACTIONS(3149), - [sym_hash_operator] = ACTIONS(3151), - [aux_sym__pow_operator_token1] = ACTIONS(3151), - [anon_sym_lsl] = ACTIONS(3149), - [anon_sym_lsr] = ACTIONS(3149), - [anon_sym_asr] = ACTIONS(3149), - [aux_sym__mult_operator_token1] = ACTIONS(3149), - [anon_sym_mod] = ACTIONS(3149), - [anon_sym_land] = ACTIONS(3149), - [anon_sym_lor] = ACTIONS(3149), - [anon_sym_lxor] = ACTIONS(3149), - [aux_sym__add_operator_token1] = ACTIONS(3149), - [sym__concat_operator] = ACTIONS(3151), - [sym__rel_operator] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [sym_let_operator] = ACTIONS(3151), - [sym__capitalized_identifier] = ACTIONS(3151), - [aux_sym_directive_token1] = ACTIONS(3149), - [aux_sym_tag_token1] = ACTIONS(3151), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1794] = { - [sym_attribute] = STATE(1794), - [sym__identifier] = ACTIONS(3321), - [anon_sym_SEMI_SEMI] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_external] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_RBRACK] = ACTIONS(3323), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_exception] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_include] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_end] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym_let_operator] = ACTIONS(3323), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_directive_token1] = ACTIONS(3321), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1795] = { - [sym_attribute] = STATE(1795), - [ts_builtin_sym_end] = ACTIONS(3123), - [sym__identifier] = ACTIONS(3121), - [anon_sym_SEMI_SEMI] = ACTIONS(3123), - [anon_sym_let] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_external] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3121), - [anon_sym_true] = ACTIONS(3121), - [anon_sym_false] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3123), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_exception] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_open] = ACTIONS(3121), - [anon_sym_include] = ACTIONS(3121), - [anon_sym_class] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_COLON_COLON] = ACTIONS(3123), - [anon_sym_LBRACK_PIPE] = ACTIONS(3123), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_else] = ACTIONS(3121), - [anon_sym_new] = ACTIONS(3121), - [anon_sym_LBRACE_LT] = ACTIONS(3123), - [anon_sym_begin] = ACTIONS(3121), - [sym_ocamlyacc_value] = ACTIONS(3123), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3121), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3123), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3121), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3123), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3123), - [aux_sym_number_token1] = ACTIONS(3123), - [anon_sym_SQUOTE] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3123), - [sym_prefix_operator] = ACTIONS(3123), - [anon_sym_PLUS_DOT] = ACTIONS(3121), - [anon_sym_DASH_DOT] = ACTIONS(3121), - [sym_hash_operator] = ACTIONS(3123), - [aux_sym__pow_operator_token1] = ACTIONS(3123), - [anon_sym_lsl] = ACTIONS(3121), - [anon_sym_lsr] = ACTIONS(3121), - [anon_sym_asr] = ACTIONS(3121), - [aux_sym__mult_operator_token1] = ACTIONS(3121), - [anon_sym_mod] = ACTIONS(3121), - [anon_sym_land] = ACTIONS(3121), - [anon_sym_lor] = ACTIONS(3121), - [anon_sym_lxor] = ACTIONS(3121), - [aux_sym__add_operator_token1] = ACTIONS(3121), - [sym__concat_operator] = ACTIONS(3123), - [sym__rel_operator] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [sym_let_operator] = ACTIONS(3123), - [sym__capitalized_identifier] = ACTIONS(3123), - [aux_sym_directive_token1] = ACTIONS(3121), - [aux_sym_tag_token1] = ACTIONS(3123), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1796] = { - [sym_attribute] = STATE(1796), - [sym__identifier] = ACTIONS(3535), - [anon_sym_SEMI_SEMI] = ACTIONS(3537), - [anon_sym_let] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_external] = ACTIONS(3535), - [anon_sym_type] = ACTIONS(3535), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_RBRACK] = ACTIONS(3537), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3535), - [anon_sym_exception] = ACTIONS(3535), - [anon_sym_module] = ACTIONS(3535), - [anon_sym_open] = ACTIONS(3535), - [anon_sym_include] = ACTIONS(3535), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_end] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym_let_operator] = ACTIONS(3537), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_directive_token1] = ACTIONS(3535), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1797] = { - [sym_attribute] = STATE(1797), - [sym__identifier] = ACTIONS(3531), - [anon_sym_SEMI_SEMI] = ACTIONS(3533), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_external] = ACTIONS(3531), - [anon_sym_type] = ACTIONS(3531), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_RBRACK] = ACTIONS(3533), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym_exception] = ACTIONS(3531), - [anon_sym_module] = ACTIONS(3531), - [anon_sym_open] = ACTIONS(3531), - [anon_sym_include] = ACTIONS(3531), - [anon_sym_class] = ACTIONS(3531), - [anon_sym_end] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym_let_operator] = ACTIONS(3533), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_directive_token1] = ACTIONS(3531), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1798] = { - [sym_attribute] = STATE(1798), - [sym__identifier] = ACTIONS(3517), - [anon_sym_SEMI_SEMI] = ACTIONS(3519), - [anon_sym_let] = ACTIONS(3517), - [anon_sym_TILDE] = ACTIONS(3517), - [anon_sym_QMARK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3519), - [anon_sym_external] = ACTIONS(3517), - [anon_sym_type] = ACTIONS(3517), - [anon_sym_COMMA] = ACTIONS(3519), - [anon_sym_PLUS] = ACTIONS(3517), - [anon_sym_DASH] = ACTIONS(3517), - [anon_sym_COLON_EQ] = ACTIONS(3519), - [anon_sym_PIPE] = ACTIONS(3517), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_RBRACK] = ACTIONS(3519), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [anon_sym_DOT] = ACTIONS(3519), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_SEMI] = ACTIONS(3517), - [anon_sym_exception] = ACTIONS(3517), - [anon_sym_module] = ACTIONS(3517), - [anon_sym_open] = ACTIONS(3517), - [anon_sym_include] = ACTIONS(3517), - [anon_sym_class] = ACTIONS(3517), - [anon_sym_end] = ACTIONS(3517), - [anon_sym_object] = ACTIONS(3517), - [anon_sym_AMP] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3517), - [anon_sym_COLON_COLON] = ACTIONS(3519), - [anon_sym_LBRACK_PIPE] = ACTIONS(3519), - [anon_sym_else] = ACTIONS(3517), - [anon_sym_new] = ACTIONS(3517), - [anon_sym_LBRACE_LT] = ACTIONS(3519), - [anon_sym_begin] = ACTIONS(3517), - [sym_ocamlyacc_value] = ACTIONS(3519), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3517), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3519), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3517), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3519), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3519), - [aux_sym_number_token1] = ACTIONS(3519), - [anon_sym_SQUOTE] = ACTIONS(3519), - [anon_sym_DQUOTE] = ACTIONS(3519), - [sym_prefix_operator] = ACTIONS(3519), - [anon_sym_PLUS_DOT] = ACTIONS(3517), - [anon_sym_DASH_DOT] = ACTIONS(3517), - [sym_hash_operator] = ACTIONS(3519), - [aux_sym__pow_operator_token1] = ACTIONS(3519), - [anon_sym_lsl] = ACTIONS(3517), - [anon_sym_lsr] = ACTIONS(3517), - [anon_sym_asr] = ACTIONS(3517), - [aux_sym__mult_operator_token1] = ACTIONS(3517), - [anon_sym_mod] = ACTIONS(3517), - [anon_sym_land] = ACTIONS(3517), - [anon_sym_lor] = ACTIONS(3517), - [anon_sym_lxor] = ACTIONS(3517), - [aux_sym__add_operator_token1] = ACTIONS(3517), - [sym__concat_operator] = ACTIONS(3519), - [sym__rel_operator] = ACTIONS(3517), - [anon_sym_AMP_AMP] = ACTIONS(3517), - [anon_sym_or] = ACTIONS(3517), - [anon_sym_PIPE_PIPE] = ACTIONS(3517), - [sym_let_operator] = ACTIONS(3519), - [sym__capitalized_identifier] = ACTIONS(3519), - [aux_sym_directive_token1] = ACTIONS(3517), - [aux_sym_tag_token1] = ACTIONS(3519), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1799] = { - [sym_attribute] = STATE(1799), - [sym__identifier] = ACTIONS(3497), - [anon_sym_SEMI_SEMI] = ACTIONS(3499), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_external] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_RBRACK] = ACTIONS(3499), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_exception] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_include] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_end] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym_let_operator] = ACTIONS(3499), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_directive_token1] = ACTIONS(3497), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1800] = { - [sym_attribute] = STATE(1800), - [sym__identifier] = ACTIONS(3501), - [anon_sym_SEMI_SEMI] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_external] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_RBRACK] = ACTIONS(3503), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_exception] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_include] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_end] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym_let_operator] = ACTIONS(3503), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_directive_token1] = ACTIONS(3501), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1801] = { - [sym_attribute] = STATE(1801), - [sym__identifier] = ACTIONS(3485), - [anon_sym_SEMI_SEMI] = ACTIONS(3487), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_external] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_RBRACK] = ACTIONS(3487), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_exception] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_include] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_end] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym_let_operator] = ACTIONS(3487), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_directive_token1] = ACTIONS(3485), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1802] = { - [sym_attribute] = STATE(1802), - [sym__identifier] = ACTIONS(3509), - [anon_sym_SEMI_SEMI] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_external] = ACTIONS(3509), - [anon_sym_type] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_RBRACK] = ACTIONS(3511), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_exception] = ACTIONS(3509), - [anon_sym_module] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_include] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_end] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym_let_operator] = ACTIONS(3511), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_directive_token1] = ACTIONS(3509), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1803] = { - [sym_attribute] = STATE(1803), - [sym__identifier] = ACTIONS(3389), - [anon_sym_SEMI_SEMI] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_external] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_RBRACK] = ACTIONS(3391), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_exception] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_include] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_end] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym_let_operator] = ACTIONS(3391), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_directive_token1] = ACTIONS(3389), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1804] = { - [sym_attribute] = STATE(1804), - [ts_builtin_sym_end] = ACTIONS(3119), - [sym__identifier] = ACTIONS(3117), - [anon_sym_SEMI_SEMI] = ACTIONS(3119), - [anon_sym_let] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_external] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3117), - [anon_sym_true] = ACTIONS(3117), - [anon_sym_false] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3119), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_exception] = ACTIONS(3117), - [anon_sym_module] = ACTIONS(3117), - [anon_sym_open] = ACTIONS(3117), - [anon_sym_include] = ACTIONS(3117), - [anon_sym_class] = ACTIONS(3117), - [anon_sym_object] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_COLON_COLON] = ACTIONS(3119), - [anon_sym_LBRACK_PIPE] = ACTIONS(3119), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_else] = ACTIONS(3117), - [anon_sym_new] = ACTIONS(3117), - [anon_sym_LBRACE_LT] = ACTIONS(3119), - [anon_sym_begin] = ACTIONS(3117), - [sym_ocamlyacc_value] = ACTIONS(3119), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3117), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3119), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3117), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3119), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3119), - [aux_sym_number_token1] = ACTIONS(3119), - [anon_sym_SQUOTE] = ACTIONS(3119), - [anon_sym_DQUOTE] = ACTIONS(3119), - [sym_prefix_operator] = ACTIONS(3119), - [anon_sym_PLUS_DOT] = ACTIONS(3117), - [anon_sym_DASH_DOT] = ACTIONS(3117), - [sym_hash_operator] = ACTIONS(3119), - [aux_sym__pow_operator_token1] = ACTIONS(3119), - [anon_sym_lsl] = ACTIONS(3117), - [anon_sym_lsr] = ACTIONS(3117), - [anon_sym_asr] = ACTIONS(3117), - [aux_sym__mult_operator_token1] = ACTIONS(3117), - [anon_sym_mod] = ACTIONS(3117), - [anon_sym_land] = ACTIONS(3117), - [anon_sym_lor] = ACTIONS(3117), - [anon_sym_lxor] = ACTIONS(3117), - [aux_sym__add_operator_token1] = ACTIONS(3117), - [sym__concat_operator] = ACTIONS(3119), - [sym__rel_operator] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [sym_let_operator] = ACTIONS(3119), - [sym__capitalized_identifier] = ACTIONS(3119), - [aux_sym_directive_token1] = ACTIONS(3117), - [aux_sym_tag_token1] = ACTIONS(3119), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1805] = { - [sym_attribute] = STATE(1805), - [sym__identifier] = ACTIONS(3369), - [anon_sym_SEMI_SEMI] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_external] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_RBRACK] = ACTIONS(3371), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_exception] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_include] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_end] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym_let_operator] = ACTIONS(3371), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_directive_token1] = ACTIONS(3369), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1806] = { - [sym_attribute] = STATE(1806), - [sym__identifier] = ACTIONS(3561), - [anon_sym_SEMI_SEMI] = ACTIONS(3563), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_external] = ACTIONS(3561), - [anon_sym_type] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_RBRACK] = ACTIONS(3563), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_exception] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_include] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_end] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym_let_operator] = ACTIONS(3563), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_directive_token1] = ACTIONS(3561), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1807] = { - [sym_attribute] = STATE(1807), - [sym__identifier] = ACTIONS(3413), - [anon_sym_SEMI_SEMI] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_external] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_RBRACK] = ACTIONS(3415), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_exception] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_include] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_end] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym_let_operator] = ACTIONS(3415), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_directive_token1] = ACTIONS(3413), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1808] = { - [sym_attribute] = STATE(1808), - [sym__identifier] = ACTIONS(3441), - [anon_sym_COLON_GT] = ACTIONS(3443), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_RPAREN] = ACTIONS(3443), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_COLON2] = ACTIONS(3441), - [anon_sym_DASH_GT] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3443), - [anon_sym_RBRACE] = ACTIONS(3443), - [anon_sym_constraint] = ACTIONS(3441), - [anon_sym_val] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_inherit] = ACTIONS(3441), - [anon_sym_method] = ACTIONS(3441), - [anon_sym_initializer] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_then] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_GT_RBRACE] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1809] = { - [sym_attribute] = STATE(1809), - [sym__identifier] = ACTIONS(3313), - [anon_sym_SEMI_SEMI] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_external] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_RBRACK] = ACTIONS(3315), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_exception] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_open] = ACTIONS(3313), - [anon_sym_include] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_end] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym_let_operator] = ACTIONS(3315), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_directive_token1] = ACTIONS(3313), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1810] = { - [sym_attribute] = STATE(1810), - [sym__identifier] = ACTIONS(3309), - [anon_sym_SEMI_SEMI] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_external] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_RBRACK] = ACTIONS(3311), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_exception] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_open] = ACTIONS(3309), - [anon_sym_include] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_end] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym_let_operator] = ACTIONS(3311), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_directive_token1] = ACTIONS(3309), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1811] = { - [sym_attribute] = STATE(1811), - [sym__identifier] = ACTIONS(3557), - [anon_sym_SEMI_SEMI] = ACTIONS(3559), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_external] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_RBRACK] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_exception] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_include] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_end] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym_let_operator] = ACTIONS(3559), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_directive_token1] = ACTIONS(3557), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1812] = { - [sym_attribute] = STATE(1812), - [sym__identifier] = ACTIONS(3193), - [anon_sym_SEMI_SEMI] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_external] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_exception] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_include] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_end] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym_let_operator] = ACTIONS(3195), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_directive_token1] = ACTIONS(3193), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1813] = { - [sym_attribute] = STATE(1813), - [sym__identifier] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3527), - [anon_sym_let] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_external] = ACTIONS(3525), - [anon_sym_type] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_RBRACK] = ACTIONS(3527), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_exception] = ACTIONS(3525), - [anon_sym_module] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_include] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_end] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym_let_operator] = ACTIONS(3527), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_directive_token1] = ACTIONS(3525), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1814] = { - [sym_attribute] = STATE(1814), - [ts_builtin_sym_end] = ACTIONS(3071), - [sym__identifier] = ACTIONS(3069), - [anon_sym_SEMI_SEMI] = ACTIONS(3071), - [anon_sym_let] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_external] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3069), - [anon_sym_true] = ACTIONS(3069), - [anon_sym_false] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3071), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_exception] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_open] = ACTIONS(3069), - [anon_sym_include] = ACTIONS(3069), - [anon_sym_class] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_COLON_COLON] = ACTIONS(3071), - [anon_sym_LBRACK_PIPE] = ACTIONS(3071), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_else] = ACTIONS(3069), - [anon_sym_new] = ACTIONS(3069), - [anon_sym_LBRACE_LT] = ACTIONS(3071), - [anon_sym_begin] = ACTIONS(3069), - [sym_ocamlyacc_value] = ACTIONS(3071), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3069), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3071), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3069), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3071), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3071), - [aux_sym_number_token1] = ACTIONS(3071), - [anon_sym_SQUOTE] = ACTIONS(3071), - [anon_sym_DQUOTE] = ACTIONS(3071), - [sym_prefix_operator] = ACTIONS(3071), - [anon_sym_PLUS_DOT] = ACTIONS(3069), - [anon_sym_DASH_DOT] = ACTIONS(3069), - [sym_hash_operator] = ACTIONS(3071), - [aux_sym__pow_operator_token1] = ACTIONS(3071), - [anon_sym_lsl] = ACTIONS(3069), - [anon_sym_lsr] = ACTIONS(3069), - [anon_sym_asr] = ACTIONS(3069), - [aux_sym__mult_operator_token1] = ACTIONS(3069), - [anon_sym_mod] = ACTIONS(3069), - [anon_sym_land] = ACTIONS(3069), - [anon_sym_lor] = ACTIONS(3069), - [anon_sym_lxor] = ACTIONS(3069), - [aux_sym__add_operator_token1] = ACTIONS(3069), - [sym__concat_operator] = ACTIONS(3071), - [sym__rel_operator] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [sym_let_operator] = ACTIONS(3071), - [sym__capitalized_identifier] = ACTIONS(3071), - [aux_sym_directive_token1] = ACTIONS(3069), - [aux_sym_tag_token1] = ACTIONS(3071), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1815] = { - [sym_attribute] = STATE(1815), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym__identifier] = ACTIONS(3577), - [anon_sym_SEMI_SEMI] = ACTIONS(3579), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_and] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3666), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_external] = ACTIONS(3577), - [anon_sym_type] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_exception] = ACTIONS(3577), - [anon_sym_module] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_include] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_in] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym_let_operator] = ACTIONS(3579), - [sym_and_operator] = ACTIONS(3579), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_directive_token1] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1816] = { - [sym_attribute] = STATE(1816), - [sym__identifier] = ACTIONS(3429), - [anon_sym_SEMI_SEMI] = ACTIONS(3431), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_QMARK] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3431), - [anon_sym_external] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_COMMA] = ACTIONS(3431), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_COLON_EQ] = ACTIONS(3431), - [anon_sym_PIPE] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_RBRACK] = ACTIONS(3431), - [anon_sym_true] = ACTIONS(3429), - [anon_sym_false] = ACTIONS(3429), - [anon_sym_DOT] = ACTIONS(3431), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_exception] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_open] = ACTIONS(3429), - [anon_sym_include] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_end] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_AMP] = ACTIONS(3429), - [anon_sym_POUND] = ACTIONS(3429), - [anon_sym_COLON_COLON] = ACTIONS(3431), - [anon_sym_LBRACK_PIPE] = ACTIONS(3431), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_LBRACE_LT] = ACTIONS(3431), - [anon_sym_begin] = ACTIONS(3429), - [sym_ocamlyacc_value] = ACTIONS(3431), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3429), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3431), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3429), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3431), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3431), - [aux_sym_number_token1] = ACTIONS(3431), - [anon_sym_SQUOTE] = ACTIONS(3431), - [anon_sym_DQUOTE] = ACTIONS(3431), - [sym_prefix_operator] = ACTIONS(3431), - [anon_sym_PLUS_DOT] = ACTIONS(3429), - [anon_sym_DASH_DOT] = ACTIONS(3429), - [sym_hash_operator] = ACTIONS(3431), - [aux_sym__pow_operator_token1] = ACTIONS(3431), - [anon_sym_lsl] = ACTIONS(3429), - [anon_sym_lsr] = ACTIONS(3429), - [anon_sym_asr] = ACTIONS(3429), - [aux_sym__mult_operator_token1] = ACTIONS(3429), - [anon_sym_mod] = ACTIONS(3429), - [anon_sym_land] = ACTIONS(3429), - [anon_sym_lor] = ACTIONS(3429), - [anon_sym_lxor] = ACTIONS(3429), - [aux_sym__add_operator_token1] = ACTIONS(3429), - [sym__concat_operator] = ACTIONS(3431), - [sym__rel_operator] = ACTIONS(3429), - [anon_sym_AMP_AMP] = ACTIONS(3429), - [anon_sym_or] = ACTIONS(3429), - [anon_sym_PIPE_PIPE] = ACTIONS(3429), - [sym_let_operator] = ACTIONS(3431), - [sym__capitalized_identifier] = ACTIONS(3431), - [aux_sym_directive_token1] = ACTIONS(3429), - [aux_sym_tag_token1] = ACTIONS(3431), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1817] = { - [sym_attribute] = STATE(1817), - [sym__identifier] = ACTIONS(3169), - [anon_sym_SEMI_SEMI] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_external] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_exception] = ACTIONS(3169), - [anon_sym_module] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_end] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym_let_operator] = ACTIONS(3171), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_directive_token1] = ACTIONS(3169), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1818] = { - [sym_attribute] = STATE(1818), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3441), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1819] = { - [sym_attribute] = STATE(1819), - [sym__identifier] = ACTIONS(3317), - [anon_sym_SEMI_SEMI] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_external] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_RBRACK] = ACTIONS(3319), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_exception] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_open] = ACTIONS(3317), - [anon_sym_include] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_end] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym_let_operator] = ACTIONS(3319), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_directive_token1] = ACTIONS(3317), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1820] = { - [sym_attribute] = STATE(1820), - [sym__identifier] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_external] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_RBRACK] = ACTIONS(3447), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_exception] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_include] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_end] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym_let_operator] = ACTIONS(3447), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_directive_token1] = ACTIONS(3445), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1821] = { - [sym_attribute] = STATE(1821), - [sym__identifier] = ACTIONS(3547), - [anon_sym_SEMI_SEMI] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3547), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_external] = ACTIONS(3547), - [anon_sym_type] = ACTIONS(3547), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_RBRACK] = ACTIONS(3549), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_exception] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3547), - [anon_sym_include] = ACTIONS(3547), - [anon_sym_class] = ACTIONS(3547), - [anon_sym_end] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym_let_operator] = ACTIONS(3549), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_directive_token1] = ACTIONS(3547), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1822] = { - [sym_attribute] = STATE(1822), - [sym__identifier] = ACTIONS(3521), - [anon_sym_SEMI_SEMI] = ACTIONS(3523), - [anon_sym_let] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_external] = ACTIONS(3521), - [anon_sym_type] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_RBRACK] = ACTIONS(3523), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_exception] = ACTIONS(3521), - [anon_sym_module] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_include] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_end] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym_let_operator] = ACTIONS(3523), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_directive_token1] = ACTIONS(3521), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1823] = { - [sym_attribute] = STATE(1823), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3668), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1824] = { - [sym_attribute] = STATE(1824), - [sym__identifier] = ACTIONS(3513), - [anon_sym_SEMI_SEMI] = ACTIONS(3515), - [anon_sym_let] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_external] = ACTIONS(3513), - [anon_sym_type] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_RBRACK] = ACTIONS(3515), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_exception] = ACTIONS(3513), - [anon_sym_module] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_include] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_end] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym_let_operator] = ACTIONS(3515), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_directive_token1] = ACTIONS(3513), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1825] = { - [sym_attribute] = STATE(1825), - [sym__identifier] = ACTIONS(3658), - [anon_sym_COLON_GT] = ACTIONS(3660), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_RPAREN] = ACTIONS(3660), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_COLON_EQ] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_true] = ACTIONS(3658), - [anon_sym_false] = ACTIONS(3658), - [anon_sym_COLON2] = ACTIONS(3658), - [anon_sym_DASH_GT] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3660), - [anon_sym_RBRACE] = ACTIONS(3660), - [anon_sym_constraint] = ACTIONS(3658), - [anon_sym_val] = ACTIONS(3658), - [anon_sym_end] = ACTIONS(3658), - [anon_sym_with] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_inherit] = ACTIONS(3658), - [anon_sym_method] = ACTIONS(3658), - [anon_sym_initializer] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_PIPE] = ACTIONS(3660), - [anon_sym_then] = ACTIONS(3658), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_do] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_LBRACE_LT] = ACTIONS(3660), - [anon_sym_GT_RBRACE] = ACTIONS(3660), - [anon_sym_begin] = ACTIONS(3658), - [sym_ocamlyacc_value] = ACTIONS(3660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3660), - [aux_sym_number_token1] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_prefix_operator] = ACTIONS(3660), - [anon_sym_PLUS_DOT] = ACTIONS(3658), - [anon_sym_DASH_DOT] = ACTIONS(3658), - [aux_sym__pow_operator_token1] = ACTIONS(3660), - [anon_sym_lsl] = ACTIONS(3658), - [anon_sym_lsr] = ACTIONS(3658), - [anon_sym_asr] = ACTIONS(3658), - [aux_sym__mult_operator_token1] = ACTIONS(3658), - [anon_sym_mod] = ACTIONS(3658), - [anon_sym_land] = ACTIONS(3658), - [anon_sym_lor] = ACTIONS(3658), - [anon_sym_lxor] = ACTIONS(3658), - [aux_sym__add_operator_token1] = ACTIONS(3658), - [sym__concat_operator] = ACTIONS(3660), - [sym__rel_operator] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [anon_sym_PIPE_PIPE] = ACTIONS(3658), - [sym__capitalized_identifier] = ACTIONS(3660), - [aux_sym_tag_token1] = ACTIONS(3660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1826] = { - [sym_attribute] = STATE(1826), - [sym__identifier] = ACTIONS(3173), - [anon_sym_SEMI_SEMI] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_external] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_exception] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_include] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_end] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym_let_operator] = ACTIONS(3175), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_directive_token1] = ACTIONS(3173), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1827] = { - [sym_attribute] = STATE(1827), - [sym__identifier] = ACTIONS(3457), - [anon_sym_SEMI_SEMI] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_external] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_RBRACK] = ACTIONS(3459), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_exception] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_include] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_end] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym_let_operator] = ACTIONS(3459), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_directive_token1] = ACTIONS(3457), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1828] = { - [sym_attribute] = STATE(1828), - [sym__identifier] = ACTIONS(3539), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_external] = ACTIONS(3539), - [anon_sym_type] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_RBRACK] = ACTIONS(3541), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_exception] = ACTIONS(3539), - [anon_sym_module] = ACTIONS(3539), - [anon_sym_open] = ACTIONS(3539), - [anon_sym_include] = ACTIONS(3539), - [anon_sym_class] = ACTIONS(3539), - [anon_sym_end] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym_let_operator] = ACTIONS(3541), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_directive_token1] = ACTIONS(3539), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1829] = { - [sym_attribute] = STATE(1829), - [sym__identifier] = ACTIONS(3189), - [anon_sym_SEMI_SEMI] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_external] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_exception] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_include] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_end] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_let_operator] = ACTIONS(3191), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_directive_token1] = ACTIONS(3189), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1830] = { - [sym_attribute] = STATE(1830), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1831] = { - [sym_attribute] = STATE(1831), - [sym__identifier] = ACTIONS(3165), - [anon_sym_SEMI_SEMI] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_external] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_end] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym_let_operator] = ACTIONS(3167), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_directive_token1] = ACTIONS(3165), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1832] = { - [sym_attribute] = STATE(1832), - [sym__identifier] = ACTIONS(3177), - [anon_sym_SEMI_SEMI] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_external] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_exception] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_include] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_end] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym_let_operator] = ACTIONS(3179), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_directive_token1] = ACTIONS(3177), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1833] = { - [sym_attribute] = STATE(1833), - [sym__identifier] = ACTIONS(3181), - [anon_sym_SEMI_SEMI] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_external] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_exception] = ACTIONS(3181), - [anon_sym_module] = ACTIONS(3181), - [anon_sym_open] = ACTIONS(3181), - [anon_sym_include] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_end] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym_let_operator] = ACTIONS(3183), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_directive_token1] = ACTIONS(3181), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1834] = { - [sym_attribute] = STATE(1834), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3670), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1835] = { - [sym_attribute] = STATE(1835), - [sym__identifier] = ACTIONS(3161), - [anon_sym_SEMI_SEMI] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_external] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_exception] = ACTIONS(3161), - [anon_sym_module] = ACTIONS(3161), - [anon_sym_open] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_end] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym_let_operator] = ACTIONS(3163), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_directive_token1] = ACTIONS(3161), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1836] = { - [sym_attribute] = STATE(1836), - [sym__identifier] = ACTIONS(3377), - [anon_sym_SEMI_SEMI] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_external] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_RBRACK] = ACTIONS(3379), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_exception] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_include] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_end] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym_let_operator] = ACTIONS(3379), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_directive_token1] = ACTIONS(3377), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1837] = { - [sym_attribute] = STATE(1837), - [sym__identifier] = ACTIONS(3185), - [anon_sym_SEMI_SEMI] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_external] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_exception] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_include] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_end] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym_let_operator] = ACTIONS(3187), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_directive_token1] = ACTIONS(3185), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1838] = { - [sym_attribute] = STATE(1838), - [sym__identifier] = ACTIONS(3341), - [anon_sym_SEMI_SEMI] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_external] = ACTIONS(3341), - [anon_sym_type] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_RBRACK] = ACTIONS(3343), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_exception] = ACTIONS(3341), - [anon_sym_module] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_include] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_end] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym_let_operator] = ACTIONS(3343), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_directive_token1] = ACTIONS(3341), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1839] = { - [sym_attribute] = STATE(1839), - [sym__identifier] = ACTIONS(3329), - [anon_sym_SEMI_SEMI] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_external] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_RBRACK] = ACTIONS(3331), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_exception] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_include] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_end] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym_let_operator] = ACTIONS(3331), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_directive_token1] = ACTIONS(3329), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1840] = { - [sym_attribute] = STATE(1840), - [sym__identifier] = ACTIONS(3409), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_external] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_RBRACK] = ACTIONS(3411), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_exception] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_include] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_end] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym_let_operator] = ACTIONS(3411), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_directive_token1] = ACTIONS(3409), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1841] = { - [sym_attribute] = STATE(1841), - [sym__identifier] = ACTIONS(3421), - [anon_sym_SEMI_SEMI] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_external] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_RBRACK] = ACTIONS(3423), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_exception] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_include] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_end] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym_let_operator] = ACTIONS(3423), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_directive_token1] = ACTIONS(3421), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1842] = { - [sym_attribute] = STATE(1842), - [sym__identifier] = ACTIONS(3365), - [anon_sym_SEMI_SEMI] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_external] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_RBRACK] = ACTIONS(3367), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_exception] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_include] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_end] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym_let_operator] = ACTIONS(3367), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_directive_token1] = ACTIONS(3365), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1843] = { - [sym_attribute] = STATE(1843), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1844] = { - [sym_attribute] = STATE(1844), - [sym__identifier] = ACTIONS(3197), - [anon_sym_SEMI_SEMI] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_external] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_RBRACK] = ACTIONS(3199), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_exception] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_include] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_end] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_let_operator] = ACTIONS(3199), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_directive_token1] = ACTIONS(3197), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1845] = { - [sym_attribute] = STATE(1845), - [sym__identifier] = ACTIONS(3373), - [anon_sym_SEMI_SEMI] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_external] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_RBRACK] = ACTIONS(3375), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1237), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_exception] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_include] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_end] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1239), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1243), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_let_operator] = ACTIONS(3375), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_directive_token1] = ACTIONS(3373), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1846] = { - [sym_attribute] = STATE(1846), - [sym__identifier] = ACTIONS(3543), - [anon_sym_SEMI_SEMI] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_external] = ACTIONS(3543), - [anon_sym_type] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_RBRACK] = ACTIONS(3545), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3543), - [anon_sym_exception] = ACTIONS(3543), - [anon_sym_module] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3543), - [anon_sym_include] = ACTIONS(3543), - [anon_sym_class] = ACTIONS(3543), - [anon_sym_end] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym_let_operator] = ACTIONS(3545), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_directive_token1] = ACTIONS(3543), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1847] = { - [sym_attribute] = STATE(1847), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3441), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1848] = { - [sym_attribute] = STATE(1848), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym__identifier] = ACTIONS(3505), - [anon_sym_SEMI_SEMI] = ACTIONS(3507), - [anon_sym_let] = ACTIONS(3505), - [anon_sym_TILDE] = ACTIONS(3505), - [anon_sym_QMARK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3507), - [anon_sym_external] = ACTIONS(3505), - [anon_sym_type] = ACTIONS(3505), - [anon_sym_COMMA] = ACTIONS(3507), - [anon_sym_PLUS] = ACTIONS(3505), - [anon_sym_DASH] = ACTIONS(3505), - [anon_sym_COLON_EQ] = ACTIONS(3507), - [anon_sym_PIPE] = ACTIONS(3505), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [anon_sym_DOT] = ACTIONS(3507), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_SEMI] = ACTIONS(3505), - [anon_sym_exception] = ACTIONS(3505), - [anon_sym_module] = ACTIONS(3505), - [anon_sym_open] = ACTIONS(3505), - [anon_sym_include] = ACTIONS(3505), - [anon_sym_class] = ACTIONS(3505), - [anon_sym_object] = ACTIONS(3505), - [anon_sym_AMP] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3505), - [anon_sym_COLON_COLON] = ACTIONS(3507), - [anon_sym_LBRACK_PIPE] = ACTIONS(3507), - [anon_sym_else] = ACTIONS(3505), - [anon_sym_new] = ACTIONS(3505), - [anon_sym_LBRACE_LT] = ACTIONS(3507), - [anon_sym_begin] = ACTIONS(3505), - [sym_ocamlyacc_value] = ACTIONS(3507), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3505), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3507), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3505), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3507), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3507), - [aux_sym_number_token1] = ACTIONS(3507), - [anon_sym_SQUOTE] = ACTIONS(3507), - [anon_sym_DQUOTE] = ACTIONS(3507), - [sym_prefix_operator] = ACTIONS(3507), - [anon_sym_PLUS_DOT] = ACTIONS(3505), - [anon_sym_DASH_DOT] = ACTIONS(3505), - [sym_hash_operator] = ACTIONS(3507), - [aux_sym__pow_operator_token1] = ACTIONS(3507), - [anon_sym_lsl] = ACTIONS(3505), - [anon_sym_lsr] = ACTIONS(3505), - [anon_sym_asr] = ACTIONS(3505), - [aux_sym__mult_operator_token1] = ACTIONS(3505), - [anon_sym_mod] = ACTIONS(3505), - [anon_sym_land] = ACTIONS(3505), - [anon_sym_lor] = ACTIONS(3505), - [anon_sym_lxor] = ACTIONS(3505), - [aux_sym__add_operator_token1] = ACTIONS(3505), - [sym__concat_operator] = ACTIONS(3507), - [sym__rel_operator] = ACTIONS(3505), - [anon_sym_AMP_AMP] = ACTIONS(3505), - [anon_sym_or] = ACTIONS(3505), - [anon_sym_PIPE_PIPE] = ACTIONS(3505), - [sym_let_operator] = ACTIONS(3507), - [sym__capitalized_identifier] = ACTIONS(3507), - [aux_sym_directive_token1] = ACTIONS(3505), - [aux_sym_tag_token1] = ACTIONS(3507), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1849] = { - [sym_attribute] = STATE(1849), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym__identifier] = ACTIONS(3493), - [anon_sym_SEMI_SEMI] = ACTIONS(3495), - [anon_sym_let] = ACTIONS(3493), - [anon_sym_TILDE] = ACTIONS(3493), - [anon_sym_QMARK] = ACTIONS(3493), - [anon_sym_LPAREN] = ACTIONS(3495), - [anon_sym_external] = ACTIONS(3493), - [anon_sym_type] = ACTIONS(3493), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3493), - [anon_sym_DASH] = ACTIONS(3493), - [anon_sym_COLON_EQ] = ACTIONS(3495), - [anon_sym_PIPE] = ACTIONS(3493), - [anon_sym_LBRACK] = ACTIONS(3493), - [anon_sym_true] = ACTIONS(3493), - [anon_sym_false] = ACTIONS(3493), - [anon_sym_DOT] = ACTIONS(3495), - [anon_sym_LBRACE] = ACTIONS(3493), - [anon_sym_SEMI] = ACTIONS(3493), - [anon_sym_exception] = ACTIONS(3493), - [anon_sym_module] = ACTIONS(3493), - [anon_sym_open] = ACTIONS(3493), - [anon_sym_include] = ACTIONS(3493), - [anon_sym_class] = ACTIONS(3493), - [anon_sym_object] = ACTIONS(3493), - [anon_sym_AMP] = ACTIONS(3493), - [anon_sym_POUND] = ACTIONS(3493), - [anon_sym_COLON_COLON] = ACTIONS(3495), - [anon_sym_LBRACK_PIPE] = ACTIONS(3495), - [anon_sym_else] = ACTIONS(3493), - [anon_sym_new] = ACTIONS(3493), - [anon_sym_LBRACE_LT] = ACTIONS(3495), - [anon_sym_begin] = ACTIONS(3493), - [sym_ocamlyacc_value] = ACTIONS(3495), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3493), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3495), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3493), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3495), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3495), - [aux_sym_number_token1] = ACTIONS(3495), - [anon_sym_SQUOTE] = ACTIONS(3495), - [anon_sym_DQUOTE] = ACTIONS(3495), - [sym_prefix_operator] = ACTIONS(3495), - [anon_sym_PLUS_DOT] = ACTIONS(3493), - [anon_sym_DASH_DOT] = ACTIONS(3493), - [sym_hash_operator] = ACTIONS(3495), - [aux_sym__pow_operator_token1] = ACTIONS(3495), - [anon_sym_lsl] = ACTIONS(3493), - [anon_sym_lsr] = ACTIONS(3493), - [anon_sym_asr] = ACTIONS(3493), - [aux_sym__mult_operator_token1] = ACTIONS(3493), - [anon_sym_mod] = ACTIONS(3493), - [anon_sym_land] = ACTIONS(3493), - [anon_sym_lor] = ACTIONS(3493), - [anon_sym_lxor] = ACTIONS(3493), - [aux_sym__add_operator_token1] = ACTIONS(3493), - [sym__concat_operator] = ACTIONS(3495), - [sym__rel_operator] = ACTIONS(3493), - [anon_sym_AMP_AMP] = ACTIONS(3493), - [anon_sym_or] = ACTIONS(3493), - [anon_sym_PIPE_PIPE] = ACTIONS(3493), - [sym_let_operator] = ACTIONS(3495), - [sym__capitalized_identifier] = ACTIONS(3495), - [aux_sym_directive_token1] = ACTIONS(3493), - [aux_sym_tag_token1] = ACTIONS(3495), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1850] = { - [sym_attribute] = STATE(1850), - [ts_builtin_sym_end] = ACTIONS(3383), - [sym__identifier] = ACTIONS(3381), - [anon_sym_SEMI_SEMI] = ACTIONS(3383), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_QMARK] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3383), - [anon_sym_external] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_COMMA] = ACTIONS(3383), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_COLON_EQ] = ACTIONS(3383), - [anon_sym_PIPE] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_true] = ACTIONS(3381), - [anon_sym_false] = ACTIONS(3381), - [anon_sym_DOT] = ACTIONS(3383), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_exception] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_open] = ACTIONS(3381), - [anon_sym_include] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_AMP] = ACTIONS(3381), - [anon_sym_POUND] = ACTIONS(3381), - [anon_sym_COLON_COLON] = ACTIONS(3383), - [anon_sym_LBRACK_PIPE] = ACTIONS(3383), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_LBRACE_LT] = ACTIONS(3383), - [anon_sym_begin] = ACTIONS(3381), - [sym_ocamlyacc_value] = ACTIONS(3383), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3381), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3383), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3381), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3383), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3383), - [aux_sym_number_token1] = ACTIONS(3383), - [anon_sym_SQUOTE] = ACTIONS(3383), - [anon_sym_DQUOTE] = ACTIONS(3383), - [sym_prefix_operator] = ACTIONS(3383), - [anon_sym_PLUS_DOT] = ACTIONS(3381), - [anon_sym_DASH_DOT] = ACTIONS(3381), - [sym_hash_operator] = ACTIONS(3383), - [aux_sym__pow_operator_token1] = ACTIONS(3383), - [anon_sym_lsl] = ACTIONS(3381), - [anon_sym_lsr] = ACTIONS(3381), - [anon_sym_asr] = ACTIONS(3381), - [aux_sym__mult_operator_token1] = ACTIONS(3381), - [anon_sym_mod] = ACTIONS(3381), - [anon_sym_land] = ACTIONS(3381), - [anon_sym_lor] = ACTIONS(3381), - [anon_sym_lxor] = ACTIONS(3381), - [aux_sym__add_operator_token1] = ACTIONS(3381), - [sym__concat_operator] = ACTIONS(3383), - [sym__rel_operator] = ACTIONS(3381), - [anon_sym_AMP_AMP] = ACTIONS(3381), - [anon_sym_or] = ACTIONS(3381), - [anon_sym_PIPE_PIPE] = ACTIONS(3381), - [sym_let_operator] = ACTIONS(3383), - [sym__capitalized_identifier] = ACTIONS(3383), - [aux_sym_directive_token1] = ACTIONS(3381), - [aux_sym_tag_token1] = ACTIONS(3383), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1851] = { - [sym_attribute] = STATE(1851), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym__identifier] = ACTIONS(3489), - [anon_sym_SEMI_SEMI] = ACTIONS(3491), - [anon_sym_let] = ACTIONS(3489), - [anon_sym_TILDE] = ACTIONS(3489), - [anon_sym_QMARK] = ACTIONS(3489), - [anon_sym_LPAREN] = ACTIONS(3491), - [anon_sym_external] = ACTIONS(3489), - [anon_sym_type] = ACTIONS(3489), - [anon_sym_COMMA] = ACTIONS(3491), - [anon_sym_PLUS] = ACTIONS(3489), - [anon_sym_DASH] = ACTIONS(3489), - [anon_sym_COLON_EQ] = ACTIONS(3491), - [anon_sym_PIPE] = ACTIONS(3489), - [anon_sym_LBRACK] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3489), - [anon_sym_false] = ACTIONS(3489), - [anon_sym_DOT] = ACTIONS(3491), - [anon_sym_LBRACE] = ACTIONS(3489), - [anon_sym_SEMI] = ACTIONS(3489), - [anon_sym_exception] = ACTIONS(3489), - [anon_sym_module] = ACTIONS(3489), - [anon_sym_open] = ACTIONS(3489), - [anon_sym_include] = ACTIONS(3489), - [anon_sym_class] = ACTIONS(3489), - [anon_sym_object] = ACTIONS(3489), - [anon_sym_AMP] = ACTIONS(3489), - [anon_sym_POUND] = ACTIONS(3489), - [anon_sym_COLON_COLON] = ACTIONS(3491), - [anon_sym_LBRACK_PIPE] = ACTIONS(3491), - [anon_sym_else] = ACTIONS(3489), - [anon_sym_new] = ACTIONS(3489), - [anon_sym_LBRACE_LT] = ACTIONS(3491), - [anon_sym_begin] = ACTIONS(3489), - [sym_ocamlyacc_value] = ACTIONS(3491), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3489), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3491), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3489), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3491), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3491), - [aux_sym_number_token1] = ACTIONS(3491), - [anon_sym_SQUOTE] = ACTIONS(3491), - [anon_sym_DQUOTE] = ACTIONS(3491), - [sym_prefix_operator] = ACTIONS(3491), - [anon_sym_PLUS_DOT] = ACTIONS(3489), - [anon_sym_DASH_DOT] = ACTIONS(3489), - [sym_hash_operator] = ACTIONS(3491), - [aux_sym__pow_operator_token1] = ACTIONS(3491), - [anon_sym_lsl] = ACTIONS(3489), - [anon_sym_lsr] = ACTIONS(3489), - [anon_sym_asr] = ACTIONS(3489), - [aux_sym__mult_operator_token1] = ACTIONS(3489), - [anon_sym_mod] = ACTIONS(3489), - [anon_sym_land] = ACTIONS(3489), - [anon_sym_lor] = ACTIONS(3489), - [anon_sym_lxor] = ACTIONS(3489), - [aux_sym__add_operator_token1] = ACTIONS(3489), - [sym__concat_operator] = ACTIONS(3491), - [sym__rel_operator] = ACTIONS(3489), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_or] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3489), - [sym_let_operator] = ACTIONS(3491), - [sym__capitalized_identifier] = ACTIONS(3491), - [aux_sym_directive_token1] = ACTIONS(3489), - [aux_sym_tag_token1] = ACTIONS(3491), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1852] = { - [sym_attribute] = STATE(1852), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym__identifier] = ACTIONS(3461), - [anon_sym_SEMI_SEMI] = ACTIONS(3463), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_QMARK] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3463), - [anon_sym_external] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_COMMA] = ACTIONS(3463), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_COLON_EQ] = ACTIONS(3463), - [anon_sym_PIPE] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_true] = ACTIONS(3461), - [anon_sym_false] = ACTIONS(3461), - [anon_sym_DOT] = ACTIONS(3463), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_exception] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_open] = ACTIONS(3461), - [anon_sym_include] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_AMP] = ACTIONS(3461), - [anon_sym_POUND] = ACTIONS(3461), - [anon_sym_COLON_COLON] = ACTIONS(3463), - [anon_sym_LBRACK_PIPE] = ACTIONS(3463), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_LBRACE_LT] = ACTIONS(3463), - [anon_sym_begin] = ACTIONS(3461), - [sym_ocamlyacc_value] = ACTIONS(3463), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3461), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3463), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3461), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3463), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3463), - [aux_sym_number_token1] = ACTIONS(3463), - [anon_sym_SQUOTE] = ACTIONS(3463), - [anon_sym_DQUOTE] = ACTIONS(3463), - [sym_prefix_operator] = ACTIONS(3463), - [anon_sym_PLUS_DOT] = ACTIONS(3461), - [anon_sym_DASH_DOT] = ACTIONS(3461), - [sym_hash_operator] = ACTIONS(3463), - [aux_sym__pow_operator_token1] = ACTIONS(3463), - [anon_sym_lsl] = ACTIONS(3461), - [anon_sym_lsr] = ACTIONS(3461), - [anon_sym_asr] = ACTIONS(3461), - [aux_sym__mult_operator_token1] = ACTIONS(3461), - [anon_sym_mod] = ACTIONS(3461), - [anon_sym_land] = ACTIONS(3461), - [anon_sym_lor] = ACTIONS(3461), - [anon_sym_lxor] = ACTIONS(3461), - [aux_sym__add_operator_token1] = ACTIONS(3461), - [sym__concat_operator] = ACTIONS(3463), - [sym__rel_operator] = ACTIONS(3461), - [anon_sym_AMP_AMP] = ACTIONS(3461), - [anon_sym_or] = ACTIONS(3461), - [anon_sym_PIPE_PIPE] = ACTIONS(3461), - [sym_let_operator] = ACTIONS(3463), - [sym__capitalized_identifier] = ACTIONS(3463), - [aux_sym_directive_token1] = ACTIONS(3461), - [aux_sym_tag_token1] = ACTIONS(3463), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1853] = { - [sym_attribute] = STATE(1853), - [ts_builtin_sym_end] = ACTIONS(3203), - [sym__identifier] = ACTIONS(3201), - [anon_sym_SEMI_SEMI] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_external] = ACTIONS(3201), - [anon_sym_type] = ACTIONS(3201), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3201), - [anon_sym_exception] = ACTIONS(3201), - [anon_sym_module] = ACTIONS(3201), - [anon_sym_open] = ACTIONS(3201), - [anon_sym_include] = ACTIONS(3201), - [anon_sym_class] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym_let_operator] = ACTIONS(3203), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_directive_token1] = ACTIONS(3201), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1854] = { - [sym_attribute] = STATE(1854), - [ts_builtin_sym_end] = ACTIONS(3387), - [sym__identifier] = ACTIONS(3385), - [anon_sym_SEMI_SEMI] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3385), - [anon_sym_TILDE] = ACTIONS(3385), - [anon_sym_QMARK] = ACTIONS(3385), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_external] = ACTIONS(3385), - [anon_sym_type] = ACTIONS(3385), - [anon_sym_COMMA] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3385), - [anon_sym_DASH] = ACTIONS(3385), - [anon_sym_COLON_EQ] = ACTIONS(3387), - [anon_sym_PIPE] = ACTIONS(3385), - [anon_sym_LBRACK] = ACTIONS(3385), - [anon_sym_true] = ACTIONS(3385), - [anon_sym_false] = ACTIONS(3385), - [anon_sym_DOT] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3385), - [anon_sym_SEMI] = ACTIONS(3385), - [anon_sym_exception] = ACTIONS(3385), - [anon_sym_module] = ACTIONS(3385), - [anon_sym_open] = ACTIONS(3385), - [anon_sym_include] = ACTIONS(3385), - [anon_sym_class] = ACTIONS(3385), - [anon_sym_object] = ACTIONS(3385), - [anon_sym_AMP] = ACTIONS(3385), - [anon_sym_POUND] = ACTIONS(3385), - [anon_sym_COLON_COLON] = ACTIONS(3387), - [anon_sym_LBRACK_PIPE] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3385), - [anon_sym_new] = ACTIONS(3385), - [anon_sym_LBRACE_LT] = ACTIONS(3387), - [anon_sym_begin] = ACTIONS(3385), - [sym_ocamlyacc_value] = ACTIONS(3387), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3385), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3387), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3385), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3387), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3387), - [aux_sym_number_token1] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [sym_prefix_operator] = ACTIONS(3387), - [anon_sym_PLUS_DOT] = ACTIONS(3385), - [anon_sym_DASH_DOT] = ACTIONS(3385), - [sym_hash_operator] = ACTIONS(3387), - [aux_sym__pow_operator_token1] = ACTIONS(3387), - [anon_sym_lsl] = ACTIONS(3385), - [anon_sym_lsr] = ACTIONS(3385), - [anon_sym_asr] = ACTIONS(3385), - [aux_sym__mult_operator_token1] = ACTIONS(3385), - [anon_sym_mod] = ACTIONS(3385), - [anon_sym_land] = ACTIONS(3385), - [anon_sym_lor] = ACTIONS(3385), - [anon_sym_lxor] = ACTIONS(3385), - [aux_sym__add_operator_token1] = ACTIONS(3385), - [sym__concat_operator] = ACTIONS(3387), - [sym__rel_operator] = ACTIONS(3385), - [anon_sym_AMP_AMP] = ACTIONS(3385), - [anon_sym_or] = ACTIONS(3385), - [anon_sym_PIPE_PIPE] = ACTIONS(3385), - [sym_let_operator] = ACTIONS(3387), - [sym__capitalized_identifier] = ACTIONS(3387), - [aux_sym_directive_token1] = ACTIONS(3385), - [aux_sym_tag_token1] = ACTIONS(3387), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1855] = { - [sym_attribute] = STATE(1855), - [ts_builtin_sym_end] = ACTIONS(3391), - [sym__identifier] = ACTIONS(3389), - [anon_sym_SEMI_SEMI] = ACTIONS(3391), - [anon_sym_let] = ACTIONS(3389), - [anon_sym_TILDE] = ACTIONS(3389), - [anon_sym_QMARK] = ACTIONS(3389), - [anon_sym_LPAREN] = ACTIONS(3391), - [anon_sym_external] = ACTIONS(3389), - [anon_sym_type] = ACTIONS(3389), - [anon_sym_COMMA] = ACTIONS(3391), - [anon_sym_PLUS] = ACTIONS(3389), - [anon_sym_DASH] = ACTIONS(3389), - [anon_sym_COLON_EQ] = ACTIONS(3391), - [anon_sym_PIPE] = ACTIONS(3389), - [anon_sym_LBRACK] = ACTIONS(3389), - [anon_sym_true] = ACTIONS(3389), - [anon_sym_false] = ACTIONS(3389), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_SEMI] = ACTIONS(3389), - [anon_sym_exception] = ACTIONS(3389), - [anon_sym_module] = ACTIONS(3389), - [anon_sym_open] = ACTIONS(3389), - [anon_sym_include] = ACTIONS(3389), - [anon_sym_class] = ACTIONS(3389), - [anon_sym_object] = ACTIONS(3389), - [anon_sym_AMP] = ACTIONS(3389), - [anon_sym_POUND] = ACTIONS(3389), - [anon_sym_COLON_COLON] = ACTIONS(3391), - [anon_sym_LBRACK_PIPE] = ACTIONS(3391), - [anon_sym_else] = ACTIONS(3389), - [anon_sym_new] = ACTIONS(3389), - [anon_sym_LBRACE_LT] = ACTIONS(3391), - [anon_sym_begin] = ACTIONS(3389), - [sym_ocamlyacc_value] = ACTIONS(3391), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3389), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3391), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3389), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3391), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3391), - [aux_sym_number_token1] = ACTIONS(3391), - [anon_sym_SQUOTE] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(3391), - [sym_prefix_operator] = ACTIONS(3391), - [anon_sym_PLUS_DOT] = ACTIONS(3389), - [anon_sym_DASH_DOT] = ACTIONS(3389), - [sym_hash_operator] = ACTIONS(3391), - [aux_sym__pow_operator_token1] = ACTIONS(3391), - [anon_sym_lsl] = ACTIONS(3389), - [anon_sym_lsr] = ACTIONS(3389), - [anon_sym_asr] = ACTIONS(3389), - [aux_sym__mult_operator_token1] = ACTIONS(3389), - [anon_sym_mod] = ACTIONS(3389), - [anon_sym_land] = ACTIONS(3389), - [anon_sym_lor] = ACTIONS(3389), - [anon_sym_lxor] = ACTIONS(3389), - [aux_sym__add_operator_token1] = ACTIONS(3389), - [sym__concat_operator] = ACTIONS(3391), - [sym__rel_operator] = ACTIONS(3389), - [anon_sym_AMP_AMP] = ACTIONS(3389), - [anon_sym_or] = ACTIONS(3389), - [anon_sym_PIPE_PIPE] = ACTIONS(3389), - [sym_let_operator] = ACTIONS(3391), - [sym__capitalized_identifier] = ACTIONS(3391), - [aux_sym_directive_token1] = ACTIONS(3389), - [aux_sym_tag_token1] = ACTIONS(3391), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1856] = { - [sym_attribute] = STATE(1856), - [ts_builtin_sym_end] = ACTIONS(3199), - [sym__identifier] = ACTIONS(3197), - [anon_sym_SEMI_SEMI] = ACTIONS(3199), - [anon_sym_let] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3199), - [anon_sym_external] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3199), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3199), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3197), - [anon_sym_true] = ACTIONS(3197), - [anon_sym_false] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_exception] = ACTIONS(3197), - [anon_sym_module] = ACTIONS(3197), - [anon_sym_open] = ACTIONS(3197), - [anon_sym_include] = ACTIONS(3197), - [anon_sym_class] = ACTIONS(3197), - [anon_sym_object] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_COLON_COLON] = ACTIONS(3199), - [anon_sym_LBRACK_PIPE] = ACTIONS(3199), - [anon_sym_else] = ACTIONS(3197), - [anon_sym_new] = ACTIONS(3197), - [anon_sym_LBRACE_LT] = ACTIONS(3199), - [anon_sym_begin] = ACTIONS(3197), - [sym_ocamlyacc_value] = ACTIONS(3199), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3197), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3199), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3197), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3199), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3199), - [aux_sym_number_token1] = ACTIONS(3199), - [anon_sym_SQUOTE] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(3199), - [sym_prefix_operator] = ACTIONS(3199), - [anon_sym_PLUS_DOT] = ACTIONS(3197), - [anon_sym_DASH_DOT] = ACTIONS(3197), - [sym_hash_operator] = ACTIONS(3199), - [aux_sym__pow_operator_token1] = ACTIONS(3199), - [anon_sym_lsl] = ACTIONS(3197), - [anon_sym_lsr] = ACTIONS(3197), - [anon_sym_asr] = ACTIONS(3197), - [aux_sym__mult_operator_token1] = ACTIONS(3197), - [anon_sym_mod] = ACTIONS(3197), - [anon_sym_land] = ACTIONS(3197), - [anon_sym_lor] = ACTIONS(3197), - [anon_sym_lxor] = ACTIONS(3197), - [aux_sym__add_operator_token1] = ACTIONS(3197), - [sym__concat_operator] = ACTIONS(3199), - [sym__rel_operator] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [sym_let_operator] = ACTIONS(3199), - [sym__capitalized_identifier] = ACTIONS(3199), - [aux_sym_directive_token1] = ACTIONS(3197), - [aux_sym_tag_token1] = ACTIONS(3199), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1857] = { - [sym_attribute] = STATE(1857), - [ts_builtin_sym_end] = ACTIONS(3403), - [sym__identifier] = ACTIONS(3401), - [anon_sym_SEMI_SEMI] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_QMARK] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_external] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_COMMA] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_COLON_EQ] = ACTIONS(3403), - [anon_sym_PIPE] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_true] = ACTIONS(3401), - [anon_sym_false] = ACTIONS(3401), - [anon_sym_DOT] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_exception] = ACTIONS(3401), - [anon_sym_module] = ACTIONS(3401), - [anon_sym_open] = ACTIONS(3401), - [anon_sym_include] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_object] = ACTIONS(3401), - [anon_sym_AMP] = ACTIONS(3401), - [anon_sym_POUND] = ACTIONS(3401), - [anon_sym_COLON_COLON] = ACTIONS(3403), - [anon_sym_LBRACK_PIPE] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_LBRACE_LT] = ACTIONS(3403), - [anon_sym_begin] = ACTIONS(3401), - [sym_ocamlyacc_value] = ACTIONS(3403), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3401), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3403), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3401), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3403), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3403), - [aux_sym_number_token1] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [sym_prefix_operator] = ACTIONS(3403), - [anon_sym_PLUS_DOT] = ACTIONS(3401), - [anon_sym_DASH_DOT] = ACTIONS(3401), - [sym_hash_operator] = ACTIONS(3403), - [aux_sym__pow_operator_token1] = ACTIONS(3403), - [anon_sym_lsl] = ACTIONS(3401), - [anon_sym_lsr] = ACTIONS(3401), - [anon_sym_asr] = ACTIONS(3401), - [aux_sym__mult_operator_token1] = ACTIONS(3401), - [anon_sym_mod] = ACTIONS(3401), - [anon_sym_land] = ACTIONS(3401), - [anon_sym_lor] = ACTIONS(3401), - [anon_sym_lxor] = ACTIONS(3401), - [aux_sym__add_operator_token1] = ACTIONS(3401), - [sym__concat_operator] = ACTIONS(3403), - [sym__rel_operator] = ACTIONS(3401), - [anon_sym_AMP_AMP] = ACTIONS(3401), - [anon_sym_or] = ACTIONS(3401), - [anon_sym_PIPE_PIPE] = ACTIONS(3401), - [sym_let_operator] = ACTIONS(3403), - [sym__capitalized_identifier] = ACTIONS(3403), - [aux_sym_directive_token1] = ACTIONS(3401), - [aux_sym_tag_token1] = ACTIONS(3403), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1858] = { - [sym_attribute] = STATE(1858), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym__identifier] = ACTIONS(3497), - [anon_sym_SEMI_SEMI] = ACTIONS(3499), - [anon_sym_let] = ACTIONS(3497), - [anon_sym_TILDE] = ACTIONS(3497), - [anon_sym_QMARK] = ACTIONS(3497), - [anon_sym_LPAREN] = ACTIONS(3499), - [anon_sym_external] = ACTIONS(3497), - [anon_sym_type] = ACTIONS(3497), - [anon_sym_COMMA] = ACTIONS(3499), - [anon_sym_PLUS] = ACTIONS(3497), - [anon_sym_DASH] = ACTIONS(3497), - [anon_sym_COLON_EQ] = ACTIONS(3499), - [anon_sym_PIPE] = ACTIONS(3497), - [anon_sym_LBRACK] = ACTIONS(3497), - [anon_sym_true] = ACTIONS(3497), - [anon_sym_false] = ACTIONS(3497), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(3497), - [anon_sym_SEMI] = ACTIONS(3497), - [anon_sym_exception] = ACTIONS(3497), - [anon_sym_module] = ACTIONS(3497), - [anon_sym_open] = ACTIONS(3497), - [anon_sym_include] = ACTIONS(3497), - [anon_sym_class] = ACTIONS(3497), - [anon_sym_object] = ACTIONS(3497), - [anon_sym_AMP] = ACTIONS(3497), - [anon_sym_POUND] = ACTIONS(3497), - [anon_sym_COLON_COLON] = ACTIONS(3499), - [anon_sym_LBRACK_PIPE] = ACTIONS(3499), - [anon_sym_else] = ACTIONS(3497), - [anon_sym_new] = ACTIONS(3497), - [anon_sym_LBRACE_LT] = ACTIONS(3499), - [anon_sym_begin] = ACTIONS(3497), - [sym_ocamlyacc_value] = ACTIONS(3499), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3497), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3499), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3497), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3499), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3499), - [aux_sym_number_token1] = ACTIONS(3499), - [anon_sym_SQUOTE] = ACTIONS(3499), - [anon_sym_DQUOTE] = ACTIONS(3499), - [sym_prefix_operator] = ACTIONS(3499), - [anon_sym_PLUS_DOT] = ACTIONS(3497), - [anon_sym_DASH_DOT] = ACTIONS(3497), - [sym_hash_operator] = ACTIONS(3499), - [aux_sym__pow_operator_token1] = ACTIONS(3499), - [anon_sym_lsl] = ACTIONS(3497), - [anon_sym_lsr] = ACTIONS(3497), - [anon_sym_asr] = ACTIONS(3497), - [aux_sym__mult_operator_token1] = ACTIONS(3497), - [anon_sym_mod] = ACTIONS(3497), - [anon_sym_land] = ACTIONS(3497), - [anon_sym_lor] = ACTIONS(3497), - [anon_sym_lxor] = ACTIONS(3497), - [aux_sym__add_operator_token1] = ACTIONS(3497), - [sym__concat_operator] = ACTIONS(3499), - [sym__rel_operator] = ACTIONS(3497), - [anon_sym_AMP_AMP] = ACTIONS(3497), - [anon_sym_or] = ACTIONS(3497), - [anon_sym_PIPE_PIPE] = ACTIONS(3497), - [sym_let_operator] = ACTIONS(3499), - [sym__capitalized_identifier] = ACTIONS(3499), - [aux_sym_directive_token1] = ACTIONS(3497), - [aux_sym_tag_token1] = ACTIONS(3499), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1859] = { - [sym_attribute] = STATE(1859), - [ts_builtin_sym_end] = ACTIONS(3419), - [sym__identifier] = ACTIONS(3417), - [anon_sym_SEMI_SEMI] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_QMARK] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_external] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_COMMA] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_COLON_EQ] = ACTIONS(3419), - [anon_sym_PIPE] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_true] = ACTIONS(3417), - [anon_sym_false] = ACTIONS(3417), - [anon_sym_DOT] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_exception] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_open] = ACTIONS(3417), - [anon_sym_include] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_AMP] = ACTIONS(3417), - [anon_sym_POUND] = ACTIONS(3417), - [anon_sym_COLON_COLON] = ACTIONS(3419), - [anon_sym_LBRACK_PIPE] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_LBRACE_LT] = ACTIONS(3419), - [anon_sym_begin] = ACTIONS(3417), - [sym_ocamlyacc_value] = ACTIONS(3419), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3417), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3419), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3417), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3419), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3419), - [aux_sym_number_token1] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [sym_prefix_operator] = ACTIONS(3419), - [anon_sym_PLUS_DOT] = ACTIONS(3417), - [anon_sym_DASH_DOT] = ACTIONS(3417), - [sym_hash_operator] = ACTIONS(3419), - [aux_sym__pow_operator_token1] = ACTIONS(3419), - [anon_sym_lsl] = ACTIONS(3417), - [anon_sym_lsr] = ACTIONS(3417), - [anon_sym_asr] = ACTIONS(3417), - [aux_sym__mult_operator_token1] = ACTIONS(3417), - [anon_sym_mod] = ACTIONS(3417), - [anon_sym_land] = ACTIONS(3417), - [anon_sym_lor] = ACTIONS(3417), - [anon_sym_lxor] = ACTIONS(3417), - [aux_sym__add_operator_token1] = ACTIONS(3417), - [sym__concat_operator] = ACTIONS(3419), - [sym__rel_operator] = ACTIONS(3417), - [anon_sym_AMP_AMP] = ACTIONS(3417), - [anon_sym_or] = ACTIONS(3417), - [anon_sym_PIPE_PIPE] = ACTIONS(3417), - [sym_let_operator] = ACTIONS(3419), - [sym__capitalized_identifier] = ACTIONS(3419), - [aux_sym_directive_token1] = ACTIONS(3417), - [aux_sym_tag_token1] = ACTIONS(3419), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1860] = { - [sym_attribute] = STATE(1860), - [ts_builtin_sym_end] = ACTIONS(3191), - [sym__identifier] = ACTIONS(3189), - [anon_sym_SEMI_SEMI] = ACTIONS(3191), - [anon_sym_let] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_external] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3189), - [anon_sym_true] = ACTIONS(3189), - [anon_sym_false] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_exception] = ACTIONS(3189), - [anon_sym_module] = ACTIONS(3189), - [anon_sym_open] = ACTIONS(3189), - [anon_sym_include] = ACTIONS(3189), - [anon_sym_class] = ACTIONS(3189), - [anon_sym_object] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_COLON_COLON] = ACTIONS(3191), - [anon_sym_LBRACK_PIPE] = ACTIONS(3191), - [anon_sym_else] = ACTIONS(3189), - [anon_sym_new] = ACTIONS(3189), - [anon_sym_LBRACE_LT] = ACTIONS(3191), - [anon_sym_begin] = ACTIONS(3189), - [sym_ocamlyacc_value] = ACTIONS(3191), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3189), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3191), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3189), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3191), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3191), - [aux_sym_number_token1] = ACTIONS(3191), - [anon_sym_SQUOTE] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(3191), - [sym_prefix_operator] = ACTIONS(3191), - [anon_sym_PLUS_DOT] = ACTIONS(3189), - [anon_sym_DASH_DOT] = ACTIONS(3189), - [sym_hash_operator] = ACTIONS(3191), - [aux_sym__pow_operator_token1] = ACTIONS(3191), - [anon_sym_lsl] = ACTIONS(3189), - [anon_sym_lsr] = ACTIONS(3189), - [anon_sym_asr] = ACTIONS(3189), - [aux_sym__mult_operator_token1] = ACTIONS(3189), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_land] = ACTIONS(3189), - [anon_sym_lor] = ACTIONS(3189), - [anon_sym_lxor] = ACTIONS(3189), - [aux_sym__add_operator_token1] = ACTIONS(3189), - [sym__concat_operator] = ACTIONS(3191), - [sym__rel_operator] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [sym_let_operator] = ACTIONS(3191), - [sym__capitalized_identifier] = ACTIONS(3191), - [aux_sym_directive_token1] = ACTIONS(3189), - [aux_sym_tag_token1] = ACTIONS(3191), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1861] = { - [sym_attribute] = STATE(1861), - [ts_builtin_sym_end] = ACTIONS(3423), - [sym__identifier] = ACTIONS(3421), - [anon_sym_SEMI_SEMI] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_external] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_COMMA] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_COLON_EQ] = ACTIONS(3423), - [anon_sym_PIPE] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [anon_sym_DOT] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_exception] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_open] = ACTIONS(3421), - [anon_sym_include] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_AMP] = ACTIONS(3421), - [anon_sym_POUND] = ACTIONS(3421), - [anon_sym_COLON_COLON] = ACTIONS(3423), - [anon_sym_LBRACK_PIPE] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_LBRACE_LT] = ACTIONS(3423), - [anon_sym_begin] = ACTIONS(3421), - [sym_ocamlyacc_value] = ACTIONS(3423), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3421), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3423), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3421), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3423), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3423), - [aux_sym_number_token1] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [sym_prefix_operator] = ACTIONS(3423), - [anon_sym_PLUS_DOT] = ACTIONS(3421), - [anon_sym_DASH_DOT] = ACTIONS(3421), - [sym_hash_operator] = ACTIONS(3423), - [aux_sym__pow_operator_token1] = ACTIONS(3423), - [anon_sym_lsl] = ACTIONS(3421), - [anon_sym_lsr] = ACTIONS(3421), - [anon_sym_asr] = ACTIONS(3421), - [aux_sym__mult_operator_token1] = ACTIONS(3421), - [anon_sym_mod] = ACTIONS(3421), - [anon_sym_land] = ACTIONS(3421), - [anon_sym_lor] = ACTIONS(3421), - [anon_sym_lxor] = ACTIONS(3421), - [aux_sym__add_operator_token1] = ACTIONS(3421), - [sym__concat_operator] = ACTIONS(3423), - [sym__rel_operator] = ACTIONS(3421), - [anon_sym_AMP_AMP] = ACTIONS(3421), - [anon_sym_or] = ACTIONS(3421), - [anon_sym_PIPE_PIPE] = ACTIONS(3421), - [sym_let_operator] = ACTIONS(3423), - [sym__capitalized_identifier] = ACTIONS(3423), - [aux_sym_directive_token1] = ACTIONS(3421), - [aux_sym_tag_token1] = ACTIONS(3423), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1862] = { - [sym_attribute] = STATE(1862), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym__identifier] = ACTIONS(3501), - [anon_sym_SEMI_SEMI] = ACTIONS(3503), - [anon_sym_let] = ACTIONS(3501), - [anon_sym_TILDE] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3501), - [anon_sym_LPAREN] = ACTIONS(3503), - [anon_sym_external] = ACTIONS(3501), - [anon_sym_type] = ACTIONS(3501), - [anon_sym_COMMA] = ACTIONS(3503), - [anon_sym_PLUS] = ACTIONS(3501), - [anon_sym_DASH] = ACTIONS(3501), - [anon_sym_COLON_EQ] = ACTIONS(3503), - [anon_sym_PIPE] = ACTIONS(3501), - [anon_sym_LBRACK] = ACTIONS(3501), - [anon_sym_true] = ACTIONS(3501), - [anon_sym_false] = ACTIONS(3501), - [anon_sym_DOT] = ACTIONS(3503), - [anon_sym_LBRACE] = ACTIONS(3501), - [anon_sym_SEMI] = ACTIONS(3501), - [anon_sym_exception] = ACTIONS(3501), - [anon_sym_module] = ACTIONS(3501), - [anon_sym_open] = ACTIONS(3501), - [anon_sym_include] = ACTIONS(3501), - [anon_sym_class] = ACTIONS(3501), - [anon_sym_object] = ACTIONS(3501), - [anon_sym_AMP] = ACTIONS(3501), - [anon_sym_POUND] = ACTIONS(3501), - [anon_sym_COLON_COLON] = ACTIONS(3503), - [anon_sym_LBRACK_PIPE] = ACTIONS(3503), - [anon_sym_else] = ACTIONS(3501), - [anon_sym_new] = ACTIONS(3501), - [anon_sym_LBRACE_LT] = ACTIONS(3503), - [anon_sym_begin] = ACTIONS(3501), - [sym_ocamlyacc_value] = ACTIONS(3503), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3501), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3503), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3501), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3503), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3503), - [aux_sym_number_token1] = ACTIONS(3503), - [anon_sym_SQUOTE] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(3503), - [sym_prefix_operator] = ACTIONS(3503), - [anon_sym_PLUS_DOT] = ACTIONS(3501), - [anon_sym_DASH_DOT] = ACTIONS(3501), - [sym_hash_operator] = ACTIONS(3503), - [aux_sym__pow_operator_token1] = ACTIONS(3503), - [anon_sym_lsl] = ACTIONS(3501), - [anon_sym_lsr] = ACTIONS(3501), - [anon_sym_asr] = ACTIONS(3501), - [aux_sym__mult_operator_token1] = ACTIONS(3501), - [anon_sym_mod] = ACTIONS(3501), - [anon_sym_land] = ACTIONS(3501), - [anon_sym_lor] = ACTIONS(3501), - [anon_sym_lxor] = ACTIONS(3501), - [aux_sym__add_operator_token1] = ACTIONS(3501), - [sym__concat_operator] = ACTIONS(3503), - [sym__rel_operator] = ACTIONS(3501), - [anon_sym_AMP_AMP] = ACTIONS(3501), - [anon_sym_or] = ACTIONS(3501), - [anon_sym_PIPE_PIPE] = ACTIONS(3501), - [sym_let_operator] = ACTIONS(3503), - [sym__capitalized_identifier] = ACTIONS(3503), - [aux_sym_directive_token1] = ACTIONS(3501), - [aux_sym_tag_token1] = ACTIONS(3503), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1863] = { - [sym_attribute] = STATE(1863), - [ts_builtin_sym_end] = ACTIONS(3187), - [sym__identifier] = ACTIONS(3185), - [anon_sym_SEMI_SEMI] = ACTIONS(3187), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_external] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_true] = ACTIONS(3185), - [anon_sym_false] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3187), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_exception] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_open] = ACTIONS(3185), - [anon_sym_include] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_COLON_COLON] = ACTIONS(3187), - [anon_sym_LBRACK_PIPE] = ACTIONS(3187), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_LBRACE_LT] = ACTIONS(3187), - [anon_sym_begin] = ACTIONS(3185), - [sym_ocamlyacc_value] = ACTIONS(3187), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3185), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3187), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3185), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3187), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3187), - [aux_sym_number_token1] = ACTIONS(3187), - [anon_sym_SQUOTE] = ACTIONS(3187), - [anon_sym_DQUOTE] = ACTIONS(3187), - [sym_prefix_operator] = ACTIONS(3187), - [anon_sym_PLUS_DOT] = ACTIONS(3185), - [anon_sym_DASH_DOT] = ACTIONS(3185), - [sym_hash_operator] = ACTIONS(3187), - [aux_sym__pow_operator_token1] = ACTIONS(3187), - [anon_sym_lsl] = ACTIONS(3185), - [anon_sym_lsr] = ACTIONS(3185), - [anon_sym_asr] = ACTIONS(3185), - [aux_sym__mult_operator_token1] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3185), - [anon_sym_land] = ACTIONS(3185), - [anon_sym_lor] = ACTIONS(3185), - [anon_sym_lxor] = ACTIONS(3185), - [aux_sym__add_operator_token1] = ACTIONS(3185), - [sym__concat_operator] = ACTIONS(3187), - [sym__rel_operator] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [sym_let_operator] = ACTIONS(3187), - [sym__capitalized_identifier] = ACTIONS(3187), - [aux_sym_directive_token1] = ACTIONS(3185), - [aux_sym_tag_token1] = ACTIONS(3187), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1864] = { - [sym_attribute] = STATE(1864), - [ts_builtin_sym_end] = ACTIONS(3634), - [sym__identifier] = ACTIONS(3636), - [anon_sym_SEMI_SEMI] = ACTIONS(3634), - [anon_sym_let] = ACTIONS(3636), - [anon_sym_TILDE] = ACTIONS(3636), - [anon_sym_QMARK] = ACTIONS(3636), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_LPAREN] = ACTIONS(3634), - [anon_sym_external] = ACTIONS(3636), - [anon_sym_type] = ACTIONS(3636), - [anon_sym_COMMA] = ACTIONS(3634), - [anon_sym_PLUS] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_COLON_EQ] = ACTIONS(3634), - [anon_sym_PIPE] = ACTIONS(3636), - [anon_sym_LBRACK] = ACTIONS(3636), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_true] = ACTIONS(3636), - [anon_sym_false] = ACTIONS(3636), - [anon_sym_LBRACE] = ACTIONS(3636), - [anon_sym_SEMI] = ACTIONS(3636), - [anon_sym_exception] = ACTIONS(3636), - [anon_sym_module] = ACTIONS(3636), - [anon_sym_open] = ACTIONS(3636), - [anon_sym_include] = ACTIONS(3636), - [anon_sym_class] = ACTIONS(3636), - [anon_sym_end] = ACTIONS(3636), - [anon_sym_object] = ACTIONS(3636), - [anon_sym_AMP] = ACTIONS(3636), - [anon_sym_COLON_COLON] = ACTIONS(3634), - [anon_sym_LBRACK_PIPE] = ACTIONS(3634), - [anon_sym_else] = ACTIONS(3636), - [anon_sym_new] = ACTIONS(3636), - [anon_sym_LBRACE_LT] = ACTIONS(3634), - [anon_sym_begin] = ACTIONS(3636), - [sym_ocamlyacc_value] = ACTIONS(3634), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3636), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3634), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3636), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3634), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3634), - [aux_sym_number_token1] = ACTIONS(3634), - [anon_sym_SQUOTE] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(3634), - [sym_prefix_operator] = ACTIONS(3634), - [anon_sym_PLUS_DOT] = ACTIONS(3636), - [anon_sym_DASH_DOT] = ACTIONS(3636), - [aux_sym__pow_operator_token1] = ACTIONS(3634), - [anon_sym_lsl] = ACTIONS(3636), - [anon_sym_lsr] = ACTIONS(3636), - [anon_sym_asr] = ACTIONS(3636), - [aux_sym__mult_operator_token1] = ACTIONS(3636), - [anon_sym_mod] = ACTIONS(3636), - [anon_sym_land] = ACTIONS(3636), - [anon_sym_lor] = ACTIONS(3636), - [anon_sym_lxor] = ACTIONS(3636), - [aux_sym__add_operator_token1] = ACTIONS(3636), - [sym__concat_operator] = ACTIONS(3634), - [sym__rel_operator] = ACTIONS(3636), - [anon_sym_AMP_AMP] = ACTIONS(3636), - [anon_sym_or] = ACTIONS(3636), - [anon_sym_PIPE_PIPE] = ACTIONS(3636), - [sym_let_operator] = ACTIONS(3634), - [sym__capitalized_identifier] = ACTIONS(3634), - [aux_sym_directive_token1] = ACTIONS(3634), - [aux_sym_tag_token1] = ACTIONS(3634), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1865] = { - [sym_attribute] = STATE(1865), - [ts_builtin_sym_end] = ACTIONS(3183), - [sym__identifier] = ACTIONS(3181), - [anon_sym_SEMI_SEMI] = ACTIONS(3183), - [anon_sym_let] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_external] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3181), - [anon_sym_true] = ACTIONS(3181), - [anon_sym_false] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3183), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_exception] = ACTIONS(3181), - [anon_sym_module] = ACTIONS(3181), - [anon_sym_open] = ACTIONS(3181), - [anon_sym_include] = ACTIONS(3181), - [anon_sym_class] = ACTIONS(3181), - [anon_sym_object] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_COLON_COLON] = ACTIONS(3183), - [anon_sym_LBRACK_PIPE] = ACTIONS(3183), - [anon_sym_else] = ACTIONS(3181), - [anon_sym_new] = ACTIONS(3181), - [anon_sym_LBRACE_LT] = ACTIONS(3183), - [anon_sym_begin] = ACTIONS(3181), - [sym_ocamlyacc_value] = ACTIONS(3183), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3181), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3183), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3181), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3183), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3183), - [aux_sym_number_token1] = ACTIONS(3183), - [anon_sym_SQUOTE] = ACTIONS(3183), - [anon_sym_DQUOTE] = ACTIONS(3183), - [sym_prefix_operator] = ACTIONS(3183), - [anon_sym_PLUS_DOT] = ACTIONS(3181), - [anon_sym_DASH_DOT] = ACTIONS(3181), - [sym_hash_operator] = ACTIONS(3183), - [aux_sym__pow_operator_token1] = ACTIONS(3183), - [anon_sym_lsl] = ACTIONS(3181), - [anon_sym_lsr] = ACTIONS(3181), - [anon_sym_asr] = ACTIONS(3181), - [aux_sym__mult_operator_token1] = ACTIONS(3181), - [anon_sym_mod] = ACTIONS(3181), - [anon_sym_land] = ACTIONS(3181), - [anon_sym_lor] = ACTIONS(3181), - [anon_sym_lxor] = ACTIONS(3181), - [aux_sym__add_operator_token1] = ACTIONS(3181), - [sym__concat_operator] = ACTIONS(3183), - [sym__rel_operator] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [sym_let_operator] = ACTIONS(3183), - [sym__capitalized_identifier] = ACTIONS(3183), - [aux_sym_directive_token1] = ACTIONS(3181), - [aux_sym_tag_token1] = ACTIONS(3183), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1866] = { - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(4543), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1866), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(2497), - [anon_sym_COLON_GT] = ACTIONS(2493), - [anon_sym_EQ] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_COLON2] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2493), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym_and_operator] = ACTIONS(2493), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1867] = { - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(4542), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1867), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_and] = ACTIONS(2497), - [anon_sym_COLON_GT] = ACTIONS(2493), - [anon_sym_EQ] = ACTIONS(2493), - [anon_sym_TILDE] = ACTIONS(2493), - [anon_sym_QMARK] = ACTIONS(2493), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_COLON2] = ACTIONS(2497), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_in] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2493), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym_and_operator] = ACTIONS(2493), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1868] = { - [sym_attribute] = STATE(1868), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym__identifier] = ACTIONS(3177), - [anon_sym_SEMI_SEMI] = ACTIONS(3179), - [anon_sym_let] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_external] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3177), - [anon_sym_true] = ACTIONS(3177), - [anon_sym_false] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3179), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_exception] = ACTIONS(3177), - [anon_sym_module] = ACTIONS(3177), - [anon_sym_open] = ACTIONS(3177), - [anon_sym_include] = ACTIONS(3177), - [anon_sym_class] = ACTIONS(3177), - [anon_sym_object] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_COLON_COLON] = ACTIONS(3179), - [anon_sym_LBRACK_PIPE] = ACTIONS(3179), - [anon_sym_else] = ACTIONS(3177), - [anon_sym_new] = ACTIONS(3177), - [anon_sym_LBRACE_LT] = ACTIONS(3179), - [anon_sym_begin] = ACTIONS(3177), - [sym_ocamlyacc_value] = ACTIONS(3179), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3177), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3179), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3177), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3179), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3179), - [aux_sym_number_token1] = ACTIONS(3179), - [anon_sym_SQUOTE] = ACTIONS(3179), - [anon_sym_DQUOTE] = ACTIONS(3179), - [sym_prefix_operator] = ACTIONS(3179), - [anon_sym_PLUS_DOT] = ACTIONS(3177), - [anon_sym_DASH_DOT] = ACTIONS(3177), - [sym_hash_operator] = ACTIONS(3179), - [aux_sym__pow_operator_token1] = ACTIONS(3179), - [anon_sym_lsl] = ACTIONS(3177), - [anon_sym_lsr] = ACTIONS(3177), - [anon_sym_asr] = ACTIONS(3177), - [aux_sym__mult_operator_token1] = ACTIONS(3177), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_land] = ACTIONS(3177), - [anon_sym_lor] = ACTIONS(3177), - [anon_sym_lxor] = ACTIONS(3177), - [aux_sym__add_operator_token1] = ACTIONS(3177), - [sym__concat_operator] = ACTIONS(3179), - [sym__rel_operator] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [sym_let_operator] = ACTIONS(3179), - [sym__capitalized_identifier] = ACTIONS(3179), - [aux_sym_directive_token1] = ACTIONS(3177), - [aux_sym_tag_token1] = ACTIONS(3179), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1869] = { - [sym_attribute] = STATE(1869), - [ts_builtin_sym_end] = ACTIONS(3415), - [sym__identifier] = ACTIONS(3413), - [anon_sym_SEMI_SEMI] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_QMARK] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_external] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_COMMA] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_COLON_EQ] = ACTIONS(3415), - [anon_sym_PIPE] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_true] = ACTIONS(3413), - [anon_sym_false] = ACTIONS(3413), - [anon_sym_DOT] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_exception] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_open] = ACTIONS(3413), - [anon_sym_include] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_AMP] = ACTIONS(3413), - [anon_sym_POUND] = ACTIONS(3413), - [anon_sym_COLON_COLON] = ACTIONS(3415), - [anon_sym_LBRACK_PIPE] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_LBRACE_LT] = ACTIONS(3415), - [anon_sym_begin] = ACTIONS(3413), - [sym_ocamlyacc_value] = ACTIONS(3415), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3413), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3415), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3413), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3415), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3415), - [aux_sym_number_token1] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [sym_prefix_operator] = ACTIONS(3415), - [anon_sym_PLUS_DOT] = ACTIONS(3413), - [anon_sym_DASH_DOT] = ACTIONS(3413), - [sym_hash_operator] = ACTIONS(3415), - [aux_sym__pow_operator_token1] = ACTIONS(3415), - [anon_sym_lsl] = ACTIONS(3413), - [anon_sym_lsr] = ACTIONS(3413), - [anon_sym_asr] = ACTIONS(3413), - [aux_sym__mult_operator_token1] = ACTIONS(3413), - [anon_sym_mod] = ACTIONS(3413), - [anon_sym_land] = ACTIONS(3413), - [anon_sym_lor] = ACTIONS(3413), - [anon_sym_lxor] = ACTIONS(3413), - [aux_sym__add_operator_token1] = ACTIONS(3413), - [sym__concat_operator] = ACTIONS(3415), - [sym__rel_operator] = ACTIONS(3413), - [anon_sym_AMP_AMP] = ACTIONS(3413), - [anon_sym_or] = ACTIONS(3413), - [anon_sym_PIPE_PIPE] = ACTIONS(3413), - [sym_let_operator] = ACTIONS(3415), - [sym__capitalized_identifier] = ACTIONS(3415), - [aux_sym_directive_token1] = ACTIONS(3413), - [aux_sym_tag_token1] = ACTIONS(3415), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1870] = { - [sym_attribute] = STATE(1870), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym__identifier] = ACTIONS(3173), - [anon_sym_SEMI_SEMI] = ACTIONS(3175), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_external] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_true] = ACTIONS(3173), - [anon_sym_false] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3175), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_exception] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_open] = ACTIONS(3173), - [anon_sym_include] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_COLON_COLON] = ACTIONS(3175), - [anon_sym_LBRACK_PIPE] = ACTIONS(3175), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_LBRACE_LT] = ACTIONS(3175), - [anon_sym_begin] = ACTIONS(3173), - [sym_ocamlyacc_value] = ACTIONS(3175), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3173), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3175), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3173), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3175), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3175), - [aux_sym_number_token1] = ACTIONS(3175), - [anon_sym_SQUOTE] = ACTIONS(3175), - [anon_sym_DQUOTE] = ACTIONS(3175), - [sym_prefix_operator] = ACTIONS(3175), - [anon_sym_PLUS_DOT] = ACTIONS(3173), - [anon_sym_DASH_DOT] = ACTIONS(3173), - [sym_hash_operator] = ACTIONS(3175), - [aux_sym__pow_operator_token1] = ACTIONS(3175), - [anon_sym_lsl] = ACTIONS(3173), - [anon_sym_lsr] = ACTIONS(3173), - [anon_sym_asr] = ACTIONS(3173), - [aux_sym__mult_operator_token1] = ACTIONS(3173), - [anon_sym_mod] = ACTIONS(3173), - [anon_sym_land] = ACTIONS(3173), - [anon_sym_lor] = ACTIONS(3173), - [anon_sym_lxor] = ACTIONS(3173), - [aux_sym__add_operator_token1] = ACTIONS(3173), - [sym__concat_operator] = ACTIONS(3175), - [sym__rel_operator] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [sym_let_operator] = ACTIONS(3175), - [sym__capitalized_identifier] = ACTIONS(3175), - [aux_sym_directive_token1] = ACTIONS(3173), - [aux_sym_tag_token1] = ACTIONS(3175), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1871] = { - [sym_attribute] = STATE(1871), - [ts_builtin_sym_end] = ACTIONS(3459), - [sym__identifier] = ACTIONS(3457), - [anon_sym_SEMI_SEMI] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_QMARK] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_external] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_COMMA] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_COLON_EQ] = ACTIONS(3459), - [anon_sym_PIPE] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3457), - [anon_sym_false] = ACTIONS(3457), - [anon_sym_DOT] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_exception] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_open] = ACTIONS(3457), - [anon_sym_include] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_AMP] = ACTIONS(3457), - [anon_sym_POUND] = ACTIONS(3457), - [anon_sym_COLON_COLON] = ACTIONS(3459), - [anon_sym_LBRACK_PIPE] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_LBRACE_LT] = ACTIONS(3459), - [anon_sym_begin] = ACTIONS(3457), - [sym_ocamlyacc_value] = ACTIONS(3459), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3457), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3459), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3457), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3459), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3459), - [aux_sym_number_token1] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [sym_prefix_operator] = ACTIONS(3459), - [anon_sym_PLUS_DOT] = ACTIONS(3457), - [anon_sym_DASH_DOT] = ACTIONS(3457), - [sym_hash_operator] = ACTIONS(3459), - [aux_sym__pow_operator_token1] = ACTIONS(3459), - [anon_sym_lsl] = ACTIONS(3457), - [anon_sym_lsr] = ACTIONS(3457), - [anon_sym_asr] = ACTIONS(3457), - [aux_sym__mult_operator_token1] = ACTIONS(3457), - [anon_sym_mod] = ACTIONS(3457), - [anon_sym_land] = ACTIONS(3457), - [anon_sym_lor] = ACTIONS(3457), - [anon_sym_lxor] = ACTIONS(3457), - [aux_sym__add_operator_token1] = ACTIONS(3457), - [sym__concat_operator] = ACTIONS(3459), - [sym__rel_operator] = ACTIONS(3457), - [anon_sym_AMP_AMP] = ACTIONS(3457), - [anon_sym_or] = ACTIONS(3457), - [anon_sym_PIPE_PIPE] = ACTIONS(3457), - [sym_let_operator] = ACTIONS(3459), - [sym__capitalized_identifier] = ACTIONS(3459), - [aux_sym_directive_token1] = ACTIONS(3457), - [aux_sym_tag_token1] = ACTIONS(3459), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1872] = { - [sym_attribute] = STATE(1872), - [ts_builtin_sym_end] = ACTIONS(3427), - [sym__identifier] = ACTIONS(3425), - [anon_sym_SEMI_SEMI] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_QMARK] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_external] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_COMMA] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_COLON_EQ] = ACTIONS(3427), - [anon_sym_PIPE] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_true] = ACTIONS(3425), - [anon_sym_false] = ACTIONS(3425), - [anon_sym_DOT] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_exception] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_open] = ACTIONS(3425), - [anon_sym_include] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_AMP] = ACTIONS(3425), - [anon_sym_POUND] = ACTIONS(3425), - [anon_sym_COLON_COLON] = ACTIONS(3427), - [anon_sym_LBRACK_PIPE] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_LBRACE_LT] = ACTIONS(3427), - [anon_sym_begin] = ACTIONS(3425), - [sym_ocamlyacc_value] = ACTIONS(3427), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3425), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3427), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3425), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3427), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3427), - [aux_sym_number_token1] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [sym_prefix_operator] = ACTIONS(3427), - [anon_sym_PLUS_DOT] = ACTIONS(3425), - [anon_sym_DASH_DOT] = ACTIONS(3425), - [sym_hash_operator] = ACTIONS(3427), - [aux_sym__pow_operator_token1] = ACTIONS(3427), - [anon_sym_lsl] = ACTIONS(3425), - [anon_sym_lsr] = ACTIONS(3425), - [anon_sym_asr] = ACTIONS(3425), - [aux_sym__mult_operator_token1] = ACTIONS(3425), - [anon_sym_mod] = ACTIONS(3425), - [anon_sym_land] = ACTIONS(3425), - [anon_sym_lor] = ACTIONS(3425), - [anon_sym_lxor] = ACTIONS(3425), - [aux_sym__add_operator_token1] = ACTIONS(3425), - [sym__concat_operator] = ACTIONS(3427), - [sym__rel_operator] = ACTIONS(3425), - [anon_sym_AMP_AMP] = ACTIONS(3425), - [anon_sym_or] = ACTIONS(3425), - [anon_sym_PIPE_PIPE] = ACTIONS(3425), - [sym_let_operator] = ACTIONS(3427), - [sym__capitalized_identifier] = ACTIONS(3427), - [aux_sym_directive_token1] = ACTIONS(3425), - [aux_sym_tag_token1] = ACTIONS(3427), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1873] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6120), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1873), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6132), - [aux_sym_let_binding_repeat1] = STATE(1931), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3706), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3710), - [anon_sym_val] = ACTIONS(3710), - [anon_sym_end] = ACTIONS(3710), - [anon_sym_inherit] = ACTIONS(3710), - [anon_sym_method] = ACTIONS(3710), - [anon_sym_initializer] = ACTIONS(3710), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3712), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3712), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3712), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1874] = { - [sym_attribute] = STATE(1874), - [ts_builtin_sym_end] = ACTIONS(3171), - [sym__identifier] = ACTIONS(3169), - [anon_sym_SEMI_SEMI] = ACTIONS(3171), - [anon_sym_let] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_external] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3169), - [anon_sym_true] = ACTIONS(3169), - [anon_sym_false] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3171), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_exception] = ACTIONS(3169), - [anon_sym_module] = ACTIONS(3169), - [anon_sym_open] = ACTIONS(3169), - [anon_sym_include] = ACTIONS(3169), - [anon_sym_class] = ACTIONS(3169), - [anon_sym_object] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_COLON_COLON] = ACTIONS(3171), - [anon_sym_LBRACK_PIPE] = ACTIONS(3171), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_new] = ACTIONS(3169), - [anon_sym_LBRACE_LT] = ACTIONS(3171), - [anon_sym_begin] = ACTIONS(3169), - [sym_ocamlyacc_value] = ACTIONS(3171), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3169), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3171), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3169), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3171), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3171), - [aux_sym_number_token1] = ACTIONS(3171), - [anon_sym_SQUOTE] = ACTIONS(3171), - [anon_sym_DQUOTE] = ACTIONS(3171), - [sym_prefix_operator] = ACTIONS(3171), - [anon_sym_PLUS_DOT] = ACTIONS(3169), - [anon_sym_DASH_DOT] = ACTIONS(3169), - [sym_hash_operator] = ACTIONS(3171), - [aux_sym__pow_operator_token1] = ACTIONS(3171), - [anon_sym_lsl] = ACTIONS(3169), - [anon_sym_lsr] = ACTIONS(3169), - [anon_sym_asr] = ACTIONS(3169), - [aux_sym__mult_operator_token1] = ACTIONS(3169), - [anon_sym_mod] = ACTIONS(3169), - [anon_sym_land] = ACTIONS(3169), - [anon_sym_lor] = ACTIONS(3169), - [anon_sym_lxor] = ACTIONS(3169), - [aux_sym__add_operator_token1] = ACTIONS(3169), - [sym__concat_operator] = ACTIONS(3171), - [sym__rel_operator] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [sym_let_operator] = ACTIONS(3171), - [sym__capitalized_identifier] = ACTIONS(3171), - [aux_sym_directive_token1] = ACTIONS(3169), - [aux_sym_tag_token1] = ACTIONS(3171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1875] = { - [sym_attribute] = STATE(1875), - [ts_builtin_sym_end] = ACTIONS(3311), - [sym__identifier] = ACTIONS(3309), - [anon_sym_SEMI_SEMI] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_QMARK] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_external] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_COMMA] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_COLON_EQ] = ACTIONS(3311), - [anon_sym_PIPE] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_true] = ACTIONS(3309), - [anon_sym_false] = ACTIONS(3309), - [anon_sym_DOT] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_exception] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_open] = ACTIONS(3309), - [anon_sym_include] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_AMP] = ACTIONS(3309), - [anon_sym_POUND] = ACTIONS(3309), - [anon_sym_COLON_COLON] = ACTIONS(3311), - [anon_sym_LBRACK_PIPE] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_LBRACE_LT] = ACTIONS(3311), - [anon_sym_begin] = ACTIONS(3309), - [sym_ocamlyacc_value] = ACTIONS(3311), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3309), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3311), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3309), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3311), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3311), - [aux_sym_number_token1] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [sym_prefix_operator] = ACTIONS(3311), - [anon_sym_PLUS_DOT] = ACTIONS(3309), - [anon_sym_DASH_DOT] = ACTIONS(3309), - [sym_hash_operator] = ACTIONS(3311), - [aux_sym__pow_operator_token1] = ACTIONS(3311), - [anon_sym_lsl] = ACTIONS(3309), - [anon_sym_lsr] = ACTIONS(3309), - [anon_sym_asr] = ACTIONS(3309), - [aux_sym__mult_operator_token1] = ACTIONS(3309), - [anon_sym_mod] = ACTIONS(3309), - [anon_sym_land] = ACTIONS(3309), - [anon_sym_lor] = ACTIONS(3309), - [anon_sym_lxor] = ACTIONS(3309), - [aux_sym__add_operator_token1] = ACTIONS(3309), - [sym__concat_operator] = ACTIONS(3311), - [sym__rel_operator] = ACTIONS(3309), - [anon_sym_AMP_AMP] = ACTIONS(3309), - [anon_sym_or] = ACTIONS(3309), - [anon_sym_PIPE_PIPE] = ACTIONS(3309), - [sym_let_operator] = ACTIONS(3311), - [sym__capitalized_identifier] = ACTIONS(3311), - [aux_sym_directive_token1] = ACTIONS(3309), - [aux_sym_tag_token1] = ACTIONS(3311), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1876] = { - [sym_attribute] = STATE(1876), - [ts_builtin_sym_end] = ACTIONS(3411), - [sym__identifier] = ACTIONS(3409), - [anon_sym_SEMI_SEMI] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_QMARK] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_external] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_COMMA] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_COLON_EQ] = ACTIONS(3411), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_true] = ACTIONS(3409), - [anon_sym_false] = ACTIONS(3409), - [anon_sym_DOT] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_exception] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_open] = ACTIONS(3409), - [anon_sym_include] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_AMP] = ACTIONS(3409), - [anon_sym_POUND] = ACTIONS(3409), - [anon_sym_COLON_COLON] = ACTIONS(3411), - [anon_sym_LBRACK_PIPE] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_LBRACE_LT] = ACTIONS(3411), - [anon_sym_begin] = ACTIONS(3409), - [sym_ocamlyacc_value] = ACTIONS(3411), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3409), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3411), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3409), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3411), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3411), - [aux_sym_number_token1] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [sym_prefix_operator] = ACTIONS(3411), - [anon_sym_PLUS_DOT] = ACTIONS(3409), - [anon_sym_DASH_DOT] = ACTIONS(3409), - [sym_hash_operator] = ACTIONS(3411), - [aux_sym__pow_operator_token1] = ACTIONS(3411), - [anon_sym_lsl] = ACTIONS(3409), - [anon_sym_lsr] = ACTIONS(3409), - [anon_sym_asr] = ACTIONS(3409), - [aux_sym__mult_operator_token1] = ACTIONS(3409), - [anon_sym_mod] = ACTIONS(3409), - [anon_sym_land] = ACTIONS(3409), - [anon_sym_lor] = ACTIONS(3409), - [anon_sym_lxor] = ACTIONS(3409), - [aux_sym__add_operator_token1] = ACTIONS(3409), - [sym__concat_operator] = ACTIONS(3411), - [sym__rel_operator] = ACTIONS(3409), - [anon_sym_AMP_AMP] = ACTIONS(3409), - [anon_sym_or] = ACTIONS(3409), - [anon_sym_PIPE_PIPE] = ACTIONS(3409), - [sym_let_operator] = ACTIONS(3411), - [sym__capitalized_identifier] = ACTIONS(3411), - [aux_sym_directive_token1] = ACTIONS(3409), - [aux_sym_tag_token1] = ACTIONS(3411), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1877] = { - [sym_attribute] = STATE(1877), - [ts_builtin_sym_end] = ACTIONS(3355), - [sym__identifier] = ACTIONS(3353), - [anon_sym_SEMI_SEMI] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_QMARK] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_external] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_COMMA] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_COLON_EQ] = ACTIONS(3355), - [anon_sym_PIPE] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [anon_sym_DOT] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_exception] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_open] = ACTIONS(3353), - [anon_sym_include] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_AMP] = ACTIONS(3353), - [anon_sym_POUND] = ACTIONS(3353), - [anon_sym_COLON_COLON] = ACTIONS(3355), - [anon_sym_LBRACK_PIPE] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_LBRACE_LT] = ACTIONS(3355), - [anon_sym_begin] = ACTIONS(3353), - [sym_ocamlyacc_value] = ACTIONS(3355), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3353), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3355), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3353), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3355), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3355), - [aux_sym_number_token1] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [sym_prefix_operator] = ACTIONS(3355), - [anon_sym_PLUS_DOT] = ACTIONS(3353), - [anon_sym_DASH_DOT] = ACTIONS(3353), - [sym_hash_operator] = ACTIONS(3355), - [aux_sym__pow_operator_token1] = ACTIONS(3355), - [anon_sym_lsl] = ACTIONS(3353), - [anon_sym_lsr] = ACTIONS(3353), - [anon_sym_asr] = ACTIONS(3353), - [aux_sym__mult_operator_token1] = ACTIONS(3353), - [anon_sym_mod] = ACTIONS(3353), - [anon_sym_land] = ACTIONS(3353), - [anon_sym_lor] = ACTIONS(3353), - [anon_sym_lxor] = ACTIONS(3353), - [aux_sym__add_operator_token1] = ACTIONS(3353), - [sym__concat_operator] = ACTIONS(3355), - [sym__rel_operator] = ACTIONS(3353), - [anon_sym_AMP_AMP] = ACTIONS(3353), - [anon_sym_or] = ACTIONS(3353), - [anon_sym_PIPE_PIPE] = ACTIONS(3353), - [sym_let_operator] = ACTIONS(3355), - [sym__capitalized_identifier] = ACTIONS(3355), - [aux_sym_directive_token1] = ACTIONS(3353), - [aux_sym_tag_token1] = ACTIONS(3355), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1878] = { - [sym_attribute] = STATE(1878), - [ts_builtin_sym_end] = ACTIONS(3407), - [sym__identifier] = ACTIONS(3405), - [anon_sym_SEMI_SEMI] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_QMARK] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_external] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_COMMA] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_COLON_EQ] = ACTIONS(3407), - [anon_sym_PIPE] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_true] = ACTIONS(3405), - [anon_sym_false] = ACTIONS(3405), - [anon_sym_DOT] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_exception] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_open] = ACTIONS(3405), - [anon_sym_include] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_AMP] = ACTIONS(3405), - [anon_sym_POUND] = ACTIONS(3405), - [anon_sym_COLON_COLON] = ACTIONS(3407), - [anon_sym_LBRACK_PIPE] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_LBRACE_LT] = ACTIONS(3407), - [anon_sym_begin] = ACTIONS(3405), - [sym_ocamlyacc_value] = ACTIONS(3407), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3405), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3407), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3405), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3407), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3407), - [aux_sym_number_token1] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [sym_prefix_operator] = ACTIONS(3407), - [anon_sym_PLUS_DOT] = ACTIONS(3405), - [anon_sym_DASH_DOT] = ACTIONS(3405), - [sym_hash_operator] = ACTIONS(3407), - [aux_sym__pow_operator_token1] = ACTIONS(3407), - [anon_sym_lsl] = ACTIONS(3405), - [anon_sym_lsr] = ACTIONS(3405), - [anon_sym_asr] = ACTIONS(3405), - [aux_sym__mult_operator_token1] = ACTIONS(3405), - [anon_sym_mod] = ACTIONS(3405), - [anon_sym_land] = ACTIONS(3405), - [anon_sym_lor] = ACTIONS(3405), - [anon_sym_lxor] = ACTIONS(3405), - [aux_sym__add_operator_token1] = ACTIONS(3405), - [sym__concat_operator] = ACTIONS(3407), - [sym__rel_operator] = ACTIONS(3405), - [anon_sym_AMP_AMP] = ACTIONS(3405), - [anon_sym_or] = ACTIONS(3405), - [anon_sym_PIPE_PIPE] = ACTIONS(3405), - [sym_let_operator] = ACTIONS(3407), - [sym__capitalized_identifier] = ACTIONS(3407), - [aux_sym_directive_token1] = ACTIONS(3405), - [aux_sym_tag_token1] = ACTIONS(3407), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1879] = { - [sym_attribute] = STATE(1879), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym__identifier] = ACTIONS(3531), - [anon_sym_SEMI_SEMI] = ACTIONS(3533), - [anon_sym_let] = ACTIONS(3531), - [anon_sym_TILDE] = ACTIONS(3531), - [anon_sym_QMARK] = ACTIONS(3531), - [anon_sym_LPAREN] = ACTIONS(3533), - [anon_sym_external] = ACTIONS(3531), - [anon_sym_type] = ACTIONS(3531), - [anon_sym_COMMA] = ACTIONS(3533), - [anon_sym_PLUS] = ACTIONS(3531), - [anon_sym_DASH] = ACTIONS(3531), - [anon_sym_COLON_EQ] = ACTIONS(3533), - [anon_sym_PIPE] = ACTIONS(3531), - [anon_sym_LBRACK] = ACTIONS(3531), - [anon_sym_true] = ACTIONS(3531), - [anon_sym_false] = ACTIONS(3531), - [anon_sym_DOT] = ACTIONS(3533), - [anon_sym_LBRACE] = ACTIONS(3531), - [anon_sym_SEMI] = ACTIONS(3531), - [anon_sym_exception] = ACTIONS(3531), - [anon_sym_module] = ACTIONS(3531), - [anon_sym_open] = ACTIONS(3531), - [anon_sym_include] = ACTIONS(3531), - [anon_sym_class] = ACTIONS(3531), - [anon_sym_object] = ACTIONS(3531), - [anon_sym_AMP] = ACTIONS(3531), - [anon_sym_POUND] = ACTIONS(3531), - [anon_sym_COLON_COLON] = ACTIONS(3533), - [anon_sym_LBRACK_PIPE] = ACTIONS(3533), - [anon_sym_else] = ACTIONS(3531), - [anon_sym_new] = ACTIONS(3531), - [anon_sym_LBRACE_LT] = ACTIONS(3533), - [anon_sym_begin] = ACTIONS(3531), - [sym_ocamlyacc_value] = ACTIONS(3533), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3531), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3533), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3531), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3533), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3533), - [aux_sym_number_token1] = ACTIONS(3533), - [anon_sym_SQUOTE] = ACTIONS(3533), - [anon_sym_DQUOTE] = ACTIONS(3533), - [sym_prefix_operator] = ACTIONS(3533), - [anon_sym_PLUS_DOT] = ACTIONS(3531), - [anon_sym_DASH_DOT] = ACTIONS(3531), - [sym_hash_operator] = ACTIONS(3533), - [aux_sym__pow_operator_token1] = ACTIONS(3533), - [anon_sym_lsl] = ACTIONS(3531), - [anon_sym_lsr] = ACTIONS(3531), - [anon_sym_asr] = ACTIONS(3531), - [aux_sym__mult_operator_token1] = ACTIONS(3531), - [anon_sym_mod] = ACTIONS(3531), - [anon_sym_land] = ACTIONS(3531), - [anon_sym_lor] = ACTIONS(3531), - [anon_sym_lxor] = ACTIONS(3531), - [aux_sym__add_operator_token1] = ACTIONS(3531), - [sym__concat_operator] = ACTIONS(3533), - [sym__rel_operator] = ACTIONS(3531), - [anon_sym_AMP_AMP] = ACTIONS(3531), - [anon_sym_or] = ACTIONS(3531), - [anon_sym_PIPE_PIPE] = ACTIONS(3531), - [sym_let_operator] = ACTIONS(3533), - [sym__capitalized_identifier] = ACTIONS(3533), - [aux_sym_directive_token1] = ACTIONS(3531), - [aux_sym_tag_token1] = ACTIONS(3533), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1880] = { - [sym_attribute] = STATE(1880), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym__identifier] = ACTIONS(3535), - [anon_sym_SEMI_SEMI] = ACTIONS(3537), - [anon_sym_let] = ACTIONS(3535), - [anon_sym_TILDE] = ACTIONS(3535), - [anon_sym_QMARK] = ACTIONS(3535), - [anon_sym_LPAREN] = ACTIONS(3537), - [anon_sym_external] = ACTIONS(3535), - [anon_sym_type] = ACTIONS(3535), - [anon_sym_COMMA] = ACTIONS(3537), - [anon_sym_PLUS] = ACTIONS(3535), - [anon_sym_DASH] = ACTIONS(3535), - [anon_sym_COLON_EQ] = ACTIONS(3537), - [anon_sym_PIPE] = ACTIONS(3535), - [anon_sym_LBRACK] = ACTIONS(3535), - [anon_sym_true] = ACTIONS(3535), - [anon_sym_false] = ACTIONS(3535), - [anon_sym_DOT] = ACTIONS(3537), - [anon_sym_LBRACE] = ACTIONS(3535), - [anon_sym_SEMI] = ACTIONS(3535), - [anon_sym_exception] = ACTIONS(3535), - [anon_sym_module] = ACTIONS(3535), - [anon_sym_open] = ACTIONS(3535), - [anon_sym_include] = ACTIONS(3535), - [anon_sym_class] = ACTIONS(3535), - [anon_sym_object] = ACTIONS(3535), - [anon_sym_AMP] = ACTIONS(3535), - [anon_sym_POUND] = ACTIONS(3535), - [anon_sym_COLON_COLON] = ACTIONS(3537), - [anon_sym_LBRACK_PIPE] = ACTIONS(3537), - [anon_sym_else] = ACTIONS(3535), - [anon_sym_new] = ACTIONS(3535), - [anon_sym_LBRACE_LT] = ACTIONS(3537), - [anon_sym_begin] = ACTIONS(3535), - [sym_ocamlyacc_value] = ACTIONS(3537), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3535), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3537), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3535), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3537), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3537), - [aux_sym_number_token1] = ACTIONS(3537), - [anon_sym_SQUOTE] = ACTIONS(3537), - [anon_sym_DQUOTE] = ACTIONS(3537), - [sym_prefix_operator] = ACTIONS(3537), - [anon_sym_PLUS_DOT] = ACTIONS(3535), - [anon_sym_DASH_DOT] = ACTIONS(3535), - [sym_hash_operator] = ACTIONS(3537), - [aux_sym__pow_operator_token1] = ACTIONS(3537), - [anon_sym_lsl] = ACTIONS(3535), - [anon_sym_lsr] = ACTIONS(3535), - [anon_sym_asr] = ACTIONS(3535), - [aux_sym__mult_operator_token1] = ACTIONS(3535), - [anon_sym_mod] = ACTIONS(3535), - [anon_sym_land] = ACTIONS(3535), - [anon_sym_lor] = ACTIONS(3535), - [anon_sym_lxor] = ACTIONS(3535), - [aux_sym__add_operator_token1] = ACTIONS(3535), - [sym__concat_operator] = ACTIONS(3537), - [sym__rel_operator] = ACTIONS(3535), - [anon_sym_AMP_AMP] = ACTIONS(3535), - [anon_sym_or] = ACTIONS(3535), - [anon_sym_PIPE_PIPE] = ACTIONS(3535), - [sym_let_operator] = ACTIONS(3537), - [sym__capitalized_identifier] = ACTIONS(3537), - [aux_sym_directive_token1] = ACTIONS(3535), - [aux_sym_tag_token1] = ACTIONS(3537), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1881] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6052), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1881), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6125), - [aux_sym_let_binding_repeat1] = STATE(1873), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3714), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3716), - [anon_sym_val] = ACTIONS(3716), - [anon_sym_end] = ACTIONS(3716), - [anon_sym_inherit] = ACTIONS(3716), - [anon_sym_method] = ACTIONS(3716), - [anon_sym_initializer] = ACTIONS(3716), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3718), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3718), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3718), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1882] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6050), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1882), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6204), - [aux_sym_let_binding_repeat1] = STATE(1931), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3720), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3722), - [anon_sym_val] = ACTIONS(3722), - [anon_sym_end] = ACTIONS(3722), - [anon_sym_inherit] = ACTIONS(3722), - [anon_sym_method] = ACTIONS(3722), - [anon_sym_initializer] = ACTIONS(3722), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3724), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3724), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3724), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1883] = { - [sym_attribute] = STATE(1883), - [ts_builtin_sym_end] = ACTIONS(3351), - [sym__identifier] = ACTIONS(3349), - [anon_sym_SEMI_SEMI] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_QMARK] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_external] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_COMMA] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_COLON_EQ] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_true] = ACTIONS(3349), - [anon_sym_false] = ACTIONS(3349), - [anon_sym_DOT] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_exception] = ACTIONS(3349), - [anon_sym_module] = ACTIONS(3349), - [anon_sym_open] = ACTIONS(3349), - [anon_sym_include] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_object] = ACTIONS(3349), - [anon_sym_AMP] = ACTIONS(3349), - [anon_sym_POUND] = ACTIONS(3349), - [anon_sym_COLON_COLON] = ACTIONS(3351), - [anon_sym_LBRACK_PIPE] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_LBRACE_LT] = ACTIONS(3351), - [anon_sym_begin] = ACTIONS(3349), - [sym_ocamlyacc_value] = ACTIONS(3351), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3349), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3351), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3349), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3351), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3351), - [aux_sym_number_token1] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [sym_prefix_operator] = ACTIONS(3351), - [anon_sym_PLUS_DOT] = ACTIONS(3349), - [anon_sym_DASH_DOT] = ACTIONS(3349), - [sym_hash_operator] = ACTIONS(3351), - [aux_sym__pow_operator_token1] = ACTIONS(3351), - [anon_sym_lsl] = ACTIONS(3349), - [anon_sym_lsr] = ACTIONS(3349), - [anon_sym_asr] = ACTIONS(3349), - [aux_sym__mult_operator_token1] = ACTIONS(3349), - [anon_sym_mod] = ACTIONS(3349), - [anon_sym_land] = ACTIONS(3349), - [anon_sym_lor] = ACTIONS(3349), - [anon_sym_lxor] = ACTIONS(3349), - [aux_sym__add_operator_token1] = ACTIONS(3349), - [sym__concat_operator] = ACTIONS(3351), - [sym__rel_operator] = ACTIONS(3349), - [anon_sym_AMP_AMP] = ACTIONS(3349), - [anon_sym_or] = ACTIONS(3349), - [anon_sym_PIPE_PIPE] = ACTIONS(3349), - [sym_let_operator] = ACTIONS(3351), - [sym__capitalized_identifier] = ACTIONS(3351), - [aux_sym_directive_token1] = ACTIONS(3349), - [aux_sym_tag_token1] = ACTIONS(3351), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1884] = { - [sym_attribute] = STATE(1884), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym__identifier] = ACTIONS(3473), - [anon_sym_SEMI_SEMI] = ACTIONS(3475), - [anon_sym_let] = ACTIONS(3473), - [anon_sym_TILDE] = ACTIONS(3473), - [anon_sym_QMARK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3475), - [anon_sym_external] = ACTIONS(3473), - [anon_sym_type] = ACTIONS(3473), - [anon_sym_COMMA] = ACTIONS(3475), - [anon_sym_PLUS] = ACTIONS(3473), - [anon_sym_DASH] = ACTIONS(3473), - [anon_sym_COLON_EQ] = ACTIONS(3475), - [anon_sym_PIPE] = ACTIONS(3473), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [anon_sym_DOT] = ACTIONS(3475), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_SEMI] = ACTIONS(3473), - [anon_sym_exception] = ACTIONS(3473), - [anon_sym_module] = ACTIONS(3473), - [anon_sym_open] = ACTIONS(3473), - [anon_sym_include] = ACTIONS(3473), - [anon_sym_class] = ACTIONS(3473), - [anon_sym_object] = ACTIONS(3473), - [anon_sym_AMP] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3473), - [anon_sym_COLON_COLON] = ACTIONS(3475), - [anon_sym_LBRACK_PIPE] = ACTIONS(3475), - [anon_sym_else] = ACTIONS(3473), - [anon_sym_new] = ACTIONS(3473), - [anon_sym_LBRACE_LT] = ACTIONS(3475), - [anon_sym_begin] = ACTIONS(3473), - [sym_ocamlyacc_value] = ACTIONS(3475), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3473), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3475), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3473), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3475), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3475), - [aux_sym_number_token1] = ACTIONS(3475), - [anon_sym_SQUOTE] = ACTIONS(3475), - [anon_sym_DQUOTE] = ACTIONS(3475), - [sym_prefix_operator] = ACTIONS(3475), - [anon_sym_PLUS_DOT] = ACTIONS(3473), - [anon_sym_DASH_DOT] = ACTIONS(3473), - [sym_hash_operator] = ACTIONS(3475), - [aux_sym__pow_operator_token1] = ACTIONS(3475), - [anon_sym_lsl] = ACTIONS(3473), - [anon_sym_lsr] = ACTIONS(3473), - [anon_sym_asr] = ACTIONS(3473), - [aux_sym__mult_operator_token1] = ACTIONS(3473), - [anon_sym_mod] = ACTIONS(3473), - [anon_sym_land] = ACTIONS(3473), - [anon_sym_lor] = ACTIONS(3473), - [anon_sym_lxor] = ACTIONS(3473), - [aux_sym__add_operator_token1] = ACTIONS(3473), - [sym__concat_operator] = ACTIONS(3475), - [sym__rel_operator] = ACTIONS(3473), - [anon_sym_AMP_AMP] = ACTIONS(3473), - [anon_sym_or] = ACTIONS(3473), - [anon_sym_PIPE_PIPE] = ACTIONS(3473), - [sym_let_operator] = ACTIONS(3475), - [sym__capitalized_identifier] = ACTIONS(3475), - [aux_sym_directive_token1] = ACTIONS(3473), - [aux_sym_tag_token1] = ACTIONS(3475), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1885] = { - [sym_attribute] = STATE(1885), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym__identifier] = ACTIONS(3481), - [anon_sym_SEMI_SEMI] = ACTIONS(3483), - [anon_sym_let] = ACTIONS(3481), - [anon_sym_TILDE] = ACTIONS(3481), - [anon_sym_QMARK] = ACTIONS(3481), - [anon_sym_LPAREN] = ACTIONS(3483), - [anon_sym_external] = ACTIONS(3481), - [anon_sym_type] = ACTIONS(3481), - [anon_sym_COMMA] = ACTIONS(3483), - [anon_sym_PLUS] = ACTIONS(3481), - [anon_sym_DASH] = ACTIONS(3481), - [anon_sym_COLON_EQ] = ACTIONS(3483), - [anon_sym_PIPE] = ACTIONS(3481), - [anon_sym_LBRACK] = ACTIONS(3481), - [anon_sym_true] = ACTIONS(3481), - [anon_sym_false] = ACTIONS(3481), - [anon_sym_DOT] = ACTIONS(3483), - [anon_sym_LBRACE] = ACTIONS(3481), - [anon_sym_SEMI] = ACTIONS(3481), - [anon_sym_exception] = ACTIONS(3481), - [anon_sym_module] = ACTIONS(3481), - [anon_sym_open] = ACTIONS(3481), - [anon_sym_include] = ACTIONS(3481), - [anon_sym_class] = ACTIONS(3481), - [anon_sym_object] = ACTIONS(3481), - [anon_sym_AMP] = ACTIONS(3481), - [anon_sym_POUND] = ACTIONS(3481), - [anon_sym_COLON_COLON] = ACTIONS(3483), - [anon_sym_LBRACK_PIPE] = ACTIONS(3483), - [anon_sym_else] = ACTIONS(3481), - [anon_sym_new] = ACTIONS(3481), - [anon_sym_LBRACE_LT] = ACTIONS(3483), - [anon_sym_begin] = ACTIONS(3481), - [sym_ocamlyacc_value] = ACTIONS(3483), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3481), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3483), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3481), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3483), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3483), - [aux_sym_number_token1] = ACTIONS(3483), - [anon_sym_SQUOTE] = ACTIONS(3483), - [anon_sym_DQUOTE] = ACTIONS(3483), - [sym_prefix_operator] = ACTIONS(3483), - [anon_sym_PLUS_DOT] = ACTIONS(3481), - [anon_sym_DASH_DOT] = ACTIONS(3481), - [sym_hash_operator] = ACTIONS(3483), - [aux_sym__pow_operator_token1] = ACTIONS(3483), - [anon_sym_lsl] = ACTIONS(3481), - [anon_sym_lsr] = ACTIONS(3481), - [anon_sym_asr] = ACTIONS(3481), - [aux_sym__mult_operator_token1] = ACTIONS(3481), - [anon_sym_mod] = ACTIONS(3481), - [anon_sym_land] = ACTIONS(3481), - [anon_sym_lor] = ACTIONS(3481), - [anon_sym_lxor] = ACTIONS(3481), - [aux_sym__add_operator_token1] = ACTIONS(3481), - [sym__concat_operator] = ACTIONS(3483), - [sym__rel_operator] = ACTIONS(3481), - [anon_sym_AMP_AMP] = ACTIONS(3481), - [anon_sym_or] = ACTIONS(3481), - [anon_sym_PIPE_PIPE] = ACTIONS(3481), - [sym_let_operator] = ACTIONS(3483), - [sym__capitalized_identifier] = ACTIONS(3483), - [aux_sym_directive_token1] = ACTIONS(3481), - [aux_sym_tag_token1] = ACTIONS(3483), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1886] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6109), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1886), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6137), - [aux_sym_let_binding_repeat1] = STATE(1882), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3726), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3728), - [anon_sym_val] = ACTIONS(3728), - [anon_sym_end] = ACTIONS(3728), - [anon_sym_inherit] = ACTIONS(3728), - [anon_sym_method] = ACTIONS(3728), - [anon_sym_initializer] = ACTIONS(3728), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3730), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3730), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3730), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1887] = { - [sym_attribute] = STATE(1887), - [ts_builtin_sym_end] = ACTIONS(3339), - [sym__identifier] = ACTIONS(3337), - [anon_sym_SEMI_SEMI] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_QMARK] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_external] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_COMMA] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_COLON_EQ] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_true] = ACTIONS(3337), - [anon_sym_false] = ACTIONS(3337), - [anon_sym_DOT] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_exception] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_open] = ACTIONS(3337), - [anon_sym_include] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_AMP] = ACTIONS(3337), - [anon_sym_POUND] = ACTIONS(3337), - [anon_sym_COLON_COLON] = ACTIONS(3339), - [anon_sym_LBRACK_PIPE] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_LBRACE_LT] = ACTIONS(3339), - [anon_sym_begin] = ACTIONS(3337), - [sym_ocamlyacc_value] = ACTIONS(3339), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3337), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3339), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3337), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3339), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3339), - [aux_sym_number_token1] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [sym_prefix_operator] = ACTIONS(3339), - [anon_sym_PLUS_DOT] = ACTIONS(3337), - [anon_sym_DASH_DOT] = ACTIONS(3337), - [sym_hash_operator] = ACTIONS(3339), - [aux_sym__pow_operator_token1] = ACTIONS(3339), - [anon_sym_lsl] = ACTIONS(3337), - [anon_sym_lsr] = ACTIONS(3337), - [anon_sym_asr] = ACTIONS(3337), - [aux_sym__mult_operator_token1] = ACTIONS(3337), - [anon_sym_mod] = ACTIONS(3337), - [anon_sym_land] = ACTIONS(3337), - [anon_sym_lor] = ACTIONS(3337), - [anon_sym_lxor] = ACTIONS(3337), - [aux_sym__add_operator_token1] = ACTIONS(3337), - [sym__concat_operator] = ACTIONS(3339), - [sym__rel_operator] = ACTIONS(3337), - [anon_sym_AMP_AMP] = ACTIONS(3337), - [anon_sym_or] = ACTIONS(3337), - [anon_sym_PIPE_PIPE] = ACTIONS(3337), - [sym_let_operator] = ACTIONS(3339), - [sym__capitalized_identifier] = ACTIONS(3339), - [aux_sym_directive_token1] = ACTIONS(3337), - [aux_sym_tag_token1] = ACTIONS(3339), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1888] = { - [sym_attribute] = STATE(1888), - [ts_builtin_sym_end] = ACTIONS(3307), - [sym__identifier] = ACTIONS(3305), - [anon_sym_SEMI_SEMI] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3305), - [anon_sym_TILDE] = ACTIONS(3305), - [anon_sym_QMARK] = ACTIONS(3305), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_external] = ACTIONS(3305), - [anon_sym_type] = ACTIONS(3305), - [anon_sym_COMMA] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_COLON_EQ] = ACTIONS(3307), - [anon_sym_PIPE] = ACTIONS(3305), - [anon_sym_LBRACK] = ACTIONS(3305), - [anon_sym_true] = ACTIONS(3305), - [anon_sym_false] = ACTIONS(3305), - [anon_sym_DOT] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3305), - [anon_sym_SEMI] = ACTIONS(3305), - [anon_sym_exception] = ACTIONS(3305), - [anon_sym_module] = ACTIONS(3305), - [anon_sym_open] = ACTIONS(3305), - [anon_sym_include] = ACTIONS(3305), - [anon_sym_class] = ACTIONS(3305), - [anon_sym_object] = ACTIONS(3305), - [anon_sym_AMP] = ACTIONS(3305), - [anon_sym_POUND] = ACTIONS(3305), - [anon_sym_COLON_COLON] = ACTIONS(3307), - [anon_sym_LBRACK_PIPE] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3305), - [anon_sym_new] = ACTIONS(3305), - [anon_sym_LBRACE_LT] = ACTIONS(3307), - [anon_sym_begin] = ACTIONS(3305), - [sym_ocamlyacc_value] = ACTIONS(3307), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3305), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3307), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3305), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3307), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3307), - [aux_sym_number_token1] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [sym_prefix_operator] = ACTIONS(3307), - [anon_sym_PLUS_DOT] = ACTIONS(3305), - [anon_sym_DASH_DOT] = ACTIONS(3305), - [sym_hash_operator] = ACTIONS(3307), - [aux_sym__pow_operator_token1] = ACTIONS(3307), - [anon_sym_lsl] = ACTIONS(3305), - [anon_sym_lsr] = ACTIONS(3305), - [anon_sym_asr] = ACTIONS(3305), - [aux_sym__mult_operator_token1] = ACTIONS(3305), - [anon_sym_mod] = ACTIONS(3305), - [anon_sym_land] = ACTIONS(3305), - [anon_sym_lor] = ACTIONS(3305), - [anon_sym_lxor] = ACTIONS(3305), - [aux_sym__add_operator_token1] = ACTIONS(3305), - [sym__concat_operator] = ACTIONS(3307), - [sym__rel_operator] = ACTIONS(3305), - [anon_sym_AMP_AMP] = ACTIONS(3305), - [anon_sym_or] = ACTIONS(3305), - [anon_sym_PIPE_PIPE] = ACTIONS(3305), - [sym_let_operator] = ACTIONS(3307), - [sym__capitalized_identifier] = ACTIONS(3307), - [aux_sym_directive_token1] = ACTIONS(3305), - [aux_sym_tag_token1] = ACTIONS(3307), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1889] = { - [sym_attribute] = STATE(1889), - [ts_builtin_sym_end] = ACTIONS(3371), - [sym__identifier] = ACTIONS(3369), - [anon_sym_SEMI_SEMI] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_QMARK] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_external] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_COMMA] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_COLON_EQ] = ACTIONS(3371), - [anon_sym_PIPE] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_true] = ACTIONS(3369), - [anon_sym_false] = ACTIONS(3369), - [anon_sym_DOT] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_exception] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_open] = ACTIONS(3369), - [anon_sym_include] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_AMP] = ACTIONS(3369), - [anon_sym_POUND] = ACTIONS(3369), - [anon_sym_COLON_COLON] = ACTIONS(3371), - [anon_sym_LBRACK_PIPE] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_LBRACE_LT] = ACTIONS(3371), - [anon_sym_begin] = ACTIONS(3369), - [sym_ocamlyacc_value] = ACTIONS(3371), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3369), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3371), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3369), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3371), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3371), - [aux_sym_number_token1] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [sym_prefix_operator] = ACTIONS(3371), - [anon_sym_PLUS_DOT] = ACTIONS(3369), - [anon_sym_DASH_DOT] = ACTIONS(3369), - [sym_hash_operator] = ACTIONS(3371), - [aux_sym__pow_operator_token1] = ACTIONS(3371), - [anon_sym_lsl] = ACTIONS(3369), - [anon_sym_lsr] = ACTIONS(3369), - [anon_sym_asr] = ACTIONS(3369), - [aux_sym__mult_operator_token1] = ACTIONS(3369), - [anon_sym_mod] = ACTIONS(3369), - [anon_sym_land] = ACTIONS(3369), - [anon_sym_lor] = ACTIONS(3369), - [anon_sym_lxor] = ACTIONS(3369), - [aux_sym__add_operator_token1] = ACTIONS(3369), - [sym__concat_operator] = ACTIONS(3371), - [sym__rel_operator] = ACTIONS(3369), - [anon_sym_AMP_AMP] = ACTIONS(3369), - [anon_sym_or] = ACTIONS(3369), - [anon_sym_PIPE_PIPE] = ACTIONS(3369), - [sym_let_operator] = ACTIONS(3371), - [sym__capitalized_identifier] = ACTIONS(3371), - [aux_sym_directive_token1] = ACTIONS(3369), - [aux_sym_tag_token1] = ACTIONS(3371), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1890] = { - [sym_attribute] = STATE(1890), - [ts_builtin_sym_end] = ACTIONS(3331), - [sym__identifier] = ACTIONS(3329), - [anon_sym_SEMI_SEMI] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_QMARK] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_external] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_COMMA] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_COLON_EQ] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_true] = ACTIONS(3329), - [anon_sym_false] = ACTIONS(3329), - [anon_sym_DOT] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_exception] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_open] = ACTIONS(3329), - [anon_sym_include] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_AMP] = ACTIONS(3329), - [anon_sym_POUND] = ACTIONS(3329), - [anon_sym_COLON_COLON] = ACTIONS(3331), - [anon_sym_LBRACK_PIPE] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_LBRACE_LT] = ACTIONS(3331), - [anon_sym_begin] = ACTIONS(3329), - [sym_ocamlyacc_value] = ACTIONS(3331), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3329), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3331), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3329), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3331), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3331), - [aux_sym_number_token1] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [sym_prefix_operator] = ACTIONS(3331), - [anon_sym_PLUS_DOT] = ACTIONS(3329), - [anon_sym_DASH_DOT] = ACTIONS(3329), - [sym_hash_operator] = ACTIONS(3331), - [aux_sym__pow_operator_token1] = ACTIONS(3331), - [anon_sym_lsl] = ACTIONS(3329), - [anon_sym_lsr] = ACTIONS(3329), - [anon_sym_asr] = ACTIONS(3329), - [aux_sym__mult_operator_token1] = ACTIONS(3329), - [anon_sym_mod] = ACTIONS(3329), - [anon_sym_land] = ACTIONS(3329), - [anon_sym_lor] = ACTIONS(3329), - [anon_sym_lxor] = ACTIONS(3329), - [aux_sym__add_operator_token1] = ACTIONS(3329), - [sym__concat_operator] = ACTIONS(3331), - [sym__rel_operator] = ACTIONS(3329), - [anon_sym_AMP_AMP] = ACTIONS(3329), - [anon_sym_or] = ACTIONS(3329), - [anon_sym_PIPE_PIPE] = ACTIONS(3329), - [sym_let_operator] = ACTIONS(3331), - [sym__capitalized_identifier] = ACTIONS(3331), - [aux_sym_directive_token1] = ACTIONS(3329), - [aux_sym_tag_token1] = ACTIONS(3331), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1891] = { - [sym_attribute] = STATE(1891), - [ts_builtin_sym_end] = ACTIONS(3323), - [sym__identifier] = ACTIONS(3321), - [anon_sym_SEMI_SEMI] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3321), - [anon_sym_TILDE] = ACTIONS(3321), - [anon_sym_QMARK] = ACTIONS(3321), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_external] = ACTIONS(3321), - [anon_sym_type] = ACTIONS(3321), - [anon_sym_COMMA] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3321), - [anon_sym_DASH] = ACTIONS(3321), - [anon_sym_COLON_EQ] = ACTIONS(3323), - [anon_sym_PIPE] = ACTIONS(3321), - [anon_sym_LBRACK] = ACTIONS(3321), - [anon_sym_true] = ACTIONS(3321), - [anon_sym_false] = ACTIONS(3321), - [anon_sym_DOT] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3321), - [anon_sym_SEMI] = ACTIONS(3321), - [anon_sym_exception] = ACTIONS(3321), - [anon_sym_module] = ACTIONS(3321), - [anon_sym_open] = ACTIONS(3321), - [anon_sym_include] = ACTIONS(3321), - [anon_sym_class] = ACTIONS(3321), - [anon_sym_object] = ACTIONS(3321), - [anon_sym_AMP] = ACTIONS(3321), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_COLON_COLON] = ACTIONS(3323), - [anon_sym_LBRACK_PIPE] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3321), - [anon_sym_new] = ACTIONS(3321), - [anon_sym_LBRACE_LT] = ACTIONS(3323), - [anon_sym_begin] = ACTIONS(3321), - [sym_ocamlyacc_value] = ACTIONS(3323), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3321), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3323), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3321), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3323), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3323), - [aux_sym_number_token1] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [sym_prefix_operator] = ACTIONS(3323), - [anon_sym_PLUS_DOT] = ACTIONS(3321), - [anon_sym_DASH_DOT] = ACTIONS(3321), - [sym_hash_operator] = ACTIONS(3323), - [aux_sym__pow_operator_token1] = ACTIONS(3323), - [anon_sym_lsl] = ACTIONS(3321), - [anon_sym_lsr] = ACTIONS(3321), - [anon_sym_asr] = ACTIONS(3321), - [aux_sym__mult_operator_token1] = ACTIONS(3321), - [anon_sym_mod] = ACTIONS(3321), - [anon_sym_land] = ACTIONS(3321), - [anon_sym_lor] = ACTIONS(3321), - [anon_sym_lxor] = ACTIONS(3321), - [aux_sym__add_operator_token1] = ACTIONS(3321), - [sym__concat_operator] = ACTIONS(3323), - [sym__rel_operator] = ACTIONS(3321), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_or] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3321), - [sym_let_operator] = ACTIONS(3323), - [sym__capitalized_identifier] = ACTIONS(3323), - [aux_sym_directive_token1] = ACTIONS(3321), - [aux_sym_tag_token1] = ACTIONS(3323), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1892] = { - [sym_attribute] = STATE(1892), - [ts_builtin_sym_end] = ACTIONS(3195), - [sym__identifier] = ACTIONS(3193), - [anon_sym_SEMI_SEMI] = ACTIONS(3195), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_external] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_true] = ACTIONS(3193), - [anon_sym_false] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3195), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_exception] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_open] = ACTIONS(3193), - [anon_sym_include] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_COLON_COLON] = ACTIONS(3195), - [anon_sym_LBRACK_PIPE] = ACTIONS(3195), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_LBRACE_LT] = ACTIONS(3195), - [anon_sym_begin] = ACTIONS(3193), - [sym_ocamlyacc_value] = ACTIONS(3195), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3193), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3195), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3193), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3195), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3195), - [aux_sym_number_token1] = ACTIONS(3195), - [anon_sym_SQUOTE] = ACTIONS(3195), - [anon_sym_DQUOTE] = ACTIONS(3195), - [sym_prefix_operator] = ACTIONS(3195), - [anon_sym_PLUS_DOT] = ACTIONS(3193), - [anon_sym_DASH_DOT] = ACTIONS(3193), - [sym_hash_operator] = ACTIONS(3195), - [aux_sym__pow_operator_token1] = ACTIONS(3195), - [anon_sym_lsl] = ACTIONS(3193), - [anon_sym_lsr] = ACTIONS(3193), - [anon_sym_asr] = ACTIONS(3193), - [aux_sym__mult_operator_token1] = ACTIONS(3193), - [anon_sym_mod] = ACTIONS(3193), - [anon_sym_land] = ACTIONS(3193), - [anon_sym_lor] = ACTIONS(3193), - [anon_sym_lxor] = ACTIONS(3193), - [aux_sym__add_operator_token1] = ACTIONS(3193), - [sym__concat_operator] = ACTIONS(3195), - [sym__rel_operator] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [sym_let_operator] = ACTIONS(3195), - [sym__capitalized_identifier] = ACTIONS(3195), - [aux_sym_directive_token1] = ACTIONS(3193), - [aux_sym_tag_token1] = ACTIONS(3195), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1893] = { - [sym_attribute] = STATE(1893), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym__identifier] = ACTIONS(3509), - [anon_sym_SEMI_SEMI] = ACTIONS(3511), - [anon_sym_let] = ACTIONS(3509), - [anon_sym_TILDE] = ACTIONS(3509), - [anon_sym_QMARK] = ACTIONS(3509), - [anon_sym_LPAREN] = ACTIONS(3511), - [anon_sym_external] = ACTIONS(3509), - [anon_sym_type] = ACTIONS(3509), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3509), - [anon_sym_DASH] = ACTIONS(3509), - [anon_sym_COLON_EQ] = ACTIONS(3511), - [anon_sym_PIPE] = ACTIONS(3509), - [anon_sym_LBRACK] = ACTIONS(3509), - [anon_sym_true] = ACTIONS(3509), - [anon_sym_false] = ACTIONS(3509), - [anon_sym_DOT] = ACTIONS(3511), - [anon_sym_LBRACE] = ACTIONS(3509), - [anon_sym_SEMI] = ACTIONS(3509), - [anon_sym_exception] = ACTIONS(3509), - [anon_sym_module] = ACTIONS(3509), - [anon_sym_open] = ACTIONS(3509), - [anon_sym_include] = ACTIONS(3509), - [anon_sym_class] = ACTIONS(3509), - [anon_sym_object] = ACTIONS(3509), - [anon_sym_AMP] = ACTIONS(3509), - [anon_sym_POUND] = ACTIONS(3509), - [anon_sym_COLON_COLON] = ACTIONS(3511), - [anon_sym_LBRACK_PIPE] = ACTIONS(3511), - [anon_sym_else] = ACTIONS(3509), - [anon_sym_new] = ACTIONS(3509), - [anon_sym_LBRACE_LT] = ACTIONS(3511), - [anon_sym_begin] = ACTIONS(3509), - [sym_ocamlyacc_value] = ACTIONS(3511), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3509), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3511), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3509), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3511), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3511), - [aux_sym_number_token1] = ACTIONS(3511), - [anon_sym_SQUOTE] = ACTIONS(3511), - [anon_sym_DQUOTE] = ACTIONS(3511), - [sym_prefix_operator] = ACTIONS(3511), - [anon_sym_PLUS_DOT] = ACTIONS(3509), - [anon_sym_DASH_DOT] = ACTIONS(3509), - [sym_hash_operator] = ACTIONS(3511), - [aux_sym__pow_operator_token1] = ACTIONS(3511), - [anon_sym_lsl] = ACTIONS(3509), - [anon_sym_lsr] = ACTIONS(3509), - [anon_sym_asr] = ACTIONS(3509), - [aux_sym__mult_operator_token1] = ACTIONS(3509), - [anon_sym_mod] = ACTIONS(3509), - [anon_sym_land] = ACTIONS(3509), - [anon_sym_lor] = ACTIONS(3509), - [anon_sym_lxor] = ACTIONS(3509), - [aux_sym__add_operator_token1] = ACTIONS(3509), - [sym__concat_operator] = ACTIONS(3511), - [sym__rel_operator] = ACTIONS(3509), - [anon_sym_AMP_AMP] = ACTIONS(3509), - [anon_sym_or] = ACTIONS(3509), - [anon_sym_PIPE_PIPE] = ACTIONS(3509), - [sym_let_operator] = ACTIONS(3511), - [sym__capitalized_identifier] = ACTIONS(3511), - [aux_sym_directive_token1] = ACTIONS(3509), - [aux_sym_tag_token1] = ACTIONS(3511), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1894] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6121), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1894), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6129), - [aux_sym_let_binding_repeat1] = STATE(1931), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3732), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3734), - [anon_sym_val] = ACTIONS(3734), - [anon_sym_end] = ACTIONS(3734), - [anon_sym_inherit] = ACTIONS(3734), - [anon_sym_method] = ACTIONS(3734), - [anon_sym_initializer] = ACTIONS(3734), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3736), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3736), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3736), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1895] = { - [sym_attribute] = STATE(1895), - [ts_builtin_sym_end] = ACTIONS(3563), - [sym__identifier] = ACTIONS(3561), - [anon_sym_SEMI_SEMI] = ACTIONS(3563), - [anon_sym_let] = ACTIONS(3561), - [anon_sym_TILDE] = ACTIONS(3561), - [anon_sym_QMARK] = ACTIONS(3561), - [anon_sym_LPAREN] = ACTIONS(3563), - [anon_sym_external] = ACTIONS(3561), - [anon_sym_type] = ACTIONS(3561), - [anon_sym_COMMA] = ACTIONS(3563), - [anon_sym_PLUS] = ACTIONS(3561), - [anon_sym_DASH] = ACTIONS(3561), - [anon_sym_COLON_EQ] = ACTIONS(3563), - [anon_sym_PIPE] = ACTIONS(3561), - [anon_sym_LBRACK] = ACTIONS(3561), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [anon_sym_DOT] = ACTIONS(3563), - [anon_sym_LBRACE] = ACTIONS(3561), - [anon_sym_SEMI] = ACTIONS(3561), - [anon_sym_exception] = ACTIONS(3561), - [anon_sym_module] = ACTIONS(3561), - [anon_sym_open] = ACTIONS(3561), - [anon_sym_include] = ACTIONS(3561), - [anon_sym_class] = ACTIONS(3561), - [anon_sym_object] = ACTIONS(3561), - [anon_sym_AMP] = ACTIONS(3561), - [anon_sym_POUND] = ACTIONS(3561), - [anon_sym_COLON_COLON] = ACTIONS(3563), - [anon_sym_LBRACK_PIPE] = ACTIONS(3563), - [anon_sym_else] = ACTIONS(3561), - [anon_sym_new] = ACTIONS(3561), - [anon_sym_LBRACE_LT] = ACTIONS(3563), - [anon_sym_begin] = ACTIONS(3561), - [sym_ocamlyacc_value] = ACTIONS(3563), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3561), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3563), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3561), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3563), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3563), - [aux_sym_number_token1] = ACTIONS(3563), - [anon_sym_SQUOTE] = ACTIONS(3563), - [anon_sym_DQUOTE] = ACTIONS(3563), - [sym_prefix_operator] = ACTIONS(3563), - [anon_sym_PLUS_DOT] = ACTIONS(3561), - [anon_sym_DASH_DOT] = ACTIONS(3561), - [sym_hash_operator] = ACTIONS(3563), - [aux_sym__pow_operator_token1] = ACTIONS(3563), - [anon_sym_lsl] = ACTIONS(3561), - [anon_sym_lsr] = ACTIONS(3561), - [anon_sym_asr] = ACTIONS(3561), - [aux_sym__mult_operator_token1] = ACTIONS(3561), - [anon_sym_mod] = ACTIONS(3561), - [anon_sym_land] = ACTIONS(3561), - [anon_sym_lor] = ACTIONS(3561), - [anon_sym_lxor] = ACTIONS(3561), - [aux_sym__add_operator_token1] = ACTIONS(3561), - [sym__concat_operator] = ACTIONS(3563), - [sym__rel_operator] = ACTIONS(3561), - [anon_sym_AMP_AMP] = ACTIONS(3561), - [anon_sym_or] = ACTIONS(3561), - [anon_sym_PIPE_PIPE] = ACTIONS(3561), - [sym_let_operator] = ACTIONS(3563), - [sym__capitalized_identifier] = ACTIONS(3563), - [aux_sym_directive_token1] = ACTIONS(3561), - [aux_sym_tag_token1] = ACTIONS(3563), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1896] = { - [sym_attribute] = STATE(1896), - [ts_builtin_sym_end] = ACTIONS(3343), - [sym__identifier] = ACTIONS(3341), - [anon_sym_SEMI_SEMI] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3341), - [anon_sym_TILDE] = ACTIONS(3341), - [anon_sym_QMARK] = ACTIONS(3341), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_external] = ACTIONS(3341), - [anon_sym_type] = ACTIONS(3341), - [anon_sym_COMMA] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3341), - [anon_sym_DASH] = ACTIONS(3341), - [anon_sym_COLON_EQ] = ACTIONS(3343), - [anon_sym_PIPE] = ACTIONS(3341), - [anon_sym_LBRACK] = ACTIONS(3341), - [anon_sym_true] = ACTIONS(3341), - [anon_sym_false] = ACTIONS(3341), - [anon_sym_DOT] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3341), - [anon_sym_SEMI] = ACTIONS(3341), - [anon_sym_exception] = ACTIONS(3341), - [anon_sym_module] = ACTIONS(3341), - [anon_sym_open] = ACTIONS(3341), - [anon_sym_include] = ACTIONS(3341), - [anon_sym_class] = ACTIONS(3341), - [anon_sym_object] = ACTIONS(3341), - [anon_sym_AMP] = ACTIONS(3341), - [anon_sym_POUND] = ACTIONS(3341), - [anon_sym_COLON_COLON] = ACTIONS(3343), - [anon_sym_LBRACK_PIPE] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_new] = ACTIONS(3341), - [anon_sym_LBRACE_LT] = ACTIONS(3343), - [anon_sym_begin] = ACTIONS(3341), - [sym_ocamlyacc_value] = ACTIONS(3343), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3341), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3343), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3341), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3343), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3343), - [aux_sym_number_token1] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [sym_prefix_operator] = ACTIONS(3343), - [anon_sym_PLUS_DOT] = ACTIONS(3341), - [anon_sym_DASH_DOT] = ACTIONS(3341), - [sym_hash_operator] = ACTIONS(3343), - [aux_sym__pow_operator_token1] = ACTIONS(3343), - [anon_sym_lsl] = ACTIONS(3341), - [anon_sym_lsr] = ACTIONS(3341), - [anon_sym_asr] = ACTIONS(3341), - [aux_sym__mult_operator_token1] = ACTIONS(3341), - [anon_sym_mod] = ACTIONS(3341), - [anon_sym_land] = ACTIONS(3341), - [anon_sym_lor] = ACTIONS(3341), - [anon_sym_lxor] = ACTIONS(3341), - [aux_sym__add_operator_token1] = ACTIONS(3341), - [sym__concat_operator] = ACTIONS(3343), - [sym__rel_operator] = ACTIONS(3341), - [anon_sym_AMP_AMP] = ACTIONS(3341), - [anon_sym_or] = ACTIONS(3341), - [anon_sym_PIPE_PIPE] = ACTIONS(3341), - [sym_let_operator] = ACTIONS(3343), - [sym__capitalized_identifier] = ACTIONS(3343), - [aux_sym_directive_token1] = ACTIONS(3341), - [aux_sym_tag_token1] = ACTIONS(3343), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1897] = { - [sym_attribute] = STATE(1897), - [ts_builtin_sym_end] = ACTIONS(3335), - [sym__identifier] = ACTIONS(3333), - [anon_sym_SEMI_SEMI] = ACTIONS(3335), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_QMARK] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3335), - [anon_sym_external] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_COMMA] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_COLON_EQ] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_true] = ACTIONS(3333), - [anon_sym_false] = ACTIONS(3333), - [anon_sym_DOT] = ACTIONS(3335), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_exception] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_open] = ACTIONS(3333), - [anon_sym_include] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_AMP] = ACTIONS(3333), - [anon_sym_POUND] = ACTIONS(3333), - [anon_sym_COLON_COLON] = ACTIONS(3335), - [anon_sym_LBRACK_PIPE] = ACTIONS(3335), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_LBRACE_LT] = ACTIONS(3335), - [anon_sym_begin] = ACTIONS(3333), - [sym_ocamlyacc_value] = ACTIONS(3335), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3333), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3335), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3333), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3335), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3335), - [aux_sym_number_token1] = ACTIONS(3335), - [anon_sym_SQUOTE] = ACTIONS(3335), - [anon_sym_DQUOTE] = ACTIONS(3335), - [sym_prefix_operator] = ACTIONS(3335), - [anon_sym_PLUS_DOT] = ACTIONS(3333), - [anon_sym_DASH_DOT] = ACTIONS(3333), - [sym_hash_operator] = ACTIONS(3335), - [aux_sym__pow_operator_token1] = ACTIONS(3335), - [anon_sym_lsl] = ACTIONS(3333), - [anon_sym_lsr] = ACTIONS(3333), - [anon_sym_asr] = ACTIONS(3333), - [aux_sym__mult_operator_token1] = ACTIONS(3333), - [anon_sym_mod] = ACTIONS(3333), - [anon_sym_land] = ACTIONS(3333), - [anon_sym_lor] = ACTIONS(3333), - [anon_sym_lxor] = ACTIONS(3333), - [aux_sym__add_operator_token1] = ACTIONS(3333), - [sym__concat_operator] = ACTIONS(3335), - [sym__rel_operator] = ACTIONS(3333), - [anon_sym_AMP_AMP] = ACTIONS(3333), - [anon_sym_or] = ACTIONS(3333), - [anon_sym_PIPE_PIPE] = ACTIONS(3333), - [sym_let_operator] = ACTIONS(3335), - [sym__capitalized_identifier] = ACTIONS(3335), - [aux_sym_directive_token1] = ACTIONS(3333), - [aux_sym_tag_token1] = ACTIONS(3335), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1898] = { - [sym_attribute] = STATE(1898), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym__identifier] = ACTIONS(3539), - [anon_sym_SEMI_SEMI] = ACTIONS(3541), - [anon_sym_let] = ACTIONS(3539), - [anon_sym_TILDE] = ACTIONS(3539), - [anon_sym_QMARK] = ACTIONS(3539), - [anon_sym_LPAREN] = ACTIONS(3541), - [anon_sym_external] = ACTIONS(3539), - [anon_sym_type] = ACTIONS(3539), - [anon_sym_COMMA] = ACTIONS(3541), - [anon_sym_PLUS] = ACTIONS(3539), - [anon_sym_DASH] = ACTIONS(3539), - [anon_sym_COLON_EQ] = ACTIONS(3541), - [anon_sym_PIPE] = ACTIONS(3539), - [anon_sym_LBRACK] = ACTIONS(3539), - [anon_sym_true] = ACTIONS(3539), - [anon_sym_false] = ACTIONS(3539), - [anon_sym_DOT] = ACTIONS(3541), - [anon_sym_LBRACE] = ACTIONS(3539), - [anon_sym_SEMI] = ACTIONS(3539), - [anon_sym_exception] = ACTIONS(3539), - [anon_sym_module] = ACTIONS(3539), - [anon_sym_open] = ACTIONS(3539), - [anon_sym_include] = ACTIONS(3539), - [anon_sym_class] = ACTIONS(3539), - [anon_sym_object] = ACTIONS(3539), - [anon_sym_AMP] = ACTIONS(3539), - [anon_sym_POUND] = ACTIONS(3539), - [anon_sym_COLON_COLON] = ACTIONS(3541), - [anon_sym_LBRACK_PIPE] = ACTIONS(3541), - [anon_sym_else] = ACTIONS(3539), - [anon_sym_new] = ACTIONS(3539), - [anon_sym_LBRACE_LT] = ACTIONS(3541), - [anon_sym_begin] = ACTIONS(3539), - [sym_ocamlyacc_value] = ACTIONS(3541), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3539), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3541), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3539), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3541), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3541), - [aux_sym_number_token1] = ACTIONS(3541), - [anon_sym_SQUOTE] = ACTIONS(3541), - [anon_sym_DQUOTE] = ACTIONS(3541), - [sym_prefix_operator] = ACTIONS(3541), - [anon_sym_PLUS_DOT] = ACTIONS(3539), - [anon_sym_DASH_DOT] = ACTIONS(3539), - [sym_hash_operator] = ACTIONS(3541), - [aux_sym__pow_operator_token1] = ACTIONS(3541), - [anon_sym_lsl] = ACTIONS(3539), - [anon_sym_lsr] = ACTIONS(3539), - [anon_sym_asr] = ACTIONS(3539), - [aux_sym__mult_operator_token1] = ACTIONS(3539), - [anon_sym_mod] = ACTIONS(3539), - [anon_sym_land] = ACTIONS(3539), - [anon_sym_lor] = ACTIONS(3539), - [anon_sym_lxor] = ACTIONS(3539), - [aux_sym__add_operator_token1] = ACTIONS(3539), - [sym__concat_operator] = ACTIONS(3541), - [sym__rel_operator] = ACTIONS(3539), - [anon_sym_AMP_AMP] = ACTIONS(3539), - [anon_sym_or] = ACTIONS(3539), - [anon_sym_PIPE_PIPE] = ACTIONS(3539), - [sym_let_operator] = ACTIONS(3541), - [sym__capitalized_identifier] = ACTIONS(3541), - [aux_sym_directive_token1] = ACTIONS(3539), - [aux_sym_tag_token1] = ACTIONS(3541), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1899] = { - [sym_attribute] = STATE(1899), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym__identifier] = ACTIONS(3477), - [anon_sym_SEMI_SEMI] = ACTIONS(3479), - [anon_sym_let] = ACTIONS(3477), - [anon_sym_TILDE] = ACTIONS(3477), - [anon_sym_QMARK] = ACTIONS(3477), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_external] = ACTIONS(3477), - [anon_sym_type] = ACTIONS(3477), - [anon_sym_COMMA] = ACTIONS(3479), - [anon_sym_PLUS] = ACTIONS(3477), - [anon_sym_DASH] = ACTIONS(3477), - [anon_sym_COLON_EQ] = ACTIONS(3479), - [anon_sym_PIPE] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_true] = ACTIONS(3477), - [anon_sym_false] = ACTIONS(3477), - [anon_sym_DOT] = ACTIONS(3479), - [anon_sym_LBRACE] = ACTIONS(3477), - [anon_sym_SEMI] = ACTIONS(3477), - [anon_sym_exception] = ACTIONS(3477), - [anon_sym_module] = ACTIONS(3477), - [anon_sym_open] = ACTIONS(3477), - [anon_sym_include] = ACTIONS(3477), - [anon_sym_class] = ACTIONS(3477), - [anon_sym_object] = ACTIONS(3477), - [anon_sym_AMP] = ACTIONS(3477), - [anon_sym_POUND] = ACTIONS(3477), - [anon_sym_COLON_COLON] = ACTIONS(3479), - [anon_sym_LBRACK_PIPE] = ACTIONS(3479), - [anon_sym_else] = ACTIONS(3477), - [anon_sym_new] = ACTIONS(3477), - [anon_sym_LBRACE_LT] = ACTIONS(3479), - [anon_sym_begin] = ACTIONS(3477), - [sym_ocamlyacc_value] = ACTIONS(3479), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3477), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3479), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3477), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3479), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3479), - [aux_sym_number_token1] = ACTIONS(3479), - [anon_sym_SQUOTE] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym_prefix_operator] = ACTIONS(3479), - [anon_sym_PLUS_DOT] = ACTIONS(3477), - [anon_sym_DASH_DOT] = ACTIONS(3477), - [sym_hash_operator] = ACTIONS(3479), - [aux_sym__pow_operator_token1] = ACTIONS(3479), - [anon_sym_lsl] = ACTIONS(3477), - [anon_sym_lsr] = ACTIONS(3477), - [anon_sym_asr] = ACTIONS(3477), - [aux_sym__mult_operator_token1] = ACTIONS(3477), - [anon_sym_mod] = ACTIONS(3477), - [anon_sym_land] = ACTIONS(3477), - [anon_sym_lor] = ACTIONS(3477), - [anon_sym_lxor] = ACTIONS(3477), - [aux_sym__add_operator_token1] = ACTIONS(3477), - [sym__concat_operator] = ACTIONS(3479), - [sym__rel_operator] = ACTIONS(3477), - [anon_sym_AMP_AMP] = ACTIONS(3477), - [anon_sym_or] = ACTIONS(3477), - [anon_sym_PIPE_PIPE] = ACTIONS(3477), - [sym_let_operator] = ACTIONS(3479), - [sym__capitalized_identifier] = ACTIONS(3479), - [aux_sym_directive_token1] = ACTIONS(3477), - [aux_sym_tag_token1] = ACTIONS(3479), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1900] = { - [sym_attribute] = STATE(1900), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym__identifier] = ACTIONS(3547), - [anon_sym_SEMI_SEMI] = ACTIONS(3549), - [anon_sym_let] = ACTIONS(3547), - [anon_sym_TILDE] = ACTIONS(3547), - [anon_sym_QMARK] = ACTIONS(3547), - [anon_sym_LPAREN] = ACTIONS(3549), - [anon_sym_external] = ACTIONS(3547), - [anon_sym_type] = ACTIONS(3547), - [anon_sym_COMMA] = ACTIONS(3549), - [anon_sym_PLUS] = ACTIONS(3547), - [anon_sym_DASH] = ACTIONS(3547), - [anon_sym_COLON_EQ] = ACTIONS(3549), - [anon_sym_PIPE] = ACTIONS(3547), - [anon_sym_LBRACK] = ACTIONS(3547), - [anon_sym_true] = ACTIONS(3547), - [anon_sym_false] = ACTIONS(3547), - [anon_sym_DOT] = ACTIONS(3549), - [anon_sym_LBRACE] = ACTIONS(3547), - [anon_sym_SEMI] = ACTIONS(3547), - [anon_sym_exception] = ACTIONS(3547), - [anon_sym_module] = ACTIONS(3547), - [anon_sym_open] = ACTIONS(3547), - [anon_sym_include] = ACTIONS(3547), - [anon_sym_class] = ACTIONS(3547), - [anon_sym_object] = ACTIONS(3547), - [anon_sym_AMP] = ACTIONS(3547), - [anon_sym_POUND] = ACTIONS(3547), - [anon_sym_COLON_COLON] = ACTIONS(3549), - [anon_sym_LBRACK_PIPE] = ACTIONS(3549), - [anon_sym_else] = ACTIONS(3547), - [anon_sym_new] = ACTIONS(3547), - [anon_sym_LBRACE_LT] = ACTIONS(3549), - [anon_sym_begin] = ACTIONS(3547), - [sym_ocamlyacc_value] = ACTIONS(3549), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3547), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3549), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3547), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3549), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3549), - [aux_sym_number_token1] = ACTIONS(3549), - [anon_sym_SQUOTE] = ACTIONS(3549), - [anon_sym_DQUOTE] = ACTIONS(3549), - [sym_prefix_operator] = ACTIONS(3549), - [anon_sym_PLUS_DOT] = ACTIONS(3547), - [anon_sym_DASH_DOT] = ACTIONS(3547), - [sym_hash_operator] = ACTIONS(3549), - [aux_sym__pow_operator_token1] = ACTIONS(3549), - [anon_sym_lsl] = ACTIONS(3547), - [anon_sym_lsr] = ACTIONS(3547), - [anon_sym_asr] = ACTIONS(3547), - [aux_sym__mult_operator_token1] = ACTIONS(3547), - [anon_sym_mod] = ACTIONS(3547), - [anon_sym_land] = ACTIONS(3547), - [anon_sym_lor] = ACTIONS(3547), - [anon_sym_lxor] = ACTIONS(3547), - [aux_sym__add_operator_token1] = ACTIONS(3547), - [sym__concat_operator] = ACTIONS(3549), - [sym__rel_operator] = ACTIONS(3547), - [anon_sym_AMP_AMP] = ACTIONS(3547), - [anon_sym_or] = ACTIONS(3547), - [anon_sym_PIPE_PIPE] = ACTIONS(3547), - [sym_let_operator] = ACTIONS(3549), - [sym__capitalized_identifier] = ACTIONS(3549), - [aux_sym_directive_token1] = ACTIONS(3547), - [aux_sym_tag_token1] = ACTIONS(3549), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1901] = { - [sym_attribute] = STATE(1901), - [ts_builtin_sym_end] = ACTIONS(3347), - [sym__identifier] = ACTIONS(3345), - [anon_sym_SEMI_SEMI] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_QMARK] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_external] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_COMMA] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_COLON_EQ] = ACTIONS(3347), - [anon_sym_PIPE] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_true] = ACTIONS(3345), - [anon_sym_false] = ACTIONS(3345), - [anon_sym_DOT] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_exception] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_open] = ACTIONS(3345), - [anon_sym_include] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_AMP] = ACTIONS(3345), - [anon_sym_POUND] = ACTIONS(3345), - [anon_sym_COLON_COLON] = ACTIONS(3347), - [anon_sym_LBRACK_PIPE] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_LBRACE_LT] = ACTIONS(3347), - [anon_sym_begin] = ACTIONS(3345), - [sym_ocamlyacc_value] = ACTIONS(3347), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3345), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3347), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3345), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3347), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3347), - [aux_sym_number_token1] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [sym_prefix_operator] = ACTIONS(3347), - [anon_sym_PLUS_DOT] = ACTIONS(3345), - [anon_sym_DASH_DOT] = ACTIONS(3345), - [sym_hash_operator] = ACTIONS(3347), - [aux_sym__pow_operator_token1] = ACTIONS(3347), - [anon_sym_lsl] = ACTIONS(3345), - [anon_sym_lsr] = ACTIONS(3345), - [anon_sym_asr] = ACTIONS(3345), - [aux_sym__mult_operator_token1] = ACTIONS(3345), - [anon_sym_mod] = ACTIONS(3345), - [anon_sym_land] = ACTIONS(3345), - [anon_sym_lor] = ACTIONS(3345), - [anon_sym_lxor] = ACTIONS(3345), - [aux_sym__add_operator_token1] = ACTIONS(3345), - [sym__concat_operator] = ACTIONS(3347), - [sym__rel_operator] = ACTIONS(3345), - [anon_sym_AMP_AMP] = ACTIONS(3345), - [anon_sym_or] = ACTIONS(3345), - [anon_sym_PIPE_PIPE] = ACTIONS(3345), - [sym_let_operator] = ACTIONS(3347), - [sym__capitalized_identifier] = ACTIONS(3347), - [aux_sym_directive_token1] = ACTIONS(3345), - [aux_sym_tag_token1] = ACTIONS(3347), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1902] = { - [sym_attribute] = STATE(1902), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym__identifier] = ACTIONS(3465), - [anon_sym_SEMI_SEMI] = ACTIONS(3467), - [anon_sym_let] = ACTIONS(3465), - [anon_sym_TILDE] = ACTIONS(3465), - [anon_sym_QMARK] = ACTIONS(3465), - [anon_sym_LPAREN] = ACTIONS(3467), - [anon_sym_external] = ACTIONS(3465), - [anon_sym_type] = ACTIONS(3465), - [anon_sym_COMMA] = ACTIONS(3467), - [anon_sym_PLUS] = ACTIONS(3465), - [anon_sym_DASH] = ACTIONS(3465), - [anon_sym_COLON_EQ] = ACTIONS(3467), - [anon_sym_PIPE] = ACTIONS(3465), - [anon_sym_LBRACK] = ACTIONS(3465), - [anon_sym_true] = ACTIONS(3465), - [anon_sym_false] = ACTIONS(3465), - [anon_sym_DOT] = ACTIONS(3467), - [anon_sym_LBRACE] = ACTIONS(3465), - [anon_sym_SEMI] = ACTIONS(3465), - [anon_sym_exception] = ACTIONS(3465), - [anon_sym_module] = ACTIONS(3465), - [anon_sym_open] = ACTIONS(3465), - [anon_sym_include] = ACTIONS(3465), - [anon_sym_class] = ACTIONS(3465), - [anon_sym_object] = ACTIONS(3465), - [anon_sym_AMP] = ACTIONS(3465), - [anon_sym_POUND] = ACTIONS(3465), - [anon_sym_COLON_COLON] = ACTIONS(3467), - [anon_sym_LBRACK_PIPE] = ACTIONS(3467), - [anon_sym_else] = ACTIONS(3465), - [anon_sym_new] = ACTIONS(3465), - [anon_sym_LBRACE_LT] = ACTIONS(3467), - [anon_sym_begin] = ACTIONS(3465), - [sym_ocamlyacc_value] = ACTIONS(3467), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3465), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3465), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3467), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3467), - [aux_sym_number_token1] = ACTIONS(3467), - [anon_sym_SQUOTE] = ACTIONS(3467), - [anon_sym_DQUOTE] = ACTIONS(3467), - [sym_prefix_operator] = ACTIONS(3467), - [anon_sym_PLUS_DOT] = ACTIONS(3465), - [anon_sym_DASH_DOT] = ACTIONS(3465), - [sym_hash_operator] = ACTIONS(3467), - [aux_sym__pow_operator_token1] = ACTIONS(3467), - [anon_sym_lsl] = ACTIONS(3465), - [anon_sym_lsr] = ACTIONS(3465), - [anon_sym_asr] = ACTIONS(3465), - [aux_sym__mult_operator_token1] = ACTIONS(3465), - [anon_sym_mod] = ACTIONS(3465), - [anon_sym_land] = ACTIONS(3465), - [anon_sym_lor] = ACTIONS(3465), - [anon_sym_lxor] = ACTIONS(3465), - [aux_sym__add_operator_token1] = ACTIONS(3465), - [sym__concat_operator] = ACTIONS(3467), - [sym__rel_operator] = ACTIONS(3465), - [anon_sym_AMP_AMP] = ACTIONS(3465), - [anon_sym_or] = ACTIONS(3465), - [anon_sym_PIPE_PIPE] = ACTIONS(3465), - [sym_let_operator] = ACTIONS(3467), - [sym__capitalized_identifier] = ACTIONS(3467), - [aux_sym_directive_token1] = ACTIONS(3465), - [aux_sym_tag_token1] = ACTIONS(3467), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1903] = { - [sym_attribute] = STATE(1903), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym__identifier] = ACTIONS(3543), - [anon_sym_SEMI_SEMI] = ACTIONS(3545), - [anon_sym_let] = ACTIONS(3543), - [anon_sym_TILDE] = ACTIONS(3543), - [anon_sym_QMARK] = ACTIONS(3543), - [anon_sym_LPAREN] = ACTIONS(3545), - [anon_sym_external] = ACTIONS(3543), - [anon_sym_type] = ACTIONS(3543), - [anon_sym_COMMA] = ACTIONS(3545), - [anon_sym_PLUS] = ACTIONS(3543), - [anon_sym_DASH] = ACTIONS(3543), - [anon_sym_COLON_EQ] = ACTIONS(3545), - [anon_sym_PIPE] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3543), - [anon_sym_true] = ACTIONS(3543), - [anon_sym_false] = ACTIONS(3543), - [anon_sym_DOT] = ACTIONS(3545), - [anon_sym_LBRACE] = ACTIONS(3543), - [anon_sym_SEMI] = ACTIONS(3543), - [anon_sym_exception] = ACTIONS(3543), - [anon_sym_module] = ACTIONS(3543), - [anon_sym_open] = ACTIONS(3543), - [anon_sym_include] = ACTIONS(3543), - [anon_sym_class] = ACTIONS(3543), - [anon_sym_object] = ACTIONS(3543), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_POUND] = ACTIONS(3543), - [anon_sym_COLON_COLON] = ACTIONS(3545), - [anon_sym_LBRACK_PIPE] = ACTIONS(3545), - [anon_sym_else] = ACTIONS(3543), - [anon_sym_new] = ACTIONS(3543), - [anon_sym_LBRACE_LT] = ACTIONS(3545), - [anon_sym_begin] = ACTIONS(3543), - [sym_ocamlyacc_value] = ACTIONS(3545), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3543), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3545), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3543), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3545), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3545), - [aux_sym_number_token1] = ACTIONS(3545), - [anon_sym_SQUOTE] = ACTIONS(3545), - [anon_sym_DQUOTE] = ACTIONS(3545), - [sym_prefix_operator] = ACTIONS(3545), - [anon_sym_PLUS_DOT] = ACTIONS(3543), - [anon_sym_DASH_DOT] = ACTIONS(3543), - [sym_hash_operator] = ACTIONS(3545), - [aux_sym__pow_operator_token1] = ACTIONS(3545), - [anon_sym_lsl] = ACTIONS(3543), - [anon_sym_lsr] = ACTIONS(3543), - [anon_sym_asr] = ACTIONS(3543), - [aux_sym__mult_operator_token1] = ACTIONS(3543), - [anon_sym_mod] = ACTIONS(3543), - [anon_sym_land] = ACTIONS(3543), - [anon_sym_lor] = ACTIONS(3543), - [anon_sym_lxor] = ACTIONS(3543), - [aux_sym__add_operator_token1] = ACTIONS(3543), - [sym__concat_operator] = ACTIONS(3545), - [sym__rel_operator] = ACTIONS(3543), - [anon_sym_AMP_AMP] = ACTIONS(3543), - [anon_sym_or] = ACTIONS(3543), - [anon_sym_PIPE_PIPE] = ACTIONS(3543), - [sym_let_operator] = ACTIONS(3545), - [sym__capitalized_identifier] = ACTIONS(3545), - [aux_sym_directive_token1] = ACTIONS(3543), - [aux_sym_tag_token1] = ACTIONS(3545), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1904] = { - [sym_attribute] = STATE(1904), - [ts_builtin_sym_end] = ACTIONS(3455), - [sym__identifier] = ACTIONS(3453), - [anon_sym_SEMI_SEMI] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_external] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_COMMA] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_COLON_EQ] = ACTIONS(3455), - [anon_sym_PIPE] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_true] = ACTIONS(3453), - [anon_sym_false] = ACTIONS(3453), - [anon_sym_DOT] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_exception] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_open] = ACTIONS(3453), - [anon_sym_include] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_AMP] = ACTIONS(3453), - [anon_sym_POUND] = ACTIONS(3453), - [anon_sym_COLON_COLON] = ACTIONS(3455), - [anon_sym_LBRACK_PIPE] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_LBRACE_LT] = ACTIONS(3455), - [anon_sym_begin] = ACTIONS(3453), - [sym_ocamlyacc_value] = ACTIONS(3455), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3453), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3455), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3453), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3455), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3455), - [aux_sym_number_token1] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [sym_prefix_operator] = ACTIONS(3455), - [anon_sym_PLUS_DOT] = ACTIONS(3453), - [anon_sym_DASH_DOT] = ACTIONS(3453), - [sym_hash_operator] = ACTIONS(3455), - [aux_sym__pow_operator_token1] = ACTIONS(3455), - [anon_sym_lsl] = ACTIONS(3453), - [anon_sym_lsr] = ACTIONS(3453), - [anon_sym_asr] = ACTIONS(3453), - [aux_sym__mult_operator_token1] = ACTIONS(3453), - [anon_sym_mod] = ACTIONS(3453), - [anon_sym_land] = ACTIONS(3453), - [anon_sym_lor] = ACTIONS(3453), - [anon_sym_lxor] = ACTIONS(3453), - [aux_sym__add_operator_token1] = ACTIONS(3453), - [sym__concat_operator] = ACTIONS(3455), - [sym__rel_operator] = ACTIONS(3453), - [anon_sym_AMP_AMP] = ACTIONS(3453), - [anon_sym_or] = ACTIONS(3453), - [anon_sym_PIPE_PIPE] = ACTIONS(3453), - [sym_let_operator] = ACTIONS(3455), - [sym__capitalized_identifier] = ACTIONS(3455), - [aux_sym_directive_token1] = ACTIONS(3453), - [aux_sym_tag_token1] = ACTIONS(3455), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1905] = { - [sym_attribute] = STATE(1905), - [ts_builtin_sym_end] = ACTIONS(3359), - [sym__identifier] = ACTIONS(3357), - [anon_sym_SEMI_SEMI] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_QMARK] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_external] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_COMMA] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_COLON_EQ] = ACTIONS(3359), - [anon_sym_PIPE] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_true] = ACTIONS(3357), - [anon_sym_false] = ACTIONS(3357), - [anon_sym_DOT] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_exception] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_open] = ACTIONS(3357), - [anon_sym_include] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_AMP] = ACTIONS(3357), - [anon_sym_POUND] = ACTIONS(3357), - [anon_sym_COLON_COLON] = ACTIONS(3359), - [anon_sym_LBRACK_PIPE] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_LBRACE_LT] = ACTIONS(3359), - [anon_sym_begin] = ACTIONS(3357), - [sym_ocamlyacc_value] = ACTIONS(3359), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3357), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3359), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3357), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3359), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3359), - [aux_sym_number_token1] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [sym_prefix_operator] = ACTIONS(3359), - [anon_sym_PLUS_DOT] = ACTIONS(3357), - [anon_sym_DASH_DOT] = ACTIONS(3357), - [sym_hash_operator] = ACTIONS(3359), - [aux_sym__pow_operator_token1] = ACTIONS(3359), - [anon_sym_lsl] = ACTIONS(3357), - [anon_sym_lsr] = ACTIONS(3357), - [anon_sym_asr] = ACTIONS(3357), - [aux_sym__mult_operator_token1] = ACTIONS(3357), - [anon_sym_mod] = ACTIONS(3357), - [anon_sym_land] = ACTIONS(3357), - [anon_sym_lor] = ACTIONS(3357), - [anon_sym_lxor] = ACTIONS(3357), - [aux_sym__add_operator_token1] = ACTIONS(3357), - [sym__concat_operator] = ACTIONS(3359), - [sym__rel_operator] = ACTIONS(3357), - [anon_sym_AMP_AMP] = ACTIONS(3357), - [anon_sym_or] = ACTIONS(3357), - [anon_sym_PIPE_PIPE] = ACTIONS(3357), - [sym_let_operator] = ACTIONS(3359), - [sym__capitalized_identifier] = ACTIONS(3359), - [aux_sym_directive_token1] = ACTIONS(3357), - [aux_sym_tag_token1] = ACTIONS(3359), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1906] = { - [sym_attribute] = STATE(1906), - [ts_builtin_sym_end] = ACTIONS(3367), - [sym__identifier] = ACTIONS(3365), - [anon_sym_SEMI_SEMI] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3365), - [anon_sym_TILDE] = ACTIONS(3365), - [anon_sym_QMARK] = ACTIONS(3365), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_external] = ACTIONS(3365), - [anon_sym_type] = ACTIONS(3365), - [anon_sym_COMMA] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3365), - [anon_sym_DASH] = ACTIONS(3365), - [anon_sym_COLON_EQ] = ACTIONS(3367), - [anon_sym_PIPE] = ACTIONS(3365), - [anon_sym_LBRACK] = ACTIONS(3365), - [anon_sym_true] = ACTIONS(3365), - [anon_sym_false] = ACTIONS(3365), - [anon_sym_DOT] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3365), - [anon_sym_SEMI] = ACTIONS(3365), - [anon_sym_exception] = ACTIONS(3365), - [anon_sym_module] = ACTIONS(3365), - [anon_sym_open] = ACTIONS(3365), - [anon_sym_include] = ACTIONS(3365), - [anon_sym_class] = ACTIONS(3365), - [anon_sym_object] = ACTIONS(3365), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_POUND] = ACTIONS(3365), - [anon_sym_COLON_COLON] = ACTIONS(3367), - [anon_sym_LBRACK_PIPE] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3365), - [anon_sym_new] = ACTIONS(3365), - [anon_sym_LBRACE_LT] = ACTIONS(3367), - [anon_sym_begin] = ACTIONS(3365), - [sym_ocamlyacc_value] = ACTIONS(3367), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3365), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3367), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3365), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3367), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3367), - [aux_sym_number_token1] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [sym_prefix_operator] = ACTIONS(3367), - [anon_sym_PLUS_DOT] = ACTIONS(3365), - [anon_sym_DASH_DOT] = ACTIONS(3365), - [sym_hash_operator] = ACTIONS(3367), - [aux_sym__pow_operator_token1] = ACTIONS(3367), - [anon_sym_lsl] = ACTIONS(3365), - [anon_sym_lsr] = ACTIONS(3365), - [anon_sym_asr] = ACTIONS(3365), - [aux_sym__mult_operator_token1] = ACTIONS(3365), - [anon_sym_mod] = ACTIONS(3365), - [anon_sym_land] = ACTIONS(3365), - [anon_sym_lor] = ACTIONS(3365), - [anon_sym_lxor] = ACTIONS(3365), - [aux_sym__add_operator_token1] = ACTIONS(3365), - [sym__concat_operator] = ACTIONS(3367), - [sym__rel_operator] = ACTIONS(3365), - [anon_sym_AMP_AMP] = ACTIONS(3365), - [anon_sym_or] = ACTIONS(3365), - [anon_sym_PIPE_PIPE] = ACTIONS(3365), - [sym_let_operator] = ACTIONS(3367), - [sym__capitalized_identifier] = ACTIONS(3367), - [aux_sym_directive_token1] = ACTIONS(3365), - [aux_sym_tag_token1] = ACTIONS(3367), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1907] = { - [sym_attribute] = STATE(1907), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym__identifier] = ACTIONS(3557), - [anon_sym_SEMI_SEMI] = ACTIONS(3559), - [anon_sym_let] = ACTIONS(3557), - [anon_sym_TILDE] = ACTIONS(3557), - [anon_sym_QMARK] = ACTIONS(3557), - [anon_sym_LPAREN] = ACTIONS(3559), - [anon_sym_external] = ACTIONS(3557), - [anon_sym_type] = ACTIONS(3557), - [anon_sym_COMMA] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(3557), - [anon_sym_DASH] = ACTIONS(3557), - [anon_sym_COLON_EQ] = ACTIONS(3559), - [anon_sym_PIPE] = ACTIONS(3557), - [anon_sym_LBRACK] = ACTIONS(3557), - [anon_sym_true] = ACTIONS(3557), - [anon_sym_false] = ACTIONS(3557), - [anon_sym_DOT] = ACTIONS(3559), - [anon_sym_LBRACE] = ACTIONS(3557), - [anon_sym_SEMI] = ACTIONS(3557), - [anon_sym_exception] = ACTIONS(3557), - [anon_sym_module] = ACTIONS(3557), - [anon_sym_open] = ACTIONS(3557), - [anon_sym_include] = ACTIONS(3557), - [anon_sym_class] = ACTIONS(3557), - [anon_sym_object] = ACTIONS(3557), - [anon_sym_AMP] = ACTIONS(3557), - [anon_sym_POUND] = ACTIONS(3557), - [anon_sym_COLON_COLON] = ACTIONS(3559), - [anon_sym_LBRACK_PIPE] = ACTIONS(3559), - [anon_sym_else] = ACTIONS(3557), - [anon_sym_new] = ACTIONS(3557), - [anon_sym_LBRACE_LT] = ACTIONS(3559), - [anon_sym_begin] = ACTIONS(3557), - [sym_ocamlyacc_value] = ACTIONS(3559), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3557), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3559), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3557), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3559), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3559), - [aux_sym_number_token1] = ACTIONS(3559), - [anon_sym_SQUOTE] = ACTIONS(3559), - [anon_sym_DQUOTE] = ACTIONS(3559), - [sym_prefix_operator] = ACTIONS(3559), - [anon_sym_PLUS_DOT] = ACTIONS(3557), - [anon_sym_DASH_DOT] = ACTIONS(3557), - [sym_hash_operator] = ACTIONS(3559), - [aux_sym__pow_operator_token1] = ACTIONS(3559), - [anon_sym_lsl] = ACTIONS(3557), - [anon_sym_lsr] = ACTIONS(3557), - [anon_sym_asr] = ACTIONS(3557), - [aux_sym__mult_operator_token1] = ACTIONS(3557), - [anon_sym_mod] = ACTIONS(3557), - [anon_sym_land] = ACTIONS(3557), - [anon_sym_lor] = ACTIONS(3557), - [anon_sym_lxor] = ACTIONS(3557), - [aux_sym__add_operator_token1] = ACTIONS(3557), - [sym__concat_operator] = ACTIONS(3559), - [sym__rel_operator] = ACTIONS(3557), - [anon_sym_AMP_AMP] = ACTIONS(3557), - [anon_sym_or] = ACTIONS(3557), - [anon_sym_PIPE_PIPE] = ACTIONS(3557), - [sym_let_operator] = ACTIONS(3559), - [sym__capitalized_identifier] = ACTIONS(3559), - [aux_sym_directive_token1] = ACTIONS(3557), - [aux_sym_tag_token1] = ACTIONS(3559), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1908] = { - [sym_attribute] = STATE(1908), - [ts_builtin_sym_end] = ACTIONS(3379), - [sym__identifier] = ACTIONS(3377), - [anon_sym_SEMI_SEMI] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_QMARK] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_external] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_COMMA] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_COLON_EQ] = ACTIONS(3379), - [anon_sym_PIPE] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_true] = ACTIONS(3377), - [anon_sym_false] = ACTIONS(3377), - [anon_sym_DOT] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_exception] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_open] = ACTIONS(3377), - [anon_sym_include] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_AMP] = ACTIONS(3377), - [anon_sym_POUND] = ACTIONS(3377), - [anon_sym_COLON_COLON] = ACTIONS(3379), - [anon_sym_LBRACK_PIPE] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_LBRACE_LT] = ACTIONS(3379), - [anon_sym_begin] = ACTIONS(3377), - [sym_ocamlyacc_value] = ACTIONS(3379), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3377), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3379), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3377), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3379), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3379), - [aux_sym_number_token1] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [sym_prefix_operator] = ACTIONS(3379), - [anon_sym_PLUS_DOT] = ACTIONS(3377), - [anon_sym_DASH_DOT] = ACTIONS(3377), - [sym_hash_operator] = ACTIONS(3379), - [aux_sym__pow_operator_token1] = ACTIONS(3379), - [anon_sym_lsl] = ACTIONS(3377), - [anon_sym_lsr] = ACTIONS(3377), - [anon_sym_asr] = ACTIONS(3377), - [aux_sym__mult_operator_token1] = ACTIONS(3377), - [anon_sym_mod] = ACTIONS(3377), - [anon_sym_land] = ACTIONS(3377), - [anon_sym_lor] = ACTIONS(3377), - [anon_sym_lxor] = ACTIONS(3377), - [aux_sym__add_operator_token1] = ACTIONS(3377), - [sym__concat_operator] = ACTIONS(3379), - [sym__rel_operator] = ACTIONS(3377), - [anon_sym_AMP_AMP] = ACTIONS(3377), - [anon_sym_or] = ACTIONS(3377), - [anon_sym_PIPE_PIPE] = ACTIONS(3377), - [sym_let_operator] = ACTIONS(3379), - [sym__capitalized_identifier] = ACTIONS(3379), - [aux_sym_directive_token1] = ACTIONS(3377), - [aux_sym_tag_token1] = ACTIONS(3379), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1909] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(6095), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1909), - [sym_item_attribute] = STATE(4993), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6172), - [aux_sym_let_binding_repeat1] = STATE(1894), - [sym__identifier] = ACTIONS(2531), - [anon_sym_EQ] = ACTIONS(3738), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(3708), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_constraint] = ACTIONS(3740), - [anon_sym_val] = ACTIONS(3740), - [anon_sym_end] = ACTIONS(3740), - [anon_sym_inherit] = ACTIONS(3740), - [anon_sym_method] = ACTIONS(3740), - [anon_sym_initializer] = ACTIONS(3740), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(2924), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3742), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2571), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2573), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3742), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3742), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1910] = { - [sym_attribute] = STATE(1910), - [ts_builtin_sym_end] = ACTIONS(3163), - [sym__identifier] = ACTIONS(3161), - [anon_sym_SEMI_SEMI] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_external] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3161), - [anon_sym_true] = ACTIONS(3161), - [anon_sym_false] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_exception] = ACTIONS(3161), - [anon_sym_module] = ACTIONS(3161), - [anon_sym_open] = ACTIONS(3161), - [anon_sym_include] = ACTIONS(3161), - [anon_sym_class] = ACTIONS(3161), - [anon_sym_object] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_COLON_COLON] = ACTIONS(3163), - [anon_sym_LBRACK_PIPE] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3161), - [anon_sym_new] = ACTIONS(3161), - [anon_sym_LBRACE_LT] = ACTIONS(3163), - [anon_sym_begin] = ACTIONS(3161), - [sym_ocamlyacc_value] = ACTIONS(3163), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3161), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3163), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3161), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3163), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3163), - [aux_sym_number_token1] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [sym_prefix_operator] = ACTIONS(3163), - [anon_sym_PLUS_DOT] = ACTIONS(3161), - [anon_sym_DASH_DOT] = ACTIONS(3161), - [sym_hash_operator] = ACTIONS(3163), - [aux_sym__pow_operator_token1] = ACTIONS(3163), - [anon_sym_lsl] = ACTIONS(3161), - [anon_sym_lsr] = ACTIONS(3161), - [anon_sym_asr] = ACTIONS(3161), - [aux_sym__mult_operator_token1] = ACTIONS(3161), - [anon_sym_mod] = ACTIONS(3161), - [anon_sym_land] = ACTIONS(3161), - [anon_sym_lor] = ACTIONS(3161), - [anon_sym_lxor] = ACTIONS(3161), - [aux_sym__add_operator_token1] = ACTIONS(3161), - [sym__concat_operator] = ACTIONS(3163), - [sym__rel_operator] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [sym_let_operator] = ACTIONS(3163), - [sym__capitalized_identifier] = ACTIONS(3163), - [aux_sym_directive_token1] = ACTIONS(3161), - [aux_sym_tag_token1] = ACTIONS(3163), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1911] = { - [sym_attribute] = STATE(1911), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym__identifier] = ACTIONS(3551), - [anon_sym_SEMI_SEMI] = ACTIONS(3553), - [anon_sym_let] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_external] = ACTIONS(3551), - [anon_sym_type] = ACTIONS(3551), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3551), - [anon_sym_exception] = ACTIONS(3551), - [anon_sym_module] = ACTIONS(3551), - [anon_sym_open] = ACTIONS(3551), - [anon_sym_include] = ACTIONS(3551), - [anon_sym_class] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym_let_operator] = ACTIONS(3553), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_directive_token1] = ACTIONS(3551), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1912] = { - [sym_attribute] = STATE(1912), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym__identifier] = ACTIONS(3469), - [anon_sym_SEMI_SEMI] = ACTIONS(3471), - [anon_sym_let] = ACTIONS(3469), - [anon_sym_TILDE] = ACTIONS(3469), - [anon_sym_QMARK] = ACTIONS(3469), - [anon_sym_LPAREN] = ACTIONS(3471), - [anon_sym_external] = ACTIONS(3469), - [anon_sym_type] = ACTIONS(3469), - [anon_sym_COMMA] = ACTIONS(3471), - [anon_sym_PLUS] = ACTIONS(3469), - [anon_sym_DASH] = ACTIONS(3469), - [anon_sym_COLON_EQ] = ACTIONS(3471), - [anon_sym_PIPE] = ACTIONS(3469), - [anon_sym_LBRACK] = ACTIONS(3469), - [anon_sym_true] = ACTIONS(3469), - [anon_sym_false] = ACTIONS(3469), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_LBRACE] = ACTIONS(3469), - [anon_sym_SEMI] = ACTIONS(3469), - [anon_sym_exception] = ACTIONS(3469), - [anon_sym_module] = ACTIONS(3469), - [anon_sym_open] = ACTIONS(3469), - [anon_sym_include] = ACTIONS(3469), - [anon_sym_class] = ACTIONS(3469), - [anon_sym_object] = ACTIONS(3469), - [anon_sym_AMP] = ACTIONS(3469), - [anon_sym_POUND] = ACTIONS(3469), - [anon_sym_COLON_COLON] = ACTIONS(3471), - [anon_sym_LBRACK_PIPE] = ACTIONS(3471), - [anon_sym_else] = ACTIONS(3469), - [anon_sym_new] = ACTIONS(3469), - [anon_sym_LBRACE_LT] = ACTIONS(3471), - [anon_sym_begin] = ACTIONS(3469), - [sym_ocamlyacc_value] = ACTIONS(3471), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3469), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3471), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3469), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3471), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3471), - [aux_sym_number_token1] = ACTIONS(3471), - [anon_sym_SQUOTE] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(3471), - [sym_prefix_operator] = ACTIONS(3471), - [anon_sym_PLUS_DOT] = ACTIONS(3469), - [anon_sym_DASH_DOT] = ACTIONS(3469), - [sym_hash_operator] = ACTIONS(3471), - [aux_sym__pow_operator_token1] = ACTIONS(3471), - [anon_sym_lsl] = ACTIONS(3469), - [anon_sym_lsr] = ACTIONS(3469), - [anon_sym_asr] = ACTIONS(3469), - [aux_sym__mult_operator_token1] = ACTIONS(3469), - [anon_sym_mod] = ACTIONS(3469), - [anon_sym_land] = ACTIONS(3469), - [anon_sym_lor] = ACTIONS(3469), - [anon_sym_lxor] = ACTIONS(3469), - [aux_sym__add_operator_token1] = ACTIONS(3469), - [sym__concat_operator] = ACTIONS(3471), - [sym__rel_operator] = ACTIONS(3469), - [anon_sym_AMP_AMP] = ACTIONS(3469), - [anon_sym_or] = ACTIONS(3469), - [anon_sym_PIPE_PIPE] = ACTIONS(3469), - [sym_let_operator] = ACTIONS(3471), - [sym__capitalized_identifier] = ACTIONS(3471), - [aux_sym_directive_token1] = ACTIONS(3469), - [aux_sym_tag_token1] = ACTIONS(3471), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1913] = { - [sym_attribute] = STATE(1913), - [ts_builtin_sym_end] = ACTIONS(3439), - [sym__identifier] = ACTIONS(3437), - [anon_sym_SEMI_SEMI] = ACTIONS(3439), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_QMARK] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3439), - [anon_sym_external] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_COMMA] = ACTIONS(3439), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_COLON_EQ] = ACTIONS(3439), - [anon_sym_PIPE] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_true] = ACTIONS(3437), - [anon_sym_false] = ACTIONS(3437), - [anon_sym_DOT] = ACTIONS(3439), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_exception] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_open] = ACTIONS(3437), - [anon_sym_include] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_AMP] = ACTIONS(3437), - [anon_sym_POUND] = ACTIONS(3437), - [anon_sym_COLON_COLON] = ACTIONS(3439), - [anon_sym_LBRACK_PIPE] = ACTIONS(3439), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_LBRACE_LT] = ACTIONS(3439), - [anon_sym_begin] = ACTIONS(3437), - [sym_ocamlyacc_value] = ACTIONS(3439), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3437), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3439), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3437), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3439), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3439), - [aux_sym_number_token1] = ACTIONS(3439), - [anon_sym_SQUOTE] = ACTIONS(3439), - [anon_sym_DQUOTE] = ACTIONS(3439), - [sym_prefix_operator] = ACTIONS(3439), - [anon_sym_PLUS_DOT] = ACTIONS(3437), - [anon_sym_DASH_DOT] = ACTIONS(3437), - [sym_hash_operator] = ACTIONS(3439), - [aux_sym__pow_operator_token1] = ACTIONS(3439), - [anon_sym_lsl] = ACTIONS(3437), - [anon_sym_lsr] = ACTIONS(3437), - [anon_sym_asr] = ACTIONS(3437), - [aux_sym__mult_operator_token1] = ACTIONS(3437), - [anon_sym_mod] = ACTIONS(3437), - [anon_sym_land] = ACTIONS(3437), - [anon_sym_lor] = ACTIONS(3437), - [anon_sym_lxor] = ACTIONS(3437), - [aux_sym__add_operator_token1] = ACTIONS(3437), - [sym__concat_operator] = ACTIONS(3439), - [sym__rel_operator] = ACTIONS(3437), - [anon_sym_AMP_AMP] = ACTIONS(3437), - [anon_sym_or] = ACTIONS(3437), - [anon_sym_PIPE_PIPE] = ACTIONS(3437), - [sym_let_operator] = ACTIONS(3439), - [sym__capitalized_identifier] = ACTIONS(3439), - [aux_sym_directive_token1] = ACTIONS(3437), - [aux_sym_tag_token1] = ACTIONS(3439), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1914] = { - [sym_attribute] = STATE(1914), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym__identifier] = ACTIONS(3525), - [anon_sym_SEMI_SEMI] = ACTIONS(3527), - [anon_sym_let] = ACTIONS(3525), - [anon_sym_TILDE] = ACTIONS(3525), - [anon_sym_QMARK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3527), - [anon_sym_external] = ACTIONS(3525), - [anon_sym_type] = ACTIONS(3525), - [anon_sym_COMMA] = ACTIONS(3527), - [anon_sym_PLUS] = ACTIONS(3525), - [anon_sym_DASH] = ACTIONS(3525), - [anon_sym_COLON_EQ] = ACTIONS(3527), - [anon_sym_PIPE] = ACTIONS(3525), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [anon_sym_DOT] = ACTIONS(3529), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_SEMI] = ACTIONS(3525), - [anon_sym_exception] = ACTIONS(3525), - [anon_sym_module] = ACTIONS(3525), - [anon_sym_open] = ACTIONS(3525), - [anon_sym_include] = ACTIONS(3525), - [anon_sym_class] = ACTIONS(3525), - [anon_sym_object] = ACTIONS(3525), - [anon_sym_AMP] = ACTIONS(3525), - [anon_sym_POUND] = ACTIONS(3525), - [anon_sym_COLON_COLON] = ACTIONS(3527), - [anon_sym_LBRACK_PIPE] = ACTIONS(3527), - [anon_sym_else] = ACTIONS(3525), - [anon_sym_new] = ACTIONS(3525), - [anon_sym_LBRACE_LT] = ACTIONS(3527), - [anon_sym_begin] = ACTIONS(3525), - [sym_ocamlyacc_value] = ACTIONS(3527), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3525), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3527), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3525), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3527), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3527), - [aux_sym_number_token1] = ACTIONS(3527), - [anon_sym_SQUOTE] = ACTIONS(3527), - [anon_sym_DQUOTE] = ACTIONS(3527), - [sym_prefix_operator] = ACTIONS(3527), - [anon_sym_PLUS_DOT] = ACTIONS(3525), - [anon_sym_DASH_DOT] = ACTIONS(3525), - [sym_hash_operator] = ACTIONS(3527), - [aux_sym__pow_operator_token1] = ACTIONS(3527), - [anon_sym_lsl] = ACTIONS(3525), - [anon_sym_lsr] = ACTIONS(3525), - [anon_sym_asr] = ACTIONS(3525), - [aux_sym__mult_operator_token1] = ACTIONS(3525), - [anon_sym_mod] = ACTIONS(3525), - [anon_sym_land] = ACTIONS(3525), - [anon_sym_lor] = ACTIONS(3525), - [anon_sym_lxor] = ACTIONS(3525), - [aux_sym__add_operator_token1] = ACTIONS(3525), - [sym__concat_operator] = ACTIONS(3527), - [sym__rel_operator] = ACTIONS(3525), - [anon_sym_AMP_AMP] = ACTIONS(3525), - [anon_sym_or] = ACTIONS(3525), - [anon_sym_PIPE_PIPE] = ACTIONS(3525), - [sym_let_operator] = ACTIONS(3527), - [sym__capitalized_identifier] = ACTIONS(3527), - [aux_sym_directive_token1] = ACTIONS(3525), - [aux_sym_tag_token1] = ACTIONS(3527), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1915] = { - [sym_attribute] = STATE(1915), - [ts_builtin_sym_end] = ACTIONS(3319), - [sym__identifier] = ACTIONS(3317), - [anon_sym_SEMI_SEMI] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_QMARK] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_external] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_COMMA] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_COLON_EQ] = ACTIONS(3319), - [anon_sym_PIPE] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_true] = ACTIONS(3317), - [anon_sym_false] = ACTIONS(3317), - [anon_sym_DOT] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_exception] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_open] = ACTIONS(3317), - [anon_sym_include] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_POUND] = ACTIONS(3317), - [anon_sym_COLON_COLON] = ACTIONS(3319), - [anon_sym_LBRACK_PIPE] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_LBRACE_LT] = ACTIONS(3319), - [anon_sym_begin] = ACTIONS(3317), - [sym_ocamlyacc_value] = ACTIONS(3319), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3317), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3319), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3317), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3319), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3319), - [aux_sym_number_token1] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [sym_prefix_operator] = ACTIONS(3319), - [anon_sym_PLUS_DOT] = ACTIONS(3317), - [anon_sym_DASH_DOT] = ACTIONS(3317), - [sym_hash_operator] = ACTIONS(3319), - [aux_sym__pow_operator_token1] = ACTIONS(3319), - [anon_sym_lsl] = ACTIONS(3317), - [anon_sym_lsr] = ACTIONS(3317), - [anon_sym_asr] = ACTIONS(3317), - [aux_sym__mult_operator_token1] = ACTIONS(3317), - [anon_sym_mod] = ACTIONS(3317), - [anon_sym_land] = ACTIONS(3317), - [anon_sym_lor] = ACTIONS(3317), - [anon_sym_lxor] = ACTIONS(3317), - [aux_sym__add_operator_token1] = ACTIONS(3317), - [sym__concat_operator] = ACTIONS(3319), - [sym__rel_operator] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3317), - [anon_sym_or] = ACTIONS(3317), - [anon_sym_PIPE_PIPE] = ACTIONS(3317), - [sym_let_operator] = ACTIONS(3319), - [sym__capitalized_identifier] = ACTIONS(3319), - [aux_sym_directive_token1] = ACTIONS(3317), - [aux_sym_tag_token1] = ACTIONS(3319), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1916] = { - [sym_attribute] = STATE(1916), - [ts_builtin_sym_end] = ACTIONS(3167), - [sym__identifier] = ACTIONS(3165), - [anon_sym_SEMI_SEMI] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_external] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3165), - [anon_sym_true] = ACTIONS(3165), - [anon_sym_false] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_exception] = ACTIONS(3165), - [anon_sym_module] = ACTIONS(3165), - [anon_sym_open] = ACTIONS(3165), - [anon_sym_include] = ACTIONS(3165), - [anon_sym_class] = ACTIONS(3165), - [anon_sym_object] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_COLON_COLON] = ACTIONS(3167), - [anon_sym_LBRACK_PIPE] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3165), - [anon_sym_new] = ACTIONS(3165), - [anon_sym_LBRACE_LT] = ACTIONS(3167), - [anon_sym_begin] = ACTIONS(3165), - [sym_ocamlyacc_value] = ACTIONS(3167), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3165), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3167), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3165), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3167), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3167), - [aux_sym_number_token1] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [sym_prefix_operator] = ACTIONS(3167), - [anon_sym_PLUS_DOT] = ACTIONS(3165), - [anon_sym_DASH_DOT] = ACTIONS(3165), - [sym_hash_operator] = ACTIONS(3167), - [aux_sym__pow_operator_token1] = ACTIONS(3167), - [anon_sym_lsl] = ACTIONS(3165), - [anon_sym_lsr] = ACTIONS(3165), - [anon_sym_asr] = ACTIONS(3165), - [aux_sym__mult_operator_token1] = ACTIONS(3165), - [anon_sym_mod] = ACTIONS(3165), - [anon_sym_land] = ACTIONS(3165), - [anon_sym_lor] = ACTIONS(3165), - [anon_sym_lxor] = ACTIONS(3165), - [aux_sym__add_operator_token1] = ACTIONS(3165), - [sym__concat_operator] = ACTIONS(3167), - [sym__rel_operator] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [sym_let_operator] = ACTIONS(3167), - [sym__capitalized_identifier] = ACTIONS(3167), - [aux_sym_directive_token1] = ACTIONS(3165), - [aux_sym_tag_token1] = ACTIONS(3167), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1917] = { - [sym_attribute] = STATE(1917), - [ts_builtin_sym_end] = ACTIONS(3435), - [sym__identifier] = ACTIONS(3433), - [anon_sym_SEMI_SEMI] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_QMARK] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_external] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_COMMA] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_COLON_EQ] = ACTIONS(3435), - [anon_sym_PIPE] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_true] = ACTIONS(3433), - [anon_sym_false] = ACTIONS(3433), - [anon_sym_DOT] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_exception] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_open] = ACTIONS(3433), - [anon_sym_include] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_AMP] = ACTIONS(3433), - [anon_sym_POUND] = ACTIONS(3433), - [anon_sym_COLON_COLON] = ACTIONS(3435), - [anon_sym_LBRACK_PIPE] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_LBRACE_LT] = ACTIONS(3435), - [anon_sym_begin] = ACTIONS(3433), - [sym_ocamlyacc_value] = ACTIONS(3435), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3433), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3435), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3433), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3435), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3435), - [aux_sym_number_token1] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [sym_prefix_operator] = ACTIONS(3435), - [anon_sym_PLUS_DOT] = ACTIONS(3433), - [anon_sym_DASH_DOT] = ACTIONS(3433), - [sym_hash_operator] = ACTIONS(3435), - [aux_sym__pow_operator_token1] = ACTIONS(3435), - [anon_sym_lsl] = ACTIONS(3433), - [anon_sym_lsr] = ACTIONS(3433), - [anon_sym_asr] = ACTIONS(3433), - [aux_sym__mult_operator_token1] = ACTIONS(3433), - [anon_sym_mod] = ACTIONS(3433), - [anon_sym_land] = ACTIONS(3433), - [anon_sym_lor] = ACTIONS(3433), - [anon_sym_lxor] = ACTIONS(3433), - [aux_sym__add_operator_token1] = ACTIONS(3433), - [sym__concat_operator] = ACTIONS(3435), - [sym__rel_operator] = ACTIONS(3433), - [anon_sym_AMP_AMP] = ACTIONS(3433), - [anon_sym_or] = ACTIONS(3433), - [anon_sym_PIPE_PIPE] = ACTIONS(3433), - [sym_let_operator] = ACTIONS(3435), - [sym__capitalized_identifier] = ACTIONS(3435), - [aux_sym_directive_token1] = ACTIONS(3433), - [aux_sym_tag_token1] = ACTIONS(3435), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1918] = { - [sym_attribute] = STATE(1918), - [ts_builtin_sym_end] = ACTIONS(3315), - [sym__identifier] = ACTIONS(3313), - [anon_sym_SEMI_SEMI] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_QMARK] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_external] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_COMMA] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_COLON_EQ] = ACTIONS(3315), - [anon_sym_PIPE] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_true] = ACTIONS(3313), - [anon_sym_false] = ACTIONS(3313), - [anon_sym_DOT] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_exception] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_open] = ACTIONS(3313), - [anon_sym_include] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_AMP] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_COLON_COLON] = ACTIONS(3315), - [anon_sym_LBRACK_PIPE] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_LBRACE_LT] = ACTIONS(3315), - [anon_sym_begin] = ACTIONS(3313), - [sym_ocamlyacc_value] = ACTIONS(3315), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3313), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3315), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3313), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3315), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3315), - [aux_sym_number_token1] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [sym_prefix_operator] = ACTIONS(3315), - [anon_sym_PLUS_DOT] = ACTIONS(3313), - [anon_sym_DASH_DOT] = ACTIONS(3313), - [sym_hash_operator] = ACTIONS(3315), - [aux_sym__pow_operator_token1] = ACTIONS(3315), - [anon_sym_lsl] = ACTIONS(3313), - [anon_sym_lsr] = ACTIONS(3313), - [anon_sym_asr] = ACTIONS(3313), - [aux_sym__mult_operator_token1] = ACTIONS(3313), - [anon_sym_mod] = ACTIONS(3313), - [anon_sym_land] = ACTIONS(3313), - [anon_sym_lor] = ACTIONS(3313), - [anon_sym_lxor] = ACTIONS(3313), - [aux_sym__add_operator_token1] = ACTIONS(3313), - [sym__concat_operator] = ACTIONS(3315), - [sym__rel_operator] = ACTIONS(3313), - [anon_sym_AMP_AMP] = ACTIONS(3313), - [anon_sym_or] = ACTIONS(3313), - [anon_sym_PIPE_PIPE] = ACTIONS(3313), - [sym_let_operator] = ACTIONS(3315), - [sym__capitalized_identifier] = ACTIONS(3315), - [aux_sym_directive_token1] = ACTIONS(3313), - [aux_sym_tag_token1] = ACTIONS(3315), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1919] = { - [sym_attribute] = STATE(1919), - [ts_builtin_sym_end] = ACTIONS(3399), - [sym__identifier] = ACTIONS(3397), - [anon_sym_SEMI_SEMI] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_QMARK] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_external] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_COMMA] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_COLON_EQ] = ACTIONS(3399), - [anon_sym_PIPE] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_true] = ACTIONS(3397), - [anon_sym_false] = ACTIONS(3397), - [anon_sym_DOT] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_exception] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_open] = ACTIONS(3397), - [anon_sym_include] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_AMP] = ACTIONS(3397), - [anon_sym_POUND] = ACTIONS(3397), - [anon_sym_COLON_COLON] = ACTIONS(3399), - [anon_sym_LBRACK_PIPE] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_LBRACE_LT] = ACTIONS(3399), - [anon_sym_begin] = ACTIONS(3397), - [sym_ocamlyacc_value] = ACTIONS(3399), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3397), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3399), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3397), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3399), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3399), - [aux_sym_number_token1] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [sym_prefix_operator] = ACTIONS(3399), - [anon_sym_PLUS_DOT] = ACTIONS(3397), - [anon_sym_DASH_DOT] = ACTIONS(3397), - [sym_hash_operator] = ACTIONS(3399), - [aux_sym__pow_operator_token1] = ACTIONS(3399), - [anon_sym_lsl] = ACTIONS(3397), - [anon_sym_lsr] = ACTIONS(3397), - [anon_sym_asr] = ACTIONS(3397), - [aux_sym__mult_operator_token1] = ACTIONS(3397), - [anon_sym_mod] = ACTIONS(3397), - [anon_sym_land] = ACTIONS(3397), - [anon_sym_lor] = ACTIONS(3397), - [anon_sym_lxor] = ACTIONS(3397), - [aux_sym__add_operator_token1] = ACTIONS(3397), - [sym__concat_operator] = ACTIONS(3399), - [sym__rel_operator] = ACTIONS(3397), - [anon_sym_AMP_AMP] = ACTIONS(3397), - [anon_sym_or] = ACTIONS(3397), - [anon_sym_PIPE_PIPE] = ACTIONS(3397), - [sym_let_operator] = ACTIONS(3399), - [sym__capitalized_identifier] = ACTIONS(3399), - [aux_sym_directive_token1] = ACTIONS(3397), - [aux_sym_tag_token1] = ACTIONS(3399), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1920] = { - [sym_attribute] = STATE(1920), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym__identifier] = ACTIONS(3485), - [anon_sym_SEMI_SEMI] = ACTIONS(3487), - [anon_sym_let] = ACTIONS(3485), - [anon_sym_TILDE] = ACTIONS(3485), - [anon_sym_QMARK] = ACTIONS(3485), - [anon_sym_LPAREN] = ACTIONS(3487), - [anon_sym_external] = ACTIONS(3485), - [anon_sym_type] = ACTIONS(3485), - [anon_sym_COMMA] = ACTIONS(3487), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_COLON_EQ] = ACTIONS(3487), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_LBRACK] = ACTIONS(3485), - [anon_sym_true] = ACTIONS(3485), - [anon_sym_false] = ACTIONS(3485), - [anon_sym_DOT] = ACTIONS(3487), - [anon_sym_LBRACE] = ACTIONS(3485), - [anon_sym_SEMI] = ACTIONS(3485), - [anon_sym_exception] = ACTIONS(3485), - [anon_sym_module] = ACTIONS(3485), - [anon_sym_open] = ACTIONS(3485), - [anon_sym_include] = ACTIONS(3485), - [anon_sym_class] = ACTIONS(3485), - [anon_sym_object] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3485), - [anon_sym_POUND] = ACTIONS(3485), - [anon_sym_COLON_COLON] = ACTIONS(3487), - [anon_sym_LBRACK_PIPE] = ACTIONS(3487), - [anon_sym_else] = ACTIONS(3485), - [anon_sym_new] = ACTIONS(3485), - [anon_sym_LBRACE_LT] = ACTIONS(3487), - [anon_sym_begin] = ACTIONS(3485), - [sym_ocamlyacc_value] = ACTIONS(3487), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3485), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3487), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3485), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3487), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3487), - [aux_sym_number_token1] = ACTIONS(3487), - [anon_sym_SQUOTE] = ACTIONS(3487), - [anon_sym_DQUOTE] = ACTIONS(3487), - [sym_prefix_operator] = ACTIONS(3487), - [anon_sym_PLUS_DOT] = ACTIONS(3485), - [anon_sym_DASH_DOT] = ACTIONS(3485), - [sym_hash_operator] = ACTIONS(3487), - [aux_sym__pow_operator_token1] = ACTIONS(3487), - [anon_sym_lsl] = ACTIONS(3485), - [anon_sym_lsr] = ACTIONS(3485), - [anon_sym_asr] = ACTIONS(3485), - [aux_sym__mult_operator_token1] = ACTIONS(3485), - [anon_sym_mod] = ACTIONS(3485), - [anon_sym_land] = ACTIONS(3485), - [anon_sym_lor] = ACTIONS(3485), - [anon_sym_lxor] = ACTIONS(3485), - [aux_sym__add_operator_token1] = ACTIONS(3485), - [sym__concat_operator] = ACTIONS(3487), - [sym__rel_operator] = ACTIONS(3485), - [anon_sym_AMP_AMP] = ACTIONS(3485), - [anon_sym_or] = ACTIONS(3485), - [anon_sym_PIPE_PIPE] = ACTIONS(3485), - [sym_let_operator] = ACTIONS(3487), - [sym__capitalized_identifier] = ACTIONS(3487), - [aux_sym_directive_token1] = ACTIONS(3485), - [aux_sym_tag_token1] = ACTIONS(3487), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1921] = { - [sym_attribute] = STATE(1921), - [ts_builtin_sym_end] = ACTIONS(3375), - [sym__identifier] = ACTIONS(3373), - [anon_sym_SEMI_SEMI] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_QMARK] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_external] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_COMMA] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_COLON_EQ] = ACTIONS(3375), - [anon_sym_PIPE] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3373), - [anon_sym_false] = ACTIONS(3373), - [anon_sym_DOT] = ACTIONS(1255), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_exception] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_open] = ACTIONS(3373), - [anon_sym_include] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_AMP] = ACTIONS(3373), - [anon_sym_POUND] = ACTIONS(1257), - [anon_sym_COLON_COLON] = ACTIONS(3375), - [anon_sym_LBRACK_PIPE] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_LBRACE_LT] = ACTIONS(3375), - [anon_sym_begin] = ACTIONS(3373), - [sym_ocamlyacc_value] = ACTIONS(3375), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3373), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3375), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3373), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3375), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3375), - [aux_sym_number_token1] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [sym_prefix_operator] = ACTIONS(3375), - [anon_sym_PLUS_DOT] = ACTIONS(3373), - [anon_sym_DASH_DOT] = ACTIONS(3373), - [sym_hash_operator] = ACTIONS(1259), - [aux_sym__pow_operator_token1] = ACTIONS(3375), - [anon_sym_lsl] = ACTIONS(3373), - [anon_sym_lsr] = ACTIONS(3373), - [anon_sym_asr] = ACTIONS(3373), - [aux_sym__mult_operator_token1] = ACTIONS(3373), - [anon_sym_mod] = ACTIONS(3373), - [anon_sym_land] = ACTIONS(3373), - [anon_sym_lor] = ACTIONS(3373), - [anon_sym_lxor] = ACTIONS(3373), - [aux_sym__add_operator_token1] = ACTIONS(3373), - [sym__concat_operator] = ACTIONS(3375), - [sym__rel_operator] = ACTIONS(3373), - [anon_sym_AMP_AMP] = ACTIONS(3373), - [anon_sym_or] = ACTIONS(3373), - [anon_sym_PIPE_PIPE] = ACTIONS(3373), - [sym_let_operator] = ACTIONS(3375), - [sym__capitalized_identifier] = ACTIONS(3375), - [aux_sym_directive_token1] = ACTIONS(3373), - [aux_sym_tag_token1] = ACTIONS(3375), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1922] = { - [sym_attribute] = STATE(1922), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym__identifier] = ACTIONS(3521), - [anon_sym_SEMI_SEMI] = ACTIONS(3523), - [anon_sym_let] = ACTIONS(3521), - [anon_sym_TILDE] = ACTIONS(3521), - [anon_sym_QMARK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3523), - [anon_sym_external] = ACTIONS(3521), - [anon_sym_type] = ACTIONS(3521), - [anon_sym_COMMA] = ACTIONS(3523), - [anon_sym_PLUS] = ACTIONS(3521), - [anon_sym_DASH] = ACTIONS(3521), - [anon_sym_COLON_EQ] = ACTIONS(3523), - [anon_sym_PIPE] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_true] = ACTIONS(3521), - [anon_sym_false] = ACTIONS(3521), - [anon_sym_DOT] = ACTIONS(3523), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_SEMI] = ACTIONS(3521), - [anon_sym_exception] = ACTIONS(3521), - [anon_sym_module] = ACTIONS(3521), - [anon_sym_open] = ACTIONS(3521), - [anon_sym_include] = ACTIONS(3521), - [anon_sym_class] = ACTIONS(3521), - [anon_sym_object] = ACTIONS(3521), - [anon_sym_AMP] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(3521), - [anon_sym_COLON_COLON] = ACTIONS(3523), - [anon_sym_LBRACK_PIPE] = ACTIONS(3523), - [anon_sym_else] = ACTIONS(3521), - [anon_sym_new] = ACTIONS(3521), - [anon_sym_LBRACE_LT] = ACTIONS(3523), - [anon_sym_begin] = ACTIONS(3521), - [sym_ocamlyacc_value] = ACTIONS(3523), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3521), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3523), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3521), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3523), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3523), - [aux_sym_number_token1] = ACTIONS(3523), - [anon_sym_SQUOTE] = ACTIONS(3523), - [anon_sym_DQUOTE] = ACTIONS(3523), - [sym_prefix_operator] = ACTIONS(3523), - [anon_sym_PLUS_DOT] = ACTIONS(3521), - [anon_sym_DASH_DOT] = ACTIONS(3521), - [sym_hash_operator] = ACTIONS(3523), - [aux_sym__pow_operator_token1] = ACTIONS(3523), - [anon_sym_lsl] = ACTIONS(3521), - [anon_sym_lsr] = ACTIONS(3521), - [anon_sym_asr] = ACTIONS(3521), - [aux_sym__mult_operator_token1] = ACTIONS(3521), - [anon_sym_mod] = ACTIONS(3521), - [anon_sym_land] = ACTIONS(3521), - [anon_sym_lor] = ACTIONS(3521), - [anon_sym_lxor] = ACTIONS(3521), - [aux_sym__add_operator_token1] = ACTIONS(3521), - [sym__concat_operator] = ACTIONS(3523), - [sym__rel_operator] = ACTIONS(3521), - [anon_sym_AMP_AMP] = ACTIONS(3521), - [anon_sym_or] = ACTIONS(3521), - [anon_sym_PIPE_PIPE] = ACTIONS(3521), - [sym_let_operator] = ACTIONS(3523), - [sym__capitalized_identifier] = ACTIONS(3523), - [aux_sym_directive_token1] = ACTIONS(3521), - [aux_sym_tag_token1] = ACTIONS(3523), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1923] = { - [sym_attribute] = STATE(1923), - [ts_builtin_sym_end] = ACTIONS(3327), - [sym__identifier] = ACTIONS(3325), - [anon_sym_SEMI_SEMI] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_QMARK] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_external] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_COMMA] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_COLON_EQ] = ACTIONS(3327), - [anon_sym_PIPE] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_true] = ACTIONS(3325), - [anon_sym_false] = ACTIONS(3325), - [anon_sym_DOT] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_exception] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_open] = ACTIONS(3325), - [anon_sym_include] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_AMP] = ACTIONS(3325), - [anon_sym_POUND] = ACTIONS(3325), - [anon_sym_COLON_COLON] = ACTIONS(3327), - [anon_sym_LBRACK_PIPE] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_LBRACE_LT] = ACTIONS(3327), - [anon_sym_begin] = ACTIONS(3325), - [sym_ocamlyacc_value] = ACTIONS(3327), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3325), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3327), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3325), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3327), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3327), - [aux_sym_number_token1] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [sym_prefix_operator] = ACTIONS(3327), - [anon_sym_PLUS_DOT] = ACTIONS(3325), - [anon_sym_DASH_DOT] = ACTIONS(3325), - [sym_hash_operator] = ACTIONS(3327), - [aux_sym__pow_operator_token1] = ACTIONS(3327), - [anon_sym_lsl] = ACTIONS(3325), - [anon_sym_lsr] = ACTIONS(3325), - [anon_sym_asr] = ACTIONS(3325), - [aux_sym__mult_operator_token1] = ACTIONS(3325), - [anon_sym_mod] = ACTIONS(3325), - [anon_sym_land] = ACTIONS(3325), - [anon_sym_lor] = ACTIONS(3325), - [anon_sym_lxor] = ACTIONS(3325), - [aux_sym__add_operator_token1] = ACTIONS(3325), - [sym__concat_operator] = ACTIONS(3327), - [sym__rel_operator] = ACTIONS(3325), - [anon_sym_AMP_AMP] = ACTIONS(3325), - [anon_sym_or] = ACTIONS(3325), - [anon_sym_PIPE_PIPE] = ACTIONS(3325), - [sym_let_operator] = ACTIONS(3327), - [sym__capitalized_identifier] = ACTIONS(3327), - [aux_sym_directive_token1] = ACTIONS(3325), - [aux_sym_tag_token1] = ACTIONS(3327), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1924] = { - [sym_attribute] = STATE(1924), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym__identifier] = ACTIONS(3513), - [anon_sym_SEMI_SEMI] = ACTIONS(3515), - [anon_sym_let] = ACTIONS(3513), - [anon_sym_TILDE] = ACTIONS(3513), - [anon_sym_QMARK] = ACTIONS(3513), - [anon_sym_LPAREN] = ACTIONS(3515), - [anon_sym_external] = ACTIONS(3513), - [anon_sym_type] = ACTIONS(3513), - [anon_sym_COMMA] = ACTIONS(3515), - [anon_sym_PLUS] = ACTIONS(3513), - [anon_sym_DASH] = ACTIONS(3513), - [anon_sym_COLON_EQ] = ACTIONS(3515), - [anon_sym_PIPE] = ACTIONS(3513), - [anon_sym_LBRACK] = ACTIONS(3513), - [anon_sym_true] = ACTIONS(3513), - [anon_sym_false] = ACTIONS(3513), - [anon_sym_DOT] = ACTIONS(3515), - [anon_sym_LBRACE] = ACTIONS(3513), - [anon_sym_SEMI] = ACTIONS(3513), - [anon_sym_exception] = ACTIONS(3513), - [anon_sym_module] = ACTIONS(3513), - [anon_sym_open] = ACTIONS(3513), - [anon_sym_include] = ACTIONS(3513), - [anon_sym_class] = ACTIONS(3513), - [anon_sym_object] = ACTIONS(3513), - [anon_sym_AMP] = ACTIONS(3513), - [anon_sym_POUND] = ACTIONS(3513), - [anon_sym_COLON_COLON] = ACTIONS(3515), - [anon_sym_LBRACK_PIPE] = ACTIONS(3515), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_new] = ACTIONS(3513), - [anon_sym_LBRACE_LT] = ACTIONS(3515), - [anon_sym_begin] = ACTIONS(3513), - [sym_ocamlyacc_value] = ACTIONS(3515), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3513), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3515), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3513), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3515), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3515), - [aux_sym_number_token1] = ACTIONS(3515), - [anon_sym_SQUOTE] = ACTIONS(3515), - [anon_sym_DQUOTE] = ACTIONS(3515), - [sym_prefix_operator] = ACTIONS(3515), - [anon_sym_PLUS_DOT] = ACTIONS(3513), - [anon_sym_DASH_DOT] = ACTIONS(3513), - [sym_hash_operator] = ACTIONS(3515), - [aux_sym__pow_operator_token1] = ACTIONS(3515), - [anon_sym_lsl] = ACTIONS(3513), - [anon_sym_lsr] = ACTIONS(3513), - [anon_sym_asr] = ACTIONS(3513), - [aux_sym__mult_operator_token1] = ACTIONS(3513), - [anon_sym_mod] = ACTIONS(3513), - [anon_sym_land] = ACTIONS(3513), - [anon_sym_lor] = ACTIONS(3513), - [anon_sym_lxor] = ACTIONS(3513), - [aux_sym__add_operator_token1] = ACTIONS(3513), - [sym__concat_operator] = ACTIONS(3515), - [sym__rel_operator] = ACTIONS(3513), - [anon_sym_AMP_AMP] = ACTIONS(3513), - [anon_sym_or] = ACTIONS(3513), - [anon_sym_PIPE_PIPE] = ACTIONS(3513), - [sym_let_operator] = ACTIONS(3515), - [sym__capitalized_identifier] = ACTIONS(3515), - [aux_sym_directive_token1] = ACTIONS(3513), - [aux_sym_tag_token1] = ACTIONS(3515), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1925] = { - [sym_attribute] = STATE(1925), - [ts_builtin_sym_end] = ACTIONS(3363), - [sym__identifier] = ACTIONS(3361), - [anon_sym_SEMI_SEMI] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_QMARK] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_external] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_COMMA] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_COLON_EQ] = ACTIONS(3363), - [anon_sym_PIPE] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_true] = ACTIONS(3361), - [anon_sym_false] = ACTIONS(3361), - [anon_sym_DOT] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_exception] = ACTIONS(3361), - [anon_sym_module] = ACTIONS(3361), - [anon_sym_open] = ACTIONS(3361), - [anon_sym_include] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_object] = ACTIONS(3361), - [anon_sym_AMP] = ACTIONS(3361), - [anon_sym_POUND] = ACTIONS(3361), - [anon_sym_COLON_COLON] = ACTIONS(3363), - [anon_sym_LBRACK_PIPE] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_LBRACE_LT] = ACTIONS(3363), - [anon_sym_begin] = ACTIONS(3361), - [sym_ocamlyacc_value] = ACTIONS(3363), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3361), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3363), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3361), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3363), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3363), - [aux_sym_number_token1] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [sym_prefix_operator] = ACTIONS(3363), - [anon_sym_PLUS_DOT] = ACTIONS(3361), - [anon_sym_DASH_DOT] = ACTIONS(3361), - [sym_hash_operator] = ACTIONS(3363), - [aux_sym__pow_operator_token1] = ACTIONS(3363), - [anon_sym_lsl] = ACTIONS(3361), - [anon_sym_lsr] = ACTIONS(3361), - [anon_sym_asr] = ACTIONS(3361), - [aux_sym__mult_operator_token1] = ACTIONS(3361), - [anon_sym_mod] = ACTIONS(3361), - [anon_sym_land] = ACTIONS(3361), - [anon_sym_lor] = ACTIONS(3361), - [anon_sym_lxor] = ACTIONS(3361), - [aux_sym__add_operator_token1] = ACTIONS(3361), - [sym__concat_operator] = ACTIONS(3363), - [sym__rel_operator] = ACTIONS(3361), - [anon_sym_AMP_AMP] = ACTIONS(3361), - [anon_sym_or] = ACTIONS(3361), - [anon_sym_PIPE_PIPE] = ACTIONS(3361), - [sym_let_operator] = ACTIONS(3363), - [sym__capitalized_identifier] = ACTIONS(3363), - [aux_sym_directive_token1] = ACTIONS(3361), - [aux_sym_tag_token1] = ACTIONS(3363), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1926] = { - [sym_attribute] = STATE(1926), - [ts_builtin_sym_end] = ACTIONS(3447), - [sym__identifier] = ACTIONS(3445), - [anon_sym_SEMI_SEMI] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_QMARK] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_external] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_COMMA] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_COLON_EQ] = ACTIONS(3447), - [anon_sym_PIPE] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [anon_sym_DOT] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_exception] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_open] = ACTIONS(3445), - [anon_sym_include] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_AMP] = ACTIONS(3445), - [anon_sym_POUND] = ACTIONS(3445), - [anon_sym_COLON_COLON] = ACTIONS(3447), - [anon_sym_LBRACK_PIPE] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_LBRACE_LT] = ACTIONS(3447), - [anon_sym_begin] = ACTIONS(3445), - [sym_ocamlyacc_value] = ACTIONS(3447), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3445), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3447), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3445), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3447), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3447), - [aux_sym_number_token1] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [sym_prefix_operator] = ACTIONS(3447), - [anon_sym_PLUS_DOT] = ACTIONS(3445), - [anon_sym_DASH_DOT] = ACTIONS(3445), - [sym_hash_operator] = ACTIONS(3447), - [aux_sym__pow_operator_token1] = ACTIONS(3447), - [anon_sym_lsl] = ACTIONS(3445), - [anon_sym_lsr] = ACTIONS(3445), - [anon_sym_asr] = ACTIONS(3445), - [aux_sym__mult_operator_token1] = ACTIONS(3445), - [anon_sym_mod] = ACTIONS(3445), - [anon_sym_land] = ACTIONS(3445), - [anon_sym_lor] = ACTIONS(3445), - [anon_sym_lxor] = ACTIONS(3445), - [aux_sym__add_operator_token1] = ACTIONS(3445), - [sym__concat_operator] = ACTIONS(3447), - [sym__rel_operator] = ACTIONS(3445), - [anon_sym_AMP_AMP] = ACTIONS(3445), - [anon_sym_or] = ACTIONS(3445), - [anon_sym_PIPE_PIPE] = ACTIONS(3445), - [sym_let_operator] = ACTIONS(3447), - [sym__capitalized_identifier] = ACTIONS(3447), - [aux_sym_directive_token1] = ACTIONS(3445), - [aux_sym_tag_token1] = ACTIONS(3447), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1927] = { - [sym_attribute] = STATE(1927), - [ts_builtin_sym_end] = ACTIONS(3451), - [sym__identifier] = ACTIONS(3449), - [anon_sym_SEMI_SEMI] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_QMARK] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_external] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_COMMA] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_COLON_EQ] = ACTIONS(3451), - [anon_sym_PIPE] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_true] = ACTIONS(3449), - [anon_sym_false] = ACTIONS(3449), - [anon_sym_DOT] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_exception] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_open] = ACTIONS(3449), - [anon_sym_include] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_AMP] = ACTIONS(3449), - [anon_sym_POUND] = ACTIONS(3449), - [anon_sym_COLON_COLON] = ACTIONS(3451), - [anon_sym_LBRACK_PIPE] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_LBRACE_LT] = ACTIONS(3451), - [anon_sym_begin] = ACTIONS(3449), - [sym_ocamlyacc_value] = ACTIONS(3451), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3449), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3451), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3449), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3451), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3451), - [aux_sym_number_token1] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [sym_prefix_operator] = ACTIONS(3451), - [anon_sym_PLUS_DOT] = ACTIONS(3449), - [anon_sym_DASH_DOT] = ACTIONS(3449), - [sym_hash_operator] = ACTIONS(3451), - [aux_sym__pow_operator_token1] = ACTIONS(3451), - [anon_sym_lsl] = ACTIONS(3449), - [anon_sym_lsr] = ACTIONS(3449), - [anon_sym_asr] = ACTIONS(3449), - [aux_sym__mult_operator_token1] = ACTIONS(3449), - [anon_sym_mod] = ACTIONS(3449), - [anon_sym_land] = ACTIONS(3449), - [anon_sym_lor] = ACTIONS(3449), - [anon_sym_lxor] = ACTIONS(3449), - [aux_sym__add_operator_token1] = ACTIONS(3449), - [sym__concat_operator] = ACTIONS(3451), - [sym__rel_operator] = ACTIONS(3449), - [anon_sym_AMP_AMP] = ACTIONS(3449), - [anon_sym_or] = ACTIONS(3449), - [anon_sym_PIPE_PIPE] = ACTIONS(3449), - [sym_let_operator] = ACTIONS(3451), - [sym__capitalized_identifier] = ACTIONS(3451), - [aux_sym_directive_token1] = ACTIONS(3449), - [aux_sym_tag_token1] = ACTIONS(3451), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1928] = { - [sym_attribute] = STATE(1928), - [sym__identifier] = ACTIONS(3577), - [anon_sym_SEMI_SEMI] = ACTIONS(3579), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3744), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_external] = ACTIONS(3577), - [anon_sym_type] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_RBRACK] = ACTIONS(3579), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_exception] = ACTIONS(3577), - [anon_sym_module] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_include] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_end] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym_let_operator] = ACTIONS(3579), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_directive_token1] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1929] = { - [sym_attribute] = STATE(1929), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym__identifier] = ACTIONS(3441), - [anon_sym_SEMI_SEMI] = ACTIONS(3443), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_QMARK] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3443), - [anon_sym_external] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_COMMA] = ACTIONS(3443), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_COLON_EQ] = ACTIONS(3443), - [anon_sym_PIPE] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_RBRACK] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3441), - [anon_sym_false] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_exception] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_open] = ACTIONS(3441), - [anon_sym_include] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_end] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_AMP] = ACTIONS(3441), - [anon_sym_COLON_COLON] = ACTIONS(3443), - [anon_sym_LBRACK_PIPE] = ACTIONS(3443), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_LBRACE_LT] = ACTIONS(3443), - [anon_sym_begin] = ACTIONS(3441), - [sym_ocamlyacc_value] = ACTIONS(3443), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3441), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3443), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3441), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3443), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3443), - [aux_sym_number_token1] = ACTIONS(3443), - [anon_sym_SQUOTE] = ACTIONS(3443), - [anon_sym_DQUOTE] = ACTIONS(3443), - [sym_prefix_operator] = ACTIONS(3443), - [anon_sym_PLUS_DOT] = ACTIONS(3441), - [anon_sym_DASH_DOT] = ACTIONS(3441), - [aux_sym__pow_operator_token1] = ACTIONS(3443), - [anon_sym_lsl] = ACTIONS(3441), - [anon_sym_lsr] = ACTIONS(3441), - [anon_sym_asr] = ACTIONS(3441), - [aux_sym__mult_operator_token1] = ACTIONS(3441), - [anon_sym_mod] = ACTIONS(3441), - [anon_sym_land] = ACTIONS(3441), - [anon_sym_lor] = ACTIONS(3441), - [anon_sym_lxor] = ACTIONS(3441), - [aux_sym__add_operator_token1] = ACTIONS(3441), - [sym__concat_operator] = ACTIONS(3443), - [sym__rel_operator] = ACTIONS(3441), - [anon_sym_AMP_AMP] = ACTIONS(3441), - [anon_sym_or] = ACTIONS(3441), - [anon_sym_PIPE_PIPE] = ACTIONS(3441), - [sym_let_operator] = ACTIONS(3443), - [sym__capitalized_identifier] = ACTIONS(3443), - [aux_sym_directive_token1] = ACTIONS(3443), - [aux_sym_tag_token1] = ACTIONS(3443), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1930] = { - [sym_attribute] = STATE(1930), - [ts_builtin_sym_end] = ACTIONS(3660), - [sym__identifier] = ACTIONS(3658), - [anon_sym_SEMI_SEMI] = ACTIONS(3660), - [anon_sym_let] = ACTIONS(3658), - [anon_sym_TILDE] = ACTIONS(3658), - [anon_sym_QMARK] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_external] = ACTIONS(3658), - [anon_sym_type] = ACTIONS(3658), - [anon_sym_COMMA] = ACTIONS(3660), - [anon_sym_PLUS] = ACTIONS(3658), - [anon_sym_DASH] = ACTIONS(3658), - [anon_sym_COLON_EQ] = ACTIONS(3660), - [anon_sym_PIPE] = ACTIONS(3658), - [anon_sym_LBRACK] = ACTIONS(3658), - [anon_sym_RBRACK] = ACTIONS(3660), - [anon_sym_true] = ACTIONS(3658), - [anon_sym_false] = ACTIONS(3658), - [anon_sym_LBRACE] = ACTIONS(3658), - [anon_sym_SEMI] = ACTIONS(3658), - [anon_sym_exception] = ACTIONS(3658), - [anon_sym_module] = ACTIONS(3658), - [anon_sym_open] = ACTIONS(3658), - [anon_sym_include] = ACTIONS(3658), - [anon_sym_class] = ACTIONS(3658), - [anon_sym_end] = ACTIONS(3658), - [anon_sym_object] = ACTIONS(3658), - [anon_sym_AMP] = ACTIONS(3658), - [anon_sym_COLON_COLON] = ACTIONS(3660), - [anon_sym_LBRACK_PIPE] = ACTIONS(3660), - [anon_sym_else] = ACTIONS(3658), - [anon_sym_new] = ACTIONS(3658), - [anon_sym_LBRACE_LT] = ACTIONS(3660), - [anon_sym_begin] = ACTIONS(3658), - [sym_ocamlyacc_value] = ACTIONS(3660), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3658), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3660), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3658), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3660), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3660), - [aux_sym_number_token1] = ACTIONS(3660), - [anon_sym_SQUOTE] = ACTIONS(3660), - [anon_sym_DQUOTE] = ACTIONS(3660), - [sym_prefix_operator] = ACTIONS(3660), - [anon_sym_PLUS_DOT] = ACTIONS(3658), - [anon_sym_DASH_DOT] = ACTIONS(3658), - [aux_sym__pow_operator_token1] = ACTIONS(3660), - [anon_sym_lsl] = ACTIONS(3658), - [anon_sym_lsr] = ACTIONS(3658), - [anon_sym_asr] = ACTIONS(3658), - [aux_sym__mult_operator_token1] = ACTIONS(3658), - [anon_sym_mod] = ACTIONS(3658), - [anon_sym_land] = ACTIONS(3658), - [anon_sym_lor] = ACTIONS(3658), - [anon_sym_lxor] = ACTIONS(3658), - [aux_sym__add_operator_token1] = ACTIONS(3658), - [sym__concat_operator] = ACTIONS(3660), - [sym__rel_operator] = ACTIONS(3658), - [anon_sym_AMP_AMP] = ACTIONS(3658), - [anon_sym_or] = ACTIONS(3658), - [anon_sym_PIPE_PIPE] = ACTIONS(3658), - [sym_let_operator] = ACTIONS(3660), - [sym__capitalized_identifier] = ACTIONS(3660), - [aux_sym_directive_token1] = ACTIONS(3660), - [aux_sym_tag_token1] = ACTIONS(3660), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1931] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1931), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_let_binding_repeat1] = STATE(1931), - [sym__identifier] = ACTIONS(3746), - [anon_sym_COLON_GT] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(3014), - [anon_sym_TILDE] = ACTIONS(3749), - [anon_sym_QMARK] = ACTIONS(3749), - [anon_sym_LPAREN] = ACTIONS(3752), - [anon_sym_PLUS] = ACTIONS(3755), - [anon_sym_DASH] = ACTIONS(3758), - [anon_sym_LBRACK] = ACTIONS(3761), - [anon_sym_true] = ACTIONS(3764), - [anon_sym_false] = ACTIONS(3764), - [anon_sym_COLON2] = ACTIONS(3019), - [anon_sym_DASH_GT] = ACTIONS(3014), - [anon_sym_LBRACE] = ACTIONS(3767), - [anon_sym_constraint] = ACTIONS(3019), - [anon_sym_val] = ACTIONS(3019), - [anon_sym_end] = ACTIONS(3019), - [anon_sym_inherit] = ACTIONS(3019), - [anon_sym_method] = ACTIONS(3019), - [anon_sym_initializer] = ACTIONS(3019), - [anon_sym_POUND] = ACTIONS(3770), - [anon_sym_LBRACK_PIPE] = ACTIONS(3773), - [anon_sym_begin] = ACTIONS(3776), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3019), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3014), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3779), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3782), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3014), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3014), - [aux_sym_number_token1] = ACTIONS(3785), - [anon_sym_SQUOTE] = ACTIONS(3788), - [anon_sym_DQUOTE] = ACTIONS(3791), - [sym__capitalized_identifier] = ACTIONS(3794), - [aux_sym_tag_token1] = ACTIONS(3797), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1932] = { - [sym__parameter] = STATE(4201), - [sym_parameter] = STATE(4203), - [sym__polymorphic_typed] = STATE(8076), - [sym__parenthesized_abstract_type] = STATE(4203), - [sym__simple_pattern] = STATE(4205), - [sym__simple_pattern_ext] = STATE(4207), - [sym_typed_pattern] = STATE(4223), - [sym_polymorphic_variant_pattern] = STATE(4223), - [sym_record_pattern] = STATE(4223), - [sym_list_pattern] = STATE(4223), - [sym_array_pattern] = STATE(4223), - [sym_local_open_pattern] = STATE(4223), - [sym_package_pattern] = STATE(4223), - [sym_parenthesized_pattern] = STATE(4223), - [sym_attribute] = STATE(1932), - [sym_item_attribute] = STATE(7172), - [sym__extension] = STATE(4205), - [sym_extension] = STATE(4237), - [sym_quoted_extension] = STATE(4237), - [sym__constant] = STATE(4231), - [sym__signed_constant] = STATE(4223), - [sym_number] = STATE(4224), - [sym_signed_number] = STATE(4231), - [sym_character] = STATE(4224), - [sym_string] = STATE(4224), - [sym_quoted_string] = STATE(4224), - [sym_boolean] = STATE(4224), - [sym_unit] = STATE(4224), - [sym__value_pattern] = STATE(4223), - [sym_parenthesized_operator] = STATE(4210), - [sym_module_path] = STATE(9360), - [sym_constructor_path] = STATE(4223), - [sym__label] = STATE(9355), - [sym_tag] = STATE(4223), - [aux_sym_expression_item_repeat1] = STATE(6748), - [aux_sym_let_binding_repeat1] = STATE(2286), - [sym__identifier] = ACTIONS(2531), - [anon_sym_and] = ACTIONS(2535), - [anon_sym_COLON_GT] = ACTIONS(3800), - [anon_sym_EQ] = ACTIONS(3802), - [anon_sym_TILDE] = ACTIONS(2541), - [anon_sym_QMARK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_COMMA] = ACTIONS(3804), - [anon_sym_PLUS] = ACTIONS(2547), - [anon_sym_DASH] = ACTIONS(2547), - [anon_sym_PIPE] = ACTIONS(3806), - [anon_sym_LBRACK] = ACTIONS(2551), - [anon_sym_true] = ACTIONS(2553), - [anon_sym_false] = ACTIONS(2553), - [anon_sym_COLON2] = ACTIONS(2555), - [anon_sym_LBRACE] = ACTIONS(2557), - [anon_sym_in] = ACTIONS(2535), - [anon_sym_as] = ACTIONS(3808), - [anon_sym_POUND] = ACTIONS(2561), - [anon_sym_COLON_COLON] = ACTIONS(3810), - [anon_sym_LBRACK_PIPE] = ACTIONS(2565), - [anon_sym_begin] = ACTIONS(2567), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3812), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3814), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3816), - [aux_sym_number_token1] = ACTIONS(2575), - [anon_sym_SQUOTE] = ACTIONS(2577), - [anon_sym_DQUOTE] = ACTIONS(2579), - [sym_and_operator] = ACTIONS(2533), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1933] = { - [sym_attribute] = STATE(1933), - [ts_builtin_sym_end] = ACTIONS(3654), - [sym__identifier] = ACTIONS(3652), - [anon_sym_SEMI_SEMI] = ACTIONS(3654), - [anon_sym_let] = ACTIONS(3652), - [anon_sym_TILDE] = ACTIONS(3652), - [anon_sym_QMARK] = ACTIONS(3652), - [anon_sym_LPAREN] = ACTIONS(3654), - [anon_sym_external] = ACTIONS(3652), - [anon_sym_type] = ACTIONS(3652), - [anon_sym_COMMA] = ACTIONS(3654), - [anon_sym_PLUS] = ACTIONS(3652), - [anon_sym_DASH] = ACTIONS(3652), - [anon_sym_COLON_EQ] = ACTIONS(3654), - [anon_sym_PIPE] = ACTIONS(3652), - [anon_sym_LBRACK] = ACTIONS(3652), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_true] = ACTIONS(3652), - [anon_sym_false] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3652), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_exception] = ACTIONS(3652), - [anon_sym_module] = ACTIONS(3652), - [anon_sym_open] = ACTIONS(3652), - [anon_sym_include] = ACTIONS(3652), - [anon_sym_class] = ACTIONS(3652), - [anon_sym_end] = ACTIONS(3652), - [anon_sym_object] = ACTIONS(3652), - [anon_sym_AMP] = ACTIONS(3652), - [anon_sym_COLON_COLON] = ACTIONS(3654), - [anon_sym_LBRACK_PIPE] = ACTIONS(3654), - [anon_sym_else] = ACTIONS(3652), - [anon_sym_new] = ACTIONS(3652), - [anon_sym_LBRACE_LT] = ACTIONS(3654), - [anon_sym_begin] = ACTIONS(3652), - [sym_ocamlyacc_value] = ACTIONS(3654), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3652), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3654), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3652), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3654), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3654), - [aux_sym_number_token1] = ACTIONS(3654), - [anon_sym_SQUOTE] = ACTIONS(3654), - [anon_sym_DQUOTE] = ACTIONS(3654), - [sym_prefix_operator] = ACTIONS(3654), - [anon_sym_PLUS_DOT] = ACTIONS(3652), - [anon_sym_DASH_DOT] = ACTIONS(3652), - [aux_sym__pow_operator_token1] = ACTIONS(3654), - [anon_sym_lsl] = ACTIONS(3652), - [anon_sym_lsr] = ACTIONS(3652), - [anon_sym_asr] = ACTIONS(3652), - [aux_sym__mult_operator_token1] = ACTIONS(3652), - [anon_sym_mod] = ACTIONS(3652), - [anon_sym_land] = ACTIONS(3652), - [anon_sym_lor] = ACTIONS(3652), - [anon_sym_lxor] = ACTIONS(3652), - [aux_sym__add_operator_token1] = ACTIONS(3652), - [sym__concat_operator] = ACTIONS(3654), - [sym__rel_operator] = ACTIONS(3652), - [anon_sym_AMP_AMP] = ACTIONS(3652), - [anon_sym_or] = ACTIONS(3652), - [anon_sym_PIPE_PIPE] = ACTIONS(3652), - [sym_let_operator] = ACTIONS(3654), - [sym__capitalized_identifier] = ACTIONS(3654), - [aux_sym_directive_token1] = ACTIONS(3654), - [aux_sym_tag_token1] = ACTIONS(3654), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1934] = { - [sym__signature] = STATE(8862), - [sym_external] = STATE(5909), - [sym_type_definition] = STATE(5909), - [sym_exception_definition] = STATE(5909), - [sym_module_definition] = STATE(5909), - [sym_module_type_definition] = STATE(5909), - [sym_open_module] = STATE(5909), - [sym_class_definition] = STATE(5909), - [sym_class_type_definition] = STATE(5909), - [sym__signature_item] = STATE(5911), - [sym__signature_item_ext] = STATE(5973), - [sym_value_specification] = STATE(5909), - [sym_include_module_type] = STATE(5909), - [sym__simple_type] = STATE(5746), - [sym__tuple_type] = STATE(3956), - [sym__tuple_type_ext] = STATE(9181), - [sym__type] = STATE(4143), - [sym__type_ext] = STATE(7729), - [sym_function_type] = STATE(4156), - [sym_typed_label] = STATE(9179), - [sym_tuple_type] = STATE(3917), - [sym_constructed_type] = STATE(5712), - [sym_aliased_type] = STATE(4156), - [sym_polymorphic_variant_type] = STATE(5712), - [sym_package_type] = STATE(5712), - [sym_object_type] = STATE(5712), - [sym_hash_type] = STATE(5712), - [sym_parenthesized_type] = STATE(5712), - [sym_attribute] = STATE(1934), - [sym_floating_attribute] = STATE(5909), - [sym__extension] = STATE(5743), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__item_extension] = STATE(5911), - [sym_item_extension] = STATE(5183), - [sym_quoted_item_extension] = STATE(5183), - [sym_extended_module_path] = STATE(8158), - [sym_type_constructor_path] = STATE(5712), - [sym_type_variable] = STATE(5712), - [aux_sym__structure_repeat1] = STATE(4547), - [aux_sym__signature_repeat1] = STATE(4461), - [sym__identifier] = ACTIONS(3818), - [anon_sym_SEMI_SEMI] = ACTIONS(3820), - [anon_sym_QMARK] = ACTIONS(3822), - [anon_sym_LPAREN] = ACTIONS(3824), - [anon_sym_external] = ACTIONS(3826), - [anon_sym_type] = ACTIONS(3828), - [anon_sym_LBRACK] = ACTIONS(3830), - [anon_sym_RBRACK] = ACTIONS(3832), - [anon_sym_exception] = ACTIONS(3834), - [anon_sym_module] = ACTIONS(3836), - [anon_sym_open] = ACTIONS(35), - [anon_sym_include] = ACTIONS(3838), - [anon_sym_class] = ACTIONS(3840), - [anon_sym_val] = ACTIONS(3842), - [anon_sym_LBRACK_GT] = ACTIONS(3844), - [anon_sym_LBRACK_LT] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(3848), - [anon_sym_POUND] = ACTIONS(3850), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(71), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3852), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3854), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(77), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(79), - [sym__capitalized_identifier] = ACTIONS(3856), - [aux_sym_type_variable_token1] = ACTIONS(3858), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1935] = { - [sym_attribute] = STATE(1935), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym__identifier] = ACTIONS(3577), - [anon_sym_SEMI_SEMI] = ACTIONS(3579), - [anon_sym_let] = ACTIONS(3577), - [anon_sym_TILDE] = ACTIONS(3577), - [anon_sym_QMARK] = ACTIONS(3577), - [anon_sym_COLON] = ACTIONS(3860), - [anon_sym_LPAREN] = ACTIONS(3579), - [anon_sym_external] = ACTIONS(3577), - [anon_sym_type] = ACTIONS(3577), - [anon_sym_COMMA] = ACTIONS(3579), - [anon_sym_PLUS] = ACTIONS(3577), - [anon_sym_DASH] = ACTIONS(3577), - [anon_sym_COLON_EQ] = ACTIONS(3579), - [anon_sym_PIPE] = ACTIONS(3577), - [anon_sym_LBRACK] = ACTIONS(3577), - [anon_sym_true] = ACTIONS(3577), - [anon_sym_false] = ACTIONS(3577), - [anon_sym_LBRACE] = ACTIONS(3577), - [anon_sym_SEMI] = ACTIONS(3577), - [anon_sym_exception] = ACTIONS(3577), - [anon_sym_module] = ACTIONS(3577), - [anon_sym_open] = ACTIONS(3577), - [anon_sym_include] = ACTIONS(3577), - [anon_sym_class] = ACTIONS(3577), - [anon_sym_object] = ACTIONS(3577), - [anon_sym_AMP] = ACTIONS(3577), - [anon_sym_COLON_COLON] = ACTIONS(3579), - [anon_sym_LBRACK_PIPE] = ACTIONS(3579), - [anon_sym_else] = ACTIONS(3577), - [anon_sym_new] = ACTIONS(3577), - [anon_sym_LBRACE_LT] = ACTIONS(3579), - [anon_sym_begin] = ACTIONS(3577), - [sym_ocamlyacc_value] = ACTIONS(3579), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3577), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3579), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3577), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3579), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3579), - [aux_sym_number_token1] = ACTIONS(3579), - [anon_sym_SQUOTE] = ACTIONS(3579), - [anon_sym_DQUOTE] = ACTIONS(3579), - [sym_prefix_operator] = ACTIONS(3579), - [anon_sym_PLUS_DOT] = ACTIONS(3577), - [anon_sym_DASH_DOT] = ACTIONS(3577), - [aux_sym__pow_operator_token1] = ACTIONS(3579), - [anon_sym_lsl] = ACTIONS(3577), - [anon_sym_lsr] = ACTIONS(3577), - [anon_sym_asr] = ACTIONS(3577), - [aux_sym__mult_operator_token1] = ACTIONS(3577), - [anon_sym_mod] = ACTIONS(3577), - [anon_sym_land] = ACTIONS(3577), - [anon_sym_lor] = ACTIONS(3577), - [anon_sym_lxor] = ACTIONS(3577), - [aux_sym__add_operator_token1] = ACTIONS(3577), - [sym__concat_operator] = ACTIONS(3579), - [sym__rel_operator] = ACTIONS(3577), - [anon_sym_AMP_AMP] = ACTIONS(3577), - [anon_sym_or] = ACTIONS(3577), - [anon_sym_PIPE_PIPE] = ACTIONS(3577), - [sym_let_operator] = ACTIONS(3579), - [sym__capitalized_identifier] = ACTIONS(3579), - [aux_sym_directive_token1] = ACTIONS(3579), - [aux_sym_tag_token1] = ACTIONS(3579), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1936] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9106), - [sym_module_definition] = STATE(9111), - [sym_open_module] = STATE(9112), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1936), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1937] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9232), - [sym_module_definition] = STATE(9233), - [sym_open_module] = STATE(9234), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1937), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1938] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9465), - [sym_module_definition] = STATE(9463), - [sym_open_module] = STATE(9457), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1938), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1939] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9259), - [sym_module_definition] = STATE(9260), - [sym_open_module] = STATE(9261), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1939), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1940] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8344), - [sym_module_definition] = STATE(8342), - [sym_open_module] = STATE(8341), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1940), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1941] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8498), - [sym_module_definition] = STATE(8501), - [sym_open_module] = STATE(8502), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1941), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1942] = { - [sym_let_binding] = STATE(5539), - [sym_exception_definition] = STATE(9465), - [sym_module_definition] = STATE(9463), - [sym_open_module] = STATE(9457), - [sym__binding_pattern] = STATE(3055), - [sym__binding_pattern_ext] = STATE(1343), - [sym_alias_binding_pattern] = STATE(3056), - [sym_typed_binding_pattern] = STATE(3056), - [sym_or_binding_pattern] = STATE(3056), - [sym_constructor_binding_pattern] = STATE(3056), - [sym_tag_binding_pattern] = STATE(3056), - [sym_polymorphic_variant_pattern] = STATE(3056), - [sym_tuple_binding_pattern] = STATE(3056), - [sym_record_binding_pattern] = STATE(3058), - [sym_list_binding_pattern] = STATE(3059), - [sym_cons_binding_pattern] = STATE(3056), - [sym_array_binding_pattern] = STATE(3060), - [sym_range_pattern] = STATE(3056), - [sym_lazy_binding_pattern] = STATE(3056), - [sym_local_open_binding_pattern] = STATE(3056), - [sym_package_pattern] = STATE(3056), - [sym_parenthesized_binding_pattern] = STATE(3056), - [sym_attribute] = STATE(1942), - [sym__extension] = STATE(3055), - [sym_extension] = STATE(3140), - [sym_quoted_extension] = STATE(3140), - [sym__attribute] = STATE(2239), - [sym__constant] = STATE(2850), - [sym__signed_constant] = STATE(2851), - [sym_number] = STATE(2939), - [sym_signed_number] = STATE(2850), - [sym_character] = STATE(2939), - [sym_string] = STATE(2939), - [sym_quoted_string] = STATE(2939), - [sym_boolean] = STATE(2939), - [sym_unit] = STATE(2939), - [sym__value_name] = STATE(3056), - [sym_parenthesized_operator] = STATE(3138), - [sym_module_path] = STATE(9495), - [sym_constructor_path] = STATE(1342), - [sym_tag] = STATE(1341), - [sym__identifier] = ACTIONS(2495), - [anon_sym_rec] = ACTIONS(3872), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_LBRACK_PIPE] = ACTIONS(2511), - [anon_sym_lazy] = ACTIONS(2513), - [anon_sym_begin] = ACTIONS(2515), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3874), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3876), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym__capitalized_identifier] = ACTIONS(2527), - [aux_sym_tag_token1] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1943] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9072), - [sym_module_definition] = STATE(9073), - [sym_open_module] = STATE(9079), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1943), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1944] = { - [sym__parenthesized_abstract_type] = STATE(2185), - [sym__simple_pattern] = STATE(6715), - [sym__pattern] = STATE(6717), - [sym__pattern_ext] = STATE(6799), - [sym_alias_pattern] = STATE(6715), - [sym_typed_pattern] = STATE(6642), - [sym_or_pattern] = STATE(6715), - [sym_constructor_pattern] = STATE(6715), - [sym_tag_pattern] = STATE(6715), - [sym_polymorphic_variant_pattern] = STATE(6642), - [sym_tuple_pattern] = STATE(6715), - [sym_record_pattern] = STATE(6642), - [sym_list_pattern] = STATE(6642), - [sym_cons_pattern] = STATE(6715), - [sym_array_pattern] = STATE(6642), - [sym_range_pattern] = STATE(6715), - [sym_lazy_pattern] = STATE(6715), - [sym_local_open_pattern] = STATE(6642), - [sym_package_pattern] = STATE(6642), - [sym_parenthesized_pattern] = STATE(6642), - [sym_exception_pattern] = STATE(6715), - [sym_attribute] = STATE(1944), - [sym__extension] = STATE(6717), - [sym_extension] = STATE(5092), - [sym_quoted_extension] = STATE(5092), - [sym__constant] = STATE(6466), - [sym__signed_constant] = STATE(6485), - [sym_number] = STATE(6504), - [sym_signed_number] = STATE(6466), - [sym_character] = STATE(6504), - [sym_string] = STATE(6504), - [sym_quoted_string] = STATE(6504), - [sym_boolean] = STATE(6504), - [sym_unit] = STATE(6504), - [sym__value_pattern] = STATE(6642), - [sym_parenthesized_operator] = STATE(6697), - [sym_module_path] = STATE(8487), - [sym_constructor_path] = STATE(1944), - [sym_tag] = STATE(1955), - [sym__identifier] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(3880), - [anon_sym_COMMA] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3882), - [anon_sym_PIPE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_true] = ACTIONS(3886), - [anon_sym_false] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_exception] = ACTIONS(3890), - [anon_sym_as] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_PIPE] = ACTIONS(3894), - [anon_sym_PIPE_RBRACK] = ACTIONS(3638), - [anon_sym_lazy] = ACTIONS(3896), - [anon_sym_begin] = ACTIONS(3898), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3900), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3902), - [aux_sym_number_token1] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3906), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym__capitalized_identifier] = ACTIONS(3301), - [aux_sym_tag_token1] = ACTIONS(3303), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1945] = { - [sym_let_binding] = STATE(5621), - [sym_exception_definition] = STATE(9499), - [sym_module_definition] = STATE(9498), - [sym_open_module] = STATE(9497), - [sym__binding_pattern] = STATE(3055), - [sym__binding_pattern_ext] = STATE(1345), - [sym_alias_binding_pattern] = STATE(3056), - [sym_typed_binding_pattern] = STATE(3056), - [sym_or_binding_pattern] = STATE(3056), - [sym_constructor_binding_pattern] = STATE(3056), - [sym_tag_binding_pattern] = STATE(3056), - [sym_polymorphic_variant_pattern] = STATE(3056), - [sym_tuple_binding_pattern] = STATE(3056), - [sym_record_binding_pattern] = STATE(3058), - [sym_list_binding_pattern] = STATE(3059), - [sym_cons_binding_pattern] = STATE(3056), - [sym_array_binding_pattern] = STATE(3060), - [sym_range_pattern] = STATE(3056), - [sym_lazy_binding_pattern] = STATE(3056), - [sym_local_open_binding_pattern] = STATE(3056), - [sym_package_pattern] = STATE(3056), - [sym_parenthesized_binding_pattern] = STATE(3056), - [sym_attribute] = STATE(1945), - [sym__extension] = STATE(3055), - [sym_extension] = STATE(3140), - [sym_quoted_extension] = STATE(3140), - [sym__attribute] = STATE(2248), - [sym__constant] = STATE(2850), - [sym__signed_constant] = STATE(2851), - [sym_number] = STATE(2939), - [sym_signed_number] = STATE(2850), - [sym_character] = STATE(2939), - [sym_string] = STATE(2939), - [sym_quoted_string] = STATE(2939), - [sym_boolean] = STATE(2939), - [sym_unit] = STATE(2939), - [sym__value_name] = STATE(3056), - [sym_parenthesized_operator] = STATE(3138), - [sym_module_path] = STATE(9495), - [sym_constructor_path] = STATE(1342), - [sym_tag] = STATE(1341), - [sym__identifier] = ACTIONS(2495), - [anon_sym_rec] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_PLUS] = ACTIONS(2501), - [anon_sym_DASH] = ACTIONS(2501), - [anon_sym_LBRACK] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(2505), - [anon_sym_false] = ACTIONS(2505), - [anon_sym_LBRACE] = ACTIONS(2507), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(2509), - [anon_sym_LBRACK_PIPE] = ACTIONS(2511), - [anon_sym_lazy] = ACTIONS(2513), - [anon_sym_begin] = ACTIONS(2515), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3874), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3876), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2521), - [anon_sym_SQUOTE] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2525), - [sym__capitalized_identifier] = ACTIONS(2527), - [aux_sym_tag_token1] = ACTIONS(2529), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1946] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8935), - [sym_module_definition] = STATE(8936), - [sym_open_module] = STATE(8937), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1946), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1947] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8527), - [sym_module_definition] = STATE(8526), - [sym_open_module] = STATE(8524), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1947), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1948] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8893), - [sym_module_definition] = STATE(8892), - [sym_open_module] = STATE(8891), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1948), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1949] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9061), - [sym_module_definition] = STATE(9057), - [sym_open_module] = STATE(9055), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1949), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1950] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8652), - [sym_module_definition] = STATE(8655), - [sym_open_module] = STATE(8660), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1950), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1951] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9499), - [sym_module_definition] = STATE(9498), - [sym_open_module] = STATE(9497), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1951), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1952] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8789), - [sym_module_definition] = STATE(8794), - [sym_open_module] = STATE(8795), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1952), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1953] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(8740), - [sym_module_definition] = STATE(8739), - [sym_open_module] = STATE(8738), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1953), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1954] = { - [sym_let_binding] = STATE(7109), - [sym_exception_definition] = STATE(9021), - [sym_module_definition] = STATE(9022), - [sym_open_module] = STATE(9024), - [sym__binding_pattern] = STATE(4511), - [sym__binding_pattern_ext] = STATE(1932), - [sym_alias_binding_pattern] = STATE(4514), - [sym_typed_binding_pattern] = STATE(4514), - [sym_or_binding_pattern] = STATE(4514), - [sym_constructor_binding_pattern] = STATE(4514), - [sym_tag_binding_pattern] = STATE(4514), - [sym_polymorphic_variant_pattern] = STATE(4514), - [sym_tuple_binding_pattern] = STATE(4514), - [sym_record_binding_pattern] = STATE(4516), - [sym_list_binding_pattern] = STATE(4518), - [sym_cons_binding_pattern] = STATE(4514), - [sym_array_binding_pattern] = STATE(4521), - [sym_range_pattern] = STATE(4514), - [sym_lazy_binding_pattern] = STATE(4514), - [sym_local_open_binding_pattern] = STATE(4514), - [sym_package_pattern] = STATE(4514), - [sym_parenthesized_binding_pattern] = STATE(4514), - [sym_attribute] = STATE(1954), - [sym__extension] = STATE(4511), - [sym_extension] = STATE(4558), - [sym_quoted_extension] = STATE(4558), - [sym__attribute] = STATE(2285), - [sym__constant] = STATE(4472), - [sym__signed_constant] = STATE(4422), - [sym_number] = STATE(4465), - [sym_signed_number] = STATE(4472), - [sym_character] = STATE(4465), - [sym_string] = STATE(4465), - [sym_quoted_string] = STATE(4465), - [sym_boolean] = STATE(4465), - [sym_unit] = STATE(4465), - [sym__value_name] = STATE(4514), - [sym_parenthesized_operator] = STATE(4517), - [sym_module_path] = STATE(8500), - [sym_constructor_path] = STATE(1867), - [sym_tag] = STATE(1866), - [sym__identifier] = ACTIONS(3672), - [anon_sym_rec] = ACTIONS(3862), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym_PLUS] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_LBRACK] = ACTIONS(3678), - [anon_sym_true] = ACTIONS(3680), - [anon_sym_false] = ACTIONS(3680), - [anon_sym_LBRACE] = ACTIONS(3682), - [anon_sym_exception] = ACTIONS(3864), - [anon_sym_module] = ACTIONS(3866), - [anon_sym_open] = ACTIONS(3868), - [anon_sym_POUND] = ACTIONS(3684), - [anon_sym_LBRACK_PIPE] = ACTIONS(3686), - [anon_sym_lazy] = ACTIONS(3688), - [anon_sym_begin] = ACTIONS(3690), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3692), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3694), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(3696), - [anon_sym_SQUOTE] = ACTIONS(3698), - [anon_sym_DQUOTE] = ACTIONS(3700), - [sym__capitalized_identifier] = ACTIONS(3702), - [aux_sym_tag_token1] = ACTIONS(3704), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1955] = { - [sym__simple_pattern] = STATE(6715), - [sym__pattern] = STATE(6717), - [sym__pattern_ext] = STATE(6801), - [sym_alias_pattern] = STATE(6715), - [sym_typed_pattern] = STATE(6642), - [sym_or_pattern] = STATE(6715), - [sym_constructor_pattern] = STATE(6715), - [sym_tag_pattern] = STATE(6715), - [sym_polymorphic_variant_pattern] = STATE(6642), - [sym_tuple_pattern] = STATE(6715), - [sym_record_pattern] = STATE(6642), - [sym_list_pattern] = STATE(6642), - [sym_cons_pattern] = STATE(6715), - [sym_array_pattern] = STATE(6642), - [sym_range_pattern] = STATE(6715), - [sym_lazy_pattern] = STATE(6715), - [sym_local_open_pattern] = STATE(6642), - [sym_package_pattern] = STATE(6642), - [sym_parenthesized_pattern] = STATE(6642), - [sym_exception_pattern] = STATE(6715), - [sym_attribute] = STATE(1955), - [sym__extension] = STATE(6717), - [sym_extension] = STATE(5092), - [sym_quoted_extension] = STATE(5092), - [sym__constant] = STATE(6466), - [sym__signed_constant] = STATE(6485), - [sym_number] = STATE(6504), - [sym_signed_number] = STATE(6466), - [sym_character] = STATE(6504), - [sym_string] = STATE(6504), - [sym_quoted_string] = STATE(6504), - [sym_boolean] = STATE(6504), - [sym_unit] = STATE(6504), - [sym__value_pattern] = STATE(6642), - [sym_parenthesized_operator] = STATE(6697), - [sym_module_path] = STATE(8487), - [sym_constructor_path] = STATE(1944), - [sym_tag] = STATE(1955), - [sym__identifier] = ACTIONS(3878), - [anon_sym_LPAREN] = ACTIONS(3912), - [anon_sym_COMMA] = ACTIONS(3638), - [anon_sym_PLUS] = ACTIONS(3882), - [anon_sym_DASH] = ACTIONS(3882), - [anon_sym_PIPE] = ACTIONS(3646), - [anon_sym_LBRACK] = ACTIONS(3884), - [anon_sym_true] = ACTIONS(3886), - [anon_sym_false] = ACTIONS(3886), - [anon_sym_LBRACE] = ACTIONS(3888), - [anon_sym_SEMI] = ACTIONS(3638), - [anon_sym_exception] = ACTIONS(3890), - [anon_sym_as] = ACTIONS(3646), - [anon_sym_POUND] = ACTIONS(3892), - [anon_sym_COLON_COLON] = ACTIONS(3638), - [anon_sym_LBRACK_PIPE] = ACTIONS(3894), - [anon_sym_PIPE_RBRACK] = ACTIONS(3638), - [anon_sym_lazy] = ACTIONS(3896), - [anon_sym_begin] = ACTIONS(3898), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3900), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3902), - [aux_sym_number_token1] = ACTIONS(3904), - [anon_sym_SQUOTE] = ACTIONS(3906), - [anon_sym_DQUOTE] = ACTIONS(3908), - [sym__capitalized_identifier] = ACTIONS(3301), - [aux_sym_tag_token1] = ACTIONS(3303), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1956] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1956), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(219), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(2655), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(2655), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1957] = { - [sym__simple_expression] = STATE(1454), - [sym_typed_expression] = STATE(1407), - [sym_list_expression] = STATE(1407), - [sym_array_expression] = STATE(1407), - [sym_record_expression] = STATE(1407), - [sym__argument] = STATE(1752), - [sym_labeled_argument] = STATE(1737), - [sym_prefix_expression] = STATE(1407), - [sym_hash_expression] = STATE(1407), - [sym_field_get_expression] = STATE(1407), - [sym_array_get_expression] = STATE(1407), - [sym_string_get_expression] = STATE(1407), - [sym_bigarray_get_expression] = STATE(1407), - [sym_coercion_expression] = STATE(1407), - [sym_local_open_expression] = STATE(1407), - [sym_package_expression] = STATE(1407), - [sym_new_expression] = STATE(1407), - [sym_object_copy_expression] = STATE(1407), - [sym_method_invocation] = STATE(1407), - [sym_object_expression] = STATE(1407), - [sym_parenthesized_expression] = STATE(1407), - [sym_attribute] = STATE(1957), - [sym__extension] = STATE(1454), - [sym_extension] = STATE(1441), - [sym_quoted_extension] = STATE(1441), - [sym__constant] = STATE(1407), - [sym_number] = STATE(1447), - [sym_character] = STATE(1447), - [sym_string] = STATE(1447), - [sym_quoted_string] = STATE(1447), - [sym_boolean] = STATE(1447), - [sym_unit] = STATE(1447), - [sym__value_name] = STATE(1404), - [sym_parenthesized_operator] = STATE(1448), - [sym_value_path] = STATE(1407), - [sym_module_path] = STATE(9323), - [sym_constructor_path] = STATE(1407), - [sym__label] = STATE(1671), - [sym_tag] = STATE(1407), - [aux_sym_class_application_repeat1] = STATE(1956), - [sym__identifier] = ACTIONS(1273), - [anon_sym_TILDE] = ACTIONS(1277), - [anon_sym_QMARK] = ACTIONS(1277), - [anon_sym_LPAREN] = ACTIONS(485), - [anon_sym_RPAREN] = ACTIONS(2697), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_true] = ACTIONS(489), - [anon_sym_false] = ACTIONS(489), - [anon_sym_COLON2] = ACTIONS(2697), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_object] = ACTIONS(493), - [anon_sym_LBRACK_PIPE] = ACTIONS(497), - [anon_sym_new] = ACTIONS(515), - [anon_sym_LBRACE_LT] = ACTIONS(517), - [anon_sym_begin] = ACTIONS(519), - [sym_ocamlyacc_value] = ACTIONS(521), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(523), - [anon_sym_LBRACE_PERCENT] = ACTIONS(525), - [aux_sym_number_token1] = ACTIONS(527), - [anon_sym_SQUOTE] = ACTIONS(529), - [anon_sym_DQUOTE] = ACTIONS(531), - [sym_prefix_operator] = ACTIONS(533), - [sym__capitalized_identifier] = ACTIONS(537), - [aux_sym_tag_token1] = ACTIONS(539), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1958] = { - [sym__match_cases] = STATE(4320), - [sym_match_case] = STATE(4499), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6460), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1958), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2015), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3914), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1959] = { - [sym__match_cases] = STATE(3202), - [sym_match_case] = STATE(4705), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6486), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1959), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(1988), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3916), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1960] = { - [sym__match_cases] = STATE(3277), - [sym_match_case] = STATE(3887), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6480), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1960), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2036), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1961] = { - [sym_attribute] = STATE(1961), - [sym__identifier] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_constraint] = ACTIONS(3201), - [anon_sym_val] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_inherit] = ACTIONS(3201), - [anon_sym_method] = ACTIONS(3201), - [anon_sym_initializer] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3920), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1962] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3405), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6507), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1962), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2042), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3922), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1963] = { - [sym__match_cases] = STATE(4320), - [sym_match_case] = STATE(4598), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6551), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1963), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2018), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3924), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1964] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3265), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6548), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1964), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2032), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3926), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1965] = { - [sym__match_cases] = STATE(3202), - [sym_match_case] = STATE(3898), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6588), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1965), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2046), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3928), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1966] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3218), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6441), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1966), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2037), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3930), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1967] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3302), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6578), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1967), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2056), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3932), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1968] = { - [sym__match_cases] = STATE(3202), - [sym_match_case] = STATE(3887), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6480), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1968), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2007), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3918), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1969] = { - [sym__match_cases] = STATE(3277), - [sym_match_case] = STATE(4673), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6595), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1969), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(1992), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1970] = { - [sym__match_cases] = STATE(3277), - [sym_match_case] = STATE(3898), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6588), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1970), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2063), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3928), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1971] = { - [sym_attribute] = STATE(1971), - [sym__identifier] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_constraint] = ACTIONS(3551), - [anon_sym_val] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_inherit] = ACTIONS(3551), - [anon_sym_method] = ACTIONS(3551), - [anon_sym_initializer] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3936), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1972] = { - [sym__match_cases] = STATE(3202), - [sym_match_case] = STATE(4673), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6595), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1972), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2060), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3934), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1973] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3311), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6569), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1973), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(2055), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3938), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1974] = { - [sym_attribute] = STATE(1974), - [sym__identifier] = ACTIONS(3201), - [anon_sym_COLON_GT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_PIPE] = ACTIONS(3201), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_COLON2] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3940), - [anon_sym_then] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_GT_RBRACE] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1975] = { - [sym_attribute] = STATE(1975), - [sym__identifier] = ACTIONS(3551), - [anon_sym_COLON_GT] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_PIPE] = ACTIONS(3551), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_COLON2] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_DASH_GT] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_with] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3942), - [anon_sym_then] = ACTIONS(3551), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_GT_RBRACE] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1976] = { - [sym__match_cases] = STATE(3223), - [sym_match_case] = STATE(3324), - [sym__simple_pattern] = STATE(6150), - [sym__pattern] = STATE(6139), - [sym__pattern_ext] = STATE(6522), - [sym_alias_pattern] = STATE(6150), - [sym_typed_pattern] = STATE(6176), - [sym_or_pattern] = STATE(6150), - [sym_constructor_pattern] = STATE(6150), - [sym_tag_pattern] = STATE(6150), - [sym_polymorphic_variant_pattern] = STATE(6176), - [sym_tuple_pattern] = STATE(6150), - [sym_record_pattern] = STATE(6176), - [sym_list_pattern] = STATE(6176), - [sym_cons_pattern] = STATE(6150), - [sym_array_pattern] = STATE(6176), - [sym_range_pattern] = STATE(6150), - [sym_lazy_pattern] = STATE(6150), - [sym_local_open_pattern] = STATE(6176), - [sym_package_pattern] = STATE(6176), - [sym_parenthesized_pattern] = STATE(6176), - [sym_exception_pattern] = STATE(6150), - [sym_attribute] = STATE(1976), - [sym__extension] = STATE(6139), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__attribute] = STATE(1983), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6105), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_pattern] = STATE(6176), - [sym_parenthesized_operator] = STATE(5219), - [sym_module_path] = STATE(9294), - [sym_constructor_path] = STATE(1732), - [sym_tag] = STATE(1742), - [sym__identifier] = ACTIONS(2131), - [anon_sym_LPAREN] = ACTIONS(2133), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(3944), - [anon_sym_LBRACK] = ACTIONS(2139), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2143), - [anon_sym_exception] = ACTIONS(2145), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_LBRACK_PIPE] = ACTIONS(2153), - [anon_sym_lazy] = ACTIONS(2155), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [anon_sym_PERCENT] = ACTIONS(3870), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1977] = { - [sym_attribute] = STATE(1977), - [sym__identifier] = ACTIONS(3551), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_constraint] = ACTIONS(3551), - [anon_sym_val] = ACTIONS(3551), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_inherit] = ACTIONS(3551), - [anon_sym_method] = ACTIONS(3551), - [anon_sym_initializer] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3946), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3551), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3553), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3551), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1978] = { - [sym_attribute] = STATE(1978), - [sym__identifier] = ACTIONS(3201), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_constraint] = ACTIONS(3201), - [anon_sym_val] = ACTIONS(3201), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_inherit] = ACTIONS(3201), - [anon_sym_method] = ACTIONS(3201), - [anon_sym_initializer] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3948), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(3), - [anon_sym_LBRACK_AT_AT] = ACTIONS(3201), - [anon_sym_LBRACK_AT_AT_AT] = ACTIONS(3203), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3201), - [anon_sym_LBRACK_PERCENT_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1979] = { - [sym_attribute] = STATE(1979), - [sym__identifier] = ACTIONS(3551), - [anon_sym_COLON_GT] = ACTIONS(3553), - [anon_sym_TILDE] = ACTIONS(3551), - [anon_sym_QMARK] = ACTIONS(3551), - [anon_sym_LPAREN] = ACTIONS(3553), - [anon_sym_RPAREN] = ACTIONS(3553), - [anon_sym_COMMA] = ACTIONS(3553), - [anon_sym_PLUS] = ACTIONS(3551), - [anon_sym_DASH] = ACTIONS(3551), - [anon_sym_COLON_EQ] = ACTIONS(3553), - [anon_sym_LBRACK] = ACTIONS(3551), - [anon_sym_RBRACK] = ACTIONS(3553), - [anon_sym_true] = ACTIONS(3551), - [anon_sym_false] = ACTIONS(3551), - [anon_sym_COLON2] = ACTIONS(3551), - [anon_sym_DOT] = ACTIONS(3553), - [anon_sym_DASH_GT] = ACTIONS(3551), - [anon_sym_LBRACE] = ACTIONS(3551), - [anon_sym_SEMI] = ACTIONS(3553), - [anon_sym_RBRACE] = ACTIONS(3553), - [anon_sym_end] = ACTIONS(3551), - [anon_sym_with] = ACTIONS(3551), - [anon_sym_object] = ACTIONS(3551), - [anon_sym_AMP] = ACTIONS(3551), - [anon_sym_POUND] = ACTIONS(3551), - [anon_sym_COLON_COLON] = ACTIONS(3553), - [anon_sym_LBRACK_PIPE] = ACTIONS(3553), - [anon_sym_LT_DASH] = ACTIONS(3950), - [anon_sym_then] = ACTIONS(3551), - [anon_sym_else] = ACTIONS(3551), - [anon_sym_new] = ACTIONS(3551), - [anon_sym_LBRACE_LT] = ACTIONS(3553), - [anon_sym_GT_RBRACE] = ACTIONS(3553), - [anon_sym_begin] = ACTIONS(3551), - [sym_ocamlyacc_value] = ACTIONS(3553), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3553), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3553), - [aux_sym_number_token1] = ACTIONS(3553), - [anon_sym_SQUOTE] = ACTIONS(3553), - [anon_sym_DQUOTE] = ACTIONS(3553), - [sym_prefix_operator] = ACTIONS(3553), - [anon_sym_PLUS_DOT] = ACTIONS(3551), - [anon_sym_DASH_DOT] = ACTIONS(3551), - [sym_hash_operator] = ACTIONS(3553), - [aux_sym__pow_operator_token1] = ACTIONS(3553), - [anon_sym_lsl] = ACTIONS(3551), - [anon_sym_lsr] = ACTIONS(3551), - [anon_sym_asr] = ACTIONS(3551), - [aux_sym__mult_operator_token1] = ACTIONS(3551), - [anon_sym_mod] = ACTIONS(3551), - [anon_sym_land] = ACTIONS(3551), - [anon_sym_lor] = ACTIONS(3551), - [anon_sym_lxor] = ACTIONS(3551), - [aux_sym__add_operator_token1] = ACTIONS(3551), - [sym__concat_operator] = ACTIONS(3553), - [sym__rel_operator] = ACTIONS(3551), - [anon_sym_AMP_AMP] = ACTIONS(3551), - [anon_sym_or] = ACTIONS(3551), - [anon_sym_PIPE_PIPE] = ACTIONS(3551), - [sym__capitalized_identifier] = ACTIONS(3553), - [aux_sym_tag_token1] = ACTIONS(3553), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1980] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6362), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1980), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(1981), - [sym_tag] = STATE(1980), - [sym__identifier] = ACTIONS(3952), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(3954), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1981] = { - [sym__binding_pattern] = STATE(6313), - [sym__binding_pattern_ext] = STATE(6363), - [sym_alias_binding_pattern] = STATE(6321), - [sym_typed_binding_pattern] = STATE(6321), - [sym_or_binding_pattern] = STATE(6321), - [sym_constructor_binding_pattern] = STATE(6321), - [sym_tag_binding_pattern] = STATE(6321), - [sym_polymorphic_variant_pattern] = STATE(6321), - [sym_tuple_binding_pattern] = STATE(6321), - [sym_record_binding_pattern] = STATE(6329), - [sym_list_binding_pattern] = STATE(6330), - [sym_cons_binding_pattern] = STATE(6321), - [sym_array_binding_pattern] = STATE(6332), - [sym_range_pattern] = STATE(6321), - [sym_lazy_binding_pattern] = STATE(6321), - [sym_local_open_binding_pattern] = STATE(6321), - [sym_package_pattern] = STATE(6321), - [sym_parenthesized_binding_pattern] = STATE(6321), - [sym_attribute] = STATE(1981), - [sym__extension] = STATE(6313), - [sym_extension] = STATE(4877), - [sym_quoted_extension] = STATE(4877), - [sym__constant] = STATE(6047), - [sym__signed_constant] = STATE(6296), - [sym_number] = STATE(5820), - [sym_signed_number] = STATE(6047), - [sym_character] = STATE(5820), - [sym_string] = STATE(5820), - [sym_quoted_string] = STATE(5820), - [sym_boolean] = STATE(5820), - [sym_unit] = STATE(5820), - [sym__value_name] = STATE(6321), - [sym_parenthesized_operator] = STATE(6017), - [sym_module_path] = STATE(9320), - [sym_constructor_path] = STATE(1981), - [sym_tag] = STATE(1980), - [sym__identifier] = ACTIONS(3952), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_COMMA] = ACTIONS(2493), - [anon_sym_PLUS] = ACTIONS(3642), - [anon_sym_DASH] = ACTIONS(3642), - [anon_sym_PIPE] = ACTIONS(2493), - [anon_sym_LBRACK] = ACTIONS(2461), - [anon_sym_RBRACK] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(2141), - [anon_sym_false] = ACTIONS(2141), - [anon_sym_LBRACE] = ACTIONS(2465), - [anon_sym_SEMI] = ACTIONS(2493), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_POUND] = ACTIONS(3648), - [anon_sym_COLON_COLON] = ACTIONS(2493), - [anon_sym_LBRACK_PIPE] = ACTIONS(2471), - [anon_sym_lazy] = ACTIONS(3954), - [anon_sym_begin] = ACTIONS(2157), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(2159), - [anon_sym_LBRACE_PERCENT] = ACTIONS(2161), - [aux_sym_number_token1] = ACTIONS(2163), - [anon_sym_SQUOTE] = ACTIONS(2165), - [anon_sym_DQUOTE] = ACTIONS(2167), - [sym__capitalized_identifier] = ACTIONS(2169), - [aux_sym_tag_token1] = ACTIONS(2171), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, - [1982] = { - [sym_attribute] = STATE(1982), - [sym__identifier] = ACTIONS(3201), - [anon_sym_COLON_GT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3201), - [anon_sym_QMARK] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_RPAREN] = ACTIONS(3203), - [anon_sym_COMMA] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(3201), - [anon_sym_COLON_EQ] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3201), - [anon_sym_RBRACK] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3201), - [anon_sym_false] = ACTIONS(3201), - [anon_sym_COLON2] = ACTIONS(3201), - [anon_sym_DOT] = ACTIONS(3203), - [anon_sym_DASH_GT] = ACTIONS(3201), - [anon_sym_LBRACE] = ACTIONS(3201), - [anon_sym_SEMI] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_end] = ACTIONS(3201), - [anon_sym_with] = ACTIONS(3201), - [anon_sym_object] = ACTIONS(3201), - [anon_sym_AMP] = ACTIONS(3201), - [anon_sym_POUND] = ACTIONS(3201), - [anon_sym_COLON_COLON] = ACTIONS(3203), - [anon_sym_LBRACK_PIPE] = ACTIONS(3203), - [anon_sym_LT_DASH] = ACTIONS(3956), - [anon_sym_then] = ACTIONS(3201), - [anon_sym_else] = ACTIONS(3201), - [anon_sym_new] = ACTIONS(3201), - [anon_sym_LBRACE_LT] = ACTIONS(3203), - [anon_sym_GT_RBRACE] = ACTIONS(3203), - [anon_sym_begin] = ACTIONS(3201), - [sym_ocamlyacc_value] = ACTIONS(3203), - [anon_sym_LBRACK_AT] = ACTIONS(467), - [anon_sym_LBRACK_PERCENT] = ACTIONS(3203), - [anon_sym_LBRACE_PERCENT] = ACTIONS(3203), - [aux_sym_number_token1] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [sym_prefix_operator] = ACTIONS(3203), - [anon_sym_PLUS_DOT] = ACTIONS(3201), - [anon_sym_DASH_DOT] = ACTIONS(3201), - [sym_hash_operator] = ACTIONS(3203), - [aux_sym__pow_operator_token1] = ACTIONS(3203), - [anon_sym_lsl] = ACTIONS(3201), - [anon_sym_lsr] = ACTIONS(3201), - [anon_sym_asr] = ACTIONS(3201), - [aux_sym__mult_operator_token1] = ACTIONS(3201), - [anon_sym_mod] = ACTIONS(3201), - [anon_sym_land] = ACTIONS(3201), - [anon_sym_lor] = ACTIONS(3201), - [anon_sym_lxor] = ACTIONS(3201), - [aux_sym__add_operator_token1] = ACTIONS(3201), - [sym__concat_operator] = ACTIONS(3203), - [sym__rel_operator] = ACTIONS(3201), - [anon_sym_AMP_AMP] = ACTIONS(3201), - [anon_sym_or] = ACTIONS(3201), - [anon_sym_PIPE_PIPE] = ACTIONS(3201), - [sym__capitalized_identifier] = ACTIONS(3203), - [aux_sym_tag_token1] = ACTIONS(3203), - [sym_comment] = ACTIONS(5), - [sym_line_number_directive] = ACTIONS(5), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1983), 1, - sym_attribute, - STATE(3233), 1, - sym__match_cases, - STATE(3324), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [137] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1984), 1, - sym_attribute, - STATE(3229), 1, - sym__match_cases, - STATE(3405), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [274] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1985), 1, - sym_attribute, - STATE(3296), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [411] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1986), 1, - sym_attribute, - STATE(4311), 1, - sym__match_cases, - STATE(4598), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [548] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1987), 1, - sym_attribute, - STATE(3287), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [685] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1988), 1, - sym_attribute, - STATE(3255), 1, - sym__match_cases, - STATE(4705), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [822] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1989), 1, - sym_attribute, - STATE(3229), 1, - sym__match_cases, - STATE(3265), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [959] = 40, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3862), 1, - anon_sym_rec, - ACTIONS(3868), 1, - anon_sym_open, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(1990), 1, - sym_attribute, - STATE(2285), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - STATE(9193), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [1104] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3930), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1991), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3218), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1241] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1992), 1, - sym_attribute, - STATE(3258), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1378] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1993), 1, - sym_attribute, - STATE(3226), 1, - sym__match_cases, - STATE(3265), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1515] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3938), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1994), 1, - sym_attribute, - STATE(3229), 1, - sym__match_cases, - STATE(3311), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1652] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3930), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1995), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3218), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1789] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1996), 1, - sym_attribute, - STATE(4340), 1, - sym__match_cases, - STATE(4598), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [1926] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3938), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1997), 1, - sym_attribute, - STATE(3226), 1, - sym__match_cases, - STATE(3311), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2063] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1998), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3405), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2200] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(1999), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3302), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2337] = 40, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3862), 1, - anon_sym_rec, - ACTIONS(3868), 1, - anon_sym_open, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2000), 1, - sym_attribute, - STATE(2285), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8338), 1, - sym_open_module, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [2482] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2001), 1, - sym_attribute, - STATE(4399), 1, - sym__match_cases, - STATE(4598), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2619] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2002), 1, - sym_attribute, - STATE(3212), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2756] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2003), 1, - sym_attribute, - STATE(4382), 1, - sym__match_cases, - STATE(4598), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [2893] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3930), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2004), 1, - sym_attribute, - STATE(3218), 1, - sym_match_case, - STATE(3226), 1, - sym__match_cases, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3030] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2005), 1, - sym_attribute, - STATE(3287), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3167] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2006), 1, - sym_attribute, - STATE(3257), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3304] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2007), 1, - sym_attribute, - STATE(3255), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3441] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2008), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3265), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3578] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2009), 1, - sym_attribute, - STATE(3210), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3715] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2010), 1, - sym_attribute, - STATE(3234), 1, - sym__match_cases, - STATE(4705), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3852] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2011), 1, - sym_attribute, - STATE(3229), 1, - sym__match_cases, - STATE(3324), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [3989] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2012), 1, - sym_attribute, - STATE(3226), 1, - sym__match_cases, - STATE(3324), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4126] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2013), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3265), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4263] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3930), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2014), 1, - sym_attribute, - STATE(3218), 1, - sym_match_case, - STATE(3229), 1, - sym__match_cases, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4400] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2015), 1, - sym_attribute, - STATE(4262), 1, - sym__match_cases, - STATE(4499), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4537] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2016), 1, - sym_attribute, - STATE(3256), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4674] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3938), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2017), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3311), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4811] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3924), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2018), 1, - sym_attribute, - STATE(4262), 1, - sym__match_cases, - STATE(4598), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [4948] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2020), 1, - sym_constructor_path, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6753), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 2, - anon_sym_PIPE, - anon_sym_as, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(2019), 2, - sym_attribute, - sym_tag, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2493), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [5083] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6752), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 2, - anon_sym_PIPE, - anon_sym_as, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(2020), 2, - sym_attribute, - sym_constructor_path, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2493), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [5218] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2022), 1, - sym_tag, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6363), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2497), 2, - anon_sym_COLON2, - anon_sym_as, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2021), 2, - sym_attribute, - sym_constructor_path, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2493), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON_COLON, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [5353] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_constructor_path, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6362), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(2497), 2, - anon_sym_COLON2, - anon_sym_as, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2022), 2, - sym_attribute, - sym_tag, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - ACTIONS(2493), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_COLON_COLON, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [5488] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2023), 1, - sym_attribute, - STATE(3257), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5625] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2024), 1, - sym_attribute, - STATE(3212), 1, - sym__match_cases, - STATE(4705), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5762] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2025), 1, - sym_attribute, - STATE(3228), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [5899] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2026), 1, - sym_attribute, - STATE(3234), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6036] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2027), 1, - sym_attribute, - STATE(3234), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6173] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3938), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2028), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3311), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6310] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2029), 1, - sym_attribute, - STATE(3228), 1, - sym__match_cases, - STATE(4705), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6447] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2030), 1, - sym_attribute, - STATE(3228), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6584] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3916), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2031), 1, - sym_attribute, - STATE(3210), 1, - sym__match_cases, - STATE(4705), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6721] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3926), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2032), 1, - sym_attribute, - STATE(3233), 1, - sym__match_cases, - STATE(3265), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6858] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2033), 1, - sym_attribute, - STATE(3257), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [6995] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2034), 1, - sym_attribute, - STATE(3256), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7132] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2035), 1, - sym_attribute, - STATE(3228), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7269] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2036), 1, - sym_attribute, - STATE(3258), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7406] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3930), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2037), 1, - sym_attribute, - STATE(3218), 1, - sym_match_case, - STATE(3233), 1, - sym__match_cases, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7543] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2038), 1, - sym_attribute, - STATE(4311), 1, - sym__match_cases, - STATE(4499), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7680] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2039), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3324), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7817] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2040), 1, - sym_attribute, - STATE(4340), 1, - sym__match_cases, - STATE(4499), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [7954] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2041), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3405), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8091] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2042), 1, - sym_attribute, - STATE(3233), 1, - sym__match_cases, - STATE(3405), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8228] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2043), 1, - sym_attribute, - STATE(3256), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8365] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2044), 1, - sym_attribute, - STATE(3296), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8502] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2045), 1, - sym_attribute, - STATE(3234), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8639] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2046), 1, - sym_attribute, - STATE(3255), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [8776] = 40, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3862), 1, - anon_sym_rec, - ACTIONS(3868), 1, - anon_sym_open, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2047), 1, - sym_attribute, - STATE(2285), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - STATE(8662), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [8921] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3944), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2048), 1, - sym_attribute, - STATE(3211), 1, - sym__match_cases, - STATE(3324), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9058] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3922), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2049), 1, - sym_attribute, - STATE(3226), 1, - sym__match_cases, - STATE(3405), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9195] = 40, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3862), 1, - anon_sym_rec, - ACTIONS(3868), 1, - anon_sym_open, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2050), 1, - sym_attribute, - STATE(2285), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8413), 1, - sym_open_module, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [9340] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2051), 1, - sym_attribute, - STATE(3296), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9477] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2052), 1, - sym_attribute, - STATE(3210), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9614] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2053), 1, - sym_attribute, - STATE(4399), 1, - sym__match_cases, - STATE(4499), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9751] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3914), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2054), 1, - sym_attribute, - STATE(4382), 1, - sym__match_cases, - STATE(4499), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [9888] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3938), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2055), 1, - sym_attribute, - STATE(3233), 1, - sym__match_cases, - STATE(3311), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10025] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2056), 1, - sym_attribute, - STATE(3233), 1, - sym__match_cases, - STATE(3302), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10162] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2057), 1, - sym_attribute, - STATE(3287), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10299] = 40, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3862), 1, - anon_sym_rec, - ACTIONS(3868), 1, - anon_sym_open, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2058), 1, - sym_attribute, - STATE(2285), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8385), 1, - sym_open_module, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [10444] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2059), 1, - sym_attribute, - STATE(3212), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10581] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3934), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2060), 1, - sym_attribute, - STATE(3255), 1, - sym__match_cases, - STATE(4673), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10718] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2061), 1, - sym_attribute, - STATE(3229), 1, - sym__match_cases, - STATE(3302), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10855] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3918), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2062), 1, - sym_attribute, - STATE(3212), 1, - sym__match_cases, - STATE(3887), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [10992] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2063), 1, - sym_attribute, - STATE(3258), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11129] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2064), 1, - sym_attribute, - STATE(3226), 1, - sym__match_cases, - STATE(3302), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11266] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3932), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2065), 1, - sym_attribute, - STATE(3201), 1, - sym__match_cases, - STATE(3302), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11403] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3928), 1, - anon_sym_PIPE, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2066), 1, - sym_attribute, - STATE(3210), 1, - sym__match_cases, - STATE(3898), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11540] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2067), 1, - sym_attribute, - STATE(2218), 1, - sym__attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6794), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11674] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3970), 1, - anon_sym_RPAREN, - ACTIONS(3972), 1, - anon_sym_COLON_COLON, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2068), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6883), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11808] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2069), 1, - sym_attribute, - STATE(2219), 1, - sym__attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6798), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [11942] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(699), 1, - anon_sym_COLON_COLON, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3974), 1, - anon_sym_RPAREN, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2070), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6912), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12076] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3976), 1, - anon_sym_RPAREN, - ACTIONS(3978), 1, - anon_sym_COLON_COLON, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2071), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6829), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12210] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3980), 1, - anon_sym_RPAREN, - ACTIONS(3982), 1, - anon_sym_COLON_COLON, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2072), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6900), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12344] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2073), 1, - sym_attribute, - STATE(2190), 1, - sym__attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6219), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12478] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_COLON_COLON, - ACTIONS(3984), 1, - anon_sym_RPAREN, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2074), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6844), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12612] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2075), 1, - sym_attribute, - STATE(2195), 1, - sym__attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6224), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12746] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2076), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [12877] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2077), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13008] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2078), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13139] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2079), 1, - sym_attribute, - STATE(3891), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13270] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2080), 1, - sym_attribute, - STATE(3279), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6588), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13401] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(3986), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2081), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13532] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3990), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3988), 42, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [13605] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3992), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2083), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13736] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3996), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3994), 42, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [13809] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(3998), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2085), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [13940] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2086), 1, - sym_attribute, - STATE(3382), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14071] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2087), 1, - sym_attribute, - STATE(4609), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14202] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4000), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2088), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6501), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14333] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4028), 1, - sym__left_quoted_string_delimiter, - STATE(2089), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7435), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7006), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [14460] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2090), 1, - sym_attribute, - STATE(4706), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14591] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2091), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14722] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4030), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2092), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6543), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [14853] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4032), 1, - sym__left_quoted_string_delimiter, - STATE(2093), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7701), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7044), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [14980] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2094), 1, - sym_attribute, - STATE(3893), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15111] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4034), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2095), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6563), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15242] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4036), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2096), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6565), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15373] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4038), 1, - sym__left_quoted_string_delimiter, - STATE(2097), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7744), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6944), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [15500] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4040), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2098), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15631] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4042), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2099), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [15762] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4044), 1, - sym__left_quoted_string_delimiter, - STATE(2100), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7685), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7072), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [15889] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4046), 1, - sym__left_quoted_string_delimiter, - STATE(2101), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7570), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7093), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [16016] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2102), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16147] = 38, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4048), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2103), 1, - sym_attribute, - STATE(2297), 1, - sym__attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5751), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [16286] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4050), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2104), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16417] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4052), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2105), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16548] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2106), 1, - sym_attribute, - STATE(3304), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6569), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16679] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2107), 1, - sym_attribute, - STATE(4316), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [16810] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4054), 1, - sym__left_quoted_string_delimiter, - STATE(2108), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7248), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7012), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [16937] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4056), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2109), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17068] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4058), 1, - sym__left_quoted_string_delimiter, - STATE(2110), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7823), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7056), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [17195] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4060), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2111), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17326] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4062), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2112), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17457] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4064), 1, - sym__left_quoted_string_delimiter, - STATE(2113), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7438), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6923), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [17584] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4068), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 42, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [17657] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2115), 1, - sym_attribute, - STATE(3200), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6507), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17788] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2116), 1, - sym_attribute, - STATE(3279), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6595), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [17919] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4070), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2117), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18050] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1185), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 42, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [18123] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2119), 1, - sym_attribute, - STATE(3279), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6480), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18254] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4072), 1, - sym__left_quoted_string_delimiter, - STATE(2120), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7239), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7102), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [18381] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2121), 1, - sym_attribute, - STATE(4508), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6460), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18512] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4074), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2122), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6549), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18643] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4076), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2123), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18774] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2124), 1, - sym_attribute, - STATE(3264), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6548), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [18905] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2125), 1, - sym_attribute, - STATE(4841), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19036] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4078), 1, - sym__left_quoted_string_delimiter, - STATE(2126), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7301), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7101), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [19163] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4080), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2127), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6493), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19294] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4082), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2128), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6489), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19425] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4084), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2129), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6550), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19556] = 38, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4086), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2130), 1, - sym_attribute, - STATE(2255), 1, - sym__attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5629), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [19695] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4088), 1, - sym__left_quoted_string_delimiter, - STATE(2131), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7577), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7037), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [19822] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4090), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2132), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [19953] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4092), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2133), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20084] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4094), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2134), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20215] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2135), 1, - sym_attribute, - STATE(3238), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6441), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20346] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4096), 1, - sym__left_quoted_string_delimiter, - STATE(2136), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7442), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7025), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [20473] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4098), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2137), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20604] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4100), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2138), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6510), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20735] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4102), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2139), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20866] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2140), 1, - sym_attribute, - STATE(3321), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6522), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [20997] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4104), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2141), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21128] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4106), 1, - sym__left_quoted_string_delimiter, - STATE(2142), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7438), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6923), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21255] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4108), 1, - sym__left_quoted_string_delimiter, - STATE(2143), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7712), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7153), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21382] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4110), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2144), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21513] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2145), 1, - sym_attribute, - STATE(4698), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6486), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21644] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - ACTIONS(4112), 1, - anon_sym_PIPE_RBRACK, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2146), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6511), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [21775] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4114), 1, - sym__left_quoted_string_delimiter, - STATE(2147), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7646), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6974), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [21902] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2148), 1, - sym_attribute, - STATE(4316), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6551), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22033] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4116), 1, - sym__left_quoted_string_delimiter, - STATE(2149), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7500), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7097), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22160] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4118), 1, - sym__left_quoted_string_delimiter, - STATE(2150), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7444), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7027), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22287] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4120), 1, - sym__left_quoted_string_delimiter, - STATE(2151), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7756), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7067), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22414] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2152), 1, - sym_attribute, - STATE(3298), 1, - sym_match_case, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6578), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22545] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4122), 1, - anon_sym_RBRACK, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2153), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22676] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2154), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7570), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7093), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [22800] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2155), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6484), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [22928] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2156), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6531), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23056] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2157), 1, - sym_attribute, - STATE(2418), 1, - sym__attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3061), 2, - sym__simple_expression, - sym__extension, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23180] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2158), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6558), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23308] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2159), 1, - sym_attribute, - STATE(2417), 1, - sym__attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3062), 2, - sym__simple_expression, - sym__extension, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23432] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2160), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6472), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23560] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2161), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6541), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23688] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2162), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6474), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [23816] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2163), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7438), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6923), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [23940] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2164), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7442), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7025), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24064] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2165), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6513), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24192] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2166), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7756), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7067), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24316] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2167), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7712), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7153), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24440] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2168), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6591), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24568] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2169), 1, - sym_attribute, - STATE(2436), 1, - sym__attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2785), 2, - sym__simple_expression, - sym__extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24692] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2170), 1, - sym_attribute, - STATE(2408), 1, - sym__attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2786), 2, - sym__simple_expression, - sym__extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [24816] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2171), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6479), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [24944] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2172), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6490), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25072] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2173), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6497), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25200] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2174), 1, - sym_attribute, - STATE(2392), 1, - sym__attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(4101), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [25324] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2175), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6243), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25452] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2176), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6516), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25580] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2177), 1, - sym_attribute, - STATE(2393), 1, - sym__attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(3932), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [25704] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2178), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6457), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25832] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2179), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6238), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [25960] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2180), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6232), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26088] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2181), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6526), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26216] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2182), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6231), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26344] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2183), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6542), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26472] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2184), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6564), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26600] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2185), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6623), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26728] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2186), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6483), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26856] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2187), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6481), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [26984] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2188), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6525), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27112] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2189), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7685), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7072), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [27236] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2190), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6230), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27364] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2191), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6535), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27492] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2192), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6502), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27620] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2193), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6633), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27748] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2194), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6482), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [27876] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2195), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6220), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28004] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2196), 1, - sym_attribute, - STATE(2333), 1, - sym__attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2998), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28128] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2197), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7701), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7044), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28252] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2198), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6576), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28380] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2199), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6554), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28508] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2200), 1, - sym_attribute, - STATE(2324), 1, - sym__attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2999), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28632] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2201), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6624), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [28760] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2202), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7239), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7102), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [28884] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2203), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(6730), 1, - sym__pattern_ext, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [29012] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2204), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7577), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7037), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29136] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2205), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6442), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [29264] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2206), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6727), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [29392] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2207), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7744), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6944), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29516] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2208), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6528), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [29644] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2209), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6512), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [29772] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2210), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7823), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7056), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [29896] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2211), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7444), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7027), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [30020] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2212), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6632), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [30148] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2213), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6586), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [30276] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2214), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7301), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7101), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [30400] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2215), 1, - sym_attribute, - STATE(2500), 1, - sym__attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(3013), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [30524] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2216), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6464), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [30652] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2217), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6462), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [30780] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2218), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6658), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [30908] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3878), 1, - sym__identifier, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3888), 1, - anon_sym_LBRACE, - ACTIONS(3890), 1, - anon_sym_exception, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3896), 1, - anon_sym_lazy, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3912), 1, - anon_sym_LPAREN, - STATE(1944), 1, - sym_constructor_path, - STATE(1955), 1, - sym_tag, - STATE(2219), 1, - sym_attribute, - STATE(6485), 1, - sym__signed_constant, - STATE(6634), 1, - sym__pattern_ext, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(8487), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6717), 2, - sym__pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6642), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6715), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31036] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4150), 1, - anon_sym_PERCENT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2220), 1, - sym_attribute, - STATE(2501), 1, - sym__attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(3014), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [31160] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2221), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6745), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31288] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2222), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6449), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31416] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2223), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6448), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31544] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2224), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6761), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31672] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2225), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6467), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [31800] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2226), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7500), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7097), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [31924] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2227), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6540), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [32052] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2228), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7248), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7012), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [32176] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2229), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6475), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [32304] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2230), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7435), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7006), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [32428] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(4002), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2231), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6874), 1, - sym_field_path, - STATE(7646), 1, - sym_field_expression, - STATE(9421), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6974), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [32552] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2232), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6590), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [32680] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2131), 1, - sym__identifier, - ACTIONS(2133), 1, - anon_sym_LPAREN, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2143), 1, - anon_sym_LBRACE, - ACTIONS(2145), 1, - anon_sym_exception, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2155), 1, - anon_sym_lazy, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(1732), 1, - sym_constructor_path, - STATE(1742), 1, - sym_tag, - STATE(2233), 1, - sym_attribute, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6105), 1, - sym__signed_constant, - STATE(6477), 1, - sym__pattern_ext, - STATE(9294), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6139), 2, - sym__pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6176), 9, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__value_pattern, - STATE(6150), 10, - sym__simple_pattern, - sym_alias_pattern, - sym_or_pattern, - sym_constructor_pattern, - sym_tag_pattern, - sym_tuple_pattern, - sym_cons_pattern, - sym_range_pattern, - sym_lazy_pattern, - sym_exception_pattern, - [32808] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1877), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2234), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [32941] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2235), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [33062] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2236), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [33183] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1879), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2237), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33316] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1819), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2238), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33449] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4300), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1343), 1, - sym__binding_pattern_ext, - STATE(2239), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5524), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33582] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1819), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2240), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [33703] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4302), 1, - anon_sym_RPAREN, - ACTIONS(4304), 1, - anon_sym_COLON_COLON, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2241), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6837), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [33836] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [33907] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1845), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2243), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34040] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(2244), 1, - sym_attribute, - STATE(2604), 1, - sym__attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(4539), 1, - sym__binding_pattern_ext, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34173] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1865), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2245), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34294] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3972), 1, - anon_sym_COLON_COLON, - ACTIONS(4306), 1, - anon_sym_RPAREN, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2246), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6852), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34427] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1865), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2247), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34560] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4308), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1345), 1, - sym__binding_pattern_ext, - STATE(2248), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5691), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34693] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1861), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2249), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [34826] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1855), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2250), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [34947] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [35018] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1855), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2252), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35151] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1861), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2253), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [35272] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(2254), 1, - sym_attribute, - STATE(2589), 1, - sym__attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3077), 1, - sym__binding_pattern_ext, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35405] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4310), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2255), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5687), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35538] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2256), 1, - sym_attribute, - STATE(2633), 1, - sym__attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6364), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35671] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [35742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [35813] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1821), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2259), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [35946] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2260), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36067] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4312), 1, - anon_sym_RPAREN, - ACTIONS(4314), 1, - anon_sym_COLON_COLON, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2261), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6822), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [36200] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [36271] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_COLON2, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4316), 1, - anon_sym_COLON_GT, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2263), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8102), 1, - sym__polymorphic_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [36404] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1857), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2264), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36525] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1879), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2265), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [36646] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1857), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2266), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [36779] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1869), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2267), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [36912] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1881), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2268), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [37033] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2269), 1, - sym_attribute, - STATE(2631), 1, - sym__attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6364), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37166] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [37237] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1881), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2271), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37370] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2272), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [37491] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [37562] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_COLON2, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4320), 1, - anon_sym_COLON_GT, - ACTIONS(4322), 1, - anon_sym_EQ, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2274), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8217), 1, - sym__polymorphic_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [37695] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3870), 1, - anon_sym_PERCENT, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2275), 1, - sym_attribute, - STATE(2571), 1, - sym__attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6749), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [37828] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [37899] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1885), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2277), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38032] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1885), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2278), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [38153] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2279), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [38274] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1843), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2280), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38407] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(699), 1, - anon_sym_COLON_COLON, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(4324), 1, - anon_sym_RPAREN, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2281), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6831), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38540] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1853), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2282), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [38661] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 34, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [38732] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1853), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2284), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38865] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - ACTIONS(4326), 1, - anon_sym_rec, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2285), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(6997), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [38998] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_COLON2, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4328), 1, - anon_sym_COLON_GT, - ACTIONS(4330), 1, - anon_sym_EQ, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2286), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8043), 1, - sym__polymorphic_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [39131] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2287), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [39252] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1867), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2288), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [39385] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_COLON2, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4332), 1, - anon_sym_COLON_GT, - ACTIONS(4334), 1, - anon_sym_EQ, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2289), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8035), 1, - sym__polymorphic_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [39518] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4336), 1, - anon_sym_LT_DASH, - STATE(2290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39591] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4338), 1, - anon_sym_LT_DASH, - STATE(2291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [39664] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1851), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2292), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [39785] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1851), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2293), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [39918] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1863), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2294), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [40051] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1863), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2295), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40172] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - ACTIONS(1859), 1, - anon_sym_RPAREN, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2296), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40293] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4340), 1, - anon_sym_rec, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2297), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5732), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [40426] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1859), 1, - anon_sym_RPAREN, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2298), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [40559] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2555), 1, - anon_sym_COLON2, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4342), 1, - anon_sym_COLON_GT, - ACTIONS(4344), 1, - anon_sym_EQ, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2299), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(7959), 1, - sym__polymorphic_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [40692] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4350), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2300), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9266), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [40824] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1021), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1027), 1, - anon_sym_LBRACE, - ACTIONS(1029), 1, - anon_sym_object, - ACTIONS(1033), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1043), 1, - anon_sym_new, - ACTIONS(1045), 1, - anon_sym_LBRACE_LT, - ACTIONS(1047), 1, - anon_sym_begin, - ACTIONS(1049), 1, - sym_ocamlyacc_value, - ACTIONS(1051), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1053), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1055), 1, - aux_sym_number_token1, - ACTIONS(1057), 1, - anon_sym_SQUOTE, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1061), 1, - sym_prefix_operator, - ACTIONS(1065), 1, - sym__capitalized_identifier, - ACTIONS(1067), 1, - aux_sym_tag_token1, - ACTIONS(1729), 1, - sym__identifier, - STATE(2301), 1, - sym_attribute, - STATE(2564), 1, - sym__value_name, - STATE(2592), 1, - sym_parenthesized_operator, - STATE(8567), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1025), 2, - anon_sym_true, - anon_sym_false, - STATE(2605), 2, - sym_extension, - sym_quoted_extension, - STATE(2616), 2, - sym__simple_expression, - sym__extension, - STATE(2557), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2554), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [40942] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4352), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2302), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [41072] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [41142] = 29, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(187), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_object, - ACTIONS(197), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(207), 1, - anon_sym_new, - ACTIONS(209), 1, - anon_sym_LBRACE_LT, - ACTIONS(211), 1, - anon_sym_begin, - ACTIONS(213), 1, - sym_ocamlyacc_value, - ACTIONS(219), 1, - aux_sym_number_token1, - ACTIONS(221), 1, - anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(225), 1, - sym_prefix_operator, - ACTIONS(229), 1, - sym__capitalized_identifier, - ACTIONS(231), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1197), 1, - sym__identifier, - ACTIONS(1799), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1801), 1, - anon_sym_LBRACE_PERCENT, - STATE(1657), 1, - sym__value_name, - STATE(1660), 1, - sym_parenthesized_operator, - STATE(2304), 1, - sym_attribute, - STATE(8479), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(1654), 2, - sym__simple_expression, - sym__extension, - STATE(1685), 2, - sym_extension, - sym_quoted_extension, - STATE(1683), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1701), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [41260] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4354), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2305), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9088), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [41392] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4356), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2306), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [41522] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2307), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7737), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [41652] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4358), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2308), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8961), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [41784] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - anon_sym_LPAREN, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(959), 1, - anon_sym_LBRACE, - ACTIONS(961), 1, - anon_sym_object, - ACTIONS(965), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(983), 1, - anon_sym_new, - ACTIONS(985), 1, - anon_sym_LBRACE_LT, - ACTIONS(987), 1, - anon_sym_begin, - ACTIONS(989), 1, - sym_ocamlyacc_value, - ACTIONS(991), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(993), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(995), 1, - aux_sym_number_token1, - ACTIONS(997), 1, - anon_sym_SQUOTE, - ACTIONS(999), 1, - anon_sym_DQUOTE, - ACTIONS(1001), 1, - sym_prefix_operator, - ACTIONS(1005), 1, - sym__capitalized_identifier, - ACTIONS(1007), 1, - aux_sym_tag_token1, - ACTIONS(1707), 1, - sym__identifier, - STATE(2309), 1, - sym_attribute, - STATE(2355), 1, - sym_parenthesized_operator, - STATE(2506), 1, - sym__value_name, - STATE(8610), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(957), 2, - anon_sym_true, - anon_sym_false, - STATE(2314), 2, - sym_extension, - sym_quoted_extension, - STATE(2435), 2, - sym__simple_expression, - sym__extension, - STATE(2328), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2486), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [41902] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - anon_sym_LPAREN, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(959), 1, - anon_sym_LBRACE, - ACTIONS(961), 1, - anon_sym_object, - ACTIONS(965), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(983), 1, - anon_sym_new, - ACTIONS(985), 1, - anon_sym_LBRACE_LT, - ACTIONS(987), 1, - anon_sym_begin, - ACTIONS(989), 1, - sym_ocamlyacc_value, - ACTIONS(991), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(993), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(995), 1, - aux_sym_number_token1, - ACTIONS(997), 1, - anon_sym_SQUOTE, - ACTIONS(999), 1, - anon_sym_DQUOTE, - ACTIONS(1001), 1, - sym_prefix_operator, - ACTIONS(1005), 1, - sym__capitalized_identifier, - ACTIONS(1007), 1, - aux_sym_tag_token1, - ACTIONS(1707), 1, - sym__identifier, - STATE(2310), 1, - sym_attribute, - STATE(2355), 1, - sym_parenthesized_operator, - STATE(2506), 1, - sym__value_name, - STATE(8610), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(957), 2, - anon_sym_true, - anon_sym_false, - STATE(2314), 2, - sym_extension, - sym_quoted_extension, - STATE(2485), 2, - sym__simple_expression, - sym__extension, - STATE(2328), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2486), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42020] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42090] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2312), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(8366), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6931), 2, - sym__simple_expression, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42208] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42348] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42488] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42558] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2796), 1, - sym__identifier, - ACTIONS(2800), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2806), 1, - anon_sym_LBRACE, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(2810), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2812), 1, - anon_sym_new, - ACTIONS(2814), 1, - anon_sym_LBRACE_LT, - ACTIONS(2816), 1, - anon_sym_begin, - ACTIONS(2818), 1, - sym_ocamlyacc_value, - ACTIONS(2824), 1, - aux_sym_number_token1, - ACTIONS(2826), 1, - anon_sym_SQUOTE, - ACTIONS(2828), 1, - anon_sym_DQUOTE, - ACTIONS(2830), 1, - sym_prefix_operator, - ACTIONS(2832), 1, - sym__capitalized_identifier, - ACTIONS(2834), 1, - aux_sym_tag_token1, - ACTIONS(4360), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4362), 1, - anon_sym_LBRACE_PERCENT, - STATE(2318), 1, - sym_attribute, - STATE(3673), 1, - sym__value_name, - STATE(3676), 1, - sym_parenthesized_operator, - STATE(8884), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2804), 2, - anon_sym_true, - anon_sym_false, - STATE(3572), 2, - sym__simple_expression, - sym__extension, - STATE(3729), 2, - sym_extension, - sym_quoted_extension, - STATE(3621), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3617), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [42676] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42746] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42816] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42886] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [42956] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43026] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2324), 1, - sym_attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2973), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43144] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4364), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2325), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [43274] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43346] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43486] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1345), 1, - sym__binding_pattern_ext, - STATE(2329), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5663), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [43616] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43686] = 29, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(41), 1, - anon_sym_object, - ACTIONS(45), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(63), 1, - anon_sym_new, - ACTIONS(65), 1, - anon_sym_LBRACE_LT, - ACTIONS(67), 1, - anon_sym_begin, - ACTIONS(69), 1, - sym_ocamlyacc_value, - ACTIONS(81), 1, - aux_sym_number_token1, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(87), 1, - sym_prefix_operator, - ACTIONS(95), 1, - sym__capitalized_identifier, - ACTIONS(99), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1253), 1, - sym__identifier, - ACTIONS(1809), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1811), 1, - anon_sym_LBRACE_PERCENT, - STATE(1860), 1, - sym__value_name, - STATE(1861), 1, - sym_parenthesized_operator, - STATE(2331), 1, - sym_attribute, - STATE(9523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(27), 2, - anon_sym_true, - anon_sym_false, - STATE(1857), 2, - sym_extension, - sym_quoted_extension, - STATE(1916), 2, - sym__simple_expression, - sym__extension, - STATE(1859), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1853), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [43874] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2333), 1, - sym_attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2972), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [43992] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1345), 1, - sym__binding_pattern_ext, - STATE(2334), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5621), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [44192] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2758), 1, - sym__identifier, - ACTIONS(2760), 1, - anon_sym_LPAREN, - ACTIONS(2762), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, - anon_sym_object, - ACTIONS(2770), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2772), 1, - anon_sym_new, - ACTIONS(2774), 1, - anon_sym_LBRACE_LT, - ACTIONS(2776), 1, - anon_sym_begin, - ACTIONS(2778), 1, - sym_ocamlyacc_value, - ACTIONS(2784), 1, - aux_sym_number_token1, - ACTIONS(2786), 1, - anon_sym_SQUOTE, - ACTIONS(2788), 1, - anon_sym_DQUOTE, - ACTIONS(2790), 1, - sym_prefix_operator, - ACTIONS(2792), 1, - sym__capitalized_identifier, - ACTIONS(2794), 1, - aux_sym_tag_token1, - ACTIONS(4366), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4368), 1, - anon_sym_LBRACE_PERCENT, - STATE(2336), 1, - sym_attribute, - STATE(3482), 1, - sym_parenthesized_operator, - STATE(3483), 1, - sym__value_name, - STATE(8695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2764), 2, - anon_sym_true, - anon_sym_false, - STATE(3516), 2, - sym__simple_expression, - sym__extension, - STATE(3528), 2, - sym_extension, - sym_quoted_extension, - STATE(3445), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3533), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44310] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4370), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2337), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9180), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [44442] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2796), 1, - sym__identifier, - ACTIONS(2800), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2806), 1, - anon_sym_LBRACE, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(2810), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2812), 1, - anon_sym_new, - ACTIONS(2814), 1, - anon_sym_LBRACE_LT, - ACTIONS(2816), 1, - anon_sym_begin, - ACTIONS(2818), 1, - sym_ocamlyacc_value, - ACTIONS(2824), 1, - aux_sym_number_token1, - ACTIONS(2826), 1, - anon_sym_SQUOTE, - ACTIONS(2828), 1, - anon_sym_DQUOTE, - ACTIONS(2830), 1, - sym_prefix_operator, - ACTIONS(2832), 1, - sym__capitalized_identifier, - ACTIONS(2834), 1, - aux_sym_tag_token1, - ACTIONS(4360), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4362), 1, - anon_sym_LBRACE_PERCENT, - STATE(2338), 1, - sym_attribute, - STATE(3673), 1, - sym__value_name, - STATE(3676), 1, - sym_parenthesized_operator, - STATE(8884), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2804), 2, - anon_sym_true, - anon_sym_false, - STATE(3566), 2, - sym__simple_expression, - sym__extension, - STATE(3729), 2, - sym_extension, - sym_quoted_extension, - STATE(3621), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3617), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44560] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4372), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2339), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [44690] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2653), 1, - sym__identifier, - ACTIONS(2661), 1, - anon_sym_LPAREN, - ACTIONS(2663), 1, - anon_sym_LBRACK, - ACTIONS(2667), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_object, - ACTIONS(2671), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2673), 1, - anon_sym_new, - ACTIONS(2675), 1, - anon_sym_LBRACE_LT, - ACTIONS(2677), 1, - anon_sym_begin, - ACTIONS(2679), 1, - sym_ocamlyacc_value, - ACTIONS(2685), 1, - aux_sym_number_token1, - ACTIONS(2687), 1, - anon_sym_SQUOTE, - ACTIONS(2689), 1, - anon_sym_DQUOTE, - ACTIONS(2691), 1, - sym_prefix_operator, - ACTIONS(2693), 1, - sym__capitalized_identifier, - ACTIONS(2695), 1, - aux_sym_tag_token1, - ACTIONS(4374), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4376), 1, - anon_sym_LBRACE_PERCENT, - STATE(2340), 1, - sym_attribute, - STATE(3410), 1, - sym__value_name, - STATE(3412), 1, - sym_parenthesized_operator, - STATE(8851), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2665), 2, - anon_sym_true, - anon_sym_false, - STATE(3361), 2, - sym_extension, - sym_quoted_extension, - STATE(3417), 2, - sym__simple_expression, - sym__extension, - STATE(3332), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3400), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44808] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2758), 1, - sym__identifier, - ACTIONS(2760), 1, - anon_sym_LPAREN, - ACTIONS(2762), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, - anon_sym_object, - ACTIONS(2770), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2772), 1, - anon_sym_new, - ACTIONS(2774), 1, - anon_sym_LBRACE_LT, - ACTIONS(2776), 1, - anon_sym_begin, - ACTIONS(2778), 1, - sym_ocamlyacc_value, - ACTIONS(2784), 1, - aux_sym_number_token1, - ACTIONS(2786), 1, - anon_sym_SQUOTE, - ACTIONS(2788), 1, - anon_sym_DQUOTE, - ACTIONS(2790), 1, - sym_prefix_operator, - ACTIONS(2792), 1, - sym__capitalized_identifier, - ACTIONS(2794), 1, - aux_sym_tag_token1, - ACTIONS(4366), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4368), 1, - anon_sym_LBRACE_PERCENT, - STATE(2341), 1, - sym_attribute, - STATE(3482), 1, - sym_parenthesized_operator, - STATE(3483), 1, - sym__value_name, - STATE(8695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2764), 2, - anon_sym_true, - anon_sym_false, - STATE(3525), 2, - sym__simple_expression, - sym__extension, - STATE(3528), 2, - sym_extension, - sym_quoted_extension, - STATE(3445), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3533), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [44926] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1345), 1, - sym__binding_pattern_ext, - STATE(2342), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5527), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [45056] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2343), 1, - sym_attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2965), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45174] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2344), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5527), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [45304] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2653), 1, - sym__identifier, - ACTIONS(2661), 1, - anon_sym_LPAREN, - ACTIONS(2663), 1, - anon_sym_LBRACK, - ACTIONS(2667), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_object, - ACTIONS(2671), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2673), 1, - anon_sym_new, - ACTIONS(2675), 1, - anon_sym_LBRACE_LT, - ACTIONS(2677), 1, - anon_sym_begin, - ACTIONS(2679), 1, - sym_ocamlyacc_value, - ACTIONS(2685), 1, - aux_sym_number_token1, - ACTIONS(2687), 1, - anon_sym_SQUOTE, - ACTIONS(2689), 1, - anon_sym_DQUOTE, - ACTIONS(2691), 1, - sym_prefix_operator, - ACTIONS(2693), 1, - sym__capitalized_identifier, - ACTIONS(2695), 1, - aux_sym_tag_token1, - ACTIONS(4374), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4376), 1, - anon_sym_LBRACE_PERCENT, - STATE(2345), 1, - sym_attribute, - STATE(3410), 1, - sym__value_name, - STATE(3412), 1, - sym_parenthesized_operator, - STATE(8851), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2665), 2, - anon_sym_true, - anon_sym_false, - STATE(3361), 2, - sym_extension, - sym_quoted_extension, - STATE(3374), 2, - sym__simple_expression, - sym__extension, - STATE(3332), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3400), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45422] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2346), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5750), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [45552] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [45622] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2653), 1, - sym__identifier, - ACTIONS(2661), 1, - anon_sym_LPAREN, - ACTIONS(2663), 1, - anon_sym_LBRACK, - ACTIONS(2667), 1, - anon_sym_LBRACE, - ACTIONS(2669), 1, - anon_sym_object, - ACTIONS(2671), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2673), 1, - anon_sym_new, - ACTIONS(2675), 1, - anon_sym_LBRACE_LT, - ACTIONS(2677), 1, - anon_sym_begin, - ACTIONS(2679), 1, - sym_ocamlyacc_value, - ACTIONS(2685), 1, - aux_sym_number_token1, - ACTIONS(2687), 1, - anon_sym_SQUOTE, - ACTIONS(2689), 1, - anon_sym_DQUOTE, - ACTIONS(2691), 1, - sym_prefix_operator, - ACTIONS(2693), 1, - sym__capitalized_identifier, - ACTIONS(2695), 1, - aux_sym_tag_token1, - ACTIONS(4374), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4376), 1, - anon_sym_LBRACE_PERCENT, - STATE(2348), 1, - sym_attribute, - STATE(3410), 1, - sym__value_name, - STATE(3412), 1, - sym_parenthesized_operator, - STATE(8851), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2665), 2, - anon_sym_true, - anon_sym_false, - STATE(3361), 2, - sym_extension, - sym_quoted_extension, - STATE(3369), 2, - sym__simple_expression, - sym__extension, - STATE(3332), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3400), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [45740] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4378), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2349), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [45870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [45940] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46010] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46080] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2353), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5641), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [46210] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4380), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2354), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [46340] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46480] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4382), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2357), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8404), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [46612] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2358), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1469), 2, - sym__simple_expression, - sym__extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [46730] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2359), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5527), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [46860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [46930] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4384), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2361), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9267), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47062] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47132] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4386), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2363), 1, - sym_attribute, - STATE(6500), 1, - sym__binding_pattern_ext, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [47262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47332] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47402] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1345), 1, - sym__binding_pattern_ext, - STATE(2366), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5691), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [47532] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4388), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2367), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6519), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [47662] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4390), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2368), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8357), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47794] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [47864] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4392), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2370), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9074), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [47996] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4394), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2371), 1, - sym_attribute, - STATE(6521), 1, - sym__binding_pattern_ext, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [48126] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2372), 1, - sym_attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3143), 2, - sym__simple_expression, - sym__extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [48244] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48314] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4396), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2374), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9331), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [48446] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [48516] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4398), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2376), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [48646] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4400), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2377), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8868), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [48778] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1343), 1, - sym__binding_pattern_ext, - STATE(2378), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5539), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [48908] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1343), 1, - sym__binding_pattern_ext, - STATE(2379), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5524), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [49038] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4402), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2380), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9279), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [49170] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4404), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2381), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8744), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [49302] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49372] = 29, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(255), 1, - anon_sym_LBRACK, - ACTIONS(259), 1, - anon_sym_LBRACE, - ACTIONS(261), 1, - anon_sym_object, - ACTIONS(265), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(275), 1, - anon_sym_new, - ACTIONS(277), 1, - anon_sym_LBRACE_LT, - ACTIONS(279), 1, - anon_sym_begin, - ACTIONS(281), 1, - sym_ocamlyacc_value, - ACTIONS(287), 1, - aux_sym_number_token1, - ACTIONS(289), 1, - anon_sym_SQUOTE, - ACTIONS(291), 1, - anon_sym_DQUOTE, - ACTIONS(293), 1, - sym_prefix_operator, - ACTIONS(297), 1, - sym__capitalized_identifier, - ACTIONS(299), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1233), 1, - sym__identifier, - ACTIONS(1813), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1815), 1, - anon_sym_LBRACE_PERCENT, - STATE(1829), 1, - sym__value_name, - STATE(1841), 1, - sym_parenthesized_operator, - STATE(2383), 1, - sym_attribute, - STATE(8503), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(257), 2, - anon_sym_true, - anon_sym_false, - STATE(1768), 2, - sym_extension, - sym_quoted_extension, - STATE(1845), 2, - sym__simple_expression, - sym__extension, - STATE(1773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1843), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [49490] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [49560] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4406), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2385), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9141), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [49692] = 29, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(41), 1, - anon_sym_object, - ACTIONS(45), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(63), 1, - anon_sym_new, - ACTIONS(65), 1, - anon_sym_LBRACE_LT, - ACTIONS(67), 1, - anon_sym_begin, - ACTIONS(69), 1, - sym_ocamlyacc_value, - ACTIONS(81), 1, - aux_sym_number_token1, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(87), 1, - sym_prefix_operator, - ACTIONS(95), 1, - sym__capitalized_identifier, - ACTIONS(99), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1253), 1, - sym__identifier, - ACTIONS(1809), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1811), 1, - anon_sym_LBRACE_PERCENT, - STATE(1860), 1, - sym__value_name, - STATE(1861), 1, - sym_parenthesized_operator, - STATE(2386), 1, - sym_attribute, - STATE(9523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(27), 2, - anon_sym_true, - anon_sym_false, - STATE(1857), 2, - sym_extension, - sym_quoted_extension, - STATE(1858), 2, - sym__simple_expression, - sym__extension, - STATE(1859), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1853), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [49810] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4408), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2387), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8867), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [49942] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50012] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50082] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50152] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50224] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2392), 1, - sym_attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(4108), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [50342] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2393), 1, - sym_attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(4109), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [50460] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2796), 1, - sym__identifier, - ACTIONS(2800), 1, - anon_sym_LPAREN, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2806), 1, - anon_sym_LBRACE, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(2810), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2812), 1, - anon_sym_new, - ACTIONS(2814), 1, - anon_sym_LBRACE_LT, - ACTIONS(2816), 1, - anon_sym_begin, - ACTIONS(2818), 1, - sym_ocamlyacc_value, - ACTIONS(2824), 1, - aux_sym_number_token1, - ACTIONS(2826), 1, - anon_sym_SQUOTE, - ACTIONS(2828), 1, - anon_sym_DQUOTE, - ACTIONS(2830), 1, - sym_prefix_operator, - ACTIONS(2832), 1, - sym__capitalized_identifier, - ACTIONS(2834), 1, - aux_sym_tag_token1, - ACTIONS(4360), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4362), 1, - anon_sym_LBRACE_PERCENT, - STATE(2394), 1, - sym_attribute, - STATE(3673), 1, - sym__value_name, - STATE(3676), 1, - sym_parenthesized_operator, - STATE(8884), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2804), 2, - anon_sym_true, - anon_sym_false, - STATE(3604), 2, - sym__simple_expression, - sym__extension, - STATE(3729), 2, - sym_extension, - sym_quoted_extension, - STATE(3621), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3617), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [50578] = 29, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(255), 1, - anon_sym_LBRACK, - ACTIONS(259), 1, - anon_sym_LBRACE, - ACTIONS(261), 1, - anon_sym_object, - ACTIONS(265), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(275), 1, - anon_sym_new, - ACTIONS(277), 1, - anon_sym_LBRACE_LT, - ACTIONS(279), 1, - anon_sym_begin, - ACTIONS(281), 1, - sym_ocamlyacc_value, - ACTIONS(287), 1, - aux_sym_number_token1, - ACTIONS(289), 1, - anon_sym_SQUOTE, - ACTIONS(291), 1, - anon_sym_DQUOTE, - ACTIONS(293), 1, - sym_prefix_operator, - ACTIONS(297), 1, - sym__capitalized_identifier, - ACTIONS(299), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1233), 1, - sym__identifier, - ACTIONS(1813), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1815), 1, - anon_sym_LBRACE_PERCENT, - STATE(1829), 1, - sym__value_name, - STATE(1841), 1, - sym_parenthesized_operator, - STATE(2395), 1, - sym_attribute, - STATE(8503), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(257), 2, - anon_sym_true, - anon_sym_false, - STATE(1768), 2, - sym_extension, - sym_quoted_extension, - STATE(1799), 2, - sym__simple_expression, - sym__extension, - STATE(1773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1843), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [50696] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4410), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2396), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6499), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [50826] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [50896] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4412), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2398), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8904), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [51028] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4414), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2399), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [51158] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4416), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2400), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [51288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51358] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4418), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2402), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8946), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [51490] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(4004), 1, - anon_sym_LPAREN, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4008), 1, - anon_sym_LBRACE, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4018), 1, - anon_sym_begin, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4022), 1, - sym_prefix_operator, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(2403), 1, - sym_attribute, - STATE(2794), 1, - sym__value_name, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(8366), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - STATE(2802), 2, - sym__simple_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [51608] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2404), 1, - sym_attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3116), 2, - sym__simple_expression, - sym__extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [51726] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [51796] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4420), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2406), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9258), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [51928] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4422), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2407), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9227), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [52060] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2408), 1, - sym_attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2788), 2, - sym__simple_expression, - sym__extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [52178] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2409), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1433), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [52296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52366] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52436] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52506] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4424), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2413), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [52636] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - anon_sym_DOT, - ACTIONS(1713), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - sym_hash_operator, - STATE(2414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52712] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2415), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5629), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [52842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [52912] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2417), 1, - sym_attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3086), 2, - sym__simple_expression, - sym__extension, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53030] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4124), 1, - sym__identifier, - ACTIONS(4126), 1, - anon_sym_LPAREN, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4132), 1, - anon_sym_LBRACE, - ACTIONS(4134), 1, - anon_sym_object, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4138), 1, - anon_sym_new, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(4142), 1, - anon_sym_begin, - ACTIONS(4144), 1, - sym_ocamlyacc_value, - ACTIONS(4146), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4148), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4152), 1, - aux_sym_number_token1, - ACTIONS(4154), 1, - anon_sym_SQUOTE, - ACTIONS(4156), 1, - anon_sym_DQUOTE, - ACTIONS(4158), 1, - sym_prefix_operator, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(4162), 1, - aux_sym_tag_token1, - STATE(2418), 1, - sym_attribute, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3184), 1, - sym__value_name, - STATE(8758), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4130), 2, - anon_sym_true, - anon_sym_false, - STATE(3085), 2, - sym__simple_expression, - sym__extension, - STATE(3105), 2, - sym_extension, - sym_quoted_extension, - STATE(3173), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3181), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53148] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(953), 1, - anon_sym_LPAREN, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(959), 1, - anon_sym_LBRACE, - ACTIONS(961), 1, - anon_sym_object, - ACTIONS(965), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(983), 1, - anon_sym_new, - ACTIONS(985), 1, - anon_sym_LBRACE_LT, - ACTIONS(987), 1, - anon_sym_begin, - ACTIONS(989), 1, - sym_ocamlyacc_value, - ACTIONS(991), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(993), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(995), 1, - aux_sym_number_token1, - ACTIONS(997), 1, - anon_sym_SQUOTE, - ACTIONS(999), 1, - anon_sym_DQUOTE, - ACTIONS(1001), 1, - sym_prefix_operator, - ACTIONS(1005), 1, - sym__capitalized_identifier, - ACTIONS(1007), 1, - aux_sym_tag_token1, - ACTIONS(1707), 1, - sym__identifier, - STATE(2355), 1, - sym_parenthesized_operator, - STATE(2419), 1, - sym_attribute, - STATE(2506), 1, - sym__value_name, - STATE(8610), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(957), 2, - anon_sym_true, - anon_sym_false, - STATE(2314), 2, - sym_extension, - sym_quoted_extension, - STATE(2414), 2, - sym__simple_expression, - sym__extension, - STATE(2328), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2486), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53266] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1344), 1, - sym__binding_pattern_ext, - STATE(2420), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5687), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [53396] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2421), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(6922), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [53526] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53596] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4426), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2423), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [53726] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3265), 1, - sym__identifier, - ACTIONS(3269), 1, - anon_sym_LPAREN, - ACTIONS(3271), 1, - anon_sym_LBRACK, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(3279), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3281), 1, - anon_sym_new, - ACTIONS(3283), 1, - anon_sym_LBRACE_LT, - ACTIONS(3285), 1, - anon_sym_begin, - ACTIONS(3287), 1, - sym_ocamlyacc_value, - ACTIONS(3293), 1, - aux_sym_number_token1, - ACTIONS(3295), 1, - anon_sym_SQUOTE, - ACTIONS(3297), 1, - anon_sym_DQUOTE, - ACTIONS(3299), 1, - sym_prefix_operator, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(4428), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4430), 1, - anon_sym_LBRACE_PERCENT, - STATE(2424), 1, - sym_attribute, - STATE(4029), 1, - sym__value_name, - STATE(4030), 1, - sym_parenthesized_operator, - STATE(8523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3273), 2, - anon_sym_true, - anon_sym_false, - STATE(4025), 2, - sym__simple_expression, - sym__extension, - STATE(4048), 2, - sym_extension, - sym_quoted_extension, - STATE(3913), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4034), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [53844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [53914] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3265), 1, - sym__identifier, - ACTIONS(3269), 1, - anon_sym_LPAREN, - ACTIONS(3271), 1, - anon_sym_LBRACK, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(3279), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3281), 1, - anon_sym_new, - ACTIONS(3283), 1, - anon_sym_LBRACE_LT, - ACTIONS(3285), 1, - anon_sym_begin, - ACTIONS(3287), 1, - sym_ocamlyacc_value, - ACTIONS(3293), 1, - aux_sym_number_token1, - ACTIONS(3295), 1, - anon_sym_SQUOTE, - ACTIONS(3297), 1, - anon_sym_DQUOTE, - ACTIONS(3299), 1, - sym_prefix_operator, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(4428), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4430), 1, - anon_sym_LBRACE_PERCENT, - STATE(2426), 1, - sym_attribute, - STATE(4029), 1, - sym__value_name, - STATE(4030), 1, - sym_parenthesized_operator, - STATE(8523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3273), 2, - anon_sym_true, - anon_sym_false, - STATE(3920), 2, - sym__simple_expression, - sym__extension, - STATE(4048), 2, - sym_extension, - sym_quoted_extension, - STATE(3913), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4034), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [54032] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54242] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54382] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54452] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54522] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54592] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54662] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2436), 1, - sym_attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2787), 2, - sym__simple_expression, - sym__extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [54780] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4432), 1, - anon_sym_LT_DASH, - STATE(2437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [54852] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2438), 1, - sym_attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(3026), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [54970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55040] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2440), 1, - sym_attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(3017), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55158] = 29, - ACTIONS(17), 1, - anon_sym_LPAREN, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(41), 1, - anon_sym_object, - ACTIONS(45), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(63), 1, - anon_sym_new, - ACTIONS(65), 1, - anon_sym_LBRACE_LT, - ACTIONS(67), 1, - anon_sym_begin, - ACTIONS(69), 1, - sym_ocamlyacc_value, - ACTIONS(81), 1, - aux_sym_number_token1, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(87), 1, - sym_prefix_operator, - ACTIONS(95), 1, - sym__capitalized_identifier, - ACTIONS(99), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1253), 1, - sym__identifier, - ACTIONS(1809), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1811), 1, - anon_sym_LBRACE_PERCENT, - STATE(1860), 1, - sym__value_name, - STATE(1861), 1, - sym_parenthesized_operator, - STATE(2441), 1, - sym_attribute, - STATE(9523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(27), 2, - anon_sym_true, - anon_sym_false, - STATE(1857), 2, - sym_extension, - sym_quoted_extension, - STATE(1921), 2, - sym__simple_expression, - sym__extension, - STATE(1859), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1853), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55276] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55346] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4434), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2443), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9002), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [55478] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55548] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4436), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2445), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8331), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [55680] = 29, - ACTIONS(109), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_LBRACE, - ACTIONS(117), 1, - anon_sym_object, - ACTIONS(121), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(135), 1, - anon_sym_new, - ACTIONS(137), 1, - anon_sym_LBRACE_LT, - ACTIONS(139), 1, - anon_sym_begin, - ACTIONS(141), 1, - sym_ocamlyacc_value, - ACTIONS(149), 1, - aux_sym_number_token1, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(155), 1, - sym_prefix_operator, - ACTIONS(161), 1, - sym__capitalized_identifier, - ACTIONS(163), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1117), 1, - sym__identifier, - ACTIONS(1805), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1807), 1, - anon_sym_LBRACE_PERCENT, - STATE(1497), 1, - sym_parenthesized_operator, - STATE(1502), 1, - sym__value_name, - STATE(2446), 1, - sym_attribute, - STATE(8778), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(113), 2, - anon_sym_true, - anon_sym_false, - STATE(1545), 2, - sym__simple_expression, - sym__extension, - STATE(1591), 2, - sym_extension, - sym_quoted_extension, - STATE(1628), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1548), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55798] = 29, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(187), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_object, - ACTIONS(197), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(207), 1, - anon_sym_new, - ACTIONS(209), 1, - anon_sym_LBRACE_LT, - ACTIONS(211), 1, - anon_sym_begin, - ACTIONS(213), 1, - sym_ocamlyacc_value, - ACTIONS(219), 1, - aux_sym_number_token1, - ACTIONS(221), 1, - anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(225), 1, - sym_prefix_operator, - ACTIONS(229), 1, - sym__capitalized_identifier, - ACTIONS(231), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1197), 1, - sym__identifier, - ACTIONS(1799), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1801), 1, - anon_sym_LBRACE_PERCENT, - STATE(1657), 1, - sym__value_name, - STATE(1660), 1, - sym_parenthesized_operator, - STATE(2447), 1, - sym_attribute, - STATE(8479), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(1680), 2, - sym__simple_expression, - sym__extension, - STATE(1685), 2, - sym_extension, - sym_quoted_extension, - STATE(1683), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1701), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [55916] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [55986] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4438), 1, - anon_sym_LT_DASH, - STATE(2449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [56058] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4440), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2450), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9194), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [56190] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4442), 1, - anon_sym_LT_DASH, - STATE(2451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [56262] = 29, - ACTIONS(253), 1, - anon_sym_LPAREN, - ACTIONS(255), 1, - anon_sym_LBRACK, - ACTIONS(259), 1, - anon_sym_LBRACE, - ACTIONS(261), 1, - anon_sym_object, - ACTIONS(265), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(275), 1, - anon_sym_new, - ACTIONS(277), 1, - anon_sym_LBRACE_LT, - ACTIONS(279), 1, - anon_sym_begin, - ACTIONS(281), 1, - sym_ocamlyacc_value, - ACTIONS(287), 1, - aux_sym_number_token1, - ACTIONS(289), 1, - anon_sym_SQUOTE, - ACTIONS(291), 1, - anon_sym_DQUOTE, - ACTIONS(293), 1, - sym_prefix_operator, - ACTIONS(297), 1, - sym__capitalized_identifier, - ACTIONS(299), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1233), 1, - sym__identifier, - ACTIONS(1813), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1815), 1, - anon_sym_LBRACE_PERCENT, - STATE(1829), 1, - sym__value_name, - STATE(1841), 1, - sym_parenthesized_operator, - STATE(2452), 1, - sym_attribute, - STATE(8503), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(257), 2, - anon_sym_true, - anon_sym_false, - STATE(1768), 2, - sym_extension, - sym_quoted_extension, - STATE(1831), 2, - sym__simple_expression, - sym__extension, - STATE(1773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1843), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56380] = 29, - ACTIONS(397), 1, - anon_sym_LPAREN, - ACTIONS(399), 1, - anon_sym_LBRACK, - ACTIONS(403), 1, - anon_sym_LBRACE, - ACTIONS(405), 1, - anon_sym_object, - ACTIONS(409), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(427), 1, - anon_sym_new, - ACTIONS(429), 1, - anon_sym_LBRACE_LT, - ACTIONS(431), 1, - anon_sym_begin, - ACTIONS(433), 1, - sym_ocamlyacc_value, - ACTIONS(439), 1, - aux_sym_number_token1, - ACTIONS(441), 1, - anon_sym_SQUOTE, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(445), 1, - sym_prefix_operator, - ACTIONS(449), 1, - sym__capitalized_identifier, - ACTIONS(451), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(469), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(471), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1291), 1, - sym__identifier, - STATE(1500), 1, - sym__value_name, - STATE(1501), 1, - sym_parenthesized_operator, - STATE(2453), 1, - sym_attribute, - STATE(8653), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(401), 2, - anon_sym_true, - anon_sym_false, - STATE(1503), 2, - sym_extension, - sym_quoted_extension, - STATE(1687), 2, - sym__simple_expression, - sym__extension, - STATE(1573), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1541), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56498] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3265), 1, - sym__identifier, - ACTIONS(3269), 1, - anon_sym_LPAREN, - ACTIONS(3271), 1, - anon_sym_LBRACK, - ACTIONS(3275), 1, - anon_sym_LBRACE, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(3279), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3281), 1, - anon_sym_new, - ACTIONS(3283), 1, - anon_sym_LBRACE_LT, - ACTIONS(3285), 1, - anon_sym_begin, - ACTIONS(3287), 1, - sym_ocamlyacc_value, - ACTIONS(3293), 1, - aux_sym_number_token1, - ACTIONS(3295), 1, - anon_sym_SQUOTE, - ACTIONS(3297), 1, - anon_sym_DQUOTE, - ACTIONS(3299), 1, - sym_prefix_operator, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(4428), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4430), 1, - anon_sym_LBRACE_PERCENT, - STATE(2454), 1, - sym_attribute, - STATE(4029), 1, - sym__value_name, - STATE(4030), 1, - sym_parenthesized_operator, - STATE(8523), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3273), 2, - anon_sym_true, - anon_sym_false, - STATE(4013), 2, - sym__simple_expression, - sym__extension, - STATE(4048), 2, - sym_extension, - sym_quoted_extension, - STATE(3913), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4034), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56616] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2455), 1, - sym_attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(4102), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56734] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2456), 1, - sym_attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2766), 2, - sym__simple_expression, - sym__extension, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56852] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4186), 1, - sym__identifier, - ACTIONS(4188), 1, - anon_sym_LPAREN, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_LBRACE, - ACTIONS(4196), 1, - anon_sym_object, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4200), 1, - anon_sym_new, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(4204), 1, - anon_sym_begin, - ACTIONS(4206), 1, - sym_ocamlyacc_value, - ACTIONS(4208), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4210), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4212), 1, - aux_sym_number_token1, - ACTIONS(4214), 1, - anon_sym_SQUOTE, - ACTIONS(4216), 1, - anon_sym_DQUOTE, - ACTIONS(4218), 1, - sym_prefix_operator, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(4222), 1, - aux_sym_tag_token1, - STATE(2457), 1, - sym_attribute, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4051), 1, - sym__value_name, - STATE(8737), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4192), 2, - anon_sym_true, - anon_sym_false, - STATE(3930), 2, - sym_extension, - sym_quoted_extension, - STATE(4089), 2, - sym__simple_expression, - sym__extension, - STATE(3958), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4110), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [56970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57040] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4444), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2459), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9047), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [57172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57242] = 29, - ACTIONS(397), 1, - anon_sym_LPAREN, - ACTIONS(399), 1, - anon_sym_LBRACK, - ACTIONS(403), 1, - anon_sym_LBRACE, - ACTIONS(405), 1, - anon_sym_object, - ACTIONS(409), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(427), 1, - anon_sym_new, - ACTIONS(429), 1, - anon_sym_LBRACE_LT, - ACTIONS(431), 1, - anon_sym_begin, - ACTIONS(433), 1, - sym_ocamlyacc_value, - ACTIONS(439), 1, - aux_sym_number_token1, - ACTIONS(441), 1, - anon_sym_SQUOTE, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(445), 1, - sym_prefix_operator, - ACTIONS(449), 1, - sym__capitalized_identifier, - ACTIONS(451), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(469), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(471), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1291), 1, - sym__identifier, - STATE(1500), 1, - sym__value_name, - STATE(1501), 1, - sym_parenthesized_operator, - STATE(2461), 1, - sym_attribute, - STATE(8653), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(401), 2, - anon_sym_true, - anon_sym_false, - STATE(1503), 2, - sym_extension, - sym_quoted_extension, - STATE(1564), 2, - sym__simple_expression, - sym__extension, - STATE(1573), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1541), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [57360] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4446), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2462), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57490] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1021), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1027), 1, - anon_sym_LBRACE, - ACTIONS(1029), 1, - anon_sym_object, - ACTIONS(1033), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1043), 1, - anon_sym_new, - ACTIONS(1045), 1, - anon_sym_LBRACE_LT, - ACTIONS(1047), 1, - anon_sym_begin, - ACTIONS(1049), 1, - sym_ocamlyacc_value, - ACTIONS(1051), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1053), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1055), 1, - aux_sym_number_token1, - ACTIONS(1057), 1, - anon_sym_SQUOTE, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1061), 1, - sym_prefix_operator, - ACTIONS(1065), 1, - sym__capitalized_identifier, - ACTIONS(1067), 1, - aux_sym_tag_token1, - ACTIONS(1729), 1, - sym__identifier, - STATE(2463), 1, - sym_attribute, - STATE(2564), 1, - sym__value_name, - STATE(2592), 1, - sym_parenthesized_operator, - STATE(8567), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1025), 2, - anon_sym_true, - anon_sym_false, - STATE(2556), 2, - sym__simple_expression, - sym__extension, - STATE(2605), 2, - sym_extension, - sym_quoted_extension, - STATE(2557), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2554), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [57608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [57678] = 29, - ACTIONS(397), 1, - anon_sym_LPAREN, - ACTIONS(399), 1, - anon_sym_LBRACK, - ACTIONS(403), 1, - anon_sym_LBRACE, - ACTIONS(405), 1, - anon_sym_object, - ACTIONS(409), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(427), 1, - anon_sym_new, - ACTIONS(429), 1, - anon_sym_LBRACE_LT, - ACTIONS(431), 1, - anon_sym_begin, - ACTIONS(433), 1, - sym_ocamlyacc_value, - ACTIONS(439), 1, - aux_sym_number_token1, - ACTIONS(441), 1, - anon_sym_SQUOTE, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(445), 1, - sym_prefix_operator, - ACTIONS(449), 1, - sym__capitalized_identifier, - ACTIONS(451), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(469), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(471), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1291), 1, - sym__identifier, - STATE(1500), 1, - sym__value_name, - STATE(1501), 1, - sym_parenthesized_operator, - STATE(2465), 1, - sym_attribute, - STATE(8653), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(401), 2, - anon_sym_true, - anon_sym_false, - STATE(1503), 2, - sym_extension, - sym_quoted_extension, - STATE(1508), 2, - sym__simple_expression, - sym__extension, - STATE(1573), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1541), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [57796] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4448), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2466), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [57926] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1021), 1, - anon_sym_LPAREN, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1027), 1, - anon_sym_LBRACE, - ACTIONS(1029), 1, - anon_sym_object, - ACTIONS(1033), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1043), 1, - anon_sym_new, - ACTIONS(1045), 1, - anon_sym_LBRACE_LT, - ACTIONS(1047), 1, - anon_sym_begin, - ACTIONS(1049), 1, - sym_ocamlyacc_value, - ACTIONS(1051), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1053), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1055), 1, - aux_sym_number_token1, - ACTIONS(1057), 1, - anon_sym_SQUOTE, - ACTIONS(1059), 1, - anon_sym_DQUOTE, - ACTIONS(1061), 1, - sym_prefix_operator, - ACTIONS(1065), 1, - sym__capitalized_identifier, - ACTIONS(1067), 1, - aux_sym_tag_token1, - ACTIONS(1729), 1, - sym__identifier, - STATE(2467), 1, - sym_attribute, - STATE(2564), 1, - sym__value_name, - STATE(2592), 1, - sym_parenthesized_operator, - STATE(8567), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1025), 2, - anon_sym_true, - anon_sym_false, - STATE(2527), 2, - sym__simple_expression, - sym__extension, - STATE(2605), 2, - sym_extension, - sym_quoted_extension, - STATE(2557), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2554), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [58044] = 29, - ACTIONS(185), 1, - anon_sym_LPAREN, - ACTIONS(187), 1, - anon_sym_LBRACK, - ACTIONS(191), 1, - anon_sym_LBRACE, - ACTIONS(193), 1, - anon_sym_object, - ACTIONS(197), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(207), 1, - anon_sym_new, - ACTIONS(209), 1, - anon_sym_LBRACE_LT, - ACTIONS(211), 1, - anon_sym_begin, - ACTIONS(213), 1, - sym_ocamlyacc_value, - ACTIONS(219), 1, - aux_sym_number_token1, - ACTIONS(221), 1, - anon_sym_SQUOTE, - ACTIONS(223), 1, - anon_sym_DQUOTE, - ACTIONS(225), 1, - sym_prefix_operator, - ACTIONS(229), 1, - sym__capitalized_identifier, - ACTIONS(231), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1197), 1, - sym__identifier, - ACTIONS(1799), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1801), 1, - anon_sym_LBRACE_PERCENT, - STATE(1657), 1, - sym__value_name, - STATE(1660), 1, - sym_parenthesized_operator, - STATE(2468), 1, - sym_attribute, - STATE(8479), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(189), 2, - anon_sym_true, - anon_sym_false, - STATE(1670), 2, - sym__simple_expression, - sym__extension, - STATE(1685), 2, - sym_extension, - sym_quoted_extension, - STATE(1683), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1701), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [58162] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4450), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2469), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58292] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2470), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5751), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58422] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4452), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2471), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9151), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [58554] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58624] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [58694] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4454), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2474), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6562), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58824] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4456), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2475), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6566), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [58954] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2476), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(6997), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [59084] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59154] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59224] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4458), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2479), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8547), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [59356] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4460), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2480), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - STATE(9402), 1, - sym__simple_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [59488] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 35, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LT_DASH, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59628] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(485), 1, - anon_sym_LPAREN, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(491), 1, - anon_sym_LBRACE, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(515), 1, - anon_sym_new, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(519), 1, - anon_sym_begin, - ACTIONS(521), 1, - sym_ocamlyacc_value, - ACTIONS(523), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(525), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(527), 1, - aux_sym_number_token1, - ACTIONS(529), 1, - anon_sym_SQUOTE, - ACTIONS(531), 1, - anon_sym_DQUOTE, - ACTIONS(533), 1, - sym_prefix_operator, - ACTIONS(537), 1, - sym__capitalized_identifier, - ACTIONS(539), 1, - aux_sym_tag_token1, - ACTIONS(1273), 1, - sym__identifier, - STATE(1404), 1, - sym__value_name, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(2483), 1, - sym_attribute, - STATE(9323), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(489), 2, - anon_sym_true, - anon_sym_false, - STATE(1397), 2, - sym__simple_expression, - sym__extension, - STATE(1441), 2, - sym_extension, - sym_quoted_extension, - STATE(1447), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1407), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [59746] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4462), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2484), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8430), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [59878] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - anon_sym_DOT, - STATE(2485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [59950] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60020] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(1932), 1, - sym__binding_pattern_ext, - STATE(2487), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(7109), 1, - sym_let_binding, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [60150] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4464), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2488), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8583), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [60282] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4224), 1, - sym__identifier, - ACTIONS(4226), 1, - anon_sym_LPAREN, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4232), 1, - anon_sym_LBRACE, - ACTIONS(4234), 1, - anon_sym_object, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(4242), 1, - anon_sym_begin, - ACTIONS(4244), 1, - sym_ocamlyacc_value, - ACTIONS(4246), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4248), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4250), 1, - aux_sym_number_token1, - ACTIONS(4252), 1, - anon_sym_SQUOTE, - ACTIONS(4254), 1, - anon_sym_DQUOTE, - ACTIONS(4256), 1, - sym_prefix_operator, - ACTIONS(4258), 1, - sym__capitalized_identifier, - ACTIONS(4260), 1, - aux_sym_tag_token1, - STATE(2489), 1, - sym_attribute, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3002), 1, - sym__value_name, - STATE(8429), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4230), 2, - anon_sym_true, - anon_sym_false, - STATE(2882), 2, - sym_extension, - sym_quoted_extension, - STATE(2929), 2, - sym__simple_expression, - sym__extension, - STATE(2898), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2890), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [60400] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2758), 1, - sym__identifier, - ACTIONS(2760), 1, - anon_sym_LPAREN, - ACTIONS(2762), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2768), 1, - anon_sym_object, - ACTIONS(2770), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2772), 1, - anon_sym_new, - ACTIONS(2774), 1, - anon_sym_LBRACE_LT, - ACTIONS(2776), 1, - anon_sym_begin, - ACTIONS(2778), 1, - sym_ocamlyacc_value, - ACTIONS(2784), 1, - aux_sym_number_token1, - ACTIONS(2786), 1, - anon_sym_SQUOTE, - ACTIONS(2788), 1, - anon_sym_DQUOTE, - ACTIONS(2790), 1, - sym_prefix_operator, - ACTIONS(2792), 1, - sym__capitalized_identifier, - ACTIONS(2794), 1, - aux_sym_tag_token1, - ACTIONS(4366), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4368), 1, - anon_sym_LBRACE_PERCENT, - STATE(2490), 1, - sym_attribute, - STATE(3482), 1, - sym_parenthesized_operator, - STATE(3483), 1, - sym__value_name, - STATE(8695), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2764), 2, - anon_sym_true, - anon_sym_false, - STATE(3528), 2, - sym_extension, - sym_quoted_extension, - STATE(3544), 2, - sym__simple_expression, - sym__extension, - STATE(3445), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3533), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [60518] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60588] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4466), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2492), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8689), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [60720] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60790] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [60860] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4468), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2495), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [60990] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1343), 1, - sym__binding_pattern_ext, - STATE(2496), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5576), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [61120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [61260] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1343), 1, - sym__binding_pattern_ext, - STATE(2499), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5527), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [61390] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2500), 1, - sym_attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(2889), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [61508] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4262), 1, - sym__identifier, - ACTIONS(4264), 1, - anon_sym_LPAREN, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4270), 1, - anon_sym_LBRACE, - ACTIONS(4272), 1, - anon_sym_object, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4276), 1, - anon_sym_new, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(4280), 1, - anon_sym_begin, - ACTIONS(4282), 1, - sym_ocamlyacc_value, - ACTIONS(4284), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4286), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4288), 1, - aux_sym_number_token1, - ACTIONS(4290), 1, - anon_sym_SQUOTE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - sym_prefix_operator, - ACTIONS(4296), 1, - sym__capitalized_identifier, - ACTIONS(4298), 1, - aux_sym_tag_token1, - STATE(2501), 1, - sym_attribute, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2991), 1, - sym__value_name, - STATE(8817), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4268), 2, - anon_sym_true, - anon_sym_false, - STATE(2864), 2, - sym_extension, - sym_quoted_extension, - STATE(2888), 2, - sym__simple_expression, - sym__extension, - STATE(2881), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2993), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [61626] = 29, - ACTIONS(397), 1, - anon_sym_LPAREN, - ACTIONS(399), 1, - anon_sym_LBRACK, - ACTIONS(403), 1, - anon_sym_LBRACE, - ACTIONS(405), 1, - anon_sym_object, - ACTIONS(409), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(427), 1, - anon_sym_new, - ACTIONS(429), 1, - anon_sym_LBRACE_LT, - ACTIONS(431), 1, - anon_sym_begin, - ACTIONS(433), 1, - sym_ocamlyacc_value, - ACTIONS(439), 1, - aux_sym_number_token1, - ACTIONS(441), 1, - anon_sym_SQUOTE, - ACTIONS(443), 1, - anon_sym_DQUOTE, - ACTIONS(445), 1, - sym_prefix_operator, - ACTIONS(449), 1, - sym__capitalized_identifier, - ACTIONS(451), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(469), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(471), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(1291), 1, - sym__identifier, - STATE(1500), 1, - sym__value_name, - STATE(1501), 1, - sym_parenthesized_operator, - STATE(2502), 1, - sym_attribute, - STATE(8653), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(401), 2, - anon_sym_true, - anon_sym_false, - STATE(1503), 2, - sym_extension, - sym_quoted_extension, - STATE(2675), 2, - sym__simple_expression, - sym__extension, - STATE(1573), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1541), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [61744] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4470), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2503), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6579), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [61874] = 29, - ACTIONS(109), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_LBRACE, - ACTIONS(117), 1, - anon_sym_object, - ACTIONS(121), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(135), 1, - anon_sym_new, - ACTIONS(137), 1, - anon_sym_LBRACE_LT, - ACTIONS(139), 1, - anon_sym_begin, - ACTIONS(141), 1, - sym_ocamlyacc_value, - ACTIONS(149), 1, - aux_sym_number_token1, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(155), 1, - sym_prefix_operator, - ACTIONS(161), 1, - sym__capitalized_identifier, - ACTIONS(163), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1117), 1, - sym__identifier, - ACTIONS(1805), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1807), 1, - anon_sym_LBRACE_PERCENT, - STATE(1497), 1, - sym_parenthesized_operator, - STATE(1502), 1, - sym__value_name, - STATE(2504), 1, - sym_attribute, - STATE(8778), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(113), 2, - anon_sym_true, - anon_sym_false, - STATE(1591), 2, - sym_extension, - sym_quoted_extension, - STATE(1615), 2, - sym__simple_expression, - sym__extension, - STATE(1628), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1548), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [61992] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - ACTIONS(4472), 1, - anon_sym_PIPE_RBRACK, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2505), 1, - sym_attribute, - STATE(6440), 1, - sym__binding_pattern_ext, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [62122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62192] = 29, - ACTIONS(109), 1, - anon_sym_LPAREN, - ACTIONS(111), 1, - anon_sym_LBRACK, - ACTIONS(115), 1, - anon_sym_LBRACE, - ACTIONS(117), 1, - anon_sym_object, - ACTIONS(121), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(135), 1, - anon_sym_new, - ACTIONS(137), 1, - anon_sym_LBRACE_LT, - ACTIONS(139), 1, - anon_sym_begin, - ACTIONS(141), 1, - sym_ocamlyacc_value, - ACTIONS(149), 1, - aux_sym_number_token1, - ACTIONS(151), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_DQUOTE, - ACTIONS(155), 1, - sym_prefix_operator, - ACTIONS(161), 1, - sym__capitalized_identifier, - ACTIONS(163), 1, - aux_sym_tag_token1, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1117), 1, - sym__identifier, - ACTIONS(1805), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(1807), 1, - anon_sym_LBRACE_PERCENT, - STATE(1497), 1, - sym_parenthesized_operator, - STATE(1502), 1, - sym__value_name, - STATE(2507), 1, - sym_attribute, - STATE(8778), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(113), 2, - anon_sym_true, - anon_sym_false, - STATE(1591), 2, - sym_extension, - sym_quoted_extension, - STATE(1598), 2, - sym__simple_expression, - sym__extension, - STATE(1628), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(1548), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [62310] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4474), 1, - anon_sym_LT_DASH, - STATE(2508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62382] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1711), 1, - anon_sym_DOT, - ACTIONS(1713), 1, - anon_sym_POUND, - ACTIONS(1715), 1, - sym_hash_operator, - STATE(2509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62458] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4476), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2510), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8476), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [62590] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [62660] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4478), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2512), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8628), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [62792] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4480), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2513), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8713), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [62924] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - ACTIONS(4482), 1, - anon_sym_RBRACK, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2514), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [63054] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63124] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63264] = 36, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4348), 1, - anon_sym_COLON2, - ACTIONS(4484), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2518), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(8736), 1, - sym__simple_typed, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [63396] = 35, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(1346), 1, - sym__binding_pattern_ext, - STATE(2519), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(5732), 1, - sym_let_binding, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [63526] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4010), 1, - anon_sym_object, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4014), 1, - anon_sym_new, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(4020), 1, - sym_ocamlyacc_value, - ACTIONS(4024), 1, - sym__capitalized_identifier, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(4164), 1, - sym__identifier, - ACTIONS(4166), 1, - anon_sym_LPAREN, - ACTIONS(4170), 1, - anon_sym_LBRACE, - ACTIONS(4172), 1, - anon_sym_begin, - ACTIONS(4174), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4176), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4178), 1, - aux_sym_number_token1, - ACTIONS(4180), 1, - anon_sym_SQUOTE, - ACTIONS(4182), 1, - anon_sym_DQUOTE, - ACTIONS(4184), 1, - sym_prefix_operator, - STATE(2520), 1, - sym_attribute, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2794), 1, - sym__value_name, - STATE(8359), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4168), 2, - anon_sym_true, - anon_sym_false, - STATE(2771), 2, - sym_extension, - sym_quoted_extension, - STATE(2802), 2, - sym__simple_expression, - sym__extension, - STATE(2773), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(2791), 22, - sym_typed_expression, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_prefix_expression, - sym_hash_expression, - sym_field_get_expression, - sym_array_get_expression, - sym_string_get_expression, - sym_bigarray_get_expression, - sym_coercion_expression, - sym_local_open_expression, - sym_package_expression, - sym_new_expression, - sym_object_copy_expression, - sym_method_invocation, - sym_object_expression, - sym_parenthesized_expression, - sym__constant, - sym_value_path, - sym_constructor_path, - sym_tag, - [63644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 22, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63714] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2374), 1, - aux_sym_let_binding_repeat1, - STATE(2522), 1, - sym_attribute, - STATE(2686), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [63841] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [63910] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2443), 1, - aux_sym_let_binding_repeat1, - STATE(2524), 1, - sym_attribute, - STATE(2666), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [64037] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64106] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64175] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1733), 1, - anon_sym_DOT, - STATE(2527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64246] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64315] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2406), 1, - aux_sym_let_binding_repeat1, - STATE(2529), 1, - sym_attribute, - STATE(2663), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [64442] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2530), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6444), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64569] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64638] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64707] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64776] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2534), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6443), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [64903] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [64972] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2471), 1, - aux_sym_let_binding_repeat1, - STATE(2536), 1, - sym_attribute, - STATE(2694), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [65099] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2537), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6796), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [65226] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65295] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65364] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2492), 1, - aux_sym_let_binding_repeat1, - STATE(2540), 1, - sym_attribute, - STATE(2662), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [65491] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1733), 1, - anon_sym_DOT, - ACTIONS(1735), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - sym_hash_operator, - STATE(2541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65566] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2542), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6445), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [65693] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2450), 1, - aux_sym_let_binding_repeat1, - STATE(2543), 1, - sym_attribute, - STATE(2689), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [65820] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65889] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [65958] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66027] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66096] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66165] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66234] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66303] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2308), 1, - aux_sym_let_binding_repeat1, - STATE(2551), 1, - sym_attribute, - STATE(2685), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [66430] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66499] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66568] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66637] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66706] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66775] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [66844] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2558), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6672), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [66971] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67040] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67109] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2561), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6786), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [67236] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2368), 1, - aux_sym_let_binding_repeat1, - STATE(2562), 1, - sym_attribute, - STATE(2697), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67363] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67432] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67501] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67570] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(2566), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3112), 1, - sym__binding_pattern_ext, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [67697] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67766] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2377), 1, - aux_sym_let_binding_repeat1, - STATE(2568), 1, - sym_attribute, - STATE(2652), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [67893] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [67964] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [68033] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2571), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6787), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [68160] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [68229] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2573), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6805), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [68356] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(2574), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3109), 1, - sym__binding_pattern_ext, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [68483] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [68552] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(2576), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3108), 1, - sym__binding_pattern_ext, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [68679] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [68748] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [68817] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2385), 1, - aux_sym_let_binding_repeat1, - STATE(2579), 1, - sym_attribute, - STATE(2676), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [68944] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69013] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2581), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6613), 1, - sym__binding_pattern_ext, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [69140] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69209] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69278] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69347] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2479), 1, - aux_sym_let_binding_repeat1, - STATE(2585), 1, - sym_attribute, - STATE(2669), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [69474] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69543] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69612] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2588), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6639), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [69739] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2495), 1, - sym__identifier, - ACTIONS(2499), 1, - anon_sym_LPAREN, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2507), 1, - anon_sym_LBRACE, - ACTIONS(2509), 1, - anon_sym_POUND, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2513), 1, - anon_sym_lazy, - ACTIONS(2515), 1, - anon_sym_begin, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(2527), 1, - sym__capitalized_identifier, - ACTIONS(2529), 1, - aux_sym_tag_token1, - ACTIONS(3874), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3876), 1, - anon_sym_LBRACE_PERCENT, - STATE(1341), 1, - sym_tag, - STATE(1342), 1, - sym_constructor_path, - STATE(2589), 1, - sym_attribute, - STATE(2851), 1, - sym__signed_constant, - STATE(3058), 1, - sym_record_binding_pattern, - STATE(3059), 1, - sym_list_binding_pattern, - STATE(3060), 1, - sym_array_binding_pattern, - STATE(3106), 1, - sym__binding_pattern_ext, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(9495), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2505), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(3055), 2, - sym__binding_pattern, - sym__extension, - STATE(3140), 2, - sym_extension, - sym_quoted_extension, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3056), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [69866] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [69935] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70004] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70073] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70142] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70211] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70280] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2510), 1, - aux_sym_let_binding_repeat1, - STATE(2596), 1, - sym_attribute, - STATE(2670), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [70407] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2513), 1, - aux_sym_let_binding_repeat1, - STATE(2597), 1, - sym_attribute, - STATE(2691), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [70534] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2598), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6774), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [70661] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70730] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70799] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70868] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [70937] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71006] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(2604), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(4555), 1, - sym__binding_pattern_ext, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [71133] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71202] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71271] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71340] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71409] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71478] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71547] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71616] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 19, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [71687] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2300), 1, - aux_sym_let_binding_repeat1, - STATE(2613), 1, - sym_attribute, - STATE(2696), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [71814] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3301), 1, - sym__capitalized_identifier, - ACTIONS(3303), 1, - aux_sym_tag_token1, - ACTIONS(3892), 1, - anon_sym_POUND, - ACTIONS(3898), 1, - anon_sym_begin, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(3958), 1, - sym__identifier, - ACTIONS(3960), 1, - anon_sym_LPAREN, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3964), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3968), 1, - anon_sym_lazy, - STATE(2019), 1, - sym_tag, - STATE(2020), 1, - sym_constructor_path, - STATE(2614), 1, - sym_attribute, - STATE(6559), 1, - sym__signed_constant, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6687), 1, - sym_record_binding_pattern, - STATE(6710), 1, - sym_list_binding_pattern, - STATE(6718), 1, - sym_array_binding_pattern, - STATE(6780), 1, - sym__binding_pattern_ext, - STATE(8754), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3886), 2, - anon_sym_true, - anon_sym_false, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6694), 2, - sym__binding_pattern, - sym__extension, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6695), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [71941] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72010] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1733), 1, - anon_sym_DOT, - ACTIONS(1735), 1, - anon_sym_POUND, - ACTIONS(1739), 1, - sym_hash_operator, - STATE(2616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72085] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(2617), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(4571), 1, - sym__binding_pattern_ext, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [72212] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72281] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2619), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6645), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [72408] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72477] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(2621), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(4573), 1, - sym__binding_pattern_ext, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [72604] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72673] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72742] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [72811] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3672), 1, - sym__identifier, - ACTIONS(3674), 1, - anon_sym_LPAREN, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3682), 1, - anon_sym_LBRACE, - ACTIONS(3684), 1, - anon_sym_POUND, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3688), 1, - anon_sym_lazy, - ACTIONS(3690), 1, - anon_sym_begin, - ACTIONS(3692), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3694), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(3702), 1, - sym__capitalized_identifier, - ACTIONS(3704), 1, - aux_sym_tag_token1, - STATE(1866), 1, - sym_tag, - STATE(1867), 1, - sym_constructor_path, - STATE(2625), 1, - sym_attribute, - STATE(4422), 1, - sym__signed_constant, - STATE(4516), 1, - sym_record_binding_pattern, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4518), 1, - sym_list_binding_pattern, - STATE(4521), 1, - sym_array_binding_pattern, - STATE(4533), 1, - sym__binding_pattern_ext, - STATE(8500), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3680), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4511), 2, - sym__binding_pattern, - sym__extension, - STATE(4558), 2, - sym_extension, - sym_quoted_extension, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4514), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [72938] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2626), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(6603), 1, - sym__binding_pattern_ext, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [73065] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [73134] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [73203] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2402), 1, - aux_sym_let_binding_repeat1, - STATE(2629), 1, - sym_attribute, - STATE(2679), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [73330] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [73399] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3648), 1, - anon_sym_POUND, - ACTIONS(3952), 1, - sym__identifier, - ACTIONS(3954), 1, - anon_sym_lazy, - STATE(1980), 1, - sym_tag, - STATE(1981), 1, - sym_constructor_path, - STATE(2631), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6325), 1, - sym__binding_pattern_ext, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [73526] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3870), 1, - anon_sym_PERCENT, - STATE(2459), 1, - aux_sym_let_binding_repeat1, - STATE(2632), 1, - sym_attribute, - STATE(2695), 1, - sym__attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [73653] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2157), 1, - anon_sym_begin, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(2457), 1, - anon_sym_LPAREN, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2465), 1, - anon_sym_LBRACE, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2473), 1, - anon_sym_lazy, - ACTIONS(3648), 1, - anon_sym_POUND, - STATE(2021), 1, - sym_constructor_path, - STATE(2022), 1, - sym_tag, - STATE(2633), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6296), 1, - sym__signed_constant, - STATE(6325), 1, - sym__binding_pattern_ext, - STATE(6329), 1, - sym_record_binding_pattern, - STATE(6330), 1, - sym_list_binding_pattern, - STATE(6332), 1, - sym_array_binding_pattern, - STATE(9320), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2141), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(6313), 2, - sym__binding_pattern, - sym__extension, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(6321), 14, - sym_alias_binding_pattern, - sym_typed_binding_pattern, - sym_or_binding_pattern, - sym_constructor_binding_pattern, - sym_tag_binding_pattern, - sym_polymorphic_variant_pattern, - sym_tuple_binding_pattern, - sym_cons_binding_pattern, - sym_range_pattern, - sym_lazy_binding_pattern, - sym_local_open_binding_pattern, - sym_package_pattern, - sym_parenthesized_binding_pattern, - sym__value_name, - [73780] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [73849] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [73918] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4486), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2636), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [74044] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4488), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2637), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [74170] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4490), 1, - anon_sym_COLON, - STATE(2638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3577), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3634), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3636), 33, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74308] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4492), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2640), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [74434] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4494), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2641), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [74560] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2547), 1, - anon_sym_PLUS, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4346), 1, - anon_sym_DASH, - ACTIONS(4496), 1, - anon_sym_DASH_GT, - STATE(1931), 1, - aux_sym_let_binding_repeat1, - STATE(2642), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [74686] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4498), 1, - anon_sym_LT_DASH, - STATE(2643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74756] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4500), 1, - anon_sym_LT_DASH, - STATE(2644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 32, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74826] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4502), 1, - anon_sym_LT_DASH, - STATE(2645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74896] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4504), 1, - anon_sym_LT_DASH, - STATE(2646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 32, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [74966] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4510), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2647), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(4508), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4506), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [75036] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4517), 1, - aux_sym_attribute_id_token1, - STATE(2648), 1, - sym_attribute, - STATE(2649), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4513), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [75108] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4517), 1, - aux_sym_attribute_id_token1, - STATE(2647), 1, - aux_sym_attribute_id_repeat1, - STATE(2649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4521), 21, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4519), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [75180] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1187), 1, - anon_sym_SEMI, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4068), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(4066), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75285] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75376] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2381), 1, - aux_sym_let_binding_repeat1, - STATE(2652), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [75497] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(4525), 1, - sym__rel_operator, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75592] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1295), 1, - anon_sym_DOT, - ACTIONS(1297), 1, - anon_sym_POUND, - ACTIONS(1299), 1, - sym_hash_operator, - STATE(2654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [75665] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1171), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1169), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75764] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1145), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1143), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75867] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1167), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1165), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [75970] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4533), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2658), 2, - sym_attribute, - aux_sym__structure_repeat1, - ACTIONS(4529), 20, - ts_builtin_sym_end, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4531), 30, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [76039] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [76106] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1163), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1161), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [76209] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [76298] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2512), 1, - aux_sym_let_binding_repeat1, - STATE(2662), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [76419] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2380), 1, - aux_sym_let_binding_repeat1, - STATE(2663), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [76540] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4536), 1, - anon_sym_COLON, - STATE(2664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3577), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [76609] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4508), 22, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - ACTIONS(4506), 30, - anon_sym_let, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [76676] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2398), 1, - aux_sym_let_binding_repeat1, - STATE(2666), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [76797] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2640), 1, - aux_sym_let_binding_repeat1, - STATE(2667), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [76918] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 23, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [77003] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2488), 1, - aux_sym_let_binding_repeat1, - STATE(2669), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [77124] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2484), 1, - aux_sym_let_binding_repeat1, - STATE(2670), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [77245] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4538), 1, - anon_sym_LT_DASH, - STATE(2671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [77314] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3652), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [77381] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2636), 1, - aux_sym_let_binding_repeat1, - STATE(2673), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [77502] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [77583] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1295), 1, - anon_sym_DOT, - ACTIONS(1297), 1, - anon_sym_POUND, - ACTIONS(1299), 1, - sym_hash_operator, - STATE(2675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [77656] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2337), 1, - aux_sym_let_binding_repeat1, - STATE(2676), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [77777] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [77856] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4540), 1, - anon_sym_LT_DASH, - STATE(2678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [77925] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2387), 1, - aux_sym_let_binding_repeat1, - STATE(2679), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [78046] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1119), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [78149] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [78230] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2637), 1, - aux_sym_let_binding_repeat1, - STATE(2682), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [78351] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3660), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3658), 32, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_in, - anon_sym_AMP, - anon_sym_else, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [78418] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1159), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1157), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [78521] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2305), 1, - aux_sym_let_binding_repeat1, - STATE(2685), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [78642] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2407), 1, - aux_sym_let_binding_repeat1, - STATE(2686), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [78763] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [78854] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3634), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3636), 34, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [78921] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2480), 1, - aux_sym_let_binding_repeat1, - STATE(2689), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79042] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2642), 1, - aux_sym_let_binding_repeat1, - STATE(2690), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79163] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2518), 1, - aux_sym_let_binding_repeat1, - STATE(2691), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79284] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2641), 1, - aux_sym_let_binding_repeat1, - STATE(2692), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79405] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1119), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [79504] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2445), 1, - aux_sym_let_binding_repeat1, - STATE(2694), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79625] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2370), 1, - aux_sym_let_binding_repeat1, - STATE(2695), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79746] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2361), 1, - aux_sym_let_binding_repeat1, - STATE(2696), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79867] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2543), 1, - anon_sym_LPAREN, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - STATE(2357), 1, - aux_sym_let_binding_repeat1, - STATE(2697), 1, - sym_attribute, - STATE(4201), 1, - sym__parameter, - STATE(4207), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9355), 1, - sym__label, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2541), 2, - anon_sym_TILDE, - anon_sym_QMARK, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4203), 2, - sym_parameter, - sym__parenthesized_abstract_type, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [79988] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1163), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1161), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3447), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [80156] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1159), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1157), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80258] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1163), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1161), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80360] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80458] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80552] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(1213), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4068), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(4066), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80656] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3527), 32, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [80724] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80814] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80904] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [80992] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3652), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [81058] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1171), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1169), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81156] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3459), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [81222] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81300] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1145), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1143), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81402] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1167), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1165), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81504] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1159), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1157), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81606] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1167), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1165), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81708] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81788] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1145), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1143), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81890] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [81992] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82076] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [82142] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1119), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82244] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(1215), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4068), 4, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 17, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82348] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1171), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1169), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82446] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(2725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3660), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3658), 33, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [82512] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3391), 32, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [82580] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82658] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82746] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82826] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82916] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 26, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [82996] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 9, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83086] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(2733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 13, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 23, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83170] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83264] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4546), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(4548), 30, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [83330] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3435), 36, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - aux_sym_tag_token1, - [83476] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1119), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83574] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3127), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3129), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83639] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3459), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3145), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [83769] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 13, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83852] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [83931] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84010] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84087] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4550), 1, - anon_sym_COLON, - STATE(2746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 18, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - aux_sym__pow_operator_token1, - sym__concat_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3577), 31, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_AMP, - anon_sym_else, - anon_sym_do, - anon_sym_new, - anon_sym_begin, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - aux_sym__mult_operator_token1, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_or, - anon_sym_PIPE_PIPE, - sym__identifier, - [84154] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3319), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84219] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3355), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84284] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3527), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84351] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3475), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3487), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84481] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3537), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [84546] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1159), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1157), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84647] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1145), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1143), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84748] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1163), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1161), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84849] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [84950] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85047] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85140] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85229] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85318] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 8, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85405] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1171), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1169), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85502] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1167), 5, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1165), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [85603] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3519), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85668] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3431), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85733] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4554), 1, - anon_sym_DOT, - STATE(2766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3497), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3499), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85865] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85930] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3545), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [85995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3533), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3403), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86125] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3427), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3419), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86255] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86320] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3383), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86385] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3195), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86450] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3315), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86515] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3351), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86580] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3415), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86645] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3447), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86710] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3451), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86775] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86840] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [86905] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3391), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [86972] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4554), 1, - anon_sym_DOT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(4562), 1, - sym_hash_operator, - STATE(2785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4558), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4556), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87043] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4554), 1, - anon_sym_DOT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(4562), 1, - sym_hash_operator, - STATE(2786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4566), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4564), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87114] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4554), 1, - anon_sym_DOT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(4562), 1, - sym_hash_operator, - STATE(2787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4570), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87185] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4554), 1, - anon_sym_DOT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(4562), 1, - sym_hash_operator, - STATE(2788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4574), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4572), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87256] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3527), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [87323] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(1225), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(2790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4068), 4, - anon_sym_let, - anon_sym_and, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [87426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3201), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3203), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87491] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1185), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [87556] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4068), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [87621] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3189), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87686] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1131), 1, - anon_sym_COLON_COLON, - ACTIONS(1141), 1, - sym__concat_operator, - ACTIONS(1147), 1, - anon_sym_COMMA, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1227), 1, - anon_sym_SEMI, - ACTIONS(4525), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1214), 1, - sym__pow_operator, - STATE(1216), 1, - sym__mult_operator, - STATE(1218), 1, - sym__add_operator, - STATE(1219), 1, - sym__and_operator, - STATE(1222), 1, - sym__or_operator, - STATE(1230), 1, - sym__assign_operator, - STATE(2795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4068), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [87789] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3409), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3411), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87854] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3329), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3331), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87919] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3341), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3343), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [87984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3365), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3367), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88049] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3377), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3379), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3161), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88179] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3165), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3167), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88244] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3513), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3515), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88309] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3521), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3523), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88374] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3547), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3549), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88439] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3557), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3559), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88504] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3509), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3511), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88569] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3505), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3507), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88634] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88699] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3501), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3503), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88764] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3996), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3994), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [88829] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3493), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3495), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88894] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3489), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3491), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [88959] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3481), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3483), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89024] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89089] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3469), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3471), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89154] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3465), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3467), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89219] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3461), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3463), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89284] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3453), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89349] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3437), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3405), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3407), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89479] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3990), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3988), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [89609] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3361), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3363), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3397), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3399), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89739] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3357), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3359), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3345), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3347), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89869] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3391), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [89936] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3337), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3339), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90001] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3333), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3335), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90066] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3321), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3323), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90131] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3309), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3311), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3169), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3171), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90261] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3133), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3135), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3137), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3139), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90391] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3369), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3371), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90456] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3141), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90521] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3173), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3175), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90586] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3325), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3327), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90651] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3177), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3179), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90716] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3307), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90781] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90846] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2843), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3185), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3187), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90911] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3149), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3151), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [90976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3181), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3183), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91041] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3197), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3199), 35, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91106] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3513), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3515), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91170] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3329), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3331), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [91234] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3145), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3147), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91298] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4578), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4576), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91362] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4580), 1, - anon_sym_DOT_DOT, - STATE(2851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2493), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91428] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4584), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4582), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [91492] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3071), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [91556] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 12, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 22, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [91638] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [91716] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 25, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [91794] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [91870] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1203), 1, - anon_sym_COLON_COLON, - ACTIONS(1207), 1, - sym__concat_operator, - ACTIONS(1211), 1, - anon_sym_COMMA, - ACTIONS(1231), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4542), 1, - sym__rel_operator, - STATE(1269), 1, - sym__pow_operator, - STATE(1270), 1, - sym__mult_operator, - STATE(1272), 1, - sym__add_operator, - STATE(1273), 1, - sym__and_operator, - STATE(1274), 1, - sym__or_operator, - STATE(1278), 1, - sym__assign_operator, - STATE(2858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4068), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [91972] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3319), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92036] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3355), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3475), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92164] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3487), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3537), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92292] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3403), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3519), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92420] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3431), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92484] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3195), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3315), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92612] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3319), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [92676] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3351), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92740] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3355), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [92804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3415), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92868] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3475), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [92932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [92996] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3487), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [93060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3545), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93124] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3533), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3537), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [93252] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3451), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93316] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3427), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93380] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3419), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93444] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3403), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [93508] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1159), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [93608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3383), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93736] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3519), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [93800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3431), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [93864] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4588), 1, - anon_sym_DOT, - ACTIONS(4590), 1, - anon_sym_POUND, - ACTIONS(4592), 1, - sym_hash_operator, - STATE(2888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4574), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4572), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [93934] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4588), 1, - anon_sym_DOT, - ACTIONS(4590), 1, - anon_sym_POUND, - ACTIONS(4592), 1, - sym_hash_operator, - STATE(2889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4570), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [94004] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3201), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3203), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94068] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3409), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3411), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94132] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3341), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3343), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94196] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3541), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94260] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3545), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3377), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3379), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94388] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3533), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94452] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3427), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94516] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3419), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94580] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3387), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3383), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94708] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3195), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94772] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3161), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3163), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94836] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3315), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94900] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3351), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [94964] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3415), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95028] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3459), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95092] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3527), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3451), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95222] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3435), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95286] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95350] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3521), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3523), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3547), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3549), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95478] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3391), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3459), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95608] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(2915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3527), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3447), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [95802] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(2918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3391), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [95868] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1145), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [95968] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3435), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96032] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3423), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96096] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3561), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3563), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96160] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3509), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3511), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3505), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3507), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3119), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96352] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3447), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [96416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3501), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3503), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96480] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(1251), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 3, - anon_sym_let, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [96582] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4594), 1, - anon_sym_DOT, - STATE(2929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3497), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3499), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96648] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3493), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3495), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96712] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3553), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96776] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3481), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3483), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96840] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3477), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3479), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96904] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3469), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3471), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [96968] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3465), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3467), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97032] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3383), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97096] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3387), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97160] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3453), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3455), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3419), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97288] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3369), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3371), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97352] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3405), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3407), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3397), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3399), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97480] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3361), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3363), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3427), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3325), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3327), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3197), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3199), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [97736] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3357), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3359), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3345), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3347), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [97864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3431), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97928] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3435), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [97992] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3321), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3323), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98056] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1163), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [98156] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3337), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3339), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [98220] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [98320] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 18, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [98416] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3145), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [98480] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 19, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [98572] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3333), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3335), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [98636] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3309), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3311), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [98700] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [98788] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 20, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [98876] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 21, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [98962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3447), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [99026] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1171), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 18, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [99122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3165), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3167), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99186] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 19, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3553), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3169), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3171), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99314] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3461), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3463), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99378] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(2969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1167), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [99478] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3489), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3491), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [99542] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3533), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [99606] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4594), 1, - anon_sym_DOT, - ACTIONS(4596), 1, - anon_sym_POUND, - ACTIONS(4598), 1, - sym_hash_operator, - STATE(2972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4574), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4572), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99676] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4594), 1, - anon_sym_DOT, - ACTIONS(4596), 1, - anon_sym_POUND, - ACTIONS(4598), 1, - sym_hash_operator, - STATE(2973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4570), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4568), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99746] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3519), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [99810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3133), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3135), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99874] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3137), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3139), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [99938] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3557), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3559), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100002] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3141), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3143), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100066] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100130] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3173), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3175), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3177), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3179), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100258] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3181), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3183), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100322] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100386] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3185), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3187), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100450] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3149), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3151), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100514] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3365), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3367), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100578] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3127), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3129), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100642] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3545), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [100706] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3437), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100770] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3123), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100834] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3189), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [100898] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3305), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3307), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [100962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3201), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3203), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101026] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3369), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3371), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3325), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3327), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101154] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3305), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3307), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101218] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(2997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101282] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4594), 1, - anon_sym_DOT, - ACTIONS(4596), 1, - anon_sym_POUND, - ACTIONS(4598), 1, - sym_hash_operator, - STATE(2998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4566), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4564), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101352] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4594), 1, - anon_sym_DOT, - ACTIONS(4596), 1, - anon_sym_POUND, - ACTIONS(4598), 1, - sym_hash_operator, - STATE(2999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4558), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4556), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101422] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3127), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3129), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3149), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3151), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101550] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3189), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3191), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3197), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3199), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101678] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3409), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3411), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3329), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3331), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101806] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3341), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3343), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3365), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3367), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [101934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3185), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3187), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [101998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3181), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3183), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102062] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3177), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3179), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102126] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3377), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3379), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3161), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102254] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4588), 1, - anon_sym_DOT, - ACTIONS(4590), 1, - anon_sym_POUND, - ACTIONS(4592), 1, - sym_hash_operator, - STATE(3013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4558), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4556), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102324] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4588), 1, - anon_sym_DOT, - ACTIONS(4590), 1, - anon_sym_POUND, - ACTIONS(4592), 1, - sym_hash_operator, - STATE(3014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4566), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4564), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102394] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3541), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [102458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3173), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3175), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102522] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3165), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3167), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102586] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3141), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102650] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3137), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3139), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102714] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3133), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3135), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102778] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3169), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3171), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3513), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3515), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102906] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3521), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3523), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [102970] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3547), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3549), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103034] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3557), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3559), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [103098] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4588), 1, - anon_sym_DOT, - STATE(3026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3497), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3499), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103164] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3509), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3511), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3309), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3311), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103292] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3321), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3323), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [103356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3333), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3335), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103420] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3505), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3507), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103484] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3501), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3503), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103612] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3493), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3495), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103676] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3489), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3491), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [103740] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3481), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3483), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103868] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3469), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3471), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3465), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3467), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [103996] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3461), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3463), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [104060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3453), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104124] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3437), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3439), 31, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [104188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3405), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3407), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104252] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3397), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3399), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104316] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3361), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3363), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104380] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1189), 1, - anon_sym_COMMA, - ACTIONS(1191), 1, - anon_sym_COLON_COLON, - ACTIONS(1193), 1, - sym__concat_operator, - ACTIONS(1229), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4544), 1, - sym__rel_operator, - STATE(1146), 1, - sym__assign_operator, - STATE(1147), 1, - sym__or_operator, - STATE(1148), 1, - sym__and_operator, - STATE(1151), 1, - sym__add_operator, - STATE(1154), 1, - sym__mult_operator, - STATE(1155), 1, - sym__pow_operator, - STATE(3046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 3, - anon_sym_let, - anon_sym_and, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 16, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [104482] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3357), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3359), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104546] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3345), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3347), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104610] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3337), 15, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3339), 34, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [104674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 24, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3459), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [104738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3341), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3343), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [104801] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3321), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3323), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [104864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3355), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [104927] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3553), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [104990] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4602), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4600), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105053] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(2493), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105116] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3475), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105179] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4606), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4604), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105242] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4610), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4608), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105305] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4614), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4612), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105368] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4616), 1, - anon_sym_DOT, - ACTIONS(4618), 1, - anon_sym_POUND, - ACTIONS(4620), 1, - sym_hash_operator, - STATE(3061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4558), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4556), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [105437] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4616), 1, - anon_sym_DOT, - ACTIONS(4618), 1, - anon_sym_POUND, - ACTIONS(4620), 1, - sym_hash_operator, - STATE(3062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4566), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4564), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [105506] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3351), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105569] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [105644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3487), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [105707] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3319), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105770] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3315), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105833] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3537), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [105896] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4624), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4622), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [105959] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3195), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3453), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3455), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106085] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3437), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3439), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106148] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4628), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4626), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106211] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3377), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3379), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106274] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4632), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4630), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3475), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106400] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4636), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4634), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3355), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106526] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4640), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4638), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106589] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3487), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106652] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4644), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4642), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106715] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3319), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106778] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4646), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [106841] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3423), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106904] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4616), 1, - anon_sym_DOT, - ACTIONS(4618), 1, - anon_sym_POUND, - ACTIONS(4620), 1, - sym_hash_operator, - STATE(3085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4570), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4568), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [106973] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4616), 1, - anon_sym_DOT, - ACTIONS(4618), 1, - anon_sym_POUND, - ACTIONS(4620), 1, - sym_hash_operator, - STATE(3086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4574), 17, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(4572), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [107042] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(1271), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 3, - anon_sym_let, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [107143] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1167), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [107242] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107327] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107414] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107501] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107578] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107655] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 12, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107736] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 5, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [107827] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [107922] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [108021] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1163), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [108120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4654), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4652), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108183] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4658), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4656), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108246] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4662), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4660), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108309] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4666), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4664), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3329), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3331), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [108435] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4670), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4668), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3403), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [108561] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4674), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4672), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108624] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3161), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3163), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [108687] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - STATE(3108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4678), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4676), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108752] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2545), 1, - anon_sym_COMMA, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - STATE(3109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4680), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4682), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [108819] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4686), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4684), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [108882] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3409), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3411), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [108945] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2563), 1, - anon_sym_COLON_COLON, - STATE(3112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4690), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4688), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109010] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4694), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4692), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109073] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4698), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4696), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109136] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3537), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3165), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3167), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [109262] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1171), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [109357] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3169), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3171), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [109420] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1217), 1, - anon_sym_COMMA, - ACTIONS(1219), 1, - anon_sym_COLON_COLON, - ACTIONS(1221), 1, - sym__concat_operator, - ACTIONS(1261), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4552), 1, - sym__rel_operator, - STATE(1195), 1, - sym__pow_operator, - STATE(1200), 1, - sym__mult_operator, - STATE(1205), 1, - sym__add_operator, - STATE(1207), 1, - sym__and_operator, - STATE(1208), 1, - sym__or_operator, - STATE(1212), 1, - sym__assign_operator, - STATE(3119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 3, - anon_sym_let, - anon_sym_and, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [109521] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1145), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [109620] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3415), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109683] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3405), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3407), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [109746] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4702), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4700), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109809] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3451), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109872] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3397), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3399), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [109935] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4706), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4704), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [109998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4710), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4708), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110061] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4714), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4712), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110124] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4718), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4716), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110187] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4722), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4720), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3071), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110313] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3133), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3135), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3365), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3367), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110439] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3137), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3139), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3141), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3143), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110565] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3173), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3175), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110628] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3541), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110691] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3423), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110754] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3361), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3363), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110817] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3403), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [110880] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3309), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3311), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [110943] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3513), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3515), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111006] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4616), 1, - anon_sym_DOT, - STATE(3143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3497), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3499), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111071] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3501), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3503), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111134] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1159), 4, - anon_sym_let, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_LBRACK_AT_AT, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [111233] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4726), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4724), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [111296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4730), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4728), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [111359] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4734), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4732), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [111422] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3461), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3463), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111485] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4738), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4736), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [111548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4742), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4740), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [111611] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3177), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3179), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3181), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3183), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111737] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3185), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3187), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3545), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3145), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3147), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111926] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3197), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3199), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [111989] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3119), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3493), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3495), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112115] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3489), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3491), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3383), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112241] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3505), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3507), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3387), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112367] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3149), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3151), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112430] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3451), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112493] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3509), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3511), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112556] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3415), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112619] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3351), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112682] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3315), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112745] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3195), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112808] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3127), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3129), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112871] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4746), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4744), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [112934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3419), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [112997] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3123), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4750), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4748), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [113123] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3305), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3307), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113186] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3519), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113249] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3533), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3427), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113375] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3325), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3327), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113438] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3201), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3203), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113501] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3431), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113564] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3435), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113627] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3189), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3191), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113690] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3521), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3523), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113753] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3547), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3549), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113816] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3369), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3371), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113879] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3465), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3467), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [113942] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3557), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3559), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114005] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3469), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3471), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114068] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3477), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3479), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114131] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3481), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3483), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3357), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3359), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114257] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3345), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3347), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114320] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3561), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3563), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114383] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4754), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4752), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [114446] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4758), 23, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4756), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [114509] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3337), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3339), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114572] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3333), 18, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - aux_sym_directive_token1, - ACTIONS(3335), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - [114635] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4762), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [114697] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4766), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4764), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [114759] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4770), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4768), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [114821] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_PIPE, - STATE(3203), 1, - sym_attribute, - STATE(3209), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [114887] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1279), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [114949] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4782), 1, - anon_sym_else, - STATE(3205), 1, - sym_attribute, - STATE(3252), 1, - sym_else_clause, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115015] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1279), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115077] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4784), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115139] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_PIPE, - STATE(3208), 1, - sym_attribute, - STATE(3209), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115205] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4792), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3209), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115269] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4797), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115331] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4801), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4799), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115393] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4805), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4803), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115455] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4809), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115517] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1241), 1, - anon_sym_COLON_COLON, - ACTIONS(1245), 1, - sym__concat_operator, - ACTIONS(1249), 1, - anon_sym_COMMA, - ACTIONS(1287), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4586), 1, - sym__rel_operator, - STATE(1102), 1, - sym__assign_operator, - STATE(1103), 1, - sym__or_operator, - STATE(1104), 1, - sym__and_operator, - STATE(1107), 1, - sym__add_operator, - STATE(1109), 1, - sym__mult_operator, - STATE(1115), 1, - sym__pow_operator, - STATE(3214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [115617] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4811), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115679] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4817), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4815), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115741] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4784), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115803] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_PIPE, - STATE(3203), 1, - aux_sym__match_cases_repeat1, - STATE(3218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115869] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4825), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [115931] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4817), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4815), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [115993] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4811), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116055] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4829), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116117] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4770), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4768), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116179] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4782), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116245] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4809), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116307] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4805), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4803), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116369] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4837), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4835), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116431] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4801), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4799), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116493] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4797), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116555] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4841), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4839), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116617] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4845), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116679] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4849), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4847), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116741] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4853), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4851), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [116803] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4766), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4764), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116865] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4857), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4855), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116927] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4861), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4859), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [116989] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4865), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4863), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117051] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4776), 1, - anon_sym_PIPE, - STATE(3208), 1, - aux_sym__match_cases_repeat1, - STATE(3238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117117] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4867), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117179] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4825), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117241] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4873), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4871), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117303] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4877), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4875), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117365] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4857), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4855), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117427] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4861), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4859), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117489] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4881), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117551] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4883), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117613] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4883), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117675] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4829), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117737] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4881), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117799] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4877), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4875), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117861] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4865), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4863), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [117923] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4867), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [117985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4873), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4871), 31, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118047] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4849), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4847), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4853), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4851), 33, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118171] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4805), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4803), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118232] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4797), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118293] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4853), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4851), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118354] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4809), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118415] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4811), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118476] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4887), 1, - anon_sym_else, - STATE(3252), 1, - sym_else_clause, - STATE(3261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118541] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4825), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [118602] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4889), 1, - anon_sym_PIPE, - STATE(3263), 1, - sym_attribute, - STATE(3268), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118667] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4891), 1, - anon_sym_PIPE, - STATE(3264), 1, - sym_attribute, - STATE(3269), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118732] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4891), 1, - anon_sym_PIPE, - STATE(3265), 1, - sym_attribute, - STATE(3270), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118797] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4893), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3266), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118860] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4889), 1, - anon_sym_PIPE, - STATE(3267), 1, - sym_attribute, - STATE(3268), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118925] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4896), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3268), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [118988] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4891), 1, - anon_sym_PIPE, - STATE(3266), 1, - aux_sym__match_cases_repeat1, - STATE(3269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [119053] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4891), 1, - anon_sym_PIPE, - STATE(3266), 1, - aux_sym__match_cases_repeat1, - STATE(3270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 30, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [119118] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4829), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119179] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4784), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1185), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119301] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3391), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [119364] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4873), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4871), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119425] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4881), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4770), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4768), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119547] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4865), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4863), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4762), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119669] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4068), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119730] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4845), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119791] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4841), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4839), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [119852] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4899), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [119917] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4887), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 16, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [119982] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1279), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120043] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4899), 1, - anon_sym_else, - STATE(3252), 1, - sym_else_clause, - STATE(3286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [120108] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4766), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4764), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120169] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4849), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4847), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120230] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4861), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4859), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120291] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1263), 1, - anon_sym_COMMA, - ACTIONS(1265), 1, - anon_sym_COLON_COLON, - ACTIONS(1267), 1, - sym__concat_operator, - ACTIONS(1289), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4650), 1, - sym__rel_operator, - STATE(1240), 1, - sym__assign_operator, - STATE(1244), 1, - sym__or_operator, - STATE(1261), 1, - sym__and_operator, - STATE(1285), 1, - sym__add_operator, - STATE(1293), 1, - sym__mult_operator, - STATE(1295), 1, - sym__pow_operator, - STATE(3290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1139), 2, - aux_sym__mult_operator_token1, - anon_sym_mod, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(4523), 3, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [120390] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4837), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4835), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120451] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3996), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3994), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4817), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4815), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4867), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120634] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3527), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [120697] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4801), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4799), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120758] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3990), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3988), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120819] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4889), 1, - anon_sym_PIPE, - STATE(3267), 1, - aux_sym__match_cases_repeat1, - STATE(3298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [120884] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4883), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [120945] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4857), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4855), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [121006] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4877), 14, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4875), 32, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [121067] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4889), 1, - anon_sym_PIPE, - STATE(3263), 1, - aux_sym__match_cases_repeat1, - STATE(3302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_in, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121132] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3303), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121194] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4904), 1, - anon_sym_PIPE, - STATE(3304), 1, - sym_attribute, - STATE(3308), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121258] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3459), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121318] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4906), 1, - anon_sym_else, - STATE(3252), 1, - sym_else_clause, - STATE(3306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121382] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4904), 1, - anon_sym_PIPE, - STATE(3303), 1, - aux_sym__match_cases_repeat1, - STATE(3307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121446] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4904), 1, - anon_sym_PIPE, - STATE(3303), 1, - aux_sym__match_cases_repeat1, - STATE(3308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121510] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3073), 1, - sym__identifier, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3089), 1, - anon_sym_LBRACE, - ACTIONS(3091), 1, - anon_sym_POUND, - ACTIONS(3093), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3095), 1, - anon_sym_begin, - ACTIONS(3101), 1, - aux_sym_number_token1, - ACTIONS(3103), 1, - anon_sym_SQUOTE, - ACTIONS(3105), 1, - anon_sym_DQUOTE, - ACTIONS(3107), 1, - sym__capitalized_identifier, - ACTIONS(3109), 1, - aux_sym_tag_token1, - ACTIONS(4908), 1, - anon_sym_LPAREN, - ACTIONS(4910), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4912), 1, - anon_sym_LBRACE_PERCENT, - STATE(3309), 1, - sym_attribute, - STATE(3789), 1, - sym__simple_pattern_ext, - STATE(3841), 1, - sym_parenthesized_operator, - STATE(9038), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3081), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3085), 2, - anon_sym_true, - anon_sym_false, - STATE(3782), 2, - sym__constant, - sym_signed_number, - STATE(3796), 2, - sym__simple_pattern, - sym__extension, - STATE(3844), 2, - sym_extension, - sym_quoted_extension, - STATE(3850), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3775), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [121614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121674] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4904), 1, - anon_sym_PIPE, - STATE(3307), 1, - aux_sym__match_cases_repeat1, - STATE(3311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 14, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 29, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [121738] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [121860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3435), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [121920] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2169), 1, - sym__capitalized_identifier, - ACTIONS(2171), 1, - aux_sym_tag_token1, - ACTIONS(2531), 1, - sym__identifier, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2557), 1, - anon_sym_LBRACE, - ACTIONS(2561), 1, - anon_sym_POUND, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2567), 1, - anon_sym_begin, - ACTIONS(2575), 1, - aux_sym_number_token1, - ACTIONS(2577), 1, - anon_sym_SQUOTE, - ACTIONS(2579), 1, - anon_sym_DQUOTE, - ACTIONS(3814), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3816), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4914), 1, - anon_sym_LPAREN, - STATE(3315), 1, - sym_attribute, - STATE(4188), 1, - sym__simple_pattern_ext, - STATE(4210), 1, - sym_parenthesized_operator, - STATE(9360), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2547), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2553), 2, - anon_sym_true, - anon_sym_false, - STATE(4205), 2, - sym__simple_pattern, - sym__extension, - STATE(4231), 2, - sym__constant, - sym_signed_number, - STATE(4237), 2, - sym_extension, - sym_quoted_extension, - STATE(4224), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(4223), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [122024] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2896), 1, - sym__identifier, - ACTIONS(2910), 1, - anon_sym_LBRACK, - ACTIONS(2916), 1, - anon_sym_LBRACE, - ACTIONS(2918), 1, - anon_sym_POUND, - ACTIONS(2920), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2922), 1, - anon_sym_begin, - ACTIONS(2930), 1, - aux_sym_number_token1, - ACTIONS(2932), 1, - anon_sym_SQUOTE, - ACTIONS(2934), 1, - anon_sym_DQUOTE, - ACTIONS(2936), 1, - sym__capitalized_identifier, - ACTIONS(2938), 1, - aux_sym_tag_token1, - ACTIONS(4916), 1, - anon_sym_LPAREN, - ACTIONS(4918), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4920), 1, - anon_sym_LBRACE_PERCENT, - STATE(3316), 1, - sym_attribute, - STATE(3635), 1, - sym__simple_pattern_ext, - STATE(3724), 1, - sym_parenthesized_operator, - STATE(8611), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2908), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2912), 2, - anon_sym_true, - anon_sym_false, - STATE(3568), 2, - sym__simple_pattern, - sym__extension, - STATE(3579), 2, - sym__constant, - sym_signed_number, - STATE(3709), 2, - sym_extension, - sym_quoted_extension, - STATE(3710), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - STATE(3723), 12, - sym_typed_pattern, - sym_polymorphic_variant_pattern, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - sym_local_open_pattern, - sym_package_pattern, - sym_parenthesized_pattern, - sym__signed_constant, - sym__value_pattern, - sym_constructor_path, - sym_tag, - [122128] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 21, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_when, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3447), 24, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [122188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 21, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122248] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4906), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 15, - anon_sym_let, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [122312] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 20, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 24, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [122374] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4922), 1, - anon_sym_PIPE, - STATE(3321), 1, - sym_attribute, - STATE(3326), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122437] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4924), 1, - anon_sym_else, - STATE(3252), 1, - sym_else_clause, - STATE(3322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 28, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122500] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4922), 1, - anon_sym_PIPE, - STATE(3323), 1, - sym_attribute, - STATE(3327), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122563] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4922), 1, - anon_sym_PIPE, - STATE(3323), 1, - aux_sym__match_cases_repeat1, - STATE(3324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122626] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4924), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 28, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122689] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4922), 1, - anon_sym_PIPE, - STATE(3326), 1, - sym_attribute, - STATE(3327), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122752] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4926), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3327), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 29, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [122813] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [122871] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [122929] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [122987] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4929), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3331), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [123047] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123163] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4932), 1, - anon_sym_PIPE, - STATE(3331), 1, - aux_sym__match_cases_repeat1, - STATE(3334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [123225] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123283] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123341] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123401] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4934), 1, - anon_sym_else, - STATE(3221), 1, - sym_else_clause, - STATE(3338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 27, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [123463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123521] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123579] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123637] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123753] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123811] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123869] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123927] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [123985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124043] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124101] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124159] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124275] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124333] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124391] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124449] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124507] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124565] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124623] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_POUND, - ACTIONS(4940), 1, - sym_hash_operator, - STATE(3359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124687] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124745] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124803] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124861] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124919] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [124977] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125035] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125093] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125151] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125209] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4936), 1, - anon_sym_DOT, - ACTIONS(4938), 1, - anon_sym_POUND, - ACTIONS(4940), 1, - sym_hash_operator, - STATE(3369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125331] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125447] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125507] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125565] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125623] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125681] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125739] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125797] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125855] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [125913] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4932), 1, - anon_sym_PIPE, - STATE(3331), 1, - aux_sym__match_cases_repeat1, - STATE(3381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [125975] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4932), 1, - anon_sym_PIPE, - STATE(3334), 1, - aux_sym__match_cases_repeat1, - STATE(3382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [126037] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126095] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4934), 1, - anon_sym_else, - STATE(3252), 1, - sym_else_clause, - STATE(3384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 14, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 27, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [126157] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126331] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126447] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126505] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126563] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126621] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126679] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126737] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126795] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126853] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126911] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [126969] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127027] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127085] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127143] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127201] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127259] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127317] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4932), 1, - anon_sym_PIPE, - STATE(3381), 1, - aux_sym__match_cases_repeat1, - STATE(3405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 13, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - anon_sym_mod, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 28, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_let_operator, - aux_sym_directive_token1, - [127379] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127437] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127495] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127611] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127669] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127727] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127785] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127843] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127901] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [127959] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 18, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128017] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4936), 1, - anon_sym_DOT, - STATE(3417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 25, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128077] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128134] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [128215] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128272] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128329] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128386] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128500] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128557] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [128614] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1159), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [128707] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [128782] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1145), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [128875] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1163), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [128968] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [129061] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [129150] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 3, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 14, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - [129235] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [129316] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [129397] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 5, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [129476] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1171), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [129565] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1167), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [129658] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1159), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [129751] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1145), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [129844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [129901] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [129958] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130015] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130074] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130131] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1163), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [130224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130281] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [130374] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [130463] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [130548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130605] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - sym__identifier, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4948), 1, - anon_sym_private, - ACTIONS(4950), 1, - anon_sym_DOT_DOT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(4954), 1, - anon_sym_LBRACK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4972), 1, - sym__capitalized_identifier, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - STATE(3452), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4947), 1, - sym__type_ext, - STATE(5177), 1, - sym_constructor_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4956), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5036), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [130720] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [130801] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130858] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130915] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [130972] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 7, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 14, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [131051] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131110] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1171), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [131199] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [131268] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1167), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [131361] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131475] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1494), 1, - anon_sym_COMMA, - ACTIONS(1496), 1, - anon_sym_COLON_COLON, - ACTIONS(1498), 1, - sym__concat_operator, - ACTIONS(1500), 1, - sym__rel_operator, - ACTIONS(1564), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 3, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 9, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [131570] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1429), 1, - anon_sym_COMMA, - ACTIONS(1431), 1, - anon_sym_COLON_COLON, - ACTIONS(1433), 1, - sym__concat_operator, - ACTIONS(1562), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(4942), 1, - sym__rel_operator, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 2, - anon_sym_PIPE, - anon_sym_LBRACK_AT_AT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 10, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [131665] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131722] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [131793] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [131868] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131925] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [131982] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1241), 1, - sym__assign_operator, - STATE(1242), 1, - sym__or_operator, - STATE(1243), 1, - sym__and_operator, - STATE(1245), 1, - sym__add_operator, - STATE(1246), 1, - sym__mult_operator, - STATE(1249), 1, - sym__pow_operator, - STATE(3471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [132053] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [132124] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [132195] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132252] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132309] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132366] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4978), 1, - anon_sym_LPAREN, - ACTIONS(4980), 1, - anon_sym_private, - ACTIONS(4982), 1, - anon_sym_DOT_DOT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5002), 1, - sym__capitalized_identifier, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - STATE(3477), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5284), 1, - sym__type_ext, - STATE(5706), 1, - sym_constructor_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4988), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5470), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [132481] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3634), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3636), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [132538] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1095), 1, - sym__mult_operator, - STATE(1112), 1, - sym__add_operator, - STATE(1121), 1, - sym__and_operator, - STATE(1138), 1, - sym__or_operator, - STATE(1142), 1, - sym__assign_operator, - STATE(1177), 1, - sym__pow_operator, - STATE(3479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [132607] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132664] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132721] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132778] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132835] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [132892] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - sym__identifier, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(4954), 1, - anon_sym_LBRACK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4972), 1, - sym__capitalized_identifier, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5006), 1, - anon_sym_private, - ACTIONS(5008), 1, - anon_sym_DOT_DOT, - STATE(3485), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4947), 1, - sym__type_ext, - STATE(5177), 1, - sym_constructor_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4956), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4979), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [133007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133121] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133235] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133292] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133349] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133577] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133634] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133691] = 34, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4978), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5002), 1, - sym__capitalized_identifier, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5010), 1, - anon_sym_private, - ACTIONS(5012), 1, - anon_sym_DOT_DOT, - STATE(3498), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5284), 1, - sym__type_ext, - STATE(5706), 1, - sym_constructor_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4988), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5499), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [133806] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133920] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [133977] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134034] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134091] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134148] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3990), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3988), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [134205] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134319] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134433] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134490] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134547] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134604] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134661] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134718] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3527), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [134777] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5014), 1, - anon_sym_DOT, - STATE(3516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134836] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134893] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [134950] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135121] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135235] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135292] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135349] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135406] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135577] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135634] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135691] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3391), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [135750] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135807] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3996), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3994), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [135921] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3634), 1, - anon_sym_COLON, - STATE(3536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5016), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5018), 21, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [135980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136037] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5014), 1, - anon_sym_DOT, - ACTIONS(5020), 1, - anon_sym_POUND, - ACTIONS(5022), 1, - sym_hash_operator, - STATE(3538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136157] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 24, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136271] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4068), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [136328] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1185), 14, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 28, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_then, - anon_sym_else, - anon_sym_do, - anon_sym_GT_RBRACE, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - sym_and_operator, - [136385] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5014), 1, - anon_sym_DOT, - ACTIONS(5020), 1, - anon_sym_POUND, - ACTIONS(5022), 1, - sym_hash_operator, - STATE(3544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - [136448] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5026), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5024), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [136504] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3459), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3457), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136560] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136616] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3433), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136784] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136840] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1584), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 9, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [136934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [136990] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137046] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4702), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4700), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [137158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137382] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137438] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5030), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5028), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [137550] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137606] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5034), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5032), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [137662] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5036), 1, - anon_sym_DOT, - ACTIONS(5038), 1, - anon_sym_POUND, - ACTIONS(5040), 1, - sym_hash_operator, - STATE(3566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137724] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3461), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137780] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5044), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5042), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [137836] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5048), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5046), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [137892] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5036), 1, - anon_sym_DOT, - ACTIONS(5038), 1, - anon_sym_POUND, - ACTIONS(5040), 1, - sym_hash_operator, - STATE(3570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [137954] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138010] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138066] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4628), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4626), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [138178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4646), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [138234] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138290] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138346] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138402] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4578), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4576), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [138458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138514] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5050), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(5052), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138570] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138626] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138682] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138738] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3321), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138794] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3355), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [138850] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [138906] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1167), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [138998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139054] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1171), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [139142] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4746), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4744), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [139198] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139254] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139310] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4726), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4724), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [139366] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 14, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [139444] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3415), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [139500] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [139580] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1121), 6, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [139660] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [139730] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3197), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139786] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3652), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139842] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [139910] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [139966] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5036), 1, - anon_sym_DOT, - STATE(3604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140024] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3351), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [140136] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140192] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3325), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140248] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - sym__concat_operator, - anon_sym_or, - [140322] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3315), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [140378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3369), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140434] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3195), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [140490] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 3, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 13, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_or, - [140574] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3391), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3389), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140632] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140688] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140744] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [140800] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 12, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [140888] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [140980] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1163), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [141072] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141128] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141184] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141352] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141408] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3447), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3445), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141464] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4584), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4582), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [141520] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - sym__identifier, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(4954), 1, - anon_sym_LBRACK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4972), 1, - sym__capitalized_identifier, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5054), 1, - anon_sym_DOT_DOT, - STATE(3629), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4943), 1, - sym__type_ext, - STATE(5177), 1, - sym_constructor_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4956), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5047), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [141632] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3557), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141688] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3435), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [141744] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141800] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [141856] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5058), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5056), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [141912] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5062), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5060), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [141968] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142024] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1145), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [142116] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3447), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [142228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142284] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142340] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142396] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3527), 16, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3525), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142454] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142510] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142566] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3451), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [142622] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142678] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 19, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [142748] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142916] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [142972] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143028] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1145), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [143120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143176] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143232] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4758), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4756), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [143288] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [143376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143432] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143488] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5066), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(5068), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3487), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [143600] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5072), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5070), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [143656] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143712] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1159), 2, - anon_sym_COLON2, - anon_sym_DASH_GT, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 10, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - [143804] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [143896] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5074), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(5076), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [143952] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5080), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5078), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [144008] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(1582), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 10, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [144102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5082), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(5084), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5088), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5086), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [144214] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4978), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5002), 1, - sym__capitalized_identifier, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5090), 1, - anon_sym_DOT_DOT, - STATE(3672), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5181), 1, - sym__type_ext, - STATE(5706), 1, - sym_constructor_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4988), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5455), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [144326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144382] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4978), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5002), 1, - sym__capitalized_identifier, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5092), 1, - anon_sym_DOT_DOT, - STATE(3674), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5181), 1, - sym__type_ext, - STATE(5706), 1, - sym_constructor_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4988), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5483), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [144494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3329), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144550] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144606] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144662] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3475), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [144718] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144774] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144830] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3365), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144886] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5094), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(5096), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [144942] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5100), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5098), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [144998] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5104), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5102), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145054] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5108), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5106), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145110] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3459), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145166] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5112), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5110), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145222] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5116), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5114), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145278] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5120), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5118), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145334] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5124), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5122), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145390] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3660), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3658), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [145446] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5128), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5126), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5132), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5130), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145558] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1159), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [145650] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5136), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5134), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145706] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [145774] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1167), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [145866] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5140), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5138), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [145922] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [146010] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5144), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5142), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146066] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5148), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5146), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146122] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3437), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5152), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5150), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146234] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_LBRACK_AT_AT, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 14, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_or, - [146318] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3383), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146374] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1181), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [146452] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3387), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146508] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [146588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3403), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146644] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3419), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146700] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [146756] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(4944), 1, - sym__identifier, - ACTIONS(4946), 1, - anon_sym_LPAREN, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(4954), 1, - anon_sym_LBRACK, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4972), 1, - sym__capitalized_identifier, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5154), 1, - anon_sym_DOT_DOT, - STATE(3712), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4943), 1, - sym__type_ext, - STATE(5177), 1, - sym_constructor_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4956), 2, - anon_sym_true, - anon_sym_false, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5034), 2, - sym_variant_declaration, - sym_record_declaration, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [146868] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5158), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5156), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146924] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3427), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [146980] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4666), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(4664), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147036] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3441), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147148] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3545), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147204] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147260] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [147330] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3431), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147386] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 21, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [147456] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3646), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3638), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5162), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5160), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147568] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3319), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147624] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5166), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5164), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [147680] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__rel_operator, - anon_sym_or, - [147760] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147816] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147872] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147928] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [147984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148040] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [148114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5170), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5168), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148170] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148226] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5174), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5172), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148282] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3537), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148338] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3533), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148394] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3519), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148450] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5178), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5176), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148506] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5182), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5180), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 24, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148618] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5184), 1, - anon_sym_COLON, - STATE(3743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 17, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3577), 23, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148676] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(3541), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148732] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5188), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5186), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [148788] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1163), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 11, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [148880] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5190), 1, - anon_sym_COLON, - STATE(3747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - aux_sym_tag_token1, - ACTIONS(3577), 22, - anon_sym_let, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [148937] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1566), 1, - anon_sym_COMMA, - ACTIONS(1568), 1, - anon_sym_COLON_COLON, - ACTIONS(1570), 1, - sym__concat_operator, - ACTIONS(1646), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5064), 1, - sym__rel_operator, - STATE(1096), 1, - sym__pow_operator, - STATE(1097), 1, - sym__mult_operator, - STATE(1099), 1, - sym__add_operator, - STATE(1100), 1, - sym__and_operator, - STATE(1106), 1, - sym__or_operator, - STATE(1108), 1, - sym__assign_operator, - STATE(3748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [149030] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5194), 1, - anon_sym_PIPE, - ACTIONS(5196), 1, - anon_sym_RBRACK, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3749), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7560), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149140] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3634), 1, - anon_sym_COLON, - STATE(3750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5016), 18, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5018), 20, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149196] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5200), 1, - anon_sym_PIPE, - ACTIONS(5202), 1, - anon_sym_RBRACK, - STATE(3751), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7828), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149306] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5204), 1, - anon_sym_PIPE, - ACTIONS(5206), 1, - anon_sym_RBRACK, - STATE(3752), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7388), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149416] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5208), 1, - anon_sym_PIPE, - ACTIONS(5210), 1, - anon_sym_RBRACK, - STATE(3753), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8103), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9102), 1, - sym__tag_spec, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149526] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5212), 1, - anon_sym_PIPE, - ACTIONS(5214), 1, - anon_sym_RBRACK, - STATE(3754), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7561), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149636] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5216), 1, - anon_sym_COLON, - STATE(3755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3577), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149692] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3634), 16, - anon_sym_SEMI_SEMI, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3636), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [149746] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5218), 1, - anon_sym_PIPE, - ACTIONS(5220), 1, - anon_sym_RBRACK, - STATE(3757), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8057), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9378), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149856] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5222), 1, - anon_sym_PIPE, - ACTIONS(5224), 1, - anon_sym_RBRACK, - STATE(3758), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7490), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [149966] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5226), 1, - anon_sym_PIPE, - ACTIONS(5228), 1, - anon_sym_RBRACK, - STATE(3759), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7398), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [150076] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3391), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [150132] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3527), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [150188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5024), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5026), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150241] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5126), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5128), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150294] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3415), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [150347] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3431), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [150400] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5230), 1, - anon_sym_RBRACK, - STATE(3766), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7647), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [150507] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2455), 1, - sym__identifier, - ACTIONS(5236), 1, - anon_sym_LPAREN, - ACTIONS(5240), 1, - anon_sym_LBRACE, - ACTIONS(5242), 1, - anon_sym_begin, - ACTIONS(5244), 1, - aux_sym_number_token1, - ACTIONS(5246), 1, - anon_sym_SQUOTE, - ACTIONS(5248), 1, - anon_sym_DQUOTE, - ACTIONS(5250), 1, - sym__capitalized_identifier, - STATE(3767), 1, - sym_attribute, - STATE(5731), 1, - sym_module_path, - STATE(5799), 1, - sym_parenthesized_operator, - STATE(5823), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5238), 2, - anon_sym_true, - anon_sym_false, - STATE(5827), 2, - sym__constant, - sym_value_path, - STATE(5831), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - ACTIONS(5232), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - ACTIONS(5234), 9, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - [150588] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5252), 1, - anon_sym_PIPE, - STATE(3768), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7848), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9353), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [150695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4666), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150748] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1705), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_COLON2, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(3770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(4066), 7, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_then, - [150839] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4724), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4726), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4744), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4746), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [150945] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5256), 1, - anon_sym_PIPE, - STATE(3773), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7068), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3459), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [151105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3646), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151158] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5258), 1, - sym__identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5262), 1, - anon_sym_QMARK, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - STATE(3776), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4987), 1, - sym__extension, - STATE(5217), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(8048), 1, - sym_extended_module_path, - STATE(8062), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151259] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5268), 1, - anon_sym_RBRACK, - STATE(3777), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7334), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151366] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5270), 1, - anon_sym_RBRACK, - STATE(3778), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7346), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151473] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5056), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5058), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151526] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_type, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5272), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3780), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4676), 1, - sym_type_variable, - STATE(5131), 1, - sym__simple_type, - STATE(5133), 1, - sym__extension, - STATE(5847), 1, - sym__type_ext, - STATE(5895), 1, - sym_polymorphic_type, - STATE(5899), 1, - sym__polymorphic_type, - STATE(6967), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8142), 1, - sym_extended_module_path, - STATE(8326), 1, - sym__tuple_type_ext, - STATE(9007), 1, - sym_typed_label, - STATE(9257), 1, - sym__abstract_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [151635] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5292), 1, - anon_sym_PIPE, - STATE(3781), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7079), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4576), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4578), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151795] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5176), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5178), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [151848] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5294), 1, - anon_sym_RBRACK, - STATE(3784), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7741), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [151955] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5050), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5052), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152008] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3652), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152061] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3351), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [152114] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5296), 1, - anon_sym_PIPE, - STATE(3788), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7184), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [152221] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5060), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5062), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152274] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5298), 1, - sym__identifier, - ACTIONS(5300), 1, - anon_sym_let, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_LBRACK, - STATE(3790), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(5232), 1, - sym__class_type, - STATE(5252), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(6423), 1, - sym__extension, - STATE(8015), 1, - sym_extended_module_path, - STATE(8099), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [152375] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_type, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - STATE(3791), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(5890), 1, - sym_polymorphic_type, - STATE(5896), 1, - sym__polymorphic_type, - STATE(5900), 1, - sym_type_variable, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6830), 1, - sym__type_ext, - STATE(7166), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8158), 1, - sym_extended_module_path, - STATE(8683), 1, - sym__abstract_type, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9252), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(5712), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [152484] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5046), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5048), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3195), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [152590] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3451), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [152643] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4700), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4702), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152696] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5042), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5044), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152749] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5032), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5034), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152802] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4756), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4758), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152855] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5028), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5030), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [152908] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5306), 1, - anon_sym_PIPE, - STATE(3800), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8158), 1, - sym_extended_module_path, - STATE(8213), 1, - sym_tag_specification, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9396), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [153015] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5258), 1, - sym__identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5262), 1, - anon_sym_QMARK, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - STATE(3801), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4987), 1, - sym__extension, - STATE(5232), 1, - sym__class_type, - STATE(5233), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(8048), 1, - sym_extended_module_path, - STATE(8062), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [153116] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5066), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5068), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153169] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5308), 1, - sym__identifier, - ACTIONS(5310), 1, - anon_sym_QMARK, - STATE(3803), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4780), 1, - sym__extension, - STATE(5218), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(8166), 1, - sym__tuple_type, - STATE(8171), 1, - sym__tuple_type_ext, - STATE(8172), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [153270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5070), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5072), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153323] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3541), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [153376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3435), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [153429] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5186), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5188), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153482] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5078), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5080), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153535] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4626), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4628), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153588] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5180), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5182), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153641] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5134), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5136), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153694] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5308), 1, - sym__identifier, - ACTIONS(5310), 1, - anon_sym_QMARK, - STATE(3812), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4780), 1, - sym__extension, - STATE(5232), 1, - sym__class_type, - STATE(5252), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(8166), 1, - sym__tuple_type, - STATE(8171), 1, - sym__tuple_type_ext, - STATE(8172), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [153795] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3545), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [153848] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4648), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153901] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4582), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4584), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [153954] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5312), 1, - anon_sym_PIPE, - STATE(3816), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6668), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8158), 1, - sym_extended_module_path, - STATE(8203), 1, - sym_tag_specification, - STATE(8337), 1, - sym__tag_spec, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [154061] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5168), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5170), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5098), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5100), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154167] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5074), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5076), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154220] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5082), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5084), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5086), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5088), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154326] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5164), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5166), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154379] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154432] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3533), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [154485] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3315), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [154538] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3660), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3658), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154591] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5258), 1, - sym__identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5262), 1, - anon_sym_QMARK, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - STATE(3827), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4987), 1, - sym__extension, - STATE(5218), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(8048), 1, - sym_extended_module_path, - STATE(8062), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [154692] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5102), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5104), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154745] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5094), 15, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5096), 23, - anon_sym_and, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154798] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5114), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5116), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [154851] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_type, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3831), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4676), 1, - sym_type_variable, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5890), 1, - sym_polymorphic_type, - STATE(5896), 1, - sym__polymorphic_type, - STATE(6100), 1, - sym__type_ext, - STATE(6962), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - STATE(9235), 1, - sym__abstract_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [154960] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5258), 1, - sym__identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5262), 1, - anon_sym_QMARK, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - STATE(3832), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4987), 1, - sym__extension, - STATE(5232), 1, - sym__class_type, - STATE(5252), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(8048), 1, - sym_extended_module_path, - STATE(8062), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [155061] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5130), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5132), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5106), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5108), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155167] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5110), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5112), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155220] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5218), 1, - anon_sym_PIPE, - STATE(3836), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8057), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9378), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [155327] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5146), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5148), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155380] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5150), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5152), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155433] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5118), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5120), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5156), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5158), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155539] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5160), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5162), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155592] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5122), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5124), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [155645] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5308), 1, - sym__identifier, - ACTIONS(5310), 1, - anon_sym_QMARK, - STATE(3843), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4780), 1, - sym__extension, - STATE(5217), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(8166), 1, - sym__tuple_type, - STATE(8171), 1, - sym__tuple_type_ext, - STATE(8172), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [155746] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3403), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155799] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3447), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [155852] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5298), 1, - sym__identifier, - ACTIONS(5300), 1, - anon_sym_let, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_LBRACK, - STATE(3846), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(5218), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(6423), 1, - sym__extension, - STATE(8015), 1, - sym_extended_module_path, - STATE(8099), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [155953] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3427), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156006] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5208), 1, - anon_sym_PIPE, - STATE(3848), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8103), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9102), 1, - sym__tag_spec, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156113] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5312), 1, - anon_sym_PIPE, - STATE(3849), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6660), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8158), 1, - sym_extended_module_path, - STATE(8203), 1, - sym_tag_specification, - STATE(8337), 1, - sym__tag_spec, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156220] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3419), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156273] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5314), 1, - anon_sym_PIPE, - STATE(3851), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(6951), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156380] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5316), 1, - anon_sym_RBRACK, - STATE(3852), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7503), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156487] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5318), 1, - anon_sym_PIPE, - STATE(3853), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8061), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9307), 1, - sym__tag_spec, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156594] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5298), 1, - sym__identifier, - ACTIONS(5300), 1, - anon_sym_let, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_LBRACK, - STATE(3854), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(5217), 1, - sym__class_type_ext, - STATE(5232), 1, - sym__class_type, - STATE(5746), 1, - sym__simple_type, - STATE(6423), 1, - sym__extension, - STATE(8015), 1, - sym_extended_module_path, - STATE(8099), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3319), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156748] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5312), 1, - anon_sym_PIPE, - STATE(3856), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(8158), 1, - sym_extended_module_path, - STATE(8203), 1, - sym_tag_specification, - STATE(8337), 1, - sym__tag_spec, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [156855] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3355), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [156908] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5320), 1, - anon_sym_PIPE, - STATE(3858), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6924), 1, - sym__tag_spec, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157015] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5322), 1, - anon_sym_PIPE, - STATE(3859), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7021), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157122] = 33, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2135), 1, - anon_sym_type, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - STATE(3860), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(5890), 1, - sym_polymorphic_type, - STATE(5896), 1, - sym__polymorphic_type, - STATE(5900), 1, - sym_type_variable, - STATE(7181), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7214), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(8785), 1, - sym__abstract_type, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [157231] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3387), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157284] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5142), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5144), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [157337] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3475), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157390] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5138), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5140), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [157443] = 32, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - ACTIONS(5324), 1, - anon_sym_RBRACK, - STATE(3865), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7636), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157550] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5298), 1, - sym__identifier, - ACTIONS(5300), 1, - anon_sym_let, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_LBRACK, - STATE(3866), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(5232), 1, - sym__class_type, - STATE(5233), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(6423), 1, - sym__extension, - STATE(8015), 1, - sym_extended_module_path, - STATE(8099), 1, - sym__tuple_type_ext, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157651] = 29, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5264), 1, - anon_sym_LBRACK, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5308), 1, - sym__identifier, - ACTIONS(5310), 1, - anon_sym_QMARK, - STATE(3867), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(4780), 1, - sym__extension, - STATE(5232), 1, - sym__class_type, - STATE(5233), 1, - sym__class_type_ext, - STATE(5746), 1, - sym__simple_type, - STATE(8166), 1, - sym__tuple_type, - STATE(8171), 1, - sym__tuple_type_ext, - STATE(8172), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(5234), 2, - sym__simple_class_type, - sym_class_function_type, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [157752] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3487), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157805] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3383), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157858] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3537), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [157911] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5172), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5174), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [157964] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 19, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3519), 19, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [158017] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5326), 1, - anon_sym_PIPE, - STATE(3873), 1, - sym_attribute, - STATE(3874), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [158073] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5328), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3874), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [158127] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3875), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7476), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158231] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3876), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7087), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158335] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3877), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7503), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158439] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3878), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7323), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158543] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3879), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7812), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158647] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3880), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7334), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158751] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3881), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7114), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158855] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3882), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7810), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [158959] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3883), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7249), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159063] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5331), 1, - anon_sym_else, - STATE(3260), 1, - sym_else_clause, - STATE(3884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [159119] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3885), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7662), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159223] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5333), 1, - anon_sym_else, - STATE(3260), 1, - sym_else_clause, - STATE(3886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [159279] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5335), 1, - anon_sym_PIPE, - STATE(3887), 1, - sym_attribute, - STATE(3894), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [159335] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3888), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7076), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159439] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5326), 1, - anon_sym_PIPE, - STATE(3874), 1, - aux_sym__match_cases_repeat1, - STATE(3889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [159495] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - STATE(3890), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5339), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5337), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [159561] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5326), 1, - anon_sym_PIPE, - STATE(3873), 1, - aux_sym__match_cases_repeat1, - STATE(3891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [159617] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3892), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7699), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159721] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5335), 1, - anon_sym_PIPE, - STATE(3893), 1, - sym_attribute, - STATE(3900), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [159777] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5335), 1, - anon_sym_PIPE, - STATE(3894), 1, - sym_attribute, - STATE(3904), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [159833] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5347), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(5349), 20, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [159885] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3896), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(6953), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [159989] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3897), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7741), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160093] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5326), 1, - anon_sym_PIPE, - STATE(3889), 1, - aux_sym__match_cases_repeat1, - STATE(3898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 23, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_else, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [160149] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5331), 1, - anon_sym_else, - STATE(3294), 1, - sym_else_clause, - STATE(3899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 11, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [160205] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5335), 1, - anon_sym_PIPE, - STATE(3900), 1, - sym_attribute, - STATE(3904), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [160261] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3901), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7636), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160365] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3902), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7346), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160469] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3903), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7045), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160573] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5351), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3904), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 25, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [160627] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - STATE(3905), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5356), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5354), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [160693] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3906), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(7391), 1, - sym_tag_specification, - STATE(7647), 1, - sym__tag_spec, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [160797] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5362), 1, - anon_sym_RPAREN, - STATE(3907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5360), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5358), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [160851] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5333), 1, - anon_sym_else, - STATE(3294), 1, - sym_else_clause, - STATE(3908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 13, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [160907] = 31, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5198), 1, - aux_sym_tag_token1, - STATE(3909), 1, - sym_attribute, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6893), 1, - sym__type_ext, - STATE(6938), 1, - sym_tag, - STATE(6989), 1, - sym__tag_spec, - STATE(7391), 1, - sym_tag_specification, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [161011] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3493), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3495), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161062] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3551), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161113] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3417), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161229] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3425), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161280] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3429), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161331] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(5364), 1, - anon_sym_let, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5378), 1, - anon_sym_class, - ACTIONS(5380), 1, - sym_let_operator, - STATE(56), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(3916), 1, - sym_attribute, - STATE(4015), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(475), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [161422] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5384), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5382), 34, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [161473] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3119), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3117), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161524] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3503), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3501), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161575] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5386), 1, - anon_sym_DOT, - STATE(3920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 14, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3497), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161628] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3531), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161679] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3517), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161730] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3319), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161781] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3355), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161832] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3543), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [161883] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3475), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3487), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [161985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3537), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162036] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3381), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162087] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3403), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162138] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3539), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162189] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5388), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_POUND, - ACTIONS(5392), 1, - sym_hash_operator, - STATE(3932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4558), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4556), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162246] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5394), 1, - anon_sym_else, - STATE(3215), 1, - sym_else_clause, - STATE(3933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [162301] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3069), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162352] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(5364), 1, - anon_sym_let, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5378), 1, - anon_sym_class, - ACTIONS(5380), 1, - sym_let_operator, - STATE(52), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(3935), 1, - sym_attribute, - STATE(3942), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(545), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [162443] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5394), 1, - anon_sym_else, - STATE(3239), 1, - sym_else_clause, - STATE(3936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 12, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON2, - anon_sym_DASH_GT, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - sym__rel_operator, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 22, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_end, - anon_sym_with, - anon_sym_COLON_COLON, - anon_sym_then, - anon_sym_GT_RBRACE, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - anon_sym_or, - [162498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3331), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3329), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162549] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3495), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3493), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162600] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3483), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3481), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162651] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3479), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3477), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [162702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3519), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162753] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5396), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5399), 1, - anon_sym_let, - ACTIONS(5402), 1, - anon_sym_external, - ACTIONS(5405), 1, - anon_sym_type, - ACTIONS(5410), 1, - anon_sym_exception, - ACTIONS(5413), 1, - anon_sym_module, - ACTIONS(5416), 1, - anon_sym_open, - ACTIONS(5419), 1, - anon_sym_include, - ACTIONS(5422), 1, - anon_sym_class, - ACTIONS(5425), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(5428), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5434), 1, - sym_let_operator, - ACTIONS(5437), 1, - aux_sym_directive_token1, - STATE(62), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5408), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(3942), 2, - sym_attribute, - aux_sym__structure_repeat2, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [162842] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3431), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162893] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3195), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162944] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3315), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [162995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3351), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163046] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3415), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163097] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3541), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163148] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(3949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5442), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5440), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [163199] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3545), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163250] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5444), 1, - anon_sym_else, - STATE(3239), 1, - sym_else_clause, - STATE(3951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [163305] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3533), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3471), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3469), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [163407] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3451), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3559), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3557), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [163509] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5450), 1, - anon_sym_STAR, - STATE(3956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5448), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5446), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [163562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3427), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163613] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3419), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163664] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3387), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163715] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3383), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163766] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3385), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [163817] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [163886] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(3963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5360), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5358), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [163937] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(3964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5454), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5452), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [163988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3467), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3465), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164039] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3455), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3453), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164090] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [164153] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1159), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [164240] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3407), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3405), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164291] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3399), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3397), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164342] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1145), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [164429] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1163), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [164516] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3363), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3361), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164567] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3359), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3357), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164618] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [164705] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3347), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3345), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [164756] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [164839] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3459), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [164890] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1121), 3, - anon_sym_and, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_or, - sym_and_operator, - [164969] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3339), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3337), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165020] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165095] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165170] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(3983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5362), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5458), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [165221] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(3984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3527), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165274] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5386), 1, - anon_sym_DOT, - ACTIONS(5460), 1, - anon_sym_POUND, - ACTIONS(5462), 1, - sym_hash_operator, - STATE(3985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165331] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(3986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5466), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5464), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [165382] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3367), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3365), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165433] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1181), 5, - anon_sym_and, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1179), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165506] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3335), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3333), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165557] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1171), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [165640] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3447), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165691] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3435), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165742] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(3993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1167), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [165829] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3311), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3309), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165880] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(3995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3391), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [165933] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3171), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3169), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [165984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3563), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3561), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166035] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3135), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3133), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166086] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(3999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3139), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3137), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166137] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3449), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3317), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166239] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3143), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3141), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166290] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3507), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3505), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166341] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3553), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [166392] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5470), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5468), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [166443] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3423), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [166494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3175), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3173), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166545] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1717), 1, - anon_sym_COMMA, - ACTIONS(1719), 1, - anon_sym_COLON_COLON, - ACTIONS(1721), 1, - sym__concat_operator, - ACTIONS(1725), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5456), 1, - sym__rel_operator, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(4008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4068), 2, - anon_sym_and, - anon_sym_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4066), 4, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [166634] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5444), 1, - anon_sym_else, - STATE(3215), 1, - sym_else_clause, - STATE(4009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [166689] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3439), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3437), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166740] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5474), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5472), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [166791] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3179), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3177), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166842] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5386), 1, - anon_sym_DOT, - ACTIONS(5460), 1, - anon_sym_POUND, - ACTIONS(5462), 1, - sym_hash_operator, - STATE(4013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3375), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3373), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166899] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3183), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3181), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [166950] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(5364), 1, - anon_sym_let, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5378), 1, - anon_sym_class, - ACTIONS(5380), 1, - sym_let_operator, - STATE(53), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(3942), 1, - aux_sym__structure_repeat2, - STATE(4015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(571), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [167041] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3187), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3185), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167092] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3523), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3521), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167143] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3151), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3149), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167194] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3129), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3127), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167245] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3123), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3121), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167296] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3307), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3305), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167347] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3515), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3513), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167398] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(5364), 1, - anon_sym_let, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5378), 1, - anon_sym_class, - ACTIONS(5380), 1, - sym_let_operator, - STATE(53), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(3935), 1, - aux_sym__structure_repeat2, - STATE(4023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(571), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [167489] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3511), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3509), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167540] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3167), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3165), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167591] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3163), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3161), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167642] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3489), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167693] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3379), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3377), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167744] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3189), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167795] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3421), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167846] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3343), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3341), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167897] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3411), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3409), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167948] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3145), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [167999] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3203), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3201), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [168050] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5478), 16, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - sym_let_operator, - sym_match_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5476), 20, - anon_sym_let, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_fun, - anon_sym_if, - anon_sym_while, - anon_sym_for, - anon_sym_match, - anon_sym_function, - anon_sym_try, - anon_sym_assert, - anon_sym_lazy, - anon_sym_new, - anon_sym_begin, - sym__identifier, - [168101] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3371), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3369), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [168152] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3369), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3371), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168203] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3325), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3327), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168254] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3197), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3199), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168305] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3321), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3323), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168356] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3145), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3147), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168407] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3437), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3439), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168458] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3461), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3463), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168509] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3489), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3491), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168560] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3327), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3325), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [168611] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3557), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3559), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168662] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3069), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3071), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168713] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3401), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [168764] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3365), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3367), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168815] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3329), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3331), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168866] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3189), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3191), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [168917] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3199), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3197), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [168968] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3353), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [169019] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3549), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3547), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [169070] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5056), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5058), 19, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_exception, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_lazy, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [169121] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5210), 1, - anon_sym_RPAREN, - ACTIONS(5480), 1, - anon_sym_module, - ACTIONS(5482), 1, - anon_sym_COLON_COLON, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4056), 1, - sym_attribute, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6902), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [169222] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3305), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3307), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3121), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3123), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169324] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3127), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3129), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169375] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3149), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3151), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3185), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3187), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169477] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3181), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3183), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169528] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3177), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3179), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169579] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3173), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3175), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169630] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3141), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3143), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169681] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3137), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3139), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169732] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3133), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3135), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169783] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3169), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3171), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169834] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3309), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3311), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169885] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3333), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3335), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169936] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3337), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3339), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [169987] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3193), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170038] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3313), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170089] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3535), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170140] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1290), 1, - sym__pow_operator, - STATE(1294), 1, - sym__mult_operator, - STATE(1300), 1, - sym__add_operator, - STATE(1303), 1, - sym__and_operator, - STATE(1304), 1, - sym__or_operator, - STATE(1305), 1, - sym__assign_operator, - STATE(4075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170205] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3349), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170256] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3345), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3347), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170307] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3357), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3359), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170358] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3361), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3363), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170409] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3397), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3399), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170460] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3405), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3407), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170511] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3413), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3453), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3455), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170613] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3465), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3467), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170664] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3323), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3321), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [170715] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3469), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3471), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170766] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3477), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3479), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170817] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3481), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3483), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170868] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5388), 1, - anon_sym_DOT, - STATE(4089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3497), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3499), 23, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170921] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3501), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3503), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [170972] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3117), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3119), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171023] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3463), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3461), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [171074] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3485), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [171125] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3505), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3507), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171176] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3509), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3511), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171227] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3561), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3563), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171278] = 30, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5220), 1, - anon_sym_RPAREN, - ACTIONS(5484), 1, - anon_sym_module, - ACTIONS(5486), 1, - anon_sym_COLON_COLON, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4097), 1, - sym_attribute, - STATE(4143), 1, - sym__type, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6856), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [171379] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3547), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3549), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171430] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3521), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3523), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171481] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3513), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3515), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171532] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5388), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_POUND, - ACTIONS(5392), 1, - sym_hash_operator, - STATE(4101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4566), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4564), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171589] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3165), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3167), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171640] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3161), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3163), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171691] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 15, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym_hash_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3473), 21, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_POUND, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [171742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3377), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3379), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3341), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3343), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171844] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3409), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3411), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171895] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5388), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_POUND, - ACTIONS(5392), 1, - sym_hash_operator, - STATE(4108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4574), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4572), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [171952] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5388), 1, - anon_sym_DOT, - ACTIONS(5390), 1, - anon_sym_POUND, - ACTIONS(5392), 1, - sym_hash_operator, - STATE(4109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4570), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4568), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [172009] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3201), 12, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3203), 24, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - sym_hash_operator, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [172060] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_and, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [172142] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_and, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172228] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1163), 1, - anon_sym_and, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [172314] = 19, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_and, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_or, - sym_and_operator, - [172392] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1159), 1, - anon_sym_and, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [172478] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(1777), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4066), 4, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [172566] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5094), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5096), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [172616] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [172690] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(545), 1, - ts_builtin_sym_end, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5492), 1, - anon_sym_let, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - sym_let_operator, - STATE(58), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(4119), 1, - sym_attribute, - STATE(4121), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [172780] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [172854] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5396), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5402), 1, - anon_sym_external, - ACTIONS(5405), 1, - anon_sym_type, - ACTIONS(5408), 1, - ts_builtin_sym_end, - ACTIONS(5410), 1, - anon_sym_exception, - ACTIONS(5413), 1, - anon_sym_module, - ACTIONS(5416), 1, - anon_sym_open, - ACTIONS(5419), 1, - anon_sym_include, - ACTIONS(5425), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(5428), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(5431), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5437), 1, - aux_sym_directive_token1, - ACTIONS(5498), 1, - anon_sym_let, - ACTIONS(5501), 1, - anon_sym_class, - ACTIONS(5504), 1, - sym_let_operator, - STATE(63), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4121), 2, - sym_attribute, - aux_sym__structure_repeat2, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [172942] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5082), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5084), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [172992] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1167), 1, - anon_sym_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [173078] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5074), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5076), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [173128] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 1, - anon_sym_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [173210] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(475), 1, - ts_builtin_sym_end, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5492), 1, - anon_sym_let, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - sym_let_operator, - STATE(61), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(4126), 1, - sym_attribute, - STATE(4149), 1, - aux_sym__structure_repeat2, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [173300] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [173362] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3636), 1, - anon_sym_COLON, - STATE(4128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5016), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5018), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [173414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5050), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5052), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [173464] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1181), 4, - anon_sym_and, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [173536] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1181), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 10, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [173608] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 1, - anon_sym_and, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [173690] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__rel_operator, - anon_sym_or, - [173764] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1167), 1, - anon_sym_and, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1165), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [173850] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__rel_operator, - anon_sym_or, - [173924] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_or, - [174002] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [174084] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174170] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1163), 1, - anon_sym_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1161), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [174256] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [174318] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [174382] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [174446] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5509), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5507), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [174496] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 9, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [174564] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5066), 15, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON2, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5068), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [174614] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5513), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5511), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [174664] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1145), 1, - anon_sym_and, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 5, - anon_sym_SEMI, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [174750] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(1783), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_and, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4066), 4, - anon_sym_in, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [174838] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(571), 1, - ts_builtin_sym_end, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5492), 1, - anon_sym_let, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - sym_let_operator, - STATE(60), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(4121), 1, - aux_sym__structure_repeat2, - STATE(4149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [174928] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5515), 1, - anon_sym_RPAREN, - ACTIONS(5517), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4150), 1, - sym_attribute, - STATE(8336), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(5519), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [175004] = 25, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(13), 1, - anon_sym_SEMI_SEMI, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(315), 1, - aux_sym_directive_token1, - ACTIONS(571), 1, - ts_builtin_sym_end, - ACTIONS(5366), 1, - anon_sym_external, - ACTIONS(5368), 1, - anon_sym_type, - ACTIONS(5370), 1, - anon_sym_exception, - ACTIONS(5372), 1, - anon_sym_module, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5376), 1, - anon_sym_include, - ACTIONS(5492), 1, - anon_sym_let, - ACTIONS(5494), 1, - anon_sym_class, - ACTIONS(5496), 1, - sym_let_operator, - STATE(60), 1, - aux_sym__structure_repeat1, - STATE(3767), 1, - sym_directive, - STATE(4119), 1, - aux_sym__structure_repeat2, - STATE(4151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5828), 2, - sym_toplevel_directive, - sym__structure_item_ext, - STATE(5839), 2, - sym__structure_item, - sym__item_extension, - STATE(5846), 11, - sym_value_definition, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_include_module, - sym_class_definition, - sym_class_type_definition, - sym_floating_attribute, - [175094] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [175158] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1159), 1, - anon_sym_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1157), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [175244] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 15, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [175308] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 11, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [175376] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5448), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5446), 33, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [175426] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1145), 1, - anon_sym_PIPE, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1143), 5, - anon_sym_SEMI, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - [175512] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3537), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [175561] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5525), 1, - anon_sym_COLON, - STATE(4159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3579), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3577), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [175612] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5527), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4160), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6881), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [175707] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5529), 1, - anon_sym_AMP, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4161), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6589), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [175802] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5517), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4162), 1, - sym_attribute, - STATE(8336), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(5519), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [175875] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5070), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5072), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [175924] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5142), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5144), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [175973] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5138), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5140), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5134), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5136), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176071] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5126), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5128), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3195), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176169] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5024), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5026), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176218] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5531), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4170), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6892), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [176313] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5172), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5174), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176362] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5176), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5178), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176411] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3319), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [176460] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5535), 1, - anon_sym_private, - ACTIONS(5537), 1, - anon_sym_LBRACK, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4174), 1, - sym_attribute, - STATE(5994), 1, - sym__simple_type, - STATE(5996), 1, - sym__extension, - STATE(6520), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8445), 1, - sym__tuple_type_ext, - STATE(8478), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [176555] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5122), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5124), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176604] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5118), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5120), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176653] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5110), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5112), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5106), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5108), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176751] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2211), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4179), 1, - sym_attribute, - STATE(8665), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(2215), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [176824] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4724), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4726), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176873] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4744), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4746), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [176922] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5539), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4182), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6828), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [177017] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3541), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177066] = 24, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1747), 1, - anon_sym_COLON_COLON, - ACTIONS(1749), 1, - sym__concat_operator, - ACTIONS(1763), 1, - anon_sym_COMMA, - ACTIONS(1803), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_and, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5488), 1, - sym__rel_operator, - STATE(1123), 1, - sym__pow_operator, - STATE(1128), 1, - sym__mult_operator, - STATE(1129), 1, - sym__add_operator, - STATE(1131), 1, - sym__and_operator, - STATE(1133), 1, - sym__or_operator, - STATE(1141), 1, - sym__assign_operator, - STATE(4184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4066), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [177153] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2463), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4185), 1, - sym_attribute, - STATE(8800), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(2475), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [177226] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5484), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4186), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6856), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [177321] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5086), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5088), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177370] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5060), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5062), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177419] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5114), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5116), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177468] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5102), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5104), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177517] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4976), 1, - sym__identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5543), 1, - anon_sym_private, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4191), 1, - sym_attribute, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5284), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [177612] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5164), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5166), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177661] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(879), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4193), 1, - sym_attribute, - STATE(9050), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(883), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [177734] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5168), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5170), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177783] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5180), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5182), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177832] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5078), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5080), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177881] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4700), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4702), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [177930] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3355), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [177979] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5156), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5158), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178028] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3487), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [178077] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5028), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5030), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178126] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5186), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5188), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178175] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5032), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5034), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4756), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4758), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178273] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5042), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5044), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178322] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5480), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4206), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6902), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [178417] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5046), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5048), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178466] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3475), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [178515] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3475), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178564] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5160), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5162), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178613] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5545), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4211), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6916), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [178708] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(581), 1, - anon_sym_COLON_EQ, - ACTIONS(599), 1, - aux_sym__mult_operator_token1, - ACTIONS(603), 1, - sym__concat_operator, - ACTIONS(605), 1, - sym__rel_operator, - ACTIONS(607), 1, - anon_sym_PIPE_PIPE, - ACTIONS(2479), 1, - anon_sym_DOT, - ACTIONS(5523), 1, - anon_sym_or, - STATE(4212), 1, - sym_attribute, - STATE(9083), 1, - sym_infix_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(587), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(595), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(5521), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(601), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(2485), 5, - sym_prefix_operator, - sym_hash_operator, - sym_let_operator, - sym_and_operator, - sym_match_operator, - STATE(9472), 6, - sym__pow_operator, - sym__mult_operator, - sym__add_operator, - sym__and_operator, - sym__or_operator, - sym__assign_operator, - [178781] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3415), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [178830] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5130), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5132), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178879] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5098), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5100), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178928] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5146), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5148), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [178977] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5547), 1, - sym__identifier, - ACTIONS(5549), 1, - anon_sym_LPAREN, - ACTIONS(5551), 1, - anon_sym_private, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_LBRACK_GT, - ACTIONS(5557), 1, - anon_sym_LBRACK_LT, - ACTIONS(5559), 1, - anon_sym_LT, - ACTIONS(5561), 1, - anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5565), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5567), 1, - aux_sym_type_variable_token1, - STATE(4217), 1, - sym_attribute, - STATE(5886), 1, - sym__simple_type, - STATE(5889), 1, - sym__extension, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6359), 1, - sym__type_ext, - STATE(8174), 1, - sym_extended_module_path, - STATE(8386), 1, - sym__tuple_type_ext, - STATE(8691), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6053), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(6014), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [179072] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3383), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179121] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3487), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179170] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4666), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179219] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3387), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179268] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3403), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [179317] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3646), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179366] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3419), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179415] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3427), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179464] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3431), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179513] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5150), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(5152), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3634), 14, - anon_sym_COLON, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3636), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179611] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3818), 1, - sym__identifier, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5484), 1, - anon_sym_module, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4229), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6848), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [179706] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3451), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [179755] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4576), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4578), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179804] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4626), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4628), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179853] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3355), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [179902] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4648), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [179951] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3351), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180000] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4582), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(4584), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [180049] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3403), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180098] = 28, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4944), 1, - sym__identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5571), 1, - anon_sym_private, - ACTIONS(5573), 1, - anon_sym_LBRACK, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4238), 1, - sym_attribute, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4947), 1, - sym__type_ext, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [180193] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3319), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [180242] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3315), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180291] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3533), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180340] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 4, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3537), 30, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [180389] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3545), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180438] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 17, - anon_sym_DASH, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - ACTIONS(3519), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH_GT, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [180487] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4245), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5902), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [180579] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_or, - [180655] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4247), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7825), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [180747] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4865), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4863), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [180795] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5549), 1, - anon_sym_LPAREN, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_LBRACK_GT, - ACTIONS(5557), 1, - anon_sym_LBRACK_LT, - ACTIONS(5559), 1, - anon_sym_LT, - ACTIONS(5561), 1, - anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5565), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5567), 1, - aux_sym_type_variable_token1, - ACTIONS(5577), 1, - sym__identifier, - STATE(4249), 1, - sym_attribute, - STATE(5886), 1, - sym__simple_type, - STATE(5889), 1, - sym__extension, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6360), 1, - sym__type_ext, - STATE(8174), 1, - sym_extended_module_path, - STATE(8386), 1, - sym__tuple_type_ext, - STATE(8691), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6053), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(6014), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [180887] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4250), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7621), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [180979] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1167), 1, - anon_sym_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1165), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [181063] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4252), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7579), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181155] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4253), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6817), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181247] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4254), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7553), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181339] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4255), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6824), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181431] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1185), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1183), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [181479] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4068), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4066), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [181527] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4258), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6851), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181619] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4259), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7541), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181711] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4260), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7849), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181803] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4261), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6858), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [181895] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4853), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4851), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [181943] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4845), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [181991] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4264), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5887), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182083] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4265), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7506), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182175] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4266), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5897), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182267] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4267), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7327), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182359] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 1, - anon_sym_PIPE, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - [182439] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1737), 1, - anon_sym_COLON_COLON, - ACTIONS(1741), 1, - sym__concat_operator, - ACTIONS(1755), 1, - anon_sym_COMMA, - ACTIONS(1883), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5490), 1, - sym__rel_operator, - STATE(1090), 1, - sym__and_operator, - STATE(1181), 1, - sym__assign_operator, - STATE(1187), 1, - sym__or_operator, - STATE(1198), 1, - sym__add_operator, - STATE(1211), 1, - sym__mult_operator, - STATE(1224), 1, - sym__pow_operator, - STATE(4269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4066), 3, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [182523] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4270), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7522), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182615] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1181), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [182685] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4272), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7386), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182777] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [182849] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4274), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7218), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [182941] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [183013] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3996), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3994), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [183061] = 25, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1871), 1, - anon_sym_COLON_GT, - ACTIONS(1873), 1, - anon_sym_RPAREN, - ACTIONS(1875), 1, - anon_sym_COLON2, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4277), 1, - sym_attribute, - STATE(8105), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [183149] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4278), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7482), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [183241] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 2, - anon_sym_PIPE, - anon_sym_PIPE_PIPE, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - anon_sym_or, - [183317] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [183397] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3443), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3441), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [183445] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4282), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7764), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [183537] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4283), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7588), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [183629] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4284), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7788), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [183721] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1119), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [183805] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4286), 1, - sym_attribute, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5181), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [183897] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1163), 1, - anon_sym_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1161), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [183981] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5585), 1, - anon_sym_let, - STATE(4288), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(4993), 1, - sym_item_attribute, - STATE(5167), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5583), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [184049] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4885), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4883), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184097] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4849), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4847), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184145] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(4291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3527), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [184195] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4881), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4879), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184243] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4877), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4875), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184291] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5587), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4294), 1, - sym_attribute, - STATE(5131), 1, - sym__simple_type, - STATE(5133), 1, - sym__extension, - STATE(5837), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8326), 1, - sym__tuple_type_ext, - STATE(9007), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184383] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4295), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6840), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184475] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4296), 1, - sym_attribute, - STATE(5994), 1, - sym__simple_type, - STATE(5996), 1, - sym__extension, - STATE(6539), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8445), 1, - sym__tuple_type_ext, - STATE(8478), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184567] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4873), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4871), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [184615] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4298), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7396), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184707] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1841), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4066), 2, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [184793] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4300), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7381), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184885] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4301), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7802), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [184977] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4869), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4867), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [185025] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4303), 1, - sym_attribute, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5223), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [185117] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5591), 1, - anon_sym_let, - STATE(4304), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(4993), 1, - sym_item_attribute, - STATE(5220), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5589), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [185185] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4305), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6845), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [185277] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5593), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5595), 19, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [185325] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1145), 1, - anon_sym_PIPE, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1143), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [185409] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4861), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4859), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [185457] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4309), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7342), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [185549] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4857), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4855), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [185597] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4766), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4764), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [185645] = 25, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1875), 1, - anon_sym_COLON2, - ACTIONS(1889), 1, - anon_sym_COLON_GT, - ACTIONS(1891), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4312), 1, - sym_attribute, - STATE(8259), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [185733] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4313), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6898), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [185825] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4314), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7787), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [185917] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5599), 1, - anon_sym_let, - STATE(4315), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(4993), 1, - sym_item_attribute, - STATE(5264), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5597), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [185985] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4762), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [186033] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4317), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(6016), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186125] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4318), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7727), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186217] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4319), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(6018), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186309] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4770), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4768), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [186357] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4321), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7627), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186449] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4322), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7632), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186541] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4323), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7680), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186633] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4324), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7972), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186725] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4841), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4839), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [186773] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3990), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(3988), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [186821] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3660), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3658), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [186869] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4328), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6906), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [186961] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4329), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7592), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187053] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1159), 1, - anon_sym_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1157), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [187137] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4331), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6536), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187229] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4332), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5942), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187321] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4829), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4827), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [187369] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4334), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6284), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187461] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4335), 1, - sym_attribute, - STATE(4700), 1, - sym__extension, - STATE(4701), 1, - sym__simple_type, - STATE(5197), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8453), 1, - sym__tuple_type_ext, - STATE(9337), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187553] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4336), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5882), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187645] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4337), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7356), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187737] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5601), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4338), 1, - sym_attribute, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4931), 1, - sym__type_ext, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187829] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4339), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7610), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [187921] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4801), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4799), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [187969] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1279), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1275), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [188017] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4825), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4823), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [188065] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1831), 1, - anon_sym_COMMA, - ACTIONS(1833), 1, - anon_sym_COLON_COLON, - ACTIONS(1835), 1, - sym__concat_operator, - ACTIONS(1849), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_PIPE, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5579), 1, - sym__rel_operator, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4066), 2, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [188151] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4344), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5961), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188243] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4345), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7289), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188335] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(4346), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6657), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9252), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188427] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [188493] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5603), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5605), 19, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [188541] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4349), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7707), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188633] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188695] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4351), 1, - sym_attribute, - STATE(5994), 1, - sym__simple_type, - STATE(5996), 1, - sym__extension, - STATE(6552), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8445), 1, - sym__tuple_type_ext, - STATE(8478), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188787] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4352), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5901), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [188879] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [188941] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4354), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7358), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189033] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1075), 1, - sym__add_operator, - STATE(1173), 1, - sym__assign_operator, - STATE(1180), 1, - sym__or_operator, - STATE(1191), 1, - sym__and_operator, - STATE(1199), 1, - sym__mult_operator, - STATE(1210), 1, - sym__pow_operator, - STATE(4355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [189093] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4356), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7640), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189185] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5601), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4357), 1, - sym_attribute, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4943), 1, - sym__type_ext, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189277] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4358), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7349), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189369] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1159), 1, - anon_sym_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1157), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [189453] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1145), 1, - anon_sym_PIPE, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1143), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [189537] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4361), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7731), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189629] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4817), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4815), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [189677] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1163), 1, - anon_sym_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1161), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [189761] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4364), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7204), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189853] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4365), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7530), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [189945] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4366), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7399), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190037] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4367), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7205), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190129] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(4368), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6910), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9252), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190221] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(4369), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6905), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9252), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190313] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4370), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7437), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190405] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1119), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [190489] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [190569] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4373), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7822), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190661] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4374), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7272), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190753] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4375), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7611), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190845] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4376), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5920), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [190937] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5601), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4377), 1, - sym_attribute, - STATE(4505), 1, - sym__extension, - STATE(4506), 1, - sym__simple_type, - STATE(4927), 1, - sym__type_ext, - STATE(8269), 1, - sym_extended_module_path, - STATE(9169), 1, - sym_typed_label, - STATE(9253), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191029] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5549), 1, - anon_sym_LPAREN, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_LBRACK_GT, - ACTIONS(5557), 1, - anon_sym_LBRACK_LT, - ACTIONS(5559), 1, - anon_sym_LT, - ACTIONS(5561), 1, - anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5565), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5567), 1, - aux_sym_type_variable_token1, - ACTIONS(5577), 1, - sym__identifier, - STATE(4378), 1, - sym_attribute, - STATE(5886), 1, - sym__simple_type, - STATE(5889), 1, - sym__extension, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6344), 1, - sym__type_ext, - STATE(8174), 1, - sym_extended_module_path, - STATE(8386), 1, - sym__tuple_type_ext, - STATE(8691), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6053), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(6014), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191121] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5549), 1, - anon_sym_LPAREN, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_LBRACK_GT, - ACTIONS(5557), 1, - anon_sym_LBRACK_LT, - ACTIONS(5559), 1, - anon_sym_LT, - ACTIONS(5561), 1, - anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5565), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5567), 1, - aux_sym_type_variable_token1, - ACTIONS(5577), 1, - sym__identifier, - STATE(4379), 1, - sym_attribute, - STATE(5886), 1, - sym__simple_type, - STATE(5889), 1, - sym__extension, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6346), 1, - sym__type_ext, - STATE(8174), 1, - sym_extended_module_path, - STATE(8386), 1, - sym__tuple_type_ext, - STATE(8691), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6053), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(6014), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191213] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4380), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7225), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191305] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4381), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7629), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191397] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4797), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4795), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [191445] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4383), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7235), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191537] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4837), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4835), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [191585] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4385), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7575), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191677] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4386), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7234), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191769] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4387), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7539), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191861] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4388), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7400), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [191953] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5587), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4389), 1, - sym_attribute, - STATE(5131), 1, - sym__simple_type, - STATE(5133), 1, - sym__extension, - STATE(5793), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8326), 1, - sym__tuple_type_ext, - STATE(9007), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192045] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5587), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4390), 1, - sym_attribute, - STATE(5131), 1, - sym__simple_type, - STATE(5133), 1, - sym__extension, - STATE(5849), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8326), 1, - sym__tuple_type_ext, - STATE(9007), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192137] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4391), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7518), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192229] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4392), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7428), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192321] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5581), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4393), 1, - sym_attribute, - STATE(5994), 1, - sym__simple_type, - STATE(5996), 1, - sym__extension, - STATE(6456), 1, - sym__type_ext, - STATE(8109), 1, - sym_extended_module_path, - STATE(8445), 1, - sym__tuple_type_ext, - STATE(8478), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192413] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4394), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7659), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192505] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4395), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7512), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192597] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4396), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7322), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192689] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4397), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7252), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192781] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4398), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6838), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [192873] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4805), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4803), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [192921] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4809), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [192969] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4813), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4811), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [193017] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(4402), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6107), 1, - sym_tuple_type, - STATE(6122), 1, - sym__tuple_type, - STATE(6135), 1, - sym__type, - STATE(6897), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9181), 1, - sym__tuple_type_ext, - STATE(9252), 1, - sym_typed_label, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6138), 2, - sym_function_type, - sym_aliased_type, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4786), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4784), 22, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [193157] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4404), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7568), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193249] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5192), 1, - sym__identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4405), 1, - sym_attribute, - STATE(5520), 1, - sym__extension, - STATE(5530), 1, - sym__simple_type, - STATE(5898), 1, - sym__type_ext, - STATE(8142), 1, - sym_extended_module_path, - STATE(8711), 1, - sym_typed_label, - STATE(8712), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193341] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4406), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7670), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193433] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(4407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3391), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [193483] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4408), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(6707), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193575] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [193635] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3654), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - ACTIONS(3652), 20, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_object, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_new, - anon_sym_begin, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [193683] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4411), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7220), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193775] = 27, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3822), 1, - anon_sym_QMARK, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5192), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(3956), 1, - sym__tuple_type, - STATE(4143), 1, - sym__type, - STATE(4412), 1, - sym_attribute, - STATE(5743), 1, - sym__extension, - STATE(5746), 1, - sym__simple_type, - STATE(7759), 1, - sym__type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(9179), 1, - sym_typed_label, - STATE(9181), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4156), 2, - sym_function_type, - sym_aliased_type, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [193867] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1167), 1, - anon_sym_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1165), 3, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [193951] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1171), 1, - anon_sym_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - [194031] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1181), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [194101] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__rel_operator, - anon_sym_or, - [194173] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 4, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__rel_operator, - anon_sym_or, - [194245] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [194307] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [194369] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - [194435] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1143), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [194516] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5609), 1, - anon_sym_DOT_DOT, - STATE(4422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2493), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [194565] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1911), 1, - anon_sym_RBRACK, - ACTIONS(1913), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4423), 1, - sym_attribute, - STATE(7728), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [194650] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3459), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [194697] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1175), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1173), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [194756] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1967), 1, - anon_sym_RBRACK, - ACTIONS(1969), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4426), 1, - sym_attribute, - STATE(7580), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [194841] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1971), 1, - anon_sym_RBRACK, - ACTIONS(1973), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4427), 1, - sym_attribute, - STATE(7673), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [194926] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3519), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [194973] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5617), 1, - anon_sym_POUND, - STATE(4429), 1, - sym_attribute, - STATE(4613), 1, - sym_type_constructor_path, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 12, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5615), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [195030] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1975), 1, - anon_sym_SEMI, - ACTIONS(1977), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4430), 1, - sym_attribute, - STATE(7669), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195115] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1927), 1, - anon_sym_SEMI, - ACTIONS(1929), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4431), 1, - sym_attribute, - STATE(7270), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195200] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1987), 1, - anon_sym_RBRACK, - ACTIONS(1989), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4432), 1, - sym_attribute, - STATE(7554), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195285] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1991), 1, - anon_sym_SEMI, - ACTIONS(1993), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4433), 1, - sym_attribute, - STATE(7549), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195370] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1895), 1, - anon_sym_RBRACK, - ACTIONS(1897), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4434), 1, - sym_attribute, - STATE(7456), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195455] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [195516] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1959), 1, - anon_sym_RBRACK, - ACTIONS(1961), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4436), 1, - sym_attribute, - STATE(7773), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195601] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [195672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3533), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [195719] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1899), 1, - anon_sym_SEMI, - ACTIONS(1901), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4439), 1, - sym_attribute, - STATE(7463), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195804] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1931), 1, - anon_sym_RBRACK, - ACTIONS(1933), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4440), 1, - sym_attribute, - STATE(7481), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195889] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1983), 1, - anon_sym_SEMI, - ACTIONS(1985), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4441), 1, - sym_attribute, - STATE(7417), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [195974] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5621), 1, - anon_sym_let, - STATE(4442), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5285), 1, - sym_item_attribute, - STATE(5408), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5619), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [196041] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5625), 1, - anon_sym_let, - STATE(4443), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5285), 1, - sym_item_attribute, - STATE(5367), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5623), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [196108] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1963), 1, - anon_sym_RBRACK, - ACTIONS(1965), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4444), 1, - sym_attribute, - STATE(7244), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196193] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1121), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 9, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [196258] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1951), 1, - anon_sym_SEMI, - ACTIONS(1953), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4446), 1, - sym_attribute, - STATE(7783), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196343] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1979), 1, - anon_sym_RBRACK, - ACTIONS(1981), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4447), 1, - sym_attribute, - STATE(7426), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196428] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1999), 1, - anon_sym_RBRACK, - ACTIONS(2001), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4448), 1, - sym_attribute, - STATE(7471), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196513] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(2003), 1, - anon_sym_SEMI, - ACTIONS(2005), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4449), 1, - sym_attribute, - STATE(7451), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196598] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(2037), 1, - anon_sym_SEMI, - ACTIONS(2039), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4450), 1, - sym_attribute, - STATE(7262), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196683] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - ACTIONS(5641), 1, - anon_sym_end, - STATE(4451), 1, - sym_attribute, - STATE(4461), 1, - aux_sym__signature_repeat1, - STATE(4547), 1, - aux_sym__structure_repeat1, - STATE(5973), 1, - sym__signature_item_ext, - STATE(8566), 1, - sym__signature, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [196766] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3433), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3435), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [196813] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3541), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [196860] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3383), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [196907] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(2021), 1, - anon_sym_RBRACK, - ACTIONS(2023), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4455), 1, - sym_attribute, - STATE(7276), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [196992] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(2025), 1, - anon_sym_SEMI, - ACTIONS(2027), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4456), 1, - sym_attribute, - STATE(7269), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [197077] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1165), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [197158] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3387), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [197205] = 23, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - ACTIONS(5643), 1, - anon_sym_end, - STATE(4459), 1, - sym_attribute, - STATE(4461), 1, - aux_sym__signature_repeat1, - STATE(4547), 1, - aux_sym__structure_repeat1, - STATE(5973), 1, - sym__signature_item_ext, - STATE(9558), 1, - sym__signature, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [197288] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1121), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 7, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__rel_operator, - anon_sym_or, - [197359] = 22, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - STATE(4461), 1, - sym_attribute, - STATE(4468), 1, - aux_sym__signature_repeat1, - STATE(4559), 1, - aux_sym__structure_repeat1, - STATE(5973), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5645), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [197440] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4584), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4582), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [197487] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(2017), 1, - anon_sym_SEMI, - ACTIONS(2019), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4463), 1, - sym_attribute, - STATE(7663), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [197572] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(1121), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1119), 13, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [197633] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3419), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [197680] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(2033), 1, - anon_sym_RBRACK, - ACTIONS(2035), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4466), 1, - sym_attribute, - STATE(7256), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [197765] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1915), 1, - anon_sym_SEMI, - ACTIONS(1917), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4467), 1, - sym_attribute, - STATE(7748), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [197850] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5647), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5650), 1, - anon_sym_external, - ACTIONS(5653), 1, - anon_sym_type, - ACTIONS(5658), 1, - anon_sym_exception, - ACTIONS(5661), 1, - anon_sym_module, - ACTIONS(5664), 1, - anon_sym_open, - ACTIONS(5667), 1, - anon_sym_include, - ACTIONS(5670), 1, - anon_sym_class, - ACTIONS(5673), 1, - anon_sym_val, - ACTIONS(5676), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(5679), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(5682), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - STATE(4640), 1, - aux_sym__structure_repeat1, - STATE(5973), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5656), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(4468), 2, - sym_attribute, - aux_sym__signature_repeat1, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [197929] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(2007), 1, - anon_sym_RBRACK, - ACTIONS(2009), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4469), 1, - sym_attribute, - STATE(7687), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198014] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(2011), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(4066), 2, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198097] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 11, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(3447), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [198144] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4578), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4576), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [198191] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3427), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [198238] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3545), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [198285] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1947), 1, - anon_sym_SEMI, - ACTIONS(1949), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4475), 1, - sym_attribute, - STATE(7738), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198370] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1943), 1, - anon_sym_RBRACK, - ACTIONS(1945), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4476), 1, - sym_attribute, - STATE(7746), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198455] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1119), 6, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - anon_sym_or, - [198530] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1907), 1, - anon_sym_SEMI, - ACTIONS(1909), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4478), 1, - sym_attribute, - STATE(7615), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198615] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1939), 1, - anon_sym_SEMI, - ACTIONS(1941), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4479), 1, - sym_attribute, - STATE(7809), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198700] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1955), 1, - anon_sym_SEMI, - ACTIONS(1957), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4480), 1, - sym_attribute, - STATE(7504), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198785] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1935), 1, - anon_sym_RBRACK, - ACTIONS(1937), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4481), 1, - sym_attribute, - STATE(7816), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198870] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(2029), 1, - anon_sym_SEMI, - ACTIONS(2031), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4482), 1, - sym_attribute, - STATE(7616), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [198955] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(1995), 1, - anon_sym_SEMI, - ACTIONS(1997), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4483), 1, - sym_attribute, - STATE(7585), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199040] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(2013), 1, - anon_sym_RBRACK, - ACTIONS(2015), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4484), 1, - sym_attribute, - STATE(7608), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199125] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1181), 3, - anon_sym_AMP, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1179), 8, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [199194] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1157), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199275] = 24, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(1903), 1, - anon_sym_RBRACK, - ACTIONS(1905), 1, - anon_sym_SEMI, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4487), 1, - sym_attribute, - STATE(7600), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199360] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3431), 22, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199407] = 20, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - ACTIONS(1169), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - [199484] = 20, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1119), 5, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199561] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5687), 1, - anon_sym_let, - STATE(4491), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5285), 1, - sym_item_attribute, - STATE(5293), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5685), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [199628] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1119), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199709] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1161), 3, - anon_sym_SEMI, - anon_sym_else, - anon_sym_do, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [199790] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4710), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4708), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199836] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5689), 1, - aux_sym_attribute_id_token1, - STATE(4495), 1, - sym_attribute, - STATE(4522), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4521), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4519), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [199886] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4706), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4704), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199932] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3415), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [199978] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4754), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4752), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200024] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_PIPE, - STATE(4499), 1, - sym_attribute, - STATE(4510), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [200074] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3319), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200120] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5693), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3529), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200166] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5697), 1, - anon_sym_let, - STATE(4502), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5285), 1, - sym_item_attribute, - STATE(5584), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5695), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200232] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5703), 1, - anon_sym_DOT, - STATE(4503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5701), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5699), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [200280] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5705), 1, - anon_sym_else, - STATE(4302), 1, - sym_else_clause, - STATE(4504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [200330] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4505), 1, - sym_attribute, - STATE(4583), 1, - sym_type_constructor_path, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 10, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5509), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200388] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4506), 1, - sym_attribute, - STATE(4583), 1, - sym_type_constructor_path, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5384), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [200444] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5689), 1, - aux_sym_attribute_id_token1, - STATE(4495), 1, - aux_sym_attribute_id_repeat1, - STATE(4507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4513), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [200494] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_PIPE, - STATE(4508), 1, - sym_attribute, - STATE(4519), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [200544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3553), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200590] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_PIPE, - STATE(4510), 1, - sym_attribute, - STATE(4520), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [200640] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4602), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4600), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200686] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4758), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4756), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200732] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4750), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4748), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200778] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2497), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(2493), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200824] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3537), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200870] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4606), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4604), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200916] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3423), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [200962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4610), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4608), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201008] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5691), 1, - anon_sym_PIPE, - STATE(4519), 1, - sym_attribute, - STATE(4520), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [201058] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5709), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4520), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [201106] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4614), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4612), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201152] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5712), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4522), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(4508), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(4506), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [201200] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4654), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4652), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201246] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4742), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4740), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201292] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(2041), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [201372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4730), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4728), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201418] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4658), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4656), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201464] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4726), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4724), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201510] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1578), 1, - sym__rel_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(2045), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [201590] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4530), 1, - sym_attribute, - STATE(4583), 1, - sym_type_constructor_path, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5717), 15, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [201646] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(2047), 1, - anon_sym_SEMI, - ACTIONS(4068), 1, - anon_sym_DASH_GT, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [201728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4702), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4700), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201774] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3810), 1, - anon_sym_COLON_COLON, - STATE(4533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4678), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4676), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201822] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1823), 1, - anon_sym_COLON_COLON, - ACTIONS(1825), 1, - sym__concat_operator, - ACTIONS(1839), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5575), 1, - sym__rel_operator, - STATE(1114), 1, - sym__assign_operator, - STATE(1119), 1, - sym__or_operator, - STATE(1125), 1, - sym__and_operator, - STATE(1165), 1, - sym__add_operator, - STATE(1166), 1, - sym__mult_operator, - STATE(1169), 1, - sym__pow_operator, - STATE(4534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(2041), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [201902] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3195), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201948] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4624), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4622), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [201994] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3475), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202040] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4632), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4630), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202086] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4636), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4634), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202132] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3315), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202178] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(2049), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [202258] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4640), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4638), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4644), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4642), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202350] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1574), 1, - anon_sym_COLON_COLON, - ACTIONS(1576), 1, - sym__concat_operator, - ACTIONS(1580), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5254), 1, - sym__rel_operator, - STATE(1086), 1, - sym__pow_operator, - STATE(1087), 1, - sym__mult_operator, - STATE(1088), 1, - sym__add_operator, - STATE(1089), 1, - sym__and_operator, - STATE(1091), 1, - sym__or_operator, - STATE(1093), 1, - sym__assign_operator, - STATE(4544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(2051), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [202430] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3451), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202476] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5719), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(3393), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [202522] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - STATE(4547), 1, - sym_attribute, - STATE(5884), 1, - aux_sym__structure_repeat1, - STATE(5972), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5645), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [202600] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3355), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202646] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5705), 1, - anon_sym_else, - STATE(4401), 1, - sym_else_clause, - STATE(4549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 11, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [202696] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4746), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4744), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4734), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4732), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202788] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4662), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4660), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202834] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4670), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4668), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [202880] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1139), 1, - aux_sym__mult_operator_token1, - ACTIONS(1149), 1, - anon_sym_COLON_EQ, - ACTIONS(1155), 1, - anon_sym_PIPE_PIPE, - ACTIONS(1919), 1, - anon_sym_COMMA, - ACTIONS(1921), 1, - anon_sym_COLON_COLON, - ACTIONS(1923), 1, - sym__concat_operator, - ACTIONS(2043), 1, - anon_sym_SEMI, - ACTIONS(4066), 1, - anon_sym_do, - ACTIONS(4527), 1, - anon_sym_or, - ACTIONS(5607), 1, - sym__rel_operator, - STATE(1234), 1, - sym__assign_operator, - STATE(1235), 1, - sym__or_operator, - STATE(1247), 1, - sym__and_operator, - STATE(1248), 1, - sym__add_operator, - STATE(1253), 1, - sym__mult_operator, - STATE(1259), 1, - sym__pow_operator, - STATE(4554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(1151), 2, - anon_sym_AMP, - anon_sym_AMP_AMP, - ACTIONS(1135), 4, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - ACTIONS(4523), 4, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - ACTIONS(1125), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__add_operator_token1, - [202962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4674), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4672), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203008] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4722), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4720), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203054] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5349), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(5347), 16, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [203100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3403), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203146] = 21, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - STATE(4559), 1, - sym_attribute, - STATE(5884), 1, - aux_sym__structure_repeat1, - STATE(5972), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5721), 2, - anon_sym_RBRACK, - anon_sym_end, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [203224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4714), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4712), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3351), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203316] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4628), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4626), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203362] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4646), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203408] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(5343), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5345), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5725), 1, - anon_sym_let, - STATE(4564), 1, - sym_attribute, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5285), 1, - sym_item_attribute, - STATE(5577), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5723), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [203474] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4738), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4736), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(3487), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203566] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4718), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4716), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203612] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4666), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4664), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203658] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4698), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4696), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203704] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4694), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4692), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203750] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3810), 1, - anon_sym_COLON_COLON, - STATE(4571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4690), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4688), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203798] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4686), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4684), 21, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203844] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3804), 1, - anon_sym_COMMA, - ACTIONS(3810), 1, - anon_sym_COLON_COLON, - STATE(4573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4682), 10, - anon_sym_and, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_COLON2, - anon_sym_LBRACE, - anon_sym_in, - anon_sym_as, - anon_sym_begin, - sym__identifier, - ACTIONS(4680), 19, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_and_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [203894] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5729), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5727), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [203939] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3353), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [203984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3317), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204029] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5731), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5733), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204074] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5735), 1, - anon_sym_else, - STATE(4302), 1, - sym_else_clause, - STATE(4578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [204123] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5737), 1, - anon_sym_else, - STATE(4302), 1, - sym_else_clause, - STATE(4579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [204172] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5741), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5739), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5745), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5743), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4666), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204307] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5747), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5749), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204352] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3473), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204397] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4648), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204442] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5753), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5751), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204487] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5757), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5755), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204532] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5759), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5761), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204577] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5701), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5699), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204622] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5763), 1, - anon_sym_PIPE, - STATE(4590), 1, - sym_attribute, - STATE(4596), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [204671] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5767), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5765), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [204716] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5769), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5771), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204761] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5773), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5775), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204806] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5777), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5779), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204851] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5781), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5783), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [204896] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5785), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4596), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [204943] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5735), 1, - anon_sym_else, - STATE(4401), 1, - sym_else_clause, - STATE(4597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 10, - anon_sym_and, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_in, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - sym_and_operator, - [204992] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5763), 1, - anon_sym_PIPE, - STATE(4598), 1, - sym_attribute, - STATE(4611), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [205041] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5788), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5790), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205086] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5794), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5792), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205131] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5737), 1, - anon_sym_else, - STATE(4401), 1, - sym_else_clause, - STATE(4601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 18, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [205180] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5798), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5796), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205225] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5800), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5802), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5806), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5804), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205315] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5810), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5808), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [205360] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5812), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5814), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205405] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4508), 10, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - aux_sym_attribute_id_token1, - ACTIONS(4506), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [205450] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5816), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5818), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205495] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5763), 1, - anon_sym_PIPE, - STATE(4590), 1, - aux_sym__match_cases_repeat1, - STATE(4609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [205544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3485), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205589] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5763), 1, - anon_sym_PIPE, - STATE(4596), 1, - aux_sym__match_cases_repeat1, - STATE(4611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 19, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_done, - anon_sym_to, - anon_sym_downto, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [205638] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5820), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5822), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205683] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5824), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5826), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5828), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5830), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205773] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3535), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205818] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5832), 1, - anon_sym_COLON2, - STATE(4616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4648), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205865] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5834), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5836), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205910] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5838), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5840), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [205955] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5844), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206000] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5846), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5848), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206045] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3401), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206090] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5852), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5850), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206135] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5854), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5856), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206180] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5860), 5, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - ACTIONS(5858), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [206225] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5864), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5866), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5868), 16, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [206315] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5838), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5840), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206359] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4628), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5872), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [206419] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5759), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5761), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206463] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3473), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206507] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5866), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5868), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206551] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5834), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5836), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206595] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5731), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5733), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206639] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3317), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206683] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5844), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206727] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5880), 1, - anon_sym_POUND, - STATE(4636), 1, - sym_attribute, - STATE(4739), 1, - sym_type_constructor_path, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 9, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5615), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [206781] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3485), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206825] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3353), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206869] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5828), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5830), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [206913] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(77), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(79), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(3820), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5374), 1, - anon_sym_open, - ACTIONS(5627), 1, - anon_sym_external, - ACTIONS(5629), 1, - anon_sym_type, - ACTIONS(5631), 1, - anon_sym_exception, - ACTIONS(5633), 1, - anon_sym_module, - ACTIONS(5635), 1, - anon_sym_include, - ACTIONS(5637), 1, - anon_sym_class, - ACTIONS(5639), 1, - anon_sym_val, - STATE(4640), 1, - sym_attribute, - STATE(5884), 1, - aux_sym__structure_repeat1, - STATE(5972), 1, - sym__signature_item_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5911), 2, - sym__signature_item, - sym__item_extension, - STATE(5909), 11, - sym_external, - sym_type_definition, - sym_exception_definition, - sym_module_definition, - sym_module_type_definition, - sym_open_module, - sym_class_definition, - sym_class_type_definition, - sym_value_specification, - sym_include_module_type, - sym_floating_attribute, - [206987] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5820), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5822), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207031] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5769), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5771), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207075] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5816), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5818), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207119] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5824), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5826), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207163] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5603), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5605), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207207] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5470), 9, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(5468), 20, - anon_sym_rec, - anon_sym_nonrec, - anon_sym__, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_constraint, - anon_sym_module, - anon_sym_virtual, - anon_sym_val, - anon_sym_sig, - anon_sym_end, - anon_sym_functor, - anon_sym_struct, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym__identifier, - [207251] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5832), 1, - anon_sym_COLON2, - STATE(4647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 13, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4648), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207297] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5788), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5790), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207341] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3535), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207385] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3401), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207429] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5800), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5802), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207473] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5884), 1, - anon_sym_POUND, - STATE(4644), 1, - sym_type_constructor_path, - STATE(4652), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 10, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5615), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [207527] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4653), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5886), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5888), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [207587] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5593), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5595), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207631] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5854), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5856), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207675] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4666), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207719] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5773), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5775), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207763] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5747), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5749), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207807] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5781), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5783), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207851] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5864), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207895] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5812), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5814), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [207939] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4662), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5892), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [207999] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4663), 1, - sym_attribute, - STATE(4856), 1, - sym_type_constructor_path, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 9, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5717), 15, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [208053] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5846), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5848), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [208097] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4665), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5896), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5898), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [208157] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4666), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5902), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [208217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5347), 13, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - ACTIONS(5349), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [208261] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5777), 14, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5779), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [208305] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4669), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5906), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [208365] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4646), 1, - anon_sym_PLUS_EQ, - ACTIONS(5910), 1, - anon_sym_let, - ACTIONS(5912), 1, - anon_sym_EQ, - ACTIONS(5914), 1, - anon_sym_COLON_EQ, - ACTIONS(5916), 1, - anon_sym_constraint, - STATE(4670), 1, - sym_attribute, - STATE(4879), 1, - sym_type_constraint, - STATE(4945), 1, - sym__type_equation, - STATE(4985), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5142), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5908), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208428] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5920), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5922), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5918), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208473] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4646), 1, - anon_sym_PLUS_EQ, - ACTIONS(5914), 1, - anon_sym_COLON_EQ, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(5926), 1, - anon_sym_let, - ACTIONS(5928), 1, - anon_sym_EQ, - STATE(4672), 1, - sym_attribute, - STATE(4879), 1, - sym_type_constraint, - STATE(4936), 1, - sym__type_equation, - STATE(4970), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5278), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5924), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208536] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5930), 1, - anon_sym_PIPE, - STATE(4673), 1, - sym_attribute, - STATE(4704), 1, - aux_sym__match_cases_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [208583] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5934), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5932), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208626] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - ACTIONS(5938), 1, - anon_sym_STAR, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4675), 1, - sym_attribute, - STATE(5067), 1, - aux_sym__constructor_argument_repeat1, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5874), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5936), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [208683] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5846), 10, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5848), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [208728] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5944), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5942), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208771] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5349), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5347), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [208814] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4679), 1, - sym_attribute, - STATE(4938), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(7164), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8222), 1, - sym_extended_module_path, - STATE(8903), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4897), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [208893] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4680), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5900), 1, - sym_type_variable, - STATE(6919), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8158), 1, - sym_extended_module_path, - STATE(9147), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6289), 2, - sym__simple_type, - sym__extension, - STATE(5712), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [208972] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5968), 1, - anon_sym_else, - STATE(3239), 1, - sym_else_clause, - STATE(4681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209019] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4682), 1, - sym_attribute, - STATE(4937), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(6961), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8109), 1, - sym_extended_module_path, - STATE(8343), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4885), 2, - sym__simple_type, - sym__extension, - STATE(4664), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [209098] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4676), 1, - sym_type_variable, - STATE(4683), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(7128), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8142), 1, - sym_extended_module_path, - STATE(8428), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5060), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [209177] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5974), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5922), 26, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209220] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5976), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4685), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209265] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5981), 1, - anon_sym_let, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(5987), 1, - anon_sym_COLON2, - STATE(4686), 1, - sym_attribute, - STATE(4713), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(4959), 1, - sym__module_typed, - STATE(4993), 1, - sym_item_attribute, - STATE(5276), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5983), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5979), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [209326] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5989), 1, - anon_sym_PIPE, - STATE(4685), 1, - aux_sym__match_cases_repeat1, - STATE(4687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209373] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5991), 1, - anon_sym_else, - STATE(3260), 1, - sym_else_clause, - STATE(4688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209420] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4689), 1, - sym_attribute, - STATE(4937), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(6990), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8109), 1, - sym_extended_module_path, - STATE(8350), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4906), 2, - sym__simple_type, - sym__extension, - STATE(4664), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [209499] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5991), 1, - anon_sym_else, - STATE(3294), 1, - sym_else_clause, - STATE(4690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209546] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5993), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4691), 2, - sym_attribute, - aux_sym__match_cases_repeat1, - ACTIONS(4762), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209591] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5930), 1, - anon_sym_PIPE, - STATE(4691), 1, - aux_sym__match_cases_repeat1, - STATE(4692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4790), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4788), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209638] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5968), 1, - anon_sym_else, - STATE(3215), 1, - sym_else_clause, - STATE(4693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209685] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4694), 1, - sym_attribute, - STATE(4695), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(7210), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8269), 1, - sym_extended_module_path, - STATE(8674), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4653), 2, - sym__simple_type, - sym__extension, - STATE(4620), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [209764] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5846), 12, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5848), 14, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [209809] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4696), 1, - sym_attribute, - STATE(4938), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(6996), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8222), 1, - sym_extended_module_path, - STATE(8549), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4889), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [209888] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5989), 1, - anon_sym_PIPE, - STATE(4685), 1, - aux_sym__match_cases_repeat1, - STATE(4697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209935] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5989), 1, - anon_sym_PIPE, - STATE(4687), 1, - aux_sym__match_cases_repeat1, - STATE(4698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [209982] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4699), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5900), 1, - sym_type_variable, - STATE(6926), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8158), 1, - sym_extended_module_path, - STATE(9178), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6293), 2, - sym__simple_type, - sym__extension, - STATE(5712), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210061] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4700), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 8, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5509), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [210116] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4701), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 9, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5384), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [210169] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4702), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 9, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5717), 14, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [210222] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5942), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(6002), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6000), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210267] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5930), 1, - anon_sym_PIPE, - STATE(4691), 1, - aux_sym__match_cases_repeat1, - STATE(4704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [210314] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5989), 1, - anon_sym_PIPE, - STATE(4697), 1, - aux_sym__match_cases_repeat1, - STATE(4705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4821), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4819), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [210361] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5930), 1, - anon_sym_PIPE, - STATE(4692), 1, - aux_sym__match_cases_repeat1, - STATE(4706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4774), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4772), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_else, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [210408] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4676), 1, - sym_type_variable, - STATE(4707), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(7113), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8142), 1, - sym_extended_module_path, - STATE(8402), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5086), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210487] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4676), 1, - sym_type_variable, - STATE(4708), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(7094), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8142), 1, - sym_extended_module_path, - STATE(8390), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5108), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210566] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4695), 1, - sym_type_variable, - STATE(4709), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(7123), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8269), 1, - sym_extended_module_path, - STATE(8647), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4662), 2, - sym__simple_type, - sym__extension, - STATE(4620), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210645] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4710), 1, - sym_attribute, - STATE(4938), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(7117), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8222), 1, - sym_extended_module_path, - STATE(8629), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4884), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210724] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4711), 1, - sym_attribute, - STATE(4937), 1, - sym_type_variable, - STATE(5065), 1, - sym_record_declaration, - STATE(7029), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8109), 1, - sym_extended_module_path, - STATE(8333), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4901), 2, - sym__simple_type, - sym__extension, - STATE(4664), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210803] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(6010), 1, - anon_sym_DOT, - STATE(4712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6006), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6004), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210850] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(5987), 1, - anon_sym_COLON2, - ACTIONS(6014), 1, - anon_sym_let, - STATE(4713), 1, - sym_attribute, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(4993), 1, - sym_item_attribute, - STATE(4994), 1, - sym__module_typed, - STATE(5173), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6016), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6012), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [210911] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4714), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5900), 1, - sym_type_variable, - STATE(6942), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8158), 1, - sym_extended_module_path, - STATE(9217), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6303), 2, - sym__simple_type, - sym__extension, - STATE(5712), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [210990] = 22, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6018), 1, - sym__identifier, - ACTIONS(6020), 1, - anon_sym_let, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6024), 1, - anon_sym_BANG, - ACTIONS(6026), 1, - anon_sym_LBRACK, - ACTIONS(6028), 1, - anon_sym_fun, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - STATE(1431), 1, - sym__simple_class_expression, - STATE(4715), 1, - sym_attribute, - STATE(6070), 1, - sym__class_expression_ext, - STATE(8477), 1, - sym_module_path, - STATE(9172), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211067] = 23, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4695), 1, - sym_type_variable, - STATE(4716), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(7107), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8269), 1, - sym_extended_module_path, - STATE(8564), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4665), 2, - sym__simple_type, - sym__extension, - STATE(4620), 7, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - [211146] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4717), 1, - sym_attribute, - STATE(5248), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211220] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6046), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6044), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [211262] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4719), 1, - sym_attribute, - STATE(5215), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211336] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4720), 1, - sym_attribute, - STATE(5248), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211410] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4721), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - STATE(8306), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [211486] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4722), 1, - sym_attribute, - STATE(5272), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211560] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4723), 1, - sym_attribute, - STATE(5266), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211634] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4724), 1, - sym_attribute, - STATE(5238), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211708] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4725), 1, - sym_attribute, - STATE(5238), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211782] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4726), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - STATE(8290), 1, - sym__tuple_type_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [211858] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4727), 1, - sym_attribute, - STATE(5227), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [211932] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4728), 1, - sym_attribute, - STATE(5186), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [212006] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5820), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5822), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [212048] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6066), 1, - anon_sym_DOT_DOT, - ACTIONS(6068), 1, - anon_sym_GT, - STATE(4730), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212122] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4731), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(8590), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4669), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212196] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6070), 1, - anon_sym_LBRACE, - STATE(4732), 1, - sym_attribute, - STATE(7879), 1, - sym_record_declaration, - STATE(7881), 1, - sym__constructor_argument, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6309), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212270] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6074), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6072), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [212312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5769), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5771), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [212354] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6076), 1, - anon_sym_DOT_DOT, - ACTIONS(6078), 1, - anon_sym_GT, - STATE(4735), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212428] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4736), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(8596), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4628), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5816), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5818), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [212544] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4738), 1, - sym_attribute, - STATE(5172), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [212618] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5824), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5826), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [212660] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4740), 1, - sym_attribute, - STATE(5246), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [212734] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6018), 1, - sym__identifier, - ACTIONS(6020), 1, - anon_sym_let, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6026), 1, - anon_sym_LBRACK, - ACTIONS(6028), 1, - anon_sym_fun, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - STATE(1431), 1, - sym__simple_class_expression, - STATE(4741), 1, - sym_attribute, - STATE(4854), 1, - sym__class_expression_ext, - STATE(8477), 1, - sym_module_path, - STATE(9172), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [212808] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4742), 1, - sym_attribute, - STATE(5249), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [212882] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6080), 1, - anon_sym_DOT_DOT, - ACTIONS(6082), 1, - anon_sym_GT, - STATE(4743), 1, - sym_attribute, - STATE(7479), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6375), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [212956] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6084), 1, - anon_sym_else, - STATE(3215), 1, - sym_else_clause, - STATE(4744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4833), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4831), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [213002] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4745), 1, - sym_attribute, - STATE(4842), 1, - sym__class_expression_ext, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213076] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4746), 1, - sym_attribute, - STATE(4854), 1, - sym__class_expression_ext, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213150] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6094), 1, - anon_sym_DOT_DOT, - ACTIONS(6096), 1, - anon_sym_GT, - STATE(4747), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [213224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3319), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [213266] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4749), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8269), 1, - sym_extended_module_path, - STATE(8606), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4666), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [213340] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5854), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5856), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [213382] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5788), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5790), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [213424] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4752), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5240), 1, - sym__constructor_argument, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4675), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [213498] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5800), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5802), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [213540] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4754), 1, - sym_attribute, - STATE(7475), 1, - sym__class_expression_ext, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213614] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4755), 1, - sym_attribute, - STATE(5215), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213688] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4756), 1, - sym_attribute, - STATE(5268), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213762] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4757), 1, - sym_attribute, - STATE(5246), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213836] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6018), 1, - sym__identifier, - ACTIONS(6020), 1, - anon_sym_let, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6026), 1, - anon_sym_LBRACK, - ACTIONS(6028), 1, - anon_sym_fun, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - STATE(1431), 1, - sym__simple_class_expression, - STATE(4733), 1, - sym__class_expression_ext, - STATE(4758), 1, - sym_attribute, - STATE(8477), 1, - sym_module_path, - STATE(9172), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213910] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4759), 1, - sym_attribute, - STATE(5242), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [213984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5838), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5840), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [214026] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6098), 1, - anon_sym_DOT_DOT, - ACTIONS(6100), 1, - anon_sym_GT, - STATE(4761), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [214100] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4762), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(7834), 1, - sym__tuple_type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [214176] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5834), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5836), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [214218] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4764), 1, - sym_attribute, - STATE(7571), 1, - sym__class_expression_ext, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214292] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4765), 1, - sym_attribute, - STATE(4854), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214366] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6102), 1, - anon_sym_DOT_DOT, - ACTIONS(6104), 1, - anon_sym_GT, - STATE(4766), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [214440] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5781), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5783), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [214482] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3355), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [214524] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4769), 1, - sym_attribute, - STATE(5242), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214598] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5864), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [214640] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4771), 1, - sym_attribute, - STATE(5262), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214714] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4772), 1, - sym_attribute, - STATE(5241), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214788] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5812), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5814), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [214830] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4774), 1, - sym_attribute, - STATE(5180), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [214904] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4775), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(7990), 1, - sym__tuple_type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [214980] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4776), 1, - sym_attribute, - STATE(5227), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215054] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4777), 1, - sym_attribute, - STATE(5180), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215128] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4778), 1, - sym_attribute, - STATE(5241), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215202] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4779), 1, - sym_attribute, - STATE(5186), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215276] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(4780), 1, - sym_attribute, - STATE(5773), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5450), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(6106), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6110), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [215330] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4781), 1, - sym_attribute, - STATE(5262), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215404] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4782), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8142), 1, - sym_extended_module_path, - STATE(8388), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5111), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [215478] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4783), 1, - sym_attribute, - STATE(5262), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215552] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4784), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5256), 1, - sym__constructor_argument, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4954), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [215626] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4785), 1, - sym_attribute, - STATE(5242), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215700] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4786), 1, - sym_attribute, - STATE(5172), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215774] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4787), 1, - sym_attribute, - STATE(5268), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215848] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4788), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(7974), 1, - sym__tuple_type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [215924] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4789), 1, - sym_attribute, - STATE(5215), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [215998] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4733), 1, - sym__class_expression_ext, - STATE(4790), 1, - sym_attribute, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216072] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4791), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5165), 1, - sym__constructor_argument, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5281), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [216146] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4792), 1, - sym_attribute, - STATE(5241), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216220] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4793), 1, - sym_attribute, - STATE(5249), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216294] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 12, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4648), 15, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [216336] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4795), 1, - sym_attribute, - STATE(5180), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216410] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6114), 1, - anon_sym_DOT_DOT, - ACTIONS(6116), 1, - anon_sym_GT, - STATE(4796), 1, - sym_attribute, - STATE(7382), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6395), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [216484] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4797), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5165), 1, - sym__constructor_argument, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4675), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [216558] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4798), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8158), 1, - sym_extended_module_path, - STATE(9113), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6278), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [216632] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6118), 1, - anon_sym_DOT_DOT, - ACTIONS(6120), 1, - anon_sym_GT, - STATE(4799), 1, - sym_attribute, - STATE(7555), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6409), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [216706] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5846), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5848), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [216748] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3475), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [216790] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4802), 1, - sym_attribute, - STATE(4842), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216864] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4803), 1, - sym_attribute, - STATE(4854), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [216938] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6126), 1, - anon_sym_LPAREN, - STATE(4951), 1, - sym_module_parameter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4804), 2, - sym_attribute, - aux_sym_module_binding_repeat1, - ACTIONS(6124), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(6122), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [216984] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4805), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8142), 1, - sym_extended_module_path, - STATE(8372), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5123), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [217058] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5603), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5605), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [217100] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6084), 1, - anon_sym_else, - STATE(3239), 1, - sym_else_clause, - STATE(4807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4780), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4778), 16, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_do, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [217146] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6129), 1, - anon_sym_DOT_DOT, - ACTIONS(6131), 1, - anon_sym_GT, - STATE(4808), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [217220] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4809), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5165), 1, - sym__constructor_argument, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4954), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [217294] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6133), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_directive_token1, - ACTIONS(6135), 14, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_begin, - sym__identifier, - [217336] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4811), 1, - sym_attribute, - STATE(5246), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [217410] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5593), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5595), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [217452] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4813), 1, - sym_attribute, - STATE(5248), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [217526] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6018), 1, - sym__identifier, - ACTIONS(6020), 1, - anon_sym_let, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6026), 1, - anon_sym_LBRACK, - ACTIONS(6028), 1, - anon_sym_fun, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - STATE(1431), 1, - sym__simple_class_expression, - STATE(4814), 1, - sym_attribute, - STATE(4842), 1, - sym__class_expression_ext, - STATE(8477), 1, - sym_module_path, - STATE(9172), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [217600] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4815), 1, - sym_attribute, - STATE(5249), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [217674] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5828), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5830), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [217716] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3487), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [217758] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6070), 1, - anon_sym_LBRACE, - STATE(4818), 1, - sym_attribute, - STATE(7879), 1, - sym_record_declaration, - STATE(7938), 1, - sym__constructor_argument, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6309), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [217832] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5844), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [217874] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4820), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8222), 1, - sym_extended_module_path, - STATE(9124), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4894), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [217948] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4733), 1, - sym__class_expression_ext, - STATE(4821), 1, - sym_attribute, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [218022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5731), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5733), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [218064] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4823), 1, - sym_attribute, - STATE(5238), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [218138] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4824), 1, - sym_attribute, - STATE(4842), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [218212] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4825), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5165), 1, - sym__constructor_argument, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4939), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218286] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4826), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8222), 1, - sym_extended_module_path, - STATE(8909), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4913), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218360] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4827), 1, - sym_attribute, - STATE(5172), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [218434] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4828), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8142), 1, - sym_extended_module_path, - STATE(8383), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5121), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218508] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4829), 1, - sym_attribute, - STATE(5186), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [218582] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6137), 1, - anon_sym_DOT_DOT, - ACTIONS(6139), 1, - anon_sym_GT, - STATE(4830), 1, - sym_attribute, - STATE(7564), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6410), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218656] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6141), 1, - anon_sym_DOT_DOT, - ACTIONS(6143), 1, - anon_sym_GT, - STATE(4831), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218730] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4832), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5240), 1, - sym__constructor_argument, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4939), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218804] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6145), 1, - anon_sym_DOT_DOT, - ACTIONS(6147), 1, - anon_sym_GT, - STATE(4833), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218878] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5866), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5868), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [218920] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4835), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5256), 1, - sym__constructor_argument, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4675), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [218994] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5759), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5761), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [219036] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4837), 1, - sym_attribute, - STATE(5227), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [219110] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5773), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5775), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [219152] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6149), 1, - anon_sym_DOT_DOT, - ACTIONS(6151), 1, - anon_sym_GT, - STATE(4839), 1, - sym_attribute, - STATE(7376), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6401), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [219226] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5832), 1, - anon_sym_COLON2, - STATE(4840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(4646), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [219270] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4762), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4760), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [219312] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6155), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6153), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [219354] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4733), 1, - sym__class_expression_ext, - STATE(4843), 1, - sym_attribute, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [219428] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6157), 1, - anon_sym_DOT_DOT, - ACTIONS(6159), 1, - anon_sym_GT, - STATE(4844), 1, - sym_attribute, - STATE(7797), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6432), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [219502] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6161), 1, - anon_sym_DOT_DOT, - ACTIONS(6163), 1, - anon_sym_GT, - STATE(4845), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [219576] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4846), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5240), 1, - sym__constructor_argument, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4954), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [219650] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4845), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4843), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [219692] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4842), 1, - sym__class_expression_ext, - STATE(4848), 1, - sym_attribute, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [219766] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4849), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8158), 1, - sym_extended_module_path, - STATE(9132), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6295), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [219840] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4841), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4839), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [219882] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3537), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [219924] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(493), 1, - anon_sym_object, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6086), 1, - sym__identifier, - ACTIONS(6088), 1, - anon_sym_let, - ACTIONS(6090), 1, - anon_sym_LBRACK, - ACTIONS(6092), 1, - anon_sym_fun, - STATE(1957), 1, - sym__simple_class_expression, - STATE(4852), 1, - sym_attribute, - STATE(7341), 1, - sym__class_expression_ext, - STATE(8704), 1, - sym_value_definition, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [219998] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3277), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6018), 1, - sym__identifier, - ACTIONS(6020), 1, - anon_sym_let, - ACTIONS(6022), 1, - anon_sym_LPAREN, - ACTIONS(6026), 1, - anon_sym_LBRACK, - ACTIONS(6028), 1, - anon_sym_fun, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - STATE(1431), 1, - sym__simple_class_expression, - STATE(4853), 1, - sym_attribute, - STATE(6096), 1, - sym__class_expression_ext, - STATE(8477), 1, - sym_module_path, - STATE(9172), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(4129), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [220072] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6167), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6165), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220114] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5966), 1, - sym__identifier, - STATE(4855), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8158), 1, - sym_extended_module_path, - STATE(9145), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6298), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220188] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5747), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5749), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [220230] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4857), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5256), 1, - sym__constructor_argument, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4939), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220304] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4858), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5256), 1, - sym__constructor_argument, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5281), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4666), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [220420] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6169), 1, - anon_sym_DOT_DOT, - ACTIONS(6171), 1, - anon_sym_GT, - STATE(4860), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220494] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4733), 1, - sym__class_expression_ext, - STATE(4861), 1, - sym_attribute, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [220568] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4837), 10, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_PLUS_DOT, - anon_sym_DASH_DOT, - aux_sym__mult_operator_token1, - aux_sym__add_operator_token1, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - ACTIONS(4835), 17, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_SEMI, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_else, - aux_sym__pow_operator_token1, - anon_sym_lsl, - anon_sym_lsr, - anon_sym_asr, - anon_sym_mod, - anon_sym_land, - anon_sym_lor, - anon_sym_lxor, - sym__concat_operator, - sym__rel_operator, - anon_sym_or, - [220610] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6050), 1, - anon_sym_let, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6058), 1, - anon_sym_fun, - STATE(1349), 1, - sym__simple_class_expression, - STATE(4863), 1, - sym_attribute, - STATE(5268), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(8451), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [220684] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5777), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5779), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [220726] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4865), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 9, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6175), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [220778] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6070), 1, - anon_sym_LBRACE, - STATE(4866), 1, - sym_attribute, - STATE(7879), 1, - sym_record_declaration, - STATE(8051), 1, - sym__constructor_argument, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6309), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220852] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4867), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8352), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4912), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [220926] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2699), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(2697), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_COLON2, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [220968] = 22, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(3917), 1, - sym_tuple_type, - STATE(4869), 1, - sym_attribute, - STATE(5746), 1, - sym__simple_type, - STATE(6583), 1, - sym__extension, - STATE(7908), 1, - sym__tuple_type_ext, - STATE(8158), 1, - sym_extended_module_path, - STATE(8166), 1, - sym__tuple_type, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221044] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4870), 1, - sym_attribute, - STATE(5272), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [221118] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6177), 1, - anon_sym_DOT_DOT, - ACTIONS(6179), 1, - anon_sym_GT, - STATE(4871), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221192] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6048), 1, - sym__identifier, - ACTIONS(6052), 1, - anon_sym_LPAREN, - ACTIONS(6054), 1, - anon_sym_LBRACK, - ACTIONS(6056), 1, - anon_sym_object, - ACTIONS(6060), 1, - anon_sym_let, - ACTIONS(6062), 1, - anon_sym_fun, - STATE(1352), 1, - sym__simple_class_expression, - STATE(4872), 1, - sym_attribute, - STATE(5266), 1, - sym__class_expression_ext, - STATE(8436), 1, - sym_module_path, - STATE(9202), 1, - sym_value_definition, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3581), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [221266] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4854), 1, - sym__class_expression_ext, - STATE(4873), 1, - sym_attribute, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [221340] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4874), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(5240), 1, - sym__constructor_argument, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5281), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221414] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 11, - anon_sym_SEMI_SEMI, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4648), 16, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [221456] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(4876), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8222), 1, - sym_extended_module_path, - STATE(9042), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4917), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221530] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 7, - anon_sym_COLON2, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_POUND, - anon_sym_when, - sym__identifier, - ACTIONS(3403), 20, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - sym_hash_operator, - sym__capitalized_identifier, - [221572] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4878), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8353), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4914), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221646] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6183), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6181), 25, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [221688] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4880), 1, - sym_attribute, - STATE(5272), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [221762] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4958), 1, - anon_sym_LBRACE, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4881), 1, - sym_attribute, - STATE(5065), 1, - sym_record_declaration, - STATE(8109), 1, - sym_extended_module_path, - STATE(8355), 1, - sym__constructor_argument, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4924), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221836] = 21, - ACTIONS(157), 1, - sym_let_operator, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2808), 1, - anon_sym_object, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6034), 1, - sym__identifier, - ACTIONS(6036), 1, - anon_sym_let, - ACTIONS(6038), 1, - anon_sym_LPAREN, - ACTIONS(6040), 1, - anon_sym_LBRACK, - ACTIONS(6042), 1, - anon_sym_fun, - STATE(1354), 1, - sym__simple_class_expression, - STATE(4882), 1, - sym_attribute, - STATE(5266), 1, - sym__class_expression_ext, - STATE(8327), 1, - sym_value_definition, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4718), 2, - sym__class_expression, - sym__extension, - STATE(4868), 4, - sym_class_function, - sym_class_application, - sym_let_class_expression, - sym_let_open_class_expression, - STATE(3785), 5, - sym_instantiated_class, - sym_typed_class_expression, - sym_parenthesized_class_expression, - sym_object_expression, - sym_class_path, - [221910] = 21, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - ACTIONS(6185), 1, - anon_sym_DOT_DOT, - ACTIONS(6187), 1, - anon_sym_GT, - STATE(4883), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [221984] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4884), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5886), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5888), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222041] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4885), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5892), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [222098] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4886), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6193), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6195), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222149] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5920), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5918), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3449), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3451), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [222231] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4889), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5892), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222288] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4890), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5872), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222339] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6199), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6197), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222380] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4892), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6203), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222431] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4893), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5906), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222482] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4894), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5906), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222539] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3313), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3315), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [222580] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4896), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5902), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222631] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4897), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5896), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5898), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [222688] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6207), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6205), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222729] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3193), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3195), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [222770] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4900), 1, - sym_attribute, - STATE(4909), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6211), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6209), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222817] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4901), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5886), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5888), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [222874] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - STATE(4902), 1, - sym_attribute, - STATE(5158), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6215), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - ACTIONS(6213), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222923] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(6229), 1, - anon_sym_of, - ACTIONS(6231), 1, - anon_sym_COLON2, - STATE(4903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5942), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(6225), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6223), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [222972] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3349), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3351), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [223013] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6235), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6233), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223054] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4906), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5896), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5898), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [223111] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6241), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6239), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(4907), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(6237), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223156] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6211), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6209), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223203] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6246), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6244), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223250] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6250), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6248), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223291] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6254), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6252), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223332] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4912), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5902), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [223389] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4913), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5902), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [223446] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4914), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5872), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [223503] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6256), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4915), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(4506), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(4508), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [223546] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4648), 1, - sym__identifier, - ACTIONS(6259), 1, - anon_sym_COLON2, - STATE(4916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5603), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5605), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [223593] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(4917), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5872), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [223650] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6263), 1, - anon_sym_let, - ACTIONS(6265), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4918), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - ACTIONS(6261), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223695] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3413), 3, - anon_sym_COLON2, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - ACTIONS(3415), 23, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_hash_operator, - [223736] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4908), 1, - aux_sym_type_binding_repeat1, - STATE(4920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6270), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6268), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223783] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5613), 1, - sym__identifier, - ACTIONS(5707), 1, - anon_sym_POUND, - STATE(4583), 1, - sym_type_constructor_path, - STATE(4921), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6274), 13, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [223834] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6276), 1, - aux_sym_attribute_id_token1, - STATE(4922), 1, - sym_attribute, - STATE(4925), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4513), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(4515), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [223879] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6002), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6000), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [223920] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4924), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5906), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [223977] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6276), 1, - aux_sym_attribute_id_token1, - STATE(4915), 1, - aux_sym_attribute_id_repeat1, - STATE(4925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4519), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(4521), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [224022] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6280), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6278), 24, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224063] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6286), 1, - anon_sym_DASH_GT, - STATE(4927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6284), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6282), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6290), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6288), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224145] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6294), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6292), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224185] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6298), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6296), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224225] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6286), 1, - anon_sym_DASH_GT, - ACTIONS(6304), 1, - anon_sym_as, - STATE(4931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6302), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6300), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224269] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6308), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6306), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224309] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6064), 1, - sym__identifier, - STATE(4933), 1, - sym_attribute, - STATE(7851), 1, - sym_method_type, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6573), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [224377] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5349), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - ACTIONS(5347), 13, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [224417] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6312), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6310), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224457] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6316), 1, - anon_sym_let, - ACTIONS(6318), 1, - anon_sym_EQ, - STATE(4879), 1, - sym_type_constraint, - STATE(4936), 1, - sym_attribute, - STATE(4984), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5184), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224511] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5846), 10, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(5848), 13, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [224553] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5846), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5848), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [224595] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - ACTIONS(6320), 1, - anon_sym_STAR, - STATE(4939), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(5522), 1, - aux_sym__constructor_argument_repeat1, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5874), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5936), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [224649] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6324), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6322), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224689] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4506), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(4508), 16, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - [224729] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6328), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(6326), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224769] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6286), 1, - anon_sym_DASH_GT, - ACTIONS(6304), 1, - anon_sym_as, - STATE(4943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6332), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6330), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224813] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6336), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(6334), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224853] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6340), 1, - anon_sym_let, - ACTIONS(6342), 1, - anon_sym_EQ, - STATE(4879), 1, - sym_type_constraint, - STATE(4945), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5037), 1, - aux_sym_type_binding_repeat1, - STATE(5161), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [224907] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(6344), 1, - anon_sym_COLON2, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4946), 1, - sym_attribute, - STATE(4951), 1, - sym_module_parameter, - STATE(4993), 1, - sym_item_attribute, - STATE(4994), 1, - sym__module_typed, - STATE(5173), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6016), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6012), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [224963] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6286), 1, - anon_sym_DASH_GT, - ACTIONS(6304), 1, - anon_sym_as, - STATE(4947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6348), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6346), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6352), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6350), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225047] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4646), 1, - anon_sym_PLUS_EQ, - ACTIONS(6354), 1, - anon_sym_EQ, - ACTIONS(6356), 1, - anon_sym_COLON_EQ, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4949), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5225), 1, - sym__type_equation, - STATE(5278), 1, - aux_sym_expression_item_repeat1, - STATE(5510), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5924), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [225105] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6362), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6360), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225145] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6366), 3, - anon_sym_let, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(6364), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225185] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6370), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6368), 23, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225225] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6372), 1, - anon_sym_POUND, - STATE(4953), 1, - sym_attribute, - STATE(5082), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 9, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5615), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [225275] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - ACTIONS(6374), 1, - anon_sym_STAR, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4954), 1, - sym_attribute, - STATE(5525), 1, - aux_sym__constructor_argument_repeat1, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5874), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5936), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [225329] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4666), 1, - sym__identifier, - STATE(4955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5593), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5595), 12, - anon_sym_let, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [225373] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(6344), 1, - anon_sym_COLON2, - STATE(4946), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(4956), 1, - sym_attribute, - STATE(4959), 1, - sym__module_typed, - STATE(4993), 1, - sym_item_attribute, - STATE(5276), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5983), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(5979), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [225429] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(4646), 1, - anon_sym_PLUS_EQ, - ACTIONS(6356), 1, - anon_sym_COLON_EQ, - ACTIONS(6358), 1, - anon_sym_constraint, - ACTIONS(6376), 1, - anon_sym_EQ, - STATE(4879), 1, - sym_type_constraint, - STATE(4957), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5142), 1, - aux_sym_expression_item_repeat1, - STATE(5235), 1, - sym__type_equation, - STATE(5504), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5908), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [225487] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4958), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4893), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225552] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6014), 1, - anon_sym_let, - STATE(4959), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5173), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6016), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6012), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [225599] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4960), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6323), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225664] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4961), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6567), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225729] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4962), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4663), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225794] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4963), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4983), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225859] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4964), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6447), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [225924] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6378), 1, - anon_sym_LPAREN, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6384), 1, - anon_sym_end, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(4965), 1, - sym_attribute, - STATE(5154), 1, - sym__attribute, - STATE(5365), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [225993] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6398), 1, - anon_sym_LPAREN, - ACTIONS(6400), 1, - anon_sym_end, - STATE(4966), 1, - sym_attribute, - STATE(5175), 1, - sym__attribute, - STATE(5339), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226062] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6402), 1, - anon_sym_LPAREN, - ACTIONS(6404), 1, - anon_sym_end, - STATE(4967), 1, - sym_attribute, - STATE(5143), 1, - sym__attribute, - STATE(5491), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226131] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4968), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6712), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226196] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4969), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5140), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226261] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6316), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4970), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5184), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [226312] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4971), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5141), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226377] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4972), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5052), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226442] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4973), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5126), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226507] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4974), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5129), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226572] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6406), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4975), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - ACTIONS(6263), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6261), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [226615] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6409), 1, - anon_sym_LPAREN, - ACTIONS(6411), 1, - anon_sym_end, - STATE(4976), 1, - sym_attribute, - STATE(5213), 1, - sym__attribute, - STATE(5316), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [226684] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6415), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6413), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [226723] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4978), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(4702), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226788] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6419), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4979), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5035), 1, - aux_sym_type_binding_repeat1, - STATE(5157), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6417), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [226839] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(5541), 1, - anon_sym_LPAREN, - ACTIONS(5970), 1, - sym__identifier, - STATE(4980), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(5136), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [226904] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5468), 9, - anon_sym_rec, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_exception, - anon_sym_lazy, - anon_sym_begin, - sym__identifier, - ACTIONS(5470), 15, - anon_sym_TILDE, - anon_sym_QMARK, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PIPE, - anon_sym_POUND, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym__capitalized_identifier, - aux_sym_tag_token1, - [226943] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6423), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6421), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [226982] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(4983), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 7, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6175), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [227031] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6427), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4984), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5160), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6425), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227082] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6340), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4985), 1, - sym_attribute, - STATE(4993), 1, - sym_item_attribute, - STATE(5161), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227133] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(4986), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4530), 2, - sym__simple_type, - sym__extension, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227198] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(4987), 1, - sym_attribute, - STATE(5773), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5450), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(6106), 6, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6110), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [227249] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5549), 1, - anon_sym_LPAREN, - ACTIONS(5553), 1, - anon_sym_LBRACK, - ACTIONS(5555), 1, - anon_sym_LBRACK_GT, - ACTIONS(5557), 1, - anon_sym_LBRACK_LT, - ACTIONS(5559), 1, - anon_sym_LT, - ACTIONS(5561), 1, - anon_sym_POUND, - ACTIONS(5563), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5565), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5567), 1, - aux_sym_type_variable_token1, - ACTIONS(6429), 1, - sym__identifier, - STATE(4988), 1, - sym_attribute, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5893), 2, - sym__simple_type, - sym__extension, - STATE(6053), 2, - sym_extension, - sym_quoted_extension, - STATE(6014), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227314] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6431), 1, - anon_sym_LPAREN, - ACTIONS(6433), 1, - anon_sym_end, - STATE(4989), 1, - sym_attribute, - STATE(5146), 1, - sym__attribute, - STATE(5353), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227383] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4990), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5513), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227448] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4991), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5603), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227513] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4992), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5599), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227578] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(4993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6437), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6435), 22, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227617] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6441), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(4994), 1, - sym_attribute, - STATE(5169), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6443), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(6439), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [227664] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(4995), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5594), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227729] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4990), 1, - anon_sym_LBRACK_GT, - ACTIONS(4992), 1, - anon_sym_LBRACK_LT, - ACTIONS(4994), 1, - anon_sym_LT, - ACTIONS(4996), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5000), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5004), 1, - aux_sym_type_variable_token1, - ACTIONS(5533), 1, - anon_sym_LPAREN, - ACTIONS(5537), 1, - anon_sym_LBRACK, - ACTIONS(6429), 1, - sym__identifier, - STATE(4996), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4650), 2, - sym_extension, - sym_quoted_extension, - STATE(6025), 2, - sym__simple_type, - sym__extension, - STATE(4664), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227794] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4997), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6587), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227859] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6445), 1, - anon_sym_LPAREN, - ACTIONS(6447), 1, - anon_sym_end, - STATE(4998), 1, - sym_attribute, - STATE(5156), 1, - sym__attribute, - STATE(5386), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [227928] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(4999), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6555), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [227993] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6449), 1, - anon_sym_LPAREN, - ACTIONS(6451), 1, - anon_sym_end, - STATE(5000), 1, - sym_attribute, - STATE(5182), 1, - sym__attribute, - STATE(5424), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228062] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3900), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(3902), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(5001), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4663), 2, - sym__simple_type, - sym__extension, - STATE(5092), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [228127] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(5002), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6580), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [228192] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6453), 1, - anon_sym_LPAREN, - ACTIONS(6455), 1, - anon_sym_end, - STATE(5003), 1, - sym_attribute, - STATE(5231), 1, - sym__attribute, - STATE(5502), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228261] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6457), 1, - anon_sym_LPAREN, - ACTIONS(6459), 1, - anon_sym_end, - STATE(5004), 1, - sym_attribute, - STATE(5259), 1, - sym__attribute, - STATE(5416), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228330] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6461), 1, - anon_sym_LPAREN, - ACTIONS(6463), 1, - anon_sym_end, - STATE(5005), 1, - sym_attribute, - STATE(5279), 1, - sym__attribute, - STATE(5328), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228399] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(5006), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6596), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [228464] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6465), 1, - anon_sym_LPAREN, - ACTIONS(6467), 1, - anon_sym_end, - STATE(5007), 1, - sym_attribute, - STATE(5254), 1, - sym__attribute, - STATE(5423), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228533] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6469), 1, - anon_sym_LPAREN, - ACTIONS(6471), 1, - anon_sym_end, - STATE(5008), 1, - sym_attribute, - STATE(5196), 1, - sym__attribute, - STATE(5459), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228602] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6473), 1, - anon_sym_LPAREN, - ACTIONS(6475), 1, - anon_sym_end, - STATE(5009), 1, - sym_attribute, - STATE(5194), 1, - sym__attribute, - STATE(5320), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228671] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6477), 1, - anon_sym_LPAREN, - ACTIONS(6479), 1, - anon_sym_end, - STATE(5010), 1, - sym_attribute, - STATE(5280), 1, - sym__attribute, - STATE(5305), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228740] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6481), 1, - anon_sym_LPAREN, - ACTIONS(6483), 1, - anon_sym_end, - STATE(5011), 1, - sym_attribute, - STATE(5190), 1, - sym__attribute, - STATE(5450), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [228809] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6487), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5012), 1, - sym_attribute, - STATE(5245), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6485), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [228860] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3824), 1, - anon_sym_LPAREN, - ACTIONS(3830), 1, - anon_sym_LBRACK, - ACTIONS(3844), 1, - anon_sym_LBRACK_GT, - ACTIONS(3846), 1, - anon_sym_LBRACK_LT, - ACTIONS(3848), 1, - anon_sym_LT, - ACTIONS(3850), 1, - anon_sym_POUND, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(5966), 1, - sym__identifier, - STATE(5013), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5785), 2, - sym__simple_type, - sym__extension, - STATE(5712), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [228925] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5014), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5055), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [228990] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(6229), 1, - anon_sym_of, - ACTIONS(6231), 1, - anon_sym_COLON2, - STATE(5015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6225), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6223), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229035] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6493), 1, - anon_sym_EQ, - ACTIONS(6495), 1, - anon_sym_of, - ACTIONS(6497), 1, - anon_sym_COLON2, - STATE(5016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6491), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6489), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229080] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6499), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6207), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(5017), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(6205), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229121] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5018), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4865), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229186] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5019), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4896), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229251] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6506), 1, - anon_sym_EQ, - ACTIONS(6508), 1, - anon_sym_of, - ACTIONS(6510), 1, - anon_sym_COLON2, - STATE(5020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6504), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6502), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229296] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5021), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4890), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229361] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5022), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5137), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229426] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5023), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4892), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229491] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5024), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4886), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229556] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(4960), 1, - anon_sym_LBRACK_GT, - ACTIONS(4962), 1, - anon_sym_LBRACK_LT, - ACTIONS(4964), 1, - anon_sym_LT, - ACTIONS(4966), 1, - anon_sym_POUND, - ACTIONS(4968), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(4970), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - ACTIONS(5569), 1, - anon_sym_LPAREN, - ACTIONS(5573), 1, - anon_sym_LBRACK, - ACTIONS(5996), 1, - sym__identifier, - STATE(5025), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4621), 2, - sym_extension, - sym_quoted_extension, - STATE(4921), 2, - sym__simple_type, - sym__extension, - STATE(4620), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229621] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6514), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5026), 1, - sym_attribute, - STATE(5170), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6512), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229672] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(5027), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5329), 2, - sym__simple_type, - sym__extension, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229737] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6520), 1, - anon_sym_and, - STATE(5017), 1, - aux_sym_module_type_constraint_repeat1, - STATE(5028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6518), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6516), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229780] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5029), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5064), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229845] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5030), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5058), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [229910] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6524), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5026), 1, - aux_sym_type_binding_repeat1, - STATE(5031), 1, - sym_attribute, - STATE(5282), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6522), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [229961] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6528), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5032), 1, - sym_attribute, - STATE(5286), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6526), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230012] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6532), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5033), 1, - sym_attribute, - STATE(5287), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6530), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230063] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6536), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5012), 1, - aux_sym_type_binding_repeat1, - STATE(5034), 1, - sym_attribute, - STATE(5202), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6534), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230114] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6540), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5035), 1, - sym_attribute, - STATE(5203), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6538), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230165] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6544), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5036), 1, - sym_attribute, - STATE(5046), 1, - aux_sym_type_binding_repeat1, - STATE(5208), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6542), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230216] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6548), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5037), 1, - sym_attribute, - STATE(5209), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6546), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230267] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6520), 1, - anon_sym_and, - STATE(5028), 1, - aux_sym_module_type_constraint_repeat1, - STATE(5038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6552), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6550), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230310] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5039), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5042), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [230375] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(5040), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5593), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [230440] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5041), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5094), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [230505] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5042), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 8, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6175), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [230554] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5274), 1, - anon_sym_LPAREN, - ACTIONS(5276), 1, - anon_sym_LBRACK, - ACTIONS(5278), 1, - anon_sym_LBRACK_GT, - ACTIONS(5280), 1, - anon_sym_LBRACK_LT, - ACTIONS(5282), 1, - anon_sym_LT, - ACTIONS(5284), 1, - anon_sym_POUND, - ACTIONS(5286), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5288), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5290), 1, - aux_sym_type_variable_token1, - ACTIONS(5972), 1, - sym__identifier, - STATE(5043), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5477), 2, - sym_extension, - sym_quoted_extension, - STATE(5569), 2, - sym__simple_type, - sym__extension, - STATE(4800), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [230619] = 18, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(5948), 1, - anon_sym_LPAREN, - ACTIONS(5950), 1, - anon_sym_LBRACK, - ACTIONS(5952), 1, - anon_sym_LBRACK_GT, - ACTIONS(5954), 1, - anon_sym_LBRACK_LT, - ACTIONS(5956), 1, - anon_sym_LT, - ACTIONS(5958), 1, - anon_sym_POUND, - ACTIONS(5960), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(5962), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5964), 1, - aux_sym_type_variable_token1, - STATE(5044), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5073), 2, - sym__simple_type, - sym__extension, - STATE(5139), 2, - sym_extension, - sym_quoted_extension, - STATE(5124), 8, - sym_constructed_type, - sym_polymorphic_variant_type, - sym_package_type, - sym_object_type, - sym_hash_type, - sym_parenthesized_type, - sym_type_constructor_path, - sym_type_variable, - [230684] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6554), 1, - anon_sym_LPAREN, - ACTIONS(6556), 1, - anon_sym_end, - STATE(5045), 1, - sym_attribute, - STATE(5255), 1, - sym__attribute, - STATE(5421), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [230753] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6560), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4907), 1, - aux_sym_type_binding_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5046), 1, - sym_attribute, - STATE(5260), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6558), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230804] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6564), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5032), 1, - aux_sym_type_binding_repeat1, - STATE(5047), 1, - sym_attribute, - STATE(5257), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6562), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230855] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5916), 1, - anon_sym_constraint, - ACTIONS(6568), 1, - anon_sym_let, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5033), 1, - aux_sym_type_binding_repeat1, - STATE(5048), 1, - sym_attribute, - STATE(5253), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6566), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [230906] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6570), 1, - anon_sym_LPAREN, - ACTIONS(6572), 1, - anon_sym_end, - STATE(5049), 1, - sym_attribute, - STATE(5216), 1, - sym__attribute, - STATE(5492), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [230975] = 20, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(6574), 1, - anon_sym_LPAREN, - ACTIONS(6576), 1, - anon_sym_end, - STATE(5050), 1, - sym_attribute, - STATE(5236), 1, - sym__attribute, - STATE(5501), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [231044] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5812), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5814), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231082] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5052), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6203), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [231130] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5777), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5779), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231168] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6580), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6578), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231206] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5055), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6274), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [231254] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5056), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6584), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6582), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [231298] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_with, - STATE(5057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6588), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6586), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231340] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5058), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5906), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [231388] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5059), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6596), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6594), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [231432] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5060), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5886), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5888), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [231486] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5773), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5775), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231524] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5759), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5761), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5866), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5868), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231600] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5064), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6203), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [231648] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5936), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5874), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231686] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5834), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5836), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231724] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5938), 1, - anon_sym_STAR, - STATE(5067), 1, - sym_attribute, - STATE(5084), 1, - aux_sym__constructor_argument_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6600), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6598), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231766] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5731), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5733), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231804] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6225), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(6602), 1, - anon_sym_of, - ACTIONS(6604), 1, - anon_sym_COLON2, - STATE(5069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5942), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(6223), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [231850] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_with, - STATE(5070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6608), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6606), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [231892] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5842), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5844), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231930] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5828), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5830), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [231968] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5073), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5872), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [232016] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6246), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(5074), 1, - sym_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6244), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232060] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5820), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5822), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232098] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6612), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6610), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232136] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6211), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(5077), 1, - sym_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232180] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4648), 1, - sym__identifier, - ACTIONS(6614), 1, - anon_sym_COLON2, - STATE(5078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5603), 6, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5605), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [232224] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5593), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5595), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5769), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5771), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232300] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5816), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5818), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232338] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5824), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5826), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232376] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6211), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(5074), 1, - aux_sym_type_binding_repeat1, - STATE(5083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232420] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6616), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6175), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(5084), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(6173), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232460] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6270), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(5077), 1, - aux_sym_type_binding_repeat1, - STATE(5085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6268), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232504] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5086), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5892), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [232558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5854), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5856), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [232596] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5056), 1, - aux_sym_expression_item_repeat1, - STATE(5088), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6621), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6619), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [232640] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5089), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6625), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6623), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [232684] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6239), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6627), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5090), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(6237), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232726] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6215), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - STATE(5091), 1, - sym_attribute, - STATE(5697), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - ACTIONS(6213), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [232772] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3403), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [232810] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_with, - STATE(5093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6638), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6636), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232852] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5094), 1, - sym_attribute, - STATE(5113), 1, - sym_type_constructor_path, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(5902), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [232900] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6642), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6640), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232938] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6646), 1, - anon_sym_let, - ACTIONS(6648), 1, - anon_sym_DQUOTE, - STATE(5096), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5426), 1, - aux_sym_expression_item_repeat1, - STATE(5473), 1, - aux_sym_external_repeat1, - STATE(5556), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6644), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [232988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3319), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [233026] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5098), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6652), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6650), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [233070] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5089), 1, - aux_sym_expression_item_repeat1, - STATE(5099), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6656), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6654), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [233114] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3355), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [233152] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5788), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5790), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233190] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4666), 5, - anon_sym_COLON2, - anon_sym_in, - anon_sym_as, - anon_sym_when, - sym__identifier, - ACTIONS(4664), 18, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [233228] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3475), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [233266] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5800), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5802), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233304] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3487), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [233342] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 10, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - sym__identifier, - ACTIONS(3537), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - [233380] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5838), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5840), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233418] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5108), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5896), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5898), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [233472] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3535), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233510] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5110), 1, - sym_attribute, - STATE(5122), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6660), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6658), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [233554] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5111), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5902), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [233608] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3551), 2, - anon_sym_let, - anon_sym_COLON2, - ACTIONS(3553), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [233646] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5747), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5749), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233684] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3317), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233722] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5781), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5783), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233760] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3353), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233798] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3473), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233836] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5603), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5605), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233874] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5862), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5864), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233912] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3485), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [233950] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5121), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5872), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234004] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5122), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6664), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6662), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [234048] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5123), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5906), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234102] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5846), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(5848), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [234140] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3529), 1, - anon_sym_DOT, - STATE(5125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3525), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3527), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234180] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5126), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6193), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6195), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234228] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5127), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6668), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6666), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [234272] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5098), 1, - aux_sym_expression_item_repeat1, - STATE(5128), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6672), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6670), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [234316] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5129), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6274), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234364] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6648), 1, - anon_sym_DQUOTE, - ACTIONS(6676), 1, - anon_sym_let, - STATE(5130), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5472), 1, - aux_sym_expression_item_repeat1, - STATE(5473), 1, - aux_sym_external_repeat1, - STATE(5556), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6674), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234414] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5131), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 7, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5384), 11, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [234462] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4666), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [234500] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5133), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5509), 11, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [234550] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5127), 1, - aux_sym_expression_item_repeat1, - STATE(5134), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6680), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(6678), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [234594] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(4648), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [234632] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5136), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5902), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234680] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6189), 1, - sym__identifier, - ACTIONS(6191), 1, - anon_sym_POUND, - STATE(5113), 1, - sym_type_constructor_path, - STATE(5137), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6193), 7, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - ACTIONS(6195), 11, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - aux_sym_directive_token1, - [234728] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3393), 1, - anon_sym_DOT, - STATE(5138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3389), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3391), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234768] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 11, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym__capitalized_identifier, - ACTIONS(3401), 12, - anon_sym_let, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - sym__identifier, - aux_sym_directive_token1, - [234806] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5140), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5872), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234854] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5882), 1, - sym__identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5141), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 6, - anon_sym_SEMI_SEMI, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5906), 12, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [234902] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6340), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [234945] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6682), 1, - anon_sym_LPAREN, - ACTIONS(6684), 1, - anon_sym_end, - STATE(5143), 1, - sym_attribute, - STATE(5380), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [235008] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 5, - anon_sym_COLON2, - anon_sym_in, - anon_sym_as, - anon_sym_when, - sym__identifier, - ACTIONS(4646), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [235045] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6686), 1, - aux_sym_attribute_id_token1, - STATE(5145), 1, - sym_attribute, - STATE(5147), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4513), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(4515), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [235086] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6688), 1, - anon_sym_LPAREN, - ACTIONS(6690), 1, - anon_sym_end, - STATE(5146), 1, - sym_attribute, - STATE(5360), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [235149] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6686), 1, - aux_sym_attribute_id_token1, - STATE(5147), 1, - sym_attribute, - STATE(5150), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4519), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(4521), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [235190] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6692), 1, - anon_sym_COLON2, - STATE(5148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(4648), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [235229] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6696), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6694), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235272] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6698), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5150), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - ACTIONS(4506), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(4508), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [235311] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6703), 1, - anon_sym_let, - STATE(5151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6701), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235348] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6423), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(6421), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [235385] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6707), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5153), 1, - sym_attribute, - STATE(5288), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6705), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235428] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6709), 1, - anon_sym_LPAREN, - ACTIONS(6711), 1, - anon_sym_end, - STATE(5154), 1, - sym_attribute, - STATE(5376), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [235491] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6715), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6713), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235534] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6717), 1, - anon_sym_LPAREN, - ACTIONS(6719), 1, - anon_sym_end, - STATE(5156), 1, - sym_attribute, - STATE(5396), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [235597] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6540), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6538), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235640] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(5158), 1, - sym_attribute, - STATE(5204), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6723), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6721), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235681] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(5159), 1, - sym_attribute, - STATE(5207), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6723), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6721), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235722] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6729), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6727), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235765] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6548), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6546), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235808] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6733), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5162), 1, - sym_attribute, - STATE(5211), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6731), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235851] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6737), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5163), 1, - sym_attribute, - STATE(5212), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6735), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235894] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6741), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6739), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235937] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5892), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5890), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [235974] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_with, - ACTIONS(6745), 1, - anon_sym_let, - STATE(5166), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5490), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6743), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236021] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6749), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6747), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236064] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3445), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3447), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236101] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6753), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6751), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236144] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6757), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6755), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236187] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6761), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5171), 1, - sym_attribute, - STATE(5222), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6759), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236230] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6765), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5172), 1, - sym_attribute, - STATE(5226), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6763), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236273] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6441), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6439), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236316] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3457), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3459), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236353] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6767), 1, - anon_sym_LPAREN, - ACTIONS(6769), 1, - anon_sym_end, - STATE(5175), 1, - sym_attribute, - STATE(5323), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [236416] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6773), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6771), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236459] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(5159), 1, - aux_sym_variant_declaration_repeat1, - STATE(5177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6215), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6213), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236500] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6777), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6775), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236543] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6781), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6779), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236586] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6785), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5178), 1, - aux_sym_expression_item_repeat1, - STATE(5180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6783), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236629] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(6332), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6787), 1, - anon_sym_DASH_GT, - STATE(5181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6330), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [236670] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6789), 1, - anon_sym_LPAREN, - ACTIONS(6791), 1, - anon_sym_end, - STATE(5182), 1, - sym_attribute, - STATE(5429), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [236733] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6795), 1, - anon_sym_let, - STATE(5183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6793), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236770] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6427), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6425), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236813] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6799), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6797), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236856] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6803), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5186), 1, - sym_attribute, - STATE(5237), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6801), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236899] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6807), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6805), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236942] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6811), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6809), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [236985] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6815), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6813), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237028] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6817), 1, - anon_sym_LPAREN, - ACTIONS(6819), 1, - anon_sym_end, - STATE(5190), 1, - sym_attribute, - STATE(5460), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [237091] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6415), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(6413), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [237128] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6823), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6821), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237171] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6827), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6825), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237214] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6829), 1, - anon_sym_LPAREN, - ACTIONS(6831), 1, - anon_sym_end, - STATE(5194), 1, - sym_attribute, - STATE(5313), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [237277] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6835), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6833), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237320] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6837), 1, - anon_sym_LPAREN, - ACTIONS(6839), 1, - anon_sym_end, - STATE(5196), 1, - sym_attribute, - STATE(5427), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [237383] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6284), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6787), 1, - anon_sym_DASH_GT, - STATE(5197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 20, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237422] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6843), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6841), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237465] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6847), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5164), 1, - aux_sym_expression_item_repeat1, - STATE(5199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6845), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237508] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5158), 2, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5156), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [237545] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6851), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6849), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237588] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6487), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6485), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237631] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6855), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6853), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237674] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6725), 1, - anon_sym_PIPE, - STATE(5204), 1, - sym_attribute, - STATE(5207), 1, - aux_sym_variant_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6859), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6857), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237715] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6863), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6861), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237758] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6867), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6865), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237795] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6869), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6867), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(5207), 2, - sym_attribute, - aux_sym_variant_declaration_repeat1, - ACTIONS(6865), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237834] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6560), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6558), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237877] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6874), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6872), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237920] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6878), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5210), 1, - sym_attribute, - STATE(5261), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6876), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [237963] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6882), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6880), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238006] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6886), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6884), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238049] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6888), 1, - anon_sym_LPAREN, - ACTIONS(6890), 1, - anon_sym_end, - STATE(5213), 1, - sym_attribute, - STATE(5331), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [238112] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - ACTIONS(6592), 1, - anon_sym_with, - ACTIONS(6894), 1, - anon_sym_let, - STATE(5214), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5406), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6892), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238159] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6898), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5215), 1, - sym_attribute, - STATE(5267), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6896), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238202] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6900), 1, - anon_sym_LPAREN, - ACTIONS(6902), 1, - anon_sym_end, - STATE(5216), 1, - sym_attribute, - STATE(5451), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [238265] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6906), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6904), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238302] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6910), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6908), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238339] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5162), 2, - anon_sym_COLON2, - anon_sym_LBRACK_AT_AT, - ACTIONS(5160), 20, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_COLON_COLON, - anon_sym_when, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238376] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6914), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6912), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238419] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6918), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5221), 1, - sym_attribute, - STATE(5265), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6916), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238462] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6922), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6920), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238505] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6302), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(6787), 1, - anon_sym_DASH_GT, - STATE(5223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6300), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238546] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2978), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2976), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238589] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - ACTIONS(6924), 1, - anon_sym_EQ, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5184), 1, - aux_sym_expression_item_repeat1, - STATE(5225), 1, - sym_attribute, - STATE(5508), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [238638] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6928), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6926), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238681] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6932), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5227), 1, - sym_attribute, - STATE(5271), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6930), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238724] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6936), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6934), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238767] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6940), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6938), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6944), 1, - anon_sym_let, - STATE(5230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6942), 21, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238847] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6946), 1, - anon_sym_LPAREN, - ACTIONS(6948), 1, - anon_sym_end, - STATE(5231), 1, - sym_attribute, - STATE(5488), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [238910] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6110), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6106), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238947] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6952), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6950), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [238984] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6956), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6954), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239021] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - ACTIONS(6958), 1, - anon_sym_EQ, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5161), 1, - aux_sym_expression_item_repeat1, - STATE(5235), 1, - sym_attribute, - STATE(5467), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [239070] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6960), 1, - anon_sym_LPAREN, - ACTIONS(6962), 1, - anon_sym_end, - STATE(5236), 1, - sym_attribute, - STATE(5399), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [239133] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6966), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6964), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239176] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6970), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5238), 1, - sym_attribute, - STATE(5275), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6968), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239219] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2960), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2958), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5898), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5896), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239299] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6974), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5189), 1, - aux_sym_expression_item_repeat1, - STATE(5241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6972), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239342] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6978), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5201), 1, - aux_sym_expression_item_repeat1, - STATE(5242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6976), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239385] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4666), 1, - sym__identifier, - STATE(5243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 4, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__capitalized_identifier, - ACTIONS(5593), 6, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5595), 11, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [239426] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6982), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6980), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239469] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6986), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6984), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239512] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6990), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5179), 1, - aux_sym_expression_item_repeat1, - STATE(5246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6988), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239555] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6994), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6992), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239598] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6998), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5176), 1, - aux_sym_expression_item_repeat1, - STATE(5248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6996), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239641] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7002), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5149), 1, - aux_sym_expression_item_repeat1, - STATE(5249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7000), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239684] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7006), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7004), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239727] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2966), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2964), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239770] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7010), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(7008), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239807] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6532), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6530), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [239850] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7012), 1, - anon_sym_LPAREN, - ACTIONS(7014), 1, - anon_sym_end, - STATE(5254), 1, - sym_attribute, - STATE(5325), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [239913] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7016), 1, - anon_sym_LPAREN, - ACTIONS(7018), 1, - anon_sym_end, - STATE(5255), 1, - sym_attribute, - STATE(5409), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [239976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5888), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5886), 20, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240013] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6528), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6526), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240056] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7022), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5155), 1, - aux_sym_expression_item_repeat1, - STATE(5258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7020), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240099] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7024), 1, - anon_sym_LPAREN, - ACTIONS(7026), 1, - anon_sym_end, - STATE(5259), 1, - sym_attribute, - STATE(5397), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [240162] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7030), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7028), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240205] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7034), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7032), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240248] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7038), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5192), 1, - aux_sym_expression_item_repeat1, - STATE(5262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7036), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240291] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7042), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7040), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240334] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7046), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7044), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240377] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7050), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7048), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240420] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7054), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5250), 1, - aux_sym_expression_item_repeat1, - STATE(5266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7052), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240463] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7058), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7056), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240506] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7062), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5263), 1, - aux_sym_expression_item_repeat1, - STATE(5268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7060), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240549] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7066), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7064), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240592] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2990), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2988), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240635] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7070), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7068), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240678] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7074), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5229), 1, - aux_sym_expression_item_repeat1, - STATE(5272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7072), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240721] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2900), 1, - anon_sym_let, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2898), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240764] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7078), 1, - anon_sym_let, - STATE(4993), 1, - sym_item_attribute, - STATE(5193), 1, - aux_sym_expression_item_repeat1, - STATE(5274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7076), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240807] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7082), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7080), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240850] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6014), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6012), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240893] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7086), 1, - anon_sym_let, - STATE(5277), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5300), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7088), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(7084), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240938] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6316), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [240981] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7090), 1, - anon_sym_LPAREN, - ACTIONS(7092), 1, - anon_sym_end, - STATE(5279), 1, - sym_attribute, - STATE(5317), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241044] = 18, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7094), 1, - anon_sym_LPAREN, - ACTIONS(7096), 1, - anon_sym_end, - STATE(5280), 1, - sym_attribute, - STATE(5307), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241107] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - ACTIONS(7098), 1, - anon_sym_STAR, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5281), 1, - sym_attribute, - STATE(5829), 1, - aux_sym__constructor_argument_repeat1, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5874), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5936), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [241158] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6514), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6512), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241201] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7102), 1, - anon_sym_let, - STATE(5283), 1, - sym_attribute, - STATE(5285), 1, - sym_item_attribute, - STATE(5401), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7104), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(7100), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241246] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(6348), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6787), 1, - anon_sym_DASH_GT, - STATE(5284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6346), 19, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [241287] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6437), 4, - anon_sym_let, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - ACTIONS(6435), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [241324] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7108), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7106), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241367] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7112), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7110), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241410] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7116), 1, - anon_sym_let, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(5288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7114), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241453] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5289), 1, - sym_attribute, - STATE(5683), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7337), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [241513] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7130), 1, - anon_sym_end, - STATE(5290), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241573] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7132), 1, - anon_sym_end, - STATE(5291), 1, - sym_attribute, - STATE(5301), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241633] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7132), 1, - anon_sym_end, - STATE(5292), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241693] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5621), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5619), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [241735] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7134), 1, - anon_sym_end, - STATE(5294), 1, - sym_attribute, - STATE(5358), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241795] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7136), 1, - anon_sym_end, - STATE(5295), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241855] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7138), 1, - anon_sym_end, - STATE(5295), 1, - aux_sym_object_expression_repeat1, - STATE(5296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241915] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7140), 1, - anon_sym_end, - STATE(5292), 1, - aux_sym_object_expression_repeat1, - STATE(5297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [241975] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7140), 1, - anon_sym_end, - STATE(5298), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242035] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7138), 1, - anon_sym_end, - STATE(5299), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242095] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7144), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7142), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242137] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7146), 1, - anon_sym_end, - STATE(5301), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242197] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5605), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5603), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242233] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7150), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7148), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242275] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7152), 1, - anon_sym_end, - STATE(5304), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242335] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7096), 1, - anon_sym_end, - STATE(5305), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242395] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7154), 1, - anon_sym_end, - STATE(5299), 1, - aux_sym_object_expression_repeat1, - STATE(5306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242455] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7156), 1, - anon_sym_end, - STATE(5307), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242515] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7158), 1, - anon_sym_end, - STATE(5308), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242575] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6506), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_of, - ACTIONS(7162), 1, - anon_sym_COLON2, - STATE(5309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6504), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6502), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242617] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7166), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5310), 1, - sym_attribute, - STATE(5417), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7164), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242659] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7168), 1, - anon_sym_end, - STATE(5298), 1, - aux_sym_object_expression_repeat1, - STATE(5311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242719] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7166), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7164), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [242761] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7170), 1, - anon_sym_end, - STATE(5313), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242821] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7172), 1, - anon_sym_end, - STATE(5314), 1, - sym_attribute, - STATE(5315), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242881] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7174), 1, - anon_sym_end, - STATE(5315), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [242941] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6890), 1, - anon_sym_end, - STATE(5316), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243001] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7176), 1, - anon_sym_end, - STATE(5317), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243061] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7178), 1, - anon_sym_end, - STATE(5318), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243121] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7174), 1, - anon_sym_end, - STATE(5319), 1, - sym_attribute, - STATE(5322), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243181] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6831), 1, - anon_sym_end, - STATE(5320), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243241] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7180), 1, - anon_sym_end, - STATE(5308), 1, - aux_sym_object_expression_repeat1, - STATE(5321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243301] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7182), 1, - anon_sym_end, - STATE(5322), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243361] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7184), 1, - anon_sym_end, - STATE(5323), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243421] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7182), 1, - anon_sym_end, - STATE(5324), 1, - sym_attribute, - STATE(5326), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243481] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7186), 1, - anon_sym_end, - STATE(5325), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243541] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7188), 1, - anon_sym_end, - STATE(5326), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243601] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7190), 1, - anon_sym_end, - STATE(5327), 1, - sym_attribute, - STATE(5392), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243661] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7092), 1, - anon_sym_end, - STATE(5328), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243721] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5329), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 6, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6175), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [243767] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7180), 1, - anon_sym_end, - STATE(5330), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243827] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7192), 1, - anon_sym_end, - STATE(5331), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243887] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6518), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7194), 1, - anon_sym_and, - STATE(5332), 1, - sym_attribute, - STATE(5336), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6516), 18, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [243927] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7196), 1, - anon_sym_end, - STATE(5333), 1, - sym_attribute, - STATE(5432), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [243987] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5334), 1, - sym_attribute, - STATE(5634), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7626), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [244047] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5595), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(5593), 19, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [244083] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6207), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7198), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5336), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(6205), 18, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [244121] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7201), 1, - anon_sym_end, - STATE(5337), 1, - sym_attribute, - STATE(5342), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244181] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7203), 1, - anon_sym_end, - STATE(5338), 1, - sym_attribute, - STATE(5398), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244241] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6769), 1, - anon_sym_end, - STATE(5339), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244301] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5340), 1, - sym_attribute, - STATE(5633), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7347), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [244361] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7136), 1, - anon_sym_end, - STATE(5304), 1, - aux_sym_object_expression_repeat1, - STATE(5341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244421] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7205), 1, - anon_sym_end, - STATE(5342), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244481] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7205), 1, - anon_sym_end, - STATE(5343), 1, - sym_attribute, - STATE(5345), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244541] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7207), 1, - anon_sym_end, - STATE(5344), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244601] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7209), 1, - anon_sym_end, - STATE(5345), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244661] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7211), 1, - anon_sym_end, - STATE(5344), 1, - aux_sym_object_expression_repeat1, - STATE(5346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244721] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7211), 1, - anon_sym_end, - STATE(5347), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244781] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7209), 1, - anon_sym_end, - STATE(5348), 1, - sym_attribute, - STATE(5349), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244841] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7213), 1, - anon_sym_end, - STATE(5349), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244901] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7215), 1, - anon_sym_end, - STATE(5347), 1, - aux_sym_object_expression_repeat1, - STATE(5350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [244961] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7215), 1, - anon_sym_end, - STATE(5351), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245021] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5352), 1, - sym_attribute, - STATE(5620), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7505), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [245081] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6690), 1, - anon_sym_end, - STATE(5353), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245141] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7217), 1, - anon_sym_end, - STATE(5354), 1, - sym_attribute, - STATE(5402), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245201] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7221), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7219), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [245243] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7221), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5303), 1, - aux_sym_expression_item_repeat1, - STATE(5356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7219), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [245285] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7217), 1, - anon_sym_end, - STATE(5357), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245345] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7223), 1, - anon_sym_end, - STATE(5358), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245405] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4506), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(4508), 13, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - aux_sym_attribute_id_token1, - [245441] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7225), 1, - anon_sym_end, - STATE(5360), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245501] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7229), 1, - anon_sym_BANG, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5361), 1, - sym_attribute, - STATE(5719), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4443), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [245561] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7237), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7235), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [245603] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7237), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5363), 1, - sym_attribute, - STATE(5449), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7235), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [245645] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7239), 1, - anon_sym_end, - STATE(5364), 1, - sym_attribute, - STATE(5370), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245705] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6711), 1, - anon_sym_end, - STATE(5365), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245765] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5366), 1, - sym_attribute, - STATE(5635), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7749), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [245825] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5687), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5685), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [245867] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6504), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6506), 1, - anon_sym_EQ, - ACTIONS(7241), 1, - anon_sym_of, - ACTIONS(7243), 1, - anon_sym_COLON2, - STATE(5368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6502), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [245909] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7245), 1, - anon_sym_end, - STATE(5357), 1, - aux_sym_object_expression_repeat1, - STATE(5369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [245969] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7247), 1, - anon_sym_end, - STATE(5370), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246029] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7245), 1, - anon_sym_end, - STATE(5371), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246089] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7247), 1, - anon_sym_end, - STATE(5372), 1, - sym_attribute, - STATE(5377), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246149] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6491), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6493), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_of, - ACTIONS(7251), 1, - anon_sym_COLON2, - STATE(5373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [246191] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7223), 1, - anon_sym_end, - STATE(5374), 1, - sym_attribute, - STATE(5383), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246251] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7253), 1, - anon_sym_end, - STATE(5351), 1, - aux_sym_object_expression_repeat1, - STATE(5375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246311] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7255), 1, - anon_sym_end, - STATE(5376), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246371] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7257), 1, - anon_sym_end, - STATE(5377), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246431] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7257), 1, - anon_sym_end, - STATE(5378), 1, - sym_attribute, - STATE(5379), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246491] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7259), 1, - anon_sym_end, - STATE(5379), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246551] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7261), 1, - anon_sym_end, - STATE(5380), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246611] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6225), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(6602), 1, - anon_sym_of, - ACTIONS(6604), 1, - anon_sym_COLON2, - STATE(5381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6223), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [246653] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7263), 1, - anon_sym_end, - STATE(5382), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246713] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7265), 1, - anon_sym_end, - STATE(5383), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246773] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7267), 1, - anon_sym_end, - STATE(5384), 1, - sym_attribute, - STATE(5388), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246833] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7269), 1, - anon_sym_end, - STATE(5382), 1, - aux_sym_object_expression_repeat1, - STATE(5385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246893] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6719), 1, - anon_sym_end, - STATE(5386), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [246953] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7265), 1, - anon_sym_end, - STATE(5387), 1, - sym_attribute, - STATE(5400), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247013] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7271), 1, - anon_sym_end, - STATE(5388), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247073] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7271), 1, - anon_sym_end, - STATE(5389), 1, - sym_attribute, - STATE(5390), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247133] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7273), 1, - anon_sym_end, - STATE(5390), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247193] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7273), 1, - anon_sym_end, - STATE(5391), 1, - sym_attribute, - STATE(5419), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247253] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7275), 1, - anon_sym_end, - STATE(5392), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247313] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7275), 1, - anon_sym_end, - STATE(5393), 1, - sym_attribute, - STATE(5431), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247373] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7269), 1, - anon_sym_end, - STATE(5394), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247433] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7277), 1, - anon_sym_end, - STATE(5330), 1, - aux_sym_object_expression_repeat1, - STATE(5395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247493] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7279), 1, - anon_sym_end, - STATE(5396), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247553] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7281), 1, - anon_sym_end, - STATE(5397), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247613] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7277), 1, - anon_sym_end, - STATE(5398), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247673] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7283), 1, - anon_sym_end, - STATE(5399), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247733] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7285), 1, - anon_sym_end, - STATE(5400), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247793] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7289), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7287), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [247835] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7291), 1, - anon_sym_end, - STATE(5402), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247895] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7293), 1, - anon_sym_end, - STATE(5394), 1, - aux_sym_object_expression_repeat1, - STATE(5403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [247955] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7293), 1, - anon_sym_end, - STATE(5404), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248015] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7295), 1, - anon_sym_end, - STATE(5371), 1, - aux_sym_object_expression_repeat1, - STATE(5405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248075] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7299), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7297), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [248117] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7301), 1, - anon_sym_end, - STATE(5407), 1, - sym_attribute, - STATE(5411), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248177] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7305), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7303), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [248219] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7307), 1, - anon_sym_end, - STATE(5409), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248279] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5410), 1, - sym_attribute, - STATE(5648), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5647), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [248339] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7313), 1, - anon_sym_end, - STATE(5411), 1, - sym_attribute, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248399] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7313), 1, - anon_sym_end, - STATE(5412), 1, - sym_attribute, - STATE(5414), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248459] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7315), 1, - anon_sym_constraint, - ACTIONS(7318), 1, - anon_sym_val, - ACTIONS(7321), 1, - anon_sym_end, - ACTIONS(7323), 1, - anon_sym_inherit, - ACTIONS(7326), 1, - anon_sym_method, - ACTIONS(7329), 1, - anon_sym_initializer, - ACTIONS(7332), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(7335), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(7338), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5413), 2, - sym_attribute, - aux_sym_object_expression_repeat1, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248517] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7341), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248577] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7341), 1, - anon_sym_end, - STATE(5415), 1, - sym_attribute, - STATE(5418), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248637] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7026), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248697] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7345), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7343), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [248739] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7347), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248799] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7349), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248859] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6982), 1, - anon_sym_let, - ACTIONS(7351), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5198), 1, - aux_sym_expression_item_repeat1, - STATE(5420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6980), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [248903] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7018), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [248963] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5422), 1, - sym_attribute, - STATE(5680), 1, - sym__attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7634), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [249023] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7014), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249083] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6791), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249143] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7353), 1, - anon_sym_end, - STATE(5404), 1, - aux_sym_object_expression_repeat1, - STATE(5425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249203] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7357), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7355), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [249245] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7359), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249305] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2960), 1, - anon_sym_let, - ACTIONS(2962), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5244), 1, - aux_sym_expression_item_repeat1, - STATE(5428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2958), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [249349] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7361), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249409] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6994), 1, - anon_sym_let, - ACTIONS(7363), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5205), 1, - aux_sym_expression_item_repeat1, - STATE(5430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6992), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [249453] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7365), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249513] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7367), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249573] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7367), 1, - anon_sym_end, - STATE(5433), 1, - sym_attribute, - STATE(5498), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249633] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5170), 1, - aux_sym_expression_item_repeat1, - STATE(5434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6512), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [249679] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2990), 1, - anon_sym_let, - ACTIONS(2992), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5247), 1, - aux_sym_expression_item_repeat1, - STATE(5435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2988), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [249723] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7369), 1, - anon_sym_end, - STATE(5436), 1, - sym_attribute, - STATE(5437), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249783] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7371), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249843] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7066), 1, - anon_sym_let, - ACTIONS(7373), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5185), 1, - aux_sym_expression_item_repeat1, - STATE(5438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7064), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [249887] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7371), 1, - anon_sym_end, - STATE(5439), 1, - sym_attribute, - STATE(5440), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [249947] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7375), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250007] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7365), 1, - anon_sym_end, - STATE(5441), 1, - sym_attribute, - STATE(5458), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250067] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7375), 1, - anon_sym_end, - STATE(5442), 1, - sym_attribute, - STATE(5448), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250127] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5282), 1, - aux_sym_expression_item_repeat1, - STATE(5434), 1, - aux_sym_type_binding_repeat1, - STATE(5443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6522), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250173] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5286), 1, - aux_sym_expression_item_repeat1, - STATE(5444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6526), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250219] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5287), 1, - aux_sym_expression_item_repeat1, - STATE(5445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6530), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250265] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2978), 1, - anon_sym_let, - ACTIONS(2980), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5269), 1, - aux_sym_expression_item_repeat1, - STATE(5446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2976), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [250309] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6552), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7194), 1, - anon_sym_and, - STATE(5332), 1, - aux_sym_module_type_constraint_repeat1, - STATE(5447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6550), 18, - anon_sym_SEMI_SEMI, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_with, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250349] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7377), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250409] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7381), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7379), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [250451] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6819), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250511] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7383), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250571] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7387), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5452), 1, - sym_attribute, - STATE(5464), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7385), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [250613] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7391), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5312), 1, - aux_sym_expression_item_repeat1, - STATE(5453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7389), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [250655] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5260), 1, - aux_sym_expression_item_repeat1, - STATE(5454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6558), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250701] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5257), 1, - aux_sym_expression_item_repeat1, - STATE(5444), 1, - aux_sym_type_binding_repeat1, - STATE(5455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6562), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250747] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7393), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250807] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5253), 1, - aux_sym_expression_item_repeat1, - STATE(5445), 1, - aux_sym_type_binding_repeat1, - STATE(5457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6566), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [250853] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7395), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250913] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6839), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [250973] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7397), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251033] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5245), 1, - aux_sym_expression_item_repeat1, - STATE(5461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6485), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251079] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6811), 1, - anon_sym_let, - ACTIONS(7399), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5228), 1, - aux_sym_expression_item_repeat1, - STATE(5462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6809), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [251123] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6493), 1, - anon_sym_EQ, - ACTIONS(7401), 1, - anon_sym_of, - ACTIONS(7403), 1, - anon_sym_COLON2, - STATE(5463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6491), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6489), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [251165] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7391), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7389), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [251207] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7405), 1, - anon_sym_end, - STATE(5456), 1, - aux_sym_object_expression_repeat1, - STATE(5465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251267] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7405), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251327] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5209), 1, - aux_sym_expression_item_repeat1, - STATE(5467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6546), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251373] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7407), 1, - anon_sym_end, - STATE(5318), 1, - aux_sym_object_expression_repeat1, - STATE(5468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251433] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7409), 1, - anon_sym_end, - STATE(5466), 1, - aux_sym_object_expression_repeat1, - STATE(5469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251493] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5208), 1, - aux_sym_expression_item_repeat1, - STATE(5454), 1, - aux_sym_type_binding_repeat1, - STATE(5470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6542), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [251539] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7409), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251599] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6646), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6644), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [251641] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7415), 1, - anon_sym_DQUOTE, - STATE(5556), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7413), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(5473), 2, - sym_attribute, - aux_sym_external_repeat1, - ACTIONS(7411), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [251681] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7418), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251741] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7420), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251801] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7422), 1, - anon_sym_end, - STATE(5471), 1, - aux_sym_object_expression_repeat1, - STATE(5476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251861] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3401), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [251897] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7424), 1, - anon_sym_end, - STATE(5478), 1, - sym_attribute, - STATE(5496), 1, - aux_sym_object_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [251957] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5203), 1, - aux_sym_expression_item_repeat1, - STATE(5479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6538), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252003] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3535), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [252039] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3485), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [252075] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3473), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [252111] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5202), 1, - aux_sym_expression_item_repeat1, - STATE(5461), 1, - aux_sym_type_binding_repeat1, - STATE(5483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6534), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [252157] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3353), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [252193] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7426), 1, - anon_sym_end, - STATE(5475), 1, - aux_sym_object_expression_repeat1, - STATE(5485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252253] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7420), 1, - anon_sym_end, - STATE(5474), 1, - aux_sym_object_expression_repeat1, - STATE(5486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252313] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 9, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym__capitalized_identifier, - ACTIONS(3317), 12, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - sym__identifier, - [252349] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7428), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252409] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7426), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252469] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7432), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7430), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [252511] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6684), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252571] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6902), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252631] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6835), 1, - anon_sym_let, - ACTIONS(7434), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5187), 1, - aux_sym_expression_item_repeat1, - STATE(5493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6833), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [252675] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7436), 1, - anon_sym_end, - STATE(5489), 1, - aux_sym_object_expression_repeat1, - STATE(5494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252735] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2966), 1, - anon_sym_let, - ACTIONS(2968), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5188), 1, - aux_sym_expression_item_repeat1, - STATE(5495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2964), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [252779] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7438), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252839] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7438), 1, - anon_sym_end, - STATE(5290), 1, - aux_sym_object_expression_repeat1, - STATE(5497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252899] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7407), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [252959] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5157), 1, - aux_sym_expression_item_repeat1, - STATE(5479), 1, - aux_sym_type_binding_repeat1, - STATE(5499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6417), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253005] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7442), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5355), 1, - aux_sym_expression_item_repeat1, - STATE(5500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7440), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [253047] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6962), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [253107] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6948), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [253167] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7446), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5362), 1, - aux_sym_expression_item_repeat1, - STATE(5503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7444), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [253209] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5161), 1, - aux_sym_expression_item_repeat1, - STATE(5504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6338), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253255] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7448), 1, - anon_sym_end, - STATE(5413), 1, - aux_sym_object_expression_repeat1, - STATE(5505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [253315] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7452), 1, - anon_sym_BANG, - ACTIONS(7454), 1, - anon_sym_functor, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - STATE(5506), 1, - sym_attribute, - STATE(5767), 1, - sym__attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5892), 2, - sym__module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [253375] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2900), 1, - anon_sym_let, - ACTIONS(2902), 1, - anon_sym_EQ, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(5195), 1, - aux_sym_expression_item_repeat1, - STATE(5507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2898), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [253419] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5160), 1, - aux_sym_expression_item_repeat1, - STATE(5508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6425), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253465] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6227), 1, - anon_sym_EQ, - ACTIONS(7460), 1, - anon_sym_of, - ACTIONS(7462), 1, - anon_sym_COLON2, - STATE(5509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6225), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6223), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [253507] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6358), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(4993), 1, - sym_item_attribute, - STATE(5090), 1, - aux_sym_type_binding_repeat1, - STATE(5184), 1, - aux_sym_expression_item_repeat1, - STATE(5510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6314), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253553] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6382), 1, - anon_sym_val, - ACTIONS(6386), 1, - anon_sym_inherit, - ACTIONS(6388), 1, - anon_sym_method, - ACTIONS(6390), 1, - anon_sym_initializer, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7130), 1, - anon_sym_end, - STATE(5505), 1, - aux_sym_object_expression_repeat1, - STATE(5511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6365), 2, - sym__class_field_ext, - sym_floating_attribute, - STATE(6372), 2, - sym__class_field, - sym__item_extension, - STATE(6356), 5, - sym_type_parameter_constraint, - sym_inheritance_definition, - sym_instance_variable_definition, - sym_method_definition, - sym_class_initializer, - [253613] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5512), 1, - sym_attribute, - STATE(5578), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7466), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7464), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [253654] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5513), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6272), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6274), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [253699] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5514), 1, - sym_attribute, - STATE(5742), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5926), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [253756] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6175), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7474), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5515), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(6173), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [253793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 7, - anon_sym_and, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4646), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [253828] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - anon_sym_functor, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - STATE(5517), 1, - sym_attribute, - STATE(5738), 1, - sym__attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5903), 2, - sym__module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [253885] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5468), 8, - anon_sym_LBRACK, - anon_sym_true, - anon_sym_false, - anon_sym_LBRACE, - anon_sym_object, - anon_sym_new, - anon_sym_begin, - sym__identifier, - ACTIONS(5470), 12, - anon_sym_LPAREN, - anon_sym_LBRACK_PIPE, - anon_sym_LBRACE_LT, - sym_ocamlyacc_value, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - aux_sym_number_token1, - anon_sym_SQUOTE, - anon_sym_DQUOTE, - sym_prefix_operator, - sym__capitalized_identifier, - aux_sym_tag_token1, - [253920] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5519), 1, - sym_attribute, - STATE(5718), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5971), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [253977] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5520), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 6, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5509), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [254024] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5349), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5347), 17, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - aux_sym_type_variable_token1, - [254059] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6320), 1, - anon_sym_STAR, - STATE(5522), 1, - sym_attribute, - STATE(5558), 1, - aux_sym__constructor_argument_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6600), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(6598), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254098] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7477), 1, - anon_sym_DQUOTE, - STATE(5523), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9508), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254143] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5524), 1, - sym_attribute, - STATE(5579), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7466), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7464), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254184] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6374), 1, - anon_sym_STAR, - ACTIONS(6600), 1, - anon_sym_LBRACK_AT_AT, - STATE(5515), 1, - aux_sym__constructor_argument_repeat1, - STATE(5525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6598), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254223] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5526), 1, - sym_attribute, - STATE(5730), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5906), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [254280] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7487), 3, - anon_sym_let, - anon_sym_and, - anon_sym_in, - ACTIONS(7485), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - sym_and_operator, - aux_sym_directive_token1, - [254315] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5528), 1, - sym_attribute, - STATE(5781), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4491), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [254372] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7489), 1, - anon_sym_DQUOTE, - STATE(5529), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9735), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254417] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5530), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 7, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5384), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT, - [254462] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5531), 1, - sym_attribute, - STATE(5727), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5912), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [254519] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7493), 1, - anon_sym_let, - ACTIONS(7495), 1, - anon_sym_and, - STATE(5532), 1, - sym_attribute, - STATE(5547), 1, - aux_sym_class_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7491), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254558] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7497), 1, - anon_sym_DQUOTE, - STATE(5533), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9579), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254603] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6588), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6586), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [254642] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7503), 1, - anon_sym_DQUOTE, - STATE(5535), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9105), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254687] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7505), 1, - anon_sym_DQUOTE, - STATE(5536), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9031), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254732] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7507), 1, - anon_sym_DQUOTE, - STATE(5537), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8954), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254777] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7509), 1, - anon_sym_DQUOTE, - STATE(5538), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9544), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254822] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5512), 1, - aux_sym_value_definition_repeat1, - STATE(5539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7513), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7511), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254863] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7517), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7515), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254904] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7519), 1, - anon_sym_DQUOTE, - STATE(5541), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9254), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [254949] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6982), 1, - anon_sym_let, - ACTIONS(7521), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5198), 1, - aux_sym_expression_item_repeat1, - STATE(5542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6980), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [254992] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7523), 1, - anon_sym_DQUOTE, - STATE(5543), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9299), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [255037] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2978), 1, - anon_sym_let, - ACTIONS(3004), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5269), 1, - aux_sym_expression_item_repeat1, - STATE(5544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2976), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255080] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2960), 1, - anon_sym_let, - ACTIONS(3008), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5244), 1, - aux_sym_expression_item_repeat1, - STATE(5545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2958), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255123] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7527), 1, - anon_sym_let, - ACTIONS(7529), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5546), 2, - sym_attribute, - aux_sym_class_type_definition_repeat1, - ACTIONS(7525), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255160] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7495), 1, - anon_sym_and, - ACTIONS(7534), 1, - anon_sym_let, - STATE(5546), 1, - aux_sym_class_type_definition_repeat1, - STATE(5547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7532), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255199] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7536), 1, - anon_sym_DQUOTE, - STATE(5548), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8492), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [255244] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7066), 1, - anon_sym_let, - ACTIONS(7538), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5185), 1, - aux_sym_expression_item_repeat1, - STATE(5549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7064), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255287] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2966), 1, - anon_sym_let, - ACTIONS(2994), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5188), 1, - aux_sym_expression_item_repeat1, - STATE(5550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2964), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255330] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6811), 1, - anon_sym_let, - ACTIONS(7540), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5228), 1, - aux_sym_expression_item_repeat1, - STATE(5551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6809), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255373] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5552), 1, - sym_attribute, - STATE(5736), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5965), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [255430] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5553), 1, - sym_attribute, - STATE(5744), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5955), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [255487] = 17, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7542), 1, - anon_sym_LPAREN, - ACTIONS(7544), 1, - anon_sym_val, - ACTIONS(7546), 1, - anon_sym_end, - ACTIONS(7548), 1, - anon_sym_inherit, - ACTIONS(7550), 1, - anon_sym_method, - STATE(5554), 1, - sym_attribute, - STATE(5646), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6421), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(6425), 2, - sym__class_field_specification, - sym__item_extension, - STATE(6417), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [255546] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(2990), 1, - anon_sym_let, - ACTIONS(3010), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5247), 1, - aux_sym_expression_item_repeat1, - STATE(5555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2988), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255589] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7554), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(7552), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [255624] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7556), 1, - anon_sym_DQUOTE, - STATE(5557), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9515), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [255669] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7558), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6175), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - STATE(5558), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(6173), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255706] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5559), 1, - sym_attribute, - STATE(5578), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7563), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7561), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255747] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5560), 1, - sym_attribute, - STATE(5775), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5946), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [255804] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6835), 1, - anon_sym_let, - ACTIONS(7565), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5187), 1, - aux_sym_expression_item_repeat1, - STATE(5561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6833), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255847] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7567), 1, - anon_sym_DQUOTE, - STATE(5562), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9470), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [255892] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7571), 1, - anon_sym_let, - STATE(5285), 1, - sym_item_attribute, - STATE(5540), 1, - aux_sym_expression_item_repeat1, - STATE(5563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7569), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [255933] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7573), 1, - anon_sym_DQUOTE, - STATE(5564), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8540), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [255978] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5565), 1, - sym_attribute, - STATE(5752), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5924), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [256035] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5566), 1, - sym_attribute, - STATE(5759), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5929), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [256092] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7575), 1, - anon_sym_DQUOTE, - STATE(5567), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8690), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256137] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7577), 1, - anon_sym_DQUOTE, - STATE(5568), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9437), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256182] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5569), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5900), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5902), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [256227] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7579), 1, - anon_sym_DQUOTE, - STATE(5570), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9408), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256272] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2900), 1, - anon_sym_let, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3000), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5195), 1, - aux_sym_expression_item_repeat1, - STATE(5571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2898), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256315] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - ACTIONS(7581), 1, - anon_sym_RPAREN, - ACTIONS(7583), 1, - anon_sym_val, - STATE(4503), 1, - sym_module_path, - STATE(5572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5923), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [256372] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7495), 1, - anon_sym_and, - ACTIONS(7587), 1, - anon_sym_let, - STATE(5573), 1, - sym_attribute, - STATE(5585), 1, - aux_sym_class_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7585), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256411] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5574), 1, - sym_attribute, - STATE(5763), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5943), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [256468] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5575), 1, - sym_attribute, - STATE(5728), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5931), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [256525] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5559), 1, - aux_sym_value_definition_repeat1, - STATE(5576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7591), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7589), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256566] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7595), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7593), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256607] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7597), 1, - anon_sym_and, - ACTIONS(7600), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7487), 2, - anon_sym_let, - anon_sym_in, - STATE(5578), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(7485), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256646] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7468), 1, - anon_sym_and, - ACTIONS(7470), 1, - sym_and_operator, - STATE(5578), 1, - aux_sym_value_definition_repeat1, - STATE(5579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7591), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7589), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256687] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7603), 1, - anon_sym_DQUOTE, - STATE(5580), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9388), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256732] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5472), 1, - aux_sym_expression_item_repeat1, - STATE(5556), 1, - sym_string, - STATE(5581), 1, - sym_attribute, - STATE(5782), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6674), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [256777] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7605), 1, - anon_sym_DQUOTE, - STATE(5582), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9704), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256822] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7607), 1, - anon_sym_DQUOTE, - STATE(5583), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9135), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [256867] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5725), 1, - anon_sym_let, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5723), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256908] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7493), 1, - anon_sym_let, - ACTIONS(7495), 1, - anon_sym_and, - STATE(5546), 1, - aux_sym_class_type_definition_repeat1, - STATE(5585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7491), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [256947] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - ACTIONS(7609), 1, - anon_sym_RPAREN, - ACTIONS(7611), 1, - anon_sym_val, - STATE(4503), 1, - sym_module_path, - STATE(5586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5950), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257004] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5587), 1, - sym_attribute, - STATE(5717), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4502), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257061] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5588), 1, - sym_attribute, - STATE(5766), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5948), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257118] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6994), 1, - anon_sym_let, - ACTIONS(7613), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5205), 1, - aux_sym_expression_item_repeat1, - STATE(5589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6992), 15, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [257161] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5590), 1, - sym_attribute, - STATE(5713), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5917), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257218] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7615), 1, - anon_sym_DQUOTE, - STATE(5591), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9352), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [257263] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(7617), 1, - anon_sym_POUND, - STATE(5592), 1, - sym_attribute, - STATE(5749), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5615), 2, - anon_sym_in, - anon_sym_as, - ACTIONS(5611), 13, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_LBRACK_AT_AT, - [257308] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5593), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5870), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5872), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [257353] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5594), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5904), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5906), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [257398] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7619), 1, - anon_sym_DQUOTE, - STATE(5595), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9043), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [257443] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5596), 1, - sym_attribute, - STATE(5783), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5967), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257500] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5597), 1, - sym_attribute, - STATE(5758), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5963), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257557] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5426), 1, - aux_sym_expression_item_repeat1, - STATE(5556), 1, - sym_string, - STATE(5598), 1, - sym_attribute, - STATE(5782), 1, - aux_sym_external_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6644), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [257602] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5599), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6201), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6203), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [257647] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7621), 1, - anon_sym_DQUOTE, - STATE(5600), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8323), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [257692] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7623), 1, - anon_sym_DQUOTE, - STATE(5601), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8706), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [257737] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7625), 1, - anon_sym_DQUOTE, - STATE(5602), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9658), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [257782] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5878), 1, - sym__identifier, - ACTIONS(5894), 1, - anon_sym_POUND, - STATE(4856), 1, - sym_type_constructor_path, - STATE(5603), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6193), 5, - anon_sym_SEMI_SEMI, - anon_sym_RBRACK, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(6195), 10, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT, - [257827] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6608), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6606), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [257866] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5605), 1, - sym_attribute, - STATE(5791), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5957), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257923] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5606), 1, - sym_attribute, - STATE(5779), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5964), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [257980] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7627), 1, - anon_sym_DQUOTE, - STATE(5607), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(8835), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [258025] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7629), 1, - anon_sym_DQUOTE, - STATE(5608), 1, - sym_attribute, - STATE(5707), 1, - aux_sym_string_content_repeat1, - STATE(5801), 1, - sym_escape_sequence, - STATE(9384), 1, - sym_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [258070] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6638), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6636), 17, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_EQ, - anon_sym_external, - anon_sym_type, - anon_sym_COLON_EQ, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258109] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7633), 1, - anon_sym_let, - STATE(5610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7631), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258143] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3904), 1, - aux_sym_number_token1, - ACTIONS(3906), 1, - anon_sym_SQUOTE, - ACTIONS(3908), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - anon_sym_LPAREN, - ACTIONS(7639), 1, - anon_sym_LBRACE, - ACTIONS(7641), 1, - anon_sym_begin, - STATE(5611), 1, - sym_attribute, - STATE(6785), 1, - sym__signed_constant, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3882), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7637), 2, - anon_sym_true, - anon_sym_false, - STATE(6466), 2, - sym__constant, - sym_signed_number, - STATE(6504), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [258195] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7643), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5198), 1, - aux_sym_expression_item_repeat1, - STATE(5612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6980), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258235] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7647), 1, - anon_sym_let, - ACTIONS(7649), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5613), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - ACTIONS(7645), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258271] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7652), 1, - sym__identifier, - ACTIONS(7654), 1, - anon_sym_LPAREN, - ACTIONS(7656), 1, - anon_sym_module, - ACTIONS(7658), 1, - anon_sym_sig, - ACTIONS(7660), 1, - anon_sym_functor, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7666), 1, - sym__capitalized_identifier, - STATE(5614), 1, - sym_attribute, - STATE(8023), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6570), 2, - sym__module_type, - sym__extension, - STATE(6572), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258325] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7670), 1, - anon_sym_let, - ACTIONS(7672), 1, - anon_sym_and, - STATE(5615), 1, - sym_attribute, - STATE(5656), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7668), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258363] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5616), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5534), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258417] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5285), 1, - sym_item_attribute, - STATE(5406), 1, - aux_sym_expression_item_repeat1, - STATE(5617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6892), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258459] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6867), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7674), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5618), 2, - sym_attribute, - aux_sym_variant_declaration_repeat1, - ACTIONS(6865), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258495] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3155), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5244), 1, - aux_sym_expression_item_repeat1, - STATE(5619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2958), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258535] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5620), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7483), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258589] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5621), 1, - sym_attribute, - STATE(5672), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7513), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7511), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258629] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7683), 1, - anon_sym_let, - ACTIONS(7685), 1, - anon_sym_and, - STATE(5622), 1, - sym_attribute, - STATE(5698), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7681), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258667] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7687), 1, - anon_sym_functor, - STATE(5623), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(6913), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258721] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5624), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5057), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258775] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7652), 1, - sym__identifier, - ACTIONS(7654), 1, - anon_sym_LPAREN, - ACTIONS(7656), 1, - anon_sym_module, - ACTIONS(7658), 1, - anon_sym_sig, - ACTIONS(7660), 1, - anon_sym_functor, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7666), 1, - sym__capitalized_identifier, - STATE(5625), 1, - sym_attribute, - STATE(8023), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6584), 2, - sym__module_type, - sym__extension, - STATE(6572), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258829] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7672), 1, - anon_sym_and, - ACTIONS(7693), 1, - anon_sym_let, - STATE(5626), 1, - sym_attribute, - STATE(5656), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7691), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [258867] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7687), 1, - anon_sym_functor, - STATE(5627), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(6909), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [258921] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5285), 1, - sym_item_attribute, - STATE(5628), 1, - sym_attribute, - STATE(5835), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7695), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [258963] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7513), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5629), 1, - sym_attribute, - STATE(5655), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7511), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259003] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7683), 1, - anon_sym_let, - ACTIONS(7685), 1, - anon_sym_and, - STATE(5613), 1, - aux_sym_module_definition_repeat1, - STATE(5630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7681), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259041] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7701), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5205), 1, - aux_sym_expression_item_repeat1, - STATE(5631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6992), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259081] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7703), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5187), 1, - aux_sym_expression_item_repeat1, - STATE(5632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6833), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259121] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5633), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7333), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259175] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5634), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7818), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259229] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5635), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7703), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259283] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5636), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5682), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259337] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7563), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5637), 1, - sym_attribute, - STATE(5644), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7561), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259377] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6723), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7705), 1, - anon_sym_PIPE, - STATE(5618), 1, - aux_sym_variant_declaration_repeat1, - STATE(5638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6721), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259415] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5639), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7095), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259469] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3696), 1, - aux_sym_number_token1, - ACTIONS(3698), 1, - anon_sym_SQUOTE, - ACTIONS(3700), 1, - anon_sym_DQUOTE, - ACTIONS(7707), 1, - anon_sym_LPAREN, - ACTIONS(7711), 1, - anon_sym_LBRACE, - ACTIONS(7713), 1, - anon_sym_begin, - STATE(4570), 1, - sym__signed_constant, - STATE(5640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3676), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7709), 2, - anon_sym_true, - anon_sym_false, - STATE(4472), 2, - sym__constant, - sym_signed_number, - STATE(4465), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [259521] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7591), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5637), 1, - aux_sym_value_definition_repeat1, - STATE(5641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7589), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259561] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3153), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5195), 1, - aux_sym_expression_item_repeat1, - STATE(5642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2898), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259601] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5401), 1, - aux_sym_expression_item_repeat1, - STATE(5643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7715), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(7100), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259641] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7487), 1, - anon_sym_let, - ACTIONS(7717), 1, - anon_sym_and, - ACTIONS(7720), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5644), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(7485), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259679] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7591), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5644), 1, - aux_sym_value_definition_repeat1, - STATE(5645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7589), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259719] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7544), 1, - anon_sym_val, - ACTIONS(7548), 1, - anon_sym_inherit, - ACTIONS(7550), 1, - anon_sym_method, - ACTIONS(7723), 1, - anon_sym_end, - STATE(5646), 1, - sym_attribute, - STATE(5710), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6421), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(6425), 2, - sym__class_field_specification, - sym__item_extension, - STATE(6417), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [259775] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5285), 1, - sym_item_attribute, - STATE(5647), 1, - sym_attribute, - STATE(5841), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7725), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [259817] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5648), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5628), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [259871] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2163), 1, - aux_sym_number_token1, - ACTIONS(2165), 1, - anon_sym_SQUOTE, - ACTIONS(2167), 1, - anon_sym_DQUOTE, - ACTIONS(7727), 1, - anon_sym_LPAREN, - ACTIONS(7731), 1, - anon_sym_LBRACE, - ACTIONS(7733), 1, - anon_sym_begin, - STATE(5649), 1, - sym_attribute, - STATE(6185), 1, - sym__signed_constant, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3642), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7729), 2, - anon_sym_true, - anon_sym_false, - STATE(6047), 2, - sym__constant, - sym_signed_number, - STATE(5820), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [259923] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7672), 1, - anon_sym_and, - ACTIONS(7737), 1, - anon_sym_let, - STATE(5626), 1, - aux_sym_type_definition_repeat1, - STATE(5650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7735), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259961] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7741), 1, - anon_sym_let, - STATE(5651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7739), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [259995] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3115), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5247), 1, - aux_sym_expression_item_repeat1, - STATE(5652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2988), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [260035] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5653), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4910), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260089] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7743), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5185), 1, - aux_sym_expression_item_repeat1, - STATE(5654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7064), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [260129] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7466), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5644), 1, - aux_sym_value_definition_repeat1, - STATE(5655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7464), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260169] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7741), 1, - anon_sym_let, - ACTIONS(7745), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5656), 2, - sym_attribute, - aux_sym_type_definition_repeat1, - ACTIONS(7739), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260205] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5657), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7383), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260259] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7544), 1, - anon_sym_val, - ACTIONS(7548), 1, - anon_sym_inherit, - ACTIONS(7550), 1, - anon_sym_method, - ACTIONS(7748), 1, - anon_sym_end, - STATE(5658), 1, - sym_attribute, - STATE(5696), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6421), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(6425), 2, - sym__class_field_specification, - sym__item_extension, - STATE(6417), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [260315] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7672), 1, - anon_sym_and, - ACTIONS(7693), 1, - anon_sym_let, - STATE(5615), 1, - aux_sym_type_definition_repeat1, - STATE(5659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7691), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260353] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5660), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5604), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260407] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7652), 1, - sym__identifier, - ACTIONS(7654), 1, - anon_sym_LPAREN, - ACTIONS(7656), 1, - anon_sym_module, - ACTIONS(7658), 1, - anon_sym_sig, - ACTIONS(7660), 1, - anon_sym_functor, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7666), 1, - sym__capitalized_identifier, - STATE(5661), 1, - sym_attribute, - STATE(8023), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6465), 2, - sym__module_type, - sym__extension, - STATE(6572), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260461] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3519), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [260495] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5663), 1, - sym_attribute, - STATE(5676), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7591), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7589), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260535] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 2, - anon_sym_let, - anon_sym_LBRACK_AT_AT, - ACTIONS(3431), 17, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - anon_sym_DQUOTE, - sym_let_operator, - aux_sym_directive_token1, - [260569] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7750), 1, - anon_sym_DQUOTE, - STATE(5801), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7755), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - STATE(5665), 2, - sym_attribute, - aux_sym_string_content_repeat1, - ACTIONS(7758), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7752), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [260609] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3125), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5188), 1, - aux_sym_expression_item_repeat1, - STATE(5666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2964), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [260649] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2521), 1, - aux_sym_number_token1, - ACTIONS(2523), 1, - anon_sym_SQUOTE, - ACTIONS(2525), 1, - anon_sym_DQUOTE, - ACTIONS(7761), 1, - anon_sym_LPAREN, - ACTIONS(7765), 1, - anon_sym_LBRACE, - ACTIONS(7767), 1, - anon_sym_begin, - STATE(3113), 1, - sym__signed_constant, - STATE(5667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2501), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7763), 2, - anon_sym_true, - anon_sym_false, - STATE(2850), 2, - sym__constant, - sym_signed_number, - STATE(2939), 6, - sym_number, - sym_character, - sym_string, - sym_quoted_string, - sym_boolean, - sym_unit, - [260701] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7652), 1, - sym__identifier, - ACTIONS(7654), 1, - anon_sym_LPAREN, - ACTIONS(7656), 1, - anon_sym_module, - ACTIONS(7658), 1, - anon_sym_sig, - ACTIONS(7660), 1, - anon_sym_functor, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7666), 1, - sym__capitalized_identifier, - STATE(5668), 1, - sym_attribute, - STATE(8023), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6577), 2, - sym__module_type, - sym__extension, - STATE(6572), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260755] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7687), 1, - anon_sym_functor, - STATE(5669), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4910), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260809] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7670), 1, - anon_sym_let, - ACTIONS(7672), 1, - anon_sym_and, - STATE(5670), 1, - sym_attribute, - STATE(5705), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7668), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260847] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5671), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5093), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260901] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5672), 1, - sym_attribute, - STATE(5693), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7466), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7464), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [260941] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5673), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4910), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [260995] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5674), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5609), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261049] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - ACTIONS(7583), 1, - anon_sym_val, - STATE(4503), 1, - sym_module_path, - STATE(5675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5923), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [261103] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5676), 1, - sym_attribute, - STATE(5693), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7563), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7561), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261143] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3157), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5269), 1, - aux_sym_expression_item_repeat1, - STATE(5677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2976), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [261183] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5678), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7226), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261237] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5300), 1, - aux_sym_expression_item_repeat1, - STATE(5679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7769), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - ACTIONS(7084), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [261277] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5680), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7660), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261331] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7311), 1, - anon_sym_functor, - STATE(5681), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5617), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261385] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - ACTIONS(7501), 1, - anon_sym_with, - STATE(5285), 1, - sym_item_attribute, - STATE(5490), 1, - aux_sym_expression_item_repeat1, - STATE(5682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6743), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [261427] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5683), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7251), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261481] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5684), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5070), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261535] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6859), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7705), 1, - anon_sym_PIPE, - STATE(5618), 1, - aux_sym_variant_declaration_repeat1, - STATE(5685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6857), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [261573] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7527), 1, - anon_sym_let, - STATE(5686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7525), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261607] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7466), 1, - anon_sym_let, - ACTIONS(7697), 1, - anon_sym_and, - ACTIONS(7699), 1, - sym_and_operator, - STATE(5645), 1, - aux_sym_value_definition_repeat1, - STATE(5687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7464), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261647] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5688), 1, - sym_attribute, - STATE(5693), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7591), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7589), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261687] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5689), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7742), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261741] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7771), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5228), 1, - aux_sym_expression_item_repeat1, - STATE(5690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6809), 15, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [261781] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7677), 1, - anon_sym_and, - ACTIONS(7679), 1, - sym_and_operator, - STATE(5688), 1, - aux_sym_value_definition_repeat1, - STATE(5691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7466), 2, - anon_sym_let, - anon_sym_in, - ACTIONS(7464), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261821] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5692), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7796), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261875] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7773), 1, - anon_sym_and, - ACTIONS(7776), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7487), 2, - anon_sym_let, - anon_sym_in, - STATE(5693), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(7485), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [261913] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5694), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7139), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [261967] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7685), 1, - anon_sym_and, - ACTIONS(7781), 1, - anon_sym_let, - STATE(5613), 1, - aux_sym_module_definition_repeat1, - STATE(5695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7779), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262005] = 16, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(71), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(6380), 1, - anon_sym_constraint, - ACTIONS(6392), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(6394), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(7544), 1, - anon_sym_val, - ACTIONS(7548), 1, - anon_sym_inherit, - ACTIONS(7550), 1, - anon_sym_method, - ACTIONS(7783), 1, - anon_sym_end, - STATE(5696), 1, - sym_attribute, - STATE(5710), 1, - aux_sym_class_body_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(6421), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(6425), 2, - sym__class_field_specification, - sym__item_extension, - STATE(6417), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [262061] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6723), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7705), 1, - anon_sym_PIPE, - STATE(5685), 1, - aux_sym_variant_declaration_repeat1, - STATE(5697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6721), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [262099] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7685), 1, - anon_sym_and, - ACTIONS(7787), 1, - anon_sym_let, - STATE(5613), 1, - aux_sym_module_definition_repeat1, - STATE(5698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7785), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262137] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7685), 1, - anon_sym_and, - ACTIONS(7791), 1, - anon_sym_let, - STATE(5630), 1, - aux_sym_module_definition_repeat1, - STATE(5699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7789), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262175] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5700), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5166), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [262229] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5701), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6937), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [262283] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - ACTIONS(7611), 1, - anon_sym_val, - STATE(4503), 1, - sym_module_path, - STATE(5702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5950), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [262337] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5703), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7267), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [262391] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7122), 1, - anon_sym_module, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7126), 1, - anon_sym_functor, - ACTIONS(7128), 1, - sym__capitalized_identifier, - STATE(5704), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(7477), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [262445] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7672), 1, - anon_sym_and, - ACTIONS(7795), 1, - anon_sym_let, - STATE(5656), 1, - aux_sym_type_definition_repeat1, - STATE(5705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7793), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262483] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6215), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7705), 1, - anon_sym_PIPE, - STATE(5638), 1, - aux_sym_variant_declaration_repeat1, - STATE(5706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6213), 16, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_constraint, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [262521] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7797), 1, - anon_sym_DQUOTE, - STATE(5665), 1, - aux_sym_string_content_repeat1, - STATE(5707), 1, - sym_attribute, - STATE(5801), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7481), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7483), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - ACTIONS(7479), 10, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - sym_conversion_specification, - sym_pretty_printing_indication, - [262563] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7118), 1, - sym__identifier, - ACTIONS(7120), 1, - anon_sym_LPAREN, - ACTIONS(7124), 1, - anon_sym_sig, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(7309), 1, - anon_sym_module, - ACTIONS(7689), 1, - anon_sym_functor, - STATE(5708), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(5214), 2, - sym__module_type, - sym__extension, - STATE(4905), 6, - sym_signature, - sym_module_type_constraint, - sym_module_type_of, - sym_functor_type, - sym_parenthesized_module_type, - sym_module_type_path, - [262617] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7647), 1, - anon_sym_let, - STATE(5709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7645), 18, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_and, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262651] = 15, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7799), 1, - anon_sym_constraint, - ACTIONS(7802), 1, - anon_sym_val, - ACTIONS(7805), 1, - anon_sym_end, - ACTIONS(7807), 1, - anon_sym_inherit, - ACTIONS(7810), 1, - anon_sym_method, - ACTIONS(7813), 1, - anon_sym_LBRACK_AT_AT_AT, - ACTIONS(7816), 1, - anon_sym_LBRACK_PERCENT_PERCENT, - ACTIONS(7819), 1, - anon_sym_LBRACE_PERCENT_PERCENT, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5183), 2, - sym_item_extension, - sym_quoted_item_extension, - STATE(5710), 2, - sym_attribute, - aux_sym_class_body_type_repeat1, - STATE(6421), 2, - sym__class_field_specification_ext, - sym_floating_attribute, - STATE(6425), 2, - sym__class_field_specification, - sym__item_extension, - STATE(6417), 4, - sym_inheritance_specification, - sym_instance_variable_specification, - sym_method_specification, - sym_type_parameter_constraint, - [262705] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7685), 1, - anon_sym_and, - ACTIONS(7787), 1, - anon_sym_let, - STATE(5695), 1, - aux_sym_module_definition_repeat1, - STATE(5711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7785), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262743] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5848), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5846), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [262776] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5908), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [262827] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5871), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [262878] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3890), 2, - sym__module_expression, - sym__extension, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [262929] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7563), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5716), 1, - sym_attribute, - STATE(5761), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7561), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [262968] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4564), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263019] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5930), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263070] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4491), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263121] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - anon_sym_functor, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - STATE(5720), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6084), 2, - sym__module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263172] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4315), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263223] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4304), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263274] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7828), 1, - anon_sym_let, - ACTIONS(7830), 1, - anon_sym_and, - STATE(5723), 1, - sym_attribute, - STATE(5725), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7826), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263311] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7834), 1, - anon_sym_let, - STATE(5724), 1, - sym_attribute, - STATE(5747), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263348] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7834), 1, - anon_sym_let, - STATE(5725), 1, - sym_attribute, - STATE(5741), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263385] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7836), 1, - anon_sym_functor, - STATE(5726), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5729), 2, - sym__module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263436] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5974), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263487] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5925), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263538] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - STATE(5729), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5337), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [263583] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5904), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263634] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7842), 1, - anon_sym_let, - ACTIONS(7844), 1, - anon_sym_DOT, - STATE(5731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7840), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263669] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7466), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5732), 1, - sym_attribute, - STATE(5762), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7464), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263708] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7466), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5733), 1, - sym_attribute, - STATE(5761), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7464), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [263747] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5856), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5854), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [263780] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5779), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5777), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [263813] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5949), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5868), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5866), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [263897] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - anon_sym_functor, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - STATE(5738), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5891), 2, - sym__module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263948] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3905), 2, - sym__module_expression, - sym__extension, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [263999] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7836), 1, - anon_sym_functor, - STATE(5740), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5869), 2, - sym__module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264050] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7633), 1, - anon_sym_let, - ACTIONS(7846), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5741), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7631), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264085] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5910), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264136] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_as, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5743), 1, - sym_attribute, - STATE(5773), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 11, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - [264181] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5975), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264232] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4666), 7, - anon_sym_and, - anon_sym_PIPE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4664), 11, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_POUND, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264265] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5746), 1, - sym_attribute, - STATE(5773), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 12, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - [264308] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7830), 1, - anon_sym_and, - ACTIONS(7851), 1, - anon_sym_let, - STATE(5741), 1, - aux_sym_class_definition_repeat1, - STATE(5747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7849), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264345] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5761), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5759), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5826), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5824), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264411] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7591), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5716), 1, - aux_sym_value_definition_repeat1, - STATE(5750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7589), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264450] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7513), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5733), 1, - aux_sym_value_definition_repeat1, - STATE(5751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7511), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264489] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5969), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264540] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5818), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5816), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264573] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7836), 1, - anon_sym_functor, - STATE(5754), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5874), 2, - sym__module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264624] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5771), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5769), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264657] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - STATE(5756), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5354), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [264702] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5595), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5593), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264735] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5934), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264786] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5935), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264837] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5775), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5773), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [264870] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7487), 1, - anon_sym_let, - ACTIONS(7853), 1, - anon_sym_and, - ACTIONS(7856), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5761), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - ACTIONS(7485), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264907] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7591), 1, - anon_sym_let, - ACTIONS(7822), 1, - anon_sym_and, - ACTIONS(7824), 1, - sym_and_operator, - STATE(5761), 1, - aux_sym_value_definition_repeat1, - STATE(5762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7589), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [264946] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5958), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [264997] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7836), 1, - anon_sym_functor, - STATE(5764), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5756), 2, - sym__module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265048] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5814), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5812), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265081] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5953), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265132] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - anon_sym_functor, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - STATE(5767), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5903), 2, - sym__module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265183] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5864), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5862), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265216] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5605), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5603), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265249] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5883), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265300] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6504), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7859), 1, - anon_sym_EQ, - ACTIONS(7861), 1, - anon_sym_of, - ACTIONS(7863), 1, - anon_sym_COLON2, - STATE(5771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6502), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [265339] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5783), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5781), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265372] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5749), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5747), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265405] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6491), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7865), 1, - anon_sym_EQ, - ACTIONS(7867), 1, - anon_sym_of, - ACTIONS(7869), 1, - anon_sym_COLON2, - STATE(5774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [265444] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5966), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265495] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7450), 1, - anon_sym_LPAREN, - ACTIONS(7456), 1, - anon_sym_struct, - ACTIONS(7458), 1, - sym__capitalized_identifier, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7836), 1, - anon_sym_functor, - STATE(5776), 1, - sym_attribute, - STATE(6263), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5857), 2, - sym__module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(6292), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265546] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5822), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5820), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265579] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5790), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5788), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265612] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5905), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265663] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5830), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5828), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265696] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4442), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265747] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7413), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7871), 1, - anon_sym_DQUOTE, - STATE(5556), 1, - sym_string, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5782), 2, - sym_attribute, - aux_sym_external_repeat1, - ACTIONS(7411), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [265784] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5932), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265835] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7231), 1, - anon_sym_functor, - ACTIONS(7233), 1, - anon_sym_struct, - STATE(4503), 1, - sym_module_path, - STATE(5784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4288), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [265886] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5717), 1, - anon_sym_as, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(5785), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 12, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - [265929] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5844), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5842), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265962] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5840), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5838), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [265995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5733), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5731), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [266028] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6225), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7874), 1, - anon_sym_EQ, - ACTIONS(7876), 1, - anon_sym_of, - ACTIONS(7878), 1, - anon_sym_COLON2, - STATE(5789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6223), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [266067] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5802), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5800), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [266100] = 14, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(7227), 1, - anon_sym_LPAREN, - ACTIONS(7233), 1, - anon_sym_struct, - ACTIONS(7472), 1, - anon_sym_functor, - STATE(4503), 1, - sym_module_path, - STATE(5791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(5936), 2, - sym__module_expression, - sym__extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - STATE(4589), 4, - sym__simple_module_expression, - sym_structure, - sym_functor, - sym_module_application, - [266151] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5836), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5834), 15, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_AMP, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [266184] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7882), 1, - anon_sym_DASH_GT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7886), 1, - anon_sym_LBRACK_AT_AT, - STATE(5793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7880), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [266220] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7851), 1, - anon_sym_let, - ACTIONS(7888), 1, - anon_sym_and, - STATE(5794), 1, - sym_attribute, - STATE(5850), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7849), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266256] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3543), 1, - anon_sym_let, - STATE(5795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266288] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5171), 1, - sym__simple_class_type_ext, - STATE(5796), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [266340] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(5300), 1, - anon_sym_let, - ACTIONS(7894), 1, - sym__identifier, - ACTIONS(7896), 1, - anon_sym_LBRACK, - STATE(4928), 1, - sym__simple_class_type_ext, - STATE(5797), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [266392] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3517), 1, - anon_sym_let, - STATE(5798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266424] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3421), 1, - anon_sym_let, - STATE(5799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266456] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3531), 1, - anon_sym_let, - STATE(5800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266488] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7900), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7898), 15, - anon_sym_DQUOTE, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - sym_conversion_specification, - sym_pretty_printing_indication, - [266520] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3429), 1, - anon_sym_let, - STATE(5802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266552] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3531), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3533), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [266584] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3413), 1, - anon_sym_let, - STATE(5804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266616] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3517), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3519), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [266648] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3349), 1, - anon_sym_let, - STATE(5806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266680] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3543), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3545), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [266712] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3449), 1, - anon_sym_let, - STATE(5808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266744] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5258), 1, - sym__simple_class_type_ext, - STATE(5809), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [266796] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(4928), 1, - sym__simple_class_type_ext, - STATE(5810), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [266848] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7904), 1, - anon_sym_let, - ACTIONS(7906), 1, - anon_sym_in, - STATE(5811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7902), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266882] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3193), 1, - anon_sym_let, - STATE(5812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266914] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3429), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3431), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [266946] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3489), 1, - anon_sym_let, - STATE(5814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3491), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [266978] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7910), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(7908), 15, - anon_sym_DQUOTE, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_string_content_token1, - aux_sym_string_content_token2, - aux_sym_string_content_token3, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - sym_conversion_specification, - sym_pretty_printing_indication, - [267010] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7912), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267046] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5274), 1, - sym__simple_class_type_ext, - STATE(5817), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [267098] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3539), 1, - anon_sym_let, - STATE(5818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267130] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3425), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3427), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [267162] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3417), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3419), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [267194] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3385), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3387), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [267226] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7914), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267262] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3189), 1, - anon_sym_let, - STATE(5823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3191), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267294] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5816), 1, - aux_sym_expression_item_repeat1, - STATE(5824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7914), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267330] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3381), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3383), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [267362] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3381), 1, - anon_sym_let, - STATE(5826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267394] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7842), 1, - anon_sym_let, - STATE(5827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7840), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267426] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7918), 1, - anon_sym_let, - STATE(5828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7916), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267458] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6600), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7098), 1, - anon_sym_STAR, - STATE(5829), 1, - sym_attribute, - STATE(5834), 1, - aux_sym__constructor_argument_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6598), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267494] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3425), 1, - anon_sym_let, - STATE(5830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267526] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3417), 1, - anon_sym_let, - STATE(5831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267558] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3313), 1, - anon_sym_let, - STATE(5832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267590] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3385), 1, - anon_sym_let, - STATE(5833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267622] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6175), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7920), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5834), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - ACTIONS(6173), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267656] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7923), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267692] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5221), 1, - sym__simple_class_type_ext, - STATE(5836), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [267744] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6284), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7882), 1, - anon_sym_DASH_GT, - STATE(5837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 15, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_as, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267778] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3539), 3, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_POUND, - ACTIONS(3541), 14, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - sym_hash_operator, - [267810] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7927), 1, - anon_sym_let, - STATE(5839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7925), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [267842] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5260), 1, - anon_sym_let, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7890), 1, - sym__identifier, - ACTIONS(7892), 1, - anon_sym_LBRACK, - STATE(5153), 1, - sym__simple_class_type_ext, - STATE(5840), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [267894] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(4975), 1, - aux_sym_expression_item_repeat1, - STATE(5285), 1, - sym_item_attribute, - STATE(5841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7695), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [267930] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7929), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7933), 1, - anon_sym_nonrec, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(5650), 1, - sym_type_binding, - STATE(5842), 1, - sym_attribute, - STATE(5885), 1, - sym__attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7043), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9436), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [267990] = 19, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(7941), 1, - sym__identifier, - ACTIONS(7943), 1, - anon_sym_nonrec, - STATE(5843), 1, - sym_attribute, - STATE(5880), 1, - sym_type_binding, - STATE(5888), 1, - sym__attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7038), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9626), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [268050] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2569), 1, - anon_sym_LBRACK_AT_AT, - STATE(5285), 1, - sym_item_attribute, - STATE(5822), 1, - aux_sym_expression_item_repeat1, - STATE(5844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7945), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268086] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7947), 1, - sym__identifier, - ACTIONS(7949), 1, - anon_sym_let, - ACTIONS(7951), 1, - anon_sym_LBRACK, - STATE(5845), 1, - sym_attribute, - STATE(6256), 1, - sym__simple_class_type_ext, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [268138] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7904), 1, - anon_sym_let, - STATE(5846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7902), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268170] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7882), 1, - anon_sym_DASH_GT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7955), 1, - anon_sym_LBRACK_AT_AT, - STATE(5847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268206] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7828), 1, - anon_sym_let, - ACTIONS(7888), 1, - anon_sym_and, - STATE(5848), 1, - sym_attribute, - STATE(5851), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7826), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268242] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7882), 1, - anon_sym_DASH_GT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7959), 1, - anon_sym_LBRACK_AT_AT, - STATE(5849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7957), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268278] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7633), 1, - anon_sym_let, - ACTIONS(7961), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5850), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7631), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268312] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7834), 1, - anon_sym_let, - ACTIONS(7888), 1, - anon_sym_and, - STATE(5850), 1, - aux_sym_class_definition_repeat1, - STATE(5851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268348] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7834), 1, - anon_sym_let, - ACTIONS(7888), 1, - anon_sym_and, - STATE(5794), 1, - aux_sym_class_definition_repeat1, - STATE(5852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268384] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5266), 1, - anon_sym_object, - ACTIONS(6030), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(6032), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7947), 1, - sym__identifier, - ACTIONS(7949), 1, - anon_sym_let, - ACTIONS(7951), 1, - anon_sym_LBRACK, - STATE(4928), 1, - sym__simple_class_type_ext, - STATE(5853), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4222), 2, - sym_extension, - sym_quoted_extension, - STATE(4932), 2, - sym__simple_class_type, - sym__extension, - STATE(4940), 4, - sym_instantiated_class_type, - sym_class_body_type, - sym_let_open_class_type, - sym_class_type_path, - [268436] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7964), 1, - anon_sym_let, - STATE(5854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5408), 16, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268468] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7904), 1, - anon_sym_let, - ACTIONS(7966), 1, - anon_sym_in, - STATE(5855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7902), 14, - ts_builtin_sym_end, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - sym_let_operator, - aux_sym_directive_token1, - [268501] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7968), 1, - anon_sym_and, - STATE(5856), 1, - sym_attribute, - STATE(5862), 1, - aux_sym_class_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268534] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5857), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(6819), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5597), 2, - anon_sym_and, - anon_sym_in, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [268583] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7968), 1, - anon_sym_and, - STATE(5856), 1, - aux_sym_class_definition_repeat1, - STATE(5858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7826), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268616] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5859), 1, - sym_attribute, - STATE(5879), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7691), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268649] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5860), 1, - sym_attribute, - STATE(5879), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7793), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268682] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5861), 1, - sym_attribute, - STATE(5879), 1, - aux_sym_type_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7668), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268715] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7974), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5862), 2, - sym_attribute, - aux_sym_class_definition_repeat1, - ACTIONS(7631), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268746] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5860), 1, - aux_sym_type_definition_repeat1, - STATE(5863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7668), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268779] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7968), 1, - anon_sym_and, - STATE(5862), 1, - aux_sym_class_definition_repeat1, - STATE(5864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7849), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268812] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7977), 1, - anon_sym_COLON_GT, - ACTIONS(7979), 1, - anon_sym_EQ, - ACTIONS(7981), 1, - anon_sym_COLON2, - STATE(4993), 1, - sym_item_attribute, - STATE(5865), 1, - sym_attribute, - STATE(5907), 1, - sym__typed, - STATE(6146), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7983), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268855] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5866), 1, - sym_attribute, - STATE(5881), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7681), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268888] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5861), 1, - aux_sym_type_definition_repeat1, - STATE(5867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7691), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268921] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7981), 1, - anon_sym_COLON2, - ACTIONS(7987), 1, - anon_sym_COLON_GT, - ACTIONS(7989), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5868), 1, - sym_attribute, - STATE(5928), 1, - sym__typed, - STATE(6214), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7991), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [268964] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5869), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(6903), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5583), 2, - anon_sym_and, - anon_sym_in, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [269013] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5870), 1, - sym_attribute, - STATE(5878), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7789), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269046] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5339), 1, - anon_sym_COLON2, - ACTIONS(5341), 1, - anon_sym_LPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5337), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [269091] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5872), 1, - sym_attribute, - STATE(5875), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7779), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269124] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5872), 1, - aux_sym_module_definition_repeat1, - STATE(5873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7785), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269157] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7662), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(7664), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5874), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(6889), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5589), 2, - anon_sym_and, - anon_sym_in, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6300), 2, - sym_extension, - sym_quoted_extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [269206] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7993), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5875), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - ACTIONS(7645), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269237] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7981), 1, - anon_sym_COLON2, - ACTIONS(7996), 1, - anon_sym_COLON_GT, - ACTIONS(7998), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5876), 1, - sym_attribute, - STATE(5939), 1, - sym__typed, - STATE(6166), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8000), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269280] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7968), 1, - anon_sym_and, - STATE(5864), 1, - aux_sym_class_definition_repeat1, - STATE(5877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7832), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269313] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5875), 1, - aux_sym_module_definition_repeat1, - STATE(5878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7681), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269346] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8002), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5879), 2, - sym_attribute, - aux_sym_type_definition_repeat1, - ACTIONS(7739), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269377] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7972), 1, - anon_sym_and, - STATE(5859), 1, - aux_sym_type_definition_repeat1, - STATE(5880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7735), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269410] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7985), 1, - anon_sym_and, - STATE(5875), 1, - aux_sym_module_definition_repeat1, - STATE(5881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7785), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269443] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8005), 1, - anon_sym_EQ, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(4993), 1, - sym_item_attribute, - STATE(5882), 1, - sym_attribute, - STATE(6193), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8009), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269483] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - ACTIONS(5354), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [269525] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8011), 1, - anon_sym_SEMI_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5884), 2, - sym_attribute, - aux_sym__structure_repeat1, - ACTIONS(4529), 13, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269555] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7929), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(8014), 1, - anon_sym_nonrec, - STATE(5659), 1, - sym_type_binding, - STATE(5885), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7043), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9436), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [269609] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(8016), 1, - sym__identifier, - ACTIONS(8018), 1, - anon_sym_POUND, - STATE(5886), 1, - sym_attribute, - STATE(6000), 1, - sym_type_constructor_path, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(5384), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [269649] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8020), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5887), 1, - sym_attribute, - STATE(6164), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8022), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269689] = 17, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(7941), 1, - sym__identifier, - ACTIONS(8024), 1, - anon_sym_nonrec, - STATE(5867), 1, - sym_type_binding, - STATE(5888), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7038), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9626), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [269743] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(8016), 1, - sym__identifier, - ACTIONS(8018), 1, - anon_sym_POUND, - STATE(5889), 1, - sym_attribute, - STATE(6000), 1, - sym_type_constructor_path, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 4, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_LBRACK_AT_AT, - ACTIONS(5509), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [269785] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7955), 1, - anon_sym_LBRACK_AT_AT, - STATE(5890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 14, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [269815] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5619), 1, - anon_sym_in, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5891), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(7130), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [269863] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5623), 1, - anon_sym_in, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5892), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(6969), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [269911] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(8016), 1, - sym__identifier, - ACTIONS(8018), 1, - anon_sym_POUND, - STATE(5893), 1, - sym_attribute, - STATE(6000), 1, - sym_type_constructor_path, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(5717), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [269951] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(8016), 1, - sym__identifier, - ACTIONS(8026), 1, - anon_sym_POUND, - STATE(5894), 1, - sym_attribute, - STATE(5983), 1, - sym_type_constructor_path, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 5, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - ACTIONS(5615), 5, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - [269991] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7955), 1, - anon_sym_LBRACK_AT_AT, - STATE(5895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270021] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8030), 1, - anon_sym_LBRACK_AT_AT, - STATE(5896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8028), 14, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_GT, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270051] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8032), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5897), 1, - sym_attribute, - STATE(6153), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8034), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270091] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8036), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5898), 1, - sym_attribute, - STATE(6178), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8038), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270131] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8030), 1, - anon_sym_LBRACK_AT_AT, - STATE(5899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8028), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270161] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - ACTIONS(5848), 3, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5846), 10, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [270193] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8040), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5901), 1, - sym_attribute, - STATE(6212), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8042), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270233] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8044), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5902), 1, - sym_attribute, - STATE(6203), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8046), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270273] = 14, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5685), 1, - anon_sym_in, - ACTIONS(7838), 1, - anon_sym_LPAREN, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(5903), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - STATE(7080), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270321] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8048), 1, - anon_sym_RPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5904), 1, - sym_attribute, - STATE(8489), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270366] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8052), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5905), 1, - sym_attribute, - STATE(9296), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270411] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8054), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5906), 1, - sym_attribute, - STATE(9727), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270456] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8056), 1, - anon_sym_COLON_GT, - ACTIONS(8058), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5907), 1, - sym_attribute, - STATE(6152), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8060), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270493] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8062), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5908), 1, - sym_attribute, - STATE(8488), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270538] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8064), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270565] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8066), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5910), 1, - sym_attribute, - STATE(9705), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270610] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8068), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [270637] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8070), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5912), 1, - sym_attribute, - STATE(8973), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270682] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5832), 1, - anon_sym_COLON2, - STATE(5913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4648), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(4646), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [270713] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7929), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(5670), 1, - sym_type_binding, - STATE(5914), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7043), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9436), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [270764] = 13, - ACTIONS(111), 1, - anon_sym_LBRACK, - ACTIONS(121), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(137), 1, - anon_sym_LBRACE_LT, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8072), 1, - sym__identifier, - ACTIONS(8074), 1, - anon_sym_LPAREN, - ACTIONS(8076), 1, - anon_sym_LBRACE, - ACTIONS(8078), 1, - sym__capitalized_identifier, - STATE(1497), 1, - sym_parenthesized_operator, - STATE(1544), 1, - sym__value_name, - STATE(5915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1581), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [270809] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4190), 1, - anon_sym_LBRACK, - ACTIONS(4198), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4202), 1, - anon_sym_LBRACE_LT, - ACTIONS(8080), 1, - sym__identifier, - ACTIONS(8082), 1, - anon_sym_LPAREN, - ACTIONS(8084), 1, - anon_sym_LBRACE, - ACTIONS(8086), 1, - sym__capitalized_identifier, - STATE(4006), 1, - sym_parenthesized_operator, - STATE(4044), 1, - sym__value_name, - STATE(5916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3910), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [270854] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8088), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5917), 1, - sym_attribute, - STATE(8664), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [270899] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(955), 1, - anon_sym_LBRACK, - ACTIONS(965), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(985), 1, - anon_sym_LBRACE_LT, - ACTIONS(8090), 1, - sym__identifier, - ACTIONS(8092), 1, - anon_sym_LPAREN, - ACTIONS(8094), 1, - anon_sym_LBRACE, - ACTIONS(8096), 1, - sym__capitalized_identifier, - STATE(2350), 1, - sym__value_name, - STATE(2355), 1, - sym_parenthesized_operator, - STATE(5918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2335), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [270944] = 13, - ACTIONS(255), 1, - anon_sym_LBRACK, - ACTIONS(265), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(277), 1, - anon_sym_LBRACE_LT, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8098), 1, - sym__identifier, - ACTIONS(8100), 1, - anon_sym_LPAREN, - ACTIONS(8102), 1, - anon_sym_LBRACE, - ACTIONS(8104), 1, - sym__capitalized_identifier, - STATE(1778), 1, - sym__value_name, - STATE(1841), 1, - sym_parenthesized_operator, - STATE(5919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1784), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [270989] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6284), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(5920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 12, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_as, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [271020] = 13, - ACTIONS(187), 1, - anon_sym_LBRACK, - ACTIONS(197), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(209), 1, - anon_sym_LBRACE_LT, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8106), 1, - sym__identifier, - ACTIONS(8108), 1, - anon_sym_LPAREN, - ACTIONS(8110), 1, - anon_sym_LBRACE, - ACTIONS(8112), 1, - sym__capitalized_identifier, - STATE(1660), 1, - sym_parenthesized_operator, - STATE(1703), 1, - sym__value_name, - STATE(5921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1709), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271065] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(8114), 1, - sym__identifier, - ACTIONS(8116), 1, - anon_sym_LPAREN, - ACTIONS(8118), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, - sym__capitalized_identifier, - STATE(2782), 1, - sym_parenthesized_operator, - STATE(2813), 1, - sym__value_name, - STATE(5922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2812), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271110] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8122), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5923), 1, - sym_attribute, - STATE(9319), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271155] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8124), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5924), 1, - sym_attribute, - STATE(8563), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271200] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8126), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5925), 1, - sym_attribute, - STATE(9513), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271245] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8128), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5926), 1, - sym_attribute, - STATE(9718), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271290] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2663), 1, - anon_sym_LBRACK, - ACTIONS(2671), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2675), 1, - anon_sym_LBRACE_LT, - ACTIONS(8130), 1, - sym__identifier, - ACTIONS(8132), 1, - anon_sym_LPAREN, - ACTIONS(8134), 1, - anon_sym_LBRACE, - ACTIONS(8136), 1, - sym__capitalized_identifier, - STATE(3388), 1, - sym__value_name, - STATE(3412), 1, - sym_parenthesized_operator, - STATE(5927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3353), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271335] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8138), 1, - anon_sym_COLON_GT, - ACTIONS(8140), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5928), 1, - sym_attribute, - STATE(6158), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8142), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [271372] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8144), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5929), 1, - sym_attribute, - STATE(9526), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271417] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8146), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5930), 1, - sym_attribute, - STATE(8910), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271462] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8148), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5931), 1, - sym_attribute, - STATE(9249), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271507] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8150), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5932), 1, - sym_attribute, - STATE(9191), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271552] = 13, - ACTIONS(25), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(65), 1, - anon_sym_LBRACE_LT, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8152), 1, - sym__identifier, - ACTIONS(8154), 1, - anon_sym_LPAREN, - ACTIONS(8156), 1, - anon_sym_LBRACE, - ACTIONS(8158), 1, - sym__capitalized_identifier, - STATE(1851), 1, - sym__value_name, - STATE(1861), 1, - sym_parenthesized_operator, - STATE(5933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1849), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271597] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8160), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5934), 1, - sym_attribute, - STATE(8519), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271642] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8162), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5935), 1, - sym_attribute, - STATE(9648), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271687] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8164), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5936), 1, - sym_attribute, - STATE(8401), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [271732] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4546), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [271759] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(7941), 1, - sym__identifier, - STATE(5867), 1, - sym_type_binding, - STATE(5938), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7038), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9626), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [271810] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8166), 1, - anon_sym_COLON_GT, - ACTIONS(8168), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(5939), 1, - sym_attribute, - STATE(6216), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8170), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [271847] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(8118), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, - sym__capitalized_identifier, - ACTIONS(8172), 1, - sym__identifier, - ACTIONS(8174), 1, - anon_sym_LPAREN, - STATE(2813), 1, - sym__value_name, - STATE(5940), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2812), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271892] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4266), 1, - anon_sym_LBRACK, - ACTIONS(4274), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4278), 1, - anon_sym_LBRACE_LT, - ACTIONS(8176), 1, - sym__identifier, - ACTIONS(8178), 1, - anon_sym_LPAREN, - ACTIONS(8180), 1, - anon_sym_LBRACE, - ACTIONS(8182), 1, - sym__capitalized_identifier, - STATE(2910), 1, - sym_parenthesized_operator, - STATE(2970), 1, - sym__value_name, - STATE(5941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3034), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [271937] = 9, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(4993), 1, - sym_item_attribute, - STATE(5942), 1, - sym_attribute, - STATE(6218), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8184), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [271974] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8186), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5943), 1, - sym_attribute, - STATE(9175), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272019] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7929), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(5659), 1, - sym_type_binding, - STATE(5944), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7043), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9436), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [272070] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7929), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(5651), 1, - sym_type_binding, - STATE(5945), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7043), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9436), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [272121] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8188), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5946), 1, - sym_attribute, - STATE(8947), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272166] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4228), 1, - anon_sym_LBRACK, - ACTIONS(4236), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4240), 1, - anon_sym_LBRACE_LT, - ACTIONS(8190), 1, - sym__identifier, - ACTIONS(8192), 1, - anon_sym_LPAREN, - ACTIONS(8194), 1, - anon_sym_LBRACE, - ACTIONS(8196), 1, - sym__capitalized_identifier, - STATE(2921), 1, - sym_parenthesized_operator, - STATE(3035), 1, - sym__value_name, - STATE(5947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2930), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272211] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8198), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5948), 1, - sym_attribute, - STATE(8384), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272256] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8200), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5949), 1, - sym_attribute, - STATE(8849), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272301] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8202), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5950), 1, - sym_attribute, - STATE(8575), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272346] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(7941), 1, - sym__identifier, - STATE(5651), 1, - sym_type_binding, - STATE(5951), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7038), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9626), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [272397] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2762), 1, - anon_sym_LBRACK, - ACTIONS(2770), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2774), 1, - anon_sym_LBRACE_LT, - ACTIONS(8204), 1, - sym__identifier, - ACTIONS(8206), 1, - anon_sym_LPAREN, - ACTIONS(8208), 1, - anon_sym_LBRACE, - ACTIONS(8210), 1, - sym__capitalized_identifier, - STATE(3474), 1, - sym__value_name, - STATE(3482), 1, - sym_parenthesized_operator, - STATE(5952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3514), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272442] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8212), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5953), 1, - sym_attribute, - STATE(8444), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272487] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4006), 1, - anon_sym_LBRACK, - ACTIONS(4012), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4016), 1, - anon_sym_LBRACE_LT, - ACTIONS(8118), 1, - anon_sym_LBRACE, - ACTIONS(8120), 1, - sym__capitalized_identifier, - ACTIONS(8174), 1, - anon_sym_LPAREN, - ACTIONS(8214), 1, - sym__identifier, - STATE(2813), 1, - sym__value_name, - STATE(5954), 1, - sym_attribute, - STATE(6017), 1, - sym_parenthesized_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2812), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272532] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8216), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5955), 1, - sym_attribute, - STATE(9067), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272577] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4128), 1, - anon_sym_LBRACK, - ACTIONS(4136), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(4140), 1, - anon_sym_LBRACE_LT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(8220), 1, - anon_sym_LPAREN, - ACTIONS(8222), 1, - anon_sym_LBRACE, - ACTIONS(8224), 1, - sym__capitalized_identifier, - STATE(3084), 1, - sym_parenthesized_operator, - STATE(3160), 1, - sym__value_name, - STATE(5956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3159), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272622] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8226), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5957), 1, - sym_attribute, - STATE(8449), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272667] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8228), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5958), 1, - sym_attribute, - STATE(9199), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272712] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1023), 1, - anon_sym_LBRACK, - ACTIONS(1033), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(1045), 1, - anon_sym_LBRACE_LT, - ACTIONS(8230), 1, - sym__identifier, - ACTIONS(8232), 1, - anon_sym_LPAREN, - ACTIONS(8234), 1, - anon_sym_LBRACE, - ACTIONS(8236), 1, - sym__capitalized_identifier, - STATE(2592), 1, - sym_parenthesized_operator, - STATE(2627), 1, - sym__value_name, - STATE(5959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(2533), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272757] = 13, - ACTIONS(399), 1, - anon_sym_LBRACK, - ACTIONS(409), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(429), 1, - anon_sym_LBRACE_LT, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8238), 1, - sym__identifier, - ACTIONS(8240), 1, - anon_sym_LPAREN, - ACTIONS(8242), 1, - anon_sym_LBRACE, - ACTIONS(8244), 1, - sym__capitalized_identifier, - STATE(1501), 1, - sym_parenthesized_operator, - STATE(1529), 1, - sym__value_name, - STATE(5960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1513), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272802] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - ACTIONS(8248), 1, - anon_sym_LBRACK_AT_AT, - STATE(5961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8246), 11, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [272835] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(487), 1, - anon_sym_LBRACK, - ACTIONS(497), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(517), 1, - anon_sym_LBRACE_LT, - ACTIONS(8250), 1, - sym__identifier, - ACTIONS(8252), 1, - anon_sym_LPAREN, - ACTIONS(8254), 1, - anon_sym_LBRACE, - ACTIONS(8256), 1, - sym__capitalized_identifier, - STATE(1448), 1, - sym_parenthesized_operator, - STATE(1467), 1, - sym__value_name, - STATE(5962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(1468), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [272880] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8258), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5963), 1, - sym_attribute, - STATE(8753), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272925] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8260), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5964), 1, - sym_attribute, - STATE(9277), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [272970] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8262), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5965), 1, - sym_attribute, - STATE(8722), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273015] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8264), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5966), 1, - sym_attribute, - STATE(8859), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273060] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8266), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5967), 1, - sym_attribute, - STATE(9270), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273105] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3271), 1, - anon_sym_LBRACK, - ACTIONS(3279), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(3283), 1, - anon_sym_LBRACE_LT, - ACTIONS(8268), 1, - sym__identifier, - ACTIONS(8270), 1, - anon_sym_LPAREN, - ACTIONS(8272), 1, - anon_sym_LBRACE, - ACTIONS(8274), 1, - sym__capitalized_identifier, - STATE(4027), 1, - sym__value_name, - STATE(4030), 1, - sym_parenthesized_operator, - STATE(5968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3938), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [273150] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8276), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5969), 1, - sym_attribute, - STATE(8595), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273195] = 16, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - ACTIONS(7941), 1, - sym__identifier, - STATE(5863), 1, - sym_type_binding, - STATE(5970), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7038), 1, - sym__type_params, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - STATE(9626), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [273246] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8278), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5971), 1, - sym_attribute, - STATE(8861), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273291] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5656), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [273318] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8280), 14, - anon_sym_SEMI_SEMI, - anon_sym_external, - anon_sym_type, - anon_sym_RBRACK, - anon_sym_exception, - anon_sym_module, - anon_sym_open, - anon_sym_include, - anon_sym_class, - anon_sym_val, - anon_sym_end, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [273345] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8282), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5974), 1, - sym_attribute, - STATE(8917), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273390] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(5341), 1, - anon_sym_LPAREN, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(8284), 1, - anon_sym_RPAREN, - STATE(4602), 1, - sym__simple_module_expression_ext, - STATE(5975), 1, - sym_attribute, - STATE(9089), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4574), 2, - sym__simple_module_expression, - sym__extension, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(4600), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [273435] = 13, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2810), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(2814), 1, - anon_sym_LBRACE_LT, - ACTIONS(8286), 1, - sym__identifier, - ACTIONS(8288), 1, - anon_sym_LPAREN, - ACTIONS(8290), 1, - anon_sym_LBRACE, - ACTIONS(8292), 1, - sym__capitalized_identifier, - STATE(3676), 1, - sym_parenthesized_operator, - STATE(3679), 1, - sym__value_name, - STATE(5976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3593), 5, - sym_list_expression, - sym_array_expression, - sym_record_expression, - sym_package_expression, - sym_object_copy_expression, - [273480] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8298), 1, - sym__right_quoted_string_delimiter, - STATE(5977), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9010), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273514] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8300), 1, - sym__right_quoted_string_delimiter, - STATE(5978), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8804), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273548] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8302), 1, - sym__right_quoted_string_delimiter, - STATE(5979), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8600), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273582] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5771), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5769), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273610] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5818), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5816), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273638] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8304), 1, - sym__right_quoted_string_delimiter, - STATE(5982), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8578), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273672] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5826), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5824), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273700] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8306), 1, - sym__right_quoted_string_delimiter, - STATE(5984), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8913), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273734] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8308), 1, - sym__right_quoted_string_delimiter, - STATE(5985), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8631), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273768] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8310), 1, - sym__right_quoted_string_delimiter, - STATE(5986), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8369), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273802] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5856), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5854), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273830] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8312), 1, - sym__right_quoted_string_delimiter, - STATE(5988), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8594), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273864] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3317), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3319), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273892] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8314), 1, - sym__right_quoted_string_delimiter, - STATE(5990), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8363), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273926] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8316), 1, - sym__right_quoted_string_delimiter, - STATE(5991), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8395), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [273960] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5790), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5788), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [273988] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5802), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5800), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274016] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - ACTIONS(8016), 1, - sym__identifier, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5994), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(5384), 4, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_as, - [274054] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(5995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5840), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5838), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274082] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5450), 1, - anon_sym_STAR, - ACTIONS(5998), 1, - anon_sym_POUND, - ACTIONS(8016), 1, - sym__identifier, - STATE(4658), 1, - sym_type_constructor_path, - STATE(5996), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 3, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - ACTIONS(5509), 4, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_as, - [274122] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8318), 1, - sym__right_quoted_string_delimiter, - STATE(5997), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8911), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274156] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(5998), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7092), 1, - sym__type_params, - STATE(7691), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [274204] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8320), 1, - sym__right_quoted_string_delimiter, - STATE(5999), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8818), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274238] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5749), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5747), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274266] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8322), 1, - sym__right_quoted_string_delimiter, - STATE(6001), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8557), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274300] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5783), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5781), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274328] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8324), 1, - sym__right_quoted_string_delimiter, - STATE(6003), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8808), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274362] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8326), 1, - sym__right_quoted_string_delimiter, - STATE(6004), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8925), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274396] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5864), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5862), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274424] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5814), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5812), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274452] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8328), 1, - sym__right_quoted_string_delimiter, - STATE(6007), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8769), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274486] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8330), 1, - sym__right_quoted_string_delimiter, - STATE(6008), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8927), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274520] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8332), 1, - sym__right_quoted_string_delimiter, - STATE(6009), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8321), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274554] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8334), 1, - sym__right_quoted_string_delimiter, - STATE(6010), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8550), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274588] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8336), 1, - sym__right_quoted_string_delimiter, - STATE(6011), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8621), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274622] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8338), 1, - sym__right_quoted_string_delimiter, - STATE(6012), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9104), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274656] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8340), 1, - sym__right_quoted_string_delimiter, - STATE(6013), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8763), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274690] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5848), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5846), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274718] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8342), 1, - sym__right_quoted_string_delimiter, - STATE(6015), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8906), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274752] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7959), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(6016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7957), 10, - anon_sym_EQ, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [274784] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3421), 2, - anon_sym_COLON2, - anon_sym_POUND, - ACTIONS(3423), 11, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - sym_hash_operator, - [274812] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7886), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(6018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7880), 10, - anon_sym_EQ, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [274844] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8344), 1, - sym__right_quoted_string_delimiter, - STATE(6019), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8637), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274878] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5830), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5828), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274906] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5844), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5842), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274934] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3353), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3355), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [274962] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8346), 1, - sym__right_quoted_string_delimiter, - STATE(6023), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8899), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [274996] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5884), 1, - anon_sym_POUND, - ACTIONS(8016), 1, - sym__identifier, - STATE(4644), 1, - sym_type_constructor_path, - STATE(6024), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5611), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(5615), 4, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_as, - [275034] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5998), 1, - anon_sym_POUND, - ACTIONS(8016), 1, - sym__identifier, - STATE(4658), 1, - sym_type_constructor_path, - STATE(6025), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5715), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_STAR, - ACTIONS(5717), 4, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_as, - [275072] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8348), 1, - sym__right_quoted_string_delimiter, - STATE(6026), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8934), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275106] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8350), 1, - sym__right_quoted_string_delimiter, - STATE(6027), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8896), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275140] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8352), 1, - sym__right_quoted_string_delimiter, - STATE(6028), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8939), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275174] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8354), 1, - sym__right_quoted_string_delimiter, - STATE(6029), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8887), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275208] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8356), 1, - sym__right_quoted_string_delimiter, - STATE(6030), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8654), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275242] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(6031), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7023), 1, - sym__type_params, - STATE(7679), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [275290] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8358), 1, - sym__right_quoted_string_delimiter, - STATE(6032), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8643), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275324] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8360), 1, - sym__right_quoted_string_delimiter, - STATE(6033), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8878), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275358] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8362), 1, - sym__right_quoted_string_delimiter, - STATE(6034), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8405), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275392] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3473), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3475), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275420] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8364), 1, - sym__right_quoted_string_delimiter, - STATE(6036), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8941), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275454] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(6037), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(6998), 1, - sym__type_params, - STATE(7747), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [275502] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3485), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3487), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275530] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8366), 1, - sym__right_quoted_string_delimiter, - STATE(6039), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8340), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275564] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8368), 1, - sym__right_quoted_string_delimiter, - STATE(6040), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8948), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275598] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8370), 1, - sym__right_quoted_string_delimiter, - STATE(6041), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9125), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275632] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5733), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5731), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275660] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8372), 1, - sym__right_quoted_string_delimiter, - STATE(6043), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8872), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275694] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5836), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5834), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275722] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5868), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5866), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275750] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8374), 1, - sym__right_quoted_string_delimiter, - STATE(6046), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8534), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275784] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4578), 1, - anon_sym_COLON2, - STATE(6047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4576), 12, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [275812] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3535), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3537), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [275840] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8376), 1, - sym__right_quoted_string_delimiter, - STATE(6049), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8346), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275874] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8378), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6050), 1, - sym_attribute, - STATE(6169), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8380), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [275908] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8382), 1, - sym__right_quoted_string_delimiter, - STATE(6051), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8663), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [275942] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3706), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6052), 1, - sym_attribute, - STATE(6132), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3712), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [275976] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3401), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(3403), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [276004] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8384), 1, - sym__right_quoted_string_delimiter, - STATE(6054), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8953), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276038] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5761), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5759), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [276066] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8386), 1, - sym__right_quoted_string_delimiter, - STATE(6056), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8955), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276100] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5775), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5773), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [276128] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8388), 1, - sym__right_quoted_string_delimiter, - STATE(6058), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8920), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276162] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5779), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5777), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [276190] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8390), 1, - sym__right_quoted_string_delimiter, - STATE(6060), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8679), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276224] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8392), 1, - sym__right_quoted_string_delimiter, - STATE(6061), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9030), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276258] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8394), 1, - sym__right_quoted_string_delimiter, - STATE(6062), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9028), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276292] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8396), 1, - sym__right_quoted_string_delimiter, - STATE(6063), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9228), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276326] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8398), 1, - sym__right_quoted_string_delimiter, - STATE(6064), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9025), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276360] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8400), 1, - sym__right_quoted_string_delimiter, - STATE(6065), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8513), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276394] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8402), 1, - sym__right_quoted_string_delimiter, - STATE(6066), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9023), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276428] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8404), 1, - sym__right_quoted_string_delimiter, - STATE(6067), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9263), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276462] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8406), 1, - sym__right_quoted_string_delimiter, - STATE(6068), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8962), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276496] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8408), 1, - sym__right_quoted_string_delimiter, - STATE(6069), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9020), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276530] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8412), 1, - anon_sym_as, - STATE(4993), 1, - sym_item_attribute, - STATE(6070), 1, - sym_attribute, - STATE(6159), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8410), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [276564] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8414), 1, - sym__right_quoted_string_delimiter, - STATE(6071), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8506), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276598] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8416), 1, - sym__right_quoted_string_delimiter, - STATE(6072), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8685), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276632] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8418), 1, - sym__right_quoted_string_delimiter, - STATE(6073), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9018), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276666] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8420), 1, - sym__right_quoted_string_delimiter, - STATE(6074), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8462), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276700] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8422), 1, - sym__right_quoted_string_delimiter, - STATE(6075), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9015), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276734] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8424), 1, - sym__right_quoted_string_delimiter, - STATE(6076), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9013), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276768] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8426), 1, - sym__right_quoted_string_delimiter, - STATE(6077), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8967), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276802] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8428), 1, - sym__right_quoted_string_delimiter, - STATE(6078), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8788), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276836] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8430), 1, - sym__right_quoted_string_delimiter, - STATE(6079), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8858), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276870] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8432), 1, - sym__right_quoted_string_delimiter, - STATE(6080), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8747), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276904] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8434), 1, - sym__right_quoted_string_delimiter, - STATE(6081), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9008), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [276938] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5605), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5603), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [276966] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8436), 1, - sym__right_quoted_string_delimiter, - STATE(6083), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8490), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277000] = 11, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2159), 1, - anon_sym_LBRACK_PERCENT, - ACTIONS(2161), 1, - anon_sym_LBRACE_PERCENT, - ACTIONS(7838), 1, - anon_sym_LPAREN, - STATE(6084), 1, - sym_attribute, - STATE(6291), 1, - sym__simple_module_expression_ext, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5337), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - STATE(4877), 2, - sym_extension, - sym_quoted_extension, - STATE(6290), 2, - sym__simple_module_expression, - sym__extension, - STATE(6275), 3, - sym_typed_module_expression, - sym_packed_module, - sym_parenthesized_module_expression, - [277040] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8438), 1, - sym__right_quoted_string_delimiter, - STATE(6085), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8716), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277074] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8440), 1, - sym__right_quoted_string_delimiter, - STATE(6086), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8844), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277108] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8442), 1, - sym__right_quoted_string_delimiter, - STATE(6087), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8969), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277142] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8444), 1, - sym__right_quoted_string_delimiter, - STATE(6088), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9005), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277176] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8446), 1, - sym__right_quoted_string_delimiter, - STATE(6089), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8838), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277210] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8448), 1, - sym__right_quoted_string_delimiter, - STATE(6090), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8976), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277244] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8450), 1, - sym__right_quoted_string_delimiter, - STATE(6091), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8380), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277278] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8452), 1, - sym__right_quoted_string_delimiter, - STATE(6092), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9189), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277312] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8454), 1, - sym__right_quoted_string_delimiter, - STATE(6093), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8981), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277346] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8456), 1, - sym__right_quoted_string_delimiter, - STATE(6094), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8983), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277380] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3732), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6095), 1, - sym_attribute, - STATE(6129), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3736), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [277414] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8460), 1, - anon_sym_as, - STATE(4993), 1, - sym_item_attribute, - STATE(6096), 1, - sym_attribute, - STATE(6143), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8458), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [277448] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4584), 1, - anon_sym_COLON2, - STATE(6097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4582), 12, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [277476] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8462), 1, - sym__right_quoted_string_delimiter, - STATE(6098), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8990), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277510] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5595), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5593), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [277538] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7884), 1, - anon_sym_as, - ACTIONS(7955), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(6100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 10, - anon_sym_EQ, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [277570] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8464), 1, - sym__right_quoted_string_delimiter, - STATE(6101), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8469), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277604] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8466), 1, - sym__right_quoted_string_delimiter, - STATE(6102), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8406), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277638] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8468), 1, - sym__right_quoted_string_delimiter, - STATE(6103), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8705), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277672] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8470), 1, - sym__right_quoted_string_delimiter, - STATE(6104), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8727), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277706] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3646), 1, - anon_sym_COLON2, - ACTIONS(8472), 1, - anon_sym_DOT_DOT, - STATE(6105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [277736] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8474), 1, - sym__right_quoted_string_delimiter, - STATE(6106), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9003), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277770] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5382), 13, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [277796] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8476), 1, - sym__right_quoted_string_delimiter, - STATE(6108), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8461), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277830] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(3720), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6109), 1, - sym_attribute, - STATE(6204), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3724), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [277864] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8478), 1, - sym__right_quoted_string_delimiter, - STATE(6110), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8824), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277898] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8480), 1, - sym__right_quoted_string_delimiter, - STATE(6111), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8810), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277932] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8482), 1, - sym__right_quoted_string_delimiter, - STATE(6112), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(9155), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [277966] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8484), 1, - sym__right_quoted_string_delimiter, - STATE(6113), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8721), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [278000] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8486), 1, - sym__right_quoted_string_delimiter, - STATE(6114), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8995), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [278034] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8488), 1, - sym__right_quoted_string_delimiter, - STATE(6115), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8441), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [278068] = 15, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(7931), 1, - anon_sym_LPAREN, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(7939), 1, - anon_sym__, - STATE(6116), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7007), 1, - sym__type_params, - STATE(7338), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - STATE(8169), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [278116] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8490), 1, - sym__right_quoted_string_delimiter, - STATE(6117), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8997), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [278150] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5349), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5347), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [278178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5822), 6, - anon_sym_and, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - sym__identifier, - ACTIONS(5820), 7, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - anon_sym_LBRACK_AT_AT, - sym__capitalized_identifier, - [278206] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8492), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6120), 1, - sym_attribute, - STATE(6233), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8494), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278240] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8496), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_item_attribute, - STATE(6121), 1, - sym_attribute, - STATE(6196), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8498), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278274] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5450), 1, - anon_sym_STAR, - STATE(6122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5446), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [278302] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8500), 1, - sym__right_quoted_string_delimiter, - STATE(6123), 1, - sym_attribute, - STATE(6157), 1, - aux_sym_quoted_string_content_repeat1, - STATE(8417), 1, - sym_quoted_string_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [278336] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6124), 1, - sym_attribute, - STATE(6199), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8502), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278367] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3712), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278398] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(5154), 1, - anon_sym_DOT_DOT, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8504), 1, - anon_sym_private, - ACTIONS(8506), 1, - anon_sym_LBRACE, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5034), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [278439] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6127), 1, - sym_attribute, - STATE(6245), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8508), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278470] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8510), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278501] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8498), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278532] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5108), 1, - anon_sym_COLON2, - STATE(6130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5106), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [278559] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5112), 1, - anon_sym_COLON2, - STATE(6131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5110), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [278586] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8494), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278617] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6133), 1, - sym_attribute, - STATE(6228), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8512), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278648] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6134), 1, - sym_attribute, - STATE(6246), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8514), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278679] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5507), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [278704] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8518), 1, - anon_sym_LPAREN, - ACTIONS(8520), 1, - anon_sym_COLON2, - STATE(6136), 1, - sym_attribute, - STATE(6334), 1, - aux_sym_module_binding_repeat1, - STATE(6505), 1, - sym_module_parameter, - STATE(6574), 1, - sym__module_typed, - STATE(6860), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6012), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(8516), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [278747] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3724), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278778] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5446), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [278803] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8524), 1, - anon_sym_COLON2, - STATE(6139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8522), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [278830] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6140), 1, - sym_attribute, - STATE(6206), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8526), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278861] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5174), 1, - anon_sym_COLON2, - STATE(6141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5172), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [278888] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5178), 1, - anon_sym_COLON2, - STATE(6142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5176), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [278915] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8526), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278946] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6144), 1, - sym_attribute, - STATE(6223), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8528), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [278977] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8530), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279008] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8060), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279039] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8532), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279070] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8534), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279101] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8536), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279132] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8540), 1, - anon_sym_COLON2, - STATE(6150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8538), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279159] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4702), 1, - anon_sym_COLON2, - STATE(6151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4700), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279186] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8042), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279217] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8542), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279248] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7343), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279279] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6155), 1, - sym_attribute, - STATE(6221), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8544), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279310] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6156), 1, - sym_attribute, - STATE(6180), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7444), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279341] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8546), 1, - sym__right_quoted_string_delimiter, - STATE(6157), 1, - sym_attribute, - STATE(6190), 1, - aux_sym_quoted_string_content_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8296), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8294), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [279372] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8046), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279403] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8458), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279434] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6160), 1, - sym_attribute, - STATE(6208), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8548), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279465] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6161), 1, - sym_attribute, - STATE(6201), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8550), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279496] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8552), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279527] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6163), 1, - sym_attribute, - STATE(6210), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8554), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279558] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8009), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279589] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5124), 1, - anon_sym_COLON2, - STATE(6165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5122), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279616] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8170), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279647] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8556), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279678] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8558), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279709] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8560), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279740] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5511), 12, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_GT, - anon_sym_LBRACK_AT_AT, - [279765] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5144), 1, - anon_sym_COLON2, - STATE(6171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5142), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279792] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3736), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279823] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8562), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279854] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8564), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279885] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5140), 1, - anon_sym_COLON2, - STATE(6175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5138), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279912] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3646), 1, - anon_sym_COLON2, - STATE(6176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279939] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5136), 1, - anon_sym_COLON2, - STATE(6177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5134), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [279966] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8566), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [279997] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6179), 1, - sym_attribute, - STATE(6248), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8568), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280028] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7235), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280059] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5104), 1, - anon_sym_COLON2, - STATE(6181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5102), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280086] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6174), 1, - aux_sym_expression_item_repeat1, - STATE(6182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8570), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280117] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5120), 1, - anon_sym_COLON2, - STATE(6183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5118), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280144] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6184), 1, - sym_attribute, - STATE(6251), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8572), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280175] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4694), 1, - anon_sym_COLON2, - STATE(6185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4692), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280202] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4746), 1, - anon_sym_COLON2, - STATE(6186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4744), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280229] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5166), 1, - anon_sym_COLON2, - STATE(6187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5164), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280256] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4726), 1, - anon_sym_COLON2, - STATE(6188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4724), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280283] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6189), 1, - sym_attribute, - STATE(6191), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8574), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280314] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8582), 1, - sym__right_quoted_string_delimiter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8579), 2, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - STATE(6190), 2, - sym_attribute, - aux_sym_quoted_string_content_repeat1, - ACTIONS(8576), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [280343] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8584), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280374] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5170), 1, - anon_sym_COLON2, - STATE(6192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5168), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280401] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8586), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280432] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(5090), 1, - anon_sym_DOT_DOT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8588), 1, - anon_sym_private, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5455), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [280473] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4628), 1, - anon_sym_COLON2, - STATE(6195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4626), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280500] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8590), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280531] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6128), 1, - aux_sym_expression_item_repeat1, - STATE(6197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8592), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280562] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5182), 1, - anon_sym_COLON2, - STATE(6198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5180), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280589] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8594), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280620] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(5054), 1, - anon_sym_DOT_DOT, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8596), 1, - anon_sym_private, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5047), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [280661] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8598), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280692] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5080), 1, - anon_sym_COLON2, - STATE(6202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5078), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [280719] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8038), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280750] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8380), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280781] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6145), 1, - aux_sym_expression_item_repeat1, - STATE(6205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8600), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280812] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8602), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280843] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6148), 1, - aux_sym_expression_item_repeat1, - STATE(6207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8602), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280874] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8604), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280905] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6149), 1, - aux_sym_expression_item_repeat1, - STATE(6209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8606), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280936] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8608), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [280967] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(8518), 1, - anon_sym_LPAREN, - ACTIONS(8520), 1, - anon_sym_COLON2, - STATE(6136), 1, - aux_sym_module_binding_repeat1, - STATE(6211), 1, - sym_attribute, - STATE(6505), 1, - sym_module_parameter, - STATE(6506), 1, - sym__module_typed, - STATE(6914), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5979), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(8610), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [281010] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8034), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281041] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5128), 1, - anon_sym_COLON2, - STATE(6213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5126), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281068] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8142), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281099] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6173), 1, - aux_sym_expression_item_repeat1, - STATE(6215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8612), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281130] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8022), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281161] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6162), 1, - aux_sym_expression_item_repeat1, - STATE(6217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8614), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281192] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8616), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281223] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8620), 1, - anon_sym_COLON2, - STATE(6219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8618), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281250] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8628), 1, - anon_sym_COLON2, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - STATE(6220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8622), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_when, - [281285] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8634), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281316] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6168), 1, - aux_sym_expression_item_repeat1, - STATE(6222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8636), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281347] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8638), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281378] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8642), 1, - anon_sym_COLON2, - STATE(6224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8640), 7, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_when, - [281413] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8646), 1, - anon_sym_COLON2, - STATE(6225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8644), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281440] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5026), 1, - anon_sym_COLON2, - STATE(6226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5024), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281467] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6167), 1, - aux_sym_expression_item_repeat1, - STATE(6227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8648), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281498] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8650), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281529] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6147), 1, - aux_sym_expression_item_repeat1, - STATE(6229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8652), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281560] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8656), 1, - anon_sym_COLON2, - STATE(6230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8654), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281587] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8660), 1, - anon_sym_COLON2, - STATE(6231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8658), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_when, - [281616] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8664), 1, - anon_sym_COLON2, - STATE(6232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8662), 9, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_when, - [281647] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8666), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281678] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8670), 1, - anon_sym_COLON2, - STATE(6234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8668), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281705] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5188), 1, - anon_sym_COLON2, - STATE(6235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5186), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281732] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4758), 1, - anon_sym_COLON2, - STATE(6236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4756), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281759] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7379), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281790] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8674), 1, - anon_sym_COLON2, - STATE(6238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8672), 10, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_when, - [281819] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(5092), 1, - anon_sym_DOT_DOT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8676), 1, - anon_sym_private, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5483), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [281860] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6240), 1, - sym_attribute, - STATE(6252), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7385), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281891] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6237), 1, - aux_sym_expression_item_repeat1, - STATE(6241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7235), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [281922] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8680), 1, - anon_sym_COLON2, - STATE(6242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8678), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281949] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8684), 1, - anon_sym_COLON2, - STATE(6243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8682), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [281976] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8686), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282007] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8688), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282038] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8690), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282069] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6244), 1, - aux_sym_expression_item_repeat1, - STATE(6247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8692), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282100] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8694), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282131] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7164), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282162] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5100), 1, - anon_sym_COLON2, - STATE(6250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5098), 11, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_when, - [282189] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8696), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282220] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7389), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282251] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6249), 1, - aux_sym_expression_item_repeat1, - STATE(6253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7389), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282282] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6154), 1, - aux_sym_expression_item_repeat1, - STATE(6254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7164), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282313] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3529), 11, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [282337] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6256), 1, - sym_attribute, - STATE(6270), 1, - aux_sym_expression_item_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8698), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282367] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3551), 1, - anon_sym_POUND, - STATE(6257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 10, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - anon_sym_as, - anon_sym_COLON_COLON, - sym_hash_operator, - [282393] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8700), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282423] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3393), 11, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [282447] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8702), 1, - anon_sym_DOT_DOT, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5457), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [282485] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8704), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282515] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8706), 1, - anon_sym_DOT_DOT, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5443), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [282553] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8708), 1, - anon_sym_DOT, - STATE(6263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5699), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [282579] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8710), 1, - anon_sym_DOT_DOT, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5031), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [282617] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6261), 1, - aux_sym_expression_item_repeat1, - STATE(6265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8712), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282647] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8714), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282677] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6258), 1, - aux_sym_expression_item_repeat1, - STATE(6267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8716), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282707] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8718), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282737] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6268), 1, - aux_sym_expression_item_repeat1, - STATE(6269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8720), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282767] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4918), 1, - aux_sym_expression_item_repeat1, - STATE(4993), 1, - sym_item_attribute, - STATE(6270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8722), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282797] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(2924), 1, - anon_sym_LBRACK_AT_AT, - STATE(4993), 1, - sym_item_attribute, - STATE(6266), 1, - aux_sym_expression_item_repeat1, - STATE(6271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8724), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [282827] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8728), 3, - sym__right_quoted_string_delimiter, - sym__null, - anon_sym_LBRACK_AT_AT_AT2, - ACTIONS(8726), 8, - anon_sym_, - anon_sym_LF, - anon_sym_TAB, - anon_sym_LBRACK_AT2, - anon_sym_LBRACK_AT_AT2, - aux_sym_quoted_string_content_token1, - sym_conversion_specification, - sym_pretty_printing_indication, - [282853] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8506), 1, - anon_sym_LBRACE, - ACTIONS(8730), 1, - anon_sym_DOT_DOT, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5048), 2, - sym_variant_declaration, - sym_record_declaration, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [282891] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5751), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [282914] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5792), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [282937] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8732), 1, - anon_sym_constraint, - STATE(6276), 1, - sym_attribute, - STATE(6281), 1, - aux_sym_type_binding_repeat1, - STATE(6384), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6268), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [282966] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8732), 1, - anon_sym_constraint, - STATE(6277), 1, - sym_attribute, - STATE(6294), 1, - aux_sym_type_binding_repeat1, - STATE(6384), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [282995] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5904), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5906), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6278), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283036] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5858), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283059] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5804), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283082] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8732), 1, - anon_sym_constraint, - STATE(6281), 1, - sym_attribute, - STATE(6297), 1, - aux_sym_type_binding_repeat1, - STATE(6384), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283111] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5850), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283134] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5755), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283157] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - STATE(6284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 9, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_as, - anon_sym_GT, - anon_sym_AMP, - [283182] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5765), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283205] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5739), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283228] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5743), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283251] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5808), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283274] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5896), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5898), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6289), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283315] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5727), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283338] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5796), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283361] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5699), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283384] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5890), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5892), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6293), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283425] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8732), 1, - anon_sym_constraint, - STATE(6294), 1, - sym_attribute, - STATE(6297), 1, - aux_sym_type_binding_repeat1, - STATE(6384), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6244), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283454] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5870), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5872), 1, - anon_sym_in, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6295), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283495] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2497), 1, - anon_sym_COLON2, - ACTIONS(8472), 1, - anon_sym_DOT_DOT, - STATE(6296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2493), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [283522] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8736), 1, - anon_sym_constraint, - STATE(6384), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6297), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(6237), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283549] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5900), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5902), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6298), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283590] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3319), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283613] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3403), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283636] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3355), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283659] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3475), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283682] = 13, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_DASH_GT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5886), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5888), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6303), 1, - sym_attribute, - STATE(7393), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283723] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3487), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283746] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3537), 10, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - anon_sym_LBRACK_PERCENT, - anon_sym_LBRACE_PERCENT, - [283769] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5942), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283791] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4710), 1, - anon_sym_COLON2, - STATE(6307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4708), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [283815] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4742), 1, - anon_sym_COLON2, - STATE(6308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4740), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [283839] = 12, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5874), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(5936), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6309), 1, - sym_attribute, - STATE(6982), 1, - aux_sym__constructor_argument_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283877] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5922), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283899] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5942), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(6000), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [283923] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8739), 1, - sym__identifier, - ACTIONS(8741), 1, - anon_sym_LPAREN, - ACTIONS(8743), 1, - anon_sym_LBRACK, - ACTIONS(8745), 1, - anon_sym_LBRACE, - ACTIONS(8747), 1, - sym_indexing_operator, - STATE(3158), 1, - sym_field_path, - STATE(6312), 1, - sym_attribute, - STATE(7486), 1, - sym_indexing_operator_path, - STATE(8442), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [283961] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4602), 1, - anon_sym_COLON2, - STATE(6313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4600), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [283985] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4698), 1, - anon_sym_COLON2, - STATE(6314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4696), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284009] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8749), 1, - anon_sym_private, - STATE(5199), 1, - sym_variant_declaration, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [284043] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8751), 1, - sym__identifier, - ACTIONS(8753), 1, - anon_sym_LPAREN, - ACTIONS(8755), 1, - anon_sym_LBRACK, - ACTIONS(8757), 1, - anon_sym_LBRACE, - STATE(3918), 1, - sym_field_path, - STATE(6316), 1, - sym_attribute, - STATE(7440), 1, - sym_indexing_operator_path, - STATE(8543), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284081] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4750), 1, - anon_sym_COLON2, - STATE(6317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4748), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284105] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4686), 1, - anon_sym_COLON2, - STATE(6318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4684), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284129] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4738), 1, - anon_sym_COLON2, - STATE(6319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4736), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284153] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8759), 1, - sym__identifier, - ACTIONS(8761), 1, - anon_sym_LPAREN, - ACTIONS(8763), 1, - anon_sym_LBRACK, - ACTIONS(8765), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_field_path, - STATE(6320), 1, - sym_attribute, - STATE(7716), 1, - sym_indexing_operator_path, - STATE(9241), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284191] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2497), 1, - anon_sym_COLON2, - STATE(6321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2493), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284215] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8767), 1, - sym__identifier, - ACTIONS(8769), 1, - anon_sym_LPAREN, - ACTIONS(8771), 1, - anon_sym_LBRACK, - ACTIONS(8773), 1, - anon_sym_LBRACE, - STATE(1415), 1, - sym_field_path, - STATE(6322), 1, - sym_attribute, - STATE(7419), 1, - sym_indexing_operator_path, - STATE(8672), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284253] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(6175), 1, - anon_sym_in, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6323), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 3, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_LBRACK_AT_AT, - [284287] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4714), 1, - anon_sym_COLON2, - STATE(6324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4712), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284311] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4674), 1, - anon_sym_COLON2, - STATE(6325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4672), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284335] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4670), 1, - anon_sym_COLON2, - STATE(6326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4668), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284359] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4718), 1, - anon_sym_COLON2, - STATE(6327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4716), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284383] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4662), 1, - anon_sym_COLON2, - STATE(6328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4660), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284407] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4606), 1, - anon_sym_COLON2, - STATE(6329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4604), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284431] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4610), 1, - anon_sym_COLON2, - STATE(6330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4608), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284455] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4658), 1, - anon_sym_COLON2, - STATE(6331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4656), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284479] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4614), 1, - anon_sym_COLON2, - STATE(6332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4612), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284503] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8775), 1, - sym__identifier, - ACTIONS(8777), 1, - anon_sym_LPAREN, - ACTIONS(8779), 1, - anon_sym_LBRACK, - ACTIONS(8781), 1, - anon_sym_LBRACE, - STATE(2430), 1, - sym_field_path, - STATE(6333), 1, - sym_attribute, - STATE(7429), 1, - sym_indexing_operator_path, - STATE(8587), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284541] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6124), 1, - anon_sym_COLON2, - ACTIONS(8783), 1, - anon_sym_LPAREN, - STATE(6505), 1, - sym_module_parameter, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6334), 2, - sym_attribute, - aux_sym_module_binding_repeat1, - ACTIONS(6122), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [284569] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4654), 1, - anon_sym_COLON2, - STATE(6335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4652), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284593] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4734), 1, - anon_sym_COLON2, - STATE(6336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4732), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284617] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4722), 1, - anon_sym_COLON2, - STATE(6337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4720), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284641] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4706), 1, - anon_sym_COLON2, - STATE(6338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4704), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284665] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8786), 1, - sym__identifier, - ACTIONS(8788), 1, - anon_sym_LPAREN, - ACTIONS(8790), 1, - anon_sym_LBRACK, - ACTIONS(8792), 1, - anon_sym_LBRACE, - STATE(3607), 1, - sym_field_path, - STATE(6339), 1, - sym_attribute, - STATE(7377), 1, - sym_indexing_operator_path, - STATE(8890), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284703] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4730), 1, - anon_sym_COLON2, - STATE(6340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4728), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284727] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8794), 1, - anon_sym_private, - STATE(5177), 1, - sym_constructor_declaration, - STATE(5199), 1, - sym_variant_declaration, - STATE(6341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [284761] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5932), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_DOT, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [284783] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8796), 1, - sym__identifier, - ACTIONS(8798), 1, - anon_sym_LPAREN, - ACTIONS(8800), 1, - anon_sym_LBRACK, - ACTIONS(8802), 1, - anon_sym_LBRACE, - STATE(1450), 1, - sym_field_path, - STATE(6343), 1, - sym_attribute, - STATE(7401), 1, - sym_indexing_operator_path, - STATE(8797), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284821] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8804), 1, - anon_sym_DASH_GT, - ACTIONS(8806), 1, - anon_sym_as, - STATE(6344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6330), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [284847] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8808), 1, - sym__identifier, - ACTIONS(8810), 1, - anon_sym_LPAREN, - ACTIONS(8812), 1, - anon_sym_LBRACK, - ACTIONS(8814), 1, - anon_sym_LBRACE, - STATE(2270), 1, - sym_field_path, - STATE(6345), 1, - sym_attribute, - STATE(7424), 1, - sym_indexing_operator_path, - STATE(8630), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284885] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8804), 1, - anon_sym_DASH_GT, - ACTIONS(8806), 1, - anon_sym_as, - STATE(6346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6300), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [284911] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4624), 1, - anon_sym_COLON2, - STATE(6347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4622), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284935] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4754), 1, - anon_sym_COLON2, - STATE(6348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4752), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [284959] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8816), 1, - sym__identifier, - ACTIONS(8818), 1, - anon_sym_LPAREN, - ACTIONS(8820), 1, - anon_sym_LBRACK, - ACTIONS(8822), 1, - anon_sym_LBRACE, - STATE(3518), 1, - sym_field_path, - STATE(6349), 1, - sym_attribute, - STATE(7413), 1, - sym_indexing_operator_path, - STATE(8714), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [284997] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8824), 1, - anon_sym_LPAREN, - ACTIONS(8826), 1, - anon_sym_DOT, - STATE(6350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6004), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [285023] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8828), 1, - sym__identifier, - ACTIONS(8830), 1, - anon_sym_LPAREN, - ACTIONS(8832), 1, - anon_sym_LBRACK, - ACTIONS(8834), 1, - anon_sym_LBRACE, - STATE(2809), 1, - sym_field_path, - STATE(6351), 1, - sym_attribute, - STATE(7513), 1, - sym_indexing_operator_path, - STATE(8394), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285061] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5922), 2, - anon_sym_LPAREN, - anon_sym_DOT, - ACTIONS(5918), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [285085] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - ACTIONS(8836), 1, - anon_sym_private, - STATE(5162), 1, - sym_variant_declaration, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [285119] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8830), 1, - anon_sym_LPAREN, - ACTIONS(8832), 1, - anon_sym_LBRACK, - ACTIONS(8834), 1, - anon_sym_LBRACE, - ACTIONS(8838), 1, - sym__identifier, - STATE(2809), 1, - sym_field_path, - STATE(6354), 1, - sym_attribute, - STATE(7513), 1, - sym_indexing_operator_path, - STATE(8692), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285157] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8840), 1, - sym__identifier, - ACTIONS(8842), 1, - anon_sym_LPAREN, - ACTIONS(8844), 1, - anon_sym_LBRACK, - ACTIONS(8846), 1, - anon_sym_LBRACE, - STATE(2925), 1, - sym_field_path, - STATE(6355), 1, - sym_attribute, - STATE(7460), 1, - sym_indexing_operator_path, - STATE(8452), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285195] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8848), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [285217] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8850), 1, - sym__identifier, - ACTIONS(8852), 1, - anon_sym_LPAREN, - ACTIONS(8854), 1, - anon_sym_LBRACK, - ACTIONS(8856), 1, - anon_sym_LBRACE, - STATE(1804), 1, - sym_field_path, - STATE(6357), 1, - sym_attribute, - STATE(7769), 1, - sym_indexing_operator_path, - STATE(8875), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285255] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8858), 1, - sym__identifier, - ACTIONS(8860), 1, - anon_sym_LPAREN, - ACTIONS(8862), 1, - anon_sym_LBRACK, - ACTIONS(8864), 1, - anon_sym_LBRACE, - STATE(1637), 1, - sym_field_path, - STATE(6358), 1, - sym_attribute, - STATE(7448), 1, - sym_indexing_operator_path, - STATE(8499), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285293] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8804), 1, - anon_sym_DASH_GT, - ACTIONS(8806), 1, - anon_sym_as, - STATE(6359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6346), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [285319] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8804), 1, - anon_sym_DASH_GT, - STATE(6360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 8, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [285343] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8866), 1, - sym__identifier, - ACTIONS(8868), 1, - anon_sym_LPAREN, - ACTIONS(8870), 1, - anon_sym_LBRACK, - ACTIONS(8872), 1, - anon_sym_LBRACE, - STATE(1755), 1, - sym_field_path, - STATE(6361), 1, - sym_attribute, - STATE(7470), 1, - sym_indexing_operator_path, - STATE(8332), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285381] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4644), 1, - anon_sym_COLON2, - STATE(6362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4642), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [285405] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4640), 1, - anon_sym_COLON2, - STATE(6363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4638), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [285429] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4636), 1, - anon_sym_COLON2, - STATE(6364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4634), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [285453] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8874), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [285475] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8876), 1, - sym__identifier, - ACTIONS(8878), 1, - anon_sym_LPAREN, - ACTIONS(8880), 1, - anon_sym_LBRACK, - ACTIONS(8882), 1, - anon_sym_LBRACE, - STATE(3032), 1, - sym_field_path, - STATE(6366), 1, - sym_attribute, - STATE(7389), 1, - sym_indexing_operator_path, - STATE(8831), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285513] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4632), 1, - anon_sym_COLON2, - STATE(6367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4630), 8, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_COLON_COLON, - [285537] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5347), 9, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_as, - anon_sym_LBRACK_AT_AT, - [285559] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8884), 1, - sym__identifier, - ACTIONS(8886), 1, - anon_sym_LPAREN, - ACTIONS(8888), 1, - anon_sym_LBRACK, - ACTIONS(8890), 1, - anon_sym_LBRACE, - STATE(3402), 1, - sym_field_path, - STATE(6369), 1, - sym_attribute, - STATE(7385), 1, - sym_indexing_operator_path, - STATE(8865), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285597] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - ACTIONS(8892), 1, - anon_sym_private, - STATE(5162), 1, - sym_variant_declaration, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [285631] = 12, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8747), 1, - sym_indexing_operator, - ACTIONS(8894), 1, - sym__identifier, - ACTIONS(8896), 1, - anon_sym_LPAREN, - ACTIONS(8898), 1, - anon_sym_LBRACK, - ACTIONS(8900), 1, - anon_sym_LBRACE, - STATE(4091), 1, - sym_field_path, - STATE(6371), 1, - sym_attribute, - STATE(7408), 1, - sym_indexing_operator_path, - STATE(8756), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285669] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8902), 9, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_initializer, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [285691] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2551), 1, - anon_sym_LBRACK, - ACTIONS(2565), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8904), 1, - anon_sym_LPAREN, - ACTIONS(8906), 1, - anon_sym_LBRACE, - ACTIONS(8908), 1, - sym__capitalized_identifier, - STATE(6373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4192), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [285722] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6374), 1, - sym_attribute, - STATE(9134), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [285751] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(8916), 1, - anon_sym_SEMI, - ACTIONS(8918), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6375), 1, - sym_attribute, - STATE(7330), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285786] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8920), 1, - anon_sym_EQ, - ACTIONS(8922), 1, - anon_sym_RPAREN, - ACTIONS(8924), 1, - anon_sym_COLON2, - STATE(6376), 1, - sym_attribute, - STATE(8249), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [285821] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3962), 1, - anon_sym_LBRACK, - ACTIONS(3966), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8274), 1, - sym__capitalized_identifier, - ACTIONS(8926), 1, - anon_sym_LPAREN, - ACTIONS(8928), 1, - anon_sym_LBRACE, - STATE(6377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6782), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [285852] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8930), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(6378), 1, - sym_attribute, - STATE(6381), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [285879] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8930), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(6379), 1, - sym_attribute, - STATE(6381), 1, - aux_sym_type_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6244), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [285906] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6380), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9438), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [285935] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8932), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6381), 2, - sym_attribute, - aux_sym_type_binding_repeat1, - ACTIONS(6237), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [285960] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2910), 1, - anon_sym_LBRACK, - ACTIONS(2920), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8935), 1, - anon_sym_LPAREN, - ACTIONS(8937), 1, - anon_sym_LBRACE, - ACTIONS(8939), 1, - sym__capitalized_identifier, - STATE(6382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3726), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [285991] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6383), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9385), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286020] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6181), 8, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_constraint, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [286041] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8941), 1, - anon_sym_and, - STATE(6385), 1, - sym_attribute, - STATE(6416), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6550), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [286066] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6386), 1, - sym_attribute, - STATE(8535), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286095] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6387), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9702), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286124] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8930), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(6378), 1, - aux_sym_type_binding_repeat1, - STATE(6388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6268), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [286151] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6389), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9409), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286180] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6390), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9736), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286209] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6391), 1, - sym_attribute, - STATE(8707), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286238] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3069), 1, - anon_sym_POUND, - STATE(6392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3071), 7, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - sym_hash_operator, - [286261] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3093), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8943), 1, - anon_sym_LPAREN, - ACTIONS(8945), 1, - anon_sym_LBRACE, - ACTIONS(8947), 1, - sym__capitalized_identifier, - STATE(6393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3822), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [286292] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - STATE(5163), 1, - sym_variant_declaration, - STATE(5177), 1, - sym_constructor_declaration, - STATE(6394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [286323] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(8949), 1, - anon_sym_SEMI, - ACTIONS(8951), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6395), 1, - sym_attribute, - STATE(7344), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286358] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6396), 1, - sym_attribute, - STATE(8324), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286387] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6397), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9471), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286416] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3551), 1, - anon_sym_POUND, - STATE(6398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 3, - anon_sym_DOT, - anon_sym_with, - sym_hash_operator, - ACTIONS(3071), 4, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_RBRACE, - [286441] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6399), 1, - sym_attribute, - STATE(9101), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286470] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3884), 1, - anon_sym_LBRACK, - ACTIONS(3894), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8274), 1, - sym__capitalized_identifier, - ACTIONS(8953), 1, - anon_sym_LPAREN, - ACTIONS(8955), 1, - anon_sym_LBRACE, - STATE(6400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6678), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [286501] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(8957), 1, - anon_sym_SEMI, - ACTIONS(8959), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6401), 1, - sym_attribute, - STATE(7677), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286536] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6402), 1, - sym_attribute, - STATE(8682), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286565] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6403), 1, - sym_attribute, - STATE(9041), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286594] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(8961), 1, - anon_sym_EQ, - ACTIONS(8963), 1, - anon_sym_RPAREN, - STATE(6404), 1, - sym_attribute, - STATE(8148), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286629] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3551), 1, - anon_sym_POUND, - STATE(6405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 3, - anon_sym_DOT, - anon_sym_with, - sym_hash_operator, - ACTIONS(3147), 4, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_SEMI, - anon_sym_RBRACE, - [286654] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2503), 1, - anon_sym_LBRACK, - ACTIONS(2511), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8965), 1, - anon_sym_LPAREN, - ACTIONS(8967), 1, - anon_sym_LBRACE, - ACTIONS(8969), 1, - sym__capitalized_identifier, - STATE(6406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(3114), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [286685] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6407), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9516), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286714] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(8971), 1, - anon_sym_EQ, - ACTIONS(8973), 1, - anon_sym_RPAREN, - STATE(6408), 1, - sym_attribute, - STATE(7874), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286749] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(8975), 1, - anon_sym_SEMI, - ACTIONS(8977), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6409), 1, - sym_attribute, - STATE(7487), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286784] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6410), 1, - sym_attribute, - STATE(7641), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [286819] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6411), 1, - sym_attribute, - STATE(9251), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286848] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6412), 1, - sym_attribute, - STATE(8495), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286877] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2139), 1, - anon_sym_LBRACK, - ACTIONS(2153), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8908), 1, - sym__capitalized_identifier, - ACTIONS(8983), 1, - anon_sym_LPAREN, - ACTIONS(8985), 1, - anon_sym_LBRACE, - STATE(6413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6187), 3, - sym_record_pattern, - sym_list_pattern, - sym_array_pattern, - [286908] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6414), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9661), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [286937] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4952), 1, - anon_sym_PIPE, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - STATE(5177), 1, - sym_constructor_declaration, - STATE(5210), 1, - sym_variant_declaration, - STATE(6415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [286968] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8941), 1, - anon_sym_and, - STATE(6416), 1, - sym_attribute, - STATE(6438), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6516), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [286993] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8987), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [287014] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6418), 1, - sym_attribute, - STATE(9032), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287043] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(8989), 1, - anon_sym_LPAREN, - ACTIONS(8991), 1, - anon_sym_LBRACK, - STATE(5500), 1, - sym_constructor_declaration, - STATE(6419), 1, - sym_attribute, - STATE(6708), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8993), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [287074] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6420), 1, - sym_attribute, - STATE(9301), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287103] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8995), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [287124] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3678), 1, - anon_sym_LBRACK, - ACTIONS(3686), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8997), 1, - anon_sym_LPAREN, - ACTIONS(8999), 1, - anon_sym_LBRACE, - ACTIONS(9001), 1, - sym__capitalized_identifier, - STATE(6422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4569), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [287155] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6106), 1, - anon_sym_RPAREN, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6423), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5450), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [287188] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6424), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9618), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287217] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9003), 8, - anon_sym_constraint, - anon_sym_val, - anon_sym_end, - anon_sym_inherit, - anon_sym_method, - anon_sym_LBRACK_AT_AT_AT, - anon_sym_LBRACK_PERCENT_PERCENT, - anon_sym_LBRACE_PERCENT_PERCENT, - [287238] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8930), 1, - anon_sym_constraint, - STATE(4879), 1, - sym_type_constraint, - STATE(6379), 1, - aux_sym_type_binding_repeat1, - STATE(6426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6209), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [287265] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - STATE(5210), 1, - sym_variant_declaration, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [287296] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6428), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9548), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287325] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9005), 1, - anon_sym_LPAREN, - ACTIONS(9007), 1, - anon_sym_LBRACK, - STATE(5500), 1, - sym_constructor_declaration, - STATE(6429), 1, - sym_attribute, - STATE(6722), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9009), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [287356] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3145), 1, - anon_sym_POUND, - STATE(6430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3147), 7, - anon_sym_EQ, - anon_sym_COLON2, - anon_sym_DOT, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_with, - sym_hash_operator, - [287379] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6431), 1, - sym_attribute, - STATE(8952), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287408] = 11, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(9011), 1, - anon_sym_SEMI, - ACTIONS(9013), 1, - anon_sym_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6432), 1, - sym_attribute, - STATE(7736), 1, - aux_sym_object_type_repeat1, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287443] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6433), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9341), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287472] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2461), 1, - anon_sym_LBRACK, - ACTIONS(2471), 1, - anon_sym_LBRACK_PIPE, - ACTIONS(8908), 1, - sym__capitalized_identifier, - ACTIONS(9015), 1, - anon_sym_LPAREN, - ACTIONS(9017), 1, - anon_sym_LBRACE, - STATE(6434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6314), 3, - sym_record_binding_pattern, - sym_list_binding_pattern, - sym_array_binding_pattern, - [287503] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6435), 1, - sym_attribute, - STATE(9309), 1, - sym_escape_sequence, - STATE(9584), 1, - sym_character_content, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287532] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4984), 1, - anon_sym_PIPE, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - STATE(5163), 1, - sym_variant_declaration, - STATE(5706), 1, - sym_constructor_declaration, - STATE(6436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [287563] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9019), 1, - anon_sym_LPAREN, - ACTIONS(9021), 1, - anon_sym_LBRACK, - STATE(6437), 1, - sym_attribute, - STATE(6685), 1, - sym__attribute, - STATE(7075), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9023), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [287594] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9025), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6438), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(6205), 6, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [287617] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(8910), 1, - aux_sym_character_content_token1, - ACTIONS(8914), 1, - sym__null, - STATE(6439), 1, - sym_attribute, - STATE(8834), 1, - sym_character_content, - STATE(9309), 1, - sym_escape_sequence, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8912), 4, - aux_sym_escape_sequence_token1, - aux_sym_escape_sequence_token2, - aux_sym_escape_sequence_token3, - aux_sym_escape_sequence_token4, - [287646] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9030), 1, - anon_sym_PIPE, - ACTIONS(9032), 1, - anon_sym_SEMI, - ACTIONS(9034), 1, - anon_sym_as, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - ACTIONS(9038), 1, - anon_sym_PIPE_RBRACK, - STATE(6440), 1, - sym_attribute, - STATE(7819), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287678] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9040), 1, - anon_sym_DASH_GT, - ACTIONS(9042), 1, - anon_sym_when, - STATE(6441), 1, - sym_attribute, - STATE(8964), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287710] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9044), 1, - anon_sym_RPAREN, - STATE(6442), 1, - sym_attribute, - STATE(8633), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287742] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - STATE(6443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4676), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [287764] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - STATE(6444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4680), 5, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [287788] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - STATE(6445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4688), 6, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - [287810] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9052), 1, - anon_sym__, - ACTIONS(9054), 1, - anon_sym_RBRACE, - STATE(6446), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287842] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5900), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5902), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6447), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287874] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9056), 1, - anon_sym_RPAREN, - STATE(6448), 1, - sym_attribute, - STATE(8599), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287906] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9058), 1, - anon_sym_RPAREN, - STATE(6449), 1, - sym_attribute, - STATE(8592), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [287938] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6450), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7492), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [287968] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9062), 1, - anon_sym_rec, - ACTIONS(9064), 1, - anon_sym_type, - STATE(5870), 1, - sym_module_binding, - STATE(6451), 1, - sym_attribute, - STATE(7162), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9066), 2, - anon_sym__, - sym__capitalized_identifier, - [287998] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9068), 1, - anon_sym__, - ACTIONS(9070), 1, - anon_sym_RBRACE, - STATE(6452), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288030] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4584), 1, - anon_sym_PIPE, - STATE(6453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4582), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [288052] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6328), 1, - anon_sym_COLON2, - STATE(6454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6326), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288074] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6197), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288094] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9072), 1, - anon_sym_DASH_GT, - STATE(6456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 6, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_constraint, - anon_sym_with, - anon_sym_as, - [288116] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9074), 1, - anon_sym_RPAREN, - STATE(6457), 1, - sym_attribute, - STATE(8556), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288148] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9076), 1, - anon_sym__, - ACTIONS(9078), 1, - anon_sym_RBRACE, - STATE(6458), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288180] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6252), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288200] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9080), 1, - anon_sym_DASH_GT, - STATE(6460), 1, - sym_attribute, - STATE(8715), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288232] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6461), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7258), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [288262] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9082), 1, - anon_sym_RPAREN, - STATE(6462), 1, - sym_attribute, - STATE(8684), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288294] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6463), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7274), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [288324] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9084), 1, - anon_sym_RPAREN, - STATE(6464), 1, - sym_attribute, - STATE(8548), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288356] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9086), 1, - anon_sym_DASH_GT, - ACTIONS(9088), 1, - anon_sym_with, - STATE(6465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6636), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [288380] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4578), 1, - anon_sym_PIPE, - STATE(6466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4576), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [288402] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9090), 1, - anon_sym_RPAREN, - STATE(6467), 1, - sym_attribute, - STATE(8635), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288434] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9092), 1, - anon_sym_rec, - ACTIONS(9094), 1, - anon_sym_type, - STATE(5699), 1, - sym_module_binding, - STATE(6468), 1, - sym_attribute, - STATE(7010), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9096), 2, - anon_sym__, - sym__capitalized_identifier, - [288464] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9098), 1, - sym__identifier, - ACTIONS(9100), 1, - anon_sym_type, - ACTIONS(9102), 1, - anon_sym_LBRACK, - ACTIONS(9104), 1, - anon_sym_virtual, - STATE(5848), 1, - sym_class_binding, - STATE(6469), 1, - sym_attribute, - STATE(7001), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288496] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9106), 1, - anon_sym__, - ACTIONS(9108), 1, - anon_sym_RBRACE, - STATE(6470), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288528] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9100), 1, - anon_sym_type, - ACTIONS(9110), 1, - sym__identifier, - ACTIONS(9112), 1, - anon_sym_LBRACK, - ACTIONS(9114), 1, - anon_sym_virtual, - STATE(5723), 1, - sym_class_binding, - STATE(6471), 1, - sym_attribute, - STATE(7125), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288560] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9116), 1, - anon_sym_RPAREN, - STATE(6472), 1, - sym_attribute, - STATE(8898), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288592] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9118), 1, - anon_sym__, - ACTIONS(9120), 1, - anon_sym_RBRACE, - STATE(6473), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288624] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9122), 1, - anon_sym_RPAREN, - STATE(6474), 1, - sym_attribute, - STATE(8894), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288656] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9124), 1, - anon_sym_RPAREN, - STATE(6475), 1, - sym_attribute, - STATE(8642), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288688] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9126), 1, - anon_sym__, - ACTIONS(9128), 1, - anon_sym_RBRACE, - STATE(6476), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288720] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9130), 1, - anon_sym_RPAREN, - STATE(6477), 1, - sym_attribute, - STATE(8677), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288752] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6478), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7563), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [288782] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9132), 1, - anon_sym_RPAREN, - STATE(6479), 1, - sym_attribute, - STATE(8877), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288814] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9134), 1, - anon_sym_DASH_GT, - STATE(6480), 1, - sym_attribute, - STATE(8466), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288846] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9136), 1, - anon_sym_RBRACK, - ACTIONS(9138), 1, - anon_sym_when, - STATE(6481), 1, - sym_attribute, - STATE(8432), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288878] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9140), 1, - anon_sym_RPAREN, - STATE(6482), 1, - sym_attribute, - STATE(8512), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288910] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9142), 1, - anon_sym_RPAREN, - STATE(6483), 1, - sym_attribute, - STATE(8673), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288942] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9144), 1, - anon_sym_RPAREN, - STATE(6484), 1, - sym_attribute, - STATE(8504), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [288974] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3646), 1, - anon_sym_PIPE, - ACTIONS(9146), 1, - anon_sym_DOT_DOT, - STATE(6485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [288998] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9148), 1, - anon_sym_DASH_GT, - STATE(6486), 1, - sym_attribute, - STATE(9318), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289030] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9150), 1, - anon_sym__, - ACTIONS(9152), 1, - anon_sym_RBRACE, - STATE(6487), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289062] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6488), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7617), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [289092] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9158), 1, - anon_sym_SEMI, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - ACTIONS(9164), 1, - anon_sym_PIPE_RBRACK, - STATE(6489), 1, - sym_attribute, - STATE(7543), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289124] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9166), 1, - anon_sym_RPAREN, - STATE(6490), 1, - sym_attribute, - STATE(8870), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289156] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9168), 1, - anon_sym__, - ACTIONS(9170), 1, - anon_sym_RBRACE, - STATE(6491), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289188] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9172), 1, - anon_sym__, - ACTIONS(9174), 1, - anon_sym_RBRACE, - STATE(6492), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289220] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9176), 1, - anon_sym_RBRACK, - ACTIONS(9178), 1, - anon_sym_SEMI, - STATE(6493), 1, - sym_attribute, - STATE(7548), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289252] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5918), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [289272] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9180), 1, - anon_sym_RPAREN, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - STATE(6495), 1, - sym_attribute, - STATE(9283), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289304] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8922), 1, - anon_sym_RPAREN, - ACTIONS(8924), 1, - anon_sym_COLON2, - STATE(6496), 1, - sym_attribute, - STATE(8639), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289336] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9190), 1, - anon_sym_RPAREN, - STATE(6497), 1, - sym_attribute, - STATE(9198), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289368] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3381), 1, - anon_sym_PIPE, - STATE(6498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3383), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [289390] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9194), 1, - anon_sym_RBRACK, - ACTIONS(9196), 1, - anon_sym_SEMI, - ACTIONS(9198), 1, - anon_sym_as, - STATE(6499), 1, - sym_attribute, - STATE(7531), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289422] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9030), 1, - anon_sym_PIPE, - ACTIONS(9034), 1, - anon_sym_as, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - ACTIONS(9200), 1, - anon_sym_SEMI, - ACTIONS(9202), 1, - anon_sym_PIPE_RBRACK, - STATE(6500), 1, - sym_attribute, - STATE(7535), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289454] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - ACTIONS(9204), 1, - anon_sym_SEMI, - ACTIONS(9206), 1, - anon_sym_PIPE_RBRACK, - STATE(6501), 1, - sym_attribute, - STATE(7457), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289486] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9208), 1, - anon_sym_RPAREN, - STATE(6502), 1, - sym_attribute, - STATE(8468), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289518] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3385), 1, - anon_sym_PIPE, - STATE(6503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3387), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [289540] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3417), 1, - anon_sym_PIPE, - STATE(6504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3419), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [289562] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6366), 1, - anon_sym_COLON2, - STATE(6505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6364), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [289584] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6506), 1, - sym_attribute, - STATE(6860), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6012), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(8516), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [289612] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9210), 1, - anon_sym_DASH_GT, - STATE(6507), 1, - sym_attribute, - STATE(9033), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289644] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(8963), 1, - anon_sym_RPAREN, - STATE(6508), 1, - sym_attribute, - STATE(9238), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289676] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3425), 1, - anon_sym_PIPE, - STATE(6509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3427), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [289698] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9212), 1, - anon_sym_RBRACK, - ACTIONS(9214), 1, - anon_sym_SEMI, - STATE(6510), 1, - sym_attribute, - STATE(7574), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289730] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - ACTIONS(9216), 1, - anon_sym_SEMI, - ACTIONS(9218), 1, - anon_sym_PIPE_RBRACK, - STATE(6511), 1, - sym_attribute, - STATE(7584), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289762] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9220), 1, - anon_sym_RPAREN, - STATE(6512), 1, - sym_attribute, - STATE(8719), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289794] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9222), 1, - anon_sym_RPAREN, - STATE(6513), 1, - sym_attribute, - STATE(9167), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289826] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3531), 1, - anon_sym_PIPE, - STATE(6514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3533), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [289848] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9224), 1, - anon_sym__, - ACTIONS(9226), 1, - anon_sym_RBRACE, - STATE(6515), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289880] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9228), 1, - anon_sym_RPAREN, - STATE(6516), 1, - sym_attribute, - STATE(8843), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289912] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9230), 1, - anon_sym__, - ACTIONS(9232), 1, - anon_sym_RBRACE, - STATE(6517), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289944] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9234), 1, - anon_sym_RPAREN, - STATE(6518), 1, - sym_attribute, - STATE(8829), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [289976] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - ACTIONS(9236), 1, - anon_sym_RBRACK, - ACTIONS(9238), 1, - anon_sym_SEMI, - STATE(6519), 1, - sym_attribute, - STATE(7717), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290008] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(9072), 1, - anon_sym_DASH_GT, - STATE(6520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6346), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_constraint, - anon_sym_with, - [290032] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9030), 1, - anon_sym_PIPE, - ACTIONS(9034), 1, - anon_sym_as, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - ACTIONS(9240), 1, - anon_sym_SEMI, - ACTIONS(9242), 1, - anon_sym_PIPE_RBRACK, - STATE(6521), 1, - sym_attribute, - STATE(7704), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290064] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9244), 1, - anon_sym_DASH_GT, - STATE(6522), 1, - sym_attribute, - STATE(8681), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290096] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3543), 1, - anon_sym_PIPE, - STATE(6523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3545), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [290118] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9246), 1, - anon_sym_COLON2, - STATE(6524), 1, - sym_attribute, - STATE(7975), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 5, - anon_sym_SEMI, - anon_sym_GT, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [290142] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9248), 1, - anon_sym_RPAREN, - STATE(6525), 1, - sym_attribute, - STATE(8416), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290174] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9250), 1, - anon_sym_RPAREN, - STATE(6526), 1, - sym_attribute, - STATE(8836), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290206] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3539), 1, - anon_sym_PIPE, - STATE(6527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3541), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [290228] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9252), 1, - anon_sym_RPAREN, - STATE(6528), 1, - sym_attribute, - STATE(8726), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290260] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9254), 1, - anon_sym__, - ACTIONS(9256), 1, - anon_sym_RBRACE, - STATE(6529), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290292] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3429), 1, - anon_sym_PIPE, - STATE(6530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3431), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [290314] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9258), 1, - anon_sym_RPAREN, - STATE(6531), 1, - sym_attribute, - STATE(8400), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290346] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9260), 1, - anon_sym__, - ACTIONS(9262), 1, - anon_sym_RBRACE, - STATE(6532), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290378] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6533), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7443), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [290408] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3517), 1, - anon_sym_PIPE, - STATE(6534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3519), 6, - anon_sym_DOT_DOT, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [290430] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9264), 1, - anon_sym_RPAREN, - STATE(6535), 1, - sym_attribute, - STATE(8458), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290462] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9270), 1, - anon_sym_AMP, - STATE(6536), 1, - sym_attribute, - STATE(6873), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9266), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [290490] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9272), 1, - anon_sym__, - ACTIONS(9274), 1, - anon_sym_RBRACE, - STATE(6537), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290522] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6538), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7449), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [290552] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(9072), 1, - anon_sym_DASH_GT, - STATE(6539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6330), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_constraint, - anon_sym_with, - [290576] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9276), 1, - anon_sym_RPAREN, - STATE(6540), 1, - sym_attribute, - STATE(8798), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290608] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9278), 1, - anon_sym_RPAREN, - STATE(6541), 1, - sym_attribute, - STATE(8474), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290640] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9280), 1, - anon_sym_RPAREN, - STATE(6542), 1, - sym_attribute, - STATE(8809), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290672] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9282), 1, - anon_sym_RBRACK, - ACTIONS(9284), 1, - anon_sym_SEMI, - STATE(6543), 1, - sym_attribute, - STATE(7466), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290704] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9286), 1, - anon_sym_RPAREN, - STATE(6544), 1, - sym_attribute, - STATE(9373), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290736] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9288), 1, - anon_sym__, - ACTIONS(9290), 1, - anon_sym_RBRACE, - STATE(6545), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290768] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(8973), 1, - anon_sym_RPAREN, - STATE(6546), 1, - sym_attribute, - STATE(8356), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290800] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6278), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [290820] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9292), 1, - anon_sym_DASH_GT, - STATE(6548), 1, - sym_attribute, - STATE(8993), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290852] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9294), 1, - anon_sym_RBRACK, - ACTIONS(9296), 1, - anon_sym_SEMI, - STATE(6549), 1, - sym_attribute, - STATE(7227), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290884] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - ACTIONS(9298), 1, - anon_sym_SEMI, - ACTIONS(9300), 1, - anon_sym_PIPE_RBRACK, - STATE(6550), 1, - sym_attribute, - STATE(7231), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290916] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9302), 1, - anon_sym_DASH_GT, - STATE(6551), 1, - sym_attribute, - STATE(8552), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [290948] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6304), 1, - anon_sym_as, - ACTIONS(9072), 1, - anon_sym_DASH_GT, - STATE(6552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6300), 5, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_constraint, - anon_sym_with, - [290972] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6553), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7472), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [291002] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9304), 1, - anon_sym_RPAREN, - STATE(6554), 1, - sym_attribute, - STATE(8761), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291034] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(6201), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6203), 1, - anon_sym_in, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6555), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291066] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9306), 1, - anon_sym__, - ACTIONS(9308), 1, - anon_sym_RBRACE, - STATE(6556), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291098] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9310), 1, - anon_sym__, - ACTIONS(9312), 1, - anon_sym_RBRACE, - STATE(6557), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291130] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9314), 1, - anon_sym_RPAREN, - STATE(6558), 1, - sym_attribute, - STATE(8345), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291162] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2497), 1, - anon_sym_PIPE, - ACTIONS(9146), 1, - anon_sym_DOT_DOT, - STATE(6559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2493), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [291186] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6336), 1, - anon_sym_COLON2, - STATE(6560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6334), 6, - anon_sym_and, - anon_sym_EQ, - anon_sym_LPAREN, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291208] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6000), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291228] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9030), 1, - anon_sym_PIPE, - ACTIONS(9034), 1, - anon_sym_as, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - ACTIONS(9316), 1, - anon_sym_SEMI, - ACTIONS(9318), 1, - anon_sym_PIPE_RBRACK, - STATE(6562), 1, - sym_attribute, - STATE(7550), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291260] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - ACTIONS(9320), 1, - anon_sym_SEMI, - ACTIONS(9322), 1, - anon_sym_PIPE_RBRACK, - STATE(6563), 1, - sym_attribute, - STATE(7784), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291292] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9324), 1, - anon_sym_RPAREN, - STATE(6564), 1, - sym_attribute, - STATE(8802), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291324] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9326), 1, - anon_sym_RBRACK, - ACTIONS(9328), 1, - anon_sym_SEMI, - STATE(6565), 1, - sym_attribute, - STATE(7790), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291356] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - ACTIONS(9330), 1, - anon_sym_RBRACK, - ACTIONS(9332), 1, - anon_sym_SEMI, - STATE(6566), 1, - sym_attribute, - STATE(7567), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291388] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5870), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5872), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6567), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291420] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9334), 1, - anon_sym_RPAREN, - STATE(6568), 1, - sym_attribute, - STATE(9239), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291452] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9336), 1, - anon_sym_DASH_GT, - STATE(6569), 1, - sym_attribute, - STATE(8856), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291484] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9086), 1, - anon_sym_DASH_GT, - ACTIONS(9088), 1, - anon_sym_with, - STATE(6570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6586), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291508] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9338), 1, - anon_sym_RPAREN, - STATE(6571), 1, - sym_attribute, - STATE(8918), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291540] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6233), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291560] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6573), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9340), 2, - anon_sym_SEMI, - anon_sym_GT, - [291590] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6574), 1, - sym_attribute, - STATE(6825), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6439), 2, - anon_sym_and, - anon_sym_in, - ACTIONS(9342), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [291618] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9100), 1, - anon_sym_type, - ACTIONS(9344), 1, - sym__identifier, - ACTIONS(9346), 1, - anon_sym_LBRACK, - ACTIONS(9348), 1, - anon_sym_virtual, - STATE(5858), 1, - sym_class_binding, - STATE(6575), 1, - sym_attribute, - STATE(7051), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291650] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9350), 1, - anon_sym_RPAREN, - STATE(6576), 1, - sym_attribute, - STATE(8768), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291682] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9086), 1, - anon_sym_DASH_GT, - ACTIONS(9088), 1, - anon_sym_with, - STATE(6577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6606), 5, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291706] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9352), 1, - anon_sym_DASH_GT, - STATE(6578), 1, - sym_attribute, - STATE(8358), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291738] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - ACTIONS(9354), 1, - anon_sym_RBRACK, - ACTIONS(9356), 1, - anon_sym_SEMI, - STATE(6579), 1, - sym_attribute, - STATE(7807), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291770] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(6193), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6195), 1, - anon_sym_in, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6580), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291802] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9050), 1, - sym__identifier, - ACTIONS(9358), 1, - anon_sym__, - ACTIONS(9360), 1, - anon_sym_RBRACE, - STATE(6581), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291834] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9362), 1, - anon_sym_RPAREN, - STATE(6582), 1, - sym_attribute, - STATE(8963), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291866] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6583), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5450), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [291896] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6248), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [291916] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6585), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7607), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [291946] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9364), 1, - anon_sym_RPAREN, - STATE(6586), 1, - sym_attribute, - STATE(8397), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [291978] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5904), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(5906), 1, - anon_sym_in, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6587), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292010] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9366), 1, - anon_sym_DASH_GT, - STATE(6588), 1, - sym_attribute, - STATE(9201), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292042] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9270), 1, - anon_sym_AMP, - STATE(6589), 1, - sym_attribute, - STATE(6839), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9368), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [292070] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9370), 1, - anon_sym_RPAREN, - STATE(6590), 1, - sym_attribute, - STATE(8423), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292102] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9372), 1, - anon_sym_RPAREN, - STATE(6591), 1, - sym_attribute, - STATE(8334), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292134] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(7937), 1, - anon_sym_BANG, - ACTIONS(9060), 1, - anon_sym__, - STATE(6592), 1, - sym_attribute, - STATE(6866), 1, - sym_type_variable, - STATE(7551), 1, - sym__type_param, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7935), 2, - anon_sym_PLUS, - anon_sym_DASH, - [292164] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(6593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6205), 7, - anon_sym_and, - anon_sym_EQ, - anon_sym_COLON_EQ, - anon_sym_DASH_GT, - anon_sym_with, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [292184] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5603), 1, - anon_sym_RPAREN, - ACTIONS(9374), 1, - anon_sym_COLON2, - STATE(6594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4646), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [292208] = 10, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9042), 1, - anon_sym_when, - ACTIONS(9376), 1, - anon_sym_DASH_GT, - STATE(6595), 1, - sym_attribute, - STATE(8989), 1, - sym_guard, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292240] = 10, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6108), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(6272), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6274), 1, - anon_sym_in, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6596), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292272] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5136), 1, - anon_sym_PIPE, - STATE(6597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5134), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292293] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9378), 1, - anon_sym_RBRACE, - STATE(6598), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292322] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9380), 1, - anon_sym_RBRACE, - STATE(6599), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292351] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9382), 1, - sym__identifier, - STATE(3577), 1, - sym_class_path, - STATE(6600), 1, - sym_attribute, - STATE(6952), 1, - sym__attribute, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292380] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5178), 1, - anon_sym_PIPE, - STATE(6601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5176), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292401] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9384), 1, - anon_sym_RBRACE, - STATE(6602), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292430] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - STATE(6603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9386), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [292457] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9388), 1, - sym__left_quoted_string_delimiter, - STATE(6604), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7763), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292486] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9390), 1, - anon_sym_RBRACE, - STATE(6605), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292515] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4628), 1, - anon_sym_PIPE, - STATE(6606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4626), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292536] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5174), 1, - anon_sym_PIPE, - STATE(6607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5172), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292557] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9392), 1, - anon_sym_RBRACE, - STATE(6608), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292586] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3349), 1, - anon_sym_PIPE, - STATE(6609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3351), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292607] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9394), 1, - anon_sym_RBRACE, - STATE(6610), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292636] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9396), 1, - anon_sym_RBRACE, - STATE(6611), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292665] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9398), 1, - anon_sym_RBRACE, - STATE(6612), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292694] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9030), 1, - anon_sym_PIPE, - ACTIONS(9034), 1, - anon_sym_as, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - STATE(6613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9400), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [292721] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9402), 1, - sym__identifier, - STATE(2555), 1, - sym_class_path, - STATE(6614), 1, - sym_attribute, - STATE(7127), 1, - sym__attribute, - STATE(8574), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292750] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9404), 1, - sym__identifier, - STATE(4028), 1, - sym_class_path, - STATE(6615), 1, - sym_attribute, - STATE(7103), 1, - sym__attribute, - STATE(8477), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292779] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6652), 1, - anon_sym_and, - STATE(6616), 1, - sym_attribute, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6650), 2, - anon_sym_in, - sym_and_operator, - [292806] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3313), 1, - anon_sym_PIPE, - STATE(6617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3315), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292827] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6618), 1, - sym_attribute, - STATE(7187), 1, - sym__attribute, - STATE(9729), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292856] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3193), 1, - anon_sym_PIPE, - STATE(6619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3195), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292877] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6263), 1, - anon_sym_and, - ACTIONS(9410), 1, - anon_sym_LBRACK_AT_AT, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6261), 2, - anon_sym_in, - sym_and_operator, - STATE(6620), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - [292902] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6584), 1, - anon_sym_and, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(6621), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6582), 2, - anon_sym_in, - sym_and_operator, - [292929] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9413), 1, - anon_sym_RBRACE, - STATE(6622), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [292958] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8684), 1, - anon_sym_PIPE, - STATE(6623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8682), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [292979] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8674), 1, - anon_sym_PIPE, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8672), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [293002] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6660), 1, - anon_sym_and, - STATE(6625), 1, - sym_attribute, - STATE(6677), 1, - aux_sym_expression_item_repeat1, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6658), 2, - anon_sym_in, - sym_and_operator, - [293029] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6626), 1, - sym_attribute, - STATE(7179), 1, - sym__attribute, - STATE(9724), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293058] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8670), 1, - anon_sym_PIPE, - STATE(6627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8668), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293079] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6656), 1, - anon_sym_and, - STATE(6628), 1, - sym_attribute, - STATE(6734), 1, - aux_sym_expression_item_repeat1, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6654), 2, - anon_sym_in, - sym_and_operator, - [293106] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9415), 1, - anon_sym_RBRACE, - STATE(6629), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293135] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9417), 1, - sym__left_quoted_string_delimiter, - STATE(6630), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7781), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293164] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9419), 1, - anon_sym_RBRACE, - STATE(6631), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293193] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8664), 1, - anon_sym_PIPE, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8662), 3, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [293218] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8660), 1, - anon_sym_PIPE, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8658), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [293241] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8656), 1, - anon_sym_PIPE, - STATE(6634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8654), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293262] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9421), 1, - anon_sym_RBRACE, - STATE(6635), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293291] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9423), 1, - anon_sym_RBRACE, - STATE(6636), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293320] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9425), 1, - anon_sym_RBRACE, - STATE(6637), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293349] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6638), 1, - sym_attribute, - STATE(7055), 1, - sym__attribute, - STATE(8184), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293378] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - STATE(6639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9427), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [293405] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9429), 1, - anon_sym_RBRACE, - STATE(6640), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293434] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9431), 1, - anon_sym_RBRACE, - STATE(6641), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293463] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3646), 1, - anon_sym_PIPE, - STATE(6642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3638), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293484] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6643), 1, - sym_attribute, - STATE(7165), 1, - sym__attribute, - STATE(9711), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293513] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9433), 1, - anon_sym_RBRACE, - STATE(6644), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293542] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9046), 1, - anon_sym_COLON_COLON, - ACTIONS(9048), 1, - anon_sym_COMMA, - ACTIONS(9192), 1, - anon_sym_PIPE, - ACTIONS(9198), 1, - anon_sym_as, - STATE(6645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9400), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - [293569] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3551), 1, - anon_sym_PIPE, - STATE(6646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3553), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293590] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9435), 1, - sym__identifier, - STATE(3340), 1, - sym_class_path, - STATE(6647), 1, - sym_attribute, - STATE(7085), 1, - sym__attribute, - STATE(8886), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293619] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9437), 1, - anon_sym_RBRACE, - STATE(6648), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293648] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9439), 1, - anon_sym_RBRACE, - STATE(6649), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293677] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9441), 1, - anon_sym_RBRACE, - STATE(6650), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293706] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9443), 1, - anon_sym_RBRACE, - STATE(6651), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293735] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9445), 1, - anon_sym_RBRACE, - STATE(6652), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293764] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6653), 1, - sym_attribute, - STATE(6965), 1, - sym__attribute, - STATE(9346), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293793] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9447), 1, - sym__identifier, - STATE(1908), 1, - sym_class_path, - STATE(6654), 1, - sym_attribute, - STATE(6936), 1, - sym__attribute, - STATE(9329), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293822] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9449), 1, - anon_sym_RBRACE, - STATE(6655), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293851] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5188), 1, - anon_sym_PIPE, - STATE(6656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5186), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293872] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - STATE(6657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6282), 5, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_GT, - [293893] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8622), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [293920] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4750), 1, - anon_sym_PIPE, - STATE(6659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4748), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [293941] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9455), 1, - anon_sym_PIPE, - ACTIONS(9457), 1, - anon_sym_RBRACK, - STATE(6660), 1, - sym_attribute, - STATE(7255), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293970] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9459), 1, - anon_sym_RBRACE, - STATE(6661), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [293999] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9461), 1, - anon_sym_RBRACE, - STATE(6662), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294028] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6663), 1, - sym_attribute, - STATE(7112), 1, - sym__attribute, - STATE(7897), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294057] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9463), 1, - sym__identifier, - STATE(1554), 1, - sym_class_path, - STATE(6664), 1, - sym_attribute, - STATE(7178), 1, - sym__attribute, - STATE(8659), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294086] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5080), 1, - anon_sym_PIPE, - STATE(6665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5078), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294107] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9465), 1, - sym__identifier, - STATE(1434), 1, - sym_class_path, - STATE(6666), 1, - sym_attribute, - STATE(7009), 1, - sym__attribute, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294136] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9467), 1, - anon_sym_RBRACE, - STATE(6667), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294165] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9455), 1, - anon_sym_PIPE, - ACTIONS(9469), 1, - anon_sym_RBRACK, - STATE(6668), 1, - sym_attribute, - STATE(7826), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294194] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9471), 1, - sym__identifier, - STATE(3074), 1, - sym_class_path, - STATE(6669), 1, - sym_attribute, - STATE(7159), 1, - sym__attribute, - STATE(8319), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294223] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5182), 1, - anon_sym_PIPE, - STATE(6670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5180), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294244] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9473), 1, - anon_sym_RBRACE, - STATE(6671), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294273] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4678), 1, - anon_sym_COLON2, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - STATE(6672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4676), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - [294296] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9475), 1, - anon_sym_rec, - STATE(6673), 1, - sym_attribute, - STATE(7065), 1, - sym__attribute, - STATE(7499), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9477), 2, - anon_sym__, - sym__capitalized_identifier, - [294323] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4754), 1, - anon_sym_PIPE, - STATE(6674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4752), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294344] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5170), 1, - anon_sym_PIPE, - STATE(6675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5168), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294365] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9479), 1, - sym__left_quoted_string_delimiter, - STATE(6676), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7542), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294394] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6664), 1, - anon_sym_and, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(6677), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6662), 2, - anon_sym_in, - sym_and_operator, - [294421] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5166), 1, - anon_sym_PIPE, - STATE(6678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5164), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294442] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9481), 1, - anon_sym_RBRACE, - STATE(6679), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294471] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3421), 1, - anon_sym_PIPE, - STATE(6680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3423), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294492] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9483), 1, - anon_sym_RBRACE, - STATE(6681), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294521] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9485), 1, - sym__left_quoted_string_delimiter, - STATE(6682), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7596), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294550] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4702), 1, - anon_sym_PIPE, - STATE(6683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4700), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294571] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9487), 1, - anon_sym_RBRACE, - STATE(6684), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294600] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9019), 1, - anon_sym_LPAREN, - ACTIONS(9021), 1, - anon_sym_LBRACK, - STATE(6685), 1, - sym_attribute, - STATE(6959), 1, - sym_constructor_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9023), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [294625] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5128), 1, - anon_sym_PIPE, - STATE(6686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5126), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294646] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4606), 1, - anon_sym_PIPE, - STATE(6687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4604), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294667] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9489), 1, - anon_sym_RBRACE, - STATE(6688), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294696] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5144), 1, - anon_sym_PIPE, - STATE(6689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5142), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294717] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5140), 1, - anon_sym_PIPE, - STATE(6690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5138), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294738] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4742), 1, - anon_sym_PIPE, - STATE(6691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4740), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294759] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4738), 1, - anon_sym_PIPE, - STATE(6692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4736), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294780] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9491), 1, - anon_sym_RBRACE, - STATE(6693), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294809] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4602), 1, - anon_sym_PIPE, - STATE(6694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4600), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294830] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2497), 1, - anon_sym_PIPE, - STATE(6695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(2493), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294851] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9493), 1, - anon_sym_RBRACE, - STATE(6696), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294880] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5162), 1, - anon_sym_PIPE, - STATE(6697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5160), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294901] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5158), 1, - anon_sym_PIPE, - STATE(6698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5156), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294922] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9495), 1, - sym__identifier, - STATE(3011), 1, - sym_class_path, - STATE(6699), 1, - sym_attribute, - STATE(6976), 1, - sym__attribute, - STATE(8854), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [294951] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4734), 1, - anon_sym_PIPE, - STATE(6700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4732), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [294972] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9497), 1, - anon_sym_RBRACE, - STATE(6701), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295001] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4106), 1, - sym__left_quoted_string_delimiter, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6702), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7692), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295030] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4730), 1, - anon_sym_PIPE, - STATE(6703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4728), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295051] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6668), 1, - anon_sym_and, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(6704), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6666), 2, - anon_sym_in, - sym_and_operator, - [295078] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9499), 1, - anon_sym_RBRACE, - STATE(6705), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295107] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9501), 1, - anon_sym_RBRACE, - STATE(6706), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295136] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(6707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9503), 4, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - [295159] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8989), 1, - anon_sym_LPAREN, - ACTIONS(8991), 1, - anon_sym_LBRACK, - STATE(5356), 1, - sym_constructor_declaration, - STATE(6708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8993), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [295184] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9505), 1, - anon_sym_RBRACE, - STATE(6709), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295213] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4610), 1, - anon_sym_PIPE, - STATE(6710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4608), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295234] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6672), 1, - anon_sym_and, - STATE(6616), 1, - aux_sym_expression_item_repeat1, - STATE(6711), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6670), 2, - anon_sym_in, - sym_and_operator, - [295261] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(6112), 1, - anon_sym_POUND, - ACTIONS(9507), 1, - anon_sym_DASH_GT, - STATE(5773), 1, - sym_type_constructor_path, - STATE(6712), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295290] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6713), 1, - sym_attribute, - STATE(7131), 1, - sym__attribute, - STATE(8206), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295319] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4106), 1, - sym__left_quoted_string_delimiter, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6714), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7624), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295348] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8540), 1, - anon_sym_PIPE, - STATE(6715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8538), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295369] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9509), 1, - anon_sym_RBRACE, - STATE(6716), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295398] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8524), 1, - anon_sym_PIPE, - STATE(6717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8522), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295419] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4614), 1, - anon_sym_PIPE, - STATE(6718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4612), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295440] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5026), 1, - anon_sym_PIPE, - STATE(6719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5024), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295461] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6621), 1, - anon_sym_and, - STATE(6621), 1, - aux_sym_expression_item_repeat1, - STATE(6720), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6619), 2, - anon_sym_in, - sym_and_operator, - [295488] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9511), 1, - sym__identifier, - STATE(1836), 1, - sym_class_path, - STATE(6721), 1, - sym_attribute, - STATE(7180), 1, - sym__attribute, - STATE(8375), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295517] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9005), 1, - anon_sym_LPAREN, - ACTIONS(9007), 1, - anon_sym_LBRACK, - STATE(5356), 1, - sym_constructor_declaration, - STATE(6722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9009), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [295542] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9513), 1, - anon_sym_RBRACE, - STATE(6723), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295571] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9515), 1, - anon_sym_and, - STATE(6724), 1, - sym_attribute, - STATE(6726), 1, - aux_sym_module_type_constraint_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6516), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [295594] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9517), 1, - sym__identifier, - ACTIONS(9519), 1, - anon_sym_LBRACK, - ACTIONS(9521), 1, - anon_sym_virtual, - STATE(5573), 1, - sym_class_type_binding, - STATE(6725), 1, - sym_attribute, - STATE(7156), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295623] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9523), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6726), 2, - sym_attribute, - aux_sym_module_type_constraint_repeat1, - ACTIONS(6205), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [295644] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - STATE(6727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9526), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [295671] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4746), 1, - anon_sym_PIPE, - STATE(6728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4744), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295692] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9528), 1, - anon_sym_RBRACE, - STATE(6729), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295721] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9530), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [295748] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9532), 1, - anon_sym_RBRACE, - STATE(6731), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295777] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9534), 1, - anon_sym_RBRACE, - STATE(6732), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295806] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9536), 1, - anon_sym_RBRACE, - STATE(6733), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295835] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6625), 1, - anon_sym_and, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(6734), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6623), 2, - anon_sym_in, - sym_and_operator, - [295862] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6630), 1, - anon_sym_LPAREN, - ACTIONS(6632), 1, - anon_sym_LBRACK, - STATE(5206), 1, - sym_constructor_declaration, - STATE(6735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6634), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [295887] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9538), 1, - sym__left_quoted_string_delimiter, - STATE(6736), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7494), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295916] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9540), 1, - sym__identifier, - STATE(1735), 1, - sym_class_path, - STATE(6737), 1, - sym_attribute, - STATE(7134), 1, - sym__attribute, - STATE(8530), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295945] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4624), 1, - anon_sym_PIPE, - STATE(6738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4622), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [295966] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9542), 1, - anon_sym_RBRACE, - STATE(6739), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [295995] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4722), 1, - anon_sym_PIPE, - STATE(6740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4720), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296016] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4726), 1, - anon_sym_PIPE, - STATE(6741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4724), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296037] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9544), 1, - anon_sym_RBRACE, - STATE(6742), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296066] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4718), 1, - anon_sym_PIPE, - STATE(6743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4716), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296087] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9546), 1, - anon_sym_RBRACE, - STATE(6744), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296116] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - STATE(6745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9548), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [296143] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4632), 1, - anon_sym_PIPE, - STATE(6746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4630), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296164] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4714), 1, - anon_sym_PIPE, - STATE(6747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4712), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296185] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6596), 1, - anon_sym_and, - STATE(6620), 1, - aux_sym_expression_item_repeat1, - STATE(6748), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6594), 2, - anon_sym_in, - sym_and_operator, - [296212] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4636), 1, - anon_sym_PIPE, - STATE(6749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4634), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296233] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9550), 1, - anon_sym_RBRACE, - STATE(6750), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296262] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4710), 1, - anon_sym_PIPE, - STATE(6751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4708), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296283] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4640), 1, - anon_sym_PIPE, - STATE(6752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4638), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296304] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4644), 1, - anon_sym_PIPE, - STATE(6753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4642), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296325] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4706), 1, - anon_sym_PIPE, - STATE(6754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4704), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296346] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9552), 1, - sym__left_quoted_string_delimiter, - STATE(6755), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7654), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296375] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9554), 1, - sym__identifier, - STATE(2800), 1, - sym_class_path, - STATE(6756), 1, - sym_attribute, - STATE(6993), 1, - sym__attribute, - STATE(8723), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296404] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9556), 1, - sym__identifier, - STATE(3527), 1, - sym_class_path, - STATE(6757), 1, - sym_attribute, - STATE(7133), 1, - sym__attribute, - STATE(8701), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296433] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9558), 1, - sym__identifier, - STATE(2895), 1, - sym_class_path, - STATE(6758), 1, - sym_attribute, - STATE(7174), 1, - sym__attribute, - STATE(8486), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296462] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9560), 1, - sym__identifier, - STATE(1608), 1, - sym_class_path, - STATE(6759), 1, - sym_attribute, - STATE(7118), 1, - sym__attribute, - STATE(8784), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296491] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9562), 1, - anon_sym_RBRACE, - STATE(6760), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296520] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - STATE(6761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9530), 2, - anon_sym_RBRACK, - anon_sym_SEMI, - [296547] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9417), 1, - sym__left_quoted_string_delimiter, - STATE(6762), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7473), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296576] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9564), 1, - anon_sym_RBRACE, - STATE(6763), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296605] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9566), 1, - anon_sym_RBRACE, - STATE(6764), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296634] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9568), 1, - anon_sym_RBRACE, - STATE(6765), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296663] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9515), 1, - anon_sym_and, - STATE(6724), 1, - aux_sym_module_type_constraint_repeat1, - STATE(6766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6550), 4, - anon_sym_COLON_GT, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_with, - [296686] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9570), 1, - anon_sym_RBRACE, - STATE(6767), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296715] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5124), 1, - anon_sym_PIPE, - STATE(6768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5122), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296736] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4654), 1, - anon_sym_PIPE, - STATE(6769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4652), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296757] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4658), 1, - anon_sym_PIPE, - STATE(6770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4656), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296778] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9572), 1, - anon_sym_RBRACE, - STATE(6771), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296807] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9574), 1, - anon_sym_RBRACE, - STATE(6772), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296836] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9576), 1, - anon_sym_RBRACE, - STATE(6773), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [296865] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4690), 1, - anon_sym_COLON2, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - STATE(6774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4688), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_PIPE, - anon_sym_as, - [296888] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3413), 1, - anon_sym_PIPE, - STATE(6775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3415), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296909] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4662), 1, - anon_sym_PIPE, - STATE(6776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4660), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296930] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5120), 1, - anon_sym_PIPE, - STATE(6777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5118), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296951] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4670), 1, - anon_sym_PIPE, - STATE(6778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4668), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296972] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5112), 1, - anon_sym_PIPE, - STATE(6779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5110), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [296993] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4690), 1, - anon_sym_PIPE, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - STATE(6780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4688), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [297016] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6217), 1, - anon_sym_LPAREN, - ACTIONS(6219), 1, - anon_sym_LBRACK, - STATE(5206), 1, - sym_constructor_declaration, - STATE(6781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6221), 3, - anon_sym_true, - anon_sym_false, - sym__capitalized_identifier, - [297041] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4698), 1, - anon_sym_PIPE, - STATE(6782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4696), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297062] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9578), 1, - anon_sym_RBRACE, - STATE(6783), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297091] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5593), 1, - anon_sym_RPAREN, - STATE(6784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4664), 5, - anon_sym_DASH_GT, - anon_sym_STAR, - anon_sym_POUND, - sym__identifier, - sym__capitalized_identifier, - [297112] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4694), 1, - anon_sym_PIPE, - STATE(6785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4692), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297133] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4682), 1, - anon_sym_COLON2, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - STATE(6786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4680), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_as, - [297158] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4674), 1, - anon_sym_PIPE, - STATE(6787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4672), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297179] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9580), 1, - anon_sym_RBRACE, - STATE(6788), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297208] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5108), 1, - anon_sym_PIPE, - STATE(6789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5106), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297229] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4758), 1, - anon_sym_PIPE, - STATE(6790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4756), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297250] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5104), 1, - anon_sym_PIPE, - STATE(6791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5102), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297271] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9582), 1, - anon_sym_RBRACE, - STATE(6792), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297300] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9584), 1, - anon_sym_RBRACE, - STATE(6793), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297329] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9154), 1, - anon_sym_COMMA, - ACTIONS(9156), 1, - anon_sym_PIPE, - ACTIONS(9160), 1, - anon_sym_as, - ACTIONS(9162), 1, - anon_sym_COLON_COLON, - STATE(6794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8640), 2, - anon_sym_SEMI, - anon_sym_PIPE_RBRACK, - [297356] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9586), 1, - sym__identifier, - STATE(4105), 1, - sym_class_path, - STATE(6795), 1, - sym_attribute, - STATE(7141), 1, - sym__attribute, - STATE(8743), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297385] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4678), 1, - anon_sym_PIPE, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - STATE(6796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4676), 4, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [297408] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9588), 1, - anon_sym_RBRACE, - STATE(6797), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297437] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8620), 1, - anon_sym_PIPE, - STATE(6798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8618), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297458] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8646), 1, - anon_sym_PIPE, - STATE(6799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8644), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297479] = 8, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(3812), 1, - anon_sym_LBRACK_AT_AT, - ACTIONS(6680), 1, - anon_sym_and, - STATE(6704), 1, - aux_sym_expression_item_repeat1, - STATE(6800), 1, - sym_attribute, - STATE(7172), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6678), 2, - anon_sym_in, - sym_and_operator, - [297506] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8680), 1, - anon_sym_PIPE, - STATE(6801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8678), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297527] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9590), 1, - anon_sym_RBRACE, - STATE(6802), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297556] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5100), 1, - anon_sym_PIPE, - STATE(6803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5098), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297577] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(6396), 1, - anon_sym_PERCENT, - ACTIONS(9592), 1, - sym__identifier, - STATE(2360), 1, - sym_class_path, - STATE(6804), 1, - sym_attribute, - STATE(6980), 1, - sym__attribute, - STATE(8617), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297606] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4682), 1, - anon_sym_PIPE, - ACTIONS(9028), 1, - anon_sym_COMMA, - ACTIONS(9036), 1, - anon_sym_COLON_COLON, - STATE(6805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4680), 3, - anon_sym_SEMI, - anon_sym_as, - anon_sym_PIPE_RBRACK, - [297631] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9594), 1, - anon_sym_RBRACE, - STATE(6806), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297660] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4686), 1, - anon_sym_PIPE, - STATE(6807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4684), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297681] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9596), 1, - anon_sym_RBRACE, - STATE(6808), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297710] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3449), 1, - anon_sym_PIPE, - STATE(6809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3451), 5, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COLON_COLON, - anon_sym_PIPE_RBRACK, - [297731] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9598), 1, - anon_sym_RBRACE, - STATE(6810), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297760] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9600), 1, - anon_sym_RBRACE, - STATE(6811), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297789] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9602), 1, - anon_sym_RBRACE, - STATE(6812), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297818] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9604), 1, - anon_sym_RBRACE, - STATE(6813), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297847] = 9, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - ACTIONS(9606), 1, - anon_sym_RBRACE, - STATE(6814), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297876] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6815), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7692), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297902] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5946), 1, - sym__identifier, - ACTIONS(9608), 1, - anon_sym_POUND, - STATE(5071), 1, - sym_type_constructor_path, - STATE(6816), 1, - sym_attribute, - STATE(8222), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297928] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9610), 1, - anon_sym_RBRACK, - STATE(6817), 1, - sym_attribute, - STATE(7536), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297954] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6818), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(8189), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [297980] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6819), 1, - sym_attribute, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7044), 2, - anon_sym_and, - anon_sym_in, - [298004] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5970), 1, - sym__identifier, - ACTIONS(9612), 1, - anon_sym_POUND, - STATE(4635), 1, - sym_type_constructor_path, - STATE(6820), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298030] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9614), 1, - anon_sym_type, - ACTIONS(9616), 1, - anon_sym_module, - STATE(6821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6593), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [298052] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9618), 1, - anon_sym_RPAREN, - STATE(6822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298078] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6823), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7766), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298104] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(6824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8246), 3, - anon_sym_COLON_GT, - anon_sym_EQ, - anon_sym_RPAREN, - [298126] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6825), 1, - sym_attribute, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6751), 2, - anon_sym_and, - anon_sym_in, - [298150] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5972), 1, - sym__identifier, - ACTIONS(9620), 1, - anon_sym_POUND, - STATE(4819), 1, - sym_type_constructor_path, - STATE(6826), 1, - sym_attribute, - STATE(8142), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298176] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6827), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7542), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298202] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9622), 1, - anon_sym_RPAREN, - STATE(6828), 1, - sym_attribute, - STATE(7353), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298228] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9624), 1, - anon_sym_RPAREN, - STATE(6829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298254] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - ACTIONS(9626), 1, - anon_sym_as, - STATE(6830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [298276] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9628), 1, - anon_sym_RPAREN, - STATE(6831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298302] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6429), 1, - sym__identifier, - ACTIONS(9612), 1, - anon_sym_POUND, - STATE(4635), 1, - sym_type_constructor_path, - STATE(6832), 1, - sym_attribute, - STATE(8109), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298328] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6833), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7827), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298354] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5996), 1, - sym__identifier, - ACTIONS(9630), 1, - anon_sym_POUND, - STATE(4619), 1, - sym_type_constructor_path, - STATE(6834), 1, - sym_attribute, - STATE(8269), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298380] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6835), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7657), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298406] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6836), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7800), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298432] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9632), 1, - anon_sym_RPAREN, - STATE(6837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298458] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9457), 1, - anon_sym_RBRACK, - STATE(6838), 1, - sym_attribute, - STATE(7255), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298484] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9270), 1, - anon_sym_AMP, - STATE(6839), 1, - sym_attribute, - STATE(6864), 1, - aux_sym_tag_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9266), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [298506] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9469), 1, - anon_sym_RBRACK, - STATE(6840), 1, - sym_attribute, - STATE(7826), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298532] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6841), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7781), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298558] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6842), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7596), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298584] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6429), 1, - sym__identifier, - ACTIONS(9634), 1, - anon_sym_POUND, - STATE(6021), 1, - sym_type_constructor_path, - STATE(6843), 1, - sym_attribute, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298610] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9636), 1, - anon_sym_RPAREN, - STATE(6844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298636] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9638), 1, - anon_sym_RBRACK, - STATE(6845), 1, - sym_attribute, - STATE(7351), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298662] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6846), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7494), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298688] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6847), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7569), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298714] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9640), 1, - anon_sym_RPAREN, - STATE(6848), 1, - sym_attribute, - STATE(7416), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298740] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9614), 1, - anon_sym_type, - ACTIONS(9616), 1, - anon_sym_module, - STATE(6849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6385), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [298762] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6850), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7562), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298788] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9642), 1, - anon_sym_RBRACK, - STATE(6851), 1, - sym_attribute, - STATE(7693), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298814] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9182), 1, - anon_sym_COMMA, - ACTIONS(9184), 1, - anon_sym_PIPE, - ACTIONS(9186), 1, - anon_sym_as, - ACTIONS(9188), 1, - anon_sym_COLON_COLON, - ACTIONS(9644), 1, - anon_sym_RPAREN, - STATE(6852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298840] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6853), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7394), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298866] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9646), 1, - anon_sym_EQ, - ACTIONS(9648), 1, - anon_sym_of, - ACTIONS(9650), 1, - anon_sym_COLON2, - STATE(6854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6223), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [298890] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6855), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(8055), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298916] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9652), 1, - anon_sym_RPAREN, - STATE(6856), 1, - sym_attribute, - STATE(7228), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298942] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6857), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7724), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [298968] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(6858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9654), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [298990] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - ACTIONS(9656), 1, - anon_sym_POUND, - STATE(5786), 1, - sym_type_constructor_path, - STATE(6859), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299016] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6860), 1, - sym_attribute, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6439), 2, - anon_sym_and, - anon_sym_in, - [299040] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9658), 1, - anon_sym_type, - ACTIONS(9660), 1, - anon_sym_module, - STATE(6861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4898), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [299062] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9664), 1, - anon_sym__, - STATE(6862), 1, - sym_attribute, - STATE(6865), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9662), 2, - anon_sym_PLUS, - anon_sym_DASH, - [299086] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9666), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299104] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9668), 1, - anon_sym_AMP, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6864), 2, - sym_attribute, - aux_sym_tag_specification_repeat1, - ACTIONS(9503), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [299124] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9671), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299142] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9673), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299160] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6867), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7247), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299186] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9675), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299204] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9677), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299222] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6870), 1, - sym_attribute, - STATE(6899), 1, - sym_field_path, - STATE(7763), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299248] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9679), 1, - anon_sym_LBRACK_AT_AT, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6261), 2, - anon_sym_and, - anon_sym_in, - STATE(6871), 2, - sym_attribute, - aux_sym_expression_item_repeat1, - [299270] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6872), 1, - sym_attribute, - STATE(6874), 1, - sym_field_path, - STATE(7537), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299296] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9270), 1, - anon_sym_AMP, - STATE(6864), 1, - aux_sym_tag_specification_repeat1, - STATE(6873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9682), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [299318] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9684), 1, - anon_sym_EQ, - ACTIONS(9686), 1, - anon_sym_COLON2, - STATE(6874), 1, - sym_attribute, - STATE(7594), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9688), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [299342] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6875), 1, - sym_attribute, - STATE(7484), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299368] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9690), 1, - anon_sym_type, - ACTIONS(9692), 1, - anon_sym_module, - STATE(6876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4898), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [299390] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6877), 1, - sym_attribute, - STATE(7366), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299416] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6878), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7654), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299442] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9694), 1, - anon_sym_type, - ACTIONS(9696), 1, - anon_sym_module, - STATE(6879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(4898), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [299464] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6880), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7624), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299490] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9698), 1, - anon_sym_RPAREN, - STATE(6881), 1, - sym_attribute, - STATE(7540), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299516] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6882), 1, - sym_attribute, - STATE(7546), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299542] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9700), 1, - anon_sym_RPAREN, - STATE(6883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299568] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6884), 1, - sym_attribute, - STATE(7514), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299594] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6885), 1, - sym_attribute, - STATE(7275), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299620] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9702), 1, - sym__identifier, - ACTIONS(9704), 1, - anon_sym_BANG, - STATE(6886), 1, - sym_attribute, - STATE(7064), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [299644] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9708), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - sym__identifier, - sym__capitalized_identifier, - [299662] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9710), 1, - sym__identifier, - ACTIONS(9714), 1, - anon_sym_BANG, - STATE(6888), 1, - sym_attribute, - STATE(6971), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [299686] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6889), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6912), 2, - anon_sym_and, - anon_sym_in, - [299710] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6890), 1, - sym_attribute, - STATE(6904), 1, - sym_field_path, - STATE(7939), 1, - sym_field_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299736] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9690), 1, - anon_sym_type, - ACTIONS(9692), 1, - anon_sym_module, - STATE(6891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5447), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [299758] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9716), 1, - anon_sym_RPAREN, - STATE(6892), 1, - sym_attribute, - STATE(7644), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299784] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(6893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9455), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [299806] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9718), 1, - anon_sym_EQ, - ACTIONS(9720), 1, - anon_sym_of, - ACTIONS(9722), 1, - anon_sym_COLON2, - STATE(6894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6489), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [299830] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9724), 1, - anon_sym_EQ, - ACTIONS(9726), 1, - anon_sym_of, - ACTIONS(9728), 1, - anon_sym_COLON2, - STATE(6895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6502), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [299854] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9730), 1, - sym__identifier, - ACTIONS(9732), 1, - anon_sym_LPAREN, - ACTIONS(9734), 1, - sym__capitalized_identifier, - STATE(5799), 1, - sym_parenthesized_operator, - STATE(5814), 1, - sym__value_name, - STATE(6896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299880] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - ACTIONS(9626), 1, - anon_sym_as, - STATE(6897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(8246), 3, - anon_sym_EQ, - anon_sym_SEMI, - anon_sym_RBRACE, - [299902] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9736), 1, - anon_sym_RBRACK, - STATE(6898), 1, - sym_attribute, - STATE(7675), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299928] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9686), 1, - anon_sym_COLON2, - ACTIONS(9738), 1, - anon_sym_EQ, - STATE(6899), 1, - sym_attribute, - STATE(7705), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9740), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [299952] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9742), 1, - anon_sym_RPAREN, - STATE(6900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [299978] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9658), 1, - anon_sym_type, - ACTIONS(9660), 1, - anon_sym_module, - STATE(6901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(5038), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [300000] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9744), 1, - anon_sym_RPAREN, - STATE(6902), 1, - sym_attribute, - STATE(7649), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300026] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6903), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6747), 2, - anon_sym_and, - anon_sym_in, - [300050] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9686), 1, - anon_sym_COLON2, - ACTIONS(9746), 1, - anon_sym_EQ, - STATE(6904), 1, - sym_attribute, - STATE(7246), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9748), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [300074] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - ACTIONS(9626), 1, - anon_sym_as, - STATE(6905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7957), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [300096] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9750), 1, - anon_sym_RBRACK, - STATE(6906), 1, - sym_attribute, - STATE(7652), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300122] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9694), 1, - anon_sym_type, - ACTIONS(9696), 1, - anon_sym_module, - STATE(6907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(6766), 3, - sym_constrain_type, - sym_constrain_module, - sym_constrain_module_type, - [300144] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6899), 1, - sym_field_path, - STATE(6908), 1, - sym_attribute, - STATE(7473), 1, - sym_field_binding_pattern, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300170] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9752), 1, - anon_sym_DASH_GT, - ACTIONS(9754), 1, - anon_sym_with, - STATE(6909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6636), 3, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [300192] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - ACTIONS(9626), 1, - anon_sym_as, - STATE(6910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7880), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_GT, - [300214] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6911), 1, - sym_attribute, - STATE(7355), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300240] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8624), 1, - anon_sym_COMMA, - ACTIONS(8626), 1, - anon_sym_PIPE, - ACTIONS(8630), 1, - anon_sym_as, - ACTIONS(8632), 1, - anon_sym_COLON_COLON, - ACTIONS(9756), 1, - anon_sym_RPAREN, - STATE(6912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300266] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9752), 1, - anon_sym_DASH_GT, - ACTIONS(9754), 1, - anon_sym_with, - STATE(6913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6606), 3, - anon_sym_and, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [300288] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6914), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6012), 2, - anon_sym_and, - anon_sym_in, - [300312] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(8838), 1, - sym__identifier, - STATE(6874), 1, - sym_field_path, - STATE(6915), 1, - sym_attribute, - STATE(7635), 1, - sym_field_expression, - STATE(9264), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300338] = 8, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(9758), 1, - anon_sym_RPAREN, - STATE(6916), 1, - sym_attribute, - STATE(7368), 1, - aux_sym_instantiated_class_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300364] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(6917), 1, - sym_attribute, - STATE(8027), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9760), 2, - sym__identifier, - sym__capitalized_identifier, - [300385] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - STATE(6195), 1, - sym_type_constructor_path, - STATE(6918), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300408] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9762), 1, - anon_sym_DOT, - STATE(6919), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300431] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(4930), 1, - sym_class_type_path, - STATE(6920), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300454] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9382), 1, - sym__identifier, - STATE(3829), 1, - sym_class_path, - STATE(6921), 1, - sym_attribute, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300477] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7589), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(6922), 1, - sym_attribute, - STATE(7030), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300500] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9772), 1, - anon_sym_with, - ACTIONS(9774), 1, - sym_hash_operator, - STATE(6923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300523] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9778), 1, - anon_sym_GT, - STATE(6924), 1, - sym_attribute, - STATE(6943), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300546] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9780), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(6925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300569] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9782), 1, - anon_sym_DOT, - STATE(6926), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300592] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9784), 1, - anon_sym_COLON_GT, - ACTIONS(9786), 1, - anon_sym_RPAREN, - STATE(6927), 1, - sym_attribute, - STATE(7901), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300615] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9790), 1, - anon_sym_RBRACE, - ACTIONS(9792), 1, - anon_sym_mutable, - STATE(6928), 1, - sym_attribute, - STATE(7895), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300638] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(9794), 1, - anon_sym_LPAREN, - STATE(6929), 1, - sym_attribute, - STATE(7938), 1, - sym_constructor_path, - STATE(9218), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300661] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(6930), 1, - sym_attribute, - STATE(8201), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9796), 2, - anon_sym__, - sym__capitalized_identifier, - [300682] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3497), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - STATE(6931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3499), 2, - anon_sym_with, - sym_hash_operator, - [300703] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9382), 1, - sym__identifier, - STATE(3820), 1, - sym_class_path, - STATE(6932), 1, - sym_attribute, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300726] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9086), 1, - anon_sym_DASH_GT, - STATE(4951), 1, - sym_module_parameter, - STATE(6933), 1, - sym_attribute, - STATE(7104), 1, - aux_sym_module_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300749] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9798), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9801), 2, - anon_sym_RPAREN, - anon_sym_DOT, - STATE(6934), 2, - sym_attribute, - aux_sym__abstract_type_repeat1, - [300768] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9803), 1, - anon_sym_RBRACK, - ACTIONS(9805), 1, - anon_sym_GT, - STATE(6935), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300791] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9447), 1, - sym__identifier, - STATE(1893), 1, - sym_class_path, - STATE(6936), 1, - sym_attribute, - STATE(9329), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300814] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - STATE(6937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6586), 2, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [300835] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9811), 1, - anon_sym_of, - STATE(6938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9809), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [300854] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9813), 1, - anon_sym_RBRACK, - ACTIONS(9815), 1, - anon_sym_GT, - STATE(6939), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300877] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - STATE(4951), 1, - sym_module_parameter, - STATE(6925), 1, - aux_sym_module_binding_repeat1, - STATE(6940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300900] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(3435), 4, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_of, - anon_sym_GT, - [300917] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9817), 1, - anon_sym_DOT, - STATE(6942), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300940] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9819), 1, - anon_sym_RBRACK, - ACTIONS(9821), 1, - anon_sym_GT, - STATE(6943), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300963] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9823), 1, - anon_sym_with, - STATE(6944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [300986] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9825), 1, - sym__identifier, - STATE(6934), 1, - aux_sym__abstract_type_repeat1, - STATE(6945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9827), 2, - anon_sym_RPAREN, - anon_sym_DOT, - [301007] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9829), 1, - sym__identifier, - STATE(5101), 1, - sym_class_type_path, - STATE(6946), 1, - sym_attribute, - STATE(8053), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301030] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9829), 1, - sym__identifier, - STATE(5115), 1, - sym_class_type_path, - STATE(6947), 1, - sym_attribute, - STATE(8053), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301053] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4595), 1, - sym_class_type_path, - STATE(6948), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301076] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9833), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(6949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301099] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9835), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(6950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301122] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5268), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9837), 1, - anon_sym_GT, - STATE(6951), 1, - sym_attribute, - STATE(7115), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301145] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9382), 1, - sym__identifier, - STATE(3550), 1, - sym_class_path, - STATE(6952), 1, - sym_attribute, - STATE(8820), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301168] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9803), 1, - anon_sym_RBRACK, - ACTIONS(9805), 1, - anon_sym_GT, - STATE(6953), 1, - sym_attribute, - STATE(7216), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301191] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9839), 1, - anon_sym_RBRACK, - STATE(6954), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301214] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9841), 1, - sym__identifier, - STATE(4816), 1, - sym_class_type_path, - STATE(6955), 1, - sym_attribute, - STATE(8303), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301237] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9843), 1, - anon_sym_LPAREN, - ACTIONS(9845), 1, - sym__capitalized_identifier, - STATE(5240), 1, - sym_constructor_path, - STATE(6956), 1, - sym_attribute, - STATE(8640), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301260] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(6957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301283] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(9851), 1, - anon_sym_SEMI, - ACTIONS(9853), 1, - anon_sym_GT_RBRACE, - STATE(6958), 1, - sym_attribute, - STATE(7566), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301306] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7219), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6959), 1, - sym_attribute, - STATE(6975), 1, - aux_sym_expression_item_repeat1, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301329] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(9855), 1, - anon_sym_LPAREN, - STATE(5256), 1, - sym_constructor_path, - STATE(6960), 1, - sym_attribute, - STATE(8675), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301352] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9857), 1, - anon_sym_DOT, - STATE(6961), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301375] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9859), 1, - anon_sym_DOT, - STATE(6962), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301398] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9404), 1, - sym__identifier, - STATE(4122), 1, - sym_class_path, - STATE(6963), 1, - sym_attribute, - STATE(8477), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301421] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(9861), 1, - anon_sym_SEMI, - ACTIONS(9863), 1, - anon_sym_GT_RBRACE, - STATE(6964), 1, - sym_attribute, - STATE(7754), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301444] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6965), 1, - sym_attribute, - STATE(9137), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301467] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7219), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6966), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301490] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9865), 1, - anon_sym_DOT, - STATE(6967), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301513] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(9867), 1, - anon_sym_SEMI, - ACTIONS(9869), 1, - anon_sym_GT_RBRACE, - STATE(6968), 1, - sym_attribute, - STATE(7709), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301536] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5685), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6969), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301559] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9871), 1, - anon_sym_COLON_GT, - ACTIONS(9873), 1, - anon_sym_RPAREN, - STATE(6970), 1, - sym_attribute, - STATE(8064), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301582] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9875), 1, - sym__identifier, - STATE(6971), 1, - sym_attribute, - STATE(7176), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [301603] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9465), 1, - sym__identifier, - STATE(4117), 1, - sym_class_path, - STATE(6972), 1, - sym_attribute, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301626] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(9794), 1, - anon_sym_LPAREN, - STATE(6973), 1, - sym_attribute, - STATE(7881), 1, - sym_constructor_path, - STATE(9218), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301649] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9877), 1, - anon_sym_with, - STATE(6974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301672] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7148), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(6975), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301695] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9495), 1, - sym__identifier, - STATE(3027), 1, - sym_class_path, - STATE(6976), 1, - sym_attribute, - STATE(8854), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301718] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9408), 1, - anon_sym_LPAREN, - ACTIONS(9730), 1, - sym__identifier, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6318), 1, - sym__value_name, - STATE(6977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301741] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7464), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(6978), 1, - sym_attribute, - STATE(7015), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301764] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(6979), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301787] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9592), 1, - sym__identifier, - STATE(2425), 1, - sym_class_path, - STATE(6980), 1, - sym_attribute, - STATE(8617), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301810] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9881), 1, - anon_sym_RBRACK, - STATE(6981), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301833] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5876), 1, - anon_sym_STAR, - STATE(6982), 1, - sym_attribute, - STATE(7024), 1, - aux_sym__constructor_argument_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6598), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [301854] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9883), 1, - sym__identifier, - STATE(4659), 1, - sym_class_type_path, - STATE(6983), 1, - sym_attribute, - STATE(8236), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301877] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9885), 1, - sym__identifier, - STATE(6002), 1, - sym_class_type_path, - STATE(6984), 1, - sym_attribute, - STATE(8196), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301900] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9887), 1, - anon_sym_EQ, - ACTIONS(9889), 1, - anon_sym_RPAREN, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(6985), 1, - sym_attribute, - STATE(8268), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301923] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(9855), 1, - anon_sym_LPAREN, - STATE(5165), 1, - sym_constructor_path, - STATE(6986), 1, - sym_attribute, - STATE(8675), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301946] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9893), 1, - anon_sym_RBRACK, - ACTIONS(9895), 1, - anon_sym_GT, - STATE(6987), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301969] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(9897), 1, - anon_sym_SEMI, - ACTIONS(9899), 1, - anon_sym_GT_RBRACE, - STATE(6988), 1, - sym_attribute, - STATE(7230), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [301992] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9819), 1, - anon_sym_RBRACK, - ACTIONS(9821), 1, - anon_sym_GT, - STATE(6987), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(6989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302015] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9901), 1, - anon_sym_DOT, - STATE(6990), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302038] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4614), 1, - sym_class_type_path, - STATE(6991), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302061] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(6992), 1, - sym_attribute, - STATE(8029), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9903), 2, - anon_sym__, - sym__capitalized_identifier, - [302082] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9554), 1, - sym__identifier, - STATE(2807), 1, - sym_class_path, - STATE(6993), 1, - sym_attribute, - STATE(8723), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302105] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(9905), 1, - anon_sym_SEMI, - ACTIONS(9907), 1, - anon_sym_GT_RBRACE, - STATE(6994), 1, - sym_attribute, - STATE(7613), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302128] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9909), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(6995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302151] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9911), 1, - anon_sym_DOT, - STATE(6996), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302174] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7464), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(6997), 1, - sym_attribute, - STATE(7163), 1, - aux_sym_value_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302197] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - STATE(6998), 1, - sym_attribute, - STATE(7589), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302220] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9913), 1, - aux_sym_attribute_id_token1, - STATE(6999), 1, - sym_attribute, - STATE(7161), 1, - aux_sym_attribute_id_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4521), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [302241] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9344), 1, - sym__identifier, - ACTIONS(9346), 1, - anon_sym_LBRACK, - ACTIONS(9348), 1, - anon_sym_virtual, - STATE(5610), 1, - sym_class_binding, - STATE(7000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302264] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9098), 1, - sym__identifier, - ACTIONS(9102), 1, - anon_sym_LBRACK, - ACTIONS(9104), 1, - anon_sym_virtual, - STATE(5852), 1, - sym_class_binding, - STATE(7001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302287] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9915), 1, - sym__identifier, - STATE(3809), 1, - sym_type_constructor_path, - STATE(7002), 1, - sym_attribute, - STATE(8080), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302310] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9465), 1, - sym__identifier, - STATE(4122), 1, - sym_class_path, - STATE(7003), 1, - sym_attribute, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302333] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9917), 1, - sym__identifier, - STATE(4232), 1, - sym_type_constructor_path, - STATE(7004), 1, - sym_attribute, - STATE(7985), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302356] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9404), 1, - sym__identifier, - STATE(4117), 1, - sym_class_path, - STATE(7005), 1, - sym_attribute, - STATE(8477), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302379] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9919), 1, - anon_sym_with, - STATE(7006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302402] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - STATE(7007), 1, - sym_attribute, - STATE(7240), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302425] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(9921), 1, - sym__identifier, - STATE(7008), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - STATE(8106), 1, - sym_module_type_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302448] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9465), 1, - sym__identifier, - STATE(1472), 1, - sym_class_path, - STATE(7009), 1, - sym_attribute, - STATE(9285), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302471] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9923), 1, - anon_sym_rec, - STATE(5622), 1, - sym_module_binding, - STATE(7010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9096), 2, - anon_sym__, - sym__capitalized_identifier, - [302492] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9925), 1, - sym__identifier, - ACTIONS(9927), 1, - anon_sym_LPAREN, - STATE(3110), 1, - sym__value_name, - STATE(3138), 1, - sym_parenthesized_operator, - STATE(7011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302515] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9929), 1, - anon_sym_with, - STATE(7012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302538] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(5778), 1, - sym_class_type_path, - STATE(7013), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302561] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6415), 1, - anon_sym_and, - STATE(7014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6413), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [302580] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7485), 1, - anon_sym_in, - ACTIONS(9931), 1, - anon_sym_and, - ACTIONS(9934), 1, - sym_and_operator, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7015), 2, - sym_attribute, - aux_sym_value_definition_repeat1, - [302601] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6207), 1, - sym__value_pattern, - STATE(7016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302624] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9937), 1, - sym__identifier, - ACTIONS(9939), 1, - anon_sym_LPAREN, - STATE(6680), 1, - sym_parenthesized_operator, - STATE(6807), 1, - sym__value_name, - STATE(7017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302647] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9941), 1, - anon_sym_COLON_GT, - ACTIONS(9943), 1, - anon_sym_RPAREN, - STATE(7018), 1, - sym_attribute, - STATE(7911), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302670] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9947), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9945), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(7019), 2, - sym_attribute, - aux_sym__type_params_repeat1, - [302689] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9841), 1, - sym__identifier, - STATE(4834), 1, - sym_class_type_path, - STATE(7020), 1, - sym_attribute, - STATE(8303), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302712] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5324), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9950), 1, - anon_sym_GT, - STATE(7021), 1, - sym_attribute, - STATE(7066), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302735] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7022), 1, - sym_attribute, - STATE(8052), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9952), 2, - anon_sym__, - sym__capitalized_identifier, - [302756] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - STATE(7023), 1, - sym_attribute, - STATE(7752), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302779] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9954), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6173), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - STATE(7024), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - [302798] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9957), 1, - anon_sym_with, - STATE(7025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302821] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9875), 1, - sym__identifier, - STATE(7026), 1, - sym_attribute, - STATE(7122), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [302842] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9959), 1, - anon_sym_with, - STATE(7027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302865] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(9921), 1, - sym__identifier, - STATE(7028), 1, - sym_attribute, - STATE(8032), 1, - sym_module_type_path, - STATE(8089), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302888] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9961), 1, - anon_sym_DOT, - STATE(7029), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302911] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7561), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(7015), 1, - aux_sym_value_definition_repeat1, - STATE(7030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302934] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9963), 1, - anon_sym_COLON_GT, - ACTIONS(9965), 1, - anon_sym_RPAREN, - STATE(7031), 1, - sym_attribute, - STATE(8296), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302957] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9967), 1, - anon_sym_COLON_GT, - ACTIONS(9969), 1, - anon_sym_RPAREN, - STATE(7032), 1, - sym_attribute, - STATE(8136), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [302980] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9813), 1, - anon_sym_RBRACK, - STATE(7033), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303003] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9971), 1, - anon_sym_COLON_GT, - ACTIONS(9973), 1, - anon_sym_RPAREN, - STATE(7034), 1, - sym_attribute, - STATE(7979), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303026] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9975), 1, - sym__identifier, - STATE(7035), 1, - sym_attribute, - STATE(7039), 1, - aux_sym_instance_variable_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [303047] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9977), 1, - anon_sym_COLON_GT, - ACTIONS(9979), 1, - anon_sym_RPAREN, - STATE(7036), 1, - sym_attribute, - STATE(8019), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303070] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(9981), 1, - anon_sym_with, - STATE(7037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303093] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9983), 1, - sym__identifier, - STATE(7038), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - STATE(9630), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303116] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9985), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9987), 2, - anon_sym_mutable, - anon_sym_virtual, - STATE(7039), 2, - sym_attribute, - aux_sym_instance_variable_specification_repeat1, - [303135] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9990), 1, - anon_sym_RBRACK, - STATE(7040), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303158] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(9992), 1, - anon_sym_COLON_GT, - ACTIONS(9994), 1, - anon_sym_RPAREN, - STATE(7041), 1, - sym_attribute, - STATE(8116), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303181] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9996), 1, - anon_sym_RBRACK, - ACTIONS(9998), 1, - anon_sym_GT, - STATE(7042), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303204] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10000), 1, - sym__identifier, - STATE(7043), 1, - sym_attribute, - STATE(8158), 1, - sym_extended_module_path, - STATE(9236), 1, - sym_type_constructor_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303227] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10002), 1, - anon_sym_with, - STATE(7044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303250] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10004), 1, - anon_sym_RBRACK, - ACTIONS(10006), 1, - anon_sym_GT, - STATE(7042), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303273] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9885), 1, - sym__identifier, - STATE(5992), 1, - sym_class_type_path, - STATE(7046), 1, - sym_attribute, - STATE(8196), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303296] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10004), 1, - anon_sym_RBRACK, - ACTIONS(10006), 1, - anon_sym_GT, - STATE(7047), 1, - sym_attribute, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303319] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9885), 1, - sym__identifier, - STATE(6020), 1, - sym_class_type_path, - STATE(7048), 1, - sym_attribute, - STATE(8196), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303342] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(9662), 1, - anon_sym_BANG, - ACTIONS(9664), 1, - anon_sym__, - STATE(6865), 1, - sym_type_variable, - STATE(7049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303365] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9885), 1, - sym__identifier, - STATE(6045), 1, - sym_class_type_path, - STATE(7050), 1, - sym_attribute, - STATE(8196), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303388] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9344), 1, - sym__identifier, - ACTIONS(9346), 1, - anon_sym_LBRACK, - ACTIONS(9348), 1, - anon_sym_virtual, - STATE(5877), 1, - sym_class_binding, - STATE(7051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303411] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9893), 1, - anon_sym_RBRACK, - STATE(7052), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303434] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - ACTIONS(10008), 1, - anon_sym_EQ, - ACTIONS(10010), 1, - anon_sym_RPAREN, - STATE(7053), 1, - sym_attribute, - STATE(7998), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303457] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10012), 1, - anon_sym_SEMI, - ACTIONS(10014), 1, - anon_sym_GT_RBRACE, - STATE(7054), 1, - sym_attribute, - STATE(7497), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303480] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(7055), 1, - sym_attribute, - STATE(8058), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303503] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10016), 1, - anon_sym_with, - STATE(7056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303526] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9841), 1, - sym__identifier, - STATE(4767), 1, - sym_class_type_path, - STATE(7057), 1, - sym_attribute, - STATE(8303), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303549] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10018), 1, - anon_sym_PIPE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10021), 2, - anon_sym_RBRACK, - anon_sym_GT, - STATE(7058), 2, - sym_attribute, - aux_sym_polymorphic_variant_type_repeat1, - [303568] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10023), 1, - anon_sym_COMMA, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9654), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(7059), 2, - sym_attribute, - aux_sym_instantiated_class_type_repeat1, - [303587] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10026), 1, - anon_sym_SEMI, - ACTIONS(10028), 1, - anon_sym_GT_RBRACE, - STATE(7060), 1, - sym_attribute, - STATE(7683), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303610] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10030), 1, - anon_sym_COLON_GT, - ACTIONS(10032), 1, - anon_sym_RPAREN, - STATE(7061), 1, - sym_attribute, - STATE(8021), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303633] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10034), 1, - anon_sym_COLON_GT, - ACTIONS(10036), 1, - anon_sym_RPAREN, - STATE(7062), 1, - sym_attribute, - STATE(8182), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303656] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10038), 1, - anon_sym_COLON_GT, - ACTIONS(10040), 1, - anon_sym_RPAREN, - STATE(7063), 1, - sym_attribute, - STATE(8119), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303679] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10042), 1, - sym__identifier, - STATE(7039), 1, - aux_sym_instance_variable_specification_repeat1, - STATE(7064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [303700] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10044), 1, - anon_sym_rec, - STATE(7065), 1, - sym_attribute, - STATE(7587), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9477), 2, - anon_sym__, - sym__capitalized_identifier, - [303721] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10046), 1, - anon_sym_RBRACK, - ACTIONS(10048), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303744] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10050), 1, - anon_sym_with, - STATE(7067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303767] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10052), 1, - anon_sym_GT, - STATE(7047), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303790] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6234), 1, - sym__value_pattern, - STATE(7069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303813] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9829), 1, - sym__identifier, - STATE(5072), 1, - sym_class_type_path, - STATE(7070), 1, - sym_attribute, - STATE(8053), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303836] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(5780), 1, - sym_class_type_path, - STATE(7071), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303859] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10054), 1, - anon_sym_with, - STATE(7072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303882] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7073), 1, - sym_attribute, - STATE(8313), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10056), 2, - anon_sym__, - sym__capitalized_identifier, - [303903] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10058), 1, - anon_sym_COLON_GT, - ACTIONS(10060), 1, - anon_sym_RPAREN, - STATE(7074), 1, - sym_attribute, - STATE(7956), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303926] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7440), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6966), 1, - aux_sym_expression_item_repeat1, - STATE(7075), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303949] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10046), 1, - anon_sym_RBRACK, - ACTIONS(10048), 1, - anon_sym_GT, - STATE(6939), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303972] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10062), 1, - sym__identifier, - STATE(3574), 1, - sym_type_constructor_path, - STATE(7077), 1, - sym_attribute, - STATE(8181), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [303995] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6423), 1, - anon_sym_and, - STATE(7078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6421), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [304014] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10064), 1, - anon_sym_GT, - STATE(7079), 1, - sym_attribute, - STATE(7213), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304037] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(5619), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(7080), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304060] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10066), 1, - sym__identifier, - STATE(3073), 1, - sym_type_constructor_path, - STATE(7081), 1, - sym_attribute, - STATE(8085), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304083] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9843), 1, - anon_sym_LPAREN, - ACTIONS(9845), 1, - sym__capitalized_identifier, - STATE(5165), 1, - sym_constructor_path, - STATE(7082), 1, - sym_attribute, - STATE(8640), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304106] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10068), 1, - sym__identifier, - STATE(4562), 1, - sym_type_constructor_path, - STATE(7083), 1, - sym_attribute, - STATE(8281), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304129] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10070), 1, - anon_sym_SEMI, - ACTIONS(10072), 1, - anon_sym_GT_RBRACE, - STATE(7084), 1, - sym_attribute, - STATE(7432), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304152] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9435), 1, - sym__identifier, - STATE(3363), 1, - sym_class_path, - STATE(7085), 1, - sym_attribute, - STATE(8886), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304175] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9110), 1, - sym__identifier, - ACTIONS(9112), 1, - anon_sym_LBRACK, - ACTIONS(9114), 1, - anon_sym_virtual, - STATE(5610), 1, - sym_class_binding, - STATE(7086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304198] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_RBRACK, - ACTIONS(10076), 1, - anon_sym_GT, - STATE(7087), 1, - sym_attribute, - STATE(7191), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304221] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10078), 1, - anon_sym_SEMI, - ACTIONS(10080), 1, - anon_sym_GT_RBRACE, - STATE(7088), 1, - sym_attribute, - STATE(7465), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304244] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10042), 1, - sym__identifier, - STATE(7035), 1, - aux_sym_instance_variable_specification_repeat1, - STATE(7089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [304265] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10082), 1, - sym__identifier, - STATE(7090), 1, - sym_attribute, - STATE(7176), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [304286] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10084), 1, - anon_sym_COLON_GT, - ACTIONS(10086), 1, - anon_sym_RPAREN, - STATE(7091), 1, - sym_attribute, - STATE(7847), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304309] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(5966), 1, - sym__identifier, - STATE(7092), 1, - sym_attribute, - STATE(7684), 1, - sym_type_constructor_path, - STATE(8158), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304332] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10088), 1, - anon_sym_with, - STATE(7093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304355] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10090), 1, - anon_sym_DOT, - STATE(7094), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304378] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - STATE(7095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6606), 2, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [304399] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10092), 1, - sym__identifier, - STATE(7039), 1, - aux_sym_instance_variable_specification_repeat1, - STATE(7096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [304420] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10094), 1, - anon_sym_with, - STATE(7097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304443] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10096), 1, - sym__identifier, - STATE(4930), 1, - sym_class_type_path, - STATE(7098), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304466] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9829), 1, - sym__identifier, - STATE(5063), 1, - sym_class_type_path, - STATE(7099), 1, - sym_attribute, - STATE(8053), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304489] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4220), 1, - sym__capitalized_identifier, - ACTIONS(9794), 1, - anon_sym_LPAREN, - STATE(7100), 1, - sym_attribute, - STATE(8051), 1, - sym_constructor_path, - STATE(9218), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304512] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10098), 1, - anon_sym_with, - STATE(7101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304535] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10100), 1, - anon_sym_with, - STATE(7102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304558] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9404), 1, - sym__identifier, - STATE(4024), 1, - sym_class_path, - STATE(7103), 1, - sym_attribute, - STATE(8477), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304581] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(10102), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(7104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304604] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7105), 1, - sym_attribute, - STATE(8252), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10104), 2, - anon_sym__, - sym__capitalized_identifier, - [304625] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10106), 1, - anon_sym_SEMI, - ACTIONS(10108), 1, - anon_sym_GT_RBRACE, - STATE(7106), 1, - sym_attribute, - STATE(7753), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304648] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10110), 1, - anon_sym_DOT, - STATE(7107), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304671] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10112), 1, - anon_sym_SEMI, - ACTIONS(10114), 1, - anon_sym_GT_RBRACE, - STATE(7108), 1, - sym_attribute, - STATE(7698), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304694] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7511), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(6978), 1, - aux_sym_value_definition_repeat1, - STATE(7109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304717] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10116), 1, - anon_sym_SEMI, - ACTIONS(10118), 1, - anon_sym_GT_RBRACE, - STATE(7110), 1, - sym_attribute, - STATE(7821), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304740] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4599), 1, - sym_class_type_path, - STATE(7111), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304763] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(7112), 1, - sym_attribute, - STATE(7907), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304786] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10120), 1, - anon_sym_DOT, - STATE(7113), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304809] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10122), 1, - anon_sym_RBRACK, - ACTIONS(10124), 1, - anon_sym_GT, - STATE(7114), 1, - sym_attribute, - STATE(7151), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304832] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10122), 1, - anon_sym_RBRACK, - ACTIONS(10124), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304855] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(6140), 1, - sym__value_pattern, - STATE(7116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304878] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10126), 1, - anon_sym_DOT, - STATE(7117), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304901] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9560), 1, - sym__identifier, - STATE(1633), 1, - sym_class_path, - STATE(7118), 1, - sym_attribute, - STATE(8784), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304924] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(10128), 1, - sym__identifier, - STATE(3670), 1, - sym_class_path, - STATE(7119), 1, - sym_attribute, - STATE(8436), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304947] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10130), 1, - anon_sym_SEMI, - ACTIONS(10132), 1, - anon_sym_GT_RBRACE, - STATE(7120), 1, - sym_attribute, - STATE(7498), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304970] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(6429), 1, - sym__identifier, - STATE(6606), 1, - sym_type_constructor_path, - STATE(7121), 1, - sym_attribute, - STATE(8174), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [304993] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10134), 1, - sym__identifier, - STATE(7122), 1, - sym_attribute, - STATE(7176), 1, - aux_sym_method_specification_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [305014] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10136), 1, - anon_sym_DOT, - STATE(7123), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305037] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9843), 1, - anon_sym_LPAREN, - ACTIONS(9845), 1, - sym__capitalized_identifier, - STATE(5256), 1, - sym_constructor_path, - STATE(7124), 1, - sym_attribute, - STATE(8640), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305060] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9110), 1, - sym__identifier, - ACTIONS(9112), 1, - anon_sym_LBRACK, - ACTIONS(9114), 1, - anon_sym_virtual, - STATE(5724), 1, - sym_class_binding, - STATE(7125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305083] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(10138), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(7126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305106] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9402), 1, - sym__identifier, - STATE(2608), 1, - sym_class_path, - STATE(7127), 1, - sym_attribute, - STATE(8574), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305129] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10140), 1, - anon_sym_DOT, - STATE(7128), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305152] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7129), 1, - sym_attribute, - STATE(7922), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10142), 2, - anon_sym__, - sym__capitalized_identifier, - [305173] = 7, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(7303), 1, - anon_sym_in, - ACTIONS(7970), 1, - anon_sym_LBRACK_AT_AT, - STATE(6871), 1, - aux_sym_expression_item_repeat1, - STATE(7130), 1, - sym_attribute, - STATE(7633), 1, - sym_item_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305196] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8218), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(7131), 1, - sym_attribute, - STATE(7917), 1, - sym__value_name, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305219] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9841), 1, - sym__identifier, - STATE(4751), 1, - sym_class_type_path, - STATE(7132), 1, - sym_attribute, - STATE(8303), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305242] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9556), 1, - sym__identifier, - STATE(3520), 1, - sym_class_path, - STATE(7133), 1, - sym_attribute, - STATE(8701), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305265] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9540), 1, - sym__identifier, - STATE(1688), 1, - sym_class_path, - STATE(7134), 1, - sym_attribute, - STATE(8530), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305288] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - ACTIONS(10144), 1, - anon_sym_RBRACE, - STATE(7135), 1, - sym_attribute, - STATE(7895), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305311] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10146), 1, - anon_sym_RBRACK, - STATE(7136), 1, - sym_attribute, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305334] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10148), 1, - anon_sym_RBRACK, - ACTIONS(10150), 1, - aux_sym_tag_token1, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7137), 2, - sym_attribute, - aux_sym_polymorphic_variant_type_repeat2, - [305355] = 6, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(9913), 1, - aux_sym_attribute_id_token1, - STATE(6999), 1, - aux_sym_attribute_id_repeat1, - STATE(7138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4515), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [305376] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - STATE(7139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6636), 2, - anon_sym_COLON_GT, - anon_sym_RPAREN, - [305397] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10153), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7140), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305420] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9586), 1, - sym__identifier, - STATE(4095), 1, - sym_class_path, - STATE(7141), 1, - sym_attribute, - STATE(8743), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305443] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10155), 1, - anon_sym_COLON_GT, - ACTIONS(10157), 1, - anon_sym_RPAREN, - STATE(7142), 1, - sym_attribute, - STATE(7889), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305466] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10159), 1, - anon_sym_SEMI, - ACTIONS(10161), 1, - anon_sym_GT_RBRACE, - STATE(7143), 1, - sym_attribute, - STATE(7299), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305489] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(7499), 1, - anon_sym_DASH_GT, - STATE(4951), 1, - sym_module_parameter, - STATE(7144), 1, - sym_attribute, - STATE(7147), 1, - aux_sym_module_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305512] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4930), 1, - sym_class_type_path, - STATE(7145), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305535] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9939), 1, - anon_sym_LPAREN, - ACTIONS(10163), 1, - sym__identifier, - STATE(6627), 1, - sym__value_pattern, - STATE(6697), 1, - sym_parenthesized_operator, - STATE(7146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305558] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(10165), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(7147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305581] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(9752), 1, - anon_sym_DASH_GT, - STATE(4951), 1, - sym_module_parameter, - STATE(7148), 1, - sym_attribute, - STATE(7150), 1, - aux_sym_module_binding_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305604] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(5737), 1, - sym_class_type_path, - STATE(7149), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305627] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(10167), 1, - anon_sym_DASH_GT, - STATE(4804), 1, - aux_sym_module_binding_repeat1, - STATE(4951), 1, - sym_module_parameter, - STATE(7150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305650] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10169), 1, - anon_sym_RBRACK, - ACTIONS(10171), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305673] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10173), 1, - anon_sym_COLON_GT, - ACTIONS(10175), 1, - anon_sym_RPAREN, - STATE(7152), 1, - sym_attribute, - STATE(8280), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305696] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4560), 1, - anon_sym_POUND, - ACTIONS(9770), 1, - anon_sym_DOT, - ACTIONS(9774), 1, - sym_hash_operator, - ACTIONS(10177), 1, - anon_sym_with, - STATE(7153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305719] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10179), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7154), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305742] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10169), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7155), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305765] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9517), 1, - sym__identifier, - ACTIONS(9519), 1, - anon_sym_LBRACK, - ACTIONS(9521), 1, - anon_sym_virtual, - STATE(5532), 1, - sym_class_type_binding, - STATE(7156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305788] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(10128), 1, - sym__identifier, - STATE(3682), 1, - sym_class_path, - STATE(7157), 1, - sym_attribute, - STATE(8436), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305811] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10181), 1, - sym__identifier, - ACTIONS(10183), 1, - anon_sym_LPAREN, - STATE(4517), 1, - sym_parenthesized_operator, - STATE(4572), 1, - sym__value_name, - STATE(7158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305834] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9471), 1, - sym__identifier, - STATE(3166), 1, - sym_class_path, - STATE(7159), 1, - sym_attribute, - STATE(8319), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305857] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7160), 1, - sym_attribute, - STATE(8214), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10185), 2, - anon_sym__, - sym__capitalized_identifier, - [305878] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(10187), 1, - aux_sym_attribute_id_token1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4508), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - STATE(7161), 2, - sym_attribute, - aux_sym_attribute_id_repeat1, - [305897] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10190), 1, - anon_sym_rec, - STATE(5866), 1, - sym_module_binding, - STATE(7162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9066), 2, - anon_sym__, - sym__capitalized_identifier, - [305918] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7589), 1, - anon_sym_in, - ACTIONS(9766), 1, - anon_sym_and, - ACTIONS(9768), 1, - sym_and_operator, - STATE(7015), 1, - aux_sym_value_definition_repeat1, - STATE(7163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305941] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10192), 1, - anon_sym_DOT, - STATE(7164), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305964] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(7165), 1, - sym_attribute, - STATE(9715), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [305987] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10194), 1, - anon_sym_DOT, - STATE(7166), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306010] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9098), 1, - sym__identifier, - ACTIONS(9102), 1, - anon_sym_LBRACK, - ACTIONS(9104), 1, - anon_sym_virtual, - STATE(5610), 1, - sym_class_binding, - STATE(7167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306033] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9883), 1, - sym__identifier, - STATE(4631), 1, - sym_class_type_path, - STATE(7168), 1, - sym_attribute, - STATE(8236), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306056] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9883), 1, - sym__identifier, - STATE(4639), 1, - sym_class_type_path, - STATE(7169), 1, - sym_attribute, - STATE(8236), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306079] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10196), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7170), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306102] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9883), 1, - sym__identifier, - STATE(4648), 1, - sym_class_type_path, - STATE(7171), 1, - sym_attribute, - STATE(8236), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306125] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(6437), 1, - anon_sym_and, - STATE(7172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6435), 3, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - sym_and_operator, - [306144] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(9996), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7173), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306167] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9558), 1, - sym__identifier, - STATE(2923), 1, - sym_class_path, - STATE(7174), 1, - sym_attribute, - STATE(8486), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306190] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8214), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_parenthesized_operator, - STATE(6318), 1, - sym__value_name, - STATE(7175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306213] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10198), 1, - sym__identifier, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10200), 2, - anon_sym_private, - anon_sym_virtual, - STATE(7176), 2, - sym_attribute, - aux_sym_method_specification_repeat1, - [306232] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9517), 1, - sym__identifier, - ACTIONS(9519), 1, - anon_sym_LBRACK, - ACTIONS(9521), 1, - anon_sym_virtual, - STATE(5686), 1, - sym_class_type_binding, - STATE(7177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306255] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9463), 1, - sym__identifier, - STATE(1574), 1, - sym_class_path, - STATE(7178), 1, - sym_attribute, - STATE(8659), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306278] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(7179), 1, - sym_attribute, - STATE(9725), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306301] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(9511), 1, - sym__identifier, - STATE(1802), 1, - sym_class_path, - STATE(7180), 1, - sym_attribute, - STATE(8375), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306324] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10203), 1, - anon_sym_DOT, - STATE(7181), 1, - sym_attribute, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306347] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - ACTIONS(10205), 1, - anon_sym_RBRACE, - STATE(7182), 1, - sym_attribute, - STATE(7895), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306370] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10207), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7183), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306393] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5294), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10209), 1, - anon_sym_GT, - STATE(6935), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306416] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10211), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7185), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306439] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4952), 1, - sym_class_type_path, - STATE(7186), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306462] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9406), 1, - sym__identifier, - ACTIONS(9408), 1, - anon_sym_LPAREN, - STATE(5219), 1, - sym_parenthesized_operator, - STATE(7187), 1, - sym_attribute, - STATE(9730), 1, - sym__value_pattern, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306485] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9831), 1, - sym__identifier, - STATE(4626), 1, - sym_class_type_path, - STATE(7188), 1, - sym_attribute, - STATE(8011), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306508] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(4952), 1, - sym_class_type_path, - STATE(7189), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306531] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10213), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7190), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306554] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10213), 1, - anon_sym_RBRACK, - ACTIONS(10215), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306577] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10217), 1, - anon_sym_SEMI, - ACTIONS(10219), 1, - anon_sym_GT_RBRACE, - STATE(7192), 1, - sym_attribute, - STATE(7447), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306600] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10221), 1, - sym__identifier, - STATE(7090), 1, - aux_sym_method_specification_repeat1, - STATE(7193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9712), 2, - anon_sym_private, - anon_sym_virtual, - [306621] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - ACTIONS(10223), 1, - anon_sym_RBRACE, - STATE(7194), 1, - sym_attribute, - STATE(7895), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306644] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - ACTIONS(10225), 1, - anon_sym_EQ, - ACTIONS(10227), 1, - anon_sym_RPAREN, - STATE(7195), 1, - sym_attribute, - STATE(7944), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306667] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6396), 1, - anon_sym_PERCENT, - STATE(7196), 1, - sym_attribute, - STATE(8298), 1, - sym__attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10229), 2, - sym__identifier, - sym__capitalized_identifier, - [306688] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(10096), 1, - sym__identifier, - STATE(4952), 1, - sym_class_type_path, - STATE(7197), 1, - sym_attribute, - STATE(8231), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306711] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10231), 1, - anon_sym_SEMI, - ACTIONS(10233), 1, - anon_sym_GT_RBRACE, - STATE(7198), 1, - sym_attribute, - STATE(7582), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306734] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4160), 1, - sym__capitalized_identifier, - ACTIONS(9855), 1, - anon_sym_LPAREN, - STATE(5240), 1, - sym_constructor_path, - STATE(7199), 1, - sym_attribute, - STATE(8675), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306757] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10235), 1, - anon_sym_COLON_GT, - ACTIONS(10237), 1, - anon_sym_RPAREN, - STATE(7200), 1, - sym_attribute, - STATE(8287), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306780] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8924), 1, - anon_sym_COLON2, - ACTIONS(10239), 1, - anon_sym_COLON_GT, - ACTIONS(10241), 1, - anon_sym_RPAREN, - STATE(7201), 1, - sym_attribute, - STATE(8025), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306803] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - ACTIONS(9764), 1, - sym__identifier, - STATE(5772), 1, - sym_class_type_path, - STATE(7202), 1, - sym_attribute, - STATE(8233), 1, - sym_extended_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306826] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10243), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7203), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306849] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(7204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7957), 2, - anon_sym_COLON_GT, - anon_sym_EQ, - [306870] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(7205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7880), 2, - anon_sym_COLON_GT, - anon_sym_EQ, - [306891] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10245), 1, - anon_sym_DOT, - ACTIONS(10247), 1, - aux_sym_type_variable_token1, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7206), 2, - sym_attribute, - aux_sym_constructor_declaration_repeat1, - [306912] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, - anon_sym_DASH_GT, - STATE(4951), 1, - sym_module_parameter, - STATE(6949), 1, - aux_sym_module_binding_repeat1, - STATE(7207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306935] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10250), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7208), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306958] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(9921), 1, - sym__identifier, - STATE(7209), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - STATE(8301), 1, - sym_module_type_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [306981] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10252), 1, - anon_sym_DOT, - STATE(7206), 1, - aux_sym_constructor_declaration_repeat1, - STATE(7210), 1, - sym_attribute, - STATE(8173), 1, - sym_type_variable, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307004] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10254), 1, - sym__identifier, - STATE(7096), 1, - aux_sym_instance_variable_specification_repeat1, - STATE(7211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9706), 2, - anon_sym_mutable, - anon_sym_virtual, - [307025] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10256), 1, - anon_sym_SEMI, - ACTIONS(10258), 1, - anon_sym_GT_RBRACE, - STATE(7212), 1, - sym_attribute, - STATE(7245), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307048] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_RBRACK, - ACTIONS(10076), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307071] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - STATE(7214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7953), 2, - anon_sym_COLON_GT, - anon_sym_EQ, - [307092] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - ACTIONS(10260), 1, - anon_sym_RBRACK, - STATE(7137), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7215), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307115] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9839), 1, - anon_sym_RBRACK, - ACTIONS(10262), 1, - anon_sym_GT, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307138] = 7, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7128), 1, - sym__capitalized_identifier, - ACTIONS(9921), 1, - sym__identifier, - STATE(7217), 1, - sym_attribute, - STATE(8089), 1, - sym_extended_module_path, - STATE(8302), 1, - sym_module_type_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307161] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10264), 1, - anon_sym_EQ, - STATE(7218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307181] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10266), 1, - anon_sym_GT_RBRACE, - STATE(7219), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307201] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10268), 1, - anon_sym_RPAREN, - STATE(7220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307221] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9384), 1, - anon_sym_RBRACE, - ACTIONS(10270), 1, - anon_sym_SEMI, - STATE(7221), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307241] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(10272), 1, - anon_sym_type, - STATE(7222), 1, - sym_attribute, - STATE(7745), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307261] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(10274), 1, - anon_sym_type, - STATE(7223), 1, - sym_attribute, - STATE(7745), 1, - sym_module_path, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307281] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5703), 1, - anon_sym_DOT, - STATE(7224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10276), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [307299] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10278), 1, - anon_sym_EQ, - STATE(7225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307319] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10280), 1, - anon_sym_RPAREN, - STATE(7226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307339] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4042), 1, - anon_sym_RBRACK, - ACTIONS(10282), 1, - anon_sym_SEMI, - STATE(7227), 1, - sym_attribute, - STATE(7775), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307359] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10284), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307379] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5866), 1, - sym_module_binding, - STATE(7229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9066), 2, - anon_sym__, - sym__capitalized_identifier, - [307397] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10286), 1, - anon_sym_SEMI, - ACTIONS(10288), 1, - anon_sym_GT_RBRACE, - STATE(7230), 1, - sym_attribute, - STATE(7310), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307417] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4040), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10290), 1, - anon_sym_SEMI, - STATE(7231), 1, - sym_attribute, - STATE(7655), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307437] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7154), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7232), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307457] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10207), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307477] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10292), 1, - anon_sym_EQ, - STATE(7234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307497] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10294), 1, - anon_sym_EQ, - STATE(7235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307517] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7190), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7236), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307537] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10296), 1, - sym__identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - STATE(7237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307557] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9312), 1, - anon_sym_RBRACE, - ACTIONS(10300), 1, - anon_sym_SEMI, - STATE(7238), 1, - sym_attribute, - STATE(7696), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307577] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10302), 1, - anon_sym_SEMI, - ACTIONS(10304), 1, - anon_sym_RBRACE, - STATE(7239), 1, - sym_attribute, - STATE(7259), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307597] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5083), 1, - sym__type_equation, - STATE(7240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6356), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [307615] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5873), 1, - sym_module_binding, - STATE(7241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9066), 2, - anon_sym__, - sym__capitalized_identifier, - [307633] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5709), 1, - sym_module_binding, - STATE(7242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9066), 2, - anon_sym__, - sym__capitalized_identifier, - [307651] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10306), 1, - anon_sym_GT_RBRACE, - STATE(7243), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307671] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2101), 1, - anon_sym_RBRACK, - ACTIONS(10308), 1, - anon_sym_SEMI, - STATE(7244), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307691] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10310), 1, - anon_sym_SEMI, - ACTIONS(10312), 1, - anon_sym_GT_RBRACE, - STATE(7245), 1, - sym_attribute, - STATE(7265), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307711] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10314), 1, - anon_sym_EQ, - STATE(7246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10316), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [307729] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9398), 1, - anon_sym_RBRACE, - ACTIONS(10318), 1, - anon_sym_SEMI, - STATE(7221), 1, - aux_sym_record_expression_repeat1, - STATE(7247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307749] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10320), 1, - anon_sym_SEMI, - ACTIONS(10322), 1, - anon_sym_RBRACE, - STATE(7248), 1, - sym_attribute, - STATE(7263), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307769] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10169), 1, - anon_sym_RBRACK, - STATE(7233), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307789] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10169), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307809] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10324), 1, - anon_sym_RPAREN, - STATE(7251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307829] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10326), 1, - anon_sym_RPAREN, - STATE(7252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307849] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10328), 1, - anon_sym_GT_RBRACE, - STATE(7253), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307869] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10330), 1, - anon_sym_SEMI, - ACTIONS(10333), 1, - anon_sym_GT_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7254), 2, - sym_attribute, - aux_sym_object_copy_expression_repeat1, - [307887] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10335), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307907] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2111), 1, - anon_sym_RBRACK, - ACTIONS(10337), 1, - anon_sym_SEMI, - STATE(7256), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307927] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10341), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307947] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10343), 1, - anon_sym_RBRACK, - STATE(7257), 1, - aux_sym__type_params_repeat1, - STATE(7258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307967] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9413), 1, - anon_sym_RBRACE, - ACTIONS(10345), 1, - anon_sym_SEMI, - STATE(7259), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [307987] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10347), 1, - anon_sym_SEMI, - ACTIONS(10349), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308007] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10349), 1, - anon_sym_GT_RBRACE, - STATE(7261), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308027] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2109), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10351), 1, - anon_sym_SEMI, - STATE(7262), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308047] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9483), 1, - anon_sym_RBRACE, - ACTIONS(10353), 1, - anon_sym_SEMI, - STATE(7263), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308067] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10355), 1, - anon_sym_GT_RBRACE, - STATE(7264), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308087] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10355), 1, - anon_sym_GT_RBRACE, - ACTIONS(10357), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308107] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10343), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308127] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10359), 1, - anon_sym_RPAREN, - STATE(7267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308147] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7136), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7268), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308167] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2193), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10361), 1, - anon_sym_SEMI, - STATE(7269), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308187] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2095), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10363), 1, - anon_sym_SEMI, - STATE(7270), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308207] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9419), 1, - anon_sym_RBRACE, - ACTIONS(10365), 1, - anon_sym_SEMI, - STATE(7271), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308227] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10367), 1, - anon_sym_RPAREN, - STATE(7272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308247] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6173), 1, - anon_sym_DASH_GT, - ACTIONS(9954), 1, - anon_sym_STAR, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7273), 2, - sym_attribute, - aux_sym__constructor_argument_repeat1, - [308265] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10369), 1, - anon_sym_RBRACK, - STATE(7266), 1, - aux_sym__type_params_repeat1, - STATE(7274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308285] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9421), 1, - anon_sym_RBRACE, - ACTIONS(10371), 1, - anon_sym_SEMI, - STATE(7275), 1, - sym_attribute, - STATE(7291), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308305] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2201), 1, - anon_sym_RBRACK, - ACTIONS(10373), 1, - anon_sym_SEMI, - STATE(7276), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308325] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9534), 1, - anon_sym_RBRACE, - ACTIONS(10375), 1, - anon_sym_SEMI, - STATE(7277), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308345] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10144), 1, - anon_sym_RBRACE, - ACTIONS(10377), 1, - anon_sym_SEMI, - STATE(7278), 1, - sym_attribute, - STATE(7757), 1, - aux_sym_record_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308365] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10379), 1, - anon_sym_GT_RBRACE, - STATE(7279), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308385] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7280), 1, - sym_attribute, - STATE(8264), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308403] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7281), 1, - sym_attribute, - STATE(8256), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308421] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7282), 1, - sym_attribute, - STATE(8255), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308439] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7283), 1, - sym_attribute, - STATE(8254), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308457] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10383), 1, - sym__identifier, - STATE(7284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308477] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7285), 1, - sym_attribute, - STATE(8253), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308495] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7286), 1, - sym_attribute, - STATE(8250), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308513] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10385), 3, - anon_sym_RPAREN, - anon_sym_DOT, - sym__identifier, - [308529] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7288), 1, - sym_attribute, - STATE(8187), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308547] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10387), 1, - anon_sym_RPAREN, - STATE(7289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308567] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7290), 1, - sym_attribute, - STATE(8247), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308585] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9423), 1, - anon_sym_RBRACE, - ACTIONS(10389), 1, - anon_sym_SEMI, - STATE(7291), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308605] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7292), 1, - sym_attribute, - STATE(8244), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308623] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7293), 1, - sym_attribute, - STATE(8240), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308641] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7294), 1, - sym_attribute, - STATE(8235), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308659] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7295), 1, - sym_attribute, - STATE(8232), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308677] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7296), 1, - sym_attribute, - STATE(8230), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308695] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7297), 1, - sym_attribute, - STATE(8229), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308713] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7298), 1, - sym_attribute, - STATE(8227), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308731] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10391), 1, - anon_sym_SEMI, - ACTIONS(10393), 1, - anon_sym_GT_RBRACE, - STATE(7260), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308751] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7300), 1, - sym_attribute, - STATE(8225), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308769] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10395), 1, - anon_sym_SEMI, - ACTIONS(10397), 1, - anon_sym_RBRACE, - STATE(7271), 1, - aux_sym_record_expression_repeat1, - STATE(7301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308789] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7302), 1, - sym_attribute, - STATE(8216), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308807] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(28), 1, - sym_attribute_id, - STATE(7303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [308825] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7304), 1, - sym_attribute, - STATE(8215), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308843] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7305), 1, - sym_attribute, - STATE(8205), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308861] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7306), 1, - sym_attribute, - STATE(8193), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308879] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10211), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308899] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7308), 1, - sym_attribute, - STATE(8114), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308917] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10401), 1, - anon_sym_GT_RBRACE, - STATE(7309), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308937] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10401), 1, - anon_sym_GT_RBRACE, - ACTIONS(10403), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [308957] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7311), 1, - sym_attribute, - STATE(8185), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308975] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7312), 1, - sym_attribute, - STATE(8183), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [308993] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7313), 1, - sym_attribute, - STATE(8164), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309011] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7314), 1, - sym_attribute, - STATE(8155), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7315), 1, - sym_attribute, - STATE(8141), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309047] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7316), 1, - sym_attribute, - STATE(8130), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309065] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7317), 1, - sym_attribute, - STATE(8118), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309083] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(41), 1, - sym_attribute_id, - STATE(7318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [309101] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7319), 1, - sym_attribute, - STATE(7830), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309119] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7320), 1, - sym_attribute, - STATE(8078), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309137] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9449), 1, - anon_sym_RBRACE, - ACTIONS(10405), 1, - anon_sym_SEMI, - STATE(7321), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309157] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10407), 1, - anon_sym_RPAREN, - STATE(7322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309177] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9996), 1, - anon_sym_RBRACK, - STATE(7307), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309197] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9996), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309217] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7170), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7325), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309237] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(34), 1, - sym_attribute_id, - STATE(7326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [309255] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10409), 1, - anon_sym_RPAREN, - STATE(7327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309275] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(30), 1, - sym_attribute_id, - STATE(7328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [309293] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10411), 1, - anon_sym_RPAREN, - STATE(7329), 1, - sym_attribute, - STATE(8440), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309313] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6131), 1, - anon_sym_GT, - ACTIONS(10413), 1, - anon_sym_SEMI, - STATE(7330), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309333] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10415), 1, - sym__identifier, - STATE(7331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309353] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10122), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309373] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10417), 1, - anon_sym_RPAREN, - STATE(7333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309393] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10122), 1, - anon_sym_RBRACK, - STATE(7250), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309413] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10419), 1, - sym__identifier, - STATE(7335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309433] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7336), 1, - sym_attribute, - STATE(8096), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309451] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10421), 1, - anon_sym_RPAREN, - STATE(7337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309471] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5085), 1, - sym__type_equation, - STATE(7338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6356), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [309489] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(46), 1, - sym_attribute_id, - STATE(7339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [309507] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7203), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7340), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309527] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10423), 1, - anon_sym_RPAREN, - ACTIONS(10425), 1, - anon_sym_COLON2, - STATE(7341), 1, - sym_attribute, - STATE(8803), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309547] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10427), 1, - anon_sym_RPAREN, - STATE(7342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309567] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7343), 1, - sym_attribute, - STATE(7904), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [309585] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6147), 1, - anon_sym_GT, - ACTIONS(10429), 1, - anon_sym_SEMI, - STATE(7344), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309605] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10004), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309625] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10004), 1, - anon_sym_RBRACK, - STATE(7324), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309645] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10431), 1, - anon_sym_RPAREN, - STATE(7347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309665] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10433), 1, - anon_sym_GT_RBRACE, - STATE(7348), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309685] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10435), 1, - anon_sym_EQ, - STATE(7349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309705] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9584), 1, - anon_sym_RBRACE, - ACTIONS(10437), 1, - anon_sym_SEMI, - STATE(7350), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309725] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10439), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309745] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(6954), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7352), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309765] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10441), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309785] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10443), 1, - anon_sym_LPAREN, - ACTIONS(10445), 1, - anon_sym_LBRACK, - ACTIONS(10447), 1, - anon_sym_LBRACE, - STATE(7354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309805] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9459), 1, - anon_sym_RBRACE, - ACTIONS(10449), 1, - anon_sym_SEMI, - STATE(7355), 1, - sym_attribute, - STATE(7404), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309825] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10451), 1, - anon_sym_RPAREN, - STATE(7356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309845] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10453), 1, - anon_sym_LPAREN, - ACTIONS(10455), 1, - anon_sym_LBRACK, - ACTIONS(10457), 1, - anon_sym_LBRACE, - STATE(7357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309865] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10459), 1, - anon_sym_EQ, - STATE(7358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309885] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10461), 1, - anon_sym_LPAREN, - ACTIONS(10463), 1, - anon_sym_LBRACK, - ACTIONS(10465), 1, - anon_sym_LBRACE, - STATE(7359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309905] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10467), 1, - sym__identifier, - STATE(7360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309925] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10469), 1, - anon_sym_GT_RBRACE, - STATE(7361), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309945] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4005), 1, - sym_attribute_id, - STATE(7362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [309963] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10471), 1, - anon_sym_RPAREN, - STATE(7363), 1, - sym_attribute, - STATE(8376), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [309983] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10473), 1, - anon_sym_LPAREN, - ACTIONS(10475), 1, - anon_sym_LBRACK, - ACTIONS(10477), 1, - anon_sym_LBRACE, - STATE(7364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310003] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10479), 1, - sym__identifier, - STATE(7365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310023] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9467), 1, - anon_sym_RBRACE, - ACTIONS(10481), 1, - anon_sym_SEMI, - STATE(7321), 1, - aux_sym_record_expression_repeat1, - STATE(7366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310043] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10483), 1, - anon_sym_LPAREN, - ACTIONS(10485), 1, - anon_sym_LBRACK, - ACTIONS(10487), 1, - anon_sym_LBRACE, - STATE(7367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310063] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10489), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310083] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10491), 1, - anon_sym_LPAREN, - ACTIONS(10493), 1, - anon_sym_LBRACK, - ACTIONS(10495), 1, - anon_sym_LBRACE, - STATE(7369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310103] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7173), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7370), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310123] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10497), 1, - anon_sym_LPAREN, - ACTIONS(10499), 1, - anon_sym_LBRACK, - ACTIONS(10501), 1, - anon_sym_LBRACE, - STATE(7371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310143] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7185), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7372), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310163] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7373), 1, - sym_attribute, - STATE(8095), 1, - sym_attribute_id, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10381), 2, - sym__identifier, - sym__capitalized_identifier, - [310181] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7215), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7374), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310201] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10503), 1, - anon_sym_LPAREN, - ACTIONS(10505), 1, - anon_sym_LBRACK, - ACTIONS(10507), 1, - anon_sym_LBRACE, - STATE(7375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310221] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8957), 1, - anon_sym_SEMI, - ACTIONS(8959), 1, - anon_sym_GT, - STATE(7376), 1, - sym_attribute, - STATE(7677), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310241] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10509), 1, - anon_sym_LPAREN, - ACTIONS(10511), 1, - anon_sym_LBRACK, - ACTIONS(10513), 1, - anon_sym_LBRACE, - STATE(7377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310261] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(33), 1, - sym_attribute_id, - STATE(7378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [310279] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10515), 1, - anon_sym_LPAREN, - ACTIONS(10517), 1, - anon_sym_LBRACK, - ACTIONS(10519), 1, - anon_sym_LBRACE, - STATE(7379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310299] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10521), 1, - anon_sym_GT_RBRACE, - STATE(7380), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310319] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10523), 1, - anon_sym_EQ, - STATE(7381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310339] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8949), 1, - anon_sym_SEMI, - ACTIONS(8951), 1, - anon_sym_GT, - STATE(7344), 1, - aux_sym_object_type_repeat1, - STATE(7382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310359] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10525), 1, - anon_sym_RPAREN, - STATE(7383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310379] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9481), 1, - anon_sym_RBRACE, - ACTIONS(10527), 1, - anon_sym_SEMI, - STATE(7384), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310399] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10529), 1, - anon_sym_LPAREN, - ACTIONS(10531), 1, - anon_sym_LBRACK, - ACTIONS(10533), 1, - anon_sym_LBRACE, - STATE(7385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310419] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10535), 1, - anon_sym_EQ, - STATE(7386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310439] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10537), 1, - anon_sym_LPAREN, - ACTIONS(10539), 1, - anon_sym_LBRACK, - ACTIONS(10541), 1, - anon_sym_LBRACE, - STATE(7387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310459] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7345), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310479] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10543), 1, - anon_sym_LPAREN, - ACTIONS(10545), 1, - anon_sym_LBRACK, - ACTIONS(10547), 1, - anon_sym_LBRACE, - STATE(7389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310499] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10549), 1, - anon_sym_LPAREN, - ACTIONS(10551), 1, - anon_sym_LBRACK, - ACTIONS(10553), 1, - anon_sym_LBRACE, - STATE(7390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310519] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9455), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [310535] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10555), 1, - anon_sym_RPAREN, - STATE(7392), 1, - sym_attribute, - STATE(8467), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310555] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5876), 1, - anon_sym_STAR, - ACTIONS(6598), 1, - anon_sym_DASH_GT, - STATE(7273), 1, - aux_sym__constructor_argument_repeat1, - STATE(7393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310575] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9566), 1, - anon_sym_RBRACE, - ACTIONS(10557), 1, - anon_sym_SEMI, - STATE(7350), 1, - aux_sym_record_expression_repeat1, - STATE(7394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310595] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9473), 1, - anon_sym_RBRACE, - ACTIONS(10559), 1, - anon_sym_SEMI, - STATE(7395), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310615] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10561), 1, - anon_sym_RPAREN, - STATE(7396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310635] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10563), 1, - anon_sym_SEMI, - ACTIONS(10565), 1, - anon_sym_RBRACE, - STATE(7278), 1, - aux_sym_record_declaration_repeat1, - STATE(7397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310655] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7398), 1, - sym_attribute, - STATE(7653), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310675] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10567), 1, - anon_sym_RPAREN, - STATE(7399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310695] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10569), 1, - anon_sym_RPAREN, - STATE(7400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310715] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10571), 1, - anon_sym_LPAREN, - ACTIONS(10573), 1, - anon_sym_LBRACK, - ACTIONS(10575), 1, - anon_sym_LBRACE, - STATE(7401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310735] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10577), 1, - anon_sym_LPAREN, - ACTIONS(10579), 1, - anon_sym_LBRACK, - ACTIONS(10581), 1, - anon_sym_LBRACE, - STATE(7402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310755] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10583), 1, - anon_sym_RPAREN, - STATE(7403), 1, - sym_attribute, - STATE(8407), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310775] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9439), 1, - anon_sym_RBRACE, - ACTIONS(10585), 1, - anon_sym_SEMI, - STATE(7404), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310795] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10587), 1, - anon_sym_SEMI, - ACTIONS(10589), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310815] = 6, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5556), 1, - sym_string, - STATE(5598), 1, - aux_sym_external_repeat1, - STATE(7406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310835] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4981), 1, - sym_attribute_id, - STATE(7407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10591), 2, - sym__identifier, - sym__capitalized_identifier, - [310853] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10593), 1, - anon_sym_LPAREN, - ACTIONS(10595), 1, - anon_sym_LBRACK, - ACTIONS(10597), 1, - anon_sym_LBRACE, - STATE(7408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310873] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10599), 1, - anon_sym_LPAREN, - ACTIONS(10601), 1, - anon_sym_LBRACK, - ACTIONS(10603), 1, - anon_sym_LBRACE, - STATE(7409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310893] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9400), 1, - anon_sym_RBRACK, - ACTIONS(10605), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7410), 2, - sym_attribute, - aux_sym_list_binding_pattern_repeat1, - [310911] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10589), 1, - anon_sym_GT_RBRACE, - STATE(7411), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310931] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10608), 1, - anon_sym_RPAREN, - STATE(7412), 1, - sym_attribute, - STATE(9657), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310951] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10610), 1, - anon_sym_LPAREN, - ACTIONS(10612), 1, - anon_sym_LBRACK, - ACTIONS(10614), 1, - anon_sym_LBRACE, - STATE(7413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [310971] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(39), 1, - sym_attribute_id, - STATE(7414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [310989] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10616), 1, - anon_sym_LPAREN, - ACTIONS(10618), 1, - anon_sym_LBRACK, - ACTIONS(10620), 1, - anon_sym_LBRACE, - STATE(7415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311009] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10622), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311029] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2289), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10624), 1, - anon_sym_SEMI, - STATE(7417), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311049] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(43), 1, - sym_attribute_id, - STATE(7418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [311067] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10626), 1, - anon_sym_LPAREN, - ACTIONS(10628), 1, - anon_sym_LBRACK, - ACTIONS(10630), 1, - anon_sym_LBRACE, - STATE(7419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311087] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10632), 1, - anon_sym_LPAREN, - ACTIONS(10634), 1, - anon_sym_LBRACK, - ACTIONS(10636), 1, - anon_sym_LBRACE, - STATE(7420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311107] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(11), 1, - sym_attribute_id, - STATE(7421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [311125] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5518), 1, - sym_attribute_id, - STATE(7422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10638), 2, - sym__identifier, - sym__capitalized_identifier, - [311143] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10640), 1, - anon_sym_SEMI, - ACTIONS(10643), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7423), 2, - sym_attribute, - aux_sym_record_binding_pattern_repeat1, - [311161] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10645), 1, - anon_sym_LPAREN, - ACTIONS(10647), 1, - anon_sym_LBRACK, - ACTIONS(10649), 1, - anon_sym_LBRACE, - STATE(7424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311181] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10651), 1, - anon_sym_LPAREN, - ACTIONS(10653), 1, - anon_sym_LBRACK, - ACTIONS(10655), 1, - anon_sym_LBRACE, - STATE(7425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311201] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2291), 1, - anon_sym_RBRACK, - ACTIONS(10657), 1, - anon_sym_SEMI, - STATE(7426), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311221] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10659), 1, - sym__identifier, - STATE(7427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311241] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10661), 1, - anon_sym_EQ, - STATE(7428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311261] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10663), 1, - anon_sym_LPAREN, - ACTIONS(10665), 1, - anon_sym_LBRACK, - ACTIONS(10667), 1, - anon_sym_LBRACE, - STATE(7429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311281] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(37), 1, - sym_attribute_id, - STATE(7430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [311299] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10669), 1, - anon_sym_LPAREN, - ACTIONS(10671), 1, - anon_sym_LBRACK, - ACTIONS(10673), 1, - anon_sym_LBRACE, - STATE(7431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311319] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10675), 1, - anon_sym_SEMI, - ACTIONS(10677), 1, - anon_sym_GT_RBRACE, - STATE(7405), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311339] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10679), 1, - sym__identifier, - STATE(7433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311359] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10681), 1, - anon_sym_SEMI, - ACTIONS(10683), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311379] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10685), 1, - anon_sym_SEMI, - ACTIONS(10687), 1, - anon_sym_RBRACE, - STATE(7277), 1, - aux_sym_record_expression_repeat1, - STATE(7435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311399] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10683), 1, - anon_sym_GT_RBRACE, - STATE(7436), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311419] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10689), 1, - anon_sym_RPAREN, - STATE(7437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311439] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10691), 1, - anon_sym_SEMI, - ACTIONS(10693), 1, - anon_sym_RBRACE, - STATE(7438), 1, - sym_attribute, - STATE(7488), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311459] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6648), 1, - anon_sym_DQUOTE, - STATE(5096), 1, - aux_sym_external_repeat1, - STATE(5556), 1, - sym_string, - STATE(7439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311479] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10695), 1, - anon_sym_LPAREN, - ACTIONS(10697), 1, - anon_sym_LBRACK, - ACTIONS(10699), 1, - anon_sym_LBRACE, - STATE(7440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311499] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10701), 1, - anon_sym_LPAREN, - ACTIONS(10703), 1, - anon_sym_LBRACK, - ACTIONS(10705), 1, - anon_sym_LBRACE, - STATE(7441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311519] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10707), 1, - anon_sym_SEMI, - ACTIONS(10709), 1, - anon_sym_RBRACE, - STATE(7442), 1, - sym_attribute, - STATE(7458), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311539] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9945), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [311555] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10711), 1, - anon_sym_SEMI, - ACTIONS(10713), 1, - anon_sym_RBRACE, - STATE(7444), 1, - sym_attribute, - STATE(7586), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311575] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(17), 1, - sym_attribute_id, - STATE(7445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [311593] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10715), 1, - anon_sym_SEMI, - ACTIONS(10717), 1, - anon_sym_RBRACE, - STATE(7446), 1, - sym_attribute, - STATE(7762), 1, - aux_sym_record_declaration_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311613] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10719), 1, - anon_sym_SEMI, - ACTIONS(10721), 1, - anon_sym_GT_RBRACE, - STATE(7447), 1, - sym_attribute, - STATE(7469), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311633] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10723), 1, - anon_sym_LPAREN, - ACTIONS(10725), 1, - anon_sym_LBRACK, - ACTIONS(10727), 1, - anon_sym_LBRACE, - STATE(7448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311653] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10729), 1, - anon_sym_RBRACK, - STATE(7449), 1, - sym_attribute, - STATE(7527), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311673] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10731), 1, - anon_sym_GT_RBRACE, - STATE(7450), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311693] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2279), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10733), 1, - anon_sym_SEMI, - STATE(7451), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311713] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10735), 1, - anon_sym_LPAREN, - ACTIONS(10737), 1, - anon_sym_LBRACK, - ACTIONS(10739), 1, - anon_sym_LBRACE, - STATE(7452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311733] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10729), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311753] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5622), 1, - sym_module_binding, - STATE(7454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9096), 2, - anon_sym__, - sym__capitalized_identifier, - [311771] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10741), 1, - anon_sym_RPAREN, - STATE(7455), 1, - sym_attribute, - STATE(8840), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311791] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2059), 1, - anon_sym_RBRACK, - ACTIONS(10743), 1, - anon_sym_SEMI, - STATE(7456), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311811] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4102), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10745), 1, - anon_sym_SEMI, - STATE(7457), 1, - sym_attribute, - STATE(7655), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311831] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9594), 1, - anon_sym_RBRACE, - ACTIONS(10747), 1, - anon_sym_SEMI, - STATE(7458), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311851] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9152), 1, - anon_sym_RBRACE, - ACTIONS(10749), 1, - anon_sym_SEMI, - STATE(7459), 1, - sym_attribute, - STATE(7696), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311871] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10751), 1, - anon_sym_LPAREN, - ACTIONS(10753), 1, - anon_sym_LBRACK, - ACTIONS(10755), 1, - anon_sym_LBRACE, - STATE(7460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311891] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10757), 1, - anon_sym_LPAREN, - ACTIONS(10759), 1, - anon_sym_LBRACK, - ACTIONS(10761), 1, - anon_sym_LBRACE, - STATE(7461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311911] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9505), 1, - anon_sym_RBRACE, - ACTIONS(10763), 1, - anon_sym_SEMI, - STATE(7462), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311931] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2063), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10765), 1, - anon_sym_SEMI, - STATE(7463), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311951] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - STATE(4951), 1, - sym_module_parameter, - STATE(7126), 1, - aux_sym_module_binding_repeat1, - STATE(7464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311971] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10767), 1, - anon_sym_SEMI, - ACTIONS(10769), 1, - anon_sym_GT_RBRACE, - STATE(7465), 1, - sym_attribute, - STATE(7511), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [311991] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4070), 1, - anon_sym_RBRACK, - ACTIONS(10771), 1, - anon_sym_SEMI, - STATE(7466), 1, - sym_attribute, - STATE(7775), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312011] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10179), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312031] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10773), 1, - anon_sym_GT_RBRACE, - STATE(7468), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312051] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10773), 1, - anon_sym_GT_RBRACE, - ACTIONS(10775), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312071] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10777), 1, - anon_sym_LPAREN, - ACTIONS(10779), 1, - anon_sym_LBRACK, - ACTIONS(10781), 1, - anon_sym_LBRACE, - STATE(7470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312091] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2281), 1, - anon_sym_RBRACK, - ACTIONS(10783), 1, - anon_sym_SEMI, - STATE(7471), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312111] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10785), 1, - anon_sym_RBRACK, - STATE(7472), 1, - sym_attribute, - STATE(7491), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312131] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10787), 1, - anon_sym_SEMI, - ACTIONS(10789), 1, - anon_sym_RBRACE, - STATE(7473), 1, - sym_attribute, - STATE(7533), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312151] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10791), 1, - anon_sym_LPAREN, - ACTIONS(10793), 1, - anon_sym_LBRACK, - ACTIONS(10795), 1, - anon_sym_LBRACE, - STATE(7474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312171] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10425), 1, - anon_sym_COLON2, - ACTIONS(10797), 1, - anon_sym_RPAREN, - STATE(7475), 1, - sym_attribute, - STATE(9643), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312191] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10213), 1, - anon_sym_RBRACK, - STATE(7467), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312211] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10799), 1, - anon_sym_RPAREN, - STATE(7477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312231] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10213), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312251] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8916), 1, - anon_sym_SEMI, - ACTIONS(8918), 1, - anon_sym_GT, - STATE(7330), 1, - aux_sym_object_type_repeat1, - STATE(7479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312271] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(31), 1, - sym_attribute_id, - STATE(7480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [312289] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2233), 1, - anon_sym_RBRACK, - ACTIONS(10801), 1, - anon_sym_SEMI, - STATE(7481), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312309] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10803), 1, - anon_sym_RPAREN, - STATE(7482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312329] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10805), 1, - anon_sym_RPAREN, - STATE(7483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312349] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9596), 1, - anon_sym_RBRACE, - ACTIONS(10807), 1, - anon_sym_SEMI, - STATE(7484), 1, - sym_attribute, - STATE(7507), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312369] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10809), 1, - anon_sym_GT_RBRACE, - STATE(7485), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312389] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10811), 1, - anon_sym_LPAREN, - ACTIONS(10813), 1, - anon_sym_LBRACK, - ACTIONS(10815), 1, - anon_sym_LBRACE, - STATE(7486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312409] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6179), 1, - anon_sym_GT, - ACTIONS(10817), 1, - anon_sym_SEMI, - STATE(7487), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312429] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9574), 1, - anon_sym_RBRACE, - ACTIONS(10819), 1, - anon_sym_SEMI, - STATE(7488), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312449] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10821), 1, - anon_sym_LPAREN, - ACTIONS(10823), 1, - anon_sym_LBRACK, - ACTIONS(10825), 1, - anon_sym_LBRACE, - STATE(7489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312469] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5268), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7332), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312489] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10827), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312509] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10827), 1, - anon_sym_RBRACK, - STATE(7492), 1, - sym_attribute, - STATE(7523), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312529] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10829), 1, - sym__identifier, - STATE(7493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312549] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10831), 1, - anon_sym_SEMI, - ACTIONS(10833), 1, - anon_sym_RBRACE, - STATE(7494), 1, - sym_attribute, - STATE(7578), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312569] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(6981), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7495), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312589] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10835), 1, - anon_sym_EQ, - STATE(7496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10837), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - [312607] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10839), 1, - anon_sym_SEMI, - ACTIONS(10841), 1, - anon_sym_GT_RBRACE, - STATE(7434), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312627] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10843), 1, - anon_sym_SEMI, - ACTIONS(10845), 1, - anon_sym_GT_RBRACE, - STATE(7498), 1, - sym_attribute, - STATE(7719), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312647] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7789), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7499), 1, - sym_attribute, - STATE(7639), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312667] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10849), 1, - anon_sym_SEMI, - ACTIONS(10851), 1, - anon_sym_RBRACE, - STATE(7384), 1, - aux_sym_record_expression_repeat1, - STATE(7500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312687] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312707] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(21), 1, - sym_attribute_id, - STATE(7502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [312725] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10074), 1, - anon_sym_RBRACK, - STATE(7478), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312745] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2239), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10853), 1, - anon_sym_SEMI, - STATE(7504), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312765] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(10855), 1, - anon_sym_RPAREN, - STATE(7505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312785] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10857), 1, - anon_sym_RPAREN, - STATE(7506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312805] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9497), 1, - anon_sym_RBRACE, - ACTIONS(10859), 1, - anon_sym_SEMI, - STATE(7507), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312825] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(6979), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7508), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312845] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10861), 1, - anon_sym_GT_RBRACE, - STATE(7509), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312865] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9394), 1, - anon_sym_RBRACE, - ACTIONS(10863), 1, - anon_sym_SEMI, - STATE(7510), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312885] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10861), 1, - anon_sym_GT_RBRACE, - ACTIONS(10865), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312905] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10867), 1, - anon_sym_RPAREN, - STATE(7512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312925] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10869), 1, - anon_sym_LPAREN, - ACTIONS(10871), 1, - anon_sym_LBRACK, - ACTIONS(10873), 1, - anon_sym_LBRACE, - STATE(7513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312945] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9572), 1, - anon_sym_RBRACE, - ACTIONS(10875), 1, - anon_sym_SEMI, - STATE(7395), 1, - aux_sym_record_expression_repeat1, - STATE(7514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [312965] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(32), 1, - sym_attribute_id, - STATE(7515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [312983] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10877), 1, - anon_sym_RPAREN, - STATE(7516), 1, - sym_attribute, - STATE(8570), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313003] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9501), 1, - anon_sym_RBRACE, - ACTIONS(10879), 1, - anon_sym_SEMI, - STATE(7517), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313023] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10881), 1, - anon_sym_RPAREN, - STATE(7518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313043] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10883), 1, - anon_sym_LPAREN, - ACTIONS(10885), 1, - anon_sym_LBRACK, - ACTIONS(10887), 1, - anon_sym_LBRACE, - STATE(7519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313063] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - STATE(4951), 1, - sym_module_parameter, - STATE(6957), 1, - aux_sym_module_binding_repeat1, - STATE(7520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313083] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10889), 1, - sym__identifier, - STATE(7521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313103] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10891), 1, - anon_sym_EQ, - STATE(7522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313123] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10893), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313143] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(6010), 1, - anon_sym_DOT, - ACTIONS(10895), 1, - anon_sym_RPAREN, - STATE(7524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313163] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(18), 1, - sym_attribute_id, - STATE(7525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [313181] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(10897), 1, - sym__identifier, - STATE(7526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313201] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10899), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313221] = 6, - ACTIONS(85), 1, - anon_sym_DQUOTE, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5556), 1, - sym_string, - STATE(5581), 1, - aux_sym_external_repeat1, - STATE(7528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313241] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10901), 1, - anon_sym_RPAREN, - STATE(7529), 1, - sym_attribute, - STATE(9204), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313261] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10903), 1, - anon_sym_RPAREN, - STATE(7530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313281] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4356), 1, - anon_sym_RBRACK, - ACTIONS(10905), 1, - anon_sym_SEMI, - STATE(7410), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313301] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(15), 1, - sym_attribute_id, - STATE(7532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [313319] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9226), 1, - anon_sym_RBRACE, - ACTIONS(10907), 1, - anon_sym_SEMI, - STATE(7423), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(7533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313339] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10909), 1, - anon_sym_GT_RBRACE, - STATE(7534), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313359] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4352), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10911), 1, - anon_sym_SEMI, - STATE(7535), 1, - sym_attribute, - STATE(7631), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313379] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10913), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313399] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9513), 1, - anon_sym_RBRACE, - ACTIONS(10915), 1, - anon_sym_SEMI, - STATE(7517), 1, - aux_sym_record_expression_repeat1, - STATE(7537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313419] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7033), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7538), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313439] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10917), 1, - anon_sym_RPAREN, - STATE(7539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313459] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(10919), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313479] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10921), 1, - anon_sym_RPAREN, - STATE(7541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313499] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10923), 1, - anon_sym_SEMI, - ACTIONS(10925), 1, - anon_sym_RBRACE, - STATE(7542), 1, - sym_attribute, - STATE(7713), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313519] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4090), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10927), 1, - anon_sym_SEMI, - STATE(7543), 1, - sym_attribute, - STATE(7655), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313539] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10929), 1, - anon_sym_SEMI, - ACTIONS(10931), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313559] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9120), 1, - anon_sym_RBRACE, - ACTIONS(10933), 1, - anon_sym_SEMI, - STATE(7545), 1, - sym_attribute, - STATE(7696), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313579] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9580), 1, - anon_sym_RBRACE, - ACTIONS(10935), 1, - anon_sym_SEMI, - STATE(7546), 1, - sym_attribute, - STATE(7623), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313599] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(10931), 1, - anon_sym_GT_RBRACE, - STATE(7547), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313619] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4076), 1, - anon_sym_RBRACK, - ACTIONS(10937), 1, - anon_sym_SEMI, - STATE(7548), 1, - sym_attribute, - STATE(7775), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313639] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2319), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10939), 1, - anon_sym_SEMI, - STATE(7549), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313659] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4446), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(10941), 1, - anon_sym_SEMI, - STATE(7550), 1, - sym_attribute, - STATE(7631), 1, - aux_sym_list_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313679] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10943), 1, - anon_sym_RBRACK, - STATE(7551), 1, - sym_attribute, - STATE(7606), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313699] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9528), 1, - anon_sym_RBRACE, - ACTIONS(10945), 1, - anon_sym_SEMI, - STATE(7552), 1, - sym_attribute, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313719] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10947), 1, - anon_sym_EQ, - STATE(7553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313739] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2317), 1, - anon_sym_RBRACK, - ACTIONS(10949), 1, - anon_sym_SEMI, - STATE(7554), 1, - sym_attribute, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313759] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8975), 1, - anon_sym_SEMI, - ACTIONS(8977), 1, - anon_sym_GT, - STATE(7487), 1, - aux_sym_object_type_repeat1, - STATE(7555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313779] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10951), 1, - anon_sym_SEMI, - ACTIONS(10954), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7556), 2, - sym_attribute, - aux_sym_record_expression_repeat1, - [313797] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(29), 1, - sym_attribute_id, - STATE(7557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [313815] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9256), 1, - anon_sym_RBRACE, - ACTIONS(10956), 1, - anon_sym_SEMI, - STATE(7423), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(7558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313835] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10958), 1, - anon_sym_LPAREN, - ACTIONS(10960), 1, - anon_sym_LBRACK, - ACTIONS(10962), 1, - anon_sym_LBRACE, - STATE(7559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313855] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5324), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7560), 1, - sym_attribute, - STATE(7637), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313875] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7501), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313895] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9487), 1, - anon_sym_RBRACE, - ACTIONS(10964), 1, - anon_sym_SEMI, - STATE(7510), 1, - aux_sym_record_expression_repeat1, - STATE(7562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313915] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(10966), 1, - anon_sym_RPAREN, - STATE(7563), 1, - sym_attribute, - STATE(7650), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313935] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8979), 1, - anon_sym_SEMI, - ACTIONS(8981), 1, - anon_sym_GT, - STATE(7564), 1, - sym_attribute, - STATE(7641), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313955] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - ACTIONS(10968), 1, - anon_sym__, - STATE(6887), 1, - sym_type_variable, - STATE(7565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313975] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10970), 1, - anon_sym_SEMI, - ACTIONS(10972), 1, - anon_sym_GT_RBRACE, - STATE(7544), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [313995] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4450), 1, - anon_sym_RBRACK, - ACTIONS(10974), 1, - anon_sym_SEMI, - STATE(7410), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314015] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10976), 1, - anon_sym_RPAREN, - STATE(7568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314035] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9489), 1, - anon_sym_RBRACE, - ACTIONS(10978), 1, - anon_sym_SEMI, - STATE(7462), 1, - aux_sym_record_expression_repeat1, - STATE(7569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314055] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10980), 1, - anon_sym_SEMI, - ACTIONS(10982), 1, - anon_sym_RBRACE, - STATE(7552), 1, - aux_sym_record_expression_repeat1, - STATE(7570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314075] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10425), 1, - anon_sym_COLON2, - ACTIONS(10984), 1, - anon_sym_RPAREN, - STATE(7571), 1, - sym_attribute, - STATE(9171), 1, - sym__class_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314095] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10986), 1, - anon_sym_RPAREN, - STATE(7572), 1, - sym_attribute, - STATE(9487), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314115] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(10988), 1, - anon_sym_RPAREN, - STATE(7573), 1, - sym_attribute, - STATE(8613), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314135] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4110), 1, - anon_sym_RBRACK, - ACTIONS(10990), 1, - anon_sym_SEMI, - STATE(7574), 1, - sym_attribute, - STATE(7775), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314155] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(10992), 1, - anon_sym_EQ, - STATE(7575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314175] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2041), 1, - anon_sym_RBRACK, - ACTIONS(10994), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7576), 2, - sym_attribute, - aux_sym_list_expression_repeat1, - [314193] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10997), 1, - anon_sym_SEMI, - ACTIONS(10999), 1, - anon_sym_RBRACE, - STATE(7577), 1, - sym_attribute, - STATE(7612), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314213] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9262), 1, - anon_sym_RBRACE, - ACTIONS(11001), 1, - anon_sym_SEMI, - STATE(7578), 1, - sym_attribute, - STATE(7696), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314233] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11003), 1, - anon_sym_EQ, - STATE(7579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314253] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2237), 1, - anon_sym_RBRACK, - ACTIONS(11005), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314273] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11007), 1, - anon_sym_SEMI, - ACTIONS(11009), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314293] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11011), 1, - anon_sym_SEMI, - ACTIONS(11013), 1, - anon_sym_GT_RBRACE, - STATE(7582), 1, - sym_attribute, - STATE(7625), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314313] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11009), 1, - anon_sym_GT_RBRACE, - STATE(7583), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314333] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4104), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11015), 1, - anon_sym_SEMI, - STATE(7584), 1, - sym_attribute, - STATE(7655), 1, - aux_sym_list_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314353] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2265), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11017), 1, - anon_sym_SEMI, - STATE(7585), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314373] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9602), 1, - anon_sym_RBRACE, - ACTIONS(11019), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314393] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7681), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7587), 1, - sym_attribute, - STATE(7772), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314413] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11021), 1, - anon_sym_EQ, - STATE(7588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314433] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4900), 1, - sym__type_equation, - STATE(7589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5914), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [314451] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - STATE(7397), 1, - sym_field_declaration, - STATE(7590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314471] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11023), 1, - anon_sym_SEMI, - ACTIONS(11025), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314491] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11027), 1, - anon_sym_EQ, - STATE(7592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314511] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(6010), 1, - anon_sym_DOT, - ACTIONS(11029), 1, - anon_sym_RPAREN, - STATE(7593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314531] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11031), 1, - anon_sym_EQ, - STATE(7594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11033), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [314549] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11025), 1, - anon_sym_GT_RBRACE, - STATE(7595), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314569] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11035), 1, - anon_sym_SEMI, - ACTIONS(11037), 1, - anon_sym_RBRACE, - STATE(7545), 1, - aux_sym_record_pattern_repeat1, - STATE(7596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314589] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11039), 1, - anon_sym_GT_RBRACE, - STATE(7597), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314609] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9546), 1, - anon_sym_RBRACE, - ACTIONS(11041), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314629] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11043), 1, - anon_sym_RPAREN, - STATE(7599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11045), 2, - anon_sym__, - sym__capitalized_identifier, - [314647] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2085), 1, - anon_sym_RBRACK, - ACTIONS(11047), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314667] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11049), 1, - sym__identifier, - STATE(7601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314687] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5709), 1, - sym_module_binding, - STATE(7602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9096), 2, - anon_sym__, - sym__capitalized_identifier, - [314705] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(5711), 1, - sym_module_binding, - STATE(7603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9096), 2, - anon_sym__, - sym__capitalized_identifier, - [314723] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(11051), 1, - anon_sym_RPAREN, - STATE(7604), 1, - sym_attribute, - STATE(9157), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314743] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(19), 1, - sym_attribute_id, - STATE(7605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [314761] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(11053), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314781] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(11053), 1, - anon_sym_RBRACK, - STATE(7607), 1, - sym_attribute, - STATE(7642), 1, - aux_sym__type_params_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314801] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2313), 1, - anon_sym_RBRACK, - ACTIONS(11055), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314821] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9564), 1, - anon_sym_RBRACE, - ACTIONS(11057), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314841] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11059), 1, - anon_sym_EQ, - STATE(7610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314861] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11061), 1, - anon_sym_RPAREN, - STATE(7611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314881] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9493), 1, - anon_sym_RBRACE, - ACTIONS(11063), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314901] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11065), 1, - anon_sym_SEMI, - ACTIONS(11067), 1, - anon_sym_GT_RBRACE, - STATE(7581), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314921] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6413), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [314937] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2087), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11069), 1, - anon_sym_SEMI, - STATE(7615), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314957] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2285), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11071), 1, - anon_sym_SEMI, - STATE(7616), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314977] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(11073), 1, - anon_sym_RBRACK, - STATE(7453), 1, - aux_sym__type_params_repeat1, - STATE(7617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [314997] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11075), 1, - sym__identifier, - STATE(7618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315017] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - STATE(7446), 1, - sym_field_declaration, - STATE(7619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315037] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11077), 1, - anon_sym_GT_RBRACE, - STATE(7620), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315057] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11079), 1, - anon_sym_RPAREN, - STATE(7621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315077] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9788), 1, - sym__identifier, - ACTIONS(9792), 1, - anon_sym_mutable, - STATE(7622), 1, - sym_attribute, - STATE(7895), 1, - sym_field_declaration, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315097] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9600), 1, - anon_sym_RBRACE, - ACTIONS(11081), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315117] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11083), 1, - anon_sym_SEMI, - ACTIONS(11085), 1, - anon_sym_RBRACE, - STATE(7459), 1, - aux_sym_record_pattern_repeat1, - STATE(7624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315137] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11077), 1, - anon_sym_GT_RBRACE, - ACTIONS(11087), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315157] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11089), 1, - anon_sym_RPAREN, - STATE(7626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315177] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11091), 1, - anon_sym_RPAREN, - STATE(7627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315197] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(16), 1, - sym_attribute_id, - STATE(7628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [315215] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11093), 1, - anon_sym_EQ, - STATE(7629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315235] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11095), 1, - anon_sym_GT_RBRACE, - STATE(7630), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315255] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9400), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11097), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7631), 2, - sym_attribute, - aux_sym_list_binding_pattern_repeat1, - [315273] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11100), 1, - anon_sym_EQ, - STATE(7632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315293] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6435), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [315309] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11102), 1, - anon_sym_RPAREN, - STATE(7634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315329] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9570), 1, - anon_sym_RBRACE, - ACTIONS(11104), 1, - anon_sym_SEMI, - STATE(7609), 1, - aux_sym_record_expression_repeat1, - STATE(7635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315349] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10046), 1, - anon_sym_RBRACK, - STATE(7636), 1, - sym_attribute, - STATE(7661), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315369] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10046), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315389] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11106), 3, - anon_sym_mutable, - anon_sym_virtual, - sym__identifier, - [315405] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7681), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7639), 1, - sym_attribute, - STATE(7817), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315425] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11108), 1, - anon_sym_RPAREN, - STATE(7640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315445] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6096), 1, - anon_sym_GT, - ACTIONS(11110), 1, - anon_sym_SEMI, - STATE(7641), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315465] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(11112), 1, - anon_sym_RBRACK, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315485] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7643), 1, - sym_attribute, - STATE(7820), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9477), 2, - anon_sym__, - sym__capitalized_identifier, - [315503] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11114), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315523] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11116), 3, - anon_sym_private, - anon_sym_virtual, - sym__identifier, - [315539] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11118), 1, - anon_sym_SEMI, - ACTIONS(11120), 1, - anon_sym_RBRACE, - STATE(7598), 1, - aux_sym_record_expression_repeat1, - STATE(7646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315559] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9819), 1, - anon_sym_RBRACK, - STATE(7647), 1, - sym_attribute, - STATE(7813), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315579] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11122), 1, - anon_sym_SEMI, - ACTIONS(11124), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315599] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11126), 1, - anon_sym_RPAREN, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315619] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10339), 1, - anon_sym_COMMA, - ACTIONS(11128), 1, - anon_sym_RPAREN, - STATE(7019), 1, - aux_sym__type_params_repeat1, - STATE(7650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315639] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7155), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7651), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315659] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11130), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315679] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9819), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315699] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11132), 1, - anon_sym_SEMI, - ACTIONS(11134), 1, - anon_sym_RBRACE, - STATE(7238), 1, - aux_sym_record_pattern_repeat1, - STATE(7654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315719] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9530), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11136), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7655), 2, - sym_attribute, - aux_sym_list_pattern_repeat1, - [315737] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6648), 1, - anon_sym_DQUOTE, - STATE(5130), 1, - aux_sym_external_repeat1, - STATE(5556), 1, - sym_string, - STATE(7656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315757] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9550), 1, - anon_sym_RBRACE, - ACTIONS(11139), 1, - anon_sym_SEMI, - STATE(7657), 1, - sym_attribute, - STATE(7682), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315777] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(14), 1, - sym_attribute_id, - STATE(7658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [315795] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11141), 1, - anon_sym_EQ, - STATE(7659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315815] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11143), 1, - anon_sym_RPAREN, - STATE(7660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315835] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9813), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315855] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9813), 1, - anon_sym_RBRACK, - STATE(7662), 1, - sym_attribute, - STATE(7681), 1, - aux_sym_polymorphic_variant_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315875] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2293), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11145), 1, - anon_sym_SEMI, - STATE(7663), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315895] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11124), 1, - anon_sym_GT_RBRACE, - STATE(7664), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315915] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - STATE(4951), 1, - sym_module_parameter, - STATE(6950), 1, - aux_sym_module_binding_repeat1, - STATE(7665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315935] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11147), 1, - anon_sym_GT_RBRACE, - STATE(7666), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315955] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7052), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7667), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315975] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(11149), 1, - anon_sym_type, - STATE(7224), 1, - sym_module_path, - STATE(7668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [315995] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2269), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11151), 1, - anon_sym_SEMI, - STATE(7669), 1, - sym_attribute, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316015] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11153), 1, - anon_sym_RPAREN, - STATE(7670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316035] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9578), 1, - anon_sym_RBRACE, - ACTIONS(11155), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316055] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11157), 1, - sym__identifier, - STATE(7672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316075] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2267), 1, - anon_sym_RBRACK, - ACTIONS(11159), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316095] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(26), 1, - sym_attribute_id, - STATE(7674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [316113] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11161), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316133] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7183), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7676), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316153] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6100), 1, - anon_sym_GT, - ACTIONS(11163), 1, - anon_sym_SEMI, - STATE(7677), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316173] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11165), 1, - anon_sym_RPAREN, - STATE(7678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11167), 2, - anon_sym__, - sym__capitalized_identifier, - [316191] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6276), 1, - sym__type_equation, - STATE(7679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11169), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [316209] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11171), 1, - anon_sym_RPAREN, - STATE(7680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316229] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316249] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9576), 1, - anon_sym_RBRACE, - ACTIONS(11173), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316269] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11175), 1, - anon_sym_SEMI, - ACTIONS(11177), 1, - anon_sym_GT_RBRACE, - STATE(7648), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316289] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6426), 1, - sym__type_equation, - STATE(7684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11179), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [316307] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11181), 1, - anon_sym_SEMI, - ACTIONS(11183), 1, - anon_sym_RBRACE, - STATE(7671), 1, - aux_sym_record_expression_repeat1, - STATE(7685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316327] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9542), 1, - anon_sym_RBRACE, - ACTIONS(11185), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316347] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2315), 1, - anon_sym_RBRACK, - ACTIONS(11187), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316367] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(12), 1, - sym_attribute_id, - STATE(7688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [316385] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10243), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316405] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7208), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7690), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316425] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6388), 1, - sym__type_equation, - STATE(7691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11179), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [316443] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11189), 1, - anon_sym_SEMI, - ACTIONS(11191), 1, - anon_sym_RBRACE, - STATE(7558), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(7692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316463] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11193), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316483] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6421), 3, - anon_sym_and, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [316499] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7779), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7695), 1, - sym_attribute, - STATE(7817), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316519] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11195), 1, - anon_sym_SEMI, - ACTIONS(11198), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7696), 2, - sym_attribute, - aux_sym_record_pattern_repeat1, - [316537] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7697), 1, - sym_attribute, - STATE(7832), 1, - sym_module_binding, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9477), 2, - anon_sym__, - sym__capitalized_identifier, - [316555] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11200), 1, - anon_sym_SEMI, - ACTIONS(11202), 1, - anon_sym_GT_RBRACE, - STATE(7591), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316575] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9839), 1, - anon_sym_RBRACK, - STATE(7689), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316595] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9839), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316615] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11204), 1, - anon_sym_SEMI, - ACTIONS(11206), 1, - anon_sym_RBRACE, - STATE(7701), 1, - sym_attribute, - STATE(7730), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316635] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2041), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11208), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7702), 2, - sym_attribute, - aux_sym_list_expression_repeat1, - [316653] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11211), 1, - anon_sym_RPAREN, - STATE(7703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316673] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4372), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11213), 1, - anon_sym_SEMI, - STATE(7631), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316693] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11215), 1, - anon_sym_EQ, - STATE(7705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11217), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [316711] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9604), 1, - anon_sym_RBRACE, - ACTIONS(11219), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316731] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11221), 1, - anon_sym_RPAREN, - STATE(7707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316751] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7587), 1, - sym_module_binding, - STATE(7708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9477), 2, - anon_sym__, - sym__capitalized_identifier, - [316769] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11223), 1, - anon_sym_SEMI, - ACTIONS(11225), 1, - anon_sym_GT_RBRACE, - STATE(7709), 1, - sym_attribute, - STATE(7751), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316789] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(36), 1, - sym_attribute_id, - STATE(7710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [316807] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7040), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7711), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316827] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11227), 1, - anon_sym_SEMI, - ACTIONS(11229), 1, - anon_sym_RBRACE, - STATE(7686), 1, - aux_sym_record_expression_repeat1, - STATE(7712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316847] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9054), 1, - anon_sym_RBRACE, - ACTIONS(11231), 1, - anon_sym_SEMI, - STATE(7423), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(7713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316867] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11233), 1, - sym__identifier, - STATE(7714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316887] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(10153), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316907] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11235), 1, - anon_sym_LPAREN, - ACTIONS(11237), 1, - anon_sym_LBRACK, - ACTIONS(11239), 1, - anon_sym_LBRACE, - STATE(7716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316927] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4378), 1, - anon_sym_RBRACK, - ACTIONS(11241), 1, - anon_sym_SEMI, - STATE(7410), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316947] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11243), 1, - anon_sym_GT_RBRACE, - STATE(7718), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316967] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11243), 1, - anon_sym_GT_RBRACE, - ACTIONS(11245), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [316987] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11247), 1, - anon_sym_GT_RBRACE, - STATE(7720), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317007] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(4506), 1, - aux_sym_attribute_id_token1, - STATE(7721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(4508), 2, - sym__left_quoted_string_delimiter, - aux_sym_quoted_extension_token1, - [317025] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11251), 1, - anon_sym_LBRACK, - STATE(7722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11249), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - [317043] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4646), 1, - sym_attribute_id, - STATE(7723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11253), 2, - sym__identifier, - sym__capitalized_identifier, - [317061] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9598), 1, - anon_sym_RBRACE, - ACTIONS(11255), 1, - anon_sym_SEMI, - STATE(7706), 1, - aux_sym_record_expression_repeat1, - STATE(7724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317081] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(11257), 1, - anon_sym_RPAREN, - STATE(7725), 1, - sym_attribute, - STATE(8454), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317101] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11261), 1, - anon_sym_LBRACK, - STATE(7726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11259), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - [317119] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11263), 1, - anon_sym_RPAREN, - STATE(7727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317139] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2113), 1, - anon_sym_RBRACK, - ACTIONS(11265), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317159] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9136), 1, - anon_sym_RBRACK, - ACTIONS(9268), 1, - anon_sym_as, - STATE(7729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317179] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9392), 1, - anon_sym_RBRACE, - ACTIONS(11267), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317199] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11269), 1, - anon_sym_EQ, - STATE(7731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317219] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11271), 1, - anon_sym_LPAREN, - ACTIONS(11273), 1, - anon_sym_LBRACK, - ACTIONS(11275), 1, - anon_sym_LBRACE, - STATE(7732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317239] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11277), 1, - anon_sym_SEMI, - ACTIONS(11279), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317259] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11279), 1, - anon_sym_GT_RBRACE, - STATE(7734), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317279] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(20), 1, - sym_attribute_id, - STATE(7735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317297] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6104), 1, - anon_sym_GT, - ACTIONS(11281), 1, - anon_sym_SEMI, - STATE(7736), 1, - sym_attribute, - STATE(7804), 1, - aux_sym_object_type_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317317] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7487), 1, - anon_sym_and, - STATE(7737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7485), 2, - anon_sym_in, - sym_and_operator, - [317335] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2203), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11283), 1, - anon_sym_SEMI, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - STATE(7738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317355] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9803), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317375] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5985), 1, - anon_sym_LPAREN, - STATE(4951), 1, - sym_module_parameter, - STATE(6995), 1, - aux_sym_module_binding_repeat1, - STATE(7740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317395] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9803), 1, - anon_sym_RBRACK, - STATE(7700), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317415] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11285), 1, - anon_sym_RPAREN, - STATE(7742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317435] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9588), 1, - anon_sym_RBRACE, - ACTIONS(11287), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317455] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11289), 1, - anon_sym_SEMI, - ACTIONS(11291), 1, - anon_sym_RBRACE, - STATE(7744), 1, - sym_attribute, - STATE(7778), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317475] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5703), 1, - anon_sym_DOT, - STATE(7745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11293), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [317493] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2121), 1, - anon_sym_RBRACK, - ACTIONS(11295), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317513] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(4920), 1, - sym__type_equation, - STATE(7747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5914), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [317531] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2115), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11297), 1, - anon_sym_SEMI, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - STATE(7748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317551] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11299), 1, - anon_sym_RPAREN, - STATE(7749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317571] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11301), 1, - anon_sym_GT_RBRACE, - STATE(7750), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317591] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11301), 1, - anon_sym_GT_RBRACE, - ACTIONS(11303), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317611] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(6277), 1, - sym__type_equation, - STATE(7752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11169), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [317629] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11305), 1, - anon_sym_SEMI, - ACTIONS(11307), 1, - anon_sym_GT_RBRACE, - STATE(7753), 1, - sym_attribute, - STATE(7799), 1, - aux_sym_object_copy_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317649] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11309), 1, - anon_sym_SEMI, - ACTIONS(11311), 1, - anon_sym_GT_RBRACE, - STATE(7733), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317669] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(22), 1, - sym_attribute_id, - STATE(7755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317687] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11313), 1, - anon_sym_SEMI, - ACTIONS(11315), 1, - anon_sym_RBRACE, - STATE(7743), 1, - aux_sym_record_expression_repeat1, - STATE(7756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317707] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11317), 1, - anon_sym_SEMI, - ACTIONS(11320), 1, - anon_sym_RBRACE, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7757), 2, - sym_attribute, - aux_sym_record_declaration_repeat1, - [317725] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9532), 1, - anon_sym_RBRACE, - ACTIONS(11322), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317745] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11324), 1, - anon_sym_RPAREN, - STATE(7759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317765] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(42), 1, - sym_attribute_id, - STATE(7760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317783] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(11326), 1, - anon_sym_RPAREN, - STATE(7761), 1, - sym_attribute, - STATE(8822), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317803] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10205), 1, - anon_sym_RBRACE, - ACTIONS(11328), 1, - anon_sym_SEMI, - STATE(7757), 1, - aux_sym_record_declaration_repeat1, - STATE(7762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317823] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11330), 1, - anon_sym_SEMI, - ACTIONS(11332), 1, - anon_sym_RBRACE, - STATE(7763), 1, - sym_attribute, - STATE(7811), 1, - aux_sym_record_binding_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317843] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11334), 1, - anon_sym_RPAREN, - STATE(7764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317863] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(27), 1, - sym_attribute_id, - STATE(7765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317881] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9415), 1, - anon_sym_RBRACE, - ACTIONS(11336), 1, - anon_sym_SEMI, - STATE(7766), 1, - sym_attribute, - STATE(7789), 1, - aux_sym_record_expression_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317901] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11338), 1, - anon_sym_GT_RBRACE, - STATE(7767), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317921] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11340), 1, - sym__identifier, - STATE(7768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317941] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11342), 1, - anon_sym_LPAREN, - ACTIONS(11344), 1, - anon_sym_LBRACK, - ACTIONS(11346), 1, - anon_sym_LBRACE, - STATE(7769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [317961] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(24), 1, - sym_attribute_id, - STATE(7770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317979] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(35), 1, - sym_attribute_id, - STATE(7771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [317997] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7785), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7772), 1, - sym_attribute, - STATE(7817), 1, - aux_sym_module_definition_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318017] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2091), 1, - anon_sym_RBRACK, - ACTIONS(11348), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318037] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(13), 1, - sym_attribute_id, - STATE(7774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318055] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9530), 1, - anon_sym_RBRACK, - ACTIONS(11350), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7775), 2, - sym_attribute, - aux_sym_list_pattern_repeat1, - [318073] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11353), 1, - anon_sym_GT_RBRACE, - STATE(7776), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318093] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11355), 1, - sym__identifier, - STATE(7777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318113] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9396), 1, - anon_sym_RBRACE, - ACTIONS(11357), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318133] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(25), 1, - sym_attribute_id, - STATE(7779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318151] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(10), 1, - sym_attribute_id, - STATE(7780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318169] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11359), 1, - anon_sym_SEMI, - ACTIONS(11361), 1, - anon_sym_RBRACE, - STATE(7781), 1, - sym_attribute, - STATE(7785), 1, - aux_sym_record_pattern_repeat1, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318189] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(38), 1, - sym_attribute_id, - STATE(7782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318207] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2229), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11363), 1, - anon_sym_SEMI, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - STATE(7783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318227] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4092), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11365), 1, - anon_sym_SEMI, - STATE(7655), 1, - aux_sym_list_pattern_repeat1, - STATE(7784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318247] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9078), 1, - anon_sym_RBRACE, - ACTIONS(11367), 1, - anon_sym_SEMI, - STATE(7696), 1, - aux_sym_record_pattern_repeat1, - STATE(7785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318267] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9536), 1, - anon_sym_RBRACE, - ACTIONS(11369), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318287] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11371), 1, - anon_sym_RPAREN, - STATE(7787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318307] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11373), 1, - anon_sym_RPAREN, - STATE(7788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318327] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9433), 1, - anon_sym_RBRACE, - ACTIONS(11375), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318347] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4122), 1, - anon_sym_RBRACK, - ACTIONS(11377), 1, - anon_sym_SEMI, - STATE(7775), 1, - aux_sym_list_pattern_repeat1, - STATE(7790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318367] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5250), 1, - sym__capitalized_identifier, - ACTIONS(11379), 1, - anon_sym_type, - STATE(7745), 1, - sym_module_path, - STATE(7791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318387] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(40), 1, - sym_attribute_id, - STATE(7792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318405] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(10298), 1, - sym_indexing_operator, - ACTIONS(11381), 1, - sym__identifier, - STATE(7793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318425] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11383), 1, - anon_sym_GT_RBRACE, - STATE(7794), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318445] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(9), 1, - sym_attribute_id, - STATE(7795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318463] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11385), 1, - anon_sym_RPAREN, - STATE(7796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318483] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9011), 1, - anon_sym_SEMI, - ACTIONS(9013), 1, - anon_sym_GT, - STATE(7736), 1, - aux_sym_object_type_repeat1, - STATE(7797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318503] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11387), 1, - anon_sym_GT_RBRACE, - STATE(7798), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318523] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11383), 1, - anon_sym_GT_RBRACE, - ACTIONS(11389), 1, - anon_sym_SEMI, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318543] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9509), 1, - anon_sym_RBRACE, - ACTIONS(11391), 1, - anon_sym_SEMI, - STATE(7786), 1, - aux_sym_record_expression_repeat1, - STATE(7800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318563] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(44), 1, - sym_attribute_id, - STATE(7801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318581] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11393), 1, - anon_sym_RPAREN, - STATE(7802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318601] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - ACTIONS(11395), 1, - anon_sym_RPAREN, - STATE(7803), 1, - sym_attribute, - STATE(8864), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318621] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9340), 1, - anon_sym_GT, - ACTIONS(11397), 1, - anon_sym_SEMI, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7804), 2, - sym_attribute, - aux_sym_object_type_repeat1, - [318639] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11400), 1, - anon_sym_SEMI, - ACTIONS(11402), 1, - anon_sym_GT_RBRACE, - STATE(7254), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318659] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - ACTIONS(11402), 1, - anon_sym_GT_RBRACE, - STATE(7806), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318679] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4426), 1, - anon_sym_RBRACK, - ACTIONS(11404), 1, - anon_sym_SEMI, - STATE(7410), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318699] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4026), 1, - aux_sym_tag_token1, - STATE(7140), 1, - aux_sym_polymorphic_variant_type_repeat2, - STATE(7808), 1, - sym_attribute, - STATE(7843), 1, - sym_tag, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318719] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2185), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11406), 1, - anon_sym_SEMI, - STATE(7702), 1, - aux_sym_list_expression_repeat1, - STATE(7809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318739] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10021), 3, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_GT, - [318755] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9170), 1, - anon_sym_RBRACE, - ACTIONS(11408), 1, - anon_sym_SEMI, - STATE(7423), 1, - aux_sym_record_binding_pattern_repeat1, - STATE(7811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318775] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9893), 1, - anon_sym_RBRACK, - STATE(7715), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318795] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9776), 1, - anon_sym_PIPE, - ACTIONS(9893), 1, - anon_sym_RBRACK, - STATE(7058), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318815] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9491), 1, - anon_sym_RBRACE, - ACTIONS(11410), 1, - anon_sym_SEMI, - STATE(7556), 1, - aux_sym_record_expression_repeat1, - STATE(7814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318835] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(23), 1, - sym_attribute_id, - STATE(7815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [318853] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2181), 1, - anon_sym_RBRACK, - ACTIONS(11412), 1, - anon_sym_SEMI, - STATE(7576), 1, - aux_sym_list_expression_repeat1, - STATE(7816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318873] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7645), 1, - anon_sym_in, - ACTIONS(11414), 1, - anon_sym_and, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - STATE(7817), 2, - sym_attribute, - aux_sym_module_definition_repeat1, - [318891] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9754), 1, - anon_sym_with, - ACTIONS(9807), 1, - anon_sym_DASH_GT, - ACTIONS(11417), 1, - anon_sym_RPAREN, - STATE(7818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318911] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4424), 1, - anon_sym_PIPE_RBRACK, - ACTIONS(11419), 1, - anon_sym_SEMI, - STATE(7631), 1, - aux_sym_list_binding_pattern_repeat1, - STATE(7819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318931] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7785), 1, - anon_sym_in, - ACTIONS(10847), 1, - anon_sym_and, - STATE(7695), 1, - aux_sym_module_definition_repeat1, - STATE(7820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318951] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11421), 1, - anon_sym_SEMI, - ACTIONS(11423), 1, - anon_sym_GT_RBRACE, - STATE(7805), 1, - aux_sym_object_copy_expression_repeat1, - STATE(7821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318971] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11425), 1, - anon_sym_RPAREN, - STATE(7822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [318991] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11427), 1, - anon_sym_SEMI, - ACTIONS(11429), 1, - anon_sym_RBRACE, - STATE(7814), 1, - aux_sym_record_expression_repeat1, - STATE(7823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319011] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(45), 1, - sym_attribute_id, - STATE(7824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [319029] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11431), 1, - anon_sym_RPAREN, - STATE(7825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319049] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9453), 1, - anon_sym_COMMA, - ACTIONS(11433), 1, - anon_sym_RBRACK, - STATE(7059), 1, - aux_sym_instantiated_class_type_repeat1, - STATE(7826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319069] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9441), 1, - anon_sym_RBRACE, - ACTIONS(11435), 1, - anon_sym_SEMI, - STATE(7758), 1, - aux_sym_record_expression_repeat1, - STATE(7827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319089] = 6, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5294), 1, - anon_sym_RBRACK, - ACTIONS(9776), 1, - anon_sym_PIPE, - STATE(7739), 1, - aux_sym_polymorphic_variant_type_repeat1, - STATE(7828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319109] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8), 1, - sym_attribute_id, - STATE(7829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10399), 2, - sym__identifier, - sym__capitalized_identifier, - [319127] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(11437), 1, - aux_sym_quoted_extension_token1, - ACTIONS(11439), 1, - sym__left_quoted_string_delimiter, - STATE(7830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319144] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11441), 1, - anon_sym_RBRACK, - ACTIONS(11443), 1, - anon_sym_SEMI, - STATE(7831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319161] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(7645), 2, - anon_sym_and, - anon_sym_in, - [319176] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11441), 1, - anon_sym_RPAREN, - ACTIONS(11445), 1, - anon_sym_SEMI, - STATE(7833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319193] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11447), 1, - anon_sym_DASH_GT, - ACTIONS(11449), 1, - anon_sym_STAR, - STATE(7834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319210] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11451), 1, - anon_sym_RBRACK, - ACTIONS(11453), 1, - anon_sym_SEMI, - STATE(7835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319227] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11451), 1, - anon_sym_RBRACE, - ACTIONS(11455), 1, - anon_sym_SEMI, - STATE(7836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319244] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3708), 1, - anon_sym_COLON2, - STATE(6271), 1, - sym__polymorphic_typed, - STATE(7837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319261] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11451), 1, - anon_sym_RPAREN, - ACTIONS(11457), 1, - anon_sym_SEMI, - STATE(7838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319278] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11459), 1, - sym__identifier, - STATE(7839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319295] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11461), 1, - anon_sym_then, - STATE(4549), 1, - sym_then_clause, - STATE(7840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319312] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11463), 1, - anon_sym_COLON2, - STATE(6269), 1, - sym__typed, - STATE(7841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319329] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11465), 1, - sym__identifier, - ACTIONS(11467), 1, - sym__capitalized_identifier, - STATE(7842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319346] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7843), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11469), 2, - anon_sym_RBRACK, - aux_sym_tag_token1, - [319361] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11471), 1, - anon_sym_SEMI, - ACTIONS(11473), 1, - anon_sym_RBRACE, - STATE(7844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319378] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11473), 1, - anon_sym_RBRACK, - ACTIONS(11475), 1, - anon_sym_SEMI, - STATE(7845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319395] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11473), 1, - anon_sym_RPAREN, - ACTIONS(11477), 1, - anon_sym_SEMI, - STATE(7846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319412] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11479), 1, - anon_sym_COLON_GT, - ACTIONS(11481), 1, - anon_sym_RPAREN, - STATE(7847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319429] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5294), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(7848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319446] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11483), 1, - anon_sym_DASH_GT, - STATE(7849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319463] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11485), 2, - sym__identifier, - sym__capitalized_identifier, - [319478] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(9340), 2, - anon_sym_SEMI, - anon_sym_GT, - [319493] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11487), 1, - anon_sym_RPAREN, - ACTIONS(11489), 1, - anon_sym_LT_DASH, - STATE(7852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319510] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11491), 1, - anon_sym_SEMI, - ACTIONS(11493), 1, - anon_sym_RBRACE, - STATE(7853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319527] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11493), 1, - anon_sym_RBRACK, - ACTIONS(11495), 1, - anon_sym_SEMI, - STATE(7854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319544] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11441), 1, - anon_sym_RBRACE, - ACTIONS(11497), 1, - anon_sym_SEMI, - STATE(7855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319561] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11493), 1, - anon_sym_RPAREN, - ACTIONS(11499), 1, - anon_sym_SEMI, - STATE(7856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319578] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11501), 2, - sym__identifier, - sym__capitalized_identifier, - [319593] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4974), 1, - aux_sym_type_variable_token1, - STATE(4146), 1, - sym_type_variable, - STATE(7858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319610] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11503), 1, - anon_sym_RPAREN, - ACTIONS(11505), 1, - anon_sym_SEMI, - STATE(7859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319627] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11503), 1, - anon_sym_RBRACK, - ACTIONS(11507), 1, - anon_sym_SEMI, - STATE(7860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319644] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11503), 1, - anon_sym_RBRACE, - ACTIONS(11509), 1, - anon_sym_SEMI, - STATE(7861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319661] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11511), 1, - anon_sym_then, - STATE(3319), 1, - sym_then_clause, - STATE(7862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319678] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11513), 1, - anon_sym_SEMI, - ACTIONS(11515), 1, - anon_sym_RBRACE, - STATE(7863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319695] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11517), 1, - sym__identifier, - STATE(7864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319712] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11519), 1, - anon_sym_RPAREN, - ACTIONS(11521), 1, - anon_sym_LT_DASH, - STATE(7865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319729] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11515), 1, - anon_sym_RBRACK, - ACTIONS(11523), 1, - anon_sym_SEMI, - STATE(7866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319746] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11525), 1, - anon_sym_RPAREN, - ACTIONS(11527), 1, - anon_sym_LT_DASH, - STATE(7867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319763] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11515), 1, - anon_sym_RPAREN, - ACTIONS(11529), 1, - anon_sym_SEMI, - STATE(7868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319780] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11531), 1, - anon_sym_RPAREN, - ACTIONS(11533), 1, - anon_sym_SEMI, - STATE(7869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319797] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11531), 1, - anon_sym_RBRACK, - ACTIONS(11535), 1, - anon_sym_SEMI, - STATE(7870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319814] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11531), 1, - anon_sym_RBRACE, - ACTIONS(11537), 1, - anon_sym_SEMI, - STATE(7871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319831] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11539), 1, - anon_sym_SEMI, - ACTIONS(11541), 1, - anon_sym_RBRACE, - STATE(7872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319848] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11543), 1, - anon_sym_RPAREN, - ACTIONS(11545), 1, - anon_sym_LT_DASH, - STATE(7873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319865] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11547), 1, - anon_sym_EQ, - ACTIONS(11549), 1, - anon_sym_RPAREN, - STATE(7874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319882] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11551), 1, - anon_sym_SEMI, - ACTIONS(11553), 1, - anon_sym_RBRACE, - STATE(7875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319899] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11553), 1, - anon_sym_RBRACK, - ACTIONS(11555), 1, - anon_sym_SEMI, - STATE(7876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319916] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11553), 1, - anon_sym_RPAREN, - ACTIONS(11557), 1, - anon_sym_SEMI, - STATE(7877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319933] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11559), 1, - anon_sym_do, - STATE(3240), 1, - sym_do_clause, - STATE(7878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319950] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5874), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [319965] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11561), 1, - anon_sym_then, - STATE(4681), 1, - sym_then_clause, - STATE(7880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [319982] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5886), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [319997] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11563), 1, - anon_sym_SEMI, - ACTIONS(11565), 1, - anon_sym_RBRACE, - STATE(7882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320014] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11567), 2, - sym__identifier, - sym__capitalized_identifier, - [320029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11565), 1, - anon_sym_RBRACK, - ACTIONS(11569), 1, - anon_sym_SEMI, - STATE(7884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320046] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11565), 1, - anon_sym_RPAREN, - ACTIONS(11571), 1, - anon_sym_SEMI, - STATE(7885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320063] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11573), 1, - anon_sym_do, - STATE(3300), 1, - sym_do_clause, - STATE(7886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320080] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11575), 1, - sym__identifier, - STATE(7887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320097] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9174), 1, - anon_sym_RBRACE, - ACTIONS(11577), 1, - anon_sym_SEMI, - STATE(7888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320114] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11579), 1, - anon_sym_COLON_GT, - ACTIONS(11581), 1, - anon_sym_RPAREN, - STATE(7889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320131] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11583), 1, - anon_sym_RPAREN, - ACTIONS(11585), 1, - anon_sym_LT_DASH, - STATE(7890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320148] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11587), 2, - sym__identifier, - sym__capitalized_identifier, - [320163] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11589), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [320178] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11591), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [320193] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9246), 1, - anon_sym_COLON2, - STATE(7892), 1, - sym__polymorphic_typed, - STATE(7894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320210] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11320), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [320225] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11593), 1, - sym__identifier, - ACTIONS(11595), 1, - anon_sym_LPAREN, - STATE(7896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320242] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11597), 1, - anon_sym_COLON2, - STATE(7897), 1, - sym_attribute, - STATE(9272), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320259] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11599), 1, - sym__identifier, - STATE(7898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320276] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11573), 1, - anon_sym_do, - STATE(3288), 1, - sym_do_clause, - STATE(7899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320293] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11601), 1, - anon_sym_then, - STATE(3261), 1, - sym_then_clause, - STATE(7900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320310] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11603), 1, - anon_sym_COLON_GT, - ACTIONS(11605), 1, - anon_sym_RPAREN, - STATE(7901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320327] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5210), 1, - anon_sym_RPAREN, - ACTIONS(5482), 1, - anon_sym_COLON_COLON, - STATE(7902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320344] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11607), 1, - sym__identifier, - ACTIONS(11609), 1, - anon_sym_LPAREN, - STATE(7903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320361] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(11611), 1, - aux_sym_quoted_extension_token1, - ACTIONS(11613), 1, - sym__left_quoted_string_delimiter, - STATE(7904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320378] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11615), 1, - sym__identifier, - STATE(7905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320395] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11617), 1, - sym__identifier, - STATE(7906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320412] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11597), 1, - anon_sym_COLON2, - STATE(7907), 1, - sym_attribute, - STATE(9229), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320429] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(11619), 1, - anon_sym_DASH_GT, - STATE(7908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320446] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11621), 2, - sym__identifier, - sym__capitalized_identifier, - [320461] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11623), 1, - sym__identifier, - STATE(7910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320478] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11625), 1, - anon_sym_COLON_GT, - ACTIONS(11627), 1, - anon_sym_RPAREN, - STATE(7911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320495] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11629), 1, - anon_sym_then, - STATE(3884), 1, - sym_then_clause, - STATE(7912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320512] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11631), 1, - anon_sym_SEMI, - ACTIONS(11633), 1, - anon_sym_RBRACE, - STATE(7913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320529] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11561), 1, - anon_sym_then, - STATE(4693), 1, - sym_then_clause, - STATE(7914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320546] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9232), 1, - anon_sym_RBRACE, - ACTIONS(11635), 1, - anon_sym_SEMI, - STATE(7915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320563] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11637), 2, - sym__identifier, - sym__capitalized_identifier, - [320578] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11639), 1, - anon_sym_COLON2, - STATE(5824), 1, - sym__polymorphic_typed, - STATE(7917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320595] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11641), 1, - anon_sym_SEMI, - ACTIONS(11643), 1, - anon_sym_RBRACE, - STATE(7918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320612] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11643), 1, - anon_sym_RBRACK, - ACTIONS(11645), 1, - anon_sym_SEMI, - STATE(7919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320629] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11643), 1, - anon_sym_RPAREN, - ACTIONS(11647), 1, - anon_sym_SEMI, - STATE(7920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320646] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11463), 1, - anon_sym_COLON2, - STATE(6267), 1, - sym__typed, - STATE(7921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320663] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11649), 2, - anon_sym__, - sym__capitalized_identifier, - [320678] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3708), 1, - anon_sym_COLON2, - STATE(6265), 1, - sym__polymorphic_typed, - STATE(7923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320695] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11651), 1, - sym__identifier, - STATE(7924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320712] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11653), 1, - anon_sym_SEMI, - ACTIONS(11655), 1, - anon_sym_RBRACE, - STATE(7925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320729] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11657), 2, - sym__identifier, - sym__capitalized_identifier, - [320744] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11049), 1, - sym__identifier, - STATE(7927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320761] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11659), 1, - anon_sym_RPAREN, - ACTIONS(11661), 1, - anon_sym_LT_DASH, - STATE(7928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320778] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11663), 1, - anon_sym_then, - STATE(4688), 1, - sym_then_clause, - STATE(7929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320795] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11665), 1, - sym__identifier, - ACTIONS(11667), 1, - anon_sym_LBRACK, - STATE(7930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320812] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11669), 1, - anon_sym_open, - STATE(7931), 1, - sym_attribute, - STATE(9628), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320829] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9849), 1, - sym__identifier, - STATE(7932), 1, - sym_attribute, - STATE(8288), 1, - sym_instance_variable_expression, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320846] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11671), 2, - anon_sym_to, - anon_sym_downto, - [320861] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11673), 1, - anon_sym_then, - STATE(3936), 1, - sym_then_clause, - STATE(7934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320878] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11675), 1, - anon_sym_do, - STATE(3254), 1, - sym_do_clause, - STATE(7935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320895] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11669), 1, - anon_sym_open, - STATE(7936), 1, - sym_attribute, - STATE(9173), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320912] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11677), 1, - anon_sym_RPAREN, - ACTIONS(11679), 1, - anon_sym_LT_DASH, - STATE(7937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320929] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(7938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5890), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [320944] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11198), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [320959] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9308), 1, - anon_sym_RBRACE, - ACTIONS(11681), 1, - anon_sym_SEMI, - STATE(7940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320976] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11683), 1, - anon_sym_SEMI, - ACTIONS(11685), 1, - anon_sym_RBRACE, - STATE(7941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [320993] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11685), 1, - anon_sym_RBRACK, - ACTIONS(11687), 1, - anon_sym_SEMI, - STATE(7942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321010] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11685), 1, - anon_sym_RPAREN, - ACTIONS(11689), 1, - anon_sym_SEMI, - STATE(7943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321027] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11691), 1, - anon_sym_EQ, - ACTIONS(11693), 1, - anon_sym_RPAREN, - STATE(7944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321044] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11695), 1, - anon_sym_SEMI, - ACTIONS(11697), 1, - anon_sym_RBRACE, - STATE(7945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321061] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11511), 1, - anon_sym_then, - STATE(3306), 1, - sym_then_clause, - STATE(7946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321078] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11573), 1, - anon_sym_do, - STATE(3262), 1, - sym_do_clause, - STATE(7947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321095] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11699), 1, - anon_sym_RPAREN, - ACTIONS(11701), 1, - anon_sym_LT_DASH, - STATE(7948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321112] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11703), 1, - anon_sym_then, - STATE(4597), 1, - sym_then_clause, - STATE(7949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321129] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11705), 2, - sym__identifier, - sym__capitalized_identifier, - [321144] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11707), 2, - sym__identifier, - sym__capitalized_identifier, - [321159] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11709), 2, - anon_sym_to, - anon_sym_downto, - [321174] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11711), 1, - sym__identifier, - ACTIONS(11713), 1, - anon_sym_LPAREN, - STATE(7953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321191] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11715), 2, - sym__identifier, - sym__capitalized_identifier, - [321206] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11717), 1, - anon_sym_RPAREN, - ACTIONS(11719), 1, - anon_sym_LT_DASH, - STATE(7955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321223] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11721), 1, - anon_sym_COLON_GT, - ACTIONS(11723), 1, - anon_sym_RPAREN, - STATE(7956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321240] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11573), 1, - anon_sym_do, - STATE(3271), 1, - sym_do_clause, - STATE(7957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321257] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11673), 1, - anon_sym_then, - STATE(3933), 1, - sym_then_clause, - STATE(7958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321274] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11059), 1, - anon_sym_EQ, - ACTIONS(11725), 1, - anon_sym_COLON_GT, - STATE(7959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321291] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11727), 1, - sym__identifier, - STATE(7960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321308] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11729), 1, - anon_sym_then, - STATE(3224), 1, - sym_then_clause, - STATE(7961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321325] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11731), 1, - anon_sym_then, - STATE(4601), 1, - sym_then_clause, - STATE(7962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321342] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11733), 1, - anon_sym_then, - STATE(3283), 1, - sym_then_clause, - STATE(7963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321359] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11735), 2, - anon_sym_to, - anon_sym_downto, - [321374] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11461), 1, - anon_sym_then, - STATE(4504), 1, - sym_then_clause, - STATE(7965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321391] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11737), 1, - anon_sym_do, - STATE(4333), 1, - sym_do_clause, - STATE(7966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321408] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11629), 1, - anon_sym_then, - STATE(3899), 1, - sym_then_clause, - STATE(7967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321425] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11739), 1, - anon_sym_RPAREN, - ACTIONS(11741), 1, - anon_sym_SEMI, - STATE(7968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321442] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11733), 1, - anon_sym_then, - STATE(3286), 1, - sym_then_clause, - STATE(7969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321459] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11743), 1, - anon_sym_RPAREN, - ACTIONS(11745), 1, - anon_sym_LT_DASH, - STATE(7970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321476] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11747), 1, - anon_sym_SEMI, - ACTIONS(11749), 1, - anon_sym_RBRACE, - STATE(7971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321493] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9268), 1, - anon_sym_as, - ACTIONS(11751), 1, - anon_sym_DASH_GT, - STATE(7972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321510] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11753), 1, - sym__identifier, - STATE(7973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321527] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(11755), 1, - anon_sym_DASH_GT, - STATE(7974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321544] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11757), 2, - anon_sym_SEMI, - anon_sym_GT, - [321559] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11759), 1, - anon_sym_RPAREN, - ACTIONS(11761), 1, - anon_sym_LT_DASH, - STATE(7976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321576] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11749), 1, - anon_sym_RBRACK, - ACTIONS(11763), 1, - anon_sym_SEMI, - STATE(7977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321593] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11749), 1, - anon_sym_RPAREN, - ACTIONS(11765), 1, - anon_sym_SEMI, - STATE(7978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321610] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11767), 1, - anon_sym_COLON_GT, - ACTIONS(11769), 1, - anon_sym_RPAREN, - STATE(7979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321627] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11739), 1, - anon_sym_RBRACK, - ACTIONS(11771), 1, - anon_sym_SEMI, - STATE(7980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321644] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11739), 1, - anon_sym_RBRACE, - ACTIONS(11773), 1, - anon_sym_SEMI, - STATE(7981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321661] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11775), 1, - anon_sym_RPAREN, - ACTIONS(11777), 1, - anon_sym_LT_DASH, - STATE(7982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321678] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11559), 1, - anon_sym_do, - STATE(3243), 1, - sym_do_clause, - STATE(7983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321695] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11737), 1, - anon_sym_do, - STATE(4342), 1, - sym_do_clause, - STATE(7984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321712] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11779), 1, - anon_sym_DOT, - STATE(7985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321729] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11781), 2, - sym__identifier, - sym__capitalized_identifier, - [321744] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11783), 1, - sym__identifier, - STATE(7987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321761] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11785), 1, - anon_sym_SEMI, - ACTIONS(11787), 1, - anon_sym_RBRACE, - STATE(7988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321778] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11789), 1, - anon_sym_then, - STATE(3338), 1, - sym_then_clause, - STATE(7989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321795] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(11791), 1, - anon_sym_DASH_GT, - STATE(7990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321812] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11793), 1, - anon_sym_RPAREN, - ACTIONS(11795), 1, - anon_sym_COLON_COLON, - STATE(7991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321829] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11797), 1, - anon_sym_SEMI, - ACTIONS(11799), 1, - anon_sym_RBRACE, - STATE(7992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321846] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11801), 2, - sym__identifier, - sym__capitalized_identifier, - [321861] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9825), 1, - sym__identifier, - STATE(6945), 1, - aux_sym__abstract_type_repeat1, - STATE(7994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321878] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9290), 1, - anon_sym_RBRACE, - ACTIONS(11803), 1, - anon_sym_SEMI, - STATE(7995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321895] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(7996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11805), 2, - sym__identifier, - sym__capitalized_identifier, - [321910] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11559), 1, - anon_sym_do, - STATE(3248), 1, - sym_do_clause, - STATE(7997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321927] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11807), 1, - anon_sym_EQ, - ACTIONS(11809), 1, - anon_sym_RPAREN, - STATE(7998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321944] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11811), 1, - sym__identifier, - STATE(7999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321961] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11813), 1, - sym__identifier, - STATE(8000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321978] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11731), 1, - anon_sym_then, - STATE(4579), 1, - sym_then_clause, - STATE(8001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [321995] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11815), 1, - anon_sym_SEMI, - ACTIONS(11817), 1, - anon_sym_RBRACE, - STATE(8002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322012] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4332), 1, - anon_sym_COLON_GT, - ACTIONS(4334), 1, - anon_sym_EQ, - STATE(8003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11817), 1, - anon_sym_RBRACK, - ACTIONS(11819), 1, - anon_sym_SEMI, - STATE(8004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322046] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8005), 1, - sym_attribute, - STATE(9650), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322063] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11821), 1, - anon_sym_then, - STATE(4744), 1, - sym_then_clause, - STATE(8006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322080] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8224), 1, - sym__capitalized_identifier, - ACTIONS(11823), 1, - anon_sym_LPAREN, - STATE(8007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322097] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11817), 1, - anon_sym_RPAREN, - ACTIONS(11825), 1, - anon_sym_SEMI, - STATE(8008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322114] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11827), 1, - sym__identifier, - STATE(8009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322131] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11829), 1, - anon_sym_RPAREN, - ACTIONS(11831), 1, - anon_sym_LT_DASH, - STATE(8010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322148] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11833), 1, - anon_sym_DOT, - STATE(8011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322165] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11835), 1, - sym__identifier, - ACTIONS(11837), 1, - anon_sym_LBRACK, - STATE(8012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322182] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11839), 1, - anon_sym_RPAREN, - ACTIONS(11841), 1, - anon_sym_LT_DASH, - STATE(8013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322199] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11675), 1, - anon_sym_do, - STATE(3235), 1, - sym_do_clause, - STATE(8014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322216] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11843), 1, - anon_sym_DOT, - STATE(8015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322233] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11845), 1, - sym__identifier, - ACTIONS(11847), 1, - anon_sym_LPAREN, - STATE(8016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322250] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11849), 1, - sym__identifier, - STATE(8017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322267] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11851), 2, - sym__identifier, - sym__capitalized_identifier, - [322282] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11853), 1, - anon_sym_COLON_GT, - ACTIONS(11855), 1, - anon_sym_RPAREN, - STATE(8019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322299] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11857), 1, - sym__identifier, - STATE(8020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322316] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11859), 1, - anon_sym_COLON_GT, - ACTIONS(11861), 1, - anon_sym_RPAREN, - STATE(8021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322333] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9274), 1, - anon_sym_RBRACE, - ACTIONS(11863), 1, - anon_sym_SEMI, - STATE(8022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322350] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11865), 1, - anon_sym_DOT, - STATE(8023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322367] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11867), 1, - sym__identifier, - STATE(8024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322384] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11869), 1, - anon_sym_COLON_GT, - ACTIONS(11871), 1, - anon_sym_RPAREN, - STATE(8025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322401] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - STATE(8026), 1, - sym_attribute, - STATE(9538), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322418] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11873), 2, - sym__identifier, - sym__capitalized_identifier, - [322433] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11875), 1, - sym__identifier, - ACTIONS(11877), 1, - anon_sym_LPAREN, - STATE(8028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322450] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11879), 2, - anon_sym__, - sym__capitalized_identifier, - [322465] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11881), 1, - sym__identifier, - STATE(8030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322482] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11883), 1, - anon_sym_RPAREN, - ACTIONS(11885), 1, - anon_sym_LT_DASH, - STATE(8031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322499] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11887), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [322514] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11889), 1, - sym__identifier, - STATE(8033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322531] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - STATE(4712), 1, - sym_extended_module_path, - STATE(8034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322548] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11021), 1, - anon_sym_EQ, - ACTIONS(11891), 1, - anon_sym_COLON_GT, - STATE(8035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322565] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11893), 1, - anon_sym_SEMI, - ACTIONS(11895), 1, - anon_sym_RBRACE, - STATE(8036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322582] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11897), 1, - anon_sym_RPAREN, - ACTIONS(11899), 1, - anon_sym_SEMI, - STATE(8037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322599] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11897), 1, - anon_sym_RBRACK, - ACTIONS(11901), 1, - anon_sym_SEMI, - STATE(8038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322616] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11897), 1, - anon_sym_RBRACE, - ACTIONS(11903), 1, - anon_sym_SEMI, - STATE(8039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322633] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11895), 1, - anon_sym_RBRACK, - ACTIONS(11905), 1, - anon_sym_SEMI, - STATE(8040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322650] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11729), 1, - anon_sym_then, - STATE(3205), 1, - sym_then_clause, - STATE(8041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322667] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11895), 1, - anon_sym_RPAREN, - ACTIONS(11907), 1, - anon_sym_SEMI, - STATE(8042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322684] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10992), 1, - anon_sym_EQ, - ACTIONS(11909), 1, - anon_sym_COLON_GT, - STATE(8043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322701] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11911), 1, - anon_sym_SEMI, - ACTIONS(11913), 1, - anon_sym_RBRACE, - STATE(8044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322718] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11913), 1, - anon_sym_RBRACK, - ACTIONS(11915), 1, - anon_sym_SEMI, - STATE(8045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322735] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11913), 1, - anon_sym_RPAREN, - ACTIONS(11917), 1, - anon_sym_SEMI, - STATE(8046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322752] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(8047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6640), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [322767] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11919), 1, - anon_sym_DOT, - STATE(8048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322784] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(11921), 1, - sym__identifier, - STATE(8049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322801] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - STATE(7593), 1, - sym_extended_module_path, - STATE(8050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322818] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(8051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5896), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [322833] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11923), 2, - anon_sym__, - sym__capitalized_identifier, - [322848] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11925), 1, - anon_sym_DOT, - STATE(8053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322865] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11927), 2, - sym__identifier, - sym__capitalized_identifier, - [322880] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10954), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [322895] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - STATE(6170), 1, - sym_type_variable, - STATE(8056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322912] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5316), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(8057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322929] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11597), 1, - anon_sym_COLON2, - STATE(8058), 1, - sym_attribute, - STATE(8734), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322946] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11929), 1, - sym__identifier, - ACTIONS(11931), 1, - anon_sym_LPAREN, - STATE(8059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322963] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8060), 1, - sym_attribute, - STATE(9165), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322980] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5324), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(8061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [322997] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(11933), 1, - anon_sym_DASH_GT, - STATE(8062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323014] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11935), 2, - sym__identifier, - sym__capitalized_identifier, - [323029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11937), 1, - anon_sym_COLON_GT, - ACTIONS(11939), 1, - anon_sym_RPAREN, - STATE(8064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323046] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11941), 1, - aux_sym_type_variable_token1, - STATE(6170), 1, - sym_type_variable, - STATE(8065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323063] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4342), 1, - anon_sym_COLON_GT, - ACTIONS(4344), 1, - anon_sym_EQ, - STATE(8066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323080] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11943), 1, - anon_sym_RPAREN, - ACTIONS(11945), 1, - anon_sym_LT_DASH, - STATE(8067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323097] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11947), 1, - sym__identifier, - STATE(8068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323114] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3856), 1, - sym__capitalized_identifier, - STATE(7524), 1, - sym_extended_module_path, - STATE(8069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323131] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11821), 1, - anon_sym_then, - STATE(4807), 1, - sym_then_clause, - STATE(8070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323148] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11949), 1, - anon_sym_SEMI, - ACTIONS(11951), 1, - anon_sym_RBRACE, - STATE(8071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323165] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5362), 1, - anon_sym_RPAREN, - ACTIONS(11953), 1, - aux_sym_number_token1, - STATE(8072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323182] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11955), 2, - sym__identifier, - sym__capitalized_identifier, - [323197] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11951), 1, - anon_sym_RBRACK, - ACTIONS(11957), 1, - anon_sym_SEMI, - STATE(8074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323214] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11951), 1, - anon_sym_RPAREN, - ACTIONS(11959), 1, - anon_sym_SEMI, - STATE(8075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323231] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4328), 1, - anon_sym_COLON_GT, - ACTIONS(4330), 1, - anon_sym_EQ, - STATE(8076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323248] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11961), 1, - anon_sym_RPAREN, - ACTIONS(11963), 1, - anon_sym_COLON_COLON, - STATE(8077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323265] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(11965), 1, - aux_sym_quoted_extension_token1, - ACTIONS(11967), 1, - sym__left_quoted_string_delimiter, - STATE(8078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323282] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11969), 1, - sym__identifier, - ACTIONS(11971), 1, - anon_sym_LPAREN, - STATE(8079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323299] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11973), 1, - anon_sym_DOT, - STATE(8080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323316] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11975), 1, - anon_sym_RPAREN, - ACTIONS(11977), 1, - anon_sym_LT_DASH, - STATE(8081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323333] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11789), 1, - anon_sym_then, - STATE(3384), 1, - sym_then_clause, - STATE(8082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323350] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11979), 1, - anon_sym_RPAREN, - ACTIONS(11981), 1, - anon_sym_LT_DASH, - STATE(8083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323367] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8050), 1, - anon_sym_COLON2, - STATE(8084), 1, - sym_attribute, - STATE(8481), 1, - sym__module_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323384] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11983), 1, - anon_sym_DOT, - STATE(8085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323401] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11985), 2, - anon_sym_to, - anon_sym_downto, - [323416] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11601), 1, - anon_sym_then, - STATE(3284), 1, - sym_then_clause, - STATE(8087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323433] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11987), 2, - anon_sym_to, - anon_sym_downto, - [323448] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(11989), 1, - anon_sym_DOT, - STATE(8089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323465] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(11991), 1, - sym__identifier, - STATE(8090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323482] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11993), 1, - anon_sym_RPAREN, - ACTIONS(11995), 1, - anon_sym_LT_DASH, - STATE(8091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323499] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11737), 1, - anon_sym_do, - STATE(4310), 1, - sym_do_clause, - STATE(8092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323516] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(11997), 2, - sym__identifier, - sym__capitalized_identifier, - [323531] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11999), 1, - anon_sym_RPAREN, - ACTIONS(12001), 1, - anon_sym_LT_DASH, - STATE(8094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323548] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12003), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12005), 1, - sym__left_quoted_string_delimiter, - STATE(8095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323565] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12007), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12009), 1, - sym__left_quoted_string_delimiter, - STATE(8096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323582] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12011), 1, - anon_sym_SEMI, - ACTIONS(12013), 1, - anon_sym_RBRACE, - STATE(8097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323599] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12013), 1, - anon_sym_RBRACK, - ACTIONS(12015), 1, - anon_sym_SEMI, - STATE(8098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323616] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(12017), 1, - anon_sym_DASH_GT, - STATE(8099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323633] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12013), 1, - anon_sym_RPAREN, - ACTIONS(12019), 1, - anon_sym_SEMI, - STATE(8100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323650] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5220), 1, - anon_sym_RPAREN, - ACTIONS(5486), 1, - anon_sym_COLON_COLON, - STATE(8101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323667] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10278), 1, - anon_sym_EQ, - ACTIONS(12021), 1, - anon_sym_COLON_GT, - STATE(8102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323684] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5268), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(8103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323701] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12023), 1, - sym__identifier, - STATE(8104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323718] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12025), 1, - anon_sym_COLON_GT, - ACTIONS(12027), 1, - anon_sym_RPAREN, - STATE(8105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323735] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12029), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [323750] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9070), 1, - anon_sym_RBRACE, - ACTIONS(12031), 1, - anon_sym_SEMI, - STATE(8107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323767] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11559), 1, - anon_sym_do, - STATE(3232), 1, - sym_do_clause, - STATE(8108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323784] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12033), 1, - anon_sym_DOT, - STATE(8109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323801] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12035), 1, - sym__identifier, - ACTIONS(12037), 1, - sym__capitalized_identifier, - STATE(8110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323818] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12039), 2, - sym__identifier, - sym__capitalized_identifier, - [323833] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12041), 2, - anon_sym_to, - anon_sym_downto, - [323848] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12043), 2, - anon_sym_to, - anon_sym_downto, - [323863] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12045), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12047), 1, - sym__left_quoted_string_delimiter, - STATE(8114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323880] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12049), 1, - sym__identifier, - STATE(8115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323897] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12051), 1, - anon_sym_COLON_GT, - ACTIONS(12053), 1, - anon_sym_RPAREN, - STATE(8116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323914] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12055), 1, - anon_sym_then, - STATE(4009), 1, - sym_then_clause, - STATE(8117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323931] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12057), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12059), 1, - sym__left_quoted_string_delimiter, - STATE(8118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323948] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12061), 1, - anon_sym_COLON_GT, - ACTIONS(12063), 1, - anon_sym_RPAREN, - STATE(8119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323965] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12065), 1, - anon_sym_SEMI, - ACTIONS(12067), 1, - anon_sym_RBRACE, - STATE(8120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323982] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8121), 1, - sym_attribute, - STATE(8767), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [323999] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12069), 2, - sym__identifier, - sym__capitalized_identifier, - [324014] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9128), 1, - anon_sym_RBRACE, - ACTIONS(12071), 1, - anon_sym_SEMI, - STATE(8123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324031] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12073), 1, - anon_sym_LPAREN, - ACTIONS(12075), 1, - sym__capitalized_identifier, - STATE(8124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324048] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12077), 1, - sym__identifier, - STATE(8125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324065] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12079), 1, - anon_sym_RPAREN, - ACTIONS(12081), 1, - anon_sym_LT_DASH, - STATE(8126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324082] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12083), 1, - sym__identifier, - ACTIONS(12085), 1, - anon_sym_LPAREN, - STATE(8127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324099] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12087), 1, - sym__identifier, - ACTIONS(12089), 1, - anon_sym_LBRACK, - STATE(8128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324116] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12091), 1, - anon_sym_SEMI, - ACTIONS(12093), 1, - anon_sym_RBRACE, - STATE(8129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324133] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12095), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12097), 1, - sym__left_quoted_string_delimiter, - STATE(8130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324150] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12099), 1, - anon_sym_RPAREN, - ACTIONS(12101), 1, - anon_sym_LT_DASH, - STATE(8131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324167] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12093), 1, - anon_sym_RBRACK, - ACTIONS(12103), 1, - anon_sym_SEMI, - STATE(8132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324184] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12105), 1, - anon_sym_RPAREN, - ACTIONS(12107), 1, - anon_sym_LT_DASH, - STATE(8133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324201] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12093), 1, - anon_sym_RPAREN, - ACTIONS(12109), 1, - anon_sym_SEMI, - STATE(8134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324218] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12111), 1, - sym__identifier, - STATE(8135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324235] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12113), 1, - anon_sym_COLON_GT, - ACTIONS(12115), 1, - anon_sym_RPAREN, - STATE(8136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324252] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11737), 1, - anon_sym_do, - STATE(4290), 1, - sym_do_clause, - STATE(8137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324269] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12117), 1, - anon_sym_then, - STATE(3322), 1, - sym_then_clause, - STATE(8138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324286] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12119), 1, - sym__identifier, - ACTIONS(12121), 1, - anon_sym_LPAREN, - STATE(8139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324303] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12123), 2, - sym__identifier, - sym__capitalized_identifier, - [324318] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12125), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12127), 1, - sym__left_quoted_string_delimiter, - STATE(8141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324335] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12129), 1, - anon_sym_DOT, - STATE(8142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324352] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12131), 1, - sym__identifier, - STATE(8143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324369] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12133), 1, - anon_sym_RPAREN, - ACTIONS(12135), 1, - anon_sym_LT_DASH, - STATE(8144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324386] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9246), 1, - anon_sym_COLON2, - STATE(7893), 1, - sym__polymorphic_typed, - STATE(8145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324403] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12137), 1, - anon_sym_RPAREN, - ACTIONS(12139), 1, - anon_sym_COLON_COLON, - STATE(8146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324420] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11669), 1, - anon_sym_open, - STATE(8147), 1, - sym_attribute, - STATE(8650), 1, - sym_open_module, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324437] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12141), 1, - anon_sym_EQ, - ACTIONS(12143), 1, - anon_sym_RPAREN, - STATE(8148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324454] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11663), 1, - anon_sym_then, - STATE(4690), 1, - sym_then_clause, - STATE(8149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324471] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12145), 2, - sym__identifier, - sym__capitalized_identifier, - [324486] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12147), 1, - aux_sym_type_variable_token1, - STATE(4146), 1, - sym_type_variable, - STATE(8151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324503] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(8152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6610), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [324518] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12149), 1, - anon_sym_RPAREN, - ACTIONS(12151), 1, - anon_sym_LT_DASH, - STATE(8153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324535] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12055), 1, - anon_sym_then, - STATE(3951), 1, - sym_then_clause, - STATE(8154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324552] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12153), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12155), 1, - sym__left_quoted_string_delimiter, - STATE(8155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324569] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12157), 1, - sym__identifier, - ACTIONS(12159), 1, - anon_sym_LPAREN, - STATE(8156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324586] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12161), 2, - sym__identifier, - sym__capitalized_identifier, - [324601] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12163), 1, - anon_sym_DOT, - STATE(8158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324618] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11703), 1, - anon_sym_then, - STATE(4578), 1, - sym_then_clause, - STATE(8159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324635] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8160), 1, - sym_attribute, - STATE(8605), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324652] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12165), 1, - anon_sym_RPAREN, - ACTIONS(12167), 1, - anon_sym_LT_DASH, - STATE(8161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324669] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12169), 2, - sym__identifier, - sym__capitalized_identifier, - [324684] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12171), 2, - sym__identifier, - sym__capitalized_identifier, - [324699] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12173), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12175), 1, - sym__left_quoted_string_delimiter, - STATE(8164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324716] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12177), 1, - anon_sym_RPAREN, - ACTIONS(12179), 1, - anon_sym_LT_DASH, - STATE(8165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324733] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5450), 2, - anon_sym_DASH_GT, - anon_sym_STAR, - [324748] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12181), 1, - anon_sym_SEMI, - ACTIONS(12183), 1, - anon_sym_RBRACE, - STATE(8167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324765] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12183), 1, - anon_sym_RBRACK, - ACTIONS(12185), 1, - anon_sym_SEMI, - STATE(8168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324782] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12187), 2, - sym__identifier, - sym__capitalized_identifier, - [324797] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12183), 1, - anon_sym_RPAREN, - ACTIONS(12189), 1, - anon_sym_SEMI, - STATE(8170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324814] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(12191), 1, - anon_sym_DASH_GT, - STATE(8171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324831] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12193), 1, - anon_sym_DOT, - STATE(8172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324848] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(5940), 2, - anon_sym_DOT, - aux_sym_type_variable_token1, - [324863] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12195), 1, - anon_sym_DOT, - STATE(8174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324880] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12197), 1, - sym__identifier, - ACTIONS(12199), 1, - anon_sym_LPAREN, - STATE(8175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324897] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12201), 2, - sym__identifier, - sym__capitalized_identifier, - [324912] = 4, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - STATE(8177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(6578), 2, - anon_sym_in, - anon_sym_LBRACK_AT_AT, - [324927] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12203), 1, - sym__identifier, - STATE(8178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324944] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12205), 1, - anon_sym_RPAREN, - ACTIONS(12207), 1, - anon_sym_LT_DASH, - STATE(8179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324961] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12209), 1, - anon_sym_RPAREN, - ACTIONS(12211), 1, - anon_sym_LT_DASH, - STATE(8180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324978] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12213), 1, - anon_sym_DOT, - STATE(8181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [324995] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12215), 1, - anon_sym_COLON_GT, - ACTIONS(12217), 1, - anon_sym_RPAREN, - STATE(8182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325012] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12219), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12221), 1, - sym__left_quoted_string_delimiter, - STATE(8183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11597), 1, - anon_sym_COLON2, - STATE(8184), 1, - sym_attribute, - STATE(9246), 1, - sym__polymorphic_typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325046] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12223), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12225), 1, - sym__left_quoted_string_delimiter, - STATE(8185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325063] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12227), 2, - sym__identifier, - sym__capitalized_identifier, - [325078] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12229), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12231), 1, - sym__left_quoted_string_delimiter, - STATE(8187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325095] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12233), 1, - sym__identifier, - STATE(8188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325112] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10643), 2, - anon_sym_SEMI, - anon_sym_RBRACE, - [325127] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12235), 1, - anon_sym_RPAREN, - ACTIONS(12237), 1, - anon_sym_LT_DASH, - STATE(8190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325144] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4320), 1, - anon_sym_COLON_GT, - ACTIONS(4322), 1, - anon_sym_EQ, - STATE(8191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325161] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9360), 1, - anon_sym_RBRACE, - ACTIONS(12239), 1, - anon_sym_SEMI, - STATE(8192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325178] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12241), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12243), 1, - sym__left_quoted_string_delimiter, - STATE(8193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325195] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8194), 1, - sym_attribute, - STATE(8459), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325212] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12245), 1, - anon_sym_RPAREN, - ACTIONS(12247), 1, - anon_sym_LT_DASH, - STATE(8195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325229] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12249), 1, - anon_sym_DOT, - STATE(8196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325246] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12251), 1, - anon_sym_SEMI, - ACTIONS(12253), 1, - anon_sym_RBRACE, - STATE(8197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325263] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12253), 1, - anon_sym_RBRACK, - ACTIONS(12255), 1, - anon_sym_SEMI, - STATE(8198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325280] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12257), 1, - sym__identifier, - STATE(8199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325297] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12253), 1, - anon_sym_RPAREN, - ACTIONS(12259), 1, - anon_sym_SEMI, - STATE(8200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325314] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12261), 2, - anon_sym__, - sym__capitalized_identifier, - [325329] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12263), 2, - sym__identifier, - sym__capitalized_identifier, - [325344] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5230), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(8203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325361] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12265), 1, - anon_sym_RPAREN, - ACTIONS(12267), 1, - anon_sym_LT_DASH, - STATE(8204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325378] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12269), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12271), 1, - sym__left_quoted_string_delimiter, - STATE(8205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325395] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11639), 1, - anon_sym_COLON2, - STATE(5844), 1, - sym__polymorphic_typed, - STATE(8206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325412] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12273), 2, - sym__identifier, - sym__capitalized_identifier, - [325427] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12275), 1, - sym__identifier, - STATE(8208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325444] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12277), 1, - anon_sym_RPAREN, - ACTIONS(12279), 1, - anon_sym_LT_DASH, - STATE(8209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325461] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12281), 1, - anon_sym_RPAREN, - ACTIONS(12283), 1, - anon_sym_LT_DASH, - STATE(8210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325478] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8086), 1, - sym__capitalized_identifier, - ACTIONS(12285), 1, - anon_sym_LPAREN, - STATE(8211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325495] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12287), 1, - anon_sym_RPAREN, - ACTIONS(12289), 1, - anon_sym_LT_DASH, - STATE(8212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325512] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5270), 1, - anon_sym_RBRACK, - ACTIONS(9455), 1, - anon_sym_PIPE, - STATE(8213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325529] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12291), 2, - anon_sym__, - sym__capitalized_identifier, - [325544] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12293), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12295), 1, - sym__left_quoted_string_delimiter, - STATE(8215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325561] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12297), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12299), 1, - sym__left_quoted_string_delimiter, - STATE(8216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325578] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10535), 1, - anon_sym_EQ, - ACTIONS(12301), 1, - anon_sym_COLON_GT, - STATE(8217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325595] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12303), 2, - sym__identifier, - sym__capitalized_identifier, - [325610] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12305), 1, - anon_sym_RPAREN, - ACTIONS(12307), 1, - anon_sym_SEMI, - STATE(8219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325627] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12305), 1, - anon_sym_RBRACK, - ACTIONS(12309), 1, - anon_sym_SEMI, - STATE(8220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325644] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12305), 1, - anon_sym_RBRACE, - ACTIONS(12311), 1, - anon_sym_SEMI, - STATE(8221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325661] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12313), 1, - anon_sym_DOT, - STATE(8222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325678] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12315), 2, - sym__identifier, - sym__capitalized_identifier, - [325693] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12317), 2, - sym__identifier, - sym__capitalized_identifier, - [325708] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12319), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12321), 1, - sym__left_quoted_string_delimiter, - STATE(8225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325725] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12323), 1, - anon_sym_RPAREN, - ACTIONS(12325), 1, - anon_sym_LT_DASH, - STATE(8226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325742] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12327), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12329), 1, - sym__left_quoted_string_delimiter, - STATE(8227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325759] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12331), 1, - anon_sym_RPAREN, - ACTIONS(12333), 1, - anon_sym_LT_DASH, - STATE(8228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325776] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12335), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12337), 1, - sym__left_quoted_string_delimiter, - STATE(8229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325793] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12339), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12341), 1, - sym__left_quoted_string_delimiter, - STATE(8230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325810] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12343), 1, - anon_sym_DOT, - STATE(8231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325827] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12345), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12347), 1, - sym__left_quoted_string_delimiter, - STATE(8232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325844] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12349), 1, - anon_sym_DOT, - STATE(8233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325861] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8234), 1, - sym_attribute, - STATE(8381), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325878] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12351), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12353), 1, - sym__left_quoted_string_delimiter, - STATE(8235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325895] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12355), 1, - anon_sym_DOT, - STATE(8236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325912] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12357), 2, - sym__identifier, - sym__capitalized_identifier, - [325927] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8238), 1, - sym_attribute, - STATE(8827), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325944] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12359), 1, - anon_sym_RPAREN, - ACTIONS(12361), 1, - anon_sym_LT_DASH, - STATE(8239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325961] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12363), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12365), 1, - sym__left_quoted_string_delimiter, - STATE(8240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325978] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3858), 1, - aux_sym_type_variable_token1, - STATE(4146), 1, - sym_type_variable, - STATE(8241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [325995] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12367), 1, - anon_sym_RPAREN, - ACTIONS(12369), 1, - anon_sym_LT_DASH, - STATE(8242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326012] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12371), 1, - sym__capitalized_identifier, - STATE(6350), 1, - sym_extended_module_path, - STATE(8243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326029] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12373), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12375), 1, - sym__left_quoted_string_delimiter, - STATE(8244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326046] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12377), 1, - anon_sym_RPAREN, - ACTIONS(12379), 1, - anon_sym_LT_DASH, - STATE(8245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326063] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12381), 1, - anon_sym_SEMI, - ACTIONS(12383), 1, - anon_sym_RBRACE, - STATE(8246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326080] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12385), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12387), 1, - sym__left_quoted_string_delimiter, - STATE(8247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326097] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12383), 1, - anon_sym_RBRACK, - ACTIONS(12389), 1, - anon_sym_SEMI, - STATE(8248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326114] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12391), 1, - anon_sym_EQ, - ACTIONS(12393), 1, - anon_sym_RPAREN, - STATE(8249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326131] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12395), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12397), 1, - sym__left_quoted_string_delimiter, - STATE(8250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326148] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12383), 1, - anon_sym_RPAREN, - ACTIONS(12399), 1, - anon_sym_SEMI, - STATE(8251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326165] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12401), 2, - anon_sym__, - sym__capitalized_identifier, - [326180] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12403), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12405), 1, - sym__left_quoted_string_delimiter, - STATE(8253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326197] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12407), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12409), 1, - sym__left_quoted_string_delimiter, - STATE(8254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326214] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12411), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12413), 1, - sym__left_quoted_string_delimiter, - STATE(8255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326231] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12415), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12417), 1, - sym__left_quoted_string_delimiter, - STATE(8256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326248] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12419), 1, - sym__identifier, - ACTIONS(12421), 1, - sym__capitalized_identifier, - STATE(8257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326265] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12423), 2, - sym__identifier, - sym__capitalized_identifier, - [326280] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12425), 1, - anon_sym_COLON_GT, - ACTIONS(12427), 1, - anon_sym_RPAREN, - STATE(8259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326297] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12429), 1, - sym__identifier, - ACTIONS(12431), 1, - anon_sym_LBRACK, - STATE(8260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326314] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12433), 1, - sym__identifier, - STATE(8261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326331] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12435), 1, - anon_sym_RPAREN, - ACTIONS(12437), 1, - anon_sym_LT_DASH, - STATE(8262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326348] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8263), 1, - sym_attribute, - STATE(8821), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326365] = 5, - ACTIONS(3), 1, - anon_sym_LBRACK_AT, - ACTIONS(12439), 1, - aux_sym_quoted_extension_token1, - ACTIONS(12441), 1, - sym__left_quoted_string_delimiter, - STATE(8264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326382] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12443), 1, - anon_sym_RPAREN, - ACTIONS(12445), 1, - anon_sym_LT_DASH, - STATE(8265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326399] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12447), 1, - sym__identifier, - STATE(8266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326416] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12449), 1, - sym__identifier, - STATE(8267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326433] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12451), 1, - anon_sym_EQ, - ACTIONS(12453), 1, - anon_sym_RPAREN, - STATE(8268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326450] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12455), 1, - anon_sym_DOT, - STATE(8269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326467] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9108), 1, - anon_sym_RBRACE, - ACTIONS(12457), 1, - anon_sym_SEMI, - STATE(8270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326484] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12459), 1, - anon_sym_RPAREN, - ACTIONS(12461), 1, - anon_sym_LT_DASH, - STATE(8271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326501] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12463), 1, - anon_sym_SEMI, - ACTIONS(12465), 1, - anon_sym_RBRACE, - STATE(8272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326518] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12467), 2, - sym__identifier, - sym__capitalized_identifier, - [326533] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12469), 1, - anon_sym_RPAREN, - ACTIONS(12471), 1, - anon_sym_LT_DASH, - STATE(8274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326550] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12117), 1, - anon_sym_then, - STATE(3325), 1, - sym_then_clause, - STATE(8275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326567] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12473), 2, - sym__identifier, - sym__capitalized_identifier, - [326582] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12475), 1, - sym__identifier, - STATE(8277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326599] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12477), 1, - anon_sym_RPAREN, - ACTIONS(12479), 1, - anon_sym_LT_DASH, - STATE(8278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326616] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12481), 1, - anon_sym_RPAREN, - ACTIONS(12483), 1, - anon_sym_LT_DASH, - STATE(8279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326633] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12485), 1, - anon_sym_COLON_GT, - ACTIONS(12487), 1, - anon_sym_RPAREN, - STATE(8280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326650] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12489), 1, - anon_sym_DOT, - STATE(8281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326667] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12491), 1, - anon_sym_then, - STATE(3886), 1, - sym_then_clause, - STATE(8282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326684] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12493), 1, - sym__identifier, - STATE(8283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326701] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - ACTIONS(12495), 1, - sym__identifier, - STATE(8284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326718] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12497), 1, - anon_sym_RPAREN, - ACTIONS(12499), 1, - anon_sym_SEMI, - STATE(8285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326735] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12497), 1, - anon_sym_RBRACK, - ACTIONS(12501), 1, - anon_sym_SEMI, - STATE(8286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326752] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12503), 1, - anon_sym_COLON_GT, - ACTIONS(12505), 1, - anon_sym_RPAREN, - STATE(8287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326769] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(10333), 2, - anon_sym_SEMI, - anon_sym_GT_RBRACE, - [326784] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12497), 1, - anon_sym_RBRACE, - ACTIONS(12507), 1, - anon_sym_SEMI, - STATE(8289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326801] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(12509), 1, - anon_sym_DASH_GT, - STATE(8290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326818] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12511), 1, - anon_sym_SEMI, - ACTIONS(12513), 1, - anon_sym_RBRACE, - STATE(8291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326835] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11675), 1, - anon_sym_do, - STATE(3219), 1, - sym_do_clause, - STATE(8292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326852] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4316), 1, - anon_sym_COLON_GT, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(8293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326869] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12515), 2, - anon_sym_RBRACK, - anon_sym_DASH_GT, - [326884] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - ACTIONS(12517), 1, - sym__identifier, - STATE(8295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326901] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12519), 1, - anon_sym_COLON_GT, - ACTIONS(12521), 1, - anon_sym_RPAREN, - STATE(8296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326918] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12523), 2, - sym__identifier, - sym__capitalized_identifier, - [326933] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12525), 2, - sym__identifier, - sym__capitalized_identifier, - [326948] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12527), 1, - sym__identifier, - ACTIONS(12529), 1, - anon_sym_LPAREN, - STATE(8299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326965] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11675), 1, - anon_sym_do, - STATE(3222), 1, - sym_do_clause, - STATE(8300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [326982] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12531), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [326997] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12533), 2, - anon_sym_EQ, - anon_sym_COLON_EQ, - [327012] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6008), 1, - anon_sym_LPAREN, - ACTIONS(12535), 1, - anon_sym_DOT, - STATE(8303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327029] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12537), 1, - anon_sym_RPAREN, - ACTIONS(12539), 1, - anon_sym_LT_DASH, - STATE(8304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327046] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12541), 1, - anon_sym_RPAREN, - ACTIONS(12543), 1, - anon_sym_LT_DASH, - STATE(8305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327063] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - ACTIONS(12545), 1, - anon_sym_DASH_GT, - STATE(8306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327080] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12547), 2, - sym__identifier, - sym__capitalized_identifier, - [327095] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12549), 2, - sym__identifier, - sym__capitalized_identifier, - [327110] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12491), 1, - anon_sym_then, - STATE(3908), 1, - sym_then_clause, - STATE(8309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327127] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12551), 2, - anon_sym_to, - anon_sym_downto, - [327142] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12553), 1, - anon_sym_RPAREN, - ACTIONS(12555), 1, - anon_sym_LT_DASH, - STATE(8311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327159] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9891), 1, - anon_sym_COLON2, - STATE(8312), 1, - sym_attribute, - STATE(8579), 1, - sym__typed, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327176] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - STATE(8313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - ACTIONS(12557), 2, - anon_sym__, - sym__capitalized_identifier, - [327191] = 5, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12559), 1, - anon_sym_RPAREN, - ACTIONS(12561), 1, - anon_sym_LT_DASH, - STATE(8314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327208] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12563), 1, - sym__identifier, - STATE(8315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327222] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12565), 1, - sym__left_quoted_string_delimiter, - STATE(8316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327236] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12567), 1, - anon_sym_with, - STATE(8317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327250] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12569), 1, - anon_sym_with, - STATE(8318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327264] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12571), 1, - anon_sym_DOT, - STATE(8319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327278] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12573), 1, - anon_sym_RBRACE, - STATE(8320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327292] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12575), 1, - sym__right_quoted_string_delimiter, - STATE(8321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327306] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12577), 1, - sym__identifier, - STATE(8322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327320] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12579), 1, - anon_sym_DQUOTE, - STATE(8323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327334] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12581), 1, - anon_sym_SQUOTE, - STATE(8324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327348] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9965), 1, - anon_sym_end, - STATE(8325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327362] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12583), 1, - anon_sym_STAR, - STATE(8326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327376] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12585), 1, - anon_sym_in, - STATE(8327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327390] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12587), 1, - anon_sym_with, - STATE(8328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327404] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12589), 1, - anon_sym_with, - STATE(8329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327418] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10288), 1, - anon_sym_GT_RBRACE, - STATE(8330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327432] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12591), 1, - anon_sym_DASH_GT, - STATE(8331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327446] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12593), 1, - anon_sym_DOT, - STATE(8332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327460] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12595), 1, - anon_sym_DASH_GT, - STATE(8333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327474] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9314), 1, - anon_sym_RPAREN, - STATE(8334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327488] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12597), 1, - anon_sym_in, - STATE(8335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327502] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12599), 1, - anon_sym_RPAREN, - STATE(8336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327516] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12601), 1, - anon_sym_PIPE, - STATE(8337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327530] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12603), 1, - anon_sym_in, - STATE(8338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327544] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12605), 1, - anon_sym_RPAREN, - STATE(8339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327558] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8376), 1, - sym__right_quoted_string_delimiter, - STATE(8340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327572] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12607), 1, - anon_sym_in, - STATE(8341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327586] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12609), 1, - anon_sym_in, - STATE(8342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327600] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12611), 1, - anon_sym_DASH_GT, - STATE(8343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327614] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12613), 1, - anon_sym_in, - STATE(8344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327628] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12615), 1, - anon_sym_RPAREN, - STATE(8345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327642] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12617), 1, - sym__right_quoted_string_delimiter, - STATE(8346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327656] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12619), 1, - anon_sym_RPAREN, - STATE(8347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327670] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12619), 1, - anon_sym_RBRACK, - STATE(8348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327684] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12619), 1, - anon_sym_RBRACE, - STATE(8349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327698] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12621), 1, - anon_sym_DASH_GT, - STATE(8350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327712] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12623), 1, - aux_sym_number_token1, - STATE(8351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327726] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12625), 1, - anon_sym_DASH_GT, - STATE(8352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327740] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12627), 1, - anon_sym_DASH_GT, - STATE(8353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327754] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12629), 1, - anon_sym_RBRACE, - STATE(8354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327768] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12631), 1, - anon_sym_DASH_GT, - STATE(8355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327782] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11549), 1, - anon_sym_RPAREN, - STATE(8356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327796] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4382), 1, - anon_sym_DASH_GT, - STATE(8357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327810] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12633), 1, - anon_sym_DASH_GT, - STATE(8358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327824] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12635), 1, - anon_sym_DOT, - STATE(8359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327838] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12637), 1, - anon_sym_RPAREN, - STATE(8360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327852] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12639), 1, - anon_sym_GT, - STATE(8361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327866] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12641), 1, - anon_sym_RBRACE, - STATE(8362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327880] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8324), 1, - sym__right_quoted_string_delimiter, - STATE(8363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327894] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12643), 1, - anon_sym_end, - STATE(8364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327908] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12645), 1, - anon_sym_RBRACE, - STATE(8365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327922] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12647), 1, - anon_sym_DOT, - STATE(8366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327936] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6143), 1, - anon_sym_GT, - STATE(8367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327950] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12649), 1, - anon_sym_RBRACE, - STATE(8368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327964] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8320), 1, - sym__right_quoted_string_delimiter, - STATE(8369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327978] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12651), 1, - anon_sym_RBRACK, - STATE(8370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [327992] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12653), 1, - anon_sym_with, - STATE(8371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328006] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12655), 1, - anon_sym_DASH_GT, - STATE(8372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328020] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12657), 1, - anon_sym_RPAREN, - STATE(8373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328034] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12659), 1, - anon_sym_with, - STATE(8374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328048] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12661), 1, - anon_sym_DOT, - STATE(8375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328062] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12663), 1, - anon_sym_RPAREN, - STATE(8376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328076] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12665), 1, - anon_sym_RBRACE, - STATE(8377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328090] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12667), 1, - anon_sym_RBRACK, - STATE(8378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328104] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12669), 1, - anon_sym_RPAREN, - STATE(8379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328118] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12671), 1, - sym__right_quoted_string_delimiter, - STATE(8380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328132] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12673), 1, - anon_sym_RPAREN, - STATE(8381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328146] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12675), 1, - anon_sym_RBRACE, - STATE(8382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328160] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12677), 1, - anon_sym_DASH_GT, - STATE(8383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328174] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8212), 1, - anon_sym_RPAREN, - STATE(8384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328188] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12679), 1, - anon_sym_in, - STATE(8385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328202] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12681), 1, - anon_sym_STAR, - STATE(8386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328216] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12683), 1, - anon_sym_with, - STATE(8387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328230] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12685), 1, - anon_sym_DASH_GT, - STATE(8388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328244] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12687), 1, - anon_sym_with, - STATE(8389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328258] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12689), 1, - anon_sym_DASH_GT, - STATE(8390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328272] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12691), 1, - anon_sym_RBRACE, - STATE(8391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328286] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12691), 1, - anon_sym_RBRACK, - STATE(8392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328300] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12691), 1, - anon_sym_RPAREN, - STATE(8393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328314] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12693), 1, - anon_sym_DOT, - STATE(8394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328328] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12695), 1, - sym__right_quoted_string_delimiter, - STATE(8395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328342] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12697), 1, - anon_sym_RPAREN, - STATE(8396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328356] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12699), 1, - anon_sym_RPAREN, - STATE(8397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328370] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12701), 1, - anon_sym_RBRACK, - STATE(8398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328384] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12703), 1, - anon_sym_RBRACE, - STATE(8399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328398] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9248), 1, - anon_sym_RPAREN, - STATE(8400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328412] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12705), 1, - anon_sym_RPAREN, - STATE(8401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328426] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12707), 1, - anon_sym_DASH_GT, - STATE(8402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328440] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12709), 1, - anon_sym_RBRACE, - STATE(8403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328454] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12711), 1, - anon_sym_DASH_GT, - STATE(8404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328468] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8316), 1, - sym__right_quoted_string_delimiter, - STATE(8405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328482] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8500), 1, - sym__right_quoted_string_delimiter, - STATE(8406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328496] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12713), 1, - anon_sym_RPAREN, - STATE(8407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328510] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12715), 1, - anon_sym_RBRACE, - STATE(8408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328524] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12717), 1, - anon_sym_RPAREN, - STATE(8409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328538] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12719), 1, - anon_sym_RPAREN, - STATE(8410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328552] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12721), 1, - anon_sym_RBRACK, - STATE(8411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328566] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12723), 1, - anon_sym_RPAREN, - STATE(8412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328580] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12725), 1, - anon_sym_in, - STATE(8413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328594] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12727), 1, - anon_sym_RBRACE, - STATE(8414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328608] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12729), 1, - anon_sym_RPAREN, - STATE(8415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328622] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12731), 1, - anon_sym_RPAREN, - STATE(8416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328636] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12733), 1, - sym__right_quoted_string_delimiter, - STATE(8417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328650] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12735), 1, - anon_sym_RPAREN, - STATE(8418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328664] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12735), 1, - anon_sym_RBRACK, - STATE(8419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328678] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12735), 1, - anon_sym_RBRACE, - STATE(8420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328692] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12737), 1, - anon_sym_RPAREN, - STATE(8421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328706] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12739), 1, - anon_sym_RBRACK, - STATE(8422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328720] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9364), 1, - anon_sym_RPAREN, - STATE(8423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328734] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12741), 1, - anon_sym_RBRACK, - STATE(8424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328748] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12743), 1, - anon_sym_RPAREN, - STATE(8425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328762] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12745), 1, - anon_sym_RBRACE, - STATE(8426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328776] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12747), 1, - anon_sym_RBRACE, - STATE(8427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328790] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12749), 1, - anon_sym_DASH_GT, - STATE(8428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328804] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12751), 1, - anon_sym_DOT, - STATE(8429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328818] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12753), 1, - anon_sym_DASH_GT, - STATE(8430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328832] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2219), 1, - anon_sym_end, - STATE(8431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328846] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12755), 1, - anon_sym_RBRACK, - STATE(8432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328860] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8959), 1, - anon_sym_GT, - STATE(8433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328874] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12757), 1, - anon_sym_with, - STATE(8434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328888] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12759), 1, - anon_sym_with, - STATE(8435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328902] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12761), 1, - anon_sym_DOT, - STATE(8436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328916] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8951), 1, - anon_sym_GT, - STATE(8437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328930] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12763), 1, - anon_sym_RPAREN, - STATE(8438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328944] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12765), 1, - anon_sym_RPAREN, - STATE(8439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328958] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12767), 1, - anon_sym_RPAREN, - STATE(8440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328972] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12769), 1, - sym__right_quoted_string_delimiter, - STATE(8441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [328986] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12771), 1, - anon_sym_DOT, - STATE(8442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329000] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12773), 1, - anon_sym_RBRACE, - STATE(8443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329014] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12775), 1, - anon_sym_RPAREN, - STATE(8444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329028] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12777), 1, - anon_sym_STAR, - STATE(8445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329042] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12779), 1, - anon_sym_with, - STATE(8446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329056] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12781), 1, - anon_sym_with, - STATE(8447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329070] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12783), 1, - anon_sym_with, - STATE(8448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329084] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8164), 1, - anon_sym_RPAREN, - STATE(8449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329098] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12785), 1, - anon_sym_with, - STATE(8450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329112] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12787), 1, - anon_sym_in, - STATE(8451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329126] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12789), 1, - anon_sym_DOT, - STATE(8452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329140] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12791), 1, - anon_sym_STAR, - STATE(8453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329154] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12793), 1, - anon_sym_RPAREN, - STATE(8454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329168] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12795), 1, - anon_sym_done, - STATE(8455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329182] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12797), 1, - anon_sym_RBRACE, - STATE(8456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329196] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12799), 1, - anon_sym_RBRACK, - STATE(8457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329210] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9208), 1, - anon_sym_RPAREN, - STATE(8458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329224] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12801), 1, - anon_sym_RPAREN, - STATE(8459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329238] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12803), 1, - anon_sym_end, - STATE(8460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329252] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8464), 1, - sym__right_quoted_string_delimiter, - STATE(8461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329266] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12805), 1, - sym__right_quoted_string_delimiter, - STATE(8462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329280] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12807), 1, - anon_sym_RPAREN, - STATE(8463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329294] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12809), 1, - anon_sym_RBRACK, - STATE(8464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329308] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12811), 1, - anon_sym_RBRACE, - STATE(8465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329322] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12813), 1, - anon_sym_DASH_GT, - STATE(8466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329336] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12815), 1, - anon_sym_RPAREN, - STATE(8467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329350] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12817), 1, - anon_sym_RPAREN, - STATE(8468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329364] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12819), 1, - sym__right_quoted_string_delimiter, - STATE(8469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329378] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12821), 1, - anon_sym_RPAREN, - STATE(8470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329392] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12821), 1, - anon_sym_RBRACK, - STATE(8471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329406] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12821), 1, - anon_sym_RBRACE, - STATE(8472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329420] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12823), 1, - anon_sym_COLON2, - STATE(8473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329434] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9276), 1, - anon_sym_RPAREN, - STATE(8474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329448] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12825), 1, - anon_sym_RPAREN, - STATE(8475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329462] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4462), 1, - anon_sym_DASH_GT, - STATE(8476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329476] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12827), 1, - anon_sym_DOT, - STATE(8477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329490] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9072), 1, - anon_sym_DASH_GT, - STATE(8478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329504] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12829), 1, - anon_sym_DOT, - STATE(8479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329518] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12831), 1, - anon_sym_with, - STATE(8480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329532] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12833), 1, - anon_sym_RPAREN, - STATE(8481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329546] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12835), 1, - anon_sym_RBRACE, - STATE(8482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329560] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12837), 1, - anon_sym_with, - STATE(8483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329574] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12839), 1, - anon_sym_with, - STATE(8484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329588] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12841), 1, - anon_sym_with, - STATE(8485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329602] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12843), 1, - anon_sym_DOT, - STATE(8486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329616] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12845), 1, - anon_sym_DOT, - STATE(8487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329630] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12847), 1, - anon_sym_RPAREN, - STATE(8488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329644] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12849), 1, - anon_sym_RPAREN, - STATE(8489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329658] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12851), 1, - sym__right_quoted_string_delimiter, - STATE(8490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329672] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12853), 1, - anon_sym_RPAREN, - STATE(8491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329686] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12855), 1, - anon_sym_DQUOTE, - STATE(8492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329700] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12857), 1, - anon_sym_with, - STATE(8493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329714] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12859), 1, - anon_sym_with, - STATE(8494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329728] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12861), 1, - anon_sym_SQUOTE, - STATE(8495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329742] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10036), 1, - anon_sym_end, - STATE(8496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329756] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2253), 1, - anon_sym_end, - STATE(8497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329770] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12863), 1, - anon_sym_in, - STATE(8498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329784] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12865), 1, - anon_sym_DOT, - STATE(8499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329798] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12867), 1, - anon_sym_DOT, - STATE(8500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329812] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12869), 1, - anon_sym_in, - STATE(8501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329826] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12871), 1, - anon_sym_in, - STATE(8502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329840] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12873), 1, - anon_sym_DOT, - STATE(8503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329854] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9140), 1, - anon_sym_RPAREN, - STATE(8504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329868] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12875), 1, - anon_sym_RPAREN, - STATE(8505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329882] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8400), 1, - sym__right_quoted_string_delimiter, - STATE(8506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329896] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10677), 1, - anon_sym_GT_RBRACE, - STATE(8507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329910] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1865), 1, - anon_sym_RPAREN, - STATE(8508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329924] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12877), 1, - anon_sym_DOT_DOT, - STATE(8509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329938] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12879), 1, - anon_sym_DOT_DOT, - STATE(8510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329952] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12881), 1, - anon_sym_DOT_DOT, - STATE(8511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329966] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12883), 1, - anon_sym_RPAREN, - STATE(8512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329980] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12885), 1, - sym__right_quoted_string_delimiter, - STATE(8513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [329994] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12887), 1, - anon_sym_RPAREN, - STATE(8514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330008] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12887), 1, - anon_sym_RBRACK, - STATE(8515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330022] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12887), 1, - anon_sym_RBRACE, - STATE(8516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330036] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12889), 1, - anon_sym_in, - STATE(8517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330050] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12891), 1, - sym__identifier, - STATE(8518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330064] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12893), 1, - anon_sym_RPAREN, - STATE(8519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330078] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1867), 1, - anon_sym_RPAREN, - STATE(8520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330092] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10721), 1, - anon_sym_GT_RBRACE, - STATE(8521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330106] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12895), 1, - anon_sym_RPAREN, - STATE(8522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330120] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12897), 1, - anon_sym_DOT, - STATE(8523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330134] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12899), 1, - anon_sym_in, - STATE(8524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330148] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12901), 1, - sym__identifier, - STATE(8525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330162] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12903), 1, - anon_sym_in, - STATE(8526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330176] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12905), 1, - anon_sym_in, - STATE(8527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330190] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12907), 1, - anon_sym_with, - STATE(8528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330204] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12909), 1, - anon_sym_with, - STATE(8529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330218] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12911), 1, - anon_sym_DOT, - STATE(8530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330232] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2459), 1, - anon_sym_end, - STATE(8531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330246] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12913), 1, - aux_sym_number_token1, - STATE(8532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330260] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9969), 1, - anon_sym_end, - STATE(8533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330274] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12915), 1, - sym__right_quoted_string_delimiter, - STATE(8534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330288] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12917), 1, - anon_sym_SQUOTE, - STATE(8535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330302] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12919), 1, - anon_sym_RPAREN, - STATE(8536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330316] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12921), 1, - anon_sym_with, - STATE(8537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330330] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12923), 1, - anon_sym_with, - STATE(8538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330344] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12925), 1, - anon_sym_RBRACE, - STATE(8539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330358] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12927), 1, - anon_sym_DQUOTE, - STATE(8540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330372] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12929), 1, - sym__identifier, - STATE(8541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330386] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12931), 1, - anon_sym_GT, - STATE(8542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330400] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12933), 1, - anon_sym_DOT, - STATE(8543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330414] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12935), 1, - sym__identifier, - STATE(8544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330428] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11467), 1, - sym__capitalized_identifier, - STATE(8545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330442] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12937), 1, - anon_sym_RBRACE, - STATE(8546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330456] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4464), 1, - anon_sym_DASH_GT, - STATE(8547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330470] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9074), 1, - anon_sym_RPAREN, - STATE(8548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330484] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12939), 1, - anon_sym_DASH_GT, - STATE(8549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330498] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8322), 1, - sym__right_quoted_string_delimiter, - STATE(8550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330512] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12941), 1, - anon_sym_RBRACE, - STATE(8551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330526] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12943), 1, - anon_sym_DASH_GT, - STATE(8552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330540] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12945), 1, - anon_sym_end, - STATE(8553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330554] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12067), 1, - anon_sym_RBRACE, - STATE(8554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330568] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12947), 1, - anon_sym_EQ, - STATE(8555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330582] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12949), 1, - anon_sym_RPAREN, - STATE(8556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330596] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12951), 1, - sym__right_quoted_string_delimiter, - STATE(8557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330610] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12953), 1, - anon_sym_RPAREN, - STATE(8558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330624] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12953), 1, - anon_sym_RBRACK, - STATE(8559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330638] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12953), 1, - anon_sym_RBRACE, - STATE(8560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330652] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6187), 1, - anon_sym_GT, - STATE(8561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330666] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12955), 1, - anon_sym_RBRACK, - STATE(8562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330680] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8276), 1, - anon_sym_RPAREN, - STATE(8563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330694] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12957), 1, - anon_sym_DASH_GT, - STATE(8564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330708] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12959), 1, - anon_sym_of, - STATE(8565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330722] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12961), 1, - anon_sym_end, - STATE(8566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330736] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12963), 1, - anon_sym_DOT, - STATE(8567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330750] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12965), 1, - anon_sym_RPAREN, - STATE(8568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330764] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12967), 1, - anon_sym_RBRACE, - STATE(8569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330778] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12969), 1, - anon_sym_RPAREN, - STATE(8570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330792] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12971), 1, - anon_sym_RBRACE, - STATE(8571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330806] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12973), 1, - anon_sym_with, - STATE(8572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330820] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12975), 1, - anon_sym_with, - STATE(8573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330834] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12977), 1, - anon_sym_DOT, - STATE(8574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330848] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12979), 1, - anon_sym_RPAREN, - STATE(8575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330862] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12981), 1, - anon_sym_RBRACK, - STATE(8576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330876] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12983), 1, - anon_sym_RPAREN, - STATE(8577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330890] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12985), 1, - sym__right_quoted_string_delimiter, - STATE(8578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330904] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12987), 1, - anon_sym_RPAREN, - STATE(8579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330918] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12989), 1, - anon_sym_RBRACE, - STATE(8580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330932] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12991), 1, - anon_sym_with, - STATE(8581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330946] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12993), 1, - anon_sym_with, - STATE(8582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330960] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12995), 1, - anon_sym_DASH_GT, - STATE(8583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330974] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12997), 1, - anon_sym_RBRACE, - STATE(8584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [330988] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12999), 1, - anon_sym_RPAREN, - STATE(8585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331002] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13001), 1, - anon_sym_RBRACK, - STATE(8586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331016] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13003), 1, - anon_sym_DOT, - STATE(8587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331030] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13005), 1, - sym__identifier, - STATE(8588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331044] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13007), 1, - anon_sym_RBRACE, - STATE(8589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331058] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13009), 1, - anon_sym_DASH_GT, - STATE(8590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331072] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13011), 1, - anon_sym_RPAREN, - STATE(8591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331086] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9056), 1, - anon_sym_RPAREN, - STATE(8592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331100] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13013), 1, - anon_sym_in, - STATE(8593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331114] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8302), 1, - sym__right_quoted_string_delimiter, - STATE(8594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331128] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13015), 1, - anon_sym_RPAREN, - STATE(8595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331142] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13017), 1, - anon_sym_DASH_GT, - STATE(8596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331156] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13019), 1, - anon_sym_RBRACE, - STATE(8597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331170] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13021), 1, - sym__identifier, - STATE(8598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331184] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13023), 1, - anon_sym_RPAREN, - STATE(8599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331198] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13025), 1, - sym__right_quoted_string_delimiter, - STATE(8600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331212] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13027), 1, - anon_sym_RPAREN, - STATE(8601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331226] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13027), 1, - anon_sym_RBRACK, - STATE(8602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331240] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13027), 1, - anon_sym_RBRACE, - STATE(8603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331254] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13029), 1, - anon_sym_type, - STATE(8604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331268] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13031), 1, - anon_sym_RPAREN, - STATE(8605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331282] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13033), 1, - anon_sym_DASH_GT, - STATE(8606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331296] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(839), 1, - anon_sym_COLON_COLON, - STATE(8607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331310] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13035), 1, - anon_sym_RPAREN, - STATE(8608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331324] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13037), 1, - anon_sym_RPAREN, - STATE(8609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331338] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13039), 1, - anon_sym_DOT, - STATE(8610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331352] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13041), 1, - anon_sym_DOT, - STATE(8611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331366] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13043), 1, - anon_sym_RBRACE, - STATE(8612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331380] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13045), 1, - anon_sym_RPAREN, - STATE(8613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331394] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13047), 1, - anon_sym_RPAREN, - STATE(8614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331408] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13049), 1, - anon_sym_with, - STATE(8615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331422] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13051), 1, - anon_sym_with, - STATE(8616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331436] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13053), 1, - anon_sym_DOT, - STATE(8617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331450] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13055), 1, - anon_sym_RPAREN, - STATE(8618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331464] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13043), 1, - anon_sym_RBRACK, - STATE(8619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331478] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13057), 1, - anon_sym_RBRACE, - STATE(8620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331492] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13059), 1, - sym__right_quoted_string_delimiter, - STATE(8621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331506] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13061), 1, - anon_sym_RBRACK, - STATE(8622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331520] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13063), 1, - anon_sym_RPAREN, - STATE(8623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331534] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13065), 1, - anon_sym_with, - STATE(8624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331548] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13067), 1, - anon_sym_with, - STATE(8625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331562] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13069), 1, - anon_sym_RBRACE, - STATE(8626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331576] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13043), 1, - anon_sym_RPAREN, - STATE(8627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331590] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13071), 1, - anon_sym_DASH_GT, - STATE(8628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331604] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13073), 1, - anon_sym_DASH_GT, - STATE(8629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331618] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13075), 1, - anon_sym_DOT, - STATE(8630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331632] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13077), 1, - sym__right_quoted_string_delimiter, - STATE(8631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331646] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13079), 1, - anon_sym_RBRACK, - STATE(8632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331660] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13081), 1, - anon_sym_RPAREN, - STATE(8633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331674] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13083), 1, - anon_sym_RBRACE, - STATE(8634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331688] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9124), 1, - anon_sym_RPAREN, - STATE(8635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331702] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13085), 1, - anon_sym_RPAREN, - STATE(8636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331716] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8358), 1, - sym__right_quoted_string_delimiter, - STATE(8637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331730] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13087), 1, - anon_sym_RBRACE, - STATE(8638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331744] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12393), 1, - anon_sym_RPAREN, - STATE(8639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331758] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13089), 1, - anon_sym_DOT, - STATE(8640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331772] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13091), 1, - anon_sym_COLON_COLON, - STATE(8641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331786] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13093), 1, - anon_sym_RPAREN, - STATE(8642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331800] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13095), 1, - sym__right_quoted_string_delimiter, - STATE(8643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331814] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13097), 1, - anon_sym_RPAREN, - STATE(8644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331828] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13097), 1, - anon_sym_RBRACK, - STATE(8645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331842] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13097), 1, - anon_sym_RBRACE, - STATE(8646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331856] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13099), 1, - anon_sym_DASH_GT, - STATE(8647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331870] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13101), 1, - anon_sym_RPAREN, - STATE(8648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331884] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8977), 1, - anon_sym_GT, - STATE(8649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331898] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13103), 1, - anon_sym_in, - STATE(8650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331912] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13105), 1, - anon_sym_COLON2, - STATE(8651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331926] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13107), 1, - anon_sym_in, - STATE(8652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331940] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13109), 1, - anon_sym_DOT, - STATE(8653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331954] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8308), 1, - sym__right_quoted_string_delimiter, - STATE(8654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331968] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13111), 1, - anon_sym_in, - STATE(8655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331982] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13113), 1, - anon_sym_RBRACE, - STATE(8656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [331996] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13115), 1, - anon_sym_with, - STATE(8657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332010] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13117), 1, - anon_sym_with, - STATE(8658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332024] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13119), 1, - anon_sym_DOT, - STATE(8659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332038] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13121), 1, - anon_sym_in, - STATE(8660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332052] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13123), 1, - anon_sym_RPAREN, - STATE(8661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332066] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13125), 1, - anon_sym_in, - STATE(8662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332080] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13127), 1, - sym__right_quoted_string_delimiter, - STATE(8663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332094] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8062), 1, - anon_sym_RPAREN, - STATE(8664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332108] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13129), 1, - anon_sym_RPAREN, - STATE(8665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332122] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13131), 1, - anon_sym_with, - STATE(8666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332136] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13133), 1, - anon_sym_with, - STATE(8667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332150] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13135), 1, - anon_sym_RBRACK, - STATE(8668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332164] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13137), 1, - anon_sym_end, - STATE(8669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332178] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13139), 1, - anon_sym_RBRACE, - STATE(8670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332192] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13141), 1, - anon_sym_in, - STATE(8671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332206] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13143), 1, - anon_sym_DOT, - STATE(8672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332220] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9044), 1, - anon_sym_RPAREN, - STATE(8673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332234] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13145), 1, - anon_sym_DASH_GT, - STATE(8674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332248] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13147), 1, - anon_sym_DOT, - STATE(8675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332262] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(619), 1, - anon_sym_COLON_COLON, - STATE(8676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332276] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9082), 1, - anon_sym_RPAREN, - STATE(8677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332290] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13149), 1, - anon_sym_RPAREN, - STATE(8678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332304] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8416), 1, - sym__right_quoted_string_delimiter, - STATE(8679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332318] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10241), 1, - anon_sym_end, - STATE(8680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332332] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13151), 1, - anon_sym_DASH_GT, - STATE(8681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332346] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13153), 1, - anon_sym_SQUOTE, - STATE(8682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332360] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13155), 1, - anon_sym_DOT, - STATE(8683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332374] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13157), 1, - anon_sym_RPAREN, - STATE(8684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332388] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13159), 1, - sym__right_quoted_string_delimiter, - STATE(8685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332402] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13161), 1, - anon_sym_RPAREN, - STATE(8686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332416] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13161), 1, - anon_sym_RBRACK, - STATE(8687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332430] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13161), 1, - anon_sym_RBRACE, - STATE(8688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332444] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4478), 1, - anon_sym_DASH_GT, - STATE(8689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332458] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13163), 1, - anon_sym_DQUOTE, - STATE(8690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332472] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8804), 1, - anon_sym_DASH_GT, - STATE(8691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332486] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13165), 1, - anon_sym_DOT, - STATE(8692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332500] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13167), 1, - sym__identifier, - STATE(8693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332514] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13169), 1, - anon_sym_RBRACE, - STATE(8694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332528] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13171), 1, - anon_sym_DOT, - STATE(8695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332542] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13173), 1, - anon_sym_with, - STATE(8696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332556] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13175), 1, - anon_sym_RBRACE, - STATE(8697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332570] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13177), 1, - anon_sym_with, - STATE(8698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332584] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13179), 1, - anon_sym_with, - STATE(8699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332598] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13181), 1, - anon_sym_with, - STATE(8700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332612] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13183), 1, - anon_sym_DOT, - STATE(8701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332626] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13185), 1, - sym__identifier, - STATE(8702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332640] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13187), 1, - sym__identifier, - STATE(8703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332654] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13189), 1, - anon_sym_in, - STATE(8704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332668] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13191), 1, - sym__right_quoted_string_delimiter, - STATE(8705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332682] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13193), 1, - anon_sym_DQUOTE, - STATE(8706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332696] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13195), 1, - anon_sym_SQUOTE, - STATE(8707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332710] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13197), 1, - anon_sym_with, - STATE(8708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332724] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13199), 1, - anon_sym_with, - STATE(8709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332738] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9979), 1, - anon_sym_end, - STATE(8710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332752] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8007), 1, - anon_sym_DASH_GT, - STATE(8711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332766] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13201), 1, - anon_sym_STAR, - STATE(8712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332780] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4484), 1, - anon_sym_DASH_GT, - STATE(8713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332794] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13203), 1, - anon_sym_DOT, - STATE(8714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332808] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13205), 1, - anon_sym_DASH_GT, - STATE(8715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332822] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13207), 1, - sym__right_quoted_string_delimiter, - STATE(8716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332836] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13209), 1, - anon_sym_end, - STATE(8717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332850] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11067), 1, - anon_sym_GT_RBRACE, - STATE(8718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332864] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9252), 1, - anon_sym_RPAREN, - STATE(8719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332878] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13211), 1, - anon_sym_RBRACK, - STATE(8720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332892] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8470), 1, - sym__right_quoted_string_delimiter, - STATE(8721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332906] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8200), 1, - anon_sym_RPAREN, - STATE(8722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332920] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13213), 1, - anon_sym_DOT, - STATE(8723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332934] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13215), 1, - anon_sym_in, - STATE(8724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332948] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13217), 1, - anon_sym_with, - STATE(8725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332962] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13219), 1, - anon_sym_RPAREN, - STATE(8726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332976] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13221), 1, - sym__right_quoted_string_delimiter, - STATE(8727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [332990] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13223), 1, - anon_sym_RPAREN, - STATE(8728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333004] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13223), 1, - anon_sym_RBRACK, - STATE(8729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333018] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13223), 1, - anon_sym_RBRACE, - STATE(8730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333032] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13225), 1, - anon_sym_RPAREN, - STATE(8731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333046] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13227), 1, - anon_sym_RBRACE, - STATE(8732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333060] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13229), 1, - anon_sym_with, - STATE(8733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333074] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13231), 1, - anon_sym_EQ, - STATE(8734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333088] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13233), 1, - anon_sym_RBRACE, - STATE(8735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333102] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13235), 1, - anon_sym_DASH_GT, - STATE(8736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333116] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13237), 1, - anon_sym_DOT, - STATE(8737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333130] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13239), 1, - anon_sym_in, - STATE(8738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333144] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13241), 1, - anon_sym_in, - STATE(8739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333158] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13243), 1, - anon_sym_in, - STATE(8740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333172] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13245), 1, - anon_sym_with, - STATE(8741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333186] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13247), 1, - anon_sym_with, - STATE(8742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333200] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13249), 1, - anon_sym_DOT, - STATE(8743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333214] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13251), 1, - anon_sym_DASH_GT, - STATE(8744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333228] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2209), 1, - anon_sym_end, - STATE(8745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333242] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1183), 1, - anon_sym_DASH_GT, - STATE(8746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333256] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13253), 1, - sym__right_quoted_string_delimiter, - STATE(8747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333270] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13255), 1, - aux_sym_number_token1, - STATE(8748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333284] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4066), 1, - anon_sym_DASH_GT, - STATE(8749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333298] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13257), 1, - anon_sym_with, - STATE(8750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333312] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13259), 1, - anon_sym_with, - STATE(8751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333326] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13261), 1, - anon_sym_RPAREN, - STATE(8752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333340] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8160), 1, - anon_sym_RPAREN, - STATE(8753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333354] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13263), 1, - anon_sym_DOT, - STATE(8754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333368] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13265), 1, - anon_sym_RBRACK, - STATE(8755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333382] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13267), 1, - anon_sym_DOT, - STATE(8756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333396] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13269), 1, - anon_sym_RBRACE, - STATE(8757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333410] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13271), 1, - anon_sym_DOT, - STATE(8758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333424] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13273), 1, - anon_sym_RPAREN, - STATE(8759), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333438] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13275), 1, - anon_sym_RPAREN, - STATE(8760), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333452] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9350), 1, - anon_sym_RPAREN, - STATE(8761), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333466] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11013), 1, - anon_sym_GT_RBRACE, - STATE(8762), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333480] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8328), 1, - sym__right_quoted_string_delimiter, - STATE(8763), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333494] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3994), 1, - anon_sym_DASH_GT, - STATE(8764), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333508] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13277), 1, - anon_sym_RBRACE, - STATE(8765), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333522] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2477), 1, - anon_sym_RPAREN, - STATE(8766), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333536] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13279), 1, - anon_sym_RPAREN, - STATE(8767), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333550] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13281), 1, - anon_sym_RPAREN, - STATE(8768), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333564] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13283), 1, - sym__right_quoted_string_delimiter, - STATE(8769), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333578] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13285), 1, - anon_sym_RPAREN, - STATE(8770), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333592] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13285), 1, - anon_sym_RBRACK, - STATE(8771), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333606] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13285), 1, - anon_sym_RBRACE, - STATE(8772), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333620] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13287), 1, - anon_sym_RPAREN, - STATE(8773), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333634] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3988), 1, - anon_sym_DASH_GT, - STATE(8774), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333648] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13289), 1, - anon_sym_RPAREN, - STATE(8775), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333662] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13291), 1, - anon_sym_RBRACK, - STATE(8776), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333676] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13293), 1, - anon_sym_RBRACE, - STATE(8777), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333690] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13295), 1, - anon_sym_DOT, - STATE(8778), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333704] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13297), 1, - anon_sym_RBRACE, - STATE(8779), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333718] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13299), 1, - anon_sym_GT, - STATE(8780), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333732] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13301), 1, - anon_sym_RPAREN, - STATE(8781), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333746] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13303), 1, - anon_sym_with, - STATE(8782), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333760] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13305), 1, - anon_sym_with, - STATE(8783), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333774] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13307), 1, - anon_sym_DOT, - STATE(8784), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333788] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13309), 1, - anon_sym_DOT, - STATE(8785), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333802] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13311), 1, - anon_sym_RBRACE, - STATE(8786), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333816] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13313), 1, - anon_sym_RPAREN, - STATE(8787), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333830] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13315), 1, - sym__right_quoted_string_delimiter, - STATE(8788), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333844] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13317), 1, - anon_sym_in, - STATE(8789), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333858] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13319), 1, - anon_sym_RBRACE, - STATE(8790), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333872] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13321), 1, - anon_sym_with, - STATE(8791), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333886] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13323), 1, - anon_sym_with, - STATE(8792), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333900] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13325), 1, - anon_sym_RBRACE, - STATE(8793), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333914] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13327), 1, - anon_sym_in, - STATE(8794), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333928] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13329), 1, - anon_sym_in, - STATE(8795), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333942] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11697), 1, - anon_sym_RBRACE, - STATE(8796), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333956] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13331), 1, - anon_sym_DOT, - STATE(8797), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333970] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13333), 1, - anon_sym_RPAREN, - STATE(8798), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333984] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13335), 1, - anon_sym_RPAREN, - STATE(8799), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [333998] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13337), 1, - anon_sym_RPAREN, - STATE(8800), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334012] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6068), 1, - anon_sym_GT, - STATE(8801), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334026] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9280), 1, - anon_sym_RPAREN, - STATE(8802), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334040] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13339), 1, - anon_sym_RPAREN, - STATE(8803), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334054] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8480), 1, - sym__right_quoted_string_delimiter, - STATE(8804), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334068] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13341), 1, - anon_sym_in, - STATE(8805), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334082] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13343), 1, - sym__capitalized_identifier, - STATE(8806), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334096] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13345), 1, - anon_sym_RBRACE, - STATE(8807), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334110] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13347), 1, - sym__right_quoted_string_delimiter, - STATE(8808), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334124] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13349), 1, - anon_sym_RPAREN, - STATE(8809), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334138] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13351), 1, - sym__right_quoted_string_delimiter, - STATE(8810), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334152] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13353), 1, - anon_sym_RPAREN, - STATE(8811), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334166] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13353), 1, - anon_sym_RBRACK, - STATE(8812), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334180] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13353), 1, - anon_sym_RBRACE, - STATE(8813), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334194] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11225), 1, - anon_sym_GT_RBRACE, - STATE(8814), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334208] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13355), 1, - anon_sym_RBRACE, - STATE(8815), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334222] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13357), 1, - anon_sym_RPAREN, - STATE(8816), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334236] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13359), 1, - anon_sym_DOT, - STATE(8817), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334250] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13361), 1, - sym__right_quoted_string_delimiter, - STATE(8818), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334264] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11655), 1, - anon_sym_RBRACE, - STATE(8819), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334278] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13363), 1, - anon_sym_DOT, - STATE(8820), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334292] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13365), 1, - anon_sym_RPAREN, - STATE(8821), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334306] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13367), 1, - anon_sym_RPAREN, - STATE(8822), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334320] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13369), 1, - anon_sym_RBRACE, - STATE(8823), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334334] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13371), 1, - sym__right_quoted_string_delimiter, - STATE(8824), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334348] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13373), 1, - anon_sym_RBRACK, - STATE(8825), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334362] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13375), 1, - anon_sym_RPAREN, - STATE(8826), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334376] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13377), 1, - anon_sym_RPAREN, - STATE(8827), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334390] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13379), 1, - anon_sym_RPAREN, - STATE(8828), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334404] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13381), 1, - anon_sym_RPAREN, - STATE(8829), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334418] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13383), 1, - anon_sym_RBRACK, - STATE(8830), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334432] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13385), 1, - anon_sym_DOT, - STATE(8831), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334446] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13387), 1, - anon_sym_RBRACE, - STATE(8832), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334460] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9943), 1, - anon_sym_end, - STATE(8833), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334474] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13389), 1, - anon_sym_SQUOTE, - STATE(8834), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334488] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13391), 1, - anon_sym_DQUOTE, - STATE(8835), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334502] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9228), 1, - anon_sym_RPAREN, - STATE(8836), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334516] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13393), 1, - anon_sym_RBRACE, - STATE(8837), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334530] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8440), 1, - sym__right_quoted_string_delimiter, - STATE(8838), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334544] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13395), 1, - sym__identifier, - STATE(8839), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334558] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13397), 1, - anon_sym_RPAREN, - STATE(8840), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334572] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13399), 1, - anon_sym_RPAREN, - STATE(8841), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334586] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11633), 1, - anon_sym_RBRACE, - STATE(8842), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334600] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13401), 1, - anon_sym_RPAREN, - STATE(8843), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334614] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13403), 1, - sym__right_quoted_string_delimiter, - STATE(8844), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334628] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13405), 1, - anon_sym_RPAREN, - STATE(8845), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334642] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13405), 1, - anon_sym_RBRACK, - STATE(8846), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334656] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13405), 1, - anon_sym_RBRACE, - STATE(8847), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334670] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13407), 1, - anon_sym_RBRACE, - STATE(8848), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334684] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13409), 1, - anon_sym_RPAREN, - STATE(8849), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334698] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13411), 1, - anon_sym_RPAREN, - STATE(8850), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334712] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13413), 1, - anon_sym_DOT, - STATE(8851), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334726] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13415), 1, - anon_sym_RPAREN, - STATE(8852), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334740] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13415), 1, - anon_sym_RBRACK, - STATE(8853), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334754] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13417), 1, - anon_sym_DOT, - STATE(8854), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334768] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13415), 1, - anon_sym_RBRACE, - STATE(8855), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334782] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13419), 1, - anon_sym_DASH_GT, - STATE(8856), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334796] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13421), 1, - anon_sym_end, - STATE(8857), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334810] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13423), 1, - sym__right_quoted_string_delimiter, - STATE(8858), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334824] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13425), 1, - anon_sym_RPAREN, - STATE(8859), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334838] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13427), 1, - anon_sym_RBRACK, - STATE(8860), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334852] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8146), 1, - anon_sym_RPAREN, - STATE(8861), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334866] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9136), 1, - anon_sym_RBRACK, - STATE(8862), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334880] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13429), 1, - anon_sym_RBRACE, - STATE(8863), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334894] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13431), 1, - anon_sym_RPAREN, - STATE(8864), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334908] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13433), 1, - anon_sym_DOT, - STATE(8865), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334922] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13435), 1, - anon_sym_RPAREN, - STATE(8866), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334936] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13437), 1, - anon_sym_DASH_GT, - STATE(8867), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334950] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4404), 1, - anon_sym_DASH_GT, - STATE(8868), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334964] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13439), 1, - anon_sym_RPAREN, - STATE(8869), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334978] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9132), 1, - anon_sym_RPAREN, - STATE(8870), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [334992] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13441), 1, - anon_sym_RPAREN, - STATE(8871), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335006] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8360), 1, - sym__right_quoted_string_delimiter, - STATE(8872), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335020] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13443), 1, - anon_sym_RBRACK, - STATE(8873), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335034] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13445), 1, - anon_sym_RBRACE, - STATE(8874), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335048] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13447), 1, - anon_sym_DOT, - STATE(8875), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335062] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13449), 1, - anon_sym_RPAREN, - STATE(8876), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335076] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13451), 1, - anon_sym_RPAREN, - STATE(8877), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335090] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13453), 1, - sym__right_quoted_string_delimiter, - STATE(8878), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335104] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13455), 1, - anon_sym_RPAREN, - STATE(8879), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335118] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13455), 1, - anon_sym_RBRACK, - STATE(8880), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335132] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13455), 1, - anon_sym_RBRACE, - STATE(8881), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335146] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13457), 1, - anon_sym_RBRACK, - STATE(8882), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335160] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13459), 1, - anon_sym_RBRACE, - STATE(8883), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335174] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13461), 1, - anon_sym_DOT, - STATE(8884), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335188] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13463), 1, - anon_sym_RBRACK, - STATE(8885), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335202] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13465), 1, - anon_sym_DOT, - STATE(8886), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335216] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13467), 1, - sym__right_quoted_string_delimiter, - STATE(8887), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335230] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13469), 1, - anon_sym_RPAREN, - STATE(8888), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335244] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13471), 1, - anon_sym_RBRACE, - STATE(8889), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335258] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13473), 1, - anon_sym_DOT, - STATE(8890), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335272] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13475), 1, - anon_sym_in, - STATE(8891), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335286] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13477), 1, - anon_sym_in, - STATE(8892), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335300] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13479), 1, - anon_sym_in, - STATE(8893), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335314] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9116), 1, - anon_sym_RPAREN, - STATE(8894), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335328] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13481), 1, - anon_sym_RBRACE, - STATE(8895), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335342] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8346), 1, - sym__right_quoted_string_delimiter, - STATE(8896), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335356] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13483), 1, - anon_sym_done, - STATE(8897), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335370] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13485), 1, - anon_sym_RPAREN, - STATE(8898), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335384] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13487), 1, - sym__right_quoted_string_delimiter, - STATE(8899), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335398] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13489), 1, - anon_sym_RPAREN, - STATE(8900), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335412] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13489), 1, - anon_sym_RBRACK, - STATE(8901), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335426] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13489), 1, - anon_sym_RBRACE, - STATE(8902), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335440] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13491), 1, - anon_sym_DASH_GT, - STATE(8903), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335454] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13493), 1, - anon_sym_DASH_GT, - STATE(8904), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335468] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13495), 1, - anon_sym_COLON_COLON, - STATE(8905), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335482] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13497), 1, - sym__right_quoted_string_delimiter, - STATE(8906), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335496] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13499), 1, - anon_sym_RPAREN, - STATE(8907), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335510] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13501), 1, - anon_sym_RPAREN, - STATE(8908), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335524] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13503), 1, - anon_sym_DASH_GT, - STATE(8909), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335538] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13505), 1, - anon_sym_RPAREN, - STATE(8910), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335552] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8306), 1, - sym__right_quoted_string_delimiter, - STATE(8911), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335566] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13507), 1, - anon_sym_RBRACE, - STATE(8912), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335580] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13509), 1, - sym__right_quoted_string_delimiter, - STATE(8913), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335594] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13511), 1, - anon_sym_RPAREN, - STATE(8914), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335608] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13511), 1, - anon_sym_RBRACK, - STATE(8915), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335622] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13511), 1, - anon_sym_RBRACE, - STATE(8916), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335636] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13513), 1, - anon_sym_RPAREN, - STATE(8917), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335650] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13515), 1, - anon_sym_RPAREN, - STATE(8918), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335664] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13517), 1, - anon_sym_RBRACK, - STATE(8919), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335678] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13519), 1, - sym__right_quoted_string_delimiter, - STATE(8920), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335692] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13521), 1, - anon_sym_RBRACE, - STATE(8921), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335706] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13523), 1, - anon_sym_EQ, - STATE(8922), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335720] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13525), 1, - sym__identifier, - STATE(8923), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335734] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13527), 1, - anon_sym_RPAREN, - STATE(8924), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335748] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8330), 1, - sym__right_quoted_string_delimiter, - STATE(8925), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335762] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9013), 1, - anon_sym_GT, - STATE(8926), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335776] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13529), 1, - sym__right_quoted_string_delimiter, - STATE(8927), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335790] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13531), 1, - anon_sym_RPAREN, - STATE(8928), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335804] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13531), 1, - anon_sym_RBRACK, - STATE(8929), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335818] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13531), 1, - anon_sym_RBRACE, - STATE(8930), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335832] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13533), 1, - anon_sym_RBRACE, - STATE(8931), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335846] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13535), 1, - anon_sym_RPAREN, - STATE(8932), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335860] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13537), 1, - sym__identifier, - STATE(8933), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335874] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13539), 1, - sym__right_quoted_string_delimiter, - STATE(8934), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335888] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13541), 1, - anon_sym_in, - STATE(8935), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335902] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13543), 1, - anon_sym_in, - STATE(8936), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335916] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13545), 1, - anon_sym_in, - STATE(8937), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335930] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13547), 1, - anon_sym_RPAREN, - STATE(8938), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335944] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8364), 1, - sym__right_quoted_string_delimiter, - STATE(8939), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335958] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13549), 1, - anon_sym_RBRACE, - STATE(8940), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335972] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13551), 1, - sym__right_quoted_string_delimiter, - STATE(8941), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [335986] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13553), 1, - anon_sym_RPAREN, - STATE(8942), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336000] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13553), 1, - anon_sym_RBRACK, - STATE(8943), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336014] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13553), 1, - anon_sym_RBRACE, - STATE(8944), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336028] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1853), 1, - anon_sym_RPAREN, - STATE(8945), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336042] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4408), 1, - anon_sym_DASH_GT, - STATE(8946), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336056] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8264), 1, - anon_sym_RPAREN, - STATE(8947), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336070] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13555), 1, - sym__right_quoted_string_delimiter, - STATE(8948), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336084] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2459), 1, - anon_sym_RPAREN, - STATE(8949), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336098] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11423), 1, - anon_sym_GT_RBRACE, - STATE(8950), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336112] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10086), 1, - anon_sym_end, - STATE(8951), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336126] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13557), 1, - anon_sym_SQUOTE, - STATE(8952), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336140] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8386), 1, - sym__right_quoted_string_delimiter, - STATE(8953), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336154] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13559), 1, - anon_sym_DQUOTE, - STATE(8954), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336168] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13561), 1, - sym__right_quoted_string_delimiter, - STATE(8955), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336182] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13563), 1, - anon_sym_RPAREN, - STATE(8956), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336196] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13563), 1, - anon_sym_RBRACK, - STATE(8957), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336210] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13563), 1, - anon_sym_RBRACE, - STATE(8958), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336224] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13565), 1, - sym__identifier, - STATE(8959), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336238] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13567), 1, - anon_sym_RBRACE, - STATE(8960), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336252] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4354), 1, - anon_sym_DASH_GT, - STATE(8961), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336266] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13569), 1, - sym__right_quoted_string_delimiter, - STATE(8962), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336280] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13571), 1, - anon_sym_RPAREN, - STATE(8963), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336294] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13573), 1, - anon_sym_DASH_GT, - STATE(8964), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336308] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6171), 1, - anon_sym_GT, - STATE(8965), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336322] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13575), 1, - anon_sym_end, - STATE(8966), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336336] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8442), 1, - sym__right_quoted_string_delimiter, - STATE(8967), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336350] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13577), 1, - anon_sym_RBRACK, - STATE(8968), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336364] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13579), 1, - sym__right_quoted_string_delimiter, - STATE(8969), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336378] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13581), 1, - anon_sym_RPAREN, - STATE(8970), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336392] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13581), 1, - anon_sym_RBRACK, - STATE(8971), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336406] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13581), 1, - anon_sym_RBRACE, - STATE(8972), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336420] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8282), 1, - anon_sym_RPAREN, - STATE(8973), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336434] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13583), 1, - anon_sym_RBRACK, - STATE(8974), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336448] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13585), 1, - anon_sym_end, - STATE(8975), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336462] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13587), 1, - sym__right_quoted_string_delimiter, - STATE(8976), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336476] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13589), 1, - anon_sym_RBRACE, - STATE(8977), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336490] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13591), 1, - anon_sym_in, - STATE(8978), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336504] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13593), 1, - anon_sym_RBRACE, - STATE(8979), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336518] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13595), 1, - anon_sym_RPAREN, - STATE(8980), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336532] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8456), 1, - sym__right_quoted_string_delimiter, - STATE(8981), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336546] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13597), 1, - anon_sym_RBRACK, - STATE(8982), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336560] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13599), 1, - sym__right_quoted_string_delimiter, - STATE(8983), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336574] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13601), 1, - anon_sym_RPAREN, - STATE(8984), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336588] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13601), 1, - anon_sym_RBRACK, - STATE(8985), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336602] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13601), 1, - anon_sym_RBRACE, - STATE(8986), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336616] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13603), 1, - anon_sym_RBRACE, - STATE(8987), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336630] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13605), 1, - anon_sym_RPAREN, - STATE(8988), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336644] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13607), 1, - anon_sym_DASH_GT, - STATE(8989), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336658] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13609), 1, - sym__right_quoted_string_delimiter, - STATE(8990), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336672] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11307), 1, - anon_sym_GT_RBRACE, - STATE(8991), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336686] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13611), 1, - anon_sym_RPAREN, - STATE(8992), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336700] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13613), 1, - anon_sym_DASH_GT, - STATE(8993), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336714] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13615), 1, - anon_sym_RBRACE, - STATE(8994), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336728] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8490), 1, - sym__right_quoted_string_delimiter, - STATE(8995), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336742] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13617), 1, - anon_sym_RPAREN, - STATE(8996), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336756] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13619), 1, - sym__right_quoted_string_delimiter, - STATE(8997), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336770] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13621), 1, - anon_sym_RPAREN, - STATE(8998), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336784] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13621), 1, - anon_sym_RBRACK, - STATE(8999), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336798] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13621), 1, - anon_sym_RBRACE, - STATE(9000), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336812] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13623), 1, - anon_sym_RBRACK, - STATE(9001), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336826] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4412), 1, - anon_sym_DASH_GT, - STATE(9002), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336840] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8444), 1, - sym__right_quoted_string_delimiter, - STATE(9003), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336854] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13625), 1, - anon_sym_RBRACE, - STATE(9004), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336868] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13627), 1, - sym__right_quoted_string_delimiter, - STATE(9005), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336882] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13629), 1, - anon_sym_RPAREN, - STATE(9006), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336896] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7882), 1, - anon_sym_DASH_GT, - STATE(9007), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336910] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8298), 1, - sym__right_quoted_string_delimiter, - STATE(9008), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336924] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13631), 1, - anon_sym_RPAREN, - STATE(9009), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336938] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13633), 1, - sym__right_quoted_string_delimiter, - STATE(9010), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336952] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13635), 1, - anon_sym_RBRACE, - STATE(9011), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336966] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13637), 1, - anon_sym_RBRACE, - STATE(9012), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336980] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8422), 1, - sym__right_quoted_string_delimiter, - STATE(9013), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [336994] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13639), 1, - anon_sym_RBRACE, - STATE(9014), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337008] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13641), 1, - sym__right_quoted_string_delimiter, - STATE(9015), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337022] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13643), 1, - anon_sym_RPAREN, - STATE(9016), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337036] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13645), 1, - anon_sym_RBRACE, - STATE(9017), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337050] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8408), 1, - sym__right_quoted_string_delimiter, - STATE(9018), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337064] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13647), 1, - anon_sym_RBRACE, - STATE(9019), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337078] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13649), 1, - sym__right_quoted_string_delimiter, - STATE(9020), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337092] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13651), 1, - anon_sym_in, - STATE(9021), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337106] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13653), 1, - anon_sym_in, - STATE(9022), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337120] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8398), 1, - sym__right_quoted_string_delimiter, - STATE(9023), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337134] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13655), 1, - anon_sym_in, - STATE(9024), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337148] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13657), 1, - sym__right_quoted_string_delimiter, - STATE(9025), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337162] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13659), 1, - anon_sym_RPAREN, - STATE(9026), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337176] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13661), 1, - sym__identifier, - STATE(9027), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337190] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8392), 1, - sym__right_quoted_string_delimiter, - STATE(9028), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337204] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13663), 1, - anon_sym_RPAREN, - STATE(9029), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337218] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13665), 1, - sym__right_quoted_string_delimiter, - STATE(9030), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337232] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13667), 1, - anon_sym_DQUOTE, - STATE(9031), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337246] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13669), 1, - anon_sym_SQUOTE, - STATE(9032), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337260] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13671), 1, - anon_sym_DASH_GT, - STATE(9033), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337274] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13673), 1, - sym__identifier, - STATE(9034), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337288] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13675), 1, - anon_sym_in, - STATE(9035), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337302] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10157), 1, - anon_sym_end, - STATE(9036), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337316] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11311), 1, - anon_sym_GT_RBRACE, - STATE(9037), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337330] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13677), 1, - anon_sym_DOT, - STATE(9038), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337344] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9786), 1, - anon_sym_end, - STATE(9039), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337358] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13679), 1, - anon_sym_in, - STATE(9040), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337372] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13681), 1, - anon_sym_SQUOTE, - STATE(9041), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337386] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13683), 1, - anon_sym_DASH_GT, - STATE(9042), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337400] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13685), 1, - anon_sym_DQUOTE, - STATE(9043), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337414] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13687), 1, - sym__identifier, - STATE(9044), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337428] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13689), 1, - anon_sym_RBRACE, - STATE(9045), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337442] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5210), 1, - anon_sym_RBRACK, - STATE(9046), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337456] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4392), 1, - anon_sym_DASH_GT, - STATE(9047), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337470] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13691), 1, - anon_sym_EQ, - STATE(9048), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337484] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13693), 1, - anon_sym_in, - STATE(9049), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337498] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1843), 1, - anon_sym_RPAREN, - STATE(9050), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337512] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13695), 1, - anon_sym_RBRACK, - STATE(9051), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337526] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13697), 1, - anon_sym_RPAREN, - STATE(9052), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337540] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13699), 1, - sym__left_quoted_string_delimiter, - STATE(9053), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337554] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13701), 1, - sym__identifier, - STATE(9054), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337568] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13703), 1, - anon_sym_in, - STATE(9055), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337582] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9479), 1, - sym__left_quoted_string_delimiter, - STATE(9056), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337596] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13705), 1, - anon_sym_in, - STATE(9057), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337610] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13707), 1, - anon_sym_RBRACK, - STATE(9058), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337624] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13709), 1, - anon_sym_in, - STATE(9059), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337638] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13711), 1, - anon_sym_end, - STATE(9060), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337652] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13713), 1, - anon_sym_in, - STATE(9061), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337666] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13715), 1, - anon_sym_RBRACK, - STATE(9062), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337680] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5515), 1, - anon_sym_end, - STATE(9063), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337694] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13717), 1, - aux_sym_number_token1, - STATE(9064), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337708] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13719), 1, - anon_sym_RBRACK, - STATE(9065), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337722] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13721), 1, - anon_sym_RPAREN, - STATE(9066), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337736] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8284), 1, - anon_sym_RPAREN, - STATE(9067), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337750] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13723), 1, - aux_sym_number_token1, - STATE(9068), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337764] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2295), 1, - anon_sym_end, - STATE(9069), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337778] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13725), 1, - anon_sym_end, - STATE(9070), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337792] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13727), 1, - anon_sym_RBRACE, - STATE(9071), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337806] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13729), 1, - anon_sym_in, - STATE(9072), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337820] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13731), 1, - anon_sym_in, - STATE(9073), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337834] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13733), 1, - anon_sym_DASH_GT, - STATE(9074), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337848] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13735), 1, - anon_sym_RBRACE, - STATE(9075), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337862] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13737), 1, - anon_sym_RPAREN, - STATE(9076), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337876] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13739), 1, - anon_sym_with, - STATE(9077), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337890] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13741), 1, - sym__left_quoted_string_delimiter, - STATE(9078), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337904] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13743), 1, - anon_sym_in, - STATE(9079), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337918] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13745), 1, - sym__identifier, - STATE(9080), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337932] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13747), 1, - anon_sym_RBRACK, - STATE(9081), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337946] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13749), 1, - anon_sym_RPAREN, - STATE(9082), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337960] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13751), 1, - anon_sym_RPAREN, - STATE(9083), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337974] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13753), 1, - anon_sym_in, - STATE(9084), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [337988] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13755), 1, - anon_sym_RBRACE, - STATE(9085), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338002] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13757), 1, - anon_sym_RPAREN, - STATE(9086), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338016] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11793), 1, - anon_sym_RBRACK, - STATE(9087), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338030] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13759), 1, - anon_sym_DASH_GT, - STATE(9088), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338044] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13761), 1, - anon_sym_RPAREN, - STATE(9089), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338058] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13763), 1, - anon_sym_GT, - STATE(9090), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338072] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13765), 1, - anon_sym_RBRACE, - STATE(9091), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338086] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13767), 1, - anon_sym_COLON, - STATE(9092), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338100] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13769), 1, - anon_sym_RPAREN, - STATE(9093), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338114] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13771), 1, - anon_sym_RBRACK, - STATE(9094), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338128] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13773), 1, - anon_sym_type, - STATE(9095), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338142] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13775), 1, - anon_sym_RBRACE, - STATE(9096), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338156] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11202), 1, - anon_sym_GT_RBRACE, - STATE(9097), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338170] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13777), 1, - anon_sym_RPAREN, - STATE(9098), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338184] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13779), 1, - anon_sym_RBRACE, - STATE(9099), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338198] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10060), 1, - anon_sym_end, - STATE(9100), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338212] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13781), 1, - anon_sym_SQUOTE, - STATE(9101), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338226] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13783), 1, - anon_sym_PIPE, - STATE(9102), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338240] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13785), 1, - anon_sym_RPAREN, - STATE(9103), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338254] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8370), 1, - sym__right_quoted_string_delimiter, - STATE(9104), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338268] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13787), 1, - anon_sym_DQUOTE, - STATE(9105), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338282] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13789), 1, - anon_sym_in, - STATE(9106), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338296] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13791), 1, - anon_sym_DOT_DOT, - STATE(9107), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338310] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13793), 1, - anon_sym_DOT_DOT, - STATE(9108), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338324] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13795), 1, - anon_sym_DOT_DOT, - STATE(9109), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338338] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13797), 1, - sym__identifier, - STATE(9110), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338352] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13799), 1, - anon_sym_in, - STATE(9111), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338366] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13801), 1, - anon_sym_in, - STATE(9112), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338380] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13803), 1, - anon_sym_DASH_GT, - STATE(9113), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338394] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13805), 1, - anon_sym_RPAREN, - STATE(9114), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338408] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11541), 1, - anon_sym_RBRACE, - STATE(9115), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338422] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13807), 1, - anon_sym_RBRACE, - STATE(9116), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338436] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1885), 1, - anon_sym_RPAREN, - STATE(9117), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338450] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13809), 1, - anon_sym_RPAREN, - STATE(9118), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338464] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6078), 1, - anon_sym_GT, - STATE(9119), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338478] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13811), 1, - anon_sym_RPAREN, - STATE(9120), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338492] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13813), 1, - anon_sym_with, - STATE(9121), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338506] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13815), 1, - anon_sym_RPAREN, - STATE(9122), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338520] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13817), 1, - anon_sym_COLON2, - STATE(9123), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338534] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13819), 1, - anon_sym_DASH_GT, - STATE(9124), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338548] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13821), 1, - sym__right_quoted_string_delimiter, - STATE(9125), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338562] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11177), 1, - anon_sym_GT_RBRACE, - STATE(9126), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338576] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13823), 1, - anon_sym_RPAREN, - STATE(9127), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338590] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13825), 1, - anon_sym_RBRACE, - STATE(9128), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338604] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13827), 1, - anon_sym_RPAREN, - STATE(9129), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338618] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13829), 1, - anon_sym_GT, - STATE(9130), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338632] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9973), 1, - anon_sym_end, - STATE(9131), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338646] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13831), 1, - anon_sym_DASH_GT, - STATE(9132), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338660] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13833), 1, - anon_sym_RBRACE, - STATE(9133), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338674] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13835), 1, - anon_sym_SQUOTE, - STATE(9134), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338688] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13837), 1, - anon_sym_DQUOTE, - STATE(9135), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338702] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13839), 1, - anon_sym_RBRACE, - STATE(9136), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338716] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13841), 1, - anon_sym_EQ, - STATE(9137), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338730] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13843), 1, - sym__identifier, - STATE(9138), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338744] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13845), 1, - anon_sym_RBRACE, - STATE(9139), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338758] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13847), 1, - anon_sym_RBRACE, - STATE(9140), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338772] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4370), 1, - anon_sym_DASH_GT, - STATE(9141), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338786] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11787), 1, - anon_sym_RBRACE, - STATE(9142), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338800] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13849), 1, - anon_sym_RPAREN, - STATE(9143), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338814] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8981), 1, - anon_sym_GT, - STATE(9144), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338828] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13851), 1, - anon_sym_DASH_GT, - STATE(9145), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338842] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(859), 1, - anon_sym_COLON_COLON, - STATE(9146), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338856] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13853), 1, - anon_sym_DASH_GT, - STATE(9147), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338870] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13855), 1, - anon_sym_RBRACE, - STATE(9148), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338884] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13855), 1, - anon_sym_RBRACK, - STATE(9149), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338898] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13855), 1, - anon_sym_RPAREN, - STATE(9150), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338912] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4436), 1, - anon_sym_DASH_GT, - STATE(9151), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338926] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13857), 1, - anon_sym_end, - STATE(9152), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338940] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13859), 1, - anon_sym_RPAREN, - STATE(9153), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338954] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13861), 1, - anon_sym_RBRACE, - STATE(9154), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338968] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13863), 1, - sym__right_quoted_string_delimiter, - STATE(9155), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338982] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11799), 1, - anon_sym_RBRACE, - STATE(9156), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [338996] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13865), 1, - anon_sym_RPAREN, - STATE(9157), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339010] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13867), 1, - anon_sym_RBRACE, - STATE(9158), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339024] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13869), 1, - anon_sym_RPAREN, - STATE(9159), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339038] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13871), 1, - anon_sym_RBRACK, - STATE(9160), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339052] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13873), 1, - anon_sym_RPAREN, - STATE(9161), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339066] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13875), 1, - anon_sym_RPAREN, - STATE(9162), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339080] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13877), 1, - anon_sym_RBRACE, - STATE(9163), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339094] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13879), 1, - sym__identifier, - STATE(9164), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339108] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13881), 1, - anon_sym_RPAREN, - STATE(9165), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339122] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13883), 1, - anon_sym_RBRACE, - STATE(9166), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339136] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13885), 1, - anon_sym_RPAREN, - STATE(9167), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339150] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13887), 1, - anon_sym_RPAREN, - STATE(9168), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339164] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6286), 1, - anon_sym_DASH_GT, - STATE(9169), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339178] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13889), 1, - anon_sym_end, - STATE(9170), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339192] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13891), 1, - anon_sym_RPAREN, - STATE(9171), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339206] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13893), 1, - anon_sym_in, - STATE(9172), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339220] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13895), 1, - anon_sym_in, - STATE(9173), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339234] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13897), 1, - anon_sym_RBRACK, - STATE(9174), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339248] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8228), 1, - anon_sym_RPAREN, - STATE(9175), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339262] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13899), 1, - anon_sym_of, - STATE(9176), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339276] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13901), 1, - anon_sym_RBRACE, - STATE(9177), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339290] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13903), 1, - anon_sym_DASH_GT, - STATE(9178), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339304] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8734), 1, - anon_sym_DASH_GT, - STATE(9179), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339318] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13905), 1, - anon_sym_DASH_GT, - STATE(9180), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339332] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11449), 1, - anon_sym_STAR, - STATE(9181), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339346] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13907), 1, - anon_sym_RPAREN, - STATE(9182), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339360] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13909), 1, - anon_sym_RBRACE, - STATE(9183), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339374] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13911), 1, - anon_sym_RPAREN, - STATE(9184), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339388] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13913), 1, - sym__identifier, - STATE(9185), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339402] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13915), 1, - anon_sym_RBRACE, - STATE(9186), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339416] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13917), 1, - anon_sym_RPAREN, - STATE(9187), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339430] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13919), 1, - sym__capitalized_identifier, - STATE(9188), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339444] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8482), 1, - sym__right_quoted_string_delimiter, - STATE(9189), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339458] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13921), 1, - anon_sym_RBRACK, - STATE(9190), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339472] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13923), 1, - anon_sym_RPAREN, - STATE(9191), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339486] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13925), 1, - anon_sym_RBRACE, - STATE(9192), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339500] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13927), 1, - anon_sym_in, - STATE(9193), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339514] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4460), 1, - anon_sym_DASH_GT, - STATE(9194), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339528] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13929), 1, - anon_sym_RPAREN, - STATE(9195), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339542] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13931), 1, - anon_sym_EQ, - STATE(9196), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339556] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13933), 1, - anon_sym_RPAREN, - STATE(9197), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339570] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9222), 1, - anon_sym_RPAREN, - STATE(9198), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339584] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13935), 1, - anon_sym_RPAREN, - STATE(9199), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339598] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9734), 1, - sym__capitalized_identifier, - STATE(9200), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339612] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13937), 1, - anon_sym_DASH_GT, - STATE(9201), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339626] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13939), 1, - anon_sym_in, - STATE(9202), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339640] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13941), 1, - anon_sym_end, - STATE(9203), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339654] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13943), 1, - anon_sym_RPAREN, - STATE(9204), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339668] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13945), 1, - anon_sym_RPAREN, - STATE(9205), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339682] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13947), 1, - anon_sym_RPAREN, - STATE(9206), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339696] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13949), 1, - anon_sym_RBRACE, - STATE(9207), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339710] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13951), 1, - anon_sym_RBRACK, - STATE(9208), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339724] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13953), 1, - anon_sym_RPAREN, - STATE(9209), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339738] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13955), 1, - anon_sym_type, - STATE(9210), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339752] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13957), 1, - anon_sym_RBRACE, - STATE(9211), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339766] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13959), 1, - anon_sym_RBRACK, - STATE(9212), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339780] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13961), 1, - anon_sym_RBRACK, - STATE(9213), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339794] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13963), 1, - anon_sym_RBRACE, - STATE(9214), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339808] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13965), 1, - anon_sym_RPAREN, - STATE(9215), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339822] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13967), 1, - anon_sym_RBRACE, - STATE(9216), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339836] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13969), 1, - anon_sym_DASH_GT, - STATE(9217), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339850] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13971), 1, - anon_sym_DOT, - STATE(9218), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339864] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(935), 1, - anon_sym_COLON_COLON, - STATE(9219), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339878] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13973), 1, - anon_sym_RPAREN, - STATE(9220), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339892] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13975), 1, - anon_sym_done, - STATE(9221), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339906] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13977), 1, - anon_sym_RPAREN, - STATE(9222), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339920] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13979), 1, - anon_sym_RBRACE, - STATE(9223), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339934] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13981), 1, - anon_sym_RPAREN, - STATE(9224), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339948] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13983), 1, - anon_sym_end, - STATE(9225), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339962] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13985), 1, - anon_sym_RBRACK, - STATE(9226), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339976] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13987), 1, - anon_sym_DASH_GT, - STATE(9227), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [339990] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13989), 1, - sym__right_quoted_string_delimiter, - STATE(9228), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340004] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13991), 1, - anon_sym_EQ, - STATE(9229), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340018] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13993), 1, - anon_sym_RBRACE, - STATE(9230), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340032] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13995), 1, - anon_sym_RPAREN, - STATE(9231), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340046] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13997), 1, - anon_sym_in, - STATE(9232), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340060] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(13999), 1, - anon_sym_in, - STATE(9233), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340074] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14001), 1, - anon_sym_in, - STATE(9234), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340088] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14003), 1, - anon_sym_DOT, - STATE(9235), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340102] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14005), 1, - anon_sym_PLUS_EQ, - STATE(9236), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340116] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14007), 1, - anon_sym_RPAREN, - STATE(9237), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340130] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12143), 1, - anon_sym_RPAREN, - STATE(9238), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340144] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14009), 1, - anon_sym_RPAREN, - STATE(9239), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340158] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1881), 1, - anon_sym_RPAREN, - STATE(9240), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340172] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14011), 1, - anon_sym_DOT, - STATE(9241), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340186] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14013), 1, - anon_sym_EQ, - STATE(9242), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340200] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14015), 1, - anon_sym_RBRACK, - STATE(9243), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340214] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14017), 1, - anon_sym_with, - STATE(9244), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340228] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9873), 1, - anon_sym_end, - STATE(9245), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340242] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14019), 1, - anon_sym_EQ, - STATE(9246), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340256] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14021), 1, - anon_sym_with, - STATE(9247), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340270] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14023), 1, - sym__identifier, - STATE(9248), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340284] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8126), 1, - anon_sym_RPAREN, - STATE(9249), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340298] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14025), 1, - anon_sym_RBRACE, - STATE(9250), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340312] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14027), 1, - anon_sym_SQUOTE, - STATE(9251), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340326] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9451), 1, - anon_sym_DASH_GT, - STATE(9252), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340340] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14029), 1, - anon_sym_STAR, - STATE(9253), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340354] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14031), 1, - anon_sym_DQUOTE, - STATE(9254), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340368] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14033), 1, - sym__identifier, - STATE(9255), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340382] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14035), 1, - anon_sym_RBRACE, - STATE(9256), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340396] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14037), 1, - anon_sym_DOT, - STATE(9257), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340410] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4402), 1, - anon_sym_DASH_GT, - STATE(9258), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340424] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14039), 1, - anon_sym_in, - STATE(9259), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340438] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14041), 1, - anon_sym_in, - STATE(9260), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340452] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14043), 1, - anon_sym_in, - STATE(9261), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340466] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14045), 1, - anon_sym_RBRACE, - STATE(9262), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340480] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14047), 1, - sym__right_quoted_string_delimiter, - STATE(9263), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340494] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14049), 1, - anon_sym_DOT, - STATE(9264), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340508] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14051), 1, - anon_sym_end, - STATE(9265), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340522] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4384), 1, - anon_sym_DASH_GT, - STATE(9266), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340536] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14053), 1, - anon_sym_DASH_GT, - STATE(9267), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340550] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(877), 1, - anon_sym_RPAREN, - STATE(9268), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340564] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14055), 1, - anon_sym_RBRACK, - STATE(9269), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340578] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8150), 1, - anon_sym_RPAREN, - STATE(9270), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340592] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2209), 1, - anon_sym_RPAREN, - STATE(9271), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340606] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14057), 1, - anon_sym_EQ, - STATE(9272), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340620] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14059), 1, - sym__identifier, - STATE(9273), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340634] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14061), 1, - anon_sym_RBRACK, - STATE(9274), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340648] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(3832), 1, - anon_sym_RBRACK, - STATE(9275), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340662] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14063), 1, - anon_sym_RBRACK, - STATE(9276), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340676] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8052), 1, - anon_sym_RPAREN, - STATE(9277), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340690] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14065), 1, - anon_sym_RBRACE, - STATE(9278), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340704] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14067), 1, - anon_sym_DASH_GT, - STATE(9279), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340718] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14069), 1, - sym__left_quoted_string_delimiter, - STATE(9280), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340732] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14071), 1, - anon_sym_RBRACE, - STATE(9281), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340746] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14073), 1, - anon_sym_RPAREN, - STATE(9282), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340760] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14075), 1, - anon_sym_RPAREN, - STATE(9283), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340774] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14077), 1, - anon_sym_RBRACK, - STATE(9284), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340788] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14079), 1, - anon_sym_DOT, - STATE(9285), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340802] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14081), 1, - anon_sym_with, - STATE(9286), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340816] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11961), 1, - anon_sym_RBRACK, - STATE(9287), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340830] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14083), 1, - anon_sym_RBRACE, - STATE(9288), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340844] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14085), 1, - sym__identifier, - STATE(9289), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340858] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14087), 1, - anon_sym_with, - STATE(9290), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340872] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14089), 1, - anon_sym_RPAREN, - STATE(9291), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340886] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4106), 1, - sym__left_quoted_string_delimiter, - STATE(9292), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340900] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14091), 1, - anon_sym_RBRACE, - STATE(9293), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340914] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14093), 1, - anon_sym_DOT, - STATE(9294), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340928] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14095), 1, - anon_sym_RPAREN, - STATE(9295), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340942] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14097), 1, - anon_sym_RPAREN, - STATE(9296), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340956] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14099), 1, - anon_sym_RPAREN, - STATE(9297), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340970] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14101), 1, - anon_sym_RBRACE, - STATE(9298), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340984] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14103), 1, - anon_sym_DQUOTE, - STATE(9299), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [340998] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14105), 1, - anon_sym_RBRACK, - STATE(9300), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341012] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14107), 1, - anon_sym_SQUOTE, - STATE(9301), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341026] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14109), 1, - sym__left_quoted_string_delimiter, - STATE(9302), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341040] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14111), 1, - sym__identifier, - STATE(9303), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341054] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14113), 1, - anon_sym_RPAREN, - STATE(9304), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341068] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(7910), 1, - anon_sym_SQUOTE, - STATE(9305), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341082] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14115), 1, - anon_sym_end, - STATE(9306), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341096] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14117), 1, - anon_sym_PIPE, - STATE(9307), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341110] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14119), 1, - anon_sym_RBRACK, - STATE(9308), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341124] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14121), 1, - anon_sym_SQUOTE, - STATE(9309), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341138] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14123), 1, - anon_sym_DOT_DOT, - STATE(9310), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341152] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14125), 1, - anon_sym_DOT_DOT, - STATE(9311), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341166] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14127), 1, - anon_sym_DOT_DOT, - STATE(9312), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341180] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14129), 1, - anon_sym_RBRACE, - STATE(9313), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341194] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14131), 1, - anon_sym_COLON2, - STATE(9314), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341208] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14133), 1, - anon_sym_RPAREN, - STATE(9315), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341222] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14135), 1, - anon_sym_in, - STATE(9316), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341236] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14137), 1, - anon_sym_RBRACE, - STATE(9317), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341250] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14139), 1, - anon_sym_DASH_GT, - STATE(9318), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341264] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14141), 1, - anon_sym_RPAREN, - STATE(9319), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341278] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14143), 1, - anon_sym_DOT, - STATE(9320), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341292] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14145), 1, - sym__identifier, - STATE(9321), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341306] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14147), 1, - anon_sym_RPAREN, - STATE(9322), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341320] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14149), 1, - anon_sym_DOT, - STATE(9323), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341334] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14151), 1, - anon_sym_RPAREN, - STATE(9324), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341348] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10032), 1, - anon_sym_end, - STATE(9325), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341362] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1859), 1, - anon_sym_RPAREN, - STATE(9326), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341376] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10841), 1, - anon_sym_GT_RBRACE, - STATE(9327), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341390] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10845), 1, - anon_sym_GT_RBRACE, - STATE(9328), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341404] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14153), 1, - anon_sym_DOT, - STATE(9329), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341418] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10040), 1, - anon_sym_end, - STATE(9330), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341432] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(4422), 1, - anon_sym_DASH_GT, - STATE(9331), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341446] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14155), 1, - anon_sym_RBRACE, - STATE(9332), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341460] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14157), 1, - anon_sym_RBRACE, - STATE(9333), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341474] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5220), 1, - anon_sym_RBRACK, - STATE(9334), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341488] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14159), 1, - anon_sym_with, - STATE(9335), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341502] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14161), 1, - anon_sym_RPAREN, - STATE(9336), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341516] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6787), 1, - anon_sym_DASH_GT, - STATE(9337), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341530] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14163), 1, - anon_sym_RBRACE, - STATE(9338), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341544] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9417), 1, - sym__left_quoted_string_delimiter, - STATE(9339), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341558] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14165), 1, - anon_sym_RBRACK, - STATE(9340), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341572] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14167), 1, - anon_sym_SQUOTE, - STATE(9341), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341586] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14169), 1, - anon_sym_RBRACE, - STATE(9342), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341600] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8918), 1, - anon_sym_GT, - STATE(9343), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341614] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14171), 1, - anon_sym_RPAREN, - STATE(9344), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341628] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14173), 1, - anon_sym_with, - STATE(9345), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341642] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14175), 1, - anon_sym_EQ, - STATE(9346), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341656] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14177), 1, - anon_sym_RBRACE, - STATE(9347), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341670] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14179), 1, - anon_sym_RBRACE, - STATE(9348), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341684] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14181), 1, - sym__left_quoted_string_delimiter, - STATE(9349), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341698] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14183), 1, - sym__identifier, - STATE(9350), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341712] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14185), 1, - anon_sym_RBRACK, - STATE(9351), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341726] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14187), 1, - anon_sym_DQUOTE, - STATE(9352), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341740] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14189), 1, - anon_sym_PIPE, - STATE(9353), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341754] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14191), 1, - anon_sym_RBRACE, - STATE(9354), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341768] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14193), 1, - anon_sym_COLON, - STATE(9355), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341782] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14195), 1, - anon_sym_DOT_DOT, - STATE(9356), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341796] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14197), 1, - anon_sym_DOT_DOT, - STATE(9357), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341810] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14199), 1, - anon_sym_DOT_DOT, - STATE(9358), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341824] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14201), 1, - anon_sym_RBRACE, - STATE(9359), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341838] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14203), 1, - anon_sym_DOT, - STATE(9360), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341852] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14205), 1, - anon_sym_RBRACE, - STATE(9361), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341866] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14207), 1, - anon_sym_RBRACE, - STATE(9362), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341880] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14209), 1, - anon_sym_RBRACK, - STATE(9363), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341894] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14211), 1, - sym__identifier, - STATE(9364), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341908] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14213), 1, - anon_sym_RBRACE, - STATE(9365), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341922] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14215), 1, - anon_sym_RBRACE, - STATE(9366), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341936] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14217), 1, - anon_sym_RBRACE, - STATE(9367), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341950] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9388), 1, - sym__left_quoted_string_delimiter, - STATE(9368), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341964] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14219), 1, - anon_sym_RBRACK, - STATE(9369), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341978] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14221), 1, - anon_sym_RBRACE, - STATE(9370), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [341992] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14223), 1, - anon_sym_RBRACE, - STATE(9371), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342006] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14225), 1, - anon_sym_RBRACE, - STATE(9372), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342020] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14227), 1, - anon_sym_RPAREN, - STATE(9373), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342034] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14229), 1, - sym__left_quoted_string_delimiter, - STATE(9374), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342048] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14231), 1, - sym__identifier, - STATE(9375), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342062] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14233), 1, - anon_sym_RBRACK, - STATE(9376), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342076] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14235), 1, - anon_sym_RBRACE, - STATE(9377), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342090] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14237), 1, - anon_sym_PIPE, - STATE(9378), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342104] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14239), 1, - anon_sym_RBRACE, - STATE(9379), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342118] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14241), 1, - anon_sym_DOT_DOT, - STATE(9380), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342132] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14243), 1, - anon_sym_DOT_DOT, - STATE(9381), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342146] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14245), 1, - anon_sym_DOT_DOT, - STATE(9382), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342160] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14247), 1, - anon_sym_RBRACE, - STATE(9383), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342174] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14249), 1, - anon_sym_DQUOTE, - STATE(9384), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342188] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14251), 1, - anon_sym_SQUOTE, - STATE(9385), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342202] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14253), 1, - anon_sym_RBRACK, - STATE(9386), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342216] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(9994), 1, - anon_sym_end, - STATE(9387), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342230] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14255), 1, - anon_sym_DQUOTE, - STATE(9388), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342244] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14257), 1, - anon_sym_RBRACE, - STATE(9389), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342258] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10972), 1, - anon_sym_GT_RBRACE, - STATE(9390), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342272] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14259), 1, - anon_sym_RPAREN, - STATE(9391), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342286] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10769), 1, - anon_sym_GT_RBRACE, - STATE(9392), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342300] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14261), 1, - sym__left_quoted_string_delimiter, - STATE(9393), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342314] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14263), 1, - sym__identifier, - STATE(9394), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342328] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14265), 1, - anon_sym_RBRACE, - STATE(9395), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342342] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14267), 1, - anon_sym_PIPE, - STATE(9396), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342356] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14269), 1, - anon_sym_DOT_DOT, - STATE(9397), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342370] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14271), 1, - anon_sym_DOT_DOT, - STATE(9398), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342384] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14273), 1, - anon_sym_DOT_DOT, - STATE(9399), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342398] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14275), 1, - anon_sym_RPAREN, - STATE(9400), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342412] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14277), 1, - anon_sym_RBRACE, - STATE(9401), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342426] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14279), 1, - anon_sym_DASH_GT, - STATE(9402), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342440] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14281), 1, - anon_sym_RBRACE, - STATE(9403), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342454] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14283), 1, - anon_sym_RBRACE, - STATE(9404), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342468] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14285), 1, - anon_sym_RBRACK, - STATE(9405), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342482] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14287), 1, - anon_sym_done, - STATE(9406), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342496] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14289), 1, - anon_sym_RBRACE, - STATE(9407), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342510] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14291), 1, - anon_sym_DQUOTE, - STATE(9408), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342524] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14293), 1, - anon_sym_SQUOTE, - STATE(9409), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342538] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14295), 1, - sym__left_quoted_string_delimiter, - STATE(9410), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342552] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14297), 1, - sym__identifier, - STATE(9411), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342566] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1857), 1, - anon_sym_RPAREN, - STATE(9412), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342580] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14299), 1, - anon_sym_DOT_DOT, - STATE(9413), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342594] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14301), 1, - anon_sym_DOT_DOT, - STATE(9414), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342608] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14303), 1, - anon_sym_DOT_DOT, - STATE(9415), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342622] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14305), 1, - anon_sym_RBRACE, - STATE(9416), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342636] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12137), 1, - anon_sym_RBRACK, - STATE(9417), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342650] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14307), 1, - anon_sym_RPAREN, - STATE(9418), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342664] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14309), 1, - anon_sym_COLON, - STATE(9419), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342678] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14311), 1, - anon_sym_RBRACE, - STATE(9420), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342692] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14313), 1, - anon_sym_DOT, - STATE(9421), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342706] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14315), 1, - anon_sym_RPAREN, - STATE(9422), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342720] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14317), 1, - anon_sym_RBRACE, - STATE(9423), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342734] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14319), 1, - anon_sym_RBRACE, - STATE(9424), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342748] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14321), 1, - anon_sym_RPAREN, - STATE(9425), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342762] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14323), 1, - sym__left_quoted_string_delimiter, - STATE(9426), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342776] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14325), 1, - sym__identifier, - STATE(9427), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342790] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14327), 1, - anon_sym_RBRACE, - STATE(9428), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342804] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14329), 1, - anon_sym_DOT_DOT, - STATE(9429), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342818] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14331), 1, - anon_sym_DOT_DOT, - STATE(9430), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342832] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14333), 1, - anon_sym_DOT_DOT, - STATE(9431), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342846] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14335), 1, - anon_sym_RBRACK, - STATE(9432), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342860] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14337), 1, - anon_sym_RBRACE, - STATE(9433), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342874] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14339), 1, - anon_sym_RBRACK, - STATE(9434), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342888] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14341), 1, - anon_sym_RBRACE, - STATE(9435), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342902] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14343), 1, - anon_sym_PLUS_EQ, - STATE(9436), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342916] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14345), 1, - anon_sym_DQUOTE, - STATE(9437), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342930] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14347), 1, - anon_sym_SQUOTE, - STATE(9438), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342944] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1845), 1, - anon_sym_RPAREN, - STATE(9439), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342958] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14349), 1, - anon_sym_RPAREN, - STATE(9440), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342972] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14351), 1, - anon_sym_RBRACE, - STATE(9441), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [342986] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14353), 1, - sym__left_quoted_string_delimiter, - STATE(9442), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343000] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14355), 1, - sym__identifier, - STATE(9443), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343014] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14357), 1, - anon_sym_RPAREN, - STATE(9444), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343028] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14359), 1, - anon_sym_DOT_DOT, - STATE(9445), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343042] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14361), 1, - anon_sym_DOT_DOT, - STATE(9446), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343056] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14363), 1, - anon_sym_DOT_DOT, - STATE(9447), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343070] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14365), 1, - anon_sym_in, - STATE(9448), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343084] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14367), 1, - anon_sym_RBRACE, - STATE(9449), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343098] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5362), 1, - anon_sym_RPAREN, - STATE(9450), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343112] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14369), 1, - anon_sym_RBRACK, - STATE(9451), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343126] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1861), 1, - anon_sym_RPAREN, - STATE(9452), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343140] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14371), 1, - anon_sym_RPAREN, - STATE(9453), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343154] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14373), 1, - anon_sym_RPAREN, - STATE(9454), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343168] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14375), 1, - anon_sym_RPAREN, - STATE(9455), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343182] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14377), 1, - anon_sym_RBRACE, - STATE(9456), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343196] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14379), 1, - anon_sym_in, - STATE(9457), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343210] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14381), 1, - sym__left_quoted_string_delimiter, - STATE(9458), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343224] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14383), 1, - anon_sym_RBRACE, - STATE(9459), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343238] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14385), 1, - anon_sym_DOT_DOT, - STATE(9460), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343252] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14387), 1, - anon_sym_DOT_DOT, - STATE(9461), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343266] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14389), 1, - anon_sym_DOT_DOT, - STATE(9462), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343280] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14391), 1, - anon_sym_in, - STATE(9463), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343294] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14393), 1, - anon_sym_RBRACK, - STATE(9464), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343308] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14395), 1, - anon_sym_in, - STATE(9465), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343322] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14397), 1, - anon_sym_RBRACE, - STATE(9466), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343336] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(877), 1, - anon_sym_end, - STATE(9467), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343350] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14399), 1, - anon_sym_in, - STATE(9468), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343364] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5454), 1, - anon_sym_RPAREN, - STATE(9469), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343378] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14401), 1, - anon_sym_DQUOTE, - STATE(9470), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343392] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14403), 1, - anon_sym_SQUOTE, - STATE(9471), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343406] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14405), 1, - anon_sym_RPAREN, - STATE(9472), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343420] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14407), 1, - sym__left_quoted_string_delimiter, - STATE(9473), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343434] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14409), 1, - anon_sym_RPAREN, - STATE(9474), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343448] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14411), 1, - anon_sym_DOT_DOT, - STATE(9475), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343462] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14413), 1, - anon_sym_DOT_DOT, - STATE(9476), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343476] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14415), 1, - anon_sym_DOT_DOT, - STATE(9477), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343490] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1821), 1, - anon_sym_RPAREN, - STATE(9478), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343504] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5466), 1, - anon_sym_RPAREN, - STATE(9479), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343518] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5442), 1, - anon_sym_RPAREN, - STATE(9480), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343532] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14417), 1, - anon_sym_RPAREN, - STATE(9481), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343546] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1877), 1, - anon_sym_RPAREN, - STATE(9482), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343560] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14419), 1, - anon_sym_RPAREN, - STATE(9483), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343574] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5474), 1, - anon_sym_RPAREN, - STATE(9484), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343588] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14421), 1, - anon_sym_RPAREN, - STATE(9485), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343602] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14423), 1, - anon_sym_end, - STATE(9486), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343616] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14425), 1, - anon_sym_RPAREN, - STATE(9487), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343630] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14427), 1, - sym__left_quoted_string_delimiter, - STATE(9488), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343644] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14429), 1, - anon_sym_RPAREN, - STATE(9489), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343658] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14431), 1, - anon_sym_DOT_DOT, - STATE(9490), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343672] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14433), 1, - anon_sym_DOT_DOT, - STATE(9491), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343686] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14435), 1, - anon_sym_DOT_DOT, - STATE(9492), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343700] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14437), 1, - sym_indexing_operator, - STATE(9493), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343714] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(5478), 1, - anon_sym_RPAREN, - STATE(9494), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343728] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14439), 1, - anon_sym_DOT, - STATE(9495), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343742] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14441), 1, - anon_sym_RBRACE, - STATE(9496), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343756] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14443), 1, - anon_sym_in, - STATE(9497), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343770] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14445), 1, - anon_sym_in, - STATE(9498), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343784] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14447), 1, - anon_sym_in, - STATE(9499), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343798] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14449), 1, - anon_sym_RPAREN, - STATE(9500), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343812] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14451), 1, - anon_sym_RBRACE, - STATE(9501), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343826] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(11953), 1, - aux_sym_number_token1, - STATE(9502), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343840] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14453), 1, - sym__left_quoted_string_delimiter, - STATE(9503), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343854] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14455), 1, - anon_sym_RPAREN, - STATE(9504), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343868] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14457), 1, - anon_sym_DOT_DOT, - STATE(9505), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343882] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14459), 1, - anon_sym_DOT_DOT, - STATE(9506), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343896] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14461), 1, - anon_sym_DOT_DOT, - STATE(9507), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343910] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14463), 1, - anon_sym_DQUOTE, - STATE(9508), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343924] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(2477), 1, - anon_sym_end, - STATE(9509), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343938] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14465), 1, - anon_sym_RBRACE, - STATE(9510), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343952] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14467), 1, - anon_sym_RBRACK, - STATE(9511), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343966] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14469), 1, - anon_sym_RBRACE, - STATE(9512), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343980] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14471), 1, - anon_sym_RPAREN, - STATE(9513), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [343994] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14473), 1, - aux_sym_number_token1, - STATE(9514), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344008] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14475), 1, - anon_sym_DQUOTE, - STATE(9515), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344022] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14477), 1, - anon_sym_SQUOTE, - STATE(9516), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344036] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14479), 1, - ts_builtin_sym_end, - STATE(9517), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344050] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14481), 1, - sym__left_quoted_string_delimiter, - STATE(9518), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344064] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14483), 1, - anon_sym_RBRACK, - STATE(9519), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344078] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14485), 1, - anon_sym_DOT_DOT, - STATE(9520), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344092] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14487), 1, - anon_sym_DOT_DOT, - STATE(9521), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344106] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14489), 1, - anon_sym_DOT_DOT, - STATE(9522), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344120] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14491), 1, - anon_sym_DOT, - STATE(9523), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344134] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14493), 1, - anon_sym_RPAREN, - STATE(9524), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344148] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14495), 1, - anon_sym_RPAREN, - STATE(9525), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344162] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8162), 1, - anon_sym_RPAREN, - STATE(9526), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344176] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14497), 1, - anon_sym_RPAREN, - STATE(9527), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344190] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14499), 1, - anon_sym_RBRACE, - STATE(9528), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344204] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14501), 1, - anon_sym_RPAREN, - STATE(9529), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344218] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14503), 1, - anon_sym_RBRACE, - STATE(9530), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344232] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14505), 1, - anon_sym_RPAREN, - STATE(9531), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344246] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(575), 1, - ts_builtin_sym_end, - STATE(9532), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344260] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14507), 1, - sym__left_quoted_string_delimiter, - STATE(9533), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344274] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14509), 1, - anon_sym_RBRACE, - STATE(9534), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344288] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14511), 1, - anon_sym_DOT_DOT, - STATE(9535), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344302] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14513), 1, - anon_sym_DOT_DOT, - STATE(9536), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344316] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14515), 1, - anon_sym_DOT_DOT, - STATE(9537), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344330] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14517), 1, - anon_sym_RPAREN, - STATE(9538), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344344] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14519), 1, - ts_builtin_sym_end, - STATE(9539), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344358] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14521), 1, - anon_sym_RBRACE, - STATE(9540), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344372] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14523), 1, - anon_sym_RBRACK, - STATE(9541), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344386] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14525), 1, - anon_sym_RBRACE, - STATE(9542), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344400] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14527), 1, - sym__left_quoted_string_delimiter, - STATE(9543), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344414] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14529), 1, - anon_sym_DQUOTE, - STATE(9544), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344428] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14531), 1, - anon_sym_DOT_DOT, - STATE(9545), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344442] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14533), 1, - anon_sym_DOT_DOT, - STATE(9546), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344456] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14535), 1, - anon_sym_DOT_DOT, - STATE(9547), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344470] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14537), 1, - anon_sym_SQUOTE, - STATE(9548), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344484] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1855), 1, - anon_sym_RPAREN, - STATE(9549), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344498] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14539), 1, - anon_sym_RPAREN, - STATE(9550), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344512] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14541), 1, - anon_sym_RBRACE, - STATE(9551), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344526] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14543), 1, - anon_sym_of, - STATE(9552), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344540] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14545), 1, - sym__left_quoted_string_delimiter, - STATE(9553), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344554] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14547), 1, - anon_sym_RPAREN, - STATE(9554), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344568] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14549), 1, - anon_sym_DOT_DOT, - STATE(9555), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344582] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14551), 1, - anon_sym_DOT_DOT, - STATE(9556), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344596] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14553), 1, - anon_sym_DOT_DOT, - STATE(9557), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344610] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14555), 1, - anon_sym_end, - STATE(9558), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344624] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14557), 1, - anon_sym_RBRACE, - STATE(9559), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344638] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14559), 1, - anon_sym_RPAREN, - STATE(9560), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344652] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14561), 1, - anon_sym_RBRACE, - STATE(9561), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344666] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14563), 1, - sym__left_quoted_string_delimiter, - STATE(9562), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344680] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14565), 1, - anon_sym_DOT_DOT, - STATE(9563), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344694] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14567), 1, - anon_sym_DOT_DOT, - STATE(9564), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344708] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14569), 1, - anon_sym_DOT_DOT, - STATE(9565), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344722] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14571), 1, - anon_sym_RPAREN, - STATE(9566), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344736] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14573), 1, - anon_sym_RBRACE, - STATE(9567), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344750] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14575), 1, - sym__left_quoted_string_delimiter, - STATE(9568), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344764] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14577), 1, - anon_sym_DOT_DOT, - STATE(9569), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344778] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14579), 1, - anon_sym_DOT_DOT, - STATE(9570), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344792] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14581), 1, - anon_sym_DOT_DOT, - STATE(9571), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344806] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14583), 1, - anon_sym_RBRACE, - STATE(9572), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344820] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14585), 1, - anon_sym_RBRACK, - STATE(9573), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344834] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14587), 1, - sym__left_quoted_string_delimiter, - STATE(9574), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344848] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14589), 1, - anon_sym_DOT_DOT, - STATE(9575), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344862] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14591), 1, - anon_sym_DOT_DOT, - STATE(9576), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344876] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14593), 1, - anon_sym_DOT_DOT, - STATE(9577), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344890] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14595), 1, - anon_sym_RBRACE, - STATE(9578), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344904] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14597), 1, - anon_sym_DQUOTE, - STATE(9579), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344918] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14599), 1, - sym__left_quoted_string_delimiter, - STATE(9580), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344932] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14601), 1, - anon_sym_DOT_DOT, - STATE(9581), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344946] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14603), 1, - anon_sym_DOT_DOT, - STATE(9582), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344960] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14605), 1, - anon_sym_DOT_DOT, - STATE(9583), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344974] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14607), 1, - anon_sym_SQUOTE, - STATE(9584), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [344988] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1869), 1, - anon_sym_RPAREN, - STATE(9585), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345002] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14609), 1, - sym__left_quoted_string_delimiter, - STATE(9586), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345016] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14611), 1, - anon_sym_DOT_DOT, - STATE(9587), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345030] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14613), 1, - anon_sym_DOT_DOT, - STATE(9588), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345044] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14615), 1, - anon_sym_DOT_DOT, - STATE(9589), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345058] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14617), 1, - anon_sym_RPAREN, - STATE(9590), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345072] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14619), 1, - anon_sym_RPAREN, - STATE(9591), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345086] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14621), 1, - sym__left_quoted_string_delimiter, - STATE(9592), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345100] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14623), 1, - anon_sym_DOT_DOT, - STATE(9593), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345114] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14625), 1, - anon_sym_DOT_DOT, - STATE(9594), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345128] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14627), 1, - anon_sym_DOT_DOT, - STATE(9595), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345142] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14629), 1, - anon_sym_RBRACE, - STATE(9596), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345156] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14631), 1, - anon_sym_RPAREN, - STATE(9597), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345170] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14633), 1, - sym__left_quoted_string_delimiter, - STATE(9598), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345184] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14635), 1, - anon_sym_DOT_DOT, - STATE(9599), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345198] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14637), 1, - anon_sym_DOT_DOT, - STATE(9600), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345212] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14639), 1, - anon_sym_DOT_DOT, - STATE(9601), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345226] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14641), 1, - anon_sym_RBRACE, - STATE(9602), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345240] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14643), 1, - anon_sym_RPAREN, - STATE(9603), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345254] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14645), 1, - sym__left_quoted_string_delimiter, - STATE(9604), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345268] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14647), 1, - anon_sym_DOT_DOT, - STATE(9605), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345282] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14649), 1, - anon_sym_DOT_DOT, - STATE(9606), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345296] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14651), 1, - anon_sym_DOT_DOT, - STATE(9607), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345310] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14653), 1, - anon_sym_RBRACE, - STATE(9608), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345324] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14655), 1, - sym__left_quoted_string_delimiter, - STATE(9609), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345338] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14657), 1, - anon_sym_RBRACE, - STATE(9610), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345352] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14659), 1, - sym__left_quoted_string_delimiter, - STATE(9611), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345366] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14661), 1, - anon_sym_RBRACK, - STATE(9612), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345380] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14663), 1, - sym__left_quoted_string_delimiter, - STATE(9613), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345394] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14665), 1, - anon_sym_RBRACE, - STATE(9614), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345408] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14667), 1, - sym__left_quoted_string_delimiter, - STATE(9615), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345422] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14669), 1, - anon_sym_RBRACK, - STATE(9616), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345436] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14671), 1, - sym__left_quoted_string_delimiter, - STATE(9617), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345450] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14673), 1, - anon_sym_SQUOTE, - STATE(9618), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345464] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14675), 1, - sym__left_quoted_string_delimiter, - STATE(9619), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345478] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1879), 1, - anon_sym_RPAREN, - STATE(9620), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345492] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14677), 1, - anon_sym_RPAREN, - STATE(9621), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345506] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14679), 1, - anon_sym_RBRACE, - STATE(9622), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345520] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14681), 1, - sym_indexing_operator, - STATE(9623), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345534] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14683), 1, - anon_sym_in, - STATE(9624), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345548] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14685), 1, - sym__identifier, - STATE(9625), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345562] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14687), 1, - anon_sym_PLUS_EQ, - STATE(9626), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345576] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14689), 1, - anon_sym_RPAREN, - STATE(9627), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345590] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14691), 1, - anon_sym_in, - STATE(9628), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345604] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14693), 1, - anon_sym_RPAREN, - STATE(9629), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345618] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14695), 1, - anon_sym_PLUS_EQ, - STATE(9630), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345632] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14697), 1, - anon_sym_RBRACE, - STATE(9631), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345646] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14699), 1, - sym__left_quoted_string_delimiter, - STATE(9632), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345660] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14701), 1, - anon_sym_RBRACE, - STATE(9633), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345674] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14703), 1, - anon_sym_RBRACE, - STATE(9634), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345688] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14705), 1, - sym__identifier, - STATE(9635), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345702] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14707), 1, - sym__identifier, - STATE(9636), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345716] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14709), 1, - anon_sym_RPAREN, - STATE(9637), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345730] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14711), 1, - anon_sym_RBRACE, - STATE(9638), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345744] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14713), 1, - anon_sym_RPAREN, - STATE(9639), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345758] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14715), 1, - anon_sym_RPAREN, - STATE(9640), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345772] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14717), 1, - anon_sym_RBRACE, - STATE(9641), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345786] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14719), 1, - sym__identifier, - STATE(9642), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345800] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14721), 1, - anon_sym_RPAREN, - STATE(9643), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345814] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14723), 1, - sym__identifier, - STATE(9644), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345828] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14725), 1, - anon_sym_RPAREN, - STATE(9645), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345842] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14727), 1, - anon_sym_RBRACE, - STATE(9646), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345856] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14729), 1, - anon_sym_RBRACK, - STATE(9647), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345870] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14731), 1, - anon_sym_RPAREN, - STATE(9648), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345884] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14733), 1, - anon_sym_RBRACE, - STATE(9649), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345898] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14735), 1, - anon_sym_RPAREN, - STATE(9650), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345912] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14737), 1, - anon_sym_RBRACE, - STATE(9651), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345926] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14739), 1, - sym_indexing_operator, - STATE(9652), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345940] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14741), 1, - anon_sym_RPAREN, - STATE(9653), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345954] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14743), 1, - sym__identifier, - STATE(9654), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345968] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14745), 1, - anon_sym_RBRACK, - STATE(9655), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345982] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14747), 1, - anon_sym_RBRACE, - STATE(9656), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [345996] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14749), 1, - anon_sym_RPAREN, - STATE(9657), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346010] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14751), 1, - anon_sym_DQUOTE, - STATE(9658), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346024] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14753), 1, - sym_indexing_operator, - STATE(9659), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346038] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12465), 1, - anon_sym_RBRACE, - STATE(9660), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346052] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14755), 1, - anon_sym_SQUOTE, - STATE(9661), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346066] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14757), 1, - anon_sym_RBRACE, - STATE(9662), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346080] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14759), 1, - sym_indexing_operator, - STATE(9663), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346094] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14761), 1, - anon_sym_RPAREN, - STATE(9664), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346108] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14763), 1, - sym_indexing_operator, - STATE(9665), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346122] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14765), 1, - anon_sym_RBRACK, - STATE(9666), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346136] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14767), 1, - sym_indexing_operator, - STATE(9667), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346150] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14769), 1, - anon_sym_RBRACE, - STATE(9668), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346164] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14771), 1, - sym_indexing_operator, - STATE(9669), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346178] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14773), 1, - anon_sym_RPAREN, - STATE(9670), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346192] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14775), 1, - sym_indexing_operator, - STATE(9671), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346206] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1863), 1, - anon_sym_RPAREN, - STATE(9672), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346220] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14777), 1, - sym_indexing_operator, - STATE(9673), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346234] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14779), 1, - anon_sym_RBRACE, - STATE(9674), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346248] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14781), 1, - sym_indexing_operator, - STATE(9675), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346262] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14783), 1, - anon_sym_RPAREN, - STATE(9676), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346276] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14785), 1, - sym_indexing_operator, - STATE(9677), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346290] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14787), 1, - anon_sym_RPAREN, - STATE(9678), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346304] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14789), 1, - sym_indexing_operator, - STATE(9679), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346318] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14791), 1, - anon_sym_RPAREN, - STATE(9680), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346332] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14793), 1, - sym_indexing_operator, - STATE(9681), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346346] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14795), 1, - anon_sym_RPAREN, - STATE(9682), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346360] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14797), 1, - sym_indexing_operator, - STATE(9683), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346374] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1819), 1, - anon_sym_RPAREN, - STATE(9684), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346388] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14799), 1, - sym_indexing_operator, - STATE(9685), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346402] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14801), 1, - anon_sym_RBRACE, - STATE(9686), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346416] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14803), 1, - sym_indexing_operator, - STATE(9687), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346430] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10393), 1, - anon_sym_GT_RBRACE, - STATE(9688), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346444] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14805), 1, - sym_indexing_operator, - STATE(9689), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346458] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14807), 1, - anon_sym_RPAREN, - STATE(9690), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346472] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14809), 1, - sym_indexing_operator, - STATE(9691), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346486] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14811), 1, - anon_sym_RBRACE, - STATE(9692), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346500] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14813), 1, - sym_indexing_operator, - STATE(9693), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346514] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14815), 1, - anon_sym_RBRACK, - STATE(9694), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346528] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14817), 1, - sym_indexing_operator, - STATE(9695), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346542] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14819), 1, - anon_sym_RPAREN, - STATE(9696), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346556] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14821), 1, - sym_indexing_operator, - STATE(9697), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346570] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14823), 1, - anon_sym_RBRACE, - STATE(9698), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346584] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14825), 1, - sym_indexing_operator, - STATE(9699), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346598] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10175), 1, - anon_sym_end, - STATE(9700), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346612] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14827), 1, - sym_indexing_operator, - STATE(9701), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346626] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14829), 1, - anon_sym_SQUOTE, - STATE(9702), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346640] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14831), 1, - sym_indexing_operator, - STATE(9703), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346654] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14833), 1, - anon_sym_DQUOTE, - STATE(9704), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346668] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14835), 1, - anon_sym_RPAREN, - STATE(9705), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346682] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14837), 1, - anon_sym_RPAREN, - STATE(9706), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346696] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14839), 1, - anon_sym_RPAREN, - STATE(9707), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346710] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14841), 1, - anon_sym_RBRACE, - STATE(9708), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346724] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14843), 1, - anon_sym_RBRACK, - STATE(9709), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346738] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14845), 1, - anon_sym_RPAREN, - STATE(9710), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346752] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14847), 1, - anon_sym_EQ, - STATE(9711), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346766] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14849), 1, - anon_sym_RPAREN, - STATE(9712), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346780] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14851), 1, - anon_sym_RBRACE, - STATE(9713), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346794] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14853), 1, - sym__identifier, - STATE(9714), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346808] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14855), 1, - anon_sym_EQ, - STATE(9715), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346822] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14857), 1, - anon_sym_RBRACE, - STATE(9716), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346836] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14859), 1, - anon_sym_RBRACE, - STATE(9717), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346850] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8066), 1, - anon_sym_RPAREN, - STATE(9718), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346864] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14861), 1, - anon_sym_RBRACK, - STATE(9719), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346878] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14863), 1, - anon_sym_end, - STATE(9720), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346892] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14865), 1, - sym__identifier, - STATE(9721), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346906] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14867), 1, - anon_sym_end, - STATE(9722), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346920] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14869), 1, - anon_sym_RBRACE, - STATE(9723), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346934] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14871), 1, - anon_sym_EQ, - STATE(9724), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346948] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14873), 1, - anon_sym_EQ, - STATE(9725), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346962] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14875), 1, - anon_sym_RBRACK, - STATE(9726), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346976] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(8048), 1, - anon_sym_RPAREN, - STATE(9727), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [346990] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14877), 1, - sym__identifier, - STATE(9728), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347004] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14879), 1, - anon_sym_EQ, - STATE(9729), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347018] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14881), 1, - anon_sym_EQ, - STATE(9730), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347032] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14883), 1, - anon_sym_RBRACE, - STATE(9731), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347046] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(6163), 1, - anon_sym_GT, - STATE(9732), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347060] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14885), 1, - anon_sym_RPAREN, - STATE(9733), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347074] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(12513), 1, - anon_sym_RBRACE, - STATE(9734), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347088] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14887), 1, - anon_sym_DQUOTE, - STATE(9735), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347102] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14889), 1, - anon_sym_SQUOTE, - STATE(9736), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347116] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10237), 1, - anon_sym_end, - STATE(9737), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347130] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(10312), 1, - anon_sym_GT_RBRACE, - STATE(9738), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347144] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14891), 1, - anon_sym_RBRACE, - STATE(9739), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347158] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14893), 1, - anon_sym_RBRACE, - STATE(9740), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347172] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14895), 1, - anon_sym_RBRACE, - STATE(9741), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347186] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14897), 1, - anon_sym_RPAREN, - STATE(9742), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347200] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14899), 1, - anon_sym_RPAREN, - STATE(9743), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347214] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14901), 1, - anon_sym_RBRACK, - STATE(9744), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347228] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14903), 1, - anon_sym_RPAREN, - STATE(9745), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347242] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14905), 1, - anon_sym_RBRACE, - STATE(9746), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347256] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14907), 1, - anon_sym_RBRACE, - STATE(9747), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347270] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14909), 1, - anon_sym_RPAREN, - STATE(9748), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347284] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14911), 1, - anon_sym_RPAREN, - STATE(9749), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347298] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14913), 1, - anon_sym_GT, - STATE(9750), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347312] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14915), 1, - anon_sym_RPAREN, - STATE(9751), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347326] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(1851), 1, - anon_sym_RPAREN, - STATE(9752), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347340] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14917), 1, - anon_sym_RPAREN, - STATE(9753), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347354] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14919), 1, - anon_sym_RPAREN, - STATE(9754), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347368] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14921), 1, - anon_sym_RBRACE, - STATE(9755), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347382] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14923), 1, - anon_sym_RPAREN, - STATE(9756), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347396] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14925), 1, - anon_sym_RPAREN, - STATE(9757), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347410] = 4, - ACTIONS(467), 1, - anon_sym_LBRACK_AT, - ACTIONS(14927), 1, - anon_sym_RBRACE, - STATE(9758), 1, - sym_attribute, - ACTIONS(5), 2, - sym_comment, - sym_line_number_directive, - [347424] = 1, - ACTIONS(14929), 1, - ts_builtin_sym_end, - [347428] = 1, - ACTIONS(14931), 1, - ts_builtin_sym_end, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1983)] = 0, - [SMALL_STATE(1984)] = 137, - [SMALL_STATE(1985)] = 274, - [SMALL_STATE(1986)] = 411, - [SMALL_STATE(1987)] = 548, - [SMALL_STATE(1988)] = 685, - [SMALL_STATE(1989)] = 822, - [SMALL_STATE(1990)] = 959, - [SMALL_STATE(1991)] = 1104, - [SMALL_STATE(1992)] = 1241, - [SMALL_STATE(1993)] = 1378, - [SMALL_STATE(1994)] = 1515, - [SMALL_STATE(1995)] = 1652, - [SMALL_STATE(1996)] = 1789, - [SMALL_STATE(1997)] = 1926, - [SMALL_STATE(1998)] = 2063, - [SMALL_STATE(1999)] = 2200, - [SMALL_STATE(2000)] = 2337, - [SMALL_STATE(2001)] = 2482, - [SMALL_STATE(2002)] = 2619, - [SMALL_STATE(2003)] = 2756, - [SMALL_STATE(2004)] = 2893, - [SMALL_STATE(2005)] = 3030, - [SMALL_STATE(2006)] = 3167, - [SMALL_STATE(2007)] = 3304, - [SMALL_STATE(2008)] = 3441, - [SMALL_STATE(2009)] = 3578, - [SMALL_STATE(2010)] = 3715, - [SMALL_STATE(2011)] = 3852, - [SMALL_STATE(2012)] = 3989, - [SMALL_STATE(2013)] = 4126, - [SMALL_STATE(2014)] = 4263, - [SMALL_STATE(2015)] = 4400, - [SMALL_STATE(2016)] = 4537, - [SMALL_STATE(2017)] = 4674, - [SMALL_STATE(2018)] = 4811, - [SMALL_STATE(2019)] = 4948, - [SMALL_STATE(2020)] = 5083, - [SMALL_STATE(2021)] = 5218, - [SMALL_STATE(2022)] = 5353, - [SMALL_STATE(2023)] = 5488, - [SMALL_STATE(2024)] = 5625, - [SMALL_STATE(2025)] = 5762, - [SMALL_STATE(2026)] = 5899, - [SMALL_STATE(2027)] = 6036, - [SMALL_STATE(2028)] = 6173, - [SMALL_STATE(2029)] = 6310, - [SMALL_STATE(2030)] = 6447, - [SMALL_STATE(2031)] = 6584, - [SMALL_STATE(2032)] = 6721, - [SMALL_STATE(2033)] = 6858, - [SMALL_STATE(2034)] = 6995, - [SMALL_STATE(2035)] = 7132, - [SMALL_STATE(2036)] = 7269, - [SMALL_STATE(2037)] = 7406, - [SMALL_STATE(2038)] = 7543, - [SMALL_STATE(2039)] = 7680, - [SMALL_STATE(2040)] = 7817, - [SMALL_STATE(2041)] = 7954, - [SMALL_STATE(2042)] = 8091, - [SMALL_STATE(2043)] = 8228, - [SMALL_STATE(2044)] = 8365, - [SMALL_STATE(2045)] = 8502, - [SMALL_STATE(2046)] = 8639, - [SMALL_STATE(2047)] = 8776, - [SMALL_STATE(2048)] = 8921, - [SMALL_STATE(2049)] = 9058, - [SMALL_STATE(2050)] = 9195, - [SMALL_STATE(2051)] = 9340, - [SMALL_STATE(2052)] = 9477, - [SMALL_STATE(2053)] = 9614, - [SMALL_STATE(2054)] = 9751, - [SMALL_STATE(2055)] = 9888, - [SMALL_STATE(2056)] = 10025, - [SMALL_STATE(2057)] = 10162, - [SMALL_STATE(2058)] = 10299, - [SMALL_STATE(2059)] = 10444, - [SMALL_STATE(2060)] = 10581, - [SMALL_STATE(2061)] = 10718, - [SMALL_STATE(2062)] = 10855, - [SMALL_STATE(2063)] = 10992, - [SMALL_STATE(2064)] = 11129, - [SMALL_STATE(2065)] = 11266, - [SMALL_STATE(2066)] = 11403, - [SMALL_STATE(2067)] = 11540, - [SMALL_STATE(2068)] = 11674, - [SMALL_STATE(2069)] = 11808, - [SMALL_STATE(2070)] = 11942, - [SMALL_STATE(2071)] = 12076, - [SMALL_STATE(2072)] = 12210, - [SMALL_STATE(2073)] = 12344, - [SMALL_STATE(2074)] = 12478, - [SMALL_STATE(2075)] = 12612, - [SMALL_STATE(2076)] = 12746, - [SMALL_STATE(2077)] = 12877, - [SMALL_STATE(2078)] = 13008, - [SMALL_STATE(2079)] = 13139, - [SMALL_STATE(2080)] = 13270, - [SMALL_STATE(2081)] = 13401, - [SMALL_STATE(2082)] = 13532, - [SMALL_STATE(2083)] = 13605, - [SMALL_STATE(2084)] = 13736, - [SMALL_STATE(2085)] = 13809, - [SMALL_STATE(2086)] = 13940, - [SMALL_STATE(2087)] = 14071, - [SMALL_STATE(2088)] = 14202, - [SMALL_STATE(2089)] = 14333, - [SMALL_STATE(2090)] = 14460, - [SMALL_STATE(2091)] = 14591, - [SMALL_STATE(2092)] = 14722, - [SMALL_STATE(2093)] = 14853, - [SMALL_STATE(2094)] = 14980, - [SMALL_STATE(2095)] = 15111, - [SMALL_STATE(2096)] = 15242, - [SMALL_STATE(2097)] = 15373, - [SMALL_STATE(2098)] = 15500, - [SMALL_STATE(2099)] = 15631, - [SMALL_STATE(2100)] = 15762, - [SMALL_STATE(2101)] = 15889, - [SMALL_STATE(2102)] = 16016, - [SMALL_STATE(2103)] = 16147, - [SMALL_STATE(2104)] = 16286, - [SMALL_STATE(2105)] = 16417, - [SMALL_STATE(2106)] = 16548, - [SMALL_STATE(2107)] = 16679, - [SMALL_STATE(2108)] = 16810, - [SMALL_STATE(2109)] = 16937, - [SMALL_STATE(2110)] = 17068, - [SMALL_STATE(2111)] = 17195, - [SMALL_STATE(2112)] = 17326, - [SMALL_STATE(2113)] = 17457, - [SMALL_STATE(2114)] = 17584, - [SMALL_STATE(2115)] = 17657, - [SMALL_STATE(2116)] = 17788, - [SMALL_STATE(2117)] = 17919, - [SMALL_STATE(2118)] = 18050, - [SMALL_STATE(2119)] = 18123, - [SMALL_STATE(2120)] = 18254, - [SMALL_STATE(2121)] = 18381, - [SMALL_STATE(2122)] = 18512, - [SMALL_STATE(2123)] = 18643, - [SMALL_STATE(2124)] = 18774, - [SMALL_STATE(2125)] = 18905, - [SMALL_STATE(2126)] = 19036, - [SMALL_STATE(2127)] = 19163, - [SMALL_STATE(2128)] = 19294, - [SMALL_STATE(2129)] = 19425, - [SMALL_STATE(2130)] = 19556, - [SMALL_STATE(2131)] = 19695, - [SMALL_STATE(2132)] = 19822, - [SMALL_STATE(2133)] = 19953, - [SMALL_STATE(2134)] = 20084, - [SMALL_STATE(2135)] = 20215, - [SMALL_STATE(2136)] = 20346, - [SMALL_STATE(2137)] = 20473, - [SMALL_STATE(2138)] = 20604, - [SMALL_STATE(2139)] = 20735, - [SMALL_STATE(2140)] = 20866, - [SMALL_STATE(2141)] = 20997, - [SMALL_STATE(2142)] = 21128, - [SMALL_STATE(2143)] = 21255, - [SMALL_STATE(2144)] = 21382, - [SMALL_STATE(2145)] = 21513, - [SMALL_STATE(2146)] = 21644, - [SMALL_STATE(2147)] = 21775, - [SMALL_STATE(2148)] = 21902, - [SMALL_STATE(2149)] = 22033, - [SMALL_STATE(2150)] = 22160, - [SMALL_STATE(2151)] = 22287, - [SMALL_STATE(2152)] = 22414, - [SMALL_STATE(2153)] = 22545, - [SMALL_STATE(2154)] = 22676, - [SMALL_STATE(2155)] = 22800, - [SMALL_STATE(2156)] = 22928, - [SMALL_STATE(2157)] = 23056, - [SMALL_STATE(2158)] = 23180, - [SMALL_STATE(2159)] = 23308, - [SMALL_STATE(2160)] = 23432, - [SMALL_STATE(2161)] = 23560, - [SMALL_STATE(2162)] = 23688, - [SMALL_STATE(2163)] = 23816, - [SMALL_STATE(2164)] = 23940, - [SMALL_STATE(2165)] = 24064, - [SMALL_STATE(2166)] = 24192, - [SMALL_STATE(2167)] = 24316, - [SMALL_STATE(2168)] = 24440, - [SMALL_STATE(2169)] = 24568, - [SMALL_STATE(2170)] = 24692, - [SMALL_STATE(2171)] = 24816, - [SMALL_STATE(2172)] = 24944, - [SMALL_STATE(2173)] = 25072, - [SMALL_STATE(2174)] = 25200, - [SMALL_STATE(2175)] = 25324, - [SMALL_STATE(2176)] = 25452, - [SMALL_STATE(2177)] = 25580, - [SMALL_STATE(2178)] = 25704, - [SMALL_STATE(2179)] = 25832, - [SMALL_STATE(2180)] = 25960, - [SMALL_STATE(2181)] = 26088, - [SMALL_STATE(2182)] = 26216, - [SMALL_STATE(2183)] = 26344, - [SMALL_STATE(2184)] = 26472, - [SMALL_STATE(2185)] = 26600, - [SMALL_STATE(2186)] = 26728, - [SMALL_STATE(2187)] = 26856, - [SMALL_STATE(2188)] = 26984, - [SMALL_STATE(2189)] = 27112, - [SMALL_STATE(2190)] = 27236, - [SMALL_STATE(2191)] = 27364, - [SMALL_STATE(2192)] = 27492, - [SMALL_STATE(2193)] = 27620, - [SMALL_STATE(2194)] = 27748, - [SMALL_STATE(2195)] = 27876, - [SMALL_STATE(2196)] = 28004, - [SMALL_STATE(2197)] = 28128, - [SMALL_STATE(2198)] = 28252, - [SMALL_STATE(2199)] = 28380, - [SMALL_STATE(2200)] = 28508, - [SMALL_STATE(2201)] = 28632, - [SMALL_STATE(2202)] = 28760, - [SMALL_STATE(2203)] = 28884, - [SMALL_STATE(2204)] = 29012, - [SMALL_STATE(2205)] = 29136, - [SMALL_STATE(2206)] = 29264, - [SMALL_STATE(2207)] = 29392, - [SMALL_STATE(2208)] = 29516, - [SMALL_STATE(2209)] = 29644, - [SMALL_STATE(2210)] = 29772, - [SMALL_STATE(2211)] = 29896, - [SMALL_STATE(2212)] = 30020, - [SMALL_STATE(2213)] = 30148, - [SMALL_STATE(2214)] = 30276, - [SMALL_STATE(2215)] = 30400, - [SMALL_STATE(2216)] = 30524, - [SMALL_STATE(2217)] = 30652, - [SMALL_STATE(2218)] = 30780, - [SMALL_STATE(2219)] = 30908, - [SMALL_STATE(2220)] = 31036, - [SMALL_STATE(2221)] = 31160, - [SMALL_STATE(2222)] = 31288, - [SMALL_STATE(2223)] = 31416, - [SMALL_STATE(2224)] = 31544, - [SMALL_STATE(2225)] = 31672, - [SMALL_STATE(2226)] = 31800, - [SMALL_STATE(2227)] = 31924, - [SMALL_STATE(2228)] = 32052, - [SMALL_STATE(2229)] = 32176, - [SMALL_STATE(2230)] = 32304, - [SMALL_STATE(2231)] = 32428, - [SMALL_STATE(2232)] = 32552, - [SMALL_STATE(2233)] = 32680, - [SMALL_STATE(2234)] = 32808, - [SMALL_STATE(2235)] = 32941, - [SMALL_STATE(2236)] = 33062, - [SMALL_STATE(2237)] = 33183, - [SMALL_STATE(2238)] = 33316, - [SMALL_STATE(2239)] = 33449, - [SMALL_STATE(2240)] = 33582, - [SMALL_STATE(2241)] = 33703, - [SMALL_STATE(2242)] = 33836, - [SMALL_STATE(2243)] = 33907, - [SMALL_STATE(2244)] = 34040, - [SMALL_STATE(2245)] = 34173, - [SMALL_STATE(2246)] = 34294, - [SMALL_STATE(2247)] = 34427, - [SMALL_STATE(2248)] = 34560, - [SMALL_STATE(2249)] = 34693, - [SMALL_STATE(2250)] = 34826, - [SMALL_STATE(2251)] = 34947, - [SMALL_STATE(2252)] = 35018, - [SMALL_STATE(2253)] = 35151, - [SMALL_STATE(2254)] = 35272, - [SMALL_STATE(2255)] = 35405, - [SMALL_STATE(2256)] = 35538, - [SMALL_STATE(2257)] = 35671, - [SMALL_STATE(2258)] = 35742, - [SMALL_STATE(2259)] = 35813, - [SMALL_STATE(2260)] = 35946, - [SMALL_STATE(2261)] = 36067, - [SMALL_STATE(2262)] = 36200, - [SMALL_STATE(2263)] = 36271, - [SMALL_STATE(2264)] = 36404, - [SMALL_STATE(2265)] = 36525, - [SMALL_STATE(2266)] = 36646, - [SMALL_STATE(2267)] = 36779, - [SMALL_STATE(2268)] = 36912, - [SMALL_STATE(2269)] = 37033, - [SMALL_STATE(2270)] = 37166, - [SMALL_STATE(2271)] = 37237, - [SMALL_STATE(2272)] = 37370, - [SMALL_STATE(2273)] = 37491, - [SMALL_STATE(2274)] = 37562, - [SMALL_STATE(2275)] = 37695, - [SMALL_STATE(2276)] = 37828, - [SMALL_STATE(2277)] = 37899, - [SMALL_STATE(2278)] = 38032, - [SMALL_STATE(2279)] = 38153, - [SMALL_STATE(2280)] = 38274, - [SMALL_STATE(2281)] = 38407, - [SMALL_STATE(2282)] = 38540, - [SMALL_STATE(2283)] = 38661, - [SMALL_STATE(2284)] = 38732, - [SMALL_STATE(2285)] = 38865, - [SMALL_STATE(2286)] = 38998, - [SMALL_STATE(2287)] = 39131, - [SMALL_STATE(2288)] = 39252, - [SMALL_STATE(2289)] = 39385, - [SMALL_STATE(2290)] = 39518, - [SMALL_STATE(2291)] = 39591, - [SMALL_STATE(2292)] = 39664, - [SMALL_STATE(2293)] = 39785, - [SMALL_STATE(2294)] = 39918, - [SMALL_STATE(2295)] = 40051, - [SMALL_STATE(2296)] = 40172, - [SMALL_STATE(2297)] = 40293, - [SMALL_STATE(2298)] = 40426, - [SMALL_STATE(2299)] = 40559, - [SMALL_STATE(2300)] = 40692, - [SMALL_STATE(2301)] = 40824, - [SMALL_STATE(2302)] = 40942, - [SMALL_STATE(2303)] = 41072, - [SMALL_STATE(2304)] = 41142, - [SMALL_STATE(2305)] = 41260, - [SMALL_STATE(2306)] = 41392, - [SMALL_STATE(2307)] = 41522, - [SMALL_STATE(2308)] = 41652, - [SMALL_STATE(2309)] = 41784, - [SMALL_STATE(2310)] = 41902, - [SMALL_STATE(2311)] = 42020, - [SMALL_STATE(2312)] = 42090, - [SMALL_STATE(2313)] = 42208, - [SMALL_STATE(2314)] = 42278, - [SMALL_STATE(2315)] = 42348, - [SMALL_STATE(2316)] = 42418, - [SMALL_STATE(2317)] = 42488, - [SMALL_STATE(2318)] = 42558, - [SMALL_STATE(2319)] = 42676, - [SMALL_STATE(2320)] = 42746, - [SMALL_STATE(2321)] = 42816, - [SMALL_STATE(2322)] = 42886, - [SMALL_STATE(2323)] = 42956, - [SMALL_STATE(2324)] = 43026, - [SMALL_STATE(2325)] = 43144, - [SMALL_STATE(2326)] = 43274, - [SMALL_STATE(2327)] = 43346, - [SMALL_STATE(2328)] = 43416, - [SMALL_STATE(2329)] = 43486, - [SMALL_STATE(2330)] = 43616, - [SMALL_STATE(2331)] = 43686, - [SMALL_STATE(2332)] = 43804, - [SMALL_STATE(2333)] = 43874, - [SMALL_STATE(2334)] = 43992, - [SMALL_STATE(2335)] = 44122, - [SMALL_STATE(2336)] = 44192, - [SMALL_STATE(2337)] = 44310, - [SMALL_STATE(2338)] = 44442, - [SMALL_STATE(2339)] = 44560, - [SMALL_STATE(2340)] = 44690, - [SMALL_STATE(2341)] = 44808, - [SMALL_STATE(2342)] = 44926, - [SMALL_STATE(2343)] = 45056, - [SMALL_STATE(2344)] = 45174, - [SMALL_STATE(2345)] = 45304, - [SMALL_STATE(2346)] = 45422, - [SMALL_STATE(2347)] = 45552, - [SMALL_STATE(2348)] = 45622, - [SMALL_STATE(2349)] = 45740, - [SMALL_STATE(2350)] = 45870, - [SMALL_STATE(2351)] = 45940, - [SMALL_STATE(2352)] = 46010, - [SMALL_STATE(2353)] = 46080, - [SMALL_STATE(2354)] = 46210, - [SMALL_STATE(2355)] = 46340, - [SMALL_STATE(2356)] = 46410, - [SMALL_STATE(2357)] = 46480, - [SMALL_STATE(2358)] = 46612, - [SMALL_STATE(2359)] = 46730, - [SMALL_STATE(2360)] = 46860, - [SMALL_STATE(2361)] = 46930, - [SMALL_STATE(2362)] = 47062, - [SMALL_STATE(2363)] = 47132, - [SMALL_STATE(2364)] = 47262, - [SMALL_STATE(2365)] = 47332, - [SMALL_STATE(2366)] = 47402, - [SMALL_STATE(2367)] = 47532, - [SMALL_STATE(2368)] = 47662, - [SMALL_STATE(2369)] = 47794, - [SMALL_STATE(2370)] = 47864, - [SMALL_STATE(2371)] = 47996, - [SMALL_STATE(2372)] = 48126, - [SMALL_STATE(2373)] = 48244, - [SMALL_STATE(2374)] = 48314, - [SMALL_STATE(2375)] = 48446, - [SMALL_STATE(2376)] = 48516, - [SMALL_STATE(2377)] = 48646, - [SMALL_STATE(2378)] = 48778, - [SMALL_STATE(2379)] = 48908, - [SMALL_STATE(2380)] = 49038, - [SMALL_STATE(2381)] = 49170, - [SMALL_STATE(2382)] = 49302, - [SMALL_STATE(2383)] = 49372, - [SMALL_STATE(2384)] = 49490, - [SMALL_STATE(2385)] = 49560, - [SMALL_STATE(2386)] = 49692, - [SMALL_STATE(2387)] = 49810, - [SMALL_STATE(2388)] = 49942, - [SMALL_STATE(2389)] = 50012, - [SMALL_STATE(2390)] = 50082, - [SMALL_STATE(2391)] = 50152, - [SMALL_STATE(2392)] = 50224, - [SMALL_STATE(2393)] = 50342, - [SMALL_STATE(2394)] = 50460, - [SMALL_STATE(2395)] = 50578, - [SMALL_STATE(2396)] = 50696, - [SMALL_STATE(2397)] = 50826, - [SMALL_STATE(2398)] = 50896, - [SMALL_STATE(2399)] = 51028, - [SMALL_STATE(2400)] = 51158, - [SMALL_STATE(2401)] = 51288, - [SMALL_STATE(2402)] = 51358, - [SMALL_STATE(2403)] = 51490, - [SMALL_STATE(2404)] = 51608, - [SMALL_STATE(2405)] = 51726, - [SMALL_STATE(2406)] = 51796, - [SMALL_STATE(2407)] = 51928, - [SMALL_STATE(2408)] = 52060, - [SMALL_STATE(2409)] = 52178, - [SMALL_STATE(2410)] = 52296, - [SMALL_STATE(2411)] = 52366, - [SMALL_STATE(2412)] = 52436, - [SMALL_STATE(2413)] = 52506, - [SMALL_STATE(2414)] = 52636, - [SMALL_STATE(2415)] = 52712, - [SMALL_STATE(2416)] = 52842, - [SMALL_STATE(2417)] = 52912, - [SMALL_STATE(2418)] = 53030, - [SMALL_STATE(2419)] = 53148, - [SMALL_STATE(2420)] = 53266, - [SMALL_STATE(2421)] = 53396, - [SMALL_STATE(2422)] = 53526, - [SMALL_STATE(2423)] = 53596, - [SMALL_STATE(2424)] = 53726, - [SMALL_STATE(2425)] = 53844, - [SMALL_STATE(2426)] = 53914, - [SMALL_STATE(2427)] = 54032, - [SMALL_STATE(2428)] = 54102, - [SMALL_STATE(2429)] = 54172, - [SMALL_STATE(2430)] = 54242, - [SMALL_STATE(2431)] = 54312, - [SMALL_STATE(2432)] = 54382, - [SMALL_STATE(2433)] = 54452, - [SMALL_STATE(2434)] = 54522, - [SMALL_STATE(2435)] = 54592, - [SMALL_STATE(2436)] = 54662, - [SMALL_STATE(2437)] = 54780, - [SMALL_STATE(2438)] = 54852, - [SMALL_STATE(2439)] = 54970, - [SMALL_STATE(2440)] = 55040, - [SMALL_STATE(2441)] = 55158, - [SMALL_STATE(2442)] = 55276, - [SMALL_STATE(2443)] = 55346, - [SMALL_STATE(2444)] = 55478, - [SMALL_STATE(2445)] = 55548, - [SMALL_STATE(2446)] = 55680, - [SMALL_STATE(2447)] = 55798, - [SMALL_STATE(2448)] = 55916, - [SMALL_STATE(2449)] = 55986, - [SMALL_STATE(2450)] = 56058, - [SMALL_STATE(2451)] = 56190, - [SMALL_STATE(2452)] = 56262, - [SMALL_STATE(2453)] = 56380, - [SMALL_STATE(2454)] = 56498, - [SMALL_STATE(2455)] = 56616, - [SMALL_STATE(2456)] = 56734, - [SMALL_STATE(2457)] = 56852, - [SMALL_STATE(2458)] = 56970, - [SMALL_STATE(2459)] = 57040, - [SMALL_STATE(2460)] = 57172, - [SMALL_STATE(2461)] = 57242, - [SMALL_STATE(2462)] = 57360, - [SMALL_STATE(2463)] = 57490, - [SMALL_STATE(2464)] = 57608, - [SMALL_STATE(2465)] = 57678, - [SMALL_STATE(2466)] = 57796, - [SMALL_STATE(2467)] = 57926, - [SMALL_STATE(2468)] = 58044, - [SMALL_STATE(2469)] = 58162, - [SMALL_STATE(2470)] = 58292, - [SMALL_STATE(2471)] = 58422, - [SMALL_STATE(2472)] = 58554, - [SMALL_STATE(2473)] = 58624, - [SMALL_STATE(2474)] = 58694, - [SMALL_STATE(2475)] = 58824, - [SMALL_STATE(2476)] = 58954, - [SMALL_STATE(2477)] = 59084, - [SMALL_STATE(2478)] = 59154, - [SMALL_STATE(2479)] = 59224, - [SMALL_STATE(2480)] = 59356, - [SMALL_STATE(2481)] = 59488, - [SMALL_STATE(2482)] = 59558, - [SMALL_STATE(2483)] = 59628, - [SMALL_STATE(2484)] = 59746, - [SMALL_STATE(2485)] = 59878, - [SMALL_STATE(2486)] = 59950, - [SMALL_STATE(2487)] = 60020, - [SMALL_STATE(2488)] = 60150, - [SMALL_STATE(2489)] = 60282, - [SMALL_STATE(2490)] = 60400, - [SMALL_STATE(2491)] = 60518, - [SMALL_STATE(2492)] = 60588, - [SMALL_STATE(2493)] = 60720, - [SMALL_STATE(2494)] = 60790, - [SMALL_STATE(2495)] = 60860, - [SMALL_STATE(2496)] = 60990, - [SMALL_STATE(2497)] = 61120, - [SMALL_STATE(2498)] = 61190, - [SMALL_STATE(2499)] = 61260, - [SMALL_STATE(2500)] = 61390, - [SMALL_STATE(2501)] = 61508, - [SMALL_STATE(2502)] = 61626, - [SMALL_STATE(2503)] = 61744, - [SMALL_STATE(2504)] = 61874, - [SMALL_STATE(2505)] = 61992, - [SMALL_STATE(2506)] = 62122, - [SMALL_STATE(2507)] = 62192, - [SMALL_STATE(2508)] = 62310, - [SMALL_STATE(2509)] = 62382, - [SMALL_STATE(2510)] = 62458, - [SMALL_STATE(2511)] = 62590, - [SMALL_STATE(2512)] = 62660, - [SMALL_STATE(2513)] = 62792, - [SMALL_STATE(2514)] = 62924, - [SMALL_STATE(2515)] = 63054, - [SMALL_STATE(2516)] = 63124, - [SMALL_STATE(2517)] = 63194, - [SMALL_STATE(2518)] = 63264, - [SMALL_STATE(2519)] = 63396, - [SMALL_STATE(2520)] = 63526, - [SMALL_STATE(2521)] = 63644, - [SMALL_STATE(2522)] = 63714, - [SMALL_STATE(2523)] = 63841, - [SMALL_STATE(2524)] = 63910, - [SMALL_STATE(2525)] = 64037, - [SMALL_STATE(2526)] = 64106, - [SMALL_STATE(2527)] = 64175, - [SMALL_STATE(2528)] = 64246, - [SMALL_STATE(2529)] = 64315, - [SMALL_STATE(2530)] = 64442, - [SMALL_STATE(2531)] = 64569, - [SMALL_STATE(2532)] = 64638, - [SMALL_STATE(2533)] = 64707, - [SMALL_STATE(2534)] = 64776, - [SMALL_STATE(2535)] = 64903, - [SMALL_STATE(2536)] = 64972, - [SMALL_STATE(2537)] = 65099, - [SMALL_STATE(2538)] = 65226, - [SMALL_STATE(2539)] = 65295, - [SMALL_STATE(2540)] = 65364, - [SMALL_STATE(2541)] = 65491, - [SMALL_STATE(2542)] = 65566, - [SMALL_STATE(2543)] = 65693, - [SMALL_STATE(2544)] = 65820, - [SMALL_STATE(2545)] = 65889, - [SMALL_STATE(2546)] = 65958, - [SMALL_STATE(2547)] = 66027, - [SMALL_STATE(2548)] = 66096, - [SMALL_STATE(2549)] = 66165, - [SMALL_STATE(2550)] = 66234, - [SMALL_STATE(2551)] = 66303, - [SMALL_STATE(2552)] = 66430, - [SMALL_STATE(2553)] = 66499, - [SMALL_STATE(2554)] = 66568, - [SMALL_STATE(2555)] = 66637, - [SMALL_STATE(2556)] = 66706, - [SMALL_STATE(2557)] = 66775, - [SMALL_STATE(2558)] = 66844, - [SMALL_STATE(2559)] = 66971, - [SMALL_STATE(2560)] = 67040, - [SMALL_STATE(2561)] = 67109, - [SMALL_STATE(2562)] = 67236, - [SMALL_STATE(2563)] = 67363, - [SMALL_STATE(2564)] = 67432, - [SMALL_STATE(2565)] = 67501, - [SMALL_STATE(2566)] = 67570, - [SMALL_STATE(2567)] = 67697, - [SMALL_STATE(2568)] = 67766, - [SMALL_STATE(2569)] = 67893, - [SMALL_STATE(2570)] = 67964, - [SMALL_STATE(2571)] = 68033, - [SMALL_STATE(2572)] = 68160, - [SMALL_STATE(2573)] = 68229, - [SMALL_STATE(2574)] = 68356, - [SMALL_STATE(2575)] = 68483, - [SMALL_STATE(2576)] = 68552, - [SMALL_STATE(2577)] = 68679, - [SMALL_STATE(2578)] = 68748, - [SMALL_STATE(2579)] = 68817, - [SMALL_STATE(2580)] = 68944, - [SMALL_STATE(2581)] = 69013, - [SMALL_STATE(2582)] = 69140, - [SMALL_STATE(2583)] = 69209, - [SMALL_STATE(2584)] = 69278, - [SMALL_STATE(2585)] = 69347, - [SMALL_STATE(2586)] = 69474, - [SMALL_STATE(2587)] = 69543, - [SMALL_STATE(2588)] = 69612, - [SMALL_STATE(2589)] = 69739, - [SMALL_STATE(2590)] = 69866, - [SMALL_STATE(2591)] = 69935, - [SMALL_STATE(2592)] = 70004, - [SMALL_STATE(2593)] = 70073, - [SMALL_STATE(2594)] = 70142, - [SMALL_STATE(2595)] = 70211, - [SMALL_STATE(2596)] = 70280, - [SMALL_STATE(2597)] = 70407, - [SMALL_STATE(2598)] = 70534, - [SMALL_STATE(2599)] = 70661, - [SMALL_STATE(2600)] = 70730, - [SMALL_STATE(2601)] = 70799, - [SMALL_STATE(2602)] = 70868, - [SMALL_STATE(2603)] = 70937, - [SMALL_STATE(2604)] = 71006, - [SMALL_STATE(2605)] = 71133, - [SMALL_STATE(2606)] = 71202, - [SMALL_STATE(2607)] = 71271, - [SMALL_STATE(2608)] = 71340, - [SMALL_STATE(2609)] = 71409, - [SMALL_STATE(2610)] = 71478, - [SMALL_STATE(2611)] = 71547, - [SMALL_STATE(2612)] = 71616, - [SMALL_STATE(2613)] = 71687, - [SMALL_STATE(2614)] = 71814, - [SMALL_STATE(2615)] = 71941, - [SMALL_STATE(2616)] = 72010, - [SMALL_STATE(2617)] = 72085, - [SMALL_STATE(2618)] = 72212, - [SMALL_STATE(2619)] = 72281, - [SMALL_STATE(2620)] = 72408, - [SMALL_STATE(2621)] = 72477, - [SMALL_STATE(2622)] = 72604, - [SMALL_STATE(2623)] = 72673, - [SMALL_STATE(2624)] = 72742, - [SMALL_STATE(2625)] = 72811, - [SMALL_STATE(2626)] = 72938, - [SMALL_STATE(2627)] = 73065, - [SMALL_STATE(2628)] = 73134, - [SMALL_STATE(2629)] = 73203, - [SMALL_STATE(2630)] = 73330, - [SMALL_STATE(2631)] = 73399, - [SMALL_STATE(2632)] = 73526, - [SMALL_STATE(2633)] = 73653, - [SMALL_STATE(2634)] = 73780, - [SMALL_STATE(2635)] = 73849, - [SMALL_STATE(2636)] = 73918, - [SMALL_STATE(2637)] = 74044, - [SMALL_STATE(2638)] = 74170, - [SMALL_STATE(2639)] = 74240, - [SMALL_STATE(2640)] = 74308, - [SMALL_STATE(2641)] = 74434, - [SMALL_STATE(2642)] = 74560, - [SMALL_STATE(2643)] = 74686, - [SMALL_STATE(2644)] = 74756, - [SMALL_STATE(2645)] = 74826, - [SMALL_STATE(2646)] = 74896, - [SMALL_STATE(2647)] = 74966, - [SMALL_STATE(2648)] = 75036, - [SMALL_STATE(2649)] = 75108, - [SMALL_STATE(2650)] = 75180, - [SMALL_STATE(2651)] = 75285, - [SMALL_STATE(2652)] = 75376, - [SMALL_STATE(2653)] = 75497, - [SMALL_STATE(2654)] = 75592, - [SMALL_STATE(2655)] = 75665, - [SMALL_STATE(2656)] = 75764, - [SMALL_STATE(2657)] = 75867, - [SMALL_STATE(2658)] = 75970, - [SMALL_STATE(2659)] = 76039, - [SMALL_STATE(2660)] = 76106, - [SMALL_STATE(2661)] = 76209, - [SMALL_STATE(2662)] = 76298, - [SMALL_STATE(2663)] = 76419, - [SMALL_STATE(2664)] = 76540, - [SMALL_STATE(2665)] = 76609, - [SMALL_STATE(2666)] = 76676, - [SMALL_STATE(2667)] = 76797, - [SMALL_STATE(2668)] = 76918, - [SMALL_STATE(2669)] = 77003, - [SMALL_STATE(2670)] = 77124, - [SMALL_STATE(2671)] = 77245, - [SMALL_STATE(2672)] = 77314, - [SMALL_STATE(2673)] = 77381, - [SMALL_STATE(2674)] = 77502, - [SMALL_STATE(2675)] = 77583, - [SMALL_STATE(2676)] = 77656, - [SMALL_STATE(2677)] = 77777, - [SMALL_STATE(2678)] = 77856, - [SMALL_STATE(2679)] = 77925, - [SMALL_STATE(2680)] = 78046, - [SMALL_STATE(2681)] = 78149, - [SMALL_STATE(2682)] = 78230, - [SMALL_STATE(2683)] = 78351, - [SMALL_STATE(2684)] = 78418, - [SMALL_STATE(2685)] = 78521, - [SMALL_STATE(2686)] = 78642, - [SMALL_STATE(2687)] = 78763, - [SMALL_STATE(2688)] = 78854, - [SMALL_STATE(2689)] = 78921, - [SMALL_STATE(2690)] = 79042, - [SMALL_STATE(2691)] = 79163, - [SMALL_STATE(2692)] = 79284, - [SMALL_STATE(2693)] = 79405, - [SMALL_STATE(2694)] = 79504, - [SMALL_STATE(2695)] = 79625, - [SMALL_STATE(2696)] = 79746, - [SMALL_STATE(2697)] = 79867, - [SMALL_STATE(2698)] = 79988, - [SMALL_STATE(2699)] = 80090, - [SMALL_STATE(2700)] = 80156, - [SMALL_STATE(2701)] = 80258, - [SMALL_STATE(2702)] = 80360, - [SMALL_STATE(2703)] = 80458, - [SMALL_STATE(2704)] = 80552, - [SMALL_STATE(2705)] = 80656, - [SMALL_STATE(2706)] = 80724, - [SMALL_STATE(2707)] = 80814, - [SMALL_STATE(2708)] = 80904, - [SMALL_STATE(2709)] = 80992, - [SMALL_STATE(2710)] = 81058, - [SMALL_STATE(2711)] = 81156, - [SMALL_STATE(2712)] = 81222, - [SMALL_STATE(2713)] = 81300, - [SMALL_STATE(2714)] = 81402, - [SMALL_STATE(2715)] = 81504, - [SMALL_STATE(2716)] = 81606, - [SMALL_STATE(2717)] = 81708, - [SMALL_STATE(2718)] = 81788, - [SMALL_STATE(2719)] = 81890, - [SMALL_STATE(2720)] = 81992, - [SMALL_STATE(2721)] = 82076, - [SMALL_STATE(2722)] = 82142, - [SMALL_STATE(2723)] = 82244, - [SMALL_STATE(2724)] = 82348, - [SMALL_STATE(2725)] = 82446, - [SMALL_STATE(2726)] = 82512, - [SMALL_STATE(2727)] = 82580, - [SMALL_STATE(2728)] = 82658, - [SMALL_STATE(2729)] = 82746, - [SMALL_STATE(2730)] = 82826, - [SMALL_STATE(2731)] = 82916, - [SMALL_STATE(2732)] = 82996, - [SMALL_STATE(2733)] = 83086, - [SMALL_STATE(2734)] = 83170, - [SMALL_STATE(2735)] = 83264, - [SMALL_STATE(2736)] = 83330, - [SMALL_STATE(2737)] = 83410, - [SMALL_STATE(2738)] = 83476, - [SMALL_STATE(2739)] = 83574, - [SMALL_STATE(2740)] = 83639, - [SMALL_STATE(2741)] = 83704, - [SMALL_STATE(2742)] = 83769, - [SMALL_STATE(2743)] = 83852, - [SMALL_STATE(2744)] = 83931, - [SMALL_STATE(2745)] = 84010, - [SMALL_STATE(2746)] = 84087, - [SMALL_STATE(2747)] = 84154, - [SMALL_STATE(2748)] = 84219, - [SMALL_STATE(2749)] = 84284, - [SMALL_STATE(2750)] = 84351, - [SMALL_STATE(2751)] = 84416, - [SMALL_STATE(2752)] = 84481, - [SMALL_STATE(2753)] = 84546, - [SMALL_STATE(2754)] = 84647, - [SMALL_STATE(2755)] = 84748, - [SMALL_STATE(2756)] = 84849, - [SMALL_STATE(2757)] = 84950, - [SMALL_STATE(2758)] = 85047, - [SMALL_STATE(2759)] = 85140, - [SMALL_STATE(2760)] = 85229, - [SMALL_STATE(2761)] = 85318, - [SMALL_STATE(2762)] = 85405, - [SMALL_STATE(2763)] = 85502, - [SMALL_STATE(2764)] = 85603, - [SMALL_STATE(2765)] = 85668, - [SMALL_STATE(2766)] = 85733, - [SMALL_STATE(2767)] = 85800, - [SMALL_STATE(2768)] = 85865, - [SMALL_STATE(2769)] = 85930, - [SMALL_STATE(2770)] = 85995, - [SMALL_STATE(2771)] = 86060, - [SMALL_STATE(2772)] = 86125, - [SMALL_STATE(2773)] = 86190, - [SMALL_STATE(2774)] = 86255, - [SMALL_STATE(2775)] = 86320, - [SMALL_STATE(2776)] = 86385, - [SMALL_STATE(2777)] = 86450, - [SMALL_STATE(2778)] = 86515, - [SMALL_STATE(2779)] = 86580, - [SMALL_STATE(2780)] = 86645, - [SMALL_STATE(2781)] = 86710, - [SMALL_STATE(2782)] = 86775, - [SMALL_STATE(2783)] = 86840, - [SMALL_STATE(2784)] = 86905, - [SMALL_STATE(2785)] = 86972, - [SMALL_STATE(2786)] = 87043, - [SMALL_STATE(2787)] = 87114, - [SMALL_STATE(2788)] = 87185, - [SMALL_STATE(2789)] = 87256, - [SMALL_STATE(2790)] = 87323, - [SMALL_STATE(2791)] = 87426, - [SMALL_STATE(2792)] = 87491, - [SMALL_STATE(2793)] = 87556, - [SMALL_STATE(2794)] = 87621, - [SMALL_STATE(2795)] = 87686, - [SMALL_STATE(2796)] = 87789, - [SMALL_STATE(2797)] = 87854, - [SMALL_STATE(2798)] = 87919, - [SMALL_STATE(2799)] = 87984, - [SMALL_STATE(2800)] = 88049, - [SMALL_STATE(2801)] = 88114, - [SMALL_STATE(2802)] = 88179, - [SMALL_STATE(2803)] = 88244, - [SMALL_STATE(2804)] = 88309, - [SMALL_STATE(2805)] = 88374, - [SMALL_STATE(2806)] = 88439, - [SMALL_STATE(2807)] = 88504, - [SMALL_STATE(2808)] = 88569, - [SMALL_STATE(2809)] = 88634, - [SMALL_STATE(2810)] = 88699, - [SMALL_STATE(2811)] = 88764, - [SMALL_STATE(2812)] = 88829, - [SMALL_STATE(2813)] = 88894, - [SMALL_STATE(2814)] = 88959, - [SMALL_STATE(2815)] = 89024, - [SMALL_STATE(2816)] = 89089, - [SMALL_STATE(2817)] = 89154, - [SMALL_STATE(2818)] = 89219, - [SMALL_STATE(2819)] = 89284, - [SMALL_STATE(2820)] = 89349, - [SMALL_STATE(2821)] = 89414, - [SMALL_STATE(2822)] = 89479, - [SMALL_STATE(2823)] = 89544, - [SMALL_STATE(2824)] = 89609, - [SMALL_STATE(2825)] = 89674, - [SMALL_STATE(2826)] = 89739, - [SMALL_STATE(2827)] = 89804, - [SMALL_STATE(2828)] = 89869, - [SMALL_STATE(2829)] = 89936, - [SMALL_STATE(2830)] = 90001, - [SMALL_STATE(2831)] = 90066, - [SMALL_STATE(2832)] = 90131, - [SMALL_STATE(2833)] = 90196, - [SMALL_STATE(2834)] = 90261, - [SMALL_STATE(2835)] = 90326, - [SMALL_STATE(2836)] = 90391, - [SMALL_STATE(2837)] = 90456, - [SMALL_STATE(2838)] = 90521, - [SMALL_STATE(2839)] = 90586, - [SMALL_STATE(2840)] = 90651, - [SMALL_STATE(2841)] = 90716, - [SMALL_STATE(2842)] = 90781, - [SMALL_STATE(2843)] = 90846, - [SMALL_STATE(2844)] = 90911, - [SMALL_STATE(2845)] = 90976, - [SMALL_STATE(2846)] = 91041, - [SMALL_STATE(2847)] = 91106, - [SMALL_STATE(2848)] = 91170, - [SMALL_STATE(2849)] = 91234, - [SMALL_STATE(2850)] = 91298, - [SMALL_STATE(2851)] = 91362, - [SMALL_STATE(2852)] = 91428, - [SMALL_STATE(2853)] = 91492, - [SMALL_STATE(2854)] = 91556, - [SMALL_STATE(2855)] = 91638, - [SMALL_STATE(2856)] = 91716, - [SMALL_STATE(2857)] = 91794, - [SMALL_STATE(2858)] = 91870, - [SMALL_STATE(2859)] = 91972, - [SMALL_STATE(2860)] = 92036, - [SMALL_STATE(2861)] = 92100, - [SMALL_STATE(2862)] = 92164, - [SMALL_STATE(2863)] = 92228, - [SMALL_STATE(2864)] = 92292, - [SMALL_STATE(2865)] = 92356, - [SMALL_STATE(2866)] = 92420, - [SMALL_STATE(2867)] = 92484, - [SMALL_STATE(2868)] = 92548, - [SMALL_STATE(2869)] = 92612, - [SMALL_STATE(2870)] = 92676, - [SMALL_STATE(2871)] = 92740, - [SMALL_STATE(2872)] = 92804, - [SMALL_STATE(2873)] = 92868, - [SMALL_STATE(2874)] = 92932, - [SMALL_STATE(2875)] = 92996, - [SMALL_STATE(2876)] = 93060, - [SMALL_STATE(2877)] = 93124, - [SMALL_STATE(2878)] = 93188, - [SMALL_STATE(2879)] = 93252, - [SMALL_STATE(2880)] = 93316, - [SMALL_STATE(2881)] = 93380, - [SMALL_STATE(2882)] = 93444, - [SMALL_STATE(2883)] = 93508, - [SMALL_STATE(2884)] = 93608, - [SMALL_STATE(2885)] = 93672, - [SMALL_STATE(2886)] = 93736, - [SMALL_STATE(2887)] = 93800, - [SMALL_STATE(2888)] = 93864, - [SMALL_STATE(2889)] = 93934, - [SMALL_STATE(2890)] = 94004, - [SMALL_STATE(2891)] = 94068, - [SMALL_STATE(2892)] = 94132, - [SMALL_STATE(2893)] = 94196, - [SMALL_STATE(2894)] = 94260, - [SMALL_STATE(2895)] = 94324, - [SMALL_STATE(2896)] = 94388, - [SMALL_STATE(2897)] = 94452, - [SMALL_STATE(2898)] = 94516, - [SMALL_STATE(2899)] = 94580, - [SMALL_STATE(2900)] = 94644, - [SMALL_STATE(2901)] = 94708, - [SMALL_STATE(2902)] = 94772, - [SMALL_STATE(2903)] = 94836, - [SMALL_STATE(2904)] = 94900, - [SMALL_STATE(2905)] = 94964, - [SMALL_STATE(2906)] = 95028, - [SMALL_STATE(2907)] = 95092, - [SMALL_STATE(2908)] = 95158, - [SMALL_STATE(2909)] = 95222, - [SMALL_STATE(2910)] = 95286, - [SMALL_STATE(2911)] = 95350, - [SMALL_STATE(2912)] = 95414, - [SMALL_STATE(2913)] = 95478, - [SMALL_STATE(2914)] = 95544, - [SMALL_STATE(2915)] = 95608, - [SMALL_STATE(2916)] = 95674, - [SMALL_STATE(2917)] = 95738, - [SMALL_STATE(2918)] = 95802, - [SMALL_STATE(2919)] = 95868, - [SMALL_STATE(2920)] = 95968, - [SMALL_STATE(2921)] = 96032, - [SMALL_STATE(2922)] = 96096, - [SMALL_STATE(2923)] = 96160, - [SMALL_STATE(2924)] = 96224, - [SMALL_STATE(2925)] = 96288, - [SMALL_STATE(2926)] = 96352, - [SMALL_STATE(2927)] = 96416, - [SMALL_STATE(2928)] = 96480, - [SMALL_STATE(2929)] = 96582, - [SMALL_STATE(2930)] = 96648, - [SMALL_STATE(2931)] = 96712, - [SMALL_STATE(2932)] = 96776, - [SMALL_STATE(2933)] = 96840, - [SMALL_STATE(2934)] = 96904, - [SMALL_STATE(2935)] = 96968, - [SMALL_STATE(2936)] = 97032, - [SMALL_STATE(2937)] = 97096, - [SMALL_STATE(2938)] = 97160, - [SMALL_STATE(2939)] = 97224, - [SMALL_STATE(2940)] = 97288, - [SMALL_STATE(2941)] = 97352, - [SMALL_STATE(2942)] = 97416, - [SMALL_STATE(2943)] = 97480, - [SMALL_STATE(2944)] = 97544, - [SMALL_STATE(2945)] = 97608, - [SMALL_STATE(2946)] = 97672, - [SMALL_STATE(2947)] = 97736, - [SMALL_STATE(2948)] = 97800, - [SMALL_STATE(2949)] = 97864, - [SMALL_STATE(2950)] = 97928, - [SMALL_STATE(2951)] = 97992, - [SMALL_STATE(2952)] = 98056, - [SMALL_STATE(2953)] = 98156, - [SMALL_STATE(2954)] = 98220, - [SMALL_STATE(2955)] = 98320, - [SMALL_STATE(2956)] = 98416, - [SMALL_STATE(2957)] = 98480, - [SMALL_STATE(2958)] = 98572, - [SMALL_STATE(2959)] = 98636, - [SMALL_STATE(2960)] = 98700, - [SMALL_STATE(2961)] = 98788, - [SMALL_STATE(2962)] = 98876, - [SMALL_STATE(2963)] = 98962, - [SMALL_STATE(2964)] = 99026, - [SMALL_STATE(2965)] = 99122, - [SMALL_STATE(2966)] = 99186, - [SMALL_STATE(2967)] = 99250, - [SMALL_STATE(2968)] = 99314, - [SMALL_STATE(2969)] = 99378, - [SMALL_STATE(2970)] = 99478, - [SMALL_STATE(2971)] = 99542, - [SMALL_STATE(2972)] = 99606, - [SMALL_STATE(2973)] = 99676, - [SMALL_STATE(2974)] = 99746, - [SMALL_STATE(2975)] = 99810, - [SMALL_STATE(2976)] = 99874, - [SMALL_STATE(2977)] = 99938, - [SMALL_STATE(2978)] = 100002, - [SMALL_STATE(2979)] = 100066, - [SMALL_STATE(2980)] = 100130, - [SMALL_STATE(2981)] = 100194, - [SMALL_STATE(2982)] = 100258, - [SMALL_STATE(2983)] = 100322, - [SMALL_STATE(2984)] = 100386, - [SMALL_STATE(2985)] = 100450, - [SMALL_STATE(2986)] = 100514, - [SMALL_STATE(2987)] = 100578, - [SMALL_STATE(2988)] = 100642, - [SMALL_STATE(2989)] = 100706, - [SMALL_STATE(2990)] = 100770, - [SMALL_STATE(2991)] = 100834, - [SMALL_STATE(2992)] = 100898, - [SMALL_STATE(2993)] = 100962, - [SMALL_STATE(2994)] = 101026, - [SMALL_STATE(2995)] = 101090, - [SMALL_STATE(2996)] = 101154, - [SMALL_STATE(2997)] = 101218, - [SMALL_STATE(2998)] = 101282, - [SMALL_STATE(2999)] = 101352, - [SMALL_STATE(3000)] = 101422, - [SMALL_STATE(3001)] = 101486, - [SMALL_STATE(3002)] = 101550, - [SMALL_STATE(3003)] = 101614, - [SMALL_STATE(3004)] = 101678, - [SMALL_STATE(3005)] = 101742, - [SMALL_STATE(3006)] = 101806, - [SMALL_STATE(3007)] = 101870, - [SMALL_STATE(3008)] = 101934, - [SMALL_STATE(3009)] = 101998, - [SMALL_STATE(3010)] = 102062, - [SMALL_STATE(3011)] = 102126, - [SMALL_STATE(3012)] = 102190, - [SMALL_STATE(3013)] = 102254, - [SMALL_STATE(3014)] = 102324, - [SMALL_STATE(3015)] = 102394, - [SMALL_STATE(3016)] = 102458, - [SMALL_STATE(3017)] = 102522, - [SMALL_STATE(3018)] = 102586, - [SMALL_STATE(3019)] = 102650, - [SMALL_STATE(3020)] = 102714, - [SMALL_STATE(3021)] = 102778, - [SMALL_STATE(3022)] = 102842, - [SMALL_STATE(3023)] = 102906, - [SMALL_STATE(3024)] = 102970, - [SMALL_STATE(3025)] = 103034, - [SMALL_STATE(3026)] = 103098, - [SMALL_STATE(3027)] = 103164, - [SMALL_STATE(3028)] = 103228, - [SMALL_STATE(3029)] = 103292, - [SMALL_STATE(3030)] = 103356, - [SMALL_STATE(3031)] = 103420, - [SMALL_STATE(3032)] = 103484, - [SMALL_STATE(3033)] = 103548, - [SMALL_STATE(3034)] = 103612, - [SMALL_STATE(3035)] = 103676, - [SMALL_STATE(3036)] = 103740, - [SMALL_STATE(3037)] = 103804, - [SMALL_STATE(3038)] = 103868, - [SMALL_STATE(3039)] = 103932, - [SMALL_STATE(3040)] = 103996, - [SMALL_STATE(3041)] = 104060, - [SMALL_STATE(3042)] = 104124, - [SMALL_STATE(3043)] = 104188, - [SMALL_STATE(3044)] = 104252, - [SMALL_STATE(3045)] = 104316, - [SMALL_STATE(3046)] = 104380, - [SMALL_STATE(3047)] = 104482, - [SMALL_STATE(3048)] = 104546, - [SMALL_STATE(3049)] = 104610, - [SMALL_STATE(3050)] = 104674, - [SMALL_STATE(3051)] = 104738, - [SMALL_STATE(3052)] = 104801, - [SMALL_STATE(3053)] = 104864, - [SMALL_STATE(3054)] = 104927, - [SMALL_STATE(3055)] = 104990, - [SMALL_STATE(3056)] = 105053, - [SMALL_STATE(3057)] = 105116, - [SMALL_STATE(3058)] = 105179, - [SMALL_STATE(3059)] = 105242, - [SMALL_STATE(3060)] = 105305, - [SMALL_STATE(3061)] = 105368, - [SMALL_STATE(3062)] = 105437, - [SMALL_STATE(3063)] = 105506, - [SMALL_STATE(3064)] = 105569, - [SMALL_STATE(3065)] = 105644, - [SMALL_STATE(3066)] = 105707, - [SMALL_STATE(3067)] = 105770, - [SMALL_STATE(3068)] = 105833, - [SMALL_STATE(3069)] = 105896, - [SMALL_STATE(3070)] = 105959, - [SMALL_STATE(3071)] = 106022, - [SMALL_STATE(3072)] = 106085, - [SMALL_STATE(3073)] = 106148, - [SMALL_STATE(3074)] = 106211, - [SMALL_STATE(3075)] = 106274, - [SMALL_STATE(3076)] = 106337, - [SMALL_STATE(3077)] = 106400, - [SMALL_STATE(3078)] = 106463, - [SMALL_STATE(3079)] = 106526, - [SMALL_STATE(3080)] = 106589, - [SMALL_STATE(3081)] = 106652, - [SMALL_STATE(3082)] = 106715, - [SMALL_STATE(3083)] = 106778, - [SMALL_STATE(3084)] = 106841, - [SMALL_STATE(3085)] = 106904, - [SMALL_STATE(3086)] = 106973, - [SMALL_STATE(3087)] = 107042, - [SMALL_STATE(3088)] = 107143, - [SMALL_STATE(3089)] = 107242, - [SMALL_STATE(3090)] = 107327, - [SMALL_STATE(3091)] = 107414, - [SMALL_STATE(3092)] = 107501, - [SMALL_STATE(3093)] = 107578, - [SMALL_STATE(3094)] = 107655, - [SMALL_STATE(3095)] = 107736, - [SMALL_STATE(3096)] = 107827, - [SMALL_STATE(3097)] = 107922, - [SMALL_STATE(3098)] = 108021, - [SMALL_STATE(3099)] = 108120, - [SMALL_STATE(3100)] = 108183, - [SMALL_STATE(3101)] = 108246, - [SMALL_STATE(3102)] = 108309, - [SMALL_STATE(3103)] = 108372, - [SMALL_STATE(3104)] = 108435, - [SMALL_STATE(3105)] = 108498, - [SMALL_STATE(3106)] = 108561, - [SMALL_STATE(3107)] = 108624, - [SMALL_STATE(3108)] = 108687, - [SMALL_STATE(3109)] = 108752, - [SMALL_STATE(3110)] = 108819, - [SMALL_STATE(3111)] = 108882, - [SMALL_STATE(3112)] = 108945, - [SMALL_STATE(3113)] = 109010, - [SMALL_STATE(3114)] = 109073, - [SMALL_STATE(3115)] = 109136, - [SMALL_STATE(3116)] = 109199, - [SMALL_STATE(3117)] = 109262, - [SMALL_STATE(3118)] = 109357, - [SMALL_STATE(3119)] = 109420, - [SMALL_STATE(3120)] = 109521, - [SMALL_STATE(3121)] = 109620, - [SMALL_STATE(3122)] = 109683, - [SMALL_STATE(3123)] = 109746, - [SMALL_STATE(3124)] = 109809, - [SMALL_STATE(3125)] = 109872, - [SMALL_STATE(3126)] = 109935, - [SMALL_STATE(3127)] = 109998, - [SMALL_STATE(3128)] = 110061, - [SMALL_STATE(3129)] = 110124, - [SMALL_STATE(3130)] = 110187, - [SMALL_STATE(3131)] = 110250, - [SMALL_STATE(3132)] = 110313, - [SMALL_STATE(3133)] = 110376, - [SMALL_STATE(3134)] = 110439, - [SMALL_STATE(3135)] = 110502, - [SMALL_STATE(3136)] = 110565, - [SMALL_STATE(3137)] = 110628, - [SMALL_STATE(3138)] = 110691, - [SMALL_STATE(3139)] = 110754, - [SMALL_STATE(3140)] = 110817, - [SMALL_STATE(3141)] = 110880, - [SMALL_STATE(3142)] = 110943, - [SMALL_STATE(3143)] = 111006, - [SMALL_STATE(3144)] = 111071, - [SMALL_STATE(3145)] = 111134, - [SMALL_STATE(3146)] = 111233, - [SMALL_STATE(3147)] = 111296, - [SMALL_STATE(3148)] = 111359, - [SMALL_STATE(3149)] = 111422, - [SMALL_STATE(3150)] = 111485, - [SMALL_STATE(3151)] = 111548, - [SMALL_STATE(3152)] = 111611, - [SMALL_STATE(3153)] = 111674, - [SMALL_STATE(3154)] = 111737, - [SMALL_STATE(3155)] = 111800, - [SMALL_STATE(3156)] = 111863, - [SMALL_STATE(3157)] = 111926, - [SMALL_STATE(3158)] = 111989, - [SMALL_STATE(3159)] = 112052, - [SMALL_STATE(3160)] = 112115, - [SMALL_STATE(3161)] = 112178, - [SMALL_STATE(3162)] = 112241, - [SMALL_STATE(3163)] = 112304, - [SMALL_STATE(3164)] = 112367, - [SMALL_STATE(3165)] = 112430, - [SMALL_STATE(3166)] = 112493, - [SMALL_STATE(3167)] = 112556, - [SMALL_STATE(3168)] = 112619, - [SMALL_STATE(3169)] = 112682, - [SMALL_STATE(3170)] = 112745, - [SMALL_STATE(3171)] = 112808, - [SMALL_STATE(3172)] = 112871, - [SMALL_STATE(3173)] = 112934, - [SMALL_STATE(3174)] = 112997, - [SMALL_STATE(3175)] = 113060, - [SMALL_STATE(3176)] = 113123, - [SMALL_STATE(3177)] = 113186, - [SMALL_STATE(3178)] = 113249, - [SMALL_STATE(3179)] = 113312, - [SMALL_STATE(3180)] = 113375, - [SMALL_STATE(3181)] = 113438, - [SMALL_STATE(3182)] = 113501, - [SMALL_STATE(3183)] = 113564, - [SMALL_STATE(3184)] = 113627, - [SMALL_STATE(3185)] = 113690, - [SMALL_STATE(3186)] = 113753, - [SMALL_STATE(3187)] = 113816, - [SMALL_STATE(3188)] = 113879, - [SMALL_STATE(3189)] = 113942, - [SMALL_STATE(3190)] = 114005, - [SMALL_STATE(3191)] = 114068, - [SMALL_STATE(3192)] = 114131, - [SMALL_STATE(3193)] = 114194, - [SMALL_STATE(3194)] = 114257, - [SMALL_STATE(3195)] = 114320, - [SMALL_STATE(3196)] = 114383, - [SMALL_STATE(3197)] = 114446, - [SMALL_STATE(3198)] = 114509, - [SMALL_STATE(3199)] = 114572, - [SMALL_STATE(3200)] = 114635, - [SMALL_STATE(3201)] = 114697, - [SMALL_STATE(3202)] = 114759, - [SMALL_STATE(3203)] = 114821, - [SMALL_STATE(3204)] = 114887, - [SMALL_STATE(3205)] = 114949, - [SMALL_STATE(3206)] = 115015, - [SMALL_STATE(3207)] = 115077, - [SMALL_STATE(3208)] = 115139, - [SMALL_STATE(3209)] = 115205, - [SMALL_STATE(3210)] = 115269, - [SMALL_STATE(3211)] = 115331, - [SMALL_STATE(3212)] = 115393, - [SMALL_STATE(3213)] = 115455, - [SMALL_STATE(3214)] = 115517, - [SMALL_STATE(3215)] = 115617, - [SMALL_STATE(3216)] = 115679, - [SMALL_STATE(3217)] = 115741, - [SMALL_STATE(3218)] = 115803, - [SMALL_STATE(3219)] = 115869, - [SMALL_STATE(3220)] = 115931, - [SMALL_STATE(3221)] = 115993, - [SMALL_STATE(3222)] = 116055, - [SMALL_STATE(3223)] = 116117, - [SMALL_STATE(3224)] = 116179, - [SMALL_STATE(3225)] = 116245, - [SMALL_STATE(3226)] = 116307, - [SMALL_STATE(3227)] = 116369, - [SMALL_STATE(3228)] = 116431, - [SMALL_STATE(3229)] = 116493, - [SMALL_STATE(3230)] = 116555, - [SMALL_STATE(3231)] = 116617, - [SMALL_STATE(3232)] = 116679, - [SMALL_STATE(3233)] = 116741, - [SMALL_STATE(3234)] = 116803, - [SMALL_STATE(3235)] = 116865, - [SMALL_STATE(3236)] = 116927, - [SMALL_STATE(3237)] = 116989, - [SMALL_STATE(3238)] = 117051, - [SMALL_STATE(3239)] = 117117, - [SMALL_STATE(3240)] = 117179, - [SMALL_STATE(3241)] = 117241, - [SMALL_STATE(3242)] = 117303, - [SMALL_STATE(3243)] = 117365, - [SMALL_STATE(3244)] = 117427, - [SMALL_STATE(3245)] = 117489, - [SMALL_STATE(3246)] = 117551, - [SMALL_STATE(3247)] = 117613, - [SMALL_STATE(3248)] = 117675, - [SMALL_STATE(3249)] = 117737, - [SMALL_STATE(3250)] = 117799, - [SMALL_STATE(3251)] = 117861, - [SMALL_STATE(3252)] = 117923, - [SMALL_STATE(3253)] = 117985, - [SMALL_STATE(3254)] = 118047, - [SMALL_STATE(3255)] = 118109, - [SMALL_STATE(3256)] = 118171, - [SMALL_STATE(3257)] = 118232, - [SMALL_STATE(3258)] = 118293, - [SMALL_STATE(3259)] = 118354, - [SMALL_STATE(3260)] = 118415, - [SMALL_STATE(3261)] = 118476, - [SMALL_STATE(3262)] = 118541, - [SMALL_STATE(3263)] = 118602, - [SMALL_STATE(3264)] = 118667, - [SMALL_STATE(3265)] = 118732, - [SMALL_STATE(3266)] = 118797, - [SMALL_STATE(3267)] = 118860, - [SMALL_STATE(3268)] = 118925, - [SMALL_STATE(3269)] = 118988, - [SMALL_STATE(3270)] = 119053, - [SMALL_STATE(3271)] = 119118, - [SMALL_STATE(3272)] = 119179, - [SMALL_STATE(3273)] = 119240, - [SMALL_STATE(3274)] = 119301, - [SMALL_STATE(3275)] = 119364, - [SMALL_STATE(3276)] = 119425, - [SMALL_STATE(3277)] = 119486, - [SMALL_STATE(3278)] = 119547, - [SMALL_STATE(3279)] = 119608, - [SMALL_STATE(3280)] = 119669, - [SMALL_STATE(3281)] = 119730, - [SMALL_STATE(3282)] = 119791, - [SMALL_STATE(3283)] = 119852, - [SMALL_STATE(3284)] = 119917, - [SMALL_STATE(3285)] = 119982, - [SMALL_STATE(3286)] = 120043, - [SMALL_STATE(3287)] = 120108, - [SMALL_STATE(3288)] = 120169, - [SMALL_STATE(3289)] = 120230, - [SMALL_STATE(3290)] = 120291, - [SMALL_STATE(3291)] = 120390, - [SMALL_STATE(3292)] = 120451, - [SMALL_STATE(3293)] = 120512, - [SMALL_STATE(3294)] = 120573, - [SMALL_STATE(3295)] = 120634, - [SMALL_STATE(3296)] = 120697, - [SMALL_STATE(3297)] = 120758, - [SMALL_STATE(3298)] = 120819, - [SMALL_STATE(3299)] = 120884, - [SMALL_STATE(3300)] = 120945, - [SMALL_STATE(3301)] = 121006, - [SMALL_STATE(3302)] = 121067, - [SMALL_STATE(3303)] = 121132, - [SMALL_STATE(3304)] = 121194, - [SMALL_STATE(3305)] = 121258, - [SMALL_STATE(3306)] = 121318, - [SMALL_STATE(3307)] = 121382, - [SMALL_STATE(3308)] = 121446, - [SMALL_STATE(3309)] = 121510, - [SMALL_STATE(3310)] = 121614, - [SMALL_STATE(3311)] = 121674, - [SMALL_STATE(3312)] = 121738, - [SMALL_STATE(3313)] = 121800, - [SMALL_STATE(3314)] = 121860, - [SMALL_STATE(3315)] = 121920, - [SMALL_STATE(3316)] = 122024, - [SMALL_STATE(3317)] = 122128, - [SMALL_STATE(3318)] = 122188, - [SMALL_STATE(3319)] = 122248, - [SMALL_STATE(3320)] = 122312, - [SMALL_STATE(3321)] = 122374, - [SMALL_STATE(3322)] = 122437, - [SMALL_STATE(3323)] = 122500, - [SMALL_STATE(3324)] = 122563, - [SMALL_STATE(3325)] = 122626, - [SMALL_STATE(3326)] = 122689, - [SMALL_STATE(3327)] = 122752, - [SMALL_STATE(3328)] = 122813, - [SMALL_STATE(3329)] = 122871, - [SMALL_STATE(3330)] = 122929, - [SMALL_STATE(3331)] = 122987, - [SMALL_STATE(3332)] = 123047, - [SMALL_STATE(3333)] = 123105, - [SMALL_STATE(3334)] = 123163, - [SMALL_STATE(3335)] = 123225, - [SMALL_STATE(3336)] = 123283, - [SMALL_STATE(3337)] = 123341, - [SMALL_STATE(3338)] = 123401, - [SMALL_STATE(3339)] = 123463, - [SMALL_STATE(3340)] = 123521, - [SMALL_STATE(3341)] = 123579, - [SMALL_STATE(3342)] = 123637, - [SMALL_STATE(3343)] = 123695, - [SMALL_STATE(3344)] = 123753, - [SMALL_STATE(3345)] = 123811, - [SMALL_STATE(3346)] = 123869, - [SMALL_STATE(3347)] = 123927, - [SMALL_STATE(3348)] = 123985, - [SMALL_STATE(3349)] = 124043, - [SMALL_STATE(3350)] = 124101, - [SMALL_STATE(3351)] = 124159, - [SMALL_STATE(3352)] = 124217, - [SMALL_STATE(3353)] = 124275, - [SMALL_STATE(3354)] = 124333, - [SMALL_STATE(3355)] = 124391, - [SMALL_STATE(3356)] = 124449, - [SMALL_STATE(3357)] = 124507, - [SMALL_STATE(3358)] = 124565, - [SMALL_STATE(3359)] = 124623, - [SMALL_STATE(3360)] = 124687, - [SMALL_STATE(3361)] = 124745, - [SMALL_STATE(3362)] = 124803, - [SMALL_STATE(3363)] = 124861, - [SMALL_STATE(3364)] = 124919, - [SMALL_STATE(3365)] = 124977, - [SMALL_STATE(3366)] = 125035, - [SMALL_STATE(3367)] = 125093, - [SMALL_STATE(3368)] = 125151, - [SMALL_STATE(3369)] = 125209, - [SMALL_STATE(3370)] = 125273, - [SMALL_STATE(3371)] = 125331, - [SMALL_STATE(3372)] = 125389, - [SMALL_STATE(3373)] = 125447, - [SMALL_STATE(3374)] = 125507, - [SMALL_STATE(3375)] = 125565, - [SMALL_STATE(3376)] = 125623, - [SMALL_STATE(3377)] = 125681, - [SMALL_STATE(3378)] = 125739, - [SMALL_STATE(3379)] = 125797, - [SMALL_STATE(3380)] = 125855, - [SMALL_STATE(3381)] = 125913, - [SMALL_STATE(3382)] = 125975, - [SMALL_STATE(3383)] = 126037, - [SMALL_STATE(3384)] = 126095, - [SMALL_STATE(3385)] = 126157, - [SMALL_STATE(3386)] = 126215, - [SMALL_STATE(3387)] = 126273, - [SMALL_STATE(3388)] = 126331, - [SMALL_STATE(3389)] = 126389, - [SMALL_STATE(3390)] = 126447, - [SMALL_STATE(3391)] = 126505, - [SMALL_STATE(3392)] = 126563, - [SMALL_STATE(3393)] = 126621, - [SMALL_STATE(3394)] = 126679, - [SMALL_STATE(3395)] = 126737, - [SMALL_STATE(3396)] = 126795, - [SMALL_STATE(3397)] = 126853, - [SMALL_STATE(3398)] = 126911, - [SMALL_STATE(3399)] = 126969, - [SMALL_STATE(3400)] = 127027, - [SMALL_STATE(3401)] = 127085, - [SMALL_STATE(3402)] = 127143, - [SMALL_STATE(3403)] = 127201, - [SMALL_STATE(3404)] = 127259, - [SMALL_STATE(3405)] = 127317, - [SMALL_STATE(3406)] = 127379, - [SMALL_STATE(3407)] = 127437, - [SMALL_STATE(3408)] = 127495, - [SMALL_STATE(3409)] = 127553, - [SMALL_STATE(3410)] = 127611, - [SMALL_STATE(3411)] = 127669, - [SMALL_STATE(3412)] = 127727, - [SMALL_STATE(3413)] = 127785, - [SMALL_STATE(3414)] = 127843, - [SMALL_STATE(3415)] = 127901, - [SMALL_STATE(3416)] = 127959, - [SMALL_STATE(3417)] = 128017, - [SMALL_STATE(3418)] = 128077, - [SMALL_STATE(3419)] = 128134, - [SMALL_STATE(3420)] = 128215, - [SMALL_STATE(3421)] = 128272, - [SMALL_STATE(3422)] = 128329, - [SMALL_STATE(3423)] = 128386, - [SMALL_STATE(3424)] = 128443, - [SMALL_STATE(3425)] = 128500, - [SMALL_STATE(3426)] = 128557, - [SMALL_STATE(3427)] = 128614, - [SMALL_STATE(3428)] = 128707, - [SMALL_STATE(3429)] = 128782, - [SMALL_STATE(3430)] = 128875, - [SMALL_STATE(3431)] = 128968, - [SMALL_STATE(3432)] = 129061, - [SMALL_STATE(3433)] = 129150, - [SMALL_STATE(3434)] = 129235, - [SMALL_STATE(3435)] = 129316, - [SMALL_STATE(3436)] = 129397, - [SMALL_STATE(3437)] = 129476, - [SMALL_STATE(3438)] = 129565, - [SMALL_STATE(3439)] = 129658, - [SMALL_STATE(3440)] = 129751, - [SMALL_STATE(3441)] = 129844, - [SMALL_STATE(3442)] = 129901, - [SMALL_STATE(3443)] = 129958, - [SMALL_STATE(3444)] = 130015, - [SMALL_STATE(3445)] = 130074, - [SMALL_STATE(3446)] = 130131, - [SMALL_STATE(3447)] = 130224, - [SMALL_STATE(3448)] = 130281, - [SMALL_STATE(3449)] = 130374, - [SMALL_STATE(3450)] = 130463, - [SMALL_STATE(3451)] = 130548, - [SMALL_STATE(3452)] = 130605, - [SMALL_STATE(3453)] = 130720, - [SMALL_STATE(3454)] = 130801, - [SMALL_STATE(3455)] = 130858, - [SMALL_STATE(3456)] = 130915, - [SMALL_STATE(3457)] = 130972, - [SMALL_STATE(3458)] = 131051, - [SMALL_STATE(3459)] = 131110, - [SMALL_STATE(3460)] = 131199, - [SMALL_STATE(3461)] = 131268, - [SMALL_STATE(3462)] = 131361, - [SMALL_STATE(3463)] = 131418, - [SMALL_STATE(3464)] = 131475, - [SMALL_STATE(3465)] = 131570, - [SMALL_STATE(3466)] = 131665, - [SMALL_STATE(3467)] = 131722, - [SMALL_STATE(3468)] = 131793, - [SMALL_STATE(3469)] = 131868, - [SMALL_STATE(3470)] = 131925, - [SMALL_STATE(3471)] = 131982, - [SMALL_STATE(3472)] = 132053, - [SMALL_STATE(3473)] = 132124, - [SMALL_STATE(3474)] = 132195, - [SMALL_STATE(3475)] = 132252, - [SMALL_STATE(3476)] = 132309, - [SMALL_STATE(3477)] = 132366, - [SMALL_STATE(3478)] = 132481, - [SMALL_STATE(3479)] = 132538, - [SMALL_STATE(3480)] = 132607, - [SMALL_STATE(3481)] = 132664, - [SMALL_STATE(3482)] = 132721, - [SMALL_STATE(3483)] = 132778, - [SMALL_STATE(3484)] = 132835, - [SMALL_STATE(3485)] = 132892, - [SMALL_STATE(3486)] = 133007, - [SMALL_STATE(3487)] = 133064, - [SMALL_STATE(3488)] = 133121, - [SMALL_STATE(3489)] = 133178, - [SMALL_STATE(3490)] = 133235, - [SMALL_STATE(3491)] = 133292, - [SMALL_STATE(3492)] = 133349, - [SMALL_STATE(3493)] = 133406, - [SMALL_STATE(3494)] = 133463, - [SMALL_STATE(3495)] = 133520, - [SMALL_STATE(3496)] = 133577, - [SMALL_STATE(3497)] = 133634, - [SMALL_STATE(3498)] = 133691, - [SMALL_STATE(3499)] = 133806, - [SMALL_STATE(3500)] = 133863, - [SMALL_STATE(3501)] = 133920, - [SMALL_STATE(3502)] = 133977, - [SMALL_STATE(3503)] = 134034, - [SMALL_STATE(3504)] = 134091, - [SMALL_STATE(3505)] = 134148, - [SMALL_STATE(3506)] = 134205, - [SMALL_STATE(3507)] = 134262, - [SMALL_STATE(3508)] = 134319, - [SMALL_STATE(3509)] = 134376, - [SMALL_STATE(3510)] = 134433, - [SMALL_STATE(3511)] = 134490, - [SMALL_STATE(3512)] = 134547, - [SMALL_STATE(3513)] = 134604, - [SMALL_STATE(3514)] = 134661, - [SMALL_STATE(3515)] = 134718, - [SMALL_STATE(3516)] = 134777, - [SMALL_STATE(3517)] = 134836, - [SMALL_STATE(3518)] = 134893, - [SMALL_STATE(3519)] = 134950, - [SMALL_STATE(3520)] = 135007, - [SMALL_STATE(3521)] = 135064, - [SMALL_STATE(3522)] = 135121, - [SMALL_STATE(3523)] = 135178, - [SMALL_STATE(3524)] = 135235, - [SMALL_STATE(3525)] = 135292, - [SMALL_STATE(3526)] = 135349, - [SMALL_STATE(3527)] = 135406, - [SMALL_STATE(3528)] = 135463, - [SMALL_STATE(3529)] = 135520, - [SMALL_STATE(3530)] = 135577, - [SMALL_STATE(3531)] = 135634, - [SMALL_STATE(3532)] = 135691, - [SMALL_STATE(3533)] = 135750, - [SMALL_STATE(3534)] = 135807, - [SMALL_STATE(3535)] = 135864, - [SMALL_STATE(3536)] = 135921, - [SMALL_STATE(3537)] = 135980, - [SMALL_STATE(3538)] = 136037, - [SMALL_STATE(3539)] = 136100, - [SMALL_STATE(3540)] = 136157, - [SMALL_STATE(3541)] = 136214, - [SMALL_STATE(3542)] = 136271, - [SMALL_STATE(3543)] = 136328, - [SMALL_STATE(3544)] = 136385, - [SMALL_STATE(3545)] = 136448, - [SMALL_STATE(3546)] = 136504, - [SMALL_STATE(3547)] = 136560, - [SMALL_STATE(3548)] = 136616, - [SMALL_STATE(3549)] = 136672, - [SMALL_STATE(3550)] = 136728, - [SMALL_STATE(3551)] = 136784, - [SMALL_STATE(3552)] = 136840, - [SMALL_STATE(3553)] = 136934, - [SMALL_STATE(3554)] = 136990, - [SMALL_STATE(3555)] = 137046, - [SMALL_STATE(3556)] = 137102, - [SMALL_STATE(3557)] = 137158, - [SMALL_STATE(3558)] = 137214, - [SMALL_STATE(3559)] = 137270, - [SMALL_STATE(3560)] = 137326, - [SMALL_STATE(3561)] = 137382, - [SMALL_STATE(3562)] = 137438, - [SMALL_STATE(3563)] = 137494, - [SMALL_STATE(3564)] = 137550, - [SMALL_STATE(3565)] = 137606, - [SMALL_STATE(3566)] = 137662, - [SMALL_STATE(3567)] = 137724, - [SMALL_STATE(3568)] = 137780, - [SMALL_STATE(3569)] = 137836, - [SMALL_STATE(3570)] = 137892, - [SMALL_STATE(3571)] = 137954, - [SMALL_STATE(3572)] = 138010, - [SMALL_STATE(3573)] = 138066, - [SMALL_STATE(3574)] = 138122, - [SMALL_STATE(3575)] = 138178, - [SMALL_STATE(3576)] = 138234, - [SMALL_STATE(3577)] = 138290, - [SMALL_STATE(3578)] = 138346, - [SMALL_STATE(3579)] = 138402, - [SMALL_STATE(3580)] = 138458, - [SMALL_STATE(3581)] = 138514, - [SMALL_STATE(3582)] = 138570, - [SMALL_STATE(3583)] = 138626, - [SMALL_STATE(3584)] = 138682, - [SMALL_STATE(3585)] = 138738, - [SMALL_STATE(3586)] = 138794, - [SMALL_STATE(3587)] = 138850, - [SMALL_STATE(3588)] = 138906, - [SMALL_STATE(3589)] = 138998, - [SMALL_STATE(3590)] = 139054, - [SMALL_STATE(3591)] = 139142, - [SMALL_STATE(3592)] = 139198, - [SMALL_STATE(3593)] = 139254, - [SMALL_STATE(3594)] = 139310, - [SMALL_STATE(3595)] = 139366, - [SMALL_STATE(3596)] = 139444, - [SMALL_STATE(3597)] = 139500, - [SMALL_STATE(3598)] = 139580, - [SMALL_STATE(3599)] = 139660, - [SMALL_STATE(3600)] = 139730, - [SMALL_STATE(3601)] = 139786, - [SMALL_STATE(3602)] = 139842, - [SMALL_STATE(3603)] = 139910, - [SMALL_STATE(3604)] = 139966, - [SMALL_STATE(3605)] = 140024, - [SMALL_STATE(3606)] = 140080, - [SMALL_STATE(3607)] = 140136, - [SMALL_STATE(3608)] = 140192, - [SMALL_STATE(3609)] = 140248, - [SMALL_STATE(3610)] = 140322, - [SMALL_STATE(3611)] = 140378, - [SMALL_STATE(3612)] = 140434, - [SMALL_STATE(3613)] = 140490, - [SMALL_STATE(3614)] = 140574, - [SMALL_STATE(3615)] = 140632, - [SMALL_STATE(3616)] = 140688, - [SMALL_STATE(3617)] = 140744, - [SMALL_STATE(3618)] = 140800, - [SMALL_STATE(3619)] = 140888, - [SMALL_STATE(3620)] = 140980, - [SMALL_STATE(3621)] = 141072, - [SMALL_STATE(3622)] = 141128, - [SMALL_STATE(3623)] = 141184, - [SMALL_STATE(3624)] = 141240, - [SMALL_STATE(3625)] = 141296, - [SMALL_STATE(3626)] = 141352, - [SMALL_STATE(3627)] = 141408, - [SMALL_STATE(3628)] = 141464, - [SMALL_STATE(3629)] = 141520, - [SMALL_STATE(3630)] = 141632, - [SMALL_STATE(3631)] = 141688, - [SMALL_STATE(3632)] = 141744, - [SMALL_STATE(3633)] = 141800, - [SMALL_STATE(3634)] = 141856, - [SMALL_STATE(3635)] = 141912, - [SMALL_STATE(3636)] = 141968, - [SMALL_STATE(3637)] = 142024, - [SMALL_STATE(3638)] = 142116, - [SMALL_STATE(3639)] = 142172, - [SMALL_STATE(3640)] = 142228, - [SMALL_STATE(3641)] = 142284, - [SMALL_STATE(3642)] = 142340, - [SMALL_STATE(3643)] = 142396, - [SMALL_STATE(3644)] = 142454, - [SMALL_STATE(3645)] = 142510, - [SMALL_STATE(3646)] = 142566, - [SMALL_STATE(3647)] = 142622, - [SMALL_STATE(3648)] = 142678, - [SMALL_STATE(3649)] = 142748, - [SMALL_STATE(3650)] = 142804, - [SMALL_STATE(3651)] = 142860, - [SMALL_STATE(3652)] = 142916, - [SMALL_STATE(3653)] = 142972, - [SMALL_STATE(3654)] = 143028, - [SMALL_STATE(3655)] = 143120, - [SMALL_STATE(3656)] = 143176, - [SMALL_STATE(3657)] = 143232, - [SMALL_STATE(3658)] = 143288, - [SMALL_STATE(3659)] = 143376, - [SMALL_STATE(3660)] = 143432, - [SMALL_STATE(3661)] = 143488, - [SMALL_STATE(3662)] = 143544, - [SMALL_STATE(3663)] = 143600, - [SMALL_STATE(3664)] = 143656, - [SMALL_STATE(3665)] = 143712, - [SMALL_STATE(3666)] = 143804, - [SMALL_STATE(3667)] = 143896, - [SMALL_STATE(3668)] = 143952, - [SMALL_STATE(3669)] = 144008, - [SMALL_STATE(3670)] = 144102, - [SMALL_STATE(3671)] = 144158, - [SMALL_STATE(3672)] = 144214, - [SMALL_STATE(3673)] = 144326, - [SMALL_STATE(3674)] = 144382, - [SMALL_STATE(3675)] = 144494, - [SMALL_STATE(3676)] = 144550, - [SMALL_STATE(3677)] = 144606, - [SMALL_STATE(3678)] = 144662, - [SMALL_STATE(3679)] = 144718, - [SMALL_STATE(3680)] = 144774, - [SMALL_STATE(3681)] = 144830, - [SMALL_STATE(3682)] = 144886, - [SMALL_STATE(3683)] = 144942, - [SMALL_STATE(3684)] = 144998, - [SMALL_STATE(3685)] = 145054, - [SMALL_STATE(3686)] = 145110, - [SMALL_STATE(3687)] = 145166, - [SMALL_STATE(3688)] = 145222, - [SMALL_STATE(3689)] = 145278, - [SMALL_STATE(3690)] = 145334, - [SMALL_STATE(3691)] = 145390, - [SMALL_STATE(3692)] = 145446, - [SMALL_STATE(3693)] = 145502, - [SMALL_STATE(3694)] = 145558, - [SMALL_STATE(3695)] = 145650, - [SMALL_STATE(3696)] = 145706, - [SMALL_STATE(3697)] = 145774, - [SMALL_STATE(3698)] = 145866, - [SMALL_STATE(3699)] = 145922, - [SMALL_STATE(3700)] = 146010, - [SMALL_STATE(3701)] = 146066, - [SMALL_STATE(3702)] = 146122, - [SMALL_STATE(3703)] = 146178, - [SMALL_STATE(3704)] = 146234, - [SMALL_STATE(3705)] = 146318, - [SMALL_STATE(3706)] = 146374, - [SMALL_STATE(3707)] = 146452, - [SMALL_STATE(3708)] = 146508, - [SMALL_STATE(3709)] = 146588, - [SMALL_STATE(3710)] = 146644, - [SMALL_STATE(3711)] = 146700, - [SMALL_STATE(3712)] = 146756, - [SMALL_STATE(3713)] = 146868, - [SMALL_STATE(3714)] = 146924, - [SMALL_STATE(3715)] = 146980, - [SMALL_STATE(3716)] = 147036, - [SMALL_STATE(3717)] = 147092, - [SMALL_STATE(3718)] = 147148, - [SMALL_STATE(3719)] = 147204, - [SMALL_STATE(3720)] = 147260, - [SMALL_STATE(3721)] = 147330, - [SMALL_STATE(3722)] = 147386, - [SMALL_STATE(3723)] = 147456, - [SMALL_STATE(3724)] = 147512, - [SMALL_STATE(3725)] = 147568, - [SMALL_STATE(3726)] = 147624, - [SMALL_STATE(3727)] = 147680, - [SMALL_STATE(3728)] = 147760, - [SMALL_STATE(3729)] = 147816, - [SMALL_STATE(3730)] = 147872, - [SMALL_STATE(3731)] = 147928, - [SMALL_STATE(3732)] = 147984, - [SMALL_STATE(3733)] = 148040, - [SMALL_STATE(3734)] = 148114, - [SMALL_STATE(3735)] = 148170, - [SMALL_STATE(3736)] = 148226, - [SMALL_STATE(3737)] = 148282, - [SMALL_STATE(3738)] = 148338, - [SMALL_STATE(3739)] = 148394, - [SMALL_STATE(3740)] = 148450, - [SMALL_STATE(3741)] = 148506, - [SMALL_STATE(3742)] = 148562, - [SMALL_STATE(3743)] = 148618, - [SMALL_STATE(3744)] = 148676, - [SMALL_STATE(3745)] = 148732, - [SMALL_STATE(3746)] = 148788, - [SMALL_STATE(3747)] = 148880, - [SMALL_STATE(3748)] = 148937, - [SMALL_STATE(3749)] = 149030, - [SMALL_STATE(3750)] = 149140, - [SMALL_STATE(3751)] = 149196, - [SMALL_STATE(3752)] = 149306, - [SMALL_STATE(3753)] = 149416, - [SMALL_STATE(3754)] = 149526, - [SMALL_STATE(3755)] = 149636, - [SMALL_STATE(3756)] = 149692, - [SMALL_STATE(3757)] = 149746, - [SMALL_STATE(3758)] = 149856, - [SMALL_STATE(3759)] = 149966, - [SMALL_STATE(3760)] = 150076, - [SMALL_STATE(3761)] = 150132, - [SMALL_STATE(3762)] = 150188, - [SMALL_STATE(3763)] = 150241, - [SMALL_STATE(3764)] = 150294, - [SMALL_STATE(3765)] = 150347, - [SMALL_STATE(3766)] = 150400, - [SMALL_STATE(3767)] = 150507, - [SMALL_STATE(3768)] = 150588, - [SMALL_STATE(3769)] = 150695, - [SMALL_STATE(3770)] = 150748, - [SMALL_STATE(3771)] = 150839, - [SMALL_STATE(3772)] = 150892, - [SMALL_STATE(3773)] = 150945, - [SMALL_STATE(3774)] = 151052, - [SMALL_STATE(3775)] = 151105, - [SMALL_STATE(3776)] = 151158, - [SMALL_STATE(3777)] = 151259, - [SMALL_STATE(3778)] = 151366, - [SMALL_STATE(3779)] = 151473, - [SMALL_STATE(3780)] = 151526, - [SMALL_STATE(3781)] = 151635, - [SMALL_STATE(3782)] = 151742, - [SMALL_STATE(3783)] = 151795, - [SMALL_STATE(3784)] = 151848, - [SMALL_STATE(3785)] = 151955, - [SMALL_STATE(3786)] = 152008, - [SMALL_STATE(3787)] = 152061, - [SMALL_STATE(3788)] = 152114, - [SMALL_STATE(3789)] = 152221, - [SMALL_STATE(3790)] = 152274, - [SMALL_STATE(3791)] = 152375, - [SMALL_STATE(3792)] = 152484, - [SMALL_STATE(3793)] = 152537, - [SMALL_STATE(3794)] = 152590, - [SMALL_STATE(3795)] = 152643, - [SMALL_STATE(3796)] = 152696, - [SMALL_STATE(3797)] = 152749, - [SMALL_STATE(3798)] = 152802, - [SMALL_STATE(3799)] = 152855, - [SMALL_STATE(3800)] = 152908, - [SMALL_STATE(3801)] = 153015, - [SMALL_STATE(3802)] = 153116, - [SMALL_STATE(3803)] = 153169, - [SMALL_STATE(3804)] = 153270, - [SMALL_STATE(3805)] = 153323, - [SMALL_STATE(3806)] = 153376, - [SMALL_STATE(3807)] = 153429, - [SMALL_STATE(3808)] = 153482, - [SMALL_STATE(3809)] = 153535, - [SMALL_STATE(3810)] = 153588, - [SMALL_STATE(3811)] = 153641, - [SMALL_STATE(3812)] = 153694, - [SMALL_STATE(3813)] = 153795, - [SMALL_STATE(3814)] = 153848, - [SMALL_STATE(3815)] = 153901, - [SMALL_STATE(3816)] = 153954, - [SMALL_STATE(3817)] = 154061, - [SMALL_STATE(3818)] = 154114, - [SMALL_STATE(3819)] = 154167, - [SMALL_STATE(3820)] = 154220, - [SMALL_STATE(3821)] = 154273, - [SMALL_STATE(3822)] = 154326, - [SMALL_STATE(3823)] = 154379, - [SMALL_STATE(3824)] = 154432, - [SMALL_STATE(3825)] = 154485, - [SMALL_STATE(3826)] = 154538, - [SMALL_STATE(3827)] = 154591, - [SMALL_STATE(3828)] = 154692, - [SMALL_STATE(3829)] = 154745, - [SMALL_STATE(3830)] = 154798, - [SMALL_STATE(3831)] = 154851, - [SMALL_STATE(3832)] = 154960, - [SMALL_STATE(3833)] = 155061, - [SMALL_STATE(3834)] = 155114, - [SMALL_STATE(3835)] = 155167, - [SMALL_STATE(3836)] = 155220, - [SMALL_STATE(3837)] = 155327, - [SMALL_STATE(3838)] = 155380, - [SMALL_STATE(3839)] = 155433, - [SMALL_STATE(3840)] = 155486, - [SMALL_STATE(3841)] = 155539, - [SMALL_STATE(3842)] = 155592, - [SMALL_STATE(3843)] = 155645, - [SMALL_STATE(3844)] = 155746, - [SMALL_STATE(3845)] = 155799, - [SMALL_STATE(3846)] = 155852, - [SMALL_STATE(3847)] = 155953, - [SMALL_STATE(3848)] = 156006, - [SMALL_STATE(3849)] = 156113, - [SMALL_STATE(3850)] = 156220, - [SMALL_STATE(3851)] = 156273, - [SMALL_STATE(3852)] = 156380, - [SMALL_STATE(3853)] = 156487, - [SMALL_STATE(3854)] = 156594, - [SMALL_STATE(3855)] = 156695, - [SMALL_STATE(3856)] = 156748, - [SMALL_STATE(3857)] = 156855, - [SMALL_STATE(3858)] = 156908, - [SMALL_STATE(3859)] = 157015, - [SMALL_STATE(3860)] = 157122, - [SMALL_STATE(3861)] = 157231, - [SMALL_STATE(3862)] = 157284, - [SMALL_STATE(3863)] = 157337, - [SMALL_STATE(3864)] = 157390, - [SMALL_STATE(3865)] = 157443, - [SMALL_STATE(3866)] = 157550, - [SMALL_STATE(3867)] = 157651, - [SMALL_STATE(3868)] = 157752, - [SMALL_STATE(3869)] = 157805, - [SMALL_STATE(3870)] = 157858, - [SMALL_STATE(3871)] = 157911, - [SMALL_STATE(3872)] = 157964, - [SMALL_STATE(3873)] = 158017, - [SMALL_STATE(3874)] = 158073, - [SMALL_STATE(3875)] = 158127, - [SMALL_STATE(3876)] = 158231, - [SMALL_STATE(3877)] = 158335, - [SMALL_STATE(3878)] = 158439, - [SMALL_STATE(3879)] = 158543, - [SMALL_STATE(3880)] = 158647, - [SMALL_STATE(3881)] = 158751, - [SMALL_STATE(3882)] = 158855, - [SMALL_STATE(3883)] = 158959, - [SMALL_STATE(3884)] = 159063, - [SMALL_STATE(3885)] = 159119, - [SMALL_STATE(3886)] = 159223, - [SMALL_STATE(3887)] = 159279, - [SMALL_STATE(3888)] = 159335, - [SMALL_STATE(3889)] = 159439, - [SMALL_STATE(3890)] = 159495, - [SMALL_STATE(3891)] = 159561, - [SMALL_STATE(3892)] = 159617, - [SMALL_STATE(3893)] = 159721, - [SMALL_STATE(3894)] = 159777, - [SMALL_STATE(3895)] = 159833, - [SMALL_STATE(3896)] = 159885, - [SMALL_STATE(3897)] = 159989, - [SMALL_STATE(3898)] = 160093, - [SMALL_STATE(3899)] = 160149, - [SMALL_STATE(3900)] = 160205, - [SMALL_STATE(3901)] = 160261, - [SMALL_STATE(3902)] = 160365, - [SMALL_STATE(3903)] = 160469, - [SMALL_STATE(3904)] = 160573, - [SMALL_STATE(3905)] = 160627, - [SMALL_STATE(3906)] = 160693, - [SMALL_STATE(3907)] = 160797, - [SMALL_STATE(3908)] = 160851, - [SMALL_STATE(3909)] = 160907, - [SMALL_STATE(3910)] = 161011, - [SMALL_STATE(3911)] = 161062, - [SMALL_STATE(3912)] = 161113, - [SMALL_STATE(3913)] = 161178, - [SMALL_STATE(3914)] = 161229, - [SMALL_STATE(3915)] = 161280, - [SMALL_STATE(3916)] = 161331, - [SMALL_STATE(3917)] = 161422, - [SMALL_STATE(3918)] = 161473, - [SMALL_STATE(3919)] = 161524, - [SMALL_STATE(3920)] = 161575, - [SMALL_STATE(3921)] = 161628, - [SMALL_STATE(3922)] = 161679, - [SMALL_STATE(3923)] = 161730, - [SMALL_STATE(3924)] = 161781, - [SMALL_STATE(3925)] = 161832, - [SMALL_STATE(3926)] = 161883, - [SMALL_STATE(3927)] = 161934, - [SMALL_STATE(3928)] = 161985, - [SMALL_STATE(3929)] = 162036, - [SMALL_STATE(3930)] = 162087, - [SMALL_STATE(3931)] = 162138, - [SMALL_STATE(3932)] = 162189, - [SMALL_STATE(3933)] = 162246, - [SMALL_STATE(3934)] = 162301, - [SMALL_STATE(3935)] = 162352, - [SMALL_STATE(3936)] = 162443, - [SMALL_STATE(3937)] = 162498, - [SMALL_STATE(3938)] = 162549, - [SMALL_STATE(3939)] = 162600, - [SMALL_STATE(3940)] = 162651, - [SMALL_STATE(3941)] = 162702, - [SMALL_STATE(3942)] = 162753, - [SMALL_STATE(3943)] = 162842, - [SMALL_STATE(3944)] = 162893, - [SMALL_STATE(3945)] = 162944, - [SMALL_STATE(3946)] = 162995, - [SMALL_STATE(3947)] = 163046, - [SMALL_STATE(3948)] = 163097, - [SMALL_STATE(3949)] = 163148, - [SMALL_STATE(3950)] = 163199, - [SMALL_STATE(3951)] = 163250, - [SMALL_STATE(3952)] = 163305, - [SMALL_STATE(3953)] = 163356, - [SMALL_STATE(3954)] = 163407, - [SMALL_STATE(3955)] = 163458, - [SMALL_STATE(3956)] = 163509, - [SMALL_STATE(3957)] = 163562, - [SMALL_STATE(3958)] = 163613, - [SMALL_STATE(3959)] = 163664, - [SMALL_STATE(3960)] = 163715, - [SMALL_STATE(3961)] = 163766, - [SMALL_STATE(3962)] = 163817, - [SMALL_STATE(3963)] = 163886, - [SMALL_STATE(3964)] = 163937, - [SMALL_STATE(3965)] = 163988, - [SMALL_STATE(3966)] = 164039, - [SMALL_STATE(3967)] = 164090, - [SMALL_STATE(3968)] = 164153, - [SMALL_STATE(3969)] = 164240, - [SMALL_STATE(3970)] = 164291, - [SMALL_STATE(3971)] = 164342, - [SMALL_STATE(3972)] = 164429, - [SMALL_STATE(3973)] = 164516, - [SMALL_STATE(3974)] = 164567, - [SMALL_STATE(3975)] = 164618, - [SMALL_STATE(3976)] = 164705, - [SMALL_STATE(3977)] = 164756, - [SMALL_STATE(3978)] = 164839, - [SMALL_STATE(3979)] = 164890, - [SMALL_STATE(3980)] = 164969, - [SMALL_STATE(3981)] = 165020, - [SMALL_STATE(3982)] = 165095, - [SMALL_STATE(3983)] = 165170, - [SMALL_STATE(3984)] = 165221, - [SMALL_STATE(3985)] = 165274, - [SMALL_STATE(3986)] = 165331, - [SMALL_STATE(3987)] = 165382, - [SMALL_STATE(3988)] = 165433, - [SMALL_STATE(3989)] = 165506, - [SMALL_STATE(3990)] = 165557, - [SMALL_STATE(3991)] = 165640, - [SMALL_STATE(3992)] = 165691, - [SMALL_STATE(3993)] = 165742, - [SMALL_STATE(3994)] = 165829, - [SMALL_STATE(3995)] = 165880, - [SMALL_STATE(3996)] = 165933, - [SMALL_STATE(3997)] = 165984, - [SMALL_STATE(3998)] = 166035, - [SMALL_STATE(3999)] = 166086, - [SMALL_STATE(4000)] = 166137, - [SMALL_STATE(4001)] = 166188, - [SMALL_STATE(4002)] = 166239, - [SMALL_STATE(4003)] = 166290, - [SMALL_STATE(4004)] = 166341, - [SMALL_STATE(4005)] = 166392, - [SMALL_STATE(4006)] = 166443, - [SMALL_STATE(4007)] = 166494, - [SMALL_STATE(4008)] = 166545, - [SMALL_STATE(4009)] = 166634, - [SMALL_STATE(4010)] = 166689, - [SMALL_STATE(4011)] = 166740, - [SMALL_STATE(4012)] = 166791, - [SMALL_STATE(4013)] = 166842, - [SMALL_STATE(4014)] = 166899, - [SMALL_STATE(4015)] = 166950, - [SMALL_STATE(4016)] = 167041, - [SMALL_STATE(4017)] = 167092, - [SMALL_STATE(4018)] = 167143, - [SMALL_STATE(4019)] = 167194, - [SMALL_STATE(4020)] = 167245, - [SMALL_STATE(4021)] = 167296, - [SMALL_STATE(4022)] = 167347, - [SMALL_STATE(4023)] = 167398, - [SMALL_STATE(4024)] = 167489, - [SMALL_STATE(4025)] = 167540, - [SMALL_STATE(4026)] = 167591, - [SMALL_STATE(4027)] = 167642, - [SMALL_STATE(4028)] = 167693, - [SMALL_STATE(4029)] = 167744, - [SMALL_STATE(4030)] = 167795, - [SMALL_STATE(4031)] = 167846, - [SMALL_STATE(4032)] = 167897, - [SMALL_STATE(4033)] = 167948, - [SMALL_STATE(4034)] = 167999, - [SMALL_STATE(4035)] = 168050, - [SMALL_STATE(4036)] = 168101, - [SMALL_STATE(4037)] = 168152, - [SMALL_STATE(4038)] = 168203, - [SMALL_STATE(4039)] = 168254, - [SMALL_STATE(4040)] = 168305, - [SMALL_STATE(4041)] = 168356, - [SMALL_STATE(4042)] = 168407, - [SMALL_STATE(4043)] = 168458, - [SMALL_STATE(4044)] = 168509, - [SMALL_STATE(4045)] = 168560, - [SMALL_STATE(4046)] = 168611, - [SMALL_STATE(4047)] = 168662, - [SMALL_STATE(4048)] = 168713, - [SMALL_STATE(4049)] = 168764, - [SMALL_STATE(4050)] = 168815, - [SMALL_STATE(4051)] = 168866, - [SMALL_STATE(4052)] = 168917, - [SMALL_STATE(4053)] = 168968, - [SMALL_STATE(4054)] = 169019, - [SMALL_STATE(4055)] = 169070, - [SMALL_STATE(4056)] = 169121, - [SMALL_STATE(4057)] = 169222, - [SMALL_STATE(4058)] = 169273, - [SMALL_STATE(4059)] = 169324, - [SMALL_STATE(4060)] = 169375, - [SMALL_STATE(4061)] = 169426, - [SMALL_STATE(4062)] = 169477, - [SMALL_STATE(4063)] = 169528, - [SMALL_STATE(4064)] = 169579, - [SMALL_STATE(4065)] = 169630, - [SMALL_STATE(4066)] = 169681, - [SMALL_STATE(4067)] = 169732, - [SMALL_STATE(4068)] = 169783, - [SMALL_STATE(4069)] = 169834, - [SMALL_STATE(4070)] = 169885, - [SMALL_STATE(4071)] = 169936, - [SMALL_STATE(4072)] = 169987, - [SMALL_STATE(4073)] = 170038, - [SMALL_STATE(4074)] = 170089, - [SMALL_STATE(4075)] = 170140, - [SMALL_STATE(4076)] = 170205, - [SMALL_STATE(4077)] = 170256, - [SMALL_STATE(4078)] = 170307, - [SMALL_STATE(4079)] = 170358, - [SMALL_STATE(4080)] = 170409, - [SMALL_STATE(4081)] = 170460, - [SMALL_STATE(4082)] = 170511, - [SMALL_STATE(4083)] = 170562, - [SMALL_STATE(4084)] = 170613, - [SMALL_STATE(4085)] = 170664, - [SMALL_STATE(4086)] = 170715, - [SMALL_STATE(4087)] = 170766, - [SMALL_STATE(4088)] = 170817, - [SMALL_STATE(4089)] = 170868, - [SMALL_STATE(4090)] = 170921, - [SMALL_STATE(4091)] = 170972, - [SMALL_STATE(4092)] = 171023, - [SMALL_STATE(4093)] = 171074, - [SMALL_STATE(4094)] = 171125, - [SMALL_STATE(4095)] = 171176, - [SMALL_STATE(4096)] = 171227, - [SMALL_STATE(4097)] = 171278, - [SMALL_STATE(4098)] = 171379, - [SMALL_STATE(4099)] = 171430, - [SMALL_STATE(4100)] = 171481, - [SMALL_STATE(4101)] = 171532, - [SMALL_STATE(4102)] = 171589, - [SMALL_STATE(4103)] = 171640, - [SMALL_STATE(4104)] = 171691, - [SMALL_STATE(4105)] = 171742, - [SMALL_STATE(4106)] = 171793, - [SMALL_STATE(4107)] = 171844, - [SMALL_STATE(4108)] = 171895, - [SMALL_STATE(4109)] = 171952, - [SMALL_STATE(4110)] = 172009, - [SMALL_STATE(4111)] = 172060, - [SMALL_STATE(4112)] = 172142, - [SMALL_STATE(4113)] = 172228, - [SMALL_STATE(4114)] = 172314, - [SMALL_STATE(4115)] = 172392, - [SMALL_STATE(4116)] = 172478, - [SMALL_STATE(4117)] = 172566, - [SMALL_STATE(4118)] = 172616, - [SMALL_STATE(4119)] = 172690, - [SMALL_STATE(4120)] = 172780, - [SMALL_STATE(4121)] = 172854, - [SMALL_STATE(4122)] = 172942, - [SMALL_STATE(4123)] = 172992, - [SMALL_STATE(4124)] = 173078, - [SMALL_STATE(4125)] = 173128, - [SMALL_STATE(4126)] = 173210, - [SMALL_STATE(4127)] = 173300, - [SMALL_STATE(4128)] = 173362, - [SMALL_STATE(4129)] = 173414, - [SMALL_STATE(4130)] = 173464, - [SMALL_STATE(4131)] = 173536, - [SMALL_STATE(4132)] = 173608, - [SMALL_STATE(4133)] = 173690, - [SMALL_STATE(4134)] = 173764, - [SMALL_STATE(4135)] = 173850, - [SMALL_STATE(4136)] = 173924, - [SMALL_STATE(4137)] = 174002, - [SMALL_STATE(4138)] = 174084, - [SMALL_STATE(4139)] = 174170, - [SMALL_STATE(4140)] = 174256, - [SMALL_STATE(4141)] = 174318, - [SMALL_STATE(4142)] = 174382, - [SMALL_STATE(4143)] = 174446, - [SMALL_STATE(4144)] = 174496, - [SMALL_STATE(4145)] = 174564, - [SMALL_STATE(4146)] = 174614, - [SMALL_STATE(4147)] = 174664, - [SMALL_STATE(4148)] = 174750, - [SMALL_STATE(4149)] = 174838, - [SMALL_STATE(4150)] = 174928, - [SMALL_STATE(4151)] = 175004, - [SMALL_STATE(4152)] = 175094, - [SMALL_STATE(4153)] = 175158, - [SMALL_STATE(4154)] = 175244, - [SMALL_STATE(4155)] = 175308, - [SMALL_STATE(4156)] = 175376, - [SMALL_STATE(4157)] = 175426, - [SMALL_STATE(4158)] = 175512, - [SMALL_STATE(4159)] = 175561, - [SMALL_STATE(4160)] = 175612, - [SMALL_STATE(4161)] = 175707, - [SMALL_STATE(4162)] = 175802, - [SMALL_STATE(4163)] = 175875, - [SMALL_STATE(4164)] = 175924, - [SMALL_STATE(4165)] = 175973, - [SMALL_STATE(4166)] = 176022, - [SMALL_STATE(4167)] = 176071, - [SMALL_STATE(4168)] = 176120, - [SMALL_STATE(4169)] = 176169, - [SMALL_STATE(4170)] = 176218, - [SMALL_STATE(4171)] = 176313, - [SMALL_STATE(4172)] = 176362, - [SMALL_STATE(4173)] = 176411, - [SMALL_STATE(4174)] = 176460, - [SMALL_STATE(4175)] = 176555, - [SMALL_STATE(4176)] = 176604, - [SMALL_STATE(4177)] = 176653, - [SMALL_STATE(4178)] = 176702, - [SMALL_STATE(4179)] = 176751, - [SMALL_STATE(4180)] = 176824, - [SMALL_STATE(4181)] = 176873, - [SMALL_STATE(4182)] = 176922, - [SMALL_STATE(4183)] = 177017, - [SMALL_STATE(4184)] = 177066, - [SMALL_STATE(4185)] = 177153, - [SMALL_STATE(4186)] = 177226, - [SMALL_STATE(4187)] = 177321, - [SMALL_STATE(4188)] = 177370, - [SMALL_STATE(4189)] = 177419, - [SMALL_STATE(4190)] = 177468, - [SMALL_STATE(4191)] = 177517, - [SMALL_STATE(4192)] = 177612, - [SMALL_STATE(4193)] = 177661, - [SMALL_STATE(4194)] = 177734, - [SMALL_STATE(4195)] = 177783, - [SMALL_STATE(4196)] = 177832, - [SMALL_STATE(4197)] = 177881, - [SMALL_STATE(4198)] = 177930, - [SMALL_STATE(4199)] = 177979, - [SMALL_STATE(4200)] = 178028, - [SMALL_STATE(4201)] = 178077, - [SMALL_STATE(4202)] = 178126, - [SMALL_STATE(4203)] = 178175, - [SMALL_STATE(4204)] = 178224, - [SMALL_STATE(4205)] = 178273, - [SMALL_STATE(4206)] = 178322, - [SMALL_STATE(4207)] = 178417, - [SMALL_STATE(4208)] = 178466, - [SMALL_STATE(4209)] = 178515, - [SMALL_STATE(4210)] = 178564, - [SMALL_STATE(4211)] = 178613, - [SMALL_STATE(4212)] = 178708, - [SMALL_STATE(4213)] = 178781, - [SMALL_STATE(4214)] = 178830, - [SMALL_STATE(4215)] = 178879, - [SMALL_STATE(4216)] = 178928, - [SMALL_STATE(4217)] = 178977, - [SMALL_STATE(4218)] = 179072, - [SMALL_STATE(4219)] = 179121, - [SMALL_STATE(4220)] = 179170, - [SMALL_STATE(4221)] = 179219, - [SMALL_STATE(4222)] = 179268, - [SMALL_STATE(4223)] = 179317, - [SMALL_STATE(4224)] = 179366, - [SMALL_STATE(4225)] = 179415, - [SMALL_STATE(4226)] = 179464, - [SMALL_STATE(4227)] = 179513, - [SMALL_STATE(4228)] = 179562, - [SMALL_STATE(4229)] = 179611, - [SMALL_STATE(4230)] = 179706, - [SMALL_STATE(4231)] = 179755, - [SMALL_STATE(4232)] = 179804, - [SMALL_STATE(4233)] = 179853, - [SMALL_STATE(4234)] = 179902, - [SMALL_STATE(4235)] = 179951, - [SMALL_STATE(4236)] = 180000, - [SMALL_STATE(4237)] = 180049, - [SMALL_STATE(4238)] = 180098, - [SMALL_STATE(4239)] = 180193, - [SMALL_STATE(4240)] = 180242, - [SMALL_STATE(4241)] = 180291, - [SMALL_STATE(4242)] = 180340, - [SMALL_STATE(4243)] = 180389, - [SMALL_STATE(4244)] = 180438, - [SMALL_STATE(4245)] = 180487, - [SMALL_STATE(4246)] = 180579, - [SMALL_STATE(4247)] = 180655, - [SMALL_STATE(4248)] = 180747, - [SMALL_STATE(4249)] = 180795, - [SMALL_STATE(4250)] = 180887, - [SMALL_STATE(4251)] = 180979, - [SMALL_STATE(4252)] = 181063, - [SMALL_STATE(4253)] = 181155, - [SMALL_STATE(4254)] = 181247, - [SMALL_STATE(4255)] = 181339, - [SMALL_STATE(4256)] = 181431, - [SMALL_STATE(4257)] = 181479, - [SMALL_STATE(4258)] = 181527, - [SMALL_STATE(4259)] = 181619, - [SMALL_STATE(4260)] = 181711, - [SMALL_STATE(4261)] = 181803, - [SMALL_STATE(4262)] = 181895, - [SMALL_STATE(4263)] = 181943, - [SMALL_STATE(4264)] = 181991, - [SMALL_STATE(4265)] = 182083, - [SMALL_STATE(4266)] = 182175, - [SMALL_STATE(4267)] = 182267, - [SMALL_STATE(4268)] = 182359, - [SMALL_STATE(4269)] = 182439, - [SMALL_STATE(4270)] = 182523, - [SMALL_STATE(4271)] = 182615, - [SMALL_STATE(4272)] = 182685, - [SMALL_STATE(4273)] = 182777, - [SMALL_STATE(4274)] = 182849, - [SMALL_STATE(4275)] = 182941, - [SMALL_STATE(4276)] = 183013, - [SMALL_STATE(4277)] = 183061, - [SMALL_STATE(4278)] = 183149, - [SMALL_STATE(4279)] = 183241, - [SMALL_STATE(4280)] = 183317, - [SMALL_STATE(4281)] = 183397, - [SMALL_STATE(4282)] = 183445, - [SMALL_STATE(4283)] = 183537, - [SMALL_STATE(4284)] = 183629, - [SMALL_STATE(4285)] = 183721, - [SMALL_STATE(4286)] = 183805, - [SMALL_STATE(4287)] = 183897, - [SMALL_STATE(4288)] = 183981, - [SMALL_STATE(4289)] = 184049, - [SMALL_STATE(4290)] = 184097, - [SMALL_STATE(4291)] = 184145, - [SMALL_STATE(4292)] = 184195, - [SMALL_STATE(4293)] = 184243, - [SMALL_STATE(4294)] = 184291, - [SMALL_STATE(4295)] = 184383, - [SMALL_STATE(4296)] = 184475, - [SMALL_STATE(4297)] = 184567, - [SMALL_STATE(4298)] = 184615, - [SMALL_STATE(4299)] = 184707, - [SMALL_STATE(4300)] = 184793, - [SMALL_STATE(4301)] = 184885, - [SMALL_STATE(4302)] = 184977, - [SMALL_STATE(4303)] = 185025, - [SMALL_STATE(4304)] = 185117, - [SMALL_STATE(4305)] = 185185, - [SMALL_STATE(4306)] = 185277, - [SMALL_STATE(4307)] = 185325, - [SMALL_STATE(4308)] = 185409, - [SMALL_STATE(4309)] = 185457, - [SMALL_STATE(4310)] = 185549, - [SMALL_STATE(4311)] = 185597, - [SMALL_STATE(4312)] = 185645, - [SMALL_STATE(4313)] = 185733, - [SMALL_STATE(4314)] = 185825, - [SMALL_STATE(4315)] = 185917, - [SMALL_STATE(4316)] = 185985, - [SMALL_STATE(4317)] = 186033, - [SMALL_STATE(4318)] = 186125, - [SMALL_STATE(4319)] = 186217, - [SMALL_STATE(4320)] = 186309, - [SMALL_STATE(4321)] = 186357, - [SMALL_STATE(4322)] = 186449, - [SMALL_STATE(4323)] = 186541, - [SMALL_STATE(4324)] = 186633, - [SMALL_STATE(4325)] = 186725, - [SMALL_STATE(4326)] = 186773, - [SMALL_STATE(4327)] = 186821, - [SMALL_STATE(4328)] = 186869, - [SMALL_STATE(4329)] = 186961, - [SMALL_STATE(4330)] = 187053, - [SMALL_STATE(4331)] = 187137, - [SMALL_STATE(4332)] = 187229, - [SMALL_STATE(4333)] = 187321, - [SMALL_STATE(4334)] = 187369, - [SMALL_STATE(4335)] = 187461, - [SMALL_STATE(4336)] = 187553, - [SMALL_STATE(4337)] = 187645, - [SMALL_STATE(4338)] = 187737, - [SMALL_STATE(4339)] = 187829, - [SMALL_STATE(4340)] = 187921, - [SMALL_STATE(4341)] = 187969, - [SMALL_STATE(4342)] = 188017, - [SMALL_STATE(4343)] = 188065, - [SMALL_STATE(4344)] = 188151, - [SMALL_STATE(4345)] = 188243, - [SMALL_STATE(4346)] = 188335, - [SMALL_STATE(4347)] = 188427, - [SMALL_STATE(4348)] = 188493, - [SMALL_STATE(4349)] = 188541, - [SMALL_STATE(4350)] = 188633, - [SMALL_STATE(4351)] = 188695, - [SMALL_STATE(4352)] = 188787, - [SMALL_STATE(4353)] = 188879, - [SMALL_STATE(4354)] = 188941, - [SMALL_STATE(4355)] = 189033, - [SMALL_STATE(4356)] = 189093, - [SMALL_STATE(4357)] = 189185, - [SMALL_STATE(4358)] = 189277, - [SMALL_STATE(4359)] = 189369, - [SMALL_STATE(4360)] = 189453, - [SMALL_STATE(4361)] = 189537, - [SMALL_STATE(4362)] = 189629, - [SMALL_STATE(4363)] = 189677, - [SMALL_STATE(4364)] = 189761, - [SMALL_STATE(4365)] = 189853, - [SMALL_STATE(4366)] = 189945, - [SMALL_STATE(4367)] = 190037, - [SMALL_STATE(4368)] = 190129, - [SMALL_STATE(4369)] = 190221, - [SMALL_STATE(4370)] = 190313, - [SMALL_STATE(4371)] = 190405, - [SMALL_STATE(4372)] = 190489, - [SMALL_STATE(4373)] = 190569, - [SMALL_STATE(4374)] = 190661, - [SMALL_STATE(4375)] = 190753, - [SMALL_STATE(4376)] = 190845, - [SMALL_STATE(4377)] = 190937, - [SMALL_STATE(4378)] = 191029, - [SMALL_STATE(4379)] = 191121, - [SMALL_STATE(4380)] = 191213, - [SMALL_STATE(4381)] = 191305, - [SMALL_STATE(4382)] = 191397, - [SMALL_STATE(4383)] = 191445, - [SMALL_STATE(4384)] = 191537, - [SMALL_STATE(4385)] = 191585, - [SMALL_STATE(4386)] = 191677, - [SMALL_STATE(4387)] = 191769, - [SMALL_STATE(4388)] = 191861, - [SMALL_STATE(4389)] = 191953, - [SMALL_STATE(4390)] = 192045, - [SMALL_STATE(4391)] = 192137, - [SMALL_STATE(4392)] = 192229, - [SMALL_STATE(4393)] = 192321, - [SMALL_STATE(4394)] = 192413, - [SMALL_STATE(4395)] = 192505, - [SMALL_STATE(4396)] = 192597, - [SMALL_STATE(4397)] = 192689, - [SMALL_STATE(4398)] = 192781, - [SMALL_STATE(4399)] = 192873, - [SMALL_STATE(4400)] = 192921, - [SMALL_STATE(4401)] = 192969, - [SMALL_STATE(4402)] = 193017, - [SMALL_STATE(4403)] = 193109, - [SMALL_STATE(4404)] = 193157, - [SMALL_STATE(4405)] = 193249, - [SMALL_STATE(4406)] = 193341, - [SMALL_STATE(4407)] = 193433, - [SMALL_STATE(4408)] = 193483, - [SMALL_STATE(4409)] = 193575, - [SMALL_STATE(4410)] = 193635, - [SMALL_STATE(4411)] = 193683, - [SMALL_STATE(4412)] = 193775, - [SMALL_STATE(4413)] = 193867, - [SMALL_STATE(4414)] = 193951, - [SMALL_STATE(4415)] = 194031, - [SMALL_STATE(4416)] = 194101, - [SMALL_STATE(4417)] = 194173, - [SMALL_STATE(4418)] = 194245, - [SMALL_STATE(4419)] = 194307, - [SMALL_STATE(4420)] = 194369, - [SMALL_STATE(4421)] = 194435, - [SMALL_STATE(4422)] = 194516, - [SMALL_STATE(4423)] = 194565, - [SMALL_STATE(4424)] = 194650, - [SMALL_STATE(4425)] = 194697, - [SMALL_STATE(4426)] = 194756, - [SMALL_STATE(4427)] = 194841, - [SMALL_STATE(4428)] = 194926, - [SMALL_STATE(4429)] = 194973, - [SMALL_STATE(4430)] = 195030, - [SMALL_STATE(4431)] = 195115, - [SMALL_STATE(4432)] = 195200, - [SMALL_STATE(4433)] = 195285, - [SMALL_STATE(4434)] = 195370, - [SMALL_STATE(4435)] = 195455, - [SMALL_STATE(4436)] = 195516, - [SMALL_STATE(4437)] = 195601, - [SMALL_STATE(4438)] = 195672, - [SMALL_STATE(4439)] = 195719, - [SMALL_STATE(4440)] = 195804, - [SMALL_STATE(4441)] = 195889, - [SMALL_STATE(4442)] = 195974, - [SMALL_STATE(4443)] = 196041, - [SMALL_STATE(4444)] = 196108, - [SMALL_STATE(4445)] = 196193, - [SMALL_STATE(4446)] = 196258, - [SMALL_STATE(4447)] = 196343, - [SMALL_STATE(4448)] = 196428, - [SMALL_STATE(4449)] = 196513, - [SMALL_STATE(4450)] = 196598, - [SMALL_STATE(4451)] = 196683, - [SMALL_STATE(4452)] = 196766, - [SMALL_STATE(4453)] = 196813, - [SMALL_STATE(4454)] = 196860, - [SMALL_STATE(4455)] = 196907, - [SMALL_STATE(4456)] = 196992, - [SMALL_STATE(4457)] = 197077, - [SMALL_STATE(4458)] = 197158, - [SMALL_STATE(4459)] = 197205, - [SMALL_STATE(4460)] = 197288, - [SMALL_STATE(4461)] = 197359, - [SMALL_STATE(4462)] = 197440, - [SMALL_STATE(4463)] = 197487, - [SMALL_STATE(4464)] = 197572, - [SMALL_STATE(4465)] = 197633, - [SMALL_STATE(4466)] = 197680, - [SMALL_STATE(4467)] = 197765, - [SMALL_STATE(4468)] = 197850, - [SMALL_STATE(4469)] = 197929, - [SMALL_STATE(4470)] = 198014, - [SMALL_STATE(4471)] = 198097, - [SMALL_STATE(4472)] = 198144, - [SMALL_STATE(4473)] = 198191, - [SMALL_STATE(4474)] = 198238, - [SMALL_STATE(4475)] = 198285, - [SMALL_STATE(4476)] = 198370, - [SMALL_STATE(4477)] = 198455, - [SMALL_STATE(4478)] = 198530, - [SMALL_STATE(4479)] = 198615, - [SMALL_STATE(4480)] = 198700, - [SMALL_STATE(4481)] = 198785, - [SMALL_STATE(4482)] = 198870, - [SMALL_STATE(4483)] = 198955, - [SMALL_STATE(4484)] = 199040, - [SMALL_STATE(4485)] = 199125, - [SMALL_STATE(4486)] = 199194, - [SMALL_STATE(4487)] = 199275, - [SMALL_STATE(4488)] = 199360, - [SMALL_STATE(4489)] = 199407, - [SMALL_STATE(4490)] = 199484, - [SMALL_STATE(4491)] = 199561, - [SMALL_STATE(4492)] = 199628, - [SMALL_STATE(4493)] = 199709, - [SMALL_STATE(4494)] = 199790, - [SMALL_STATE(4495)] = 199836, - [SMALL_STATE(4496)] = 199886, - [SMALL_STATE(4497)] = 199932, - [SMALL_STATE(4498)] = 199978, - [SMALL_STATE(4499)] = 200024, - [SMALL_STATE(4500)] = 200074, - [SMALL_STATE(4501)] = 200120, - [SMALL_STATE(4502)] = 200166, - [SMALL_STATE(4503)] = 200232, - [SMALL_STATE(4504)] = 200280, - [SMALL_STATE(4505)] = 200330, - [SMALL_STATE(4506)] = 200388, - [SMALL_STATE(4507)] = 200444, - [SMALL_STATE(4508)] = 200494, - [SMALL_STATE(4509)] = 200544, - [SMALL_STATE(4510)] = 200590, - [SMALL_STATE(4511)] = 200640, - [SMALL_STATE(4512)] = 200686, - [SMALL_STATE(4513)] = 200732, - [SMALL_STATE(4514)] = 200778, - [SMALL_STATE(4515)] = 200824, - [SMALL_STATE(4516)] = 200870, - [SMALL_STATE(4517)] = 200916, - [SMALL_STATE(4518)] = 200962, - [SMALL_STATE(4519)] = 201008, - [SMALL_STATE(4520)] = 201058, - [SMALL_STATE(4521)] = 201106, - [SMALL_STATE(4522)] = 201152, - [SMALL_STATE(4523)] = 201200, - [SMALL_STATE(4524)] = 201246, - [SMALL_STATE(4525)] = 201292, - [SMALL_STATE(4526)] = 201372, - [SMALL_STATE(4527)] = 201418, - [SMALL_STATE(4528)] = 201464, - [SMALL_STATE(4529)] = 201510, - [SMALL_STATE(4530)] = 201590, - [SMALL_STATE(4531)] = 201646, - [SMALL_STATE(4532)] = 201728, - [SMALL_STATE(4533)] = 201774, - [SMALL_STATE(4534)] = 201822, - [SMALL_STATE(4535)] = 201902, - [SMALL_STATE(4536)] = 201948, - [SMALL_STATE(4537)] = 201994, - [SMALL_STATE(4538)] = 202040, - [SMALL_STATE(4539)] = 202086, - [SMALL_STATE(4540)] = 202132, - [SMALL_STATE(4541)] = 202178, - [SMALL_STATE(4542)] = 202258, - [SMALL_STATE(4543)] = 202304, - [SMALL_STATE(4544)] = 202350, - [SMALL_STATE(4545)] = 202430, - [SMALL_STATE(4546)] = 202476, - [SMALL_STATE(4547)] = 202522, - [SMALL_STATE(4548)] = 202600, - [SMALL_STATE(4549)] = 202646, - [SMALL_STATE(4550)] = 202696, - [SMALL_STATE(4551)] = 202742, - [SMALL_STATE(4552)] = 202788, - [SMALL_STATE(4553)] = 202834, - [SMALL_STATE(4554)] = 202880, - [SMALL_STATE(4555)] = 202962, - [SMALL_STATE(4556)] = 203008, - [SMALL_STATE(4557)] = 203054, - [SMALL_STATE(4558)] = 203100, - [SMALL_STATE(4559)] = 203146, - [SMALL_STATE(4560)] = 203224, - [SMALL_STATE(4561)] = 203270, - [SMALL_STATE(4562)] = 203316, - [SMALL_STATE(4563)] = 203362, - [SMALL_STATE(4564)] = 203408, - [SMALL_STATE(4565)] = 203474, - [SMALL_STATE(4566)] = 203520, - [SMALL_STATE(4567)] = 203566, - [SMALL_STATE(4568)] = 203612, - [SMALL_STATE(4569)] = 203658, - [SMALL_STATE(4570)] = 203704, - [SMALL_STATE(4571)] = 203750, - [SMALL_STATE(4572)] = 203798, - [SMALL_STATE(4573)] = 203844, - [SMALL_STATE(4574)] = 203894, - [SMALL_STATE(4575)] = 203939, - [SMALL_STATE(4576)] = 203984, - [SMALL_STATE(4577)] = 204029, - [SMALL_STATE(4578)] = 204074, - [SMALL_STATE(4579)] = 204123, - [SMALL_STATE(4580)] = 204172, - [SMALL_STATE(4581)] = 204217, - [SMALL_STATE(4582)] = 204262, - [SMALL_STATE(4583)] = 204307, - [SMALL_STATE(4584)] = 204352, - [SMALL_STATE(4585)] = 204397, - [SMALL_STATE(4586)] = 204442, - [SMALL_STATE(4587)] = 204487, - [SMALL_STATE(4588)] = 204532, - [SMALL_STATE(4589)] = 204577, - [SMALL_STATE(4590)] = 204622, - [SMALL_STATE(4591)] = 204671, - [SMALL_STATE(4592)] = 204716, - [SMALL_STATE(4593)] = 204761, - [SMALL_STATE(4594)] = 204806, - [SMALL_STATE(4595)] = 204851, - [SMALL_STATE(4596)] = 204896, - [SMALL_STATE(4597)] = 204943, - [SMALL_STATE(4598)] = 204992, - [SMALL_STATE(4599)] = 205041, - [SMALL_STATE(4600)] = 205086, - [SMALL_STATE(4601)] = 205131, - [SMALL_STATE(4602)] = 205180, - [SMALL_STATE(4603)] = 205225, - [SMALL_STATE(4604)] = 205270, - [SMALL_STATE(4605)] = 205315, - [SMALL_STATE(4606)] = 205360, - [SMALL_STATE(4607)] = 205405, - [SMALL_STATE(4608)] = 205450, - [SMALL_STATE(4609)] = 205495, - [SMALL_STATE(4610)] = 205544, - [SMALL_STATE(4611)] = 205589, - [SMALL_STATE(4612)] = 205638, - [SMALL_STATE(4613)] = 205683, - [SMALL_STATE(4614)] = 205728, - [SMALL_STATE(4615)] = 205773, - [SMALL_STATE(4616)] = 205818, - [SMALL_STATE(4617)] = 205865, - [SMALL_STATE(4618)] = 205910, - [SMALL_STATE(4619)] = 205955, - [SMALL_STATE(4620)] = 206000, - [SMALL_STATE(4621)] = 206045, - [SMALL_STATE(4622)] = 206090, - [SMALL_STATE(4623)] = 206135, - [SMALL_STATE(4624)] = 206180, - [SMALL_STATE(4625)] = 206225, - [SMALL_STATE(4626)] = 206270, - [SMALL_STATE(4627)] = 206315, - [SMALL_STATE(4628)] = 206359, - [SMALL_STATE(4629)] = 206419, - [SMALL_STATE(4630)] = 206463, - [SMALL_STATE(4631)] = 206507, - [SMALL_STATE(4632)] = 206551, - [SMALL_STATE(4633)] = 206595, - [SMALL_STATE(4634)] = 206639, - [SMALL_STATE(4635)] = 206683, - [SMALL_STATE(4636)] = 206727, - [SMALL_STATE(4637)] = 206781, - [SMALL_STATE(4638)] = 206825, - [SMALL_STATE(4639)] = 206869, - [SMALL_STATE(4640)] = 206913, - [SMALL_STATE(4641)] = 206987, - [SMALL_STATE(4642)] = 207031, - [SMALL_STATE(4643)] = 207075, - [SMALL_STATE(4644)] = 207119, - [SMALL_STATE(4645)] = 207163, - [SMALL_STATE(4646)] = 207207, - [SMALL_STATE(4647)] = 207251, - [SMALL_STATE(4648)] = 207297, - [SMALL_STATE(4649)] = 207341, - [SMALL_STATE(4650)] = 207385, - [SMALL_STATE(4651)] = 207429, - [SMALL_STATE(4652)] = 207473, - [SMALL_STATE(4653)] = 207527, - [SMALL_STATE(4654)] = 207587, - [SMALL_STATE(4655)] = 207631, - [SMALL_STATE(4656)] = 207675, - [SMALL_STATE(4657)] = 207719, - [SMALL_STATE(4658)] = 207763, - [SMALL_STATE(4659)] = 207807, - [SMALL_STATE(4660)] = 207851, - [SMALL_STATE(4661)] = 207895, - [SMALL_STATE(4662)] = 207939, - [SMALL_STATE(4663)] = 207999, - [SMALL_STATE(4664)] = 208053, - [SMALL_STATE(4665)] = 208097, - [SMALL_STATE(4666)] = 208157, - [SMALL_STATE(4667)] = 208217, - [SMALL_STATE(4668)] = 208261, - [SMALL_STATE(4669)] = 208305, - [SMALL_STATE(4670)] = 208365, - [SMALL_STATE(4671)] = 208428, - [SMALL_STATE(4672)] = 208473, - [SMALL_STATE(4673)] = 208536, - [SMALL_STATE(4674)] = 208583, - [SMALL_STATE(4675)] = 208626, - [SMALL_STATE(4676)] = 208683, - [SMALL_STATE(4677)] = 208728, - [SMALL_STATE(4678)] = 208771, - [SMALL_STATE(4679)] = 208814, - [SMALL_STATE(4680)] = 208893, - [SMALL_STATE(4681)] = 208972, - [SMALL_STATE(4682)] = 209019, - [SMALL_STATE(4683)] = 209098, - [SMALL_STATE(4684)] = 209177, - [SMALL_STATE(4685)] = 209220, - [SMALL_STATE(4686)] = 209265, - [SMALL_STATE(4687)] = 209326, - [SMALL_STATE(4688)] = 209373, - [SMALL_STATE(4689)] = 209420, - [SMALL_STATE(4690)] = 209499, - [SMALL_STATE(4691)] = 209546, - [SMALL_STATE(4692)] = 209591, - [SMALL_STATE(4693)] = 209638, - [SMALL_STATE(4694)] = 209685, - [SMALL_STATE(4695)] = 209764, - [SMALL_STATE(4696)] = 209809, - [SMALL_STATE(4697)] = 209888, - [SMALL_STATE(4698)] = 209935, - [SMALL_STATE(4699)] = 209982, - [SMALL_STATE(4700)] = 210061, - [SMALL_STATE(4701)] = 210116, - [SMALL_STATE(4702)] = 210169, - [SMALL_STATE(4703)] = 210222, - [SMALL_STATE(4704)] = 210267, - [SMALL_STATE(4705)] = 210314, - [SMALL_STATE(4706)] = 210361, - [SMALL_STATE(4707)] = 210408, - [SMALL_STATE(4708)] = 210487, - [SMALL_STATE(4709)] = 210566, - [SMALL_STATE(4710)] = 210645, - [SMALL_STATE(4711)] = 210724, - [SMALL_STATE(4712)] = 210803, - [SMALL_STATE(4713)] = 210850, - [SMALL_STATE(4714)] = 210911, - [SMALL_STATE(4715)] = 210990, - [SMALL_STATE(4716)] = 211067, - [SMALL_STATE(4717)] = 211146, - [SMALL_STATE(4718)] = 211220, - [SMALL_STATE(4719)] = 211262, - [SMALL_STATE(4720)] = 211336, - [SMALL_STATE(4721)] = 211410, - [SMALL_STATE(4722)] = 211486, - [SMALL_STATE(4723)] = 211560, - [SMALL_STATE(4724)] = 211634, - [SMALL_STATE(4725)] = 211708, - [SMALL_STATE(4726)] = 211782, - [SMALL_STATE(4727)] = 211858, - [SMALL_STATE(4728)] = 211932, - [SMALL_STATE(4729)] = 212006, - [SMALL_STATE(4730)] = 212048, - [SMALL_STATE(4731)] = 212122, - [SMALL_STATE(4732)] = 212196, - [SMALL_STATE(4733)] = 212270, - [SMALL_STATE(4734)] = 212312, - [SMALL_STATE(4735)] = 212354, - [SMALL_STATE(4736)] = 212428, - [SMALL_STATE(4737)] = 212502, - [SMALL_STATE(4738)] = 212544, - [SMALL_STATE(4739)] = 212618, - [SMALL_STATE(4740)] = 212660, - [SMALL_STATE(4741)] = 212734, - [SMALL_STATE(4742)] = 212808, - [SMALL_STATE(4743)] = 212882, - [SMALL_STATE(4744)] = 212956, - [SMALL_STATE(4745)] = 213002, - [SMALL_STATE(4746)] = 213076, - [SMALL_STATE(4747)] = 213150, - [SMALL_STATE(4748)] = 213224, - [SMALL_STATE(4749)] = 213266, - [SMALL_STATE(4750)] = 213340, - [SMALL_STATE(4751)] = 213382, - [SMALL_STATE(4752)] = 213424, - [SMALL_STATE(4753)] = 213498, - [SMALL_STATE(4754)] = 213540, - [SMALL_STATE(4755)] = 213614, - [SMALL_STATE(4756)] = 213688, - [SMALL_STATE(4757)] = 213762, - [SMALL_STATE(4758)] = 213836, - [SMALL_STATE(4759)] = 213910, - [SMALL_STATE(4760)] = 213984, - [SMALL_STATE(4761)] = 214026, - [SMALL_STATE(4762)] = 214100, - [SMALL_STATE(4763)] = 214176, - [SMALL_STATE(4764)] = 214218, - [SMALL_STATE(4765)] = 214292, - [SMALL_STATE(4766)] = 214366, - [SMALL_STATE(4767)] = 214440, - [SMALL_STATE(4768)] = 214482, - [SMALL_STATE(4769)] = 214524, - [SMALL_STATE(4770)] = 214598, - [SMALL_STATE(4771)] = 214640, - [SMALL_STATE(4772)] = 214714, - [SMALL_STATE(4773)] = 214788, - [SMALL_STATE(4774)] = 214830, - [SMALL_STATE(4775)] = 214904, - [SMALL_STATE(4776)] = 214980, - [SMALL_STATE(4777)] = 215054, - [SMALL_STATE(4778)] = 215128, - [SMALL_STATE(4779)] = 215202, - [SMALL_STATE(4780)] = 215276, - [SMALL_STATE(4781)] = 215330, - [SMALL_STATE(4782)] = 215404, - [SMALL_STATE(4783)] = 215478, - [SMALL_STATE(4784)] = 215552, - [SMALL_STATE(4785)] = 215626, - [SMALL_STATE(4786)] = 215700, - [SMALL_STATE(4787)] = 215774, - [SMALL_STATE(4788)] = 215848, - [SMALL_STATE(4789)] = 215924, - [SMALL_STATE(4790)] = 215998, - [SMALL_STATE(4791)] = 216072, - [SMALL_STATE(4792)] = 216146, - [SMALL_STATE(4793)] = 216220, - [SMALL_STATE(4794)] = 216294, - [SMALL_STATE(4795)] = 216336, - [SMALL_STATE(4796)] = 216410, - [SMALL_STATE(4797)] = 216484, - [SMALL_STATE(4798)] = 216558, - [SMALL_STATE(4799)] = 216632, - [SMALL_STATE(4800)] = 216706, - [SMALL_STATE(4801)] = 216748, - [SMALL_STATE(4802)] = 216790, - [SMALL_STATE(4803)] = 216864, - [SMALL_STATE(4804)] = 216938, - [SMALL_STATE(4805)] = 216984, - [SMALL_STATE(4806)] = 217058, - [SMALL_STATE(4807)] = 217100, - [SMALL_STATE(4808)] = 217146, - [SMALL_STATE(4809)] = 217220, - [SMALL_STATE(4810)] = 217294, - [SMALL_STATE(4811)] = 217336, - [SMALL_STATE(4812)] = 217410, - [SMALL_STATE(4813)] = 217452, - [SMALL_STATE(4814)] = 217526, - [SMALL_STATE(4815)] = 217600, - [SMALL_STATE(4816)] = 217674, - [SMALL_STATE(4817)] = 217716, - [SMALL_STATE(4818)] = 217758, - [SMALL_STATE(4819)] = 217832, - [SMALL_STATE(4820)] = 217874, - [SMALL_STATE(4821)] = 217948, - [SMALL_STATE(4822)] = 218022, - [SMALL_STATE(4823)] = 218064, - [SMALL_STATE(4824)] = 218138, - [SMALL_STATE(4825)] = 218212, - [SMALL_STATE(4826)] = 218286, - [SMALL_STATE(4827)] = 218360, - [SMALL_STATE(4828)] = 218434, - [SMALL_STATE(4829)] = 218508, - [SMALL_STATE(4830)] = 218582, - [SMALL_STATE(4831)] = 218656, - [SMALL_STATE(4832)] = 218730, - [SMALL_STATE(4833)] = 218804, - [SMALL_STATE(4834)] = 218878, - [SMALL_STATE(4835)] = 218920, - [SMALL_STATE(4836)] = 218994, - [SMALL_STATE(4837)] = 219036, - [SMALL_STATE(4838)] = 219110, - [SMALL_STATE(4839)] = 219152, - [SMALL_STATE(4840)] = 219226, - [SMALL_STATE(4841)] = 219270, - [SMALL_STATE(4842)] = 219312, - [SMALL_STATE(4843)] = 219354, - [SMALL_STATE(4844)] = 219428, - [SMALL_STATE(4845)] = 219502, - [SMALL_STATE(4846)] = 219576, - [SMALL_STATE(4847)] = 219650, - [SMALL_STATE(4848)] = 219692, - [SMALL_STATE(4849)] = 219766, - [SMALL_STATE(4850)] = 219840, - [SMALL_STATE(4851)] = 219882, - [SMALL_STATE(4852)] = 219924, - [SMALL_STATE(4853)] = 219998, - [SMALL_STATE(4854)] = 220072, - [SMALL_STATE(4855)] = 220114, - [SMALL_STATE(4856)] = 220188, - [SMALL_STATE(4857)] = 220230, - [SMALL_STATE(4858)] = 220304, - [SMALL_STATE(4859)] = 220378, - [SMALL_STATE(4860)] = 220420, - [SMALL_STATE(4861)] = 220494, - [SMALL_STATE(4862)] = 220568, - [SMALL_STATE(4863)] = 220610, - [SMALL_STATE(4864)] = 220684, - [SMALL_STATE(4865)] = 220726, - [SMALL_STATE(4866)] = 220778, - [SMALL_STATE(4867)] = 220852, - [SMALL_STATE(4868)] = 220926, - [SMALL_STATE(4869)] = 220968, - [SMALL_STATE(4870)] = 221044, - [SMALL_STATE(4871)] = 221118, - [SMALL_STATE(4872)] = 221192, - [SMALL_STATE(4873)] = 221266, - [SMALL_STATE(4874)] = 221340, - [SMALL_STATE(4875)] = 221414, - [SMALL_STATE(4876)] = 221456, - [SMALL_STATE(4877)] = 221530, - [SMALL_STATE(4878)] = 221572, - [SMALL_STATE(4879)] = 221646, - [SMALL_STATE(4880)] = 221688, - [SMALL_STATE(4881)] = 221762, - [SMALL_STATE(4882)] = 221836, - [SMALL_STATE(4883)] = 221910, - [SMALL_STATE(4884)] = 221984, - [SMALL_STATE(4885)] = 222041, - [SMALL_STATE(4886)] = 222098, - [SMALL_STATE(4887)] = 222149, - [SMALL_STATE(4888)] = 222190, - [SMALL_STATE(4889)] = 222231, - [SMALL_STATE(4890)] = 222288, - [SMALL_STATE(4891)] = 222339, - [SMALL_STATE(4892)] = 222380, - [SMALL_STATE(4893)] = 222431, - [SMALL_STATE(4894)] = 222482, - [SMALL_STATE(4895)] = 222539, - [SMALL_STATE(4896)] = 222580, - [SMALL_STATE(4897)] = 222631, - [SMALL_STATE(4898)] = 222688, - [SMALL_STATE(4899)] = 222729, - [SMALL_STATE(4900)] = 222770, - [SMALL_STATE(4901)] = 222817, - [SMALL_STATE(4902)] = 222874, - [SMALL_STATE(4903)] = 222923, - [SMALL_STATE(4904)] = 222972, - [SMALL_STATE(4905)] = 223013, - [SMALL_STATE(4906)] = 223054, - [SMALL_STATE(4907)] = 223111, - [SMALL_STATE(4908)] = 223156, - [SMALL_STATE(4909)] = 223203, - [SMALL_STATE(4910)] = 223250, - [SMALL_STATE(4911)] = 223291, - [SMALL_STATE(4912)] = 223332, - [SMALL_STATE(4913)] = 223389, - [SMALL_STATE(4914)] = 223446, - [SMALL_STATE(4915)] = 223503, - [SMALL_STATE(4916)] = 223546, - [SMALL_STATE(4917)] = 223593, - [SMALL_STATE(4918)] = 223650, - [SMALL_STATE(4919)] = 223695, - [SMALL_STATE(4920)] = 223736, - [SMALL_STATE(4921)] = 223783, - [SMALL_STATE(4922)] = 223834, - [SMALL_STATE(4923)] = 223879, - [SMALL_STATE(4924)] = 223920, - [SMALL_STATE(4925)] = 223977, - [SMALL_STATE(4926)] = 224022, - [SMALL_STATE(4927)] = 224063, - [SMALL_STATE(4928)] = 224105, - [SMALL_STATE(4929)] = 224145, - [SMALL_STATE(4930)] = 224185, - [SMALL_STATE(4931)] = 224225, - [SMALL_STATE(4932)] = 224269, - [SMALL_STATE(4933)] = 224309, - [SMALL_STATE(4934)] = 224377, - [SMALL_STATE(4935)] = 224417, - [SMALL_STATE(4936)] = 224457, - [SMALL_STATE(4937)] = 224511, - [SMALL_STATE(4938)] = 224553, - [SMALL_STATE(4939)] = 224595, - [SMALL_STATE(4940)] = 224649, - [SMALL_STATE(4941)] = 224689, - [SMALL_STATE(4942)] = 224729, - [SMALL_STATE(4943)] = 224769, - [SMALL_STATE(4944)] = 224813, - [SMALL_STATE(4945)] = 224853, - [SMALL_STATE(4946)] = 224907, - [SMALL_STATE(4947)] = 224963, - [SMALL_STATE(4948)] = 225007, - [SMALL_STATE(4949)] = 225047, - [SMALL_STATE(4950)] = 225105, - [SMALL_STATE(4951)] = 225145, - [SMALL_STATE(4952)] = 225185, - [SMALL_STATE(4953)] = 225225, - [SMALL_STATE(4954)] = 225275, - [SMALL_STATE(4955)] = 225329, - [SMALL_STATE(4956)] = 225373, - [SMALL_STATE(4957)] = 225429, - [SMALL_STATE(4958)] = 225487, - [SMALL_STATE(4959)] = 225552, - [SMALL_STATE(4960)] = 225599, - [SMALL_STATE(4961)] = 225664, - [SMALL_STATE(4962)] = 225729, - [SMALL_STATE(4963)] = 225794, - [SMALL_STATE(4964)] = 225859, - [SMALL_STATE(4965)] = 225924, - [SMALL_STATE(4966)] = 225993, - [SMALL_STATE(4967)] = 226062, - [SMALL_STATE(4968)] = 226131, - [SMALL_STATE(4969)] = 226196, - [SMALL_STATE(4970)] = 226261, - [SMALL_STATE(4971)] = 226312, - [SMALL_STATE(4972)] = 226377, - [SMALL_STATE(4973)] = 226442, - [SMALL_STATE(4974)] = 226507, - [SMALL_STATE(4975)] = 226572, - [SMALL_STATE(4976)] = 226615, - [SMALL_STATE(4977)] = 226684, - [SMALL_STATE(4978)] = 226723, - [SMALL_STATE(4979)] = 226788, - [SMALL_STATE(4980)] = 226839, - [SMALL_STATE(4981)] = 226904, - [SMALL_STATE(4982)] = 226943, - [SMALL_STATE(4983)] = 226982, - [SMALL_STATE(4984)] = 227031, - [SMALL_STATE(4985)] = 227082, - [SMALL_STATE(4986)] = 227133, - [SMALL_STATE(4987)] = 227198, - [SMALL_STATE(4988)] = 227249, - [SMALL_STATE(4989)] = 227314, - [SMALL_STATE(4990)] = 227383, - [SMALL_STATE(4991)] = 227448, - [SMALL_STATE(4992)] = 227513, - [SMALL_STATE(4993)] = 227578, - [SMALL_STATE(4994)] = 227617, - [SMALL_STATE(4995)] = 227664, - [SMALL_STATE(4996)] = 227729, - [SMALL_STATE(4997)] = 227794, - [SMALL_STATE(4998)] = 227859, - [SMALL_STATE(4999)] = 227928, - [SMALL_STATE(5000)] = 227993, - [SMALL_STATE(5001)] = 228062, - [SMALL_STATE(5002)] = 228127, - [SMALL_STATE(5003)] = 228192, - [SMALL_STATE(5004)] = 228261, - [SMALL_STATE(5005)] = 228330, - [SMALL_STATE(5006)] = 228399, - [SMALL_STATE(5007)] = 228464, - [SMALL_STATE(5008)] = 228533, - [SMALL_STATE(5009)] = 228602, - [SMALL_STATE(5010)] = 228671, - [SMALL_STATE(5011)] = 228740, - [SMALL_STATE(5012)] = 228809, - [SMALL_STATE(5013)] = 228860, - [SMALL_STATE(5014)] = 228925, - [SMALL_STATE(5015)] = 228990, - [SMALL_STATE(5016)] = 229035, - [SMALL_STATE(5017)] = 229080, - [SMALL_STATE(5018)] = 229121, - [SMALL_STATE(5019)] = 229186, - [SMALL_STATE(5020)] = 229251, - [SMALL_STATE(5021)] = 229296, - [SMALL_STATE(5022)] = 229361, - [SMALL_STATE(5023)] = 229426, - [SMALL_STATE(5024)] = 229491, - [SMALL_STATE(5025)] = 229556, - [SMALL_STATE(5026)] = 229621, - [SMALL_STATE(5027)] = 229672, - [SMALL_STATE(5028)] = 229737, - [SMALL_STATE(5029)] = 229780, - [SMALL_STATE(5030)] = 229845, - [SMALL_STATE(5031)] = 229910, - [SMALL_STATE(5032)] = 229961, - [SMALL_STATE(5033)] = 230012, - [SMALL_STATE(5034)] = 230063, - [SMALL_STATE(5035)] = 230114, - [SMALL_STATE(5036)] = 230165, - [SMALL_STATE(5037)] = 230216, - [SMALL_STATE(5038)] = 230267, - [SMALL_STATE(5039)] = 230310, - [SMALL_STATE(5040)] = 230375, - [SMALL_STATE(5041)] = 230440, - [SMALL_STATE(5042)] = 230505, - [SMALL_STATE(5043)] = 230554, - [SMALL_STATE(5044)] = 230619, - [SMALL_STATE(5045)] = 230684, - [SMALL_STATE(5046)] = 230753, - [SMALL_STATE(5047)] = 230804, - [SMALL_STATE(5048)] = 230855, - [SMALL_STATE(5049)] = 230906, - [SMALL_STATE(5050)] = 230975, - [SMALL_STATE(5051)] = 231044, - [SMALL_STATE(5052)] = 231082, - [SMALL_STATE(5053)] = 231130, - [SMALL_STATE(5054)] = 231168, - [SMALL_STATE(5055)] = 231206, - [SMALL_STATE(5056)] = 231254, - [SMALL_STATE(5057)] = 231298, - [SMALL_STATE(5058)] = 231340, - [SMALL_STATE(5059)] = 231388, - [SMALL_STATE(5060)] = 231432, - [SMALL_STATE(5061)] = 231486, - [SMALL_STATE(5062)] = 231524, - [SMALL_STATE(5063)] = 231562, - [SMALL_STATE(5064)] = 231600, - [SMALL_STATE(5065)] = 231648, - [SMALL_STATE(5066)] = 231686, - [SMALL_STATE(5067)] = 231724, - [SMALL_STATE(5068)] = 231766, - [SMALL_STATE(5069)] = 231804, - [SMALL_STATE(5070)] = 231850, - [SMALL_STATE(5071)] = 231892, - [SMALL_STATE(5072)] = 231930, - [SMALL_STATE(5073)] = 231968, - [SMALL_STATE(5074)] = 232016, - [SMALL_STATE(5075)] = 232060, - [SMALL_STATE(5076)] = 232098, - [SMALL_STATE(5077)] = 232136, - [SMALL_STATE(5078)] = 232180, - [SMALL_STATE(5079)] = 232224, - [SMALL_STATE(5080)] = 232262, - [SMALL_STATE(5081)] = 232300, - [SMALL_STATE(5082)] = 232338, - [SMALL_STATE(5083)] = 232376, - [SMALL_STATE(5084)] = 232420, - [SMALL_STATE(5085)] = 232460, - [SMALL_STATE(5086)] = 232504, - [SMALL_STATE(5087)] = 232558, - [SMALL_STATE(5088)] = 232596, - [SMALL_STATE(5089)] = 232640, - [SMALL_STATE(5090)] = 232684, - [SMALL_STATE(5091)] = 232726, - [SMALL_STATE(5092)] = 232772, - [SMALL_STATE(5093)] = 232810, - [SMALL_STATE(5094)] = 232852, - [SMALL_STATE(5095)] = 232900, - [SMALL_STATE(5096)] = 232938, - [SMALL_STATE(5097)] = 232988, - [SMALL_STATE(5098)] = 233026, - [SMALL_STATE(5099)] = 233070, - [SMALL_STATE(5100)] = 233114, - [SMALL_STATE(5101)] = 233152, - [SMALL_STATE(5102)] = 233190, - [SMALL_STATE(5103)] = 233228, - [SMALL_STATE(5104)] = 233266, - [SMALL_STATE(5105)] = 233304, - [SMALL_STATE(5106)] = 233342, - [SMALL_STATE(5107)] = 233380, - [SMALL_STATE(5108)] = 233418, - [SMALL_STATE(5109)] = 233472, - [SMALL_STATE(5110)] = 233510, - [SMALL_STATE(5111)] = 233554, - [SMALL_STATE(5112)] = 233608, - [SMALL_STATE(5113)] = 233646, - [SMALL_STATE(5114)] = 233684, - [SMALL_STATE(5115)] = 233722, - [SMALL_STATE(5116)] = 233760, - [SMALL_STATE(5117)] = 233798, - [SMALL_STATE(5118)] = 233836, - [SMALL_STATE(5119)] = 233874, - [SMALL_STATE(5120)] = 233912, - [SMALL_STATE(5121)] = 233950, - [SMALL_STATE(5122)] = 234004, - [SMALL_STATE(5123)] = 234048, - [SMALL_STATE(5124)] = 234102, - [SMALL_STATE(5125)] = 234140, - [SMALL_STATE(5126)] = 234180, - [SMALL_STATE(5127)] = 234228, - [SMALL_STATE(5128)] = 234272, - [SMALL_STATE(5129)] = 234316, - [SMALL_STATE(5130)] = 234364, - [SMALL_STATE(5131)] = 234414, - [SMALL_STATE(5132)] = 234462, - [SMALL_STATE(5133)] = 234500, - [SMALL_STATE(5134)] = 234550, - [SMALL_STATE(5135)] = 234594, - [SMALL_STATE(5136)] = 234632, - [SMALL_STATE(5137)] = 234680, - [SMALL_STATE(5138)] = 234728, - [SMALL_STATE(5139)] = 234768, - [SMALL_STATE(5140)] = 234806, - [SMALL_STATE(5141)] = 234854, - [SMALL_STATE(5142)] = 234902, - [SMALL_STATE(5143)] = 234945, - [SMALL_STATE(5144)] = 235008, - [SMALL_STATE(5145)] = 235045, - [SMALL_STATE(5146)] = 235086, - [SMALL_STATE(5147)] = 235149, - [SMALL_STATE(5148)] = 235190, - [SMALL_STATE(5149)] = 235229, - [SMALL_STATE(5150)] = 235272, - [SMALL_STATE(5151)] = 235311, - [SMALL_STATE(5152)] = 235348, - [SMALL_STATE(5153)] = 235385, - [SMALL_STATE(5154)] = 235428, - [SMALL_STATE(5155)] = 235491, - [SMALL_STATE(5156)] = 235534, - [SMALL_STATE(5157)] = 235597, - [SMALL_STATE(5158)] = 235640, - [SMALL_STATE(5159)] = 235681, - [SMALL_STATE(5160)] = 235722, - [SMALL_STATE(5161)] = 235765, - [SMALL_STATE(5162)] = 235808, - [SMALL_STATE(5163)] = 235851, - [SMALL_STATE(5164)] = 235894, - [SMALL_STATE(5165)] = 235937, - [SMALL_STATE(5166)] = 235974, - [SMALL_STATE(5167)] = 236021, - [SMALL_STATE(5168)] = 236064, - [SMALL_STATE(5169)] = 236101, - [SMALL_STATE(5170)] = 236144, - [SMALL_STATE(5171)] = 236187, - [SMALL_STATE(5172)] = 236230, - [SMALL_STATE(5173)] = 236273, - [SMALL_STATE(5174)] = 236316, - [SMALL_STATE(5175)] = 236353, - [SMALL_STATE(5176)] = 236416, - [SMALL_STATE(5177)] = 236459, - [SMALL_STATE(5178)] = 236500, - [SMALL_STATE(5179)] = 236543, - [SMALL_STATE(5180)] = 236586, - [SMALL_STATE(5181)] = 236629, - [SMALL_STATE(5182)] = 236670, - [SMALL_STATE(5183)] = 236733, - [SMALL_STATE(5184)] = 236770, - [SMALL_STATE(5185)] = 236813, - [SMALL_STATE(5186)] = 236856, - [SMALL_STATE(5187)] = 236899, - [SMALL_STATE(5188)] = 236942, - [SMALL_STATE(5189)] = 236985, - [SMALL_STATE(5190)] = 237028, - [SMALL_STATE(5191)] = 237091, - [SMALL_STATE(5192)] = 237128, - [SMALL_STATE(5193)] = 237171, - [SMALL_STATE(5194)] = 237214, - [SMALL_STATE(5195)] = 237277, - [SMALL_STATE(5196)] = 237320, - [SMALL_STATE(5197)] = 237383, - [SMALL_STATE(5198)] = 237422, - [SMALL_STATE(5199)] = 237465, - [SMALL_STATE(5200)] = 237508, - [SMALL_STATE(5201)] = 237545, - [SMALL_STATE(5202)] = 237588, - [SMALL_STATE(5203)] = 237631, - [SMALL_STATE(5204)] = 237674, - [SMALL_STATE(5205)] = 237715, - [SMALL_STATE(5206)] = 237758, - [SMALL_STATE(5207)] = 237795, - [SMALL_STATE(5208)] = 237834, - [SMALL_STATE(5209)] = 237877, - [SMALL_STATE(5210)] = 237920, - [SMALL_STATE(5211)] = 237963, - [SMALL_STATE(5212)] = 238006, - [SMALL_STATE(5213)] = 238049, - [SMALL_STATE(5214)] = 238112, - [SMALL_STATE(5215)] = 238159, - [SMALL_STATE(5216)] = 238202, - [SMALL_STATE(5217)] = 238265, - [SMALL_STATE(5218)] = 238302, - [SMALL_STATE(5219)] = 238339, - [SMALL_STATE(5220)] = 238376, - [SMALL_STATE(5221)] = 238419, - [SMALL_STATE(5222)] = 238462, - [SMALL_STATE(5223)] = 238505, - [SMALL_STATE(5224)] = 238546, - [SMALL_STATE(5225)] = 238589, - [SMALL_STATE(5226)] = 238638, - [SMALL_STATE(5227)] = 238681, - [SMALL_STATE(5228)] = 238724, - [SMALL_STATE(5229)] = 238767, - [SMALL_STATE(5230)] = 238810, - [SMALL_STATE(5231)] = 238847, - [SMALL_STATE(5232)] = 238910, - [SMALL_STATE(5233)] = 238947, - [SMALL_STATE(5234)] = 238984, - [SMALL_STATE(5235)] = 239021, - [SMALL_STATE(5236)] = 239070, - [SMALL_STATE(5237)] = 239133, - [SMALL_STATE(5238)] = 239176, - [SMALL_STATE(5239)] = 239219, - [SMALL_STATE(5240)] = 239262, - [SMALL_STATE(5241)] = 239299, - [SMALL_STATE(5242)] = 239342, - [SMALL_STATE(5243)] = 239385, - [SMALL_STATE(5244)] = 239426, - [SMALL_STATE(5245)] = 239469, - [SMALL_STATE(5246)] = 239512, - [SMALL_STATE(5247)] = 239555, - [SMALL_STATE(5248)] = 239598, - [SMALL_STATE(5249)] = 239641, - [SMALL_STATE(5250)] = 239684, - [SMALL_STATE(5251)] = 239727, - [SMALL_STATE(5252)] = 239770, - [SMALL_STATE(5253)] = 239807, - [SMALL_STATE(5254)] = 239850, - [SMALL_STATE(5255)] = 239913, - [SMALL_STATE(5256)] = 239976, - [SMALL_STATE(5257)] = 240013, - [SMALL_STATE(5258)] = 240056, - [SMALL_STATE(5259)] = 240099, - [SMALL_STATE(5260)] = 240162, - [SMALL_STATE(5261)] = 240205, - [SMALL_STATE(5262)] = 240248, - [SMALL_STATE(5263)] = 240291, - [SMALL_STATE(5264)] = 240334, - [SMALL_STATE(5265)] = 240377, - [SMALL_STATE(5266)] = 240420, - [SMALL_STATE(5267)] = 240463, - [SMALL_STATE(5268)] = 240506, - [SMALL_STATE(5269)] = 240549, - [SMALL_STATE(5270)] = 240592, - [SMALL_STATE(5271)] = 240635, - [SMALL_STATE(5272)] = 240678, - [SMALL_STATE(5273)] = 240721, - [SMALL_STATE(5274)] = 240764, - [SMALL_STATE(5275)] = 240807, - [SMALL_STATE(5276)] = 240850, - [SMALL_STATE(5277)] = 240893, - [SMALL_STATE(5278)] = 240938, - [SMALL_STATE(5279)] = 240981, - [SMALL_STATE(5280)] = 241044, - [SMALL_STATE(5281)] = 241107, - [SMALL_STATE(5282)] = 241158, - [SMALL_STATE(5283)] = 241201, - [SMALL_STATE(5284)] = 241246, - [SMALL_STATE(5285)] = 241287, - [SMALL_STATE(5286)] = 241324, - [SMALL_STATE(5287)] = 241367, - [SMALL_STATE(5288)] = 241410, - [SMALL_STATE(5289)] = 241453, - [SMALL_STATE(5290)] = 241513, - [SMALL_STATE(5291)] = 241573, - [SMALL_STATE(5292)] = 241633, - [SMALL_STATE(5293)] = 241693, - [SMALL_STATE(5294)] = 241735, - [SMALL_STATE(5295)] = 241795, - [SMALL_STATE(5296)] = 241855, - [SMALL_STATE(5297)] = 241915, - [SMALL_STATE(5298)] = 241975, - [SMALL_STATE(5299)] = 242035, - [SMALL_STATE(5300)] = 242095, - [SMALL_STATE(5301)] = 242137, - [SMALL_STATE(5302)] = 242197, - [SMALL_STATE(5303)] = 242233, - [SMALL_STATE(5304)] = 242275, - [SMALL_STATE(5305)] = 242335, - [SMALL_STATE(5306)] = 242395, - [SMALL_STATE(5307)] = 242455, - [SMALL_STATE(5308)] = 242515, - [SMALL_STATE(5309)] = 242575, - [SMALL_STATE(5310)] = 242617, - [SMALL_STATE(5311)] = 242659, - [SMALL_STATE(5312)] = 242719, - [SMALL_STATE(5313)] = 242761, - [SMALL_STATE(5314)] = 242821, - [SMALL_STATE(5315)] = 242881, - [SMALL_STATE(5316)] = 242941, - [SMALL_STATE(5317)] = 243001, - [SMALL_STATE(5318)] = 243061, - [SMALL_STATE(5319)] = 243121, - [SMALL_STATE(5320)] = 243181, - [SMALL_STATE(5321)] = 243241, - [SMALL_STATE(5322)] = 243301, - [SMALL_STATE(5323)] = 243361, - [SMALL_STATE(5324)] = 243421, - [SMALL_STATE(5325)] = 243481, - [SMALL_STATE(5326)] = 243541, - [SMALL_STATE(5327)] = 243601, - [SMALL_STATE(5328)] = 243661, - [SMALL_STATE(5329)] = 243721, - [SMALL_STATE(5330)] = 243767, - [SMALL_STATE(5331)] = 243827, - [SMALL_STATE(5332)] = 243887, - [SMALL_STATE(5333)] = 243927, - [SMALL_STATE(5334)] = 243987, - [SMALL_STATE(5335)] = 244047, - [SMALL_STATE(5336)] = 244083, - [SMALL_STATE(5337)] = 244121, - [SMALL_STATE(5338)] = 244181, - [SMALL_STATE(5339)] = 244241, - [SMALL_STATE(5340)] = 244301, - [SMALL_STATE(5341)] = 244361, - [SMALL_STATE(5342)] = 244421, - [SMALL_STATE(5343)] = 244481, - [SMALL_STATE(5344)] = 244541, - [SMALL_STATE(5345)] = 244601, - [SMALL_STATE(5346)] = 244661, - [SMALL_STATE(5347)] = 244721, - [SMALL_STATE(5348)] = 244781, - [SMALL_STATE(5349)] = 244841, - [SMALL_STATE(5350)] = 244901, - [SMALL_STATE(5351)] = 244961, - [SMALL_STATE(5352)] = 245021, - [SMALL_STATE(5353)] = 245081, - [SMALL_STATE(5354)] = 245141, - [SMALL_STATE(5355)] = 245201, - [SMALL_STATE(5356)] = 245243, - [SMALL_STATE(5357)] = 245285, - [SMALL_STATE(5358)] = 245345, - [SMALL_STATE(5359)] = 245405, - [SMALL_STATE(5360)] = 245441, - [SMALL_STATE(5361)] = 245501, - [SMALL_STATE(5362)] = 245561, - [SMALL_STATE(5363)] = 245603, - [SMALL_STATE(5364)] = 245645, - [SMALL_STATE(5365)] = 245705, - [SMALL_STATE(5366)] = 245765, - [SMALL_STATE(5367)] = 245825, - [SMALL_STATE(5368)] = 245867, - [SMALL_STATE(5369)] = 245909, - [SMALL_STATE(5370)] = 245969, - [SMALL_STATE(5371)] = 246029, - [SMALL_STATE(5372)] = 246089, - [SMALL_STATE(5373)] = 246149, - [SMALL_STATE(5374)] = 246191, - [SMALL_STATE(5375)] = 246251, - [SMALL_STATE(5376)] = 246311, - [SMALL_STATE(5377)] = 246371, - [SMALL_STATE(5378)] = 246431, - [SMALL_STATE(5379)] = 246491, - [SMALL_STATE(5380)] = 246551, - [SMALL_STATE(5381)] = 246611, - [SMALL_STATE(5382)] = 246653, - [SMALL_STATE(5383)] = 246713, - [SMALL_STATE(5384)] = 246773, - [SMALL_STATE(5385)] = 246833, - [SMALL_STATE(5386)] = 246893, - [SMALL_STATE(5387)] = 246953, - [SMALL_STATE(5388)] = 247013, - [SMALL_STATE(5389)] = 247073, - [SMALL_STATE(5390)] = 247133, - [SMALL_STATE(5391)] = 247193, - [SMALL_STATE(5392)] = 247253, - [SMALL_STATE(5393)] = 247313, - [SMALL_STATE(5394)] = 247373, - [SMALL_STATE(5395)] = 247433, - [SMALL_STATE(5396)] = 247493, - [SMALL_STATE(5397)] = 247553, - [SMALL_STATE(5398)] = 247613, - [SMALL_STATE(5399)] = 247673, - [SMALL_STATE(5400)] = 247733, - [SMALL_STATE(5401)] = 247793, - [SMALL_STATE(5402)] = 247835, - [SMALL_STATE(5403)] = 247895, - [SMALL_STATE(5404)] = 247955, - [SMALL_STATE(5405)] = 248015, - [SMALL_STATE(5406)] = 248075, - [SMALL_STATE(5407)] = 248117, - [SMALL_STATE(5408)] = 248177, - [SMALL_STATE(5409)] = 248219, - [SMALL_STATE(5410)] = 248279, - [SMALL_STATE(5411)] = 248339, - [SMALL_STATE(5412)] = 248399, - [SMALL_STATE(5413)] = 248459, - [SMALL_STATE(5414)] = 248517, - [SMALL_STATE(5415)] = 248577, - [SMALL_STATE(5416)] = 248637, - [SMALL_STATE(5417)] = 248697, - [SMALL_STATE(5418)] = 248739, - [SMALL_STATE(5419)] = 248799, - [SMALL_STATE(5420)] = 248859, - [SMALL_STATE(5421)] = 248903, - [SMALL_STATE(5422)] = 248963, - [SMALL_STATE(5423)] = 249023, - [SMALL_STATE(5424)] = 249083, - [SMALL_STATE(5425)] = 249143, - [SMALL_STATE(5426)] = 249203, - [SMALL_STATE(5427)] = 249245, - [SMALL_STATE(5428)] = 249305, - [SMALL_STATE(5429)] = 249349, - [SMALL_STATE(5430)] = 249409, - [SMALL_STATE(5431)] = 249453, - [SMALL_STATE(5432)] = 249513, - [SMALL_STATE(5433)] = 249573, - [SMALL_STATE(5434)] = 249633, - [SMALL_STATE(5435)] = 249679, - [SMALL_STATE(5436)] = 249723, - [SMALL_STATE(5437)] = 249783, - [SMALL_STATE(5438)] = 249843, - [SMALL_STATE(5439)] = 249887, - [SMALL_STATE(5440)] = 249947, - [SMALL_STATE(5441)] = 250007, - [SMALL_STATE(5442)] = 250067, - [SMALL_STATE(5443)] = 250127, - [SMALL_STATE(5444)] = 250173, - [SMALL_STATE(5445)] = 250219, - [SMALL_STATE(5446)] = 250265, - [SMALL_STATE(5447)] = 250309, - [SMALL_STATE(5448)] = 250349, - [SMALL_STATE(5449)] = 250409, - [SMALL_STATE(5450)] = 250451, - [SMALL_STATE(5451)] = 250511, - [SMALL_STATE(5452)] = 250571, - [SMALL_STATE(5453)] = 250613, - [SMALL_STATE(5454)] = 250655, - [SMALL_STATE(5455)] = 250701, - [SMALL_STATE(5456)] = 250747, - [SMALL_STATE(5457)] = 250807, - [SMALL_STATE(5458)] = 250853, - [SMALL_STATE(5459)] = 250913, - [SMALL_STATE(5460)] = 250973, - [SMALL_STATE(5461)] = 251033, - [SMALL_STATE(5462)] = 251079, - [SMALL_STATE(5463)] = 251123, - [SMALL_STATE(5464)] = 251165, - [SMALL_STATE(5465)] = 251207, - [SMALL_STATE(5466)] = 251267, - [SMALL_STATE(5467)] = 251327, - [SMALL_STATE(5468)] = 251373, - [SMALL_STATE(5469)] = 251433, - [SMALL_STATE(5470)] = 251493, - [SMALL_STATE(5471)] = 251539, - [SMALL_STATE(5472)] = 251599, - [SMALL_STATE(5473)] = 251641, - [SMALL_STATE(5474)] = 251681, - [SMALL_STATE(5475)] = 251741, - [SMALL_STATE(5476)] = 251801, - [SMALL_STATE(5477)] = 251861, - [SMALL_STATE(5478)] = 251897, - [SMALL_STATE(5479)] = 251957, - [SMALL_STATE(5480)] = 252003, - [SMALL_STATE(5481)] = 252039, - [SMALL_STATE(5482)] = 252075, - [SMALL_STATE(5483)] = 252111, - [SMALL_STATE(5484)] = 252157, - [SMALL_STATE(5485)] = 252193, - [SMALL_STATE(5486)] = 252253, - [SMALL_STATE(5487)] = 252313, - [SMALL_STATE(5488)] = 252349, - [SMALL_STATE(5489)] = 252409, - [SMALL_STATE(5490)] = 252469, - [SMALL_STATE(5491)] = 252511, - [SMALL_STATE(5492)] = 252571, - [SMALL_STATE(5493)] = 252631, - [SMALL_STATE(5494)] = 252675, - [SMALL_STATE(5495)] = 252735, - [SMALL_STATE(5496)] = 252779, - [SMALL_STATE(5497)] = 252839, - [SMALL_STATE(5498)] = 252899, - [SMALL_STATE(5499)] = 252959, - [SMALL_STATE(5500)] = 253005, - [SMALL_STATE(5501)] = 253047, - [SMALL_STATE(5502)] = 253107, - [SMALL_STATE(5503)] = 253167, - [SMALL_STATE(5504)] = 253209, - [SMALL_STATE(5505)] = 253255, - [SMALL_STATE(5506)] = 253315, - [SMALL_STATE(5507)] = 253375, - [SMALL_STATE(5508)] = 253419, - [SMALL_STATE(5509)] = 253465, - [SMALL_STATE(5510)] = 253507, - [SMALL_STATE(5511)] = 253553, - [SMALL_STATE(5512)] = 253613, - [SMALL_STATE(5513)] = 253654, - [SMALL_STATE(5514)] = 253699, - [SMALL_STATE(5515)] = 253756, - [SMALL_STATE(5516)] = 253793, - [SMALL_STATE(5517)] = 253828, - [SMALL_STATE(5518)] = 253885, - [SMALL_STATE(5519)] = 253920, - [SMALL_STATE(5520)] = 253977, - [SMALL_STATE(5521)] = 254024, - [SMALL_STATE(5522)] = 254059, - [SMALL_STATE(5523)] = 254098, - [SMALL_STATE(5524)] = 254143, - [SMALL_STATE(5525)] = 254184, - [SMALL_STATE(5526)] = 254223, - [SMALL_STATE(5527)] = 254280, - [SMALL_STATE(5528)] = 254315, - [SMALL_STATE(5529)] = 254372, - [SMALL_STATE(5530)] = 254417, - [SMALL_STATE(5531)] = 254462, - [SMALL_STATE(5532)] = 254519, - [SMALL_STATE(5533)] = 254558, - [SMALL_STATE(5534)] = 254603, - [SMALL_STATE(5535)] = 254642, - [SMALL_STATE(5536)] = 254687, - [SMALL_STATE(5537)] = 254732, - [SMALL_STATE(5538)] = 254777, - [SMALL_STATE(5539)] = 254822, - [SMALL_STATE(5540)] = 254863, - [SMALL_STATE(5541)] = 254904, - [SMALL_STATE(5542)] = 254949, - [SMALL_STATE(5543)] = 254992, - [SMALL_STATE(5544)] = 255037, - [SMALL_STATE(5545)] = 255080, - [SMALL_STATE(5546)] = 255123, - [SMALL_STATE(5547)] = 255160, - [SMALL_STATE(5548)] = 255199, - [SMALL_STATE(5549)] = 255244, - [SMALL_STATE(5550)] = 255287, - [SMALL_STATE(5551)] = 255330, - [SMALL_STATE(5552)] = 255373, - [SMALL_STATE(5553)] = 255430, - [SMALL_STATE(5554)] = 255487, - [SMALL_STATE(5555)] = 255546, - [SMALL_STATE(5556)] = 255589, - [SMALL_STATE(5557)] = 255624, - [SMALL_STATE(5558)] = 255669, - [SMALL_STATE(5559)] = 255706, - [SMALL_STATE(5560)] = 255747, - [SMALL_STATE(5561)] = 255804, - [SMALL_STATE(5562)] = 255847, - [SMALL_STATE(5563)] = 255892, - [SMALL_STATE(5564)] = 255933, - [SMALL_STATE(5565)] = 255978, - [SMALL_STATE(5566)] = 256035, - [SMALL_STATE(5567)] = 256092, - [SMALL_STATE(5568)] = 256137, - [SMALL_STATE(5569)] = 256182, - [SMALL_STATE(5570)] = 256227, - [SMALL_STATE(5571)] = 256272, - [SMALL_STATE(5572)] = 256315, - [SMALL_STATE(5573)] = 256372, - [SMALL_STATE(5574)] = 256411, - [SMALL_STATE(5575)] = 256468, - [SMALL_STATE(5576)] = 256525, - [SMALL_STATE(5577)] = 256566, - [SMALL_STATE(5578)] = 256607, - [SMALL_STATE(5579)] = 256646, - [SMALL_STATE(5580)] = 256687, - [SMALL_STATE(5581)] = 256732, - [SMALL_STATE(5582)] = 256777, - [SMALL_STATE(5583)] = 256822, - [SMALL_STATE(5584)] = 256867, - [SMALL_STATE(5585)] = 256908, - [SMALL_STATE(5586)] = 256947, - [SMALL_STATE(5587)] = 257004, - [SMALL_STATE(5588)] = 257061, - [SMALL_STATE(5589)] = 257118, - [SMALL_STATE(5590)] = 257161, - [SMALL_STATE(5591)] = 257218, - [SMALL_STATE(5592)] = 257263, - [SMALL_STATE(5593)] = 257308, - [SMALL_STATE(5594)] = 257353, - [SMALL_STATE(5595)] = 257398, - [SMALL_STATE(5596)] = 257443, - [SMALL_STATE(5597)] = 257500, - [SMALL_STATE(5598)] = 257557, - [SMALL_STATE(5599)] = 257602, - [SMALL_STATE(5600)] = 257647, - [SMALL_STATE(5601)] = 257692, - [SMALL_STATE(5602)] = 257737, - [SMALL_STATE(5603)] = 257782, - [SMALL_STATE(5604)] = 257827, - [SMALL_STATE(5605)] = 257866, - [SMALL_STATE(5606)] = 257923, - [SMALL_STATE(5607)] = 257980, - [SMALL_STATE(5608)] = 258025, - [SMALL_STATE(5609)] = 258070, - [SMALL_STATE(5610)] = 258109, - [SMALL_STATE(5611)] = 258143, - [SMALL_STATE(5612)] = 258195, - [SMALL_STATE(5613)] = 258235, - [SMALL_STATE(5614)] = 258271, - [SMALL_STATE(5615)] = 258325, - [SMALL_STATE(5616)] = 258363, - [SMALL_STATE(5617)] = 258417, - [SMALL_STATE(5618)] = 258459, - [SMALL_STATE(5619)] = 258495, - [SMALL_STATE(5620)] = 258535, - [SMALL_STATE(5621)] = 258589, - [SMALL_STATE(5622)] = 258629, - [SMALL_STATE(5623)] = 258667, - [SMALL_STATE(5624)] = 258721, - [SMALL_STATE(5625)] = 258775, - [SMALL_STATE(5626)] = 258829, - [SMALL_STATE(5627)] = 258867, - [SMALL_STATE(5628)] = 258921, - [SMALL_STATE(5629)] = 258963, - [SMALL_STATE(5630)] = 259003, - [SMALL_STATE(5631)] = 259041, - [SMALL_STATE(5632)] = 259081, - [SMALL_STATE(5633)] = 259121, - [SMALL_STATE(5634)] = 259175, - [SMALL_STATE(5635)] = 259229, - [SMALL_STATE(5636)] = 259283, - [SMALL_STATE(5637)] = 259337, - [SMALL_STATE(5638)] = 259377, - [SMALL_STATE(5639)] = 259415, - [SMALL_STATE(5640)] = 259469, - [SMALL_STATE(5641)] = 259521, - [SMALL_STATE(5642)] = 259561, - [SMALL_STATE(5643)] = 259601, - [SMALL_STATE(5644)] = 259641, - [SMALL_STATE(5645)] = 259679, - [SMALL_STATE(5646)] = 259719, - [SMALL_STATE(5647)] = 259775, - [SMALL_STATE(5648)] = 259817, - [SMALL_STATE(5649)] = 259871, - [SMALL_STATE(5650)] = 259923, - [SMALL_STATE(5651)] = 259961, - [SMALL_STATE(5652)] = 259995, - [SMALL_STATE(5653)] = 260035, - [SMALL_STATE(5654)] = 260089, - [SMALL_STATE(5655)] = 260129, - [SMALL_STATE(5656)] = 260169, - [SMALL_STATE(5657)] = 260205, - [SMALL_STATE(5658)] = 260259, - [SMALL_STATE(5659)] = 260315, - [SMALL_STATE(5660)] = 260353, - [SMALL_STATE(5661)] = 260407, - [SMALL_STATE(5662)] = 260461, - [SMALL_STATE(5663)] = 260495, - [SMALL_STATE(5664)] = 260535, - [SMALL_STATE(5665)] = 260569, - [SMALL_STATE(5666)] = 260609, - [SMALL_STATE(5667)] = 260649, - [SMALL_STATE(5668)] = 260701, - [SMALL_STATE(5669)] = 260755, - [SMALL_STATE(5670)] = 260809, - [SMALL_STATE(5671)] = 260847, - [SMALL_STATE(5672)] = 260901, - [SMALL_STATE(5673)] = 260941, - [SMALL_STATE(5674)] = 260995, - [SMALL_STATE(5675)] = 261049, - [SMALL_STATE(5676)] = 261103, - [SMALL_STATE(5677)] = 261143, - [SMALL_STATE(5678)] = 261183, - [SMALL_STATE(5679)] = 261237, - [SMALL_STATE(5680)] = 261277, - [SMALL_STATE(5681)] = 261331, - [SMALL_STATE(5682)] = 261385, - [SMALL_STATE(5683)] = 261427, - [SMALL_STATE(5684)] = 261481, - [SMALL_STATE(5685)] = 261535, - [SMALL_STATE(5686)] = 261573, - [SMALL_STATE(5687)] = 261607, - [SMALL_STATE(5688)] = 261647, - [SMALL_STATE(5689)] = 261687, - [SMALL_STATE(5690)] = 261741, - [SMALL_STATE(5691)] = 261781, - [SMALL_STATE(5692)] = 261821, - [SMALL_STATE(5693)] = 261875, - [SMALL_STATE(5694)] = 261913, - [SMALL_STATE(5695)] = 261967, - [SMALL_STATE(5696)] = 262005, - [SMALL_STATE(5697)] = 262061, - [SMALL_STATE(5698)] = 262099, - [SMALL_STATE(5699)] = 262137, - [SMALL_STATE(5700)] = 262175, - [SMALL_STATE(5701)] = 262229, - [SMALL_STATE(5702)] = 262283, - [SMALL_STATE(5703)] = 262337, - [SMALL_STATE(5704)] = 262391, - [SMALL_STATE(5705)] = 262445, - [SMALL_STATE(5706)] = 262483, - [SMALL_STATE(5707)] = 262521, - [SMALL_STATE(5708)] = 262563, - [SMALL_STATE(5709)] = 262617, - [SMALL_STATE(5710)] = 262651, - [SMALL_STATE(5711)] = 262705, - [SMALL_STATE(5712)] = 262743, - [SMALL_STATE(5713)] = 262776, - [SMALL_STATE(5714)] = 262827, - [SMALL_STATE(5715)] = 262878, - [SMALL_STATE(5716)] = 262929, - [SMALL_STATE(5717)] = 262968, - [SMALL_STATE(5718)] = 263019, - [SMALL_STATE(5719)] = 263070, - [SMALL_STATE(5720)] = 263121, - [SMALL_STATE(5721)] = 263172, - [SMALL_STATE(5722)] = 263223, - [SMALL_STATE(5723)] = 263274, - [SMALL_STATE(5724)] = 263311, - [SMALL_STATE(5725)] = 263348, - [SMALL_STATE(5726)] = 263385, - [SMALL_STATE(5727)] = 263436, - [SMALL_STATE(5728)] = 263487, - [SMALL_STATE(5729)] = 263538, - [SMALL_STATE(5730)] = 263583, - [SMALL_STATE(5731)] = 263634, - [SMALL_STATE(5732)] = 263669, - [SMALL_STATE(5733)] = 263708, - [SMALL_STATE(5734)] = 263747, - [SMALL_STATE(5735)] = 263780, - [SMALL_STATE(5736)] = 263813, - [SMALL_STATE(5737)] = 263864, - [SMALL_STATE(5738)] = 263897, - [SMALL_STATE(5739)] = 263948, - [SMALL_STATE(5740)] = 263999, - [SMALL_STATE(5741)] = 264050, - [SMALL_STATE(5742)] = 264085, - [SMALL_STATE(5743)] = 264136, - [SMALL_STATE(5744)] = 264181, - [SMALL_STATE(5745)] = 264232, - [SMALL_STATE(5746)] = 264265, - [SMALL_STATE(5747)] = 264308, - [SMALL_STATE(5748)] = 264345, - [SMALL_STATE(5749)] = 264378, - [SMALL_STATE(5750)] = 264411, - [SMALL_STATE(5751)] = 264450, - [SMALL_STATE(5752)] = 264489, - [SMALL_STATE(5753)] = 264540, - [SMALL_STATE(5754)] = 264573, - [SMALL_STATE(5755)] = 264624, - [SMALL_STATE(5756)] = 264657, - [SMALL_STATE(5757)] = 264702, - [SMALL_STATE(5758)] = 264735, - [SMALL_STATE(5759)] = 264786, - [SMALL_STATE(5760)] = 264837, - [SMALL_STATE(5761)] = 264870, - [SMALL_STATE(5762)] = 264907, - [SMALL_STATE(5763)] = 264946, - [SMALL_STATE(5764)] = 264997, - [SMALL_STATE(5765)] = 265048, - [SMALL_STATE(5766)] = 265081, - [SMALL_STATE(5767)] = 265132, - [SMALL_STATE(5768)] = 265183, - [SMALL_STATE(5769)] = 265216, - [SMALL_STATE(5770)] = 265249, - [SMALL_STATE(5771)] = 265300, - [SMALL_STATE(5772)] = 265339, - [SMALL_STATE(5773)] = 265372, - [SMALL_STATE(5774)] = 265405, - [SMALL_STATE(5775)] = 265444, - [SMALL_STATE(5776)] = 265495, - [SMALL_STATE(5777)] = 265546, - [SMALL_STATE(5778)] = 265579, - [SMALL_STATE(5779)] = 265612, - [SMALL_STATE(5780)] = 265663, - [SMALL_STATE(5781)] = 265696, - [SMALL_STATE(5782)] = 265747, - [SMALL_STATE(5783)] = 265784, - [SMALL_STATE(5784)] = 265835, - [SMALL_STATE(5785)] = 265886, - [SMALL_STATE(5786)] = 265929, - [SMALL_STATE(5787)] = 265962, - [SMALL_STATE(5788)] = 265995, - [SMALL_STATE(5789)] = 266028, - [SMALL_STATE(5790)] = 266067, - [SMALL_STATE(5791)] = 266100, - [SMALL_STATE(5792)] = 266151, - [SMALL_STATE(5793)] = 266184, - [SMALL_STATE(5794)] = 266220, - [SMALL_STATE(5795)] = 266256, - [SMALL_STATE(5796)] = 266288, - [SMALL_STATE(5797)] = 266340, - [SMALL_STATE(5798)] = 266392, - [SMALL_STATE(5799)] = 266424, - [SMALL_STATE(5800)] = 266456, - [SMALL_STATE(5801)] = 266488, - [SMALL_STATE(5802)] = 266520, - [SMALL_STATE(5803)] = 266552, - [SMALL_STATE(5804)] = 266584, - [SMALL_STATE(5805)] = 266616, - [SMALL_STATE(5806)] = 266648, - [SMALL_STATE(5807)] = 266680, - [SMALL_STATE(5808)] = 266712, - [SMALL_STATE(5809)] = 266744, - [SMALL_STATE(5810)] = 266796, - [SMALL_STATE(5811)] = 266848, - [SMALL_STATE(5812)] = 266882, - [SMALL_STATE(5813)] = 266914, - [SMALL_STATE(5814)] = 266946, - [SMALL_STATE(5815)] = 266978, - [SMALL_STATE(5816)] = 267010, - [SMALL_STATE(5817)] = 267046, - [SMALL_STATE(5818)] = 267098, - [SMALL_STATE(5819)] = 267130, - [SMALL_STATE(5820)] = 267162, - [SMALL_STATE(5821)] = 267194, - [SMALL_STATE(5822)] = 267226, - [SMALL_STATE(5823)] = 267262, - [SMALL_STATE(5824)] = 267294, - [SMALL_STATE(5825)] = 267330, - [SMALL_STATE(5826)] = 267362, - [SMALL_STATE(5827)] = 267394, - [SMALL_STATE(5828)] = 267426, - [SMALL_STATE(5829)] = 267458, - [SMALL_STATE(5830)] = 267494, - [SMALL_STATE(5831)] = 267526, - [SMALL_STATE(5832)] = 267558, - [SMALL_STATE(5833)] = 267590, - [SMALL_STATE(5834)] = 267622, - [SMALL_STATE(5835)] = 267656, - [SMALL_STATE(5836)] = 267692, - [SMALL_STATE(5837)] = 267744, - [SMALL_STATE(5838)] = 267778, - [SMALL_STATE(5839)] = 267810, - [SMALL_STATE(5840)] = 267842, - [SMALL_STATE(5841)] = 267894, - [SMALL_STATE(5842)] = 267930, - [SMALL_STATE(5843)] = 267990, - [SMALL_STATE(5844)] = 268050, - [SMALL_STATE(5845)] = 268086, - [SMALL_STATE(5846)] = 268138, - [SMALL_STATE(5847)] = 268170, - [SMALL_STATE(5848)] = 268206, - [SMALL_STATE(5849)] = 268242, - [SMALL_STATE(5850)] = 268278, - [SMALL_STATE(5851)] = 268312, - [SMALL_STATE(5852)] = 268348, - [SMALL_STATE(5853)] = 268384, - [SMALL_STATE(5854)] = 268436, - [SMALL_STATE(5855)] = 268468, - [SMALL_STATE(5856)] = 268501, - [SMALL_STATE(5857)] = 268534, - [SMALL_STATE(5858)] = 268583, - [SMALL_STATE(5859)] = 268616, - [SMALL_STATE(5860)] = 268649, - [SMALL_STATE(5861)] = 268682, - [SMALL_STATE(5862)] = 268715, - [SMALL_STATE(5863)] = 268746, - [SMALL_STATE(5864)] = 268779, - [SMALL_STATE(5865)] = 268812, - [SMALL_STATE(5866)] = 268855, - [SMALL_STATE(5867)] = 268888, - [SMALL_STATE(5868)] = 268921, - [SMALL_STATE(5869)] = 268964, - [SMALL_STATE(5870)] = 269013, - [SMALL_STATE(5871)] = 269046, - [SMALL_STATE(5872)] = 269091, - [SMALL_STATE(5873)] = 269124, - [SMALL_STATE(5874)] = 269157, - [SMALL_STATE(5875)] = 269206, - [SMALL_STATE(5876)] = 269237, - [SMALL_STATE(5877)] = 269280, - [SMALL_STATE(5878)] = 269313, - [SMALL_STATE(5879)] = 269346, - [SMALL_STATE(5880)] = 269377, - [SMALL_STATE(5881)] = 269410, - [SMALL_STATE(5882)] = 269443, - [SMALL_STATE(5883)] = 269483, - [SMALL_STATE(5884)] = 269525, - [SMALL_STATE(5885)] = 269555, - [SMALL_STATE(5886)] = 269609, - [SMALL_STATE(5887)] = 269649, - [SMALL_STATE(5888)] = 269689, - [SMALL_STATE(5889)] = 269743, - [SMALL_STATE(5890)] = 269785, - [SMALL_STATE(5891)] = 269815, - [SMALL_STATE(5892)] = 269863, - [SMALL_STATE(5893)] = 269911, - [SMALL_STATE(5894)] = 269951, - [SMALL_STATE(5895)] = 269991, - [SMALL_STATE(5896)] = 270021, - [SMALL_STATE(5897)] = 270051, - [SMALL_STATE(5898)] = 270091, - [SMALL_STATE(5899)] = 270131, - [SMALL_STATE(5900)] = 270161, - [SMALL_STATE(5901)] = 270193, - [SMALL_STATE(5902)] = 270233, - [SMALL_STATE(5903)] = 270273, - [SMALL_STATE(5904)] = 270321, - [SMALL_STATE(5905)] = 270366, - [SMALL_STATE(5906)] = 270411, - [SMALL_STATE(5907)] = 270456, - [SMALL_STATE(5908)] = 270493, - [SMALL_STATE(5909)] = 270538, - [SMALL_STATE(5910)] = 270565, - [SMALL_STATE(5911)] = 270610, - [SMALL_STATE(5912)] = 270637, - [SMALL_STATE(5913)] = 270682, - [SMALL_STATE(5914)] = 270713, - [SMALL_STATE(5915)] = 270764, - [SMALL_STATE(5916)] = 270809, - [SMALL_STATE(5917)] = 270854, - [SMALL_STATE(5918)] = 270899, - [SMALL_STATE(5919)] = 270944, - [SMALL_STATE(5920)] = 270989, - [SMALL_STATE(5921)] = 271020, - [SMALL_STATE(5922)] = 271065, - [SMALL_STATE(5923)] = 271110, - [SMALL_STATE(5924)] = 271155, - [SMALL_STATE(5925)] = 271200, - [SMALL_STATE(5926)] = 271245, - [SMALL_STATE(5927)] = 271290, - [SMALL_STATE(5928)] = 271335, - [SMALL_STATE(5929)] = 271372, - [SMALL_STATE(5930)] = 271417, - [SMALL_STATE(5931)] = 271462, - [SMALL_STATE(5932)] = 271507, - [SMALL_STATE(5933)] = 271552, - [SMALL_STATE(5934)] = 271597, - [SMALL_STATE(5935)] = 271642, - [SMALL_STATE(5936)] = 271687, - [SMALL_STATE(5937)] = 271732, - [SMALL_STATE(5938)] = 271759, - [SMALL_STATE(5939)] = 271810, - [SMALL_STATE(5940)] = 271847, - [SMALL_STATE(5941)] = 271892, - [SMALL_STATE(5942)] = 271937, - [SMALL_STATE(5943)] = 271974, - [SMALL_STATE(5944)] = 272019, - [SMALL_STATE(5945)] = 272070, - [SMALL_STATE(5946)] = 272121, - [SMALL_STATE(5947)] = 272166, - [SMALL_STATE(5948)] = 272211, - [SMALL_STATE(5949)] = 272256, - [SMALL_STATE(5950)] = 272301, - [SMALL_STATE(5951)] = 272346, - [SMALL_STATE(5952)] = 272397, - [SMALL_STATE(5953)] = 272442, - [SMALL_STATE(5954)] = 272487, - [SMALL_STATE(5955)] = 272532, - [SMALL_STATE(5956)] = 272577, - [SMALL_STATE(5957)] = 272622, - [SMALL_STATE(5958)] = 272667, - [SMALL_STATE(5959)] = 272712, - [SMALL_STATE(5960)] = 272757, - [SMALL_STATE(5961)] = 272802, - [SMALL_STATE(5962)] = 272835, - [SMALL_STATE(5963)] = 272880, - [SMALL_STATE(5964)] = 272925, - [SMALL_STATE(5965)] = 272970, - [SMALL_STATE(5966)] = 273015, - [SMALL_STATE(5967)] = 273060, - [SMALL_STATE(5968)] = 273105, - [SMALL_STATE(5969)] = 273150, - [SMALL_STATE(5970)] = 273195, - [SMALL_STATE(5971)] = 273246, - [SMALL_STATE(5972)] = 273291, - [SMALL_STATE(5973)] = 273318, - [SMALL_STATE(5974)] = 273345, - [SMALL_STATE(5975)] = 273390, - [SMALL_STATE(5976)] = 273435, - [SMALL_STATE(5977)] = 273480, - [SMALL_STATE(5978)] = 273514, - [SMALL_STATE(5979)] = 273548, - [SMALL_STATE(5980)] = 273582, - [SMALL_STATE(5981)] = 273610, - [SMALL_STATE(5982)] = 273638, - [SMALL_STATE(5983)] = 273672, - [SMALL_STATE(5984)] = 273700, - [SMALL_STATE(5985)] = 273734, - [SMALL_STATE(5986)] = 273768, - [SMALL_STATE(5987)] = 273802, - [SMALL_STATE(5988)] = 273830, - [SMALL_STATE(5989)] = 273864, - [SMALL_STATE(5990)] = 273892, - [SMALL_STATE(5991)] = 273926, - [SMALL_STATE(5992)] = 273960, - [SMALL_STATE(5993)] = 273988, - [SMALL_STATE(5994)] = 274016, - [SMALL_STATE(5995)] = 274054, - [SMALL_STATE(5996)] = 274082, - [SMALL_STATE(5997)] = 274122, - [SMALL_STATE(5998)] = 274156, - [SMALL_STATE(5999)] = 274204, - [SMALL_STATE(6000)] = 274238, - [SMALL_STATE(6001)] = 274266, - [SMALL_STATE(6002)] = 274300, - [SMALL_STATE(6003)] = 274328, - [SMALL_STATE(6004)] = 274362, - [SMALL_STATE(6005)] = 274396, - [SMALL_STATE(6006)] = 274424, - [SMALL_STATE(6007)] = 274452, - [SMALL_STATE(6008)] = 274486, - [SMALL_STATE(6009)] = 274520, - [SMALL_STATE(6010)] = 274554, - [SMALL_STATE(6011)] = 274588, - [SMALL_STATE(6012)] = 274622, - [SMALL_STATE(6013)] = 274656, - [SMALL_STATE(6014)] = 274690, - [SMALL_STATE(6015)] = 274718, - [SMALL_STATE(6016)] = 274752, - [SMALL_STATE(6017)] = 274784, - [SMALL_STATE(6018)] = 274812, - [SMALL_STATE(6019)] = 274844, - [SMALL_STATE(6020)] = 274878, - [SMALL_STATE(6021)] = 274906, - [SMALL_STATE(6022)] = 274934, - [SMALL_STATE(6023)] = 274962, - [SMALL_STATE(6024)] = 274996, - [SMALL_STATE(6025)] = 275034, - [SMALL_STATE(6026)] = 275072, - [SMALL_STATE(6027)] = 275106, - [SMALL_STATE(6028)] = 275140, - [SMALL_STATE(6029)] = 275174, - [SMALL_STATE(6030)] = 275208, - [SMALL_STATE(6031)] = 275242, - [SMALL_STATE(6032)] = 275290, - [SMALL_STATE(6033)] = 275324, - [SMALL_STATE(6034)] = 275358, - [SMALL_STATE(6035)] = 275392, - [SMALL_STATE(6036)] = 275420, - [SMALL_STATE(6037)] = 275454, - [SMALL_STATE(6038)] = 275502, - [SMALL_STATE(6039)] = 275530, - [SMALL_STATE(6040)] = 275564, - [SMALL_STATE(6041)] = 275598, - [SMALL_STATE(6042)] = 275632, - [SMALL_STATE(6043)] = 275660, - [SMALL_STATE(6044)] = 275694, - [SMALL_STATE(6045)] = 275722, - [SMALL_STATE(6046)] = 275750, - [SMALL_STATE(6047)] = 275784, - [SMALL_STATE(6048)] = 275812, - [SMALL_STATE(6049)] = 275840, - [SMALL_STATE(6050)] = 275874, - [SMALL_STATE(6051)] = 275908, - [SMALL_STATE(6052)] = 275942, - [SMALL_STATE(6053)] = 275976, - [SMALL_STATE(6054)] = 276004, - [SMALL_STATE(6055)] = 276038, - [SMALL_STATE(6056)] = 276066, - [SMALL_STATE(6057)] = 276100, - [SMALL_STATE(6058)] = 276128, - [SMALL_STATE(6059)] = 276162, - [SMALL_STATE(6060)] = 276190, - [SMALL_STATE(6061)] = 276224, - [SMALL_STATE(6062)] = 276258, - [SMALL_STATE(6063)] = 276292, - [SMALL_STATE(6064)] = 276326, - [SMALL_STATE(6065)] = 276360, - [SMALL_STATE(6066)] = 276394, - [SMALL_STATE(6067)] = 276428, - [SMALL_STATE(6068)] = 276462, - [SMALL_STATE(6069)] = 276496, - [SMALL_STATE(6070)] = 276530, - [SMALL_STATE(6071)] = 276564, - [SMALL_STATE(6072)] = 276598, - [SMALL_STATE(6073)] = 276632, - [SMALL_STATE(6074)] = 276666, - [SMALL_STATE(6075)] = 276700, - [SMALL_STATE(6076)] = 276734, - [SMALL_STATE(6077)] = 276768, - [SMALL_STATE(6078)] = 276802, - [SMALL_STATE(6079)] = 276836, - [SMALL_STATE(6080)] = 276870, - [SMALL_STATE(6081)] = 276904, - [SMALL_STATE(6082)] = 276938, - [SMALL_STATE(6083)] = 276966, - [SMALL_STATE(6084)] = 277000, - [SMALL_STATE(6085)] = 277040, - [SMALL_STATE(6086)] = 277074, - [SMALL_STATE(6087)] = 277108, - [SMALL_STATE(6088)] = 277142, - [SMALL_STATE(6089)] = 277176, - [SMALL_STATE(6090)] = 277210, - [SMALL_STATE(6091)] = 277244, - [SMALL_STATE(6092)] = 277278, - [SMALL_STATE(6093)] = 277312, - [SMALL_STATE(6094)] = 277346, - [SMALL_STATE(6095)] = 277380, - [SMALL_STATE(6096)] = 277414, - [SMALL_STATE(6097)] = 277448, - [SMALL_STATE(6098)] = 277476, - [SMALL_STATE(6099)] = 277510, - [SMALL_STATE(6100)] = 277538, - [SMALL_STATE(6101)] = 277570, - [SMALL_STATE(6102)] = 277604, - [SMALL_STATE(6103)] = 277638, - [SMALL_STATE(6104)] = 277672, - [SMALL_STATE(6105)] = 277706, - [SMALL_STATE(6106)] = 277736, - [SMALL_STATE(6107)] = 277770, - [SMALL_STATE(6108)] = 277796, - [SMALL_STATE(6109)] = 277830, - [SMALL_STATE(6110)] = 277864, - [SMALL_STATE(6111)] = 277898, - [SMALL_STATE(6112)] = 277932, - [SMALL_STATE(6113)] = 277966, - [SMALL_STATE(6114)] = 278000, - [SMALL_STATE(6115)] = 278034, - [SMALL_STATE(6116)] = 278068, - [SMALL_STATE(6117)] = 278116, - [SMALL_STATE(6118)] = 278150, - [SMALL_STATE(6119)] = 278178, - [SMALL_STATE(6120)] = 278206, - [SMALL_STATE(6121)] = 278240, - [SMALL_STATE(6122)] = 278274, - [SMALL_STATE(6123)] = 278302, - [SMALL_STATE(6124)] = 278336, - [SMALL_STATE(6125)] = 278367, - [SMALL_STATE(6126)] = 278398, - [SMALL_STATE(6127)] = 278439, - [SMALL_STATE(6128)] = 278470, - [SMALL_STATE(6129)] = 278501, - [SMALL_STATE(6130)] = 278532, - [SMALL_STATE(6131)] = 278559, - [SMALL_STATE(6132)] = 278586, - [SMALL_STATE(6133)] = 278617, - [SMALL_STATE(6134)] = 278648, - [SMALL_STATE(6135)] = 278679, - [SMALL_STATE(6136)] = 278704, - [SMALL_STATE(6137)] = 278747, - [SMALL_STATE(6138)] = 278778, - [SMALL_STATE(6139)] = 278803, - [SMALL_STATE(6140)] = 278830, - [SMALL_STATE(6141)] = 278861, - [SMALL_STATE(6142)] = 278888, - [SMALL_STATE(6143)] = 278915, - [SMALL_STATE(6144)] = 278946, - [SMALL_STATE(6145)] = 278977, - [SMALL_STATE(6146)] = 279008, - [SMALL_STATE(6147)] = 279039, - [SMALL_STATE(6148)] = 279070, - [SMALL_STATE(6149)] = 279101, - [SMALL_STATE(6150)] = 279132, - [SMALL_STATE(6151)] = 279159, - [SMALL_STATE(6152)] = 279186, - [SMALL_STATE(6153)] = 279217, - [SMALL_STATE(6154)] = 279248, - [SMALL_STATE(6155)] = 279279, - [SMALL_STATE(6156)] = 279310, - [SMALL_STATE(6157)] = 279341, - [SMALL_STATE(6158)] = 279372, - [SMALL_STATE(6159)] = 279403, - [SMALL_STATE(6160)] = 279434, - [SMALL_STATE(6161)] = 279465, - [SMALL_STATE(6162)] = 279496, - [SMALL_STATE(6163)] = 279527, - [SMALL_STATE(6164)] = 279558, - [SMALL_STATE(6165)] = 279589, - [SMALL_STATE(6166)] = 279616, - [SMALL_STATE(6167)] = 279647, - [SMALL_STATE(6168)] = 279678, - [SMALL_STATE(6169)] = 279709, - [SMALL_STATE(6170)] = 279740, - [SMALL_STATE(6171)] = 279765, - [SMALL_STATE(6172)] = 279792, - [SMALL_STATE(6173)] = 279823, - [SMALL_STATE(6174)] = 279854, - [SMALL_STATE(6175)] = 279885, - [SMALL_STATE(6176)] = 279912, - [SMALL_STATE(6177)] = 279939, - [SMALL_STATE(6178)] = 279966, - [SMALL_STATE(6179)] = 279997, - [SMALL_STATE(6180)] = 280028, - [SMALL_STATE(6181)] = 280059, - [SMALL_STATE(6182)] = 280086, - [SMALL_STATE(6183)] = 280117, - [SMALL_STATE(6184)] = 280144, - [SMALL_STATE(6185)] = 280175, - [SMALL_STATE(6186)] = 280202, - [SMALL_STATE(6187)] = 280229, - [SMALL_STATE(6188)] = 280256, - [SMALL_STATE(6189)] = 280283, - [SMALL_STATE(6190)] = 280314, - [SMALL_STATE(6191)] = 280343, - [SMALL_STATE(6192)] = 280374, - [SMALL_STATE(6193)] = 280401, - [SMALL_STATE(6194)] = 280432, - [SMALL_STATE(6195)] = 280473, - [SMALL_STATE(6196)] = 280500, - [SMALL_STATE(6197)] = 280531, - [SMALL_STATE(6198)] = 280562, - [SMALL_STATE(6199)] = 280589, - [SMALL_STATE(6200)] = 280620, - [SMALL_STATE(6201)] = 280661, - [SMALL_STATE(6202)] = 280692, - [SMALL_STATE(6203)] = 280719, - [SMALL_STATE(6204)] = 280750, - [SMALL_STATE(6205)] = 280781, - [SMALL_STATE(6206)] = 280812, - [SMALL_STATE(6207)] = 280843, - [SMALL_STATE(6208)] = 280874, - [SMALL_STATE(6209)] = 280905, - [SMALL_STATE(6210)] = 280936, - [SMALL_STATE(6211)] = 280967, - [SMALL_STATE(6212)] = 281010, - [SMALL_STATE(6213)] = 281041, - [SMALL_STATE(6214)] = 281068, - [SMALL_STATE(6215)] = 281099, - [SMALL_STATE(6216)] = 281130, - [SMALL_STATE(6217)] = 281161, - [SMALL_STATE(6218)] = 281192, - [SMALL_STATE(6219)] = 281223, - [SMALL_STATE(6220)] = 281250, - [SMALL_STATE(6221)] = 281285, - [SMALL_STATE(6222)] = 281316, - [SMALL_STATE(6223)] = 281347, - [SMALL_STATE(6224)] = 281378, - [SMALL_STATE(6225)] = 281413, - [SMALL_STATE(6226)] = 281440, - [SMALL_STATE(6227)] = 281467, - [SMALL_STATE(6228)] = 281498, - [SMALL_STATE(6229)] = 281529, - [SMALL_STATE(6230)] = 281560, - [SMALL_STATE(6231)] = 281587, - [SMALL_STATE(6232)] = 281616, - [SMALL_STATE(6233)] = 281647, - [SMALL_STATE(6234)] = 281678, - [SMALL_STATE(6235)] = 281705, - [SMALL_STATE(6236)] = 281732, - [SMALL_STATE(6237)] = 281759, - [SMALL_STATE(6238)] = 281790, - [SMALL_STATE(6239)] = 281819, - [SMALL_STATE(6240)] = 281860, - [SMALL_STATE(6241)] = 281891, - [SMALL_STATE(6242)] = 281922, - [SMALL_STATE(6243)] = 281949, - [SMALL_STATE(6244)] = 281976, - [SMALL_STATE(6245)] = 282007, - [SMALL_STATE(6246)] = 282038, - [SMALL_STATE(6247)] = 282069, - [SMALL_STATE(6248)] = 282100, - [SMALL_STATE(6249)] = 282131, - [SMALL_STATE(6250)] = 282162, - [SMALL_STATE(6251)] = 282189, - [SMALL_STATE(6252)] = 282220, - [SMALL_STATE(6253)] = 282251, - [SMALL_STATE(6254)] = 282282, - [SMALL_STATE(6255)] = 282313, - [SMALL_STATE(6256)] = 282337, - [SMALL_STATE(6257)] = 282367, - [SMALL_STATE(6258)] = 282393, - [SMALL_STATE(6259)] = 282423, - [SMALL_STATE(6260)] = 282447, - [SMALL_STATE(6261)] = 282485, - [SMALL_STATE(6262)] = 282515, - [SMALL_STATE(6263)] = 282553, - [SMALL_STATE(6264)] = 282579, - [SMALL_STATE(6265)] = 282617, - [SMALL_STATE(6266)] = 282647, - [SMALL_STATE(6267)] = 282677, - [SMALL_STATE(6268)] = 282707, - [SMALL_STATE(6269)] = 282737, - [SMALL_STATE(6270)] = 282767, - [SMALL_STATE(6271)] = 282797, - [SMALL_STATE(6272)] = 282827, - [SMALL_STATE(6273)] = 282853, - [SMALL_STATE(6274)] = 282891, - [SMALL_STATE(6275)] = 282914, - [SMALL_STATE(6276)] = 282937, - [SMALL_STATE(6277)] = 282966, - [SMALL_STATE(6278)] = 282995, - [SMALL_STATE(6279)] = 283036, - [SMALL_STATE(6280)] = 283059, - [SMALL_STATE(6281)] = 283082, - [SMALL_STATE(6282)] = 283111, - [SMALL_STATE(6283)] = 283134, - [SMALL_STATE(6284)] = 283157, - [SMALL_STATE(6285)] = 283182, - [SMALL_STATE(6286)] = 283205, - [SMALL_STATE(6287)] = 283228, - [SMALL_STATE(6288)] = 283251, - [SMALL_STATE(6289)] = 283274, - [SMALL_STATE(6290)] = 283315, - [SMALL_STATE(6291)] = 283338, - [SMALL_STATE(6292)] = 283361, - [SMALL_STATE(6293)] = 283384, - [SMALL_STATE(6294)] = 283425, - [SMALL_STATE(6295)] = 283454, - [SMALL_STATE(6296)] = 283495, - [SMALL_STATE(6297)] = 283522, - [SMALL_STATE(6298)] = 283549, - [SMALL_STATE(6299)] = 283590, - [SMALL_STATE(6300)] = 283613, - [SMALL_STATE(6301)] = 283636, - [SMALL_STATE(6302)] = 283659, - [SMALL_STATE(6303)] = 283682, - [SMALL_STATE(6304)] = 283723, - [SMALL_STATE(6305)] = 283746, - [SMALL_STATE(6306)] = 283769, - [SMALL_STATE(6307)] = 283791, - [SMALL_STATE(6308)] = 283815, - [SMALL_STATE(6309)] = 283839, - [SMALL_STATE(6310)] = 283877, - [SMALL_STATE(6311)] = 283899, - [SMALL_STATE(6312)] = 283923, - [SMALL_STATE(6313)] = 283961, - [SMALL_STATE(6314)] = 283985, - [SMALL_STATE(6315)] = 284009, - [SMALL_STATE(6316)] = 284043, - [SMALL_STATE(6317)] = 284081, - [SMALL_STATE(6318)] = 284105, - [SMALL_STATE(6319)] = 284129, - [SMALL_STATE(6320)] = 284153, - [SMALL_STATE(6321)] = 284191, - [SMALL_STATE(6322)] = 284215, - [SMALL_STATE(6323)] = 284253, - [SMALL_STATE(6324)] = 284287, - [SMALL_STATE(6325)] = 284311, - [SMALL_STATE(6326)] = 284335, - [SMALL_STATE(6327)] = 284359, - [SMALL_STATE(6328)] = 284383, - [SMALL_STATE(6329)] = 284407, - [SMALL_STATE(6330)] = 284431, - [SMALL_STATE(6331)] = 284455, - [SMALL_STATE(6332)] = 284479, - [SMALL_STATE(6333)] = 284503, - [SMALL_STATE(6334)] = 284541, - [SMALL_STATE(6335)] = 284569, - [SMALL_STATE(6336)] = 284593, - [SMALL_STATE(6337)] = 284617, - [SMALL_STATE(6338)] = 284641, - [SMALL_STATE(6339)] = 284665, - [SMALL_STATE(6340)] = 284703, - [SMALL_STATE(6341)] = 284727, - [SMALL_STATE(6342)] = 284761, - [SMALL_STATE(6343)] = 284783, - [SMALL_STATE(6344)] = 284821, - [SMALL_STATE(6345)] = 284847, - [SMALL_STATE(6346)] = 284885, - [SMALL_STATE(6347)] = 284911, - [SMALL_STATE(6348)] = 284935, - [SMALL_STATE(6349)] = 284959, - [SMALL_STATE(6350)] = 284997, - [SMALL_STATE(6351)] = 285023, - [SMALL_STATE(6352)] = 285061, - [SMALL_STATE(6353)] = 285085, - [SMALL_STATE(6354)] = 285119, - [SMALL_STATE(6355)] = 285157, - [SMALL_STATE(6356)] = 285195, - [SMALL_STATE(6357)] = 285217, - [SMALL_STATE(6358)] = 285255, - [SMALL_STATE(6359)] = 285293, - [SMALL_STATE(6360)] = 285319, - [SMALL_STATE(6361)] = 285343, - [SMALL_STATE(6362)] = 285381, - [SMALL_STATE(6363)] = 285405, - [SMALL_STATE(6364)] = 285429, - [SMALL_STATE(6365)] = 285453, - [SMALL_STATE(6366)] = 285475, - [SMALL_STATE(6367)] = 285513, - [SMALL_STATE(6368)] = 285537, - [SMALL_STATE(6369)] = 285559, - [SMALL_STATE(6370)] = 285597, - [SMALL_STATE(6371)] = 285631, - [SMALL_STATE(6372)] = 285669, - [SMALL_STATE(6373)] = 285691, - [SMALL_STATE(6374)] = 285722, - [SMALL_STATE(6375)] = 285751, - [SMALL_STATE(6376)] = 285786, - [SMALL_STATE(6377)] = 285821, - [SMALL_STATE(6378)] = 285852, - [SMALL_STATE(6379)] = 285879, - [SMALL_STATE(6380)] = 285906, - [SMALL_STATE(6381)] = 285935, - [SMALL_STATE(6382)] = 285960, - [SMALL_STATE(6383)] = 285991, - [SMALL_STATE(6384)] = 286020, - [SMALL_STATE(6385)] = 286041, - [SMALL_STATE(6386)] = 286066, - [SMALL_STATE(6387)] = 286095, - [SMALL_STATE(6388)] = 286124, - [SMALL_STATE(6389)] = 286151, - [SMALL_STATE(6390)] = 286180, - [SMALL_STATE(6391)] = 286209, - [SMALL_STATE(6392)] = 286238, - [SMALL_STATE(6393)] = 286261, - [SMALL_STATE(6394)] = 286292, - [SMALL_STATE(6395)] = 286323, - [SMALL_STATE(6396)] = 286358, - [SMALL_STATE(6397)] = 286387, - [SMALL_STATE(6398)] = 286416, - [SMALL_STATE(6399)] = 286441, - [SMALL_STATE(6400)] = 286470, - [SMALL_STATE(6401)] = 286501, - [SMALL_STATE(6402)] = 286536, - [SMALL_STATE(6403)] = 286565, - [SMALL_STATE(6404)] = 286594, - [SMALL_STATE(6405)] = 286629, - [SMALL_STATE(6406)] = 286654, - [SMALL_STATE(6407)] = 286685, - [SMALL_STATE(6408)] = 286714, - [SMALL_STATE(6409)] = 286749, - [SMALL_STATE(6410)] = 286784, - [SMALL_STATE(6411)] = 286819, - [SMALL_STATE(6412)] = 286848, - [SMALL_STATE(6413)] = 286877, - [SMALL_STATE(6414)] = 286908, - [SMALL_STATE(6415)] = 286937, - [SMALL_STATE(6416)] = 286968, - [SMALL_STATE(6417)] = 286993, - [SMALL_STATE(6418)] = 287014, - [SMALL_STATE(6419)] = 287043, - [SMALL_STATE(6420)] = 287074, - [SMALL_STATE(6421)] = 287103, - [SMALL_STATE(6422)] = 287124, - [SMALL_STATE(6423)] = 287155, - [SMALL_STATE(6424)] = 287188, - [SMALL_STATE(6425)] = 287217, - [SMALL_STATE(6426)] = 287238, - [SMALL_STATE(6427)] = 287265, - [SMALL_STATE(6428)] = 287296, - [SMALL_STATE(6429)] = 287325, - [SMALL_STATE(6430)] = 287356, - [SMALL_STATE(6431)] = 287379, - [SMALL_STATE(6432)] = 287408, - [SMALL_STATE(6433)] = 287443, - [SMALL_STATE(6434)] = 287472, - [SMALL_STATE(6435)] = 287503, - [SMALL_STATE(6436)] = 287532, - [SMALL_STATE(6437)] = 287563, - [SMALL_STATE(6438)] = 287594, - [SMALL_STATE(6439)] = 287617, - [SMALL_STATE(6440)] = 287646, - [SMALL_STATE(6441)] = 287678, - [SMALL_STATE(6442)] = 287710, - [SMALL_STATE(6443)] = 287742, - [SMALL_STATE(6444)] = 287764, - [SMALL_STATE(6445)] = 287788, - [SMALL_STATE(6446)] = 287810, - [SMALL_STATE(6447)] = 287842, - [SMALL_STATE(6448)] = 287874, - [SMALL_STATE(6449)] = 287906, - [SMALL_STATE(6450)] = 287938, - [SMALL_STATE(6451)] = 287968, - [SMALL_STATE(6452)] = 287998, - [SMALL_STATE(6453)] = 288030, - [SMALL_STATE(6454)] = 288052, - [SMALL_STATE(6455)] = 288074, - [SMALL_STATE(6456)] = 288094, - [SMALL_STATE(6457)] = 288116, - [SMALL_STATE(6458)] = 288148, - [SMALL_STATE(6459)] = 288180, - [SMALL_STATE(6460)] = 288200, - [SMALL_STATE(6461)] = 288232, - [SMALL_STATE(6462)] = 288262, - [SMALL_STATE(6463)] = 288294, - [SMALL_STATE(6464)] = 288324, - [SMALL_STATE(6465)] = 288356, - [SMALL_STATE(6466)] = 288380, - [SMALL_STATE(6467)] = 288402, - [SMALL_STATE(6468)] = 288434, - [SMALL_STATE(6469)] = 288464, - [SMALL_STATE(6470)] = 288496, - [SMALL_STATE(6471)] = 288528, - [SMALL_STATE(6472)] = 288560, - [SMALL_STATE(6473)] = 288592, - [SMALL_STATE(6474)] = 288624, - [SMALL_STATE(6475)] = 288656, - [SMALL_STATE(6476)] = 288688, - [SMALL_STATE(6477)] = 288720, - [SMALL_STATE(6478)] = 288752, - [SMALL_STATE(6479)] = 288782, - [SMALL_STATE(6480)] = 288814, - [SMALL_STATE(6481)] = 288846, - [SMALL_STATE(6482)] = 288878, - [SMALL_STATE(6483)] = 288910, - [SMALL_STATE(6484)] = 288942, - [SMALL_STATE(6485)] = 288974, - [SMALL_STATE(6486)] = 288998, - [SMALL_STATE(6487)] = 289030, - [SMALL_STATE(6488)] = 289062, - [SMALL_STATE(6489)] = 289092, - [SMALL_STATE(6490)] = 289124, - [SMALL_STATE(6491)] = 289156, - [SMALL_STATE(6492)] = 289188, - [SMALL_STATE(6493)] = 289220, - [SMALL_STATE(6494)] = 289252, - [SMALL_STATE(6495)] = 289272, - [SMALL_STATE(6496)] = 289304, - [SMALL_STATE(6497)] = 289336, - [SMALL_STATE(6498)] = 289368, - [SMALL_STATE(6499)] = 289390, - [SMALL_STATE(6500)] = 289422, - [SMALL_STATE(6501)] = 289454, - [SMALL_STATE(6502)] = 289486, - [SMALL_STATE(6503)] = 289518, - [SMALL_STATE(6504)] = 289540, - [SMALL_STATE(6505)] = 289562, - [SMALL_STATE(6506)] = 289584, - [SMALL_STATE(6507)] = 289612, - [SMALL_STATE(6508)] = 289644, - [SMALL_STATE(6509)] = 289676, - [SMALL_STATE(6510)] = 289698, - [SMALL_STATE(6511)] = 289730, - [SMALL_STATE(6512)] = 289762, - [SMALL_STATE(6513)] = 289794, - [SMALL_STATE(6514)] = 289826, - [SMALL_STATE(6515)] = 289848, - [SMALL_STATE(6516)] = 289880, - [SMALL_STATE(6517)] = 289912, - [SMALL_STATE(6518)] = 289944, - [SMALL_STATE(6519)] = 289976, - [SMALL_STATE(6520)] = 290008, - [SMALL_STATE(6521)] = 290032, - [SMALL_STATE(6522)] = 290064, - [SMALL_STATE(6523)] = 290096, - [SMALL_STATE(6524)] = 290118, - [SMALL_STATE(6525)] = 290142, - [SMALL_STATE(6526)] = 290174, - [SMALL_STATE(6527)] = 290206, - [SMALL_STATE(6528)] = 290228, - [SMALL_STATE(6529)] = 290260, - [SMALL_STATE(6530)] = 290292, - [SMALL_STATE(6531)] = 290314, - [SMALL_STATE(6532)] = 290346, - [SMALL_STATE(6533)] = 290378, - [SMALL_STATE(6534)] = 290408, - [SMALL_STATE(6535)] = 290430, - [SMALL_STATE(6536)] = 290462, - [SMALL_STATE(6537)] = 290490, - [SMALL_STATE(6538)] = 290522, - [SMALL_STATE(6539)] = 290552, - [SMALL_STATE(6540)] = 290576, - [SMALL_STATE(6541)] = 290608, - [SMALL_STATE(6542)] = 290640, - [SMALL_STATE(6543)] = 290672, - [SMALL_STATE(6544)] = 290704, - [SMALL_STATE(6545)] = 290736, - [SMALL_STATE(6546)] = 290768, - [SMALL_STATE(6547)] = 290800, - [SMALL_STATE(6548)] = 290820, - [SMALL_STATE(6549)] = 290852, - [SMALL_STATE(6550)] = 290884, - [SMALL_STATE(6551)] = 290916, - [SMALL_STATE(6552)] = 290948, - [SMALL_STATE(6553)] = 290972, - [SMALL_STATE(6554)] = 291002, - [SMALL_STATE(6555)] = 291034, - [SMALL_STATE(6556)] = 291066, - [SMALL_STATE(6557)] = 291098, - [SMALL_STATE(6558)] = 291130, - [SMALL_STATE(6559)] = 291162, - [SMALL_STATE(6560)] = 291186, - [SMALL_STATE(6561)] = 291208, - [SMALL_STATE(6562)] = 291228, - [SMALL_STATE(6563)] = 291260, - [SMALL_STATE(6564)] = 291292, - [SMALL_STATE(6565)] = 291324, - [SMALL_STATE(6566)] = 291356, - [SMALL_STATE(6567)] = 291388, - [SMALL_STATE(6568)] = 291420, - [SMALL_STATE(6569)] = 291452, - [SMALL_STATE(6570)] = 291484, - [SMALL_STATE(6571)] = 291508, - [SMALL_STATE(6572)] = 291540, - [SMALL_STATE(6573)] = 291560, - [SMALL_STATE(6574)] = 291590, - [SMALL_STATE(6575)] = 291618, - [SMALL_STATE(6576)] = 291650, - [SMALL_STATE(6577)] = 291682, - [SMALL_STATE(6578)] = 291706, - [SMALL_STATE(6579)] = 291738, - [SMALL_STATE(6580)] = 291770, - [SMALL_STATE(6581)] = 291802, - [SMALL_STATE(6582)] = 291834, - [SMALL_STATE(6583)] = 291866, - [SMALL_STATE(6584)] = 291896, - [SMALL_STATE(6585)] = 291916, - [SMALL_STATE(6586)] = 291946, - [SMALL_STATE(6587)] = 291978, - [SMALL_STATE(6588)] = 292010, - [SMALL_STATE(6589)] = 292042, - [SMALL_STATE(6590)] = 292070, - [SMALL_STATE(6591)] = 292102, - [SMALL_STATE(6592)] = 292134, - [SMALL_STATE(6593)] = 292164, - [SMALL_STATE(6594)] = 292184, - [SMALL_STATE(6595)] = 292208, - [SMALL_STATE(6596)] = 292240, - [SMALL_STATE(6597)] = 292272, - [SMALL_STATE(6598)] = 292293, - [SMALL_STATE(6599)] = 292322, - [SMALL_STATE(6600)] = 292351, - [SMALL_STATE(6601)] = 292380, - [SMALL_STATE(6602)] = 292401, - [SMALL_STATE(6603)] = 292430, - [SMALL_STATE(6604)] = 292457, - [SMALL_STATE(6605)] = 292486, - [SMALL_STATE(6606)] = 292515, - [SMALL_STATE(6607)] = 292536, - [SMALL_STATE(6608)] = 292557, - [SMALL_STATE(6609)] = 292586, - [SMALL_STATE(6610)] = 292607, - [SMALL_STATE(6611)] = 292636, - [SMALL_STATE(6612)] = 292665, - [SMALL_STATE(6613)] = 292694, - [SMALL_STATE(6614)] = 292721, - [SMALL_STATE(6615)] = 292750, - [SMALL_STATE(6616)] = 292779, - [SMALL_STATE(6617)] = 292806, - [SMALL_STATE(6618)] = 292827, - [SMALL_STATE(6619)] = 292856, - [SMALL_STATE(6620)] = 292877, - [SMALL_STATE(6621)] = 292902, - [SMALL_STATE(6622)] = 292929, - [SMALL_STATE(6623)] = 292958, - [SMALL_STATE(6624)] = 292979, - [SMALL_STATE(6625)] = 293002, - [SMALL_STATE(6626)] = 293029, - [SMALL_STATE(6627)] = 293058, - [SMALL_STATE(6628)] = 293079, - [SMALL_STATE(6629)] = 293106, - [SMALL_STATE(6630)] = 293135, - [SMALL_STATE(6631)] = 293164, - [SMALL_STATE(6632)] = 293193, - [SMALL_STATE(6633)] = 293218, - [SMALL_STATE(6634)] = 293241, - [SMALL_STATE(6635)] = 293262, - [SMALL_STATE(6636)] = 293291, - [SMALL_STATE(6637)] = 293320, - [SMALL_STATE(6638)] = 293349, - [SMALL_STATE(6639)] = 293378, - [SMALL_STATE(6640)] = 293405, - [SMALL_STATE(6641)] = 293434, - [SMALL_STATE(6642)] = 293463, - [SMALL_STATE(6643)] = 293484, - [SMALL_STATE(6644)] = 293513, - [SMALL_STATE(6645)] = 293542, - [SMALL_STATE(6646)] = 293569, - [SMALL_STATE(6647)] = 293590, - [SMALL_STATE(6648)] = 293619, - [SMALL_STATE(6649)] = 293648, - [SMALL_STATE(6650)] = 293677, - [SMALL_STATE(6651)] = 293706, - [SMALL_STATE(6652)] = 293735, - [SMALL_STATE(6653)] = 293764, - [SMALL_STATE(6654)] = 293793, - [SMALL_STATE(6655)] = 293822, - [SMALL_STATE(6656)] = 293851, - [SMALL_STATE(6657)] = 293872, - [SMALL_STATE(6658)] = 293893, - [SMALL_STATE(6659)] = 293920, - [SMALL_STATE(6660)] = 293941, - [SMALL_STATE(6661)] = 293970, - [SMALL_STATE(6662)] = 293999, - [SMALL_STATE(6663)] = 294028, - [SMALL_STATE(6664)] = 294057, - [SMALL_STATE(6665)] = 294086, - [SMALL_STATE(6666)] = 294107, - [SMALL_STATE(6667)] = 294136, - [SMALL_STATE(6668)] = 294165, - [SMALL_STATE(6669)] = 294194, - [SMALL_STATE(6670)] = 294223, - [SMALL_STATE(6671)] = 294244, - [SMALL_STATE(6672)] = 294273, - [SMALL_STATE(6673)] = 294296, - [SMALL_STATE(6674)] = 294323, - [SMALL_STATE(6675)] = 294344, - [SMALL_STATE(6676)] = 294365, - [SMALL_STATE(6677)] = 294394, - [SMALL_STATE(6678)] = 294421, - [SMALL_STATE(6679)] = 294442, - [SMALL_STATE(6680)] = 294471, - [SMALL_STATE(6681)] = 294492, - [SMALL_STATE(6682)] = 294521, - [SMALL_STATE(6683)] = 294550, - [SMALL_STATE(6684)] = 294571, - [SMALL_STATE(6685)] = 294600, - [SMALL_STATE(6686)] = 294625, - [SMALL_STATE(6687)] = 294646, - [SMALL_STATE(6688)] = 294667, - [SMALL_STATE(6689)] = 294696, - [SMALL_STATE(6690)] = 294717, - [SMALL_STATE(6691)] = 294738, - [SMALL_STATE(6692)] = 294759, - [SMALL_STATE(6693)] = 294780, - [SMALL_STATE(6694)] = 294809, - [SMALL_STATE(6695)] = 294830, - [SMALL_STATE(6696)] = 294851, - [SMALL_STATE(6697)] = 294880, - [SMALL_STATE(6698)] = 294901, - [SMALL_STATE(6699)] = 294922, - [SMALL_STATE(6700)] = 294951, - [SMALL_STATE(6701)] = 294972, - [SMALL_STATE(6702)] = 295001, - [SMALL_STATE(6703)] = 295030, - [SMALL_STATE(6704)] = 295051, - [SMALL_STATE(6705)] = 295078, - [SMALL_STATE(6706)] = 295107, - [SMALL_STATE(6707)] = 295136, - [SMALL_STATE(6708)] = 295159, - [SMALL_STATE(6709)] = 295184, - [SMALL_STATE(6710)] = 295213, - [SMALL_STATE(6711)] = 295234, - [SMALL_STATE(6712)] = 295261, - [SMALL_STATE(6713)] = 295290, - [SMALL_STATE(6714)] = 295319, - [SMALL_STATE(6715)] = 295348, - [SMALL_STATE(6716)] = 295369, - [SMALL_STATE(6717)] = 295398, - [SMALL_STATE(6718)] = 295419, - [SMALL_STATE(6719)] = 295440, - [SMALL_STATE(6720)] = 295461, - [SMALL_STATE(6721)] = 295488, - [SMALL_STATE(6722)] = 295517, - [SMALL_STATE(6723)] = 295542, - [SMALL_STATE(6724)] = 295571, - [SMALL_STATE(6725)] = 295594, - [SMALL_STATE(6726)] = 295623, - [SMALL_STATE(6727)] = 295644, - [SMALL_STATE(6728)] = 295671, - [SMALL_STATE(6729)] = 295692, - [SMALL_STATE(6730)] = 295721, - [SMALL_STATE(6731)] = 295748, - [SMALL_STATE(6732)] = 295777, - [SMALL_STATE(6733)] = 295806, - [SMALL_STATE(6734)] = 295835, - [SMALL_STATE(6735)] = 295862, - [SMALL_STATE(6736)] = 295887, - [SMALL_STATE(6737)] = 295916, - [SMALL_STATE(6738)] = 295945, - [SMALL_STATE(6739)] = 295966, - [SMALL_STATE(6740)] = 295995, - [SMALL_STATE(6741)] = 296016, - [SMALL_STATE(6742)] = 296037, - [SMALL_STATE(6743)] = 296066, - [SMALL_STATE(6744)] = 296087, - [SMALL_STATE(6745)] = 296116, - [SMALL_STATE(6746)] = 296143, - [SMALL_STATE(6747)] = 296164, - [SMALL_STATE(6748)] = 296185, - [SMALL_STATE(6749)] = 296212, - [SMALL_STATE(6750)] = 296233, - [SMALL_STATE(6751)] = 296262, - [SMALL_STATE(6752)] = 296283, - [SMALL_STATE(6753)] = 296304, - [SMALL_STATE(6754)] = 296325, - [SMALL_STATE(6755)] = 296346, - [SMALL_STATE(6756)] = 296375, - [SMALL_STATE(6757)] = 296404, - [SMALL_STATE(6758)] = 296433, - [SMALL_STATE(6759)] = 296462, - [SMALL_STATE(6760)] = 296491, - [SMALL_STATE(6761)] = 296520, - [SMALL_STATE(6762)] = 296547, - [SMALL_STATE(6763)] = 296576, - [SMALL_STATE(6764)] = 296605, - [SMALL_STATE(6765)] = 296634, - [SMALL_STATE(6766)] = 296663, - [SMALL_STATE(6767)] = 296686, - [SMALL_STATE(6768)] = 296715, - [SMALL_STATE(6769)] = 296736, - [SMALL_STATE(6770)] = 296757, - [SMALL_STATE(6771)] = 296778, - [SMALL_STATE(6772)] = 296807, - [SMALL_STATE(6773)] = 296836, - [SMALL_STATE(6774)] = 296865, - [SMALL_STATE(6775)] = 296888, - [SMALL_STATE(6776)] = 296909, - [SMALL_STATE(6777)] = 296930, - [SMALL_STATE(6778)] = 296951, - [SMALL_STATE(6779)] = 296972, - [SMALL_STATE(6780)] = 296993, - [SMALL_STATE(6781)] = 297016, - [SMALL_STATE(6782)] = 297041, - [SMALL_STATE(6783)] = 297062, - [SMALL_STATE(6784)] = 297091, - [SMALL_STATE(6785)] = 297112, - [SMALL_STATE(6786)] = 297133, - [SMALL_STATE(6787)] = 297158, - [SMALL_STATE(6788)] = 297179, - [SMALL_STATE(6789)] = 297208, - [SMALL_STATE(6790)] = 297229, - [SMALL_STATE(6791)] = 297250, - [SMALL_STATE(6792)] = 297271, - [SMALL_STATE(6793)] = 297300, - [SMALL_STATE(6794)] = 297329, - [SMALL_STATE(6795)] = 297356, - [SMALL_STATE(6796)] = 297385, - [SMALL_STATE(6797)] = 297408, - [SMALL_STATE(6798)] = 297437, - [SMALL_STATE(6799)] = 297458, - [SMALL_STATE(6800)] = 297479, - [SMALL_STATE(6801)] = 297506, - [SMALL_STATE(6802)] = 297527, - [SMALL_STATE(6803)] = 297556, - [SMALL_STATE(6804)] = 297577, - [SMALL_STATE(6805)] = 297606, - [SMALL_STATE(6806)] = 297631, - [SMALL_STATE(6807)] = 297660, - [SMALL_STATE(6808)] = 297681, - [SMALL_STATE(6809)] = 297710, - [SMALL_STATE(6810)] = 297731, - [SMALL_STATE(6811)] = 297760, - [SMALL_STATE(6812)] = 297789, - [SMALL_STATE(6813)] = 297818, - [SMALL_STATE(6814)] = 297847, - [SMALL_STATE(6815)] = 297876, - [SMALL_STATE(6816)] = 297902, - [SMALL_STATE(6817)] = 297928, - [SMALL_STATE(6818)] = 297954, - [SMALL_STATE(6819)] = 297980, - [SMALL_STATE(6820)] = 298004, - [SMALL_STATE(6821)] = 298030, - [SMALL_STATE(6822)] = 298052, - [SMALL_STATE(6823)] = 298078, - [SMALL_STATE(6824)] = 298104, - [SMALL_STATE(6825)] = 298126, - [SMALL_STATE(6826)] = 298150, - [SMALL_STATE(6827)] = 298176, - [SMALL_STATE(6828)] = 298202, - [SMALL_STATE(6829)] = 298228, - [SMALL_STATE(6830)] = 298254, - [SMALL_STATE(6831)] = 298276, - [SMALL_STATE(6832)] = 298302, - [SMALL_STATE(6833)] = 298328, - [SMALL_STATE(6834)] = 298354, - [SMALL_STATE(6835)] = 298380, - [SMALL_STATE(6836)] = 298406, - [SMALL_STATE(6837)] = 298432, - [SMALL_STATE(6838)] = 298458, - [SMALL_STATE(6839)] = 298484, - [SMALL_STATE(6840)] = 298506, - [SMALL_STATE(6841)] = 298532, - [SMALL_STATE(6842)] = 298558, - [SMALL_STATE(6843)] = 298584, - [SMALL_STATE(6844)] = 298610, - [SMALL_STATE(6845)] = 298636, - [SMALL_STATE(6846)] = 298662, - [SMALL_STATE(6847)] = 298688, - [SMALL_STATE(6848)] = 298714, - [SMALL_STATE(6849)] = 298740, - [SMALL_STATE(6850)] = 298762, - [SMALL_STATE(6851)] = 298788, - [SMALL_STATE(6852)] = 298814, - [SMALL_STATE(6853)] = 298840, - [SMALL_STATE(6854)] = 298866, - [SMALL_STATE(6855)] = 298890, - [SMALL_STATE(6856)] = 298916, - [SMALL_STATE(6857)] = 298942, - [SMALL_STATE(6858)] = 298968, - [SMALL_STATE(6859)] = 298990, - [SMALL_STATE(6860)] = 299016, - [SMALL_STATE(6861)] = 299040, - [SMALL_STATE(6862)] = 299062, - [SMALL_STATE(6863)] = 299086, - [SMALL_STATE(6864)] = 299104, - [SMALL_STATE(6865)] = 299124, - [SMALL_STATE(6866)] = 299142, - [SMALL_STATE(6867)] = 299160, - [SMALL_STATE(6868)] = 299186, - [SMALL_STATE(6869)] = 299204, - [SMALL_STATE(6870)] = 299222, - [SMALL_STATE(6871)] = 299248, - [SMALL_STATE(6872)] = 299270, - [SMALL_STATE(6873)] = 299296, - [SMALL_STATE(6874)] = 299318, - [SMALL_STATE(6875)] = 299342, - [SMALL_STATE(6876)] = 299368, - [SMALL_STATE(6877)] = 299390, - [SMALL_STATE(6878)] = 299416, - [SMALL_STATE(6879)] = 299442, - [SMALL_STATE(6880)] = 299464, - [SMALL_STATE(6881)] = 299490, - [SMALL_STATE(6882)] = 299516, - [SMALL_STATE(6883)] = 299542, - [SMALL_STATE(6884)] = 299568, - [SMALL_STATE(6885)] = 299594, - [SMALL_STATE(6886)] = 299620, - [SMALL_STATE(6887)] = 299644, - [SMALL_STATE(6888)] = 299662, - [SMALL_STATE(6889)] = 299686, - [SMALL_STATE(6890)] = 299710, - [SMALL_STATE(6891)] = 299736, - [SMALL_STATE(6892)] = 299758, - [SMALL_STATE(6893)] = 299784, - [SMALL_STATE(6894)] = 299806, - [SMALL_STATE(6895)] = 299830, - [SMALL_STATE(6896)] = 299854, - [SMALL_STATE(6897)] = 299880, - [SMALL_STATE(6898)] = 299902, - [SMALL_STATE(6899)] = 299928, - [SMALL_STATE(6900)] = 299952, - [SMALL_STATE(6901)] = 299978, - [SMALL_STATE(6902)] = 300000, - [SMALL_STATE(6903)] = 300026, - [SMALL_STATE(6904)] = 300050, - [SMALL_STATE(6905)] = 300074, - [SMALL_STATE(6906)] = 300096, - [SMALL_STATE(6907)] = 300122, - [SMALL_STATE(6908)] = 300144, - [SMALL_STATE(6909)] = 300170, - [SMALL_STATE(6910)] = 300192, - [SMALL_STATE(6911)] = 300214, - [SMALL_STATE(6912)] = 300240, - [SMALL_STATE(6913)] = 300266, - [SMALL_STATE(6914)] = 300288, - [SMALL_STATE(6915)] = 300312, - [SMALL_STATE(6916)] = 300338, - [SMALL_STATE(6917)] = 300364, - [SMALL_STATE(6918)] = 300385, - [SMALL_STATE(6919)] = 300408, - [SMALL_STATE(6920)] = 300431, - [SMALL_STATE(6921)] = 300454, - [SMALL_STATE(6922)] = 300477, - [SMALL_STATE(6923)] = 300500, - [SMALL_STATE(6924)] = 300523, - [SMALL_STATE(6925)] = 300546, - [SMALL_STATE(6926)] = 300569, - [SMALL_STATE(6927)] = 300592, - [SMALL_STATE(6928)] = 300615, - [SMALL_STATE(6929)] = 300638, - [SMALL_STATE(6930)] = 300661, - [SMALL_STATE(6931)] = 300682, - [SMALL_STATE(6932)] = 300703, - [SMALL_STATE(6933)] = 300726, - [SMALL_STATE(6934)] = 300749, - [SMALL_STATE(6935)] = 300768, - [SMALL_STATE(6936)] = 300791, - [SMALL_STATE(6937)] = 300814, - [SMALL_STATE(6938)] = 300835, - [SMALL_STATE(6939)] = 300854, - [SMALL_STATE(6940)] = 300877, - [SMALL_STATE(6941)] = 300900, - [SMALL_STATE(6942)] = 300917, - [SMALL_STATE(6943)] = 300940, - [SMALL_STATE(6944)] = 300963, - [SMALL_STATE(6945)] = 300986, - [SMALL_STATE(6946)] = 301007, - [SMALL_STATE(6947)] = 301030, - [SMALL_STATE(6948)] = 301053, - [SMALL_STATE(6949)] = 301076, - [SMALL_STATE(6950)] = 301099, - [SMALL_STATE(6951)] = 301122, - [SMALL_STATE(6952)] = 301145, - [SMALL_STATE(6953)] = 301168, - [SMALL_STATE(6954)] = 301191, - [SMALL_STATE(6955)] = 301214, - [SMALL_STATE(6956)] = 301237, - [SMALL_STATE(6957)] = 301260, - [SMALL_STATE(6958)] = 301283, - [SMALL_STATE(6959)] = 301306, - [SMALL_STATE(6960)] = 301329, - [SMALL_STATE(6961)] = 301352, - [SMALL_STATE(6962)] = 301375, - [SMALL_STATE(6963)] = 301398, - [SMALL_STATE(6964)] = 301421, - [SMALL_STATE(6965)] = 301444, - [SMALL_STATE(6966)] = 301467, - [SMALL_STATE(6967)] = 301490, - [SMALL_STATE(6968)] = 301513, - [SMALL_STATE(6969)] = 301536, - [SMALL_STATE(6970)] = 301559, - [SMALL_STATE(6971)] = 301582, - [SMALL_STATE(6972)] = 301603, - [SMALL_STATE(6973)] = 301626, - [SMALL_STATE(6974)] = 301649, - [SMALL_STATE(6975)] = 301672, - [SMALL_STATE(6976)] = 301695, - [SMALL_STATE(6977)] = 301718, - [SMALL_STATE(6978)] = 301741, - [SMALL_STATE(6979)] = 301764, - [SMALL_STATE(6980)] = 301787, - [SMALL_STATE(6981)] = 301810, - [SMALL_STATE(6982)] = 301833, - [SMALL_STATE(6983)] = 301854, - [SMALL_STATE(6984)] = 301877, - [SMALL_STATE(6985)] = 301900, - [SMALL_STATE(6986)] = 301923, - [SMALL_STATE(6987)] = 301946, - [SMALL_STATE(6988)] = 301969, - [SMALL_STATE(6989)] = 301992, - [SMALL_STATE(6990)] = 302015, - [SMALL_STATE(6991)] = 302038, - [SMALL_STATE(6992)] = 302061, - [SMALL_STATE(6993)] = 302082, - [SMALL_STATE(6994)] = 302105, - [SMALL_STATE(6995)] = 302128, - [SMALL_STATE(6996)] = 302151, - [SMALL_STATE(6997)] = 302174, - [SMALL_STATE(6998)] = 302197, - [SMALL_STATE(6999)] = 302220, - [SMALL_STATE(7000)] = 302241, - [SMALL_STATE(7001)] = 302264, - [SMALL_STATE(7002)] = 302287, - [SMALL_STATE(7003)] = 302310, - [SMALL_STATE(7004)] = 302333, - [SMALL_STATE(7005)] = 302356, - [SMALL_STATE(7006)] = 302379, - [SMALL_STATE(7007)] = 302402, - [SMALL_STATE(7008)] = 302425, - [SMALL_STATE(7009)] = 302448, - [SMALL_STATE(7010)] = 302471, - [SMALL_STATE(7011)] = 302492, - [SMALL_STATE(7012)] = 302515, - [SMALL_STATE(7013)] = 302538, - [SMALL_STATE(7014)] = 302561, - [SMALL_STATE(7015)] = 302580, - [SMALL_STATE(7016)] = 302601, - [SMALL_STATE(7017)] = 302624, - [SMALL_STATE(7018)] = 302647, - [SMALL_STATE(7019)] = 302670, - [SMALL_STATE(7020)] = 302689, - [SMALL_STATE(7021)] = 302712, - [SMALL_STATE(7022)] = 302735, - [SMALL_STATE(7023)] = 302756, - [SMALL_STATE(7024)] = 302779, - [SMALL_STATE(7025)] = 302798, - [SMALL_STATE(7026)] = 302821, - [SMALL_STATE(7027)] = 302842, - [SMALL_STATE(7028)] = 302865, - [SMALL_STATE(7029)] = 302888, - [SMALL_STATE(7030)] = 302911, - [SMALL_STATE(7031)] = 302934, - [SMALL_STATE(7032)] = 302957, - [SMALL_STATE(7033)] = 302980, - [SMALL_STATE(7034)] = 303003, - [SMALL_STATE(7035)] = 303026, - [SMALL_STATE(7036)] = 303047, - [SMALL_STATE(7037)] = 303070, - [SMALL_STATE(7038)] = 303093, - [SMALL_STATE(7039)] = 303116, - [SMALL_STATE(7040)] = 303135, - [SMALL_STATE(7041)] = 303158, - [SMALL_STATE(7042)] = 303181, - [SMALL_STATE(7043)] = 303204, - [SMALL_STATE(7044)] = 303227, - [SMALL_STATE(7045)] = 303250, - [SMALL_STATE(7046)] = 303273, - [SMALL_STATE(7047)] = 303296, - [SMALL_STATE(7048)] = 303319, - [SMALL_STATE(7049)] = 303342, - [SMALL_STATE(7050)] = 303365, - [SMALL_STATE(7051)] = 303388, - [SMALL_STATE(7052)] = 303411, - [SMALL_STATE(7053)] = 303434, - [SMALL_STATE(7054)] = 303457, - [SMALL_STATE(7055)] = 303480, - [SMALL_STATE(7056)] = 303503, - [SMALL_STATE(7057)] = 303526, - [SMALL_STATE(7058)] = 303549, - [SMALL_STATE(7059)] = 303568, - [SMALL_STATE(7060)] = 303587, - [SMALL_STATE(7061)] = 303610, - [SMALL_STATE(7062)] = 303633, - [SMALL_STATE(7063)] = 303656, - [SMALL_STATE(7064)] = 303679, - [SMALL_STATE(7065)] = 303700, - [SMALL_STATE(7066)] = 303721, - [SMALL_STATE(7067)] = 303744, - [SMALL_STATE(7068)] = 303767, - [SMALL_STATE(7069)] = 303790, - [SMALL_STATE(7070)] = 303813, - [SMALL_STATE(7071)] = 303836, - [SMALL_STATE(7072)] = 303859, - [SMALL_STATE(7073)] = 303882, - [SMALL_STATE(7074)] = 303903, - [SMALL_STATE(7075)] = 303926, - [SMALL_STATE(7076)] = 303949, - [SMALL_STATE(7077)] = 303972, - [SMALL_STATE(7078)] = 303995, - [SMALL_STATE(7079)] = 304014, - [SMALL_STATE(7080)] = 304037, - [SMALL_STATE(7081)] = 304060, - [SMALL_STATE(7082)] = 304083, - [SMALL_STATE(7083)] = 304106, - [SMALL_STATE(7084)] = 304129, - [SMALL_STATE(7085)] = 304152, - [SMALL_STATE(7086)] = 304175, - [SMALL_STATE(7087)] = 304198, - [SMALL_STATE(7088)] = 304221, - [SMALL_STATE(7089)] = 304244, - [SMALL_STATE(7090)] = 304265, - [SMALL_STATE(7091)] = 304286, - [SMALL_STATE(7092)] = 304309, - [SMALL_STATE(7093)] = 304332, - [SMALL_STATE(7094)] = 304355, - [SMALL_STATE(7095)] = 304378, - [SMALL_STATE(7096)] = 304399, - [SMALL_STATE(7097)] = 304420, - [SMALL_STATE(7098)] = 304443, - [SMALL_STATE(7099)] = 304466, - [SMALL_STATE(7100)] = 304489, - [SMALL_STATE(7101)] = 304512, - [SMALL_STATE(7102)] = 304535, - [SMALL_STATE(7103)] = 304558, - [SMALL_STATE(7104)] = 304581, - [SMALL_STATE(7105)] = 304604, - [SMALL_STATE(7106)] = 304625, - [SMALL_STATE(7107)] = 304648, - [SMALL_STATE(7108)] = 304671, - [SMALL_STATE(7109)] = 304694, - [SMALL_STATE(7110)] = 304717, - [SMALL_STATE(7111)] = 304740, - [SMALL_STATE(7112)] = 304763, - [SMALL_STATE(7113)] = 304786, - [SMALL_STATE(7114)] = 304809, - [SMALL_STATE(7115)] = 304832, - [SMALL_STATE(7116)] = 304855, - [SMALL_STATE(7117)] = 304878, - [SMALL_STATE(7118)] = 304901, - [SMALL_STATE(7119)] = 304924, - [SMALL_STATE(7120)] = 304947, - [SMALL_STATE(7121)] = 304970, - [SMALL_STATE(7122)] = 304993, - [SMALL_STATE(7123)] = 305014, - [SMALL_STATE(7124)] = 305037, - [SMALL_STATE(7125)] = 305060, - [SMALL_STATE(7126)] = 305083, - [SMALL_STATE(7127)] = 305106, - [SMALL_STATE(7128)] = 305129, - [SMALL_STATE(7129)] = 305152, - [SMALL_STATE(7130)] = 305173, - [SMALL_STATE(7131)] = 305196, - [SMALL_STATE(7132)] = 305219, - [SMALL_STATE(7133)] = 305242, - [SMALL_STATE(7134)] = 305265, - [SMALL_STATE(7135)] = 305288, - [SMALL_STATE(7136)] = 305311, - [SMALL_STATE(7137)] = 305334, - [SMALL_STATE(7138)] = 305355, - [SMALL_STATE(7139)] = 305376, - [SMALL_STATE(7140)] = 305397, - [SMALL_STATE(7141)] = 305420, - [SMALL_STATE(7142)] = 305443, - [SMALL_STATE(7143)] = 305466, - [SMALL_STATE(7144)] = 305489, - [SMALL_STATE(7145)] = 305512, - [SMALL_STATE(7146)] = 305535, - [SMALL_STATE(7147)] = 305558, - [SMALL_STATE(7148)] = 305581, - [SMALL_STATE(7149)] = 305604, - [SMALL_STATE(7150)] = 305627, - [SMALL_STATE(7151)] = 305650, - [SMALL_STATE(7152)] = 305673, - [SMALL_STATE(7153)] = 305696, - [SMALL_STATE(7154)] = 305719, - [SMALL_STATE(7155)] = 305742, - [SMALL_STATE(7156)] = 305765, - [SMALL_STATE(7157)] = 305788, - [SMALL_STATE(7158)] = 305811, - [SMALL_STATE(7159)] = 305834, - [SMALL_STATE(7160)] = 305857, - [SMALL_STATE(7161)] = 305878, - [SMALL_STATE(7162)] = 305897, - [SMALL_STATE(7163)] = 305918, - [SMALL_STATE(7164)] = 305941, - [SMALL_STATE(7165)] = 305964, - [SMALL_STATE(7166)] = 305987, - [SMALL_STATE(7167)] = 306010, - [SMALL_STATE(7168)] = 306033, - [SMALL_STATE(7169)] = 306056, - [SMALL_STATE(7170)] = 306079, - [SMALL_STATE(7171)] = 306102, - [SMALL_STATE(7172)] = 306125, - [SMALL_STATE(7173)] = 306144, - [SMALL_STATE(7174)] = 306167, - [SMALL_STATE(7175)] = 306190, - [SMALL_STATE(7176)] = 306213, - [SMALL_STATE(7177)] = 306232, - [SMALL_STATE(7178)] = 306255, - [SMALL_STATE(7179)] = 306278, - [SMALL_STATE(7180)] = 306301, - [SMALL_STATE(7181)] = 306324, - [SMALL_STATE(7182)] = 306347, - [SMALL_STATE(7183)] = 306370, - [SMALL_STATE(7184)] = 306393, - [SMALL_STATE(7185)] = 306416, - [SMALL_STATE(7186)] = 306439, - [SMALL_STATE(7187)] = 306462, - [SMALL_STATE(7188)] = 306485, - [SMALL_STATE(7189)] = 306508, - [SMALL_STATE(7190)] = 306531, - [SMALL_STATE(7191)] = 306554, - [SMALL_STATE(7192)] = 306577, - [SMALL_STATE(7193)] = 306600, - [SMALL_STATE(7194)] = 306621, - [SMALL_STATE(7195)] = 306644, - [SMALL_STATE(7196)] = 306667, - [SMALL_STATE(7197)] = 306688, - [SMALL_STATE(7198)] = 306711, - [SMALL_STATE(7199)] = 306734, - [SMALL_STATE(7200)] = 306757, - [SMALL_STATE(7201)] = 306780, - [SMALL_STATE(7202)] = 306803, - [SMALL_STATE(7203)] = 306826, - [SMALL_STATE(7204)] = 306849, - [SMALL_STATE(7205)] = 306870, - [SMALL_STATE(7206)] = 306891, - [SMALL_STATE(7207)] = 306912, - [SMALL_STATE(7208)] = 306935, - [SMALL_STATE(7209)] = 306958, - [SMALL_STATE(7210)] = 306981, - [SMALL_STATE(7211)] = 307004, - [SMALL_STATE(7212)] = 307025, - [SMALL_STATE(7213)] = 307048, - [SMALL_STATE(7214)] = 307071, - [SMALL_STATE(7215)] = 307092, - [SMALL_STATE(7216)] = 307115, - [SMALL_STATE(7217)] = 307138, - [SMALL_STATE(7218)] = 307161, - [SMALL_STATE(7219)] = 307181, - [SMALL_STATE(7220)] = 307201, - [SMALL_STATE(7221)] = 307221, - [SMALL_STATE(7222)] = 307241, - [SMALL_STATE(7223)] = 307261, - [SMALL_STATE(7224)] = 307281, - [SMALL_STATE(7225)] = 307299, - [SMALL_STATE(7226)] = 307319, - [SMALL_STATE(7227)] = 307339, - [SMALL_STATE(7228)] = 307359, - [SMALL_STATE(7229)] = 307379, - [SMALL_STATE(7230)] = 307397, - [SMALL_STATE(7231)] = 307417, - [SMALL_STATE(7232)] = 307437, - [SMALL_STATE(7233)] = 307457, - [SMALL_STATE(7234)] = 307477, - [SMALL_STATE(7235)] = 307497, - [SMALL_STATE(7236)] = 307517, - [SMALL_STATE(7237)] = 307537, - [SMALL_STATE(7238)] = 307557, - [SMALL_STATE(7239)] = 307577, - [SMALL_STATE(7240)] = 307597, - [SMALL_STATE(7241)] = 307615, - [SMALL_STATE(7242)] = 307633, - [SMALL_STATE(7243)] = 307651, - [SMALL_STATE(7244)] = 307671, - [SMALL_STATE(7245)] = 307691, - [SMALL_STATE(7246)] = 307711, - [SMALL_STATE(7247)] = 307729, - [SMALL_STATE(7248)] = 307749, - [SMALL_STATE(7249)] = 307769, - [SMALL_STATE(7250)] = 307789, - [SMALL_STATE(7251)] = 307809, - [SMALL_STATE(7252)] = 307829, - [SMALL_STATE(7253)] = 307849, - [SMALL_STATE(7254)] = 307869, - [SMALL_STATE(7255)] = 307887, - [SMALL_STATE(7256)] = 307907, - [SMALL_STATE(7257)] = 307927, - [SMALL_STATE(7258)] = 307947, - [SMALL_STATE(7259)] = 307967, - [SMALL_STATE(7260)] = 307987, - [SMALL_STATE(7261)] = 308007, - [SMALL_STATE(7262)] = 308027, - [SMALL_STATE(7263)] = 308047, - [SMALL_STATE(7264)] = 308067, - [SMALL_STATE(7265)] = 308087, - [SMALL_STATE(7266)] = 308107, - [SMALL_STATE(7267)] = 308127, - [SMALL_STATE(7268)] = 308147, - [SMALL_STATE(7269)] = 308167, - [SMALL_STATE(7270)] = 308187, - [SMALL_STATE(7271)] = 308207, - [SMALL_STATE(7272)] = 308227, - [SMALL_STATE(7273)] = 308247, - [SMALL_STATE(7274)] = 308265, - [SMALL_STATE(7275)] = 308285, - [SMALL_STATE(7276)] = 308305, - [SMALL_STATE(7277)] = 308325, - [SMALL_STATE(7278)] = 308345, - [SMALL_STATE(7279)] = 308365, - [SMALL_STATE(7280)] = 308385, - [SMALL_STATE(7281)] = 308403, - [SMALL_STATE(7282)] = 308421, - [SMALL_STATE(7283)] = 308439, - [SMALL_STATE(7284)] = 308457, - [SMALL_STATE(7285)] = 308477, - [SMALL_STATE(7286)] = 308495, - [SMALL_STATE(7287)] = 308513, - [SMALL_STATE(7288)] = 308529, - [SMALL_STATE(7289)] = 308547, - [SMALL_STATE(7290)] = 308567, - [SMALL_STATE(7291)] = 308585, - [SMALL_STATE(7292)] = 308605, - [SMALL_STATE(7293)] = 308623, - [SMALL_STATE(7294)] = 308641, - [SMALL_STATE(7295)] = 308659, - [SMALL_STATE(7296)] = 308677, - [SMALL_STATE(7297)] = 308695, - [SMALL_STATE(7298)] = 308713, - [SMALL_STATE(7299)] = 308731, - [SMALL_STATE(7300)] = 308751, - [SMALL_STATE(7301)] = 308769, - [SMALL_STATE(7302)] = 308789, - [SMALL_STATE(7303)] = 308807, - [SMALL_STATE(7304)] = 308825, - [SMALL_STATE(7305)] = 308843, - [SMALL_STATE(7306)] = 308861, - [SMALL_STATE(7307)] = 308879, - [SMALL_STATE(7308)] = 308899, - [SMALL_STATE(7309)] = 308917, - [SMALL_STATE(7310)] = 308937, - [SMALL_STATE(7311)] = 308957, - [SMALL_STATE(7312)] = 308975, - [SMALL_STATE(7313)] = 308993, - [SMALL_STATE(7314)] = 309011, - [SMALL_STATE(7315)] = 309029, - [SMALL_STATE(7316)] = 309047, - [SMALL_STATE(7317)] = 309065, - [SMALL_STATE(7318)] = 309083, - [SMALL_STATE(7319)] = 309101, - [SMALL_STATE(7320)] = 309119, - [SMALL_STATE(7321)] = 309137, - [SMALL_STATE(7322)] = 309157, - [SMALL_STATE(7323)] = 309177, - [SMALL_STATE(7324)] = 309197, - [SMALL_STATE(7325)] = 309217, - [SMALL_STATE(7326)] = 309237, - [SMALL_STATE(7327)] = 309255, - [SMALL_STATE(7328)] = 309275, - [SMALL_STATE(7329)] = 309293, - [SMALL_STATE(7330)] = 309313, - [SMALL_STATE(7331)] = 309333, - [SMALL_STATE(7332)] = 309353, - [SMALL_STATE(7333)] = 309373, - [SMALL_STATE(7334)] = 309393, - [SMALL_STATE(7335)] = 309413, - [SMALL_STATE(7336)] = 309433, - [SMALL_STATE(7337)] = 309451, - [SMALL_STATE(7338)] = 309471, - [SMALL_STATE(7339)] = 309489, - [SMALL_STATE(7340)] = 309507, - [SMALL_STATE(7341)] = 309527, - [SMALL_STATE(7342)] = 309547, - [SMALL_STATE(7343)] = 309567, - [SMALL_STATE(7344)] = 309585, - [SMALL_STATE(7345)] = 309605, - [SMALL_STATE(7346)] = 309625, - [SMALL_STATE(7347)] = 309645, - [SMALL_STATE(7348)] = 309665, - [SMALL_STATE(7349)] = 309685, - [SMALL_STATE(7350)] = 309705, - [SMALL_STATE(7351)] = 309725, - [SMALL_STATE(7352)] = 309745, - [SMALL_STATE(7353)] = 309765, - [SMALL_STATE(7354)] = 309785, - [SMALL_STATE(7355)] = 309805, - [SMALL_STATE(7356)] = 309825, - [SMALL_STATE(7357)] = 309845, - [SMALL_STATE(7358)] = 309865, - [SMALL_STATE(7359)] = 309885, - [SMALL_STATE(7360)] = 309905, - [SMALL_STATE(7361)] = 309925, - [SMALL_STATE(7362)] = 309945, - [SMALL_STATE(7363)] = 309963, - [SMALL_STATE(7364)] = 309983, - [SMALL_STATE(7365)] = 310003, - [SMALL_STATE(7366)] = 310023, - [SMALL_STATE(7367)] = 310043, - [SMALL_STATE(7368)] = 310063, - [SMALL_STATE(7369)] = 310083, - [SMALL_STATE(7370)] = 310103, - [SMALL_STATE(7371)] = 310123, - [SMALL_STATE(7372)] = 310143, - [SMALL_STATE(7373)] = 310163, - [SMALL_STATE(7374)] = 310181, - [SMALL_STATE(7375)] = 310201, - [SMALL_STATE(7376)] = 310221, - [SMALL_STATE(7377)] = 310241, - [SMALL_STATE(7378)] = 310261, - [SMALL_STATE(7379)] = 310279, - [SMALL_STATE(7380)] = 310299, - [SMALL_STATE(7381)] = 310319, - [SMALL_STATE(7382)] = 310339, - [SMALL_STATE(7383)] = 310359, - [SMALL_STATE(7384)] = 310379, - [SMALL_STATE(7385)] = 310399, - [SMALL_STATE(7386)] = 310419, - [SMALL_STATE(7387)] = 310439, - [SMALL_STATE(7388)] = 310459, - [SMALL_STATE(7389)] = 310479, - [SMALL_STATE(7390)] = 310499, - [SMALL_STATE(7391)] = 310519, - [SMALL_STATE(7392)] = 310535, - [SMALL_STATE(7393)] = 310555, - [SMALL_STATE(7394)] = 310575, - [SMALL_STATE(7395)] = 310595, - [SMALL_STATE(7396)] = 310615, - [SMALL_STATE(7397)] = 310635, - [SMALL_STATE(7398)] = 310655, - [SMALL_STATE(7399)] = 310675, - [SMALL_STATE(7400)] = 310695, - [SMALL_STATE(7401)] = 310715, - [SMALL_STATE(7402)] = 310735, - [SMALL_STATE(7403)] = 310755, - [SMALL_STATE(7404)] = 310775, - [SMALL_STATE(7405)] = 310795, - [SMALL_STATE(7406)] = 310815, - [SMALL_STATE(7407)] = 310835, - [SMALL_STATE(7408)] = 310853, - [SMALL_STATE(7409)] = 310873, - [SMALL_STATE(7410)] = 310893, - [SMALL_STATE(7411)] = 310911, - [SMALL_STATE(7412)] = 310931, - [SMALL_STATE(7413)] = 310951, - [SMALL_STATE(7414)] = 310971, - [SMALL_STATE(7415)] = 310989, - [SMALL_STATE(7416)] = 311009, - [SMALL_STATE(7417)] = 311029, - [SMALL_STATE(7418)] = 311049, - [SMALL_STATE(7419)] = 311067, - [SMALL_STATE(7420)] = 311087, - [SMALL_STATE(7421)] = 311107, - [SMALL_STATE(7422)] = 311125, - [SMALL_STATE(7423)] = 311143, - [SMALL_STATE(7424)] = 311161, - [SMALL_STATE(7425)] = 311181, - [SMALL_STATE(7426)] = 311201, - [SMALL_STATE(7427)] = 311221, - [SMALL_STATE(7428)] = 311241, - [SMALL_STATE(7429)] = 311261, - [SMALL_STATE(7430)] = 311281, - [SMALL_STATE(7431)] = 311299, - [SMALL_STATE(7432)] = 311319, - [SMALL_STATE(7433)] = 311339, - [SMALL_STATE(7434)] = 311359, - [SMALL_STATE(7435)] = 311379, - [SMALL_STATE(7436)] = 311399, - [SMALL_STATE(7437)] = 311419, - [SMALL_STATE(7438)] = 311439, - [SMALL_STATE(7439)] = 311459, - [SMALL_STATE(7440)] = 311479, - [SMALL_STATE(7441)] = 311499, - [SMALL_STATE(7442)] = 311519, - [SMALL_STATE(7443)] = 311539, - [SMALL_STATE(7444)] = 311555, - [SMALL_STATE(7445)] = 311575, - [SMALL_STATE(7446)] = 311593, - [SMALL_STATE(7447)] = 311613, - [SMALL_STATE(7448)] = 311633, - [SMALL_STATE(7449)] = 311653, - [SMALL_STATE(7450)] = 311673, - [SMALL_STATE(7451)] = 311693, - [SMALL_STATE(7452)] = 311713, - [SMALL_STATE(7453)] = 311733, - [SMALL_STATE(7454)] = 311753, - [SMALL_STATE(7455)] = 311771, - [SMALL_STATE(7456)] = 311791, - [SMALL_STATE(7457)] = 311811, - [SMALL_STATE(7458)] = 311831, - [SMALL_STATE(7459)] = 311851, - [SMALL_STATE(7460)] = 311871, - [SMALL_STATE(7461)] = 311891, - [SMALL_STATE(7462)] = 311911, - [SMALL_STATE(7463)] = 311931, - [SMALL_STATE(7464)] = 311951, - [SMALL_STATE(7465)] = 311971, - [SMALL_STATE(7466)] = 311991, - [SMALL_STATE(7467)] = 312011, - [SMALL_STATE(7468)] = 312031, - [SMALL_STATE(7469)] = 312051, - [SMALL_STATE(7470)] = 312071, - [SMALL_STATE(7471)] = 312091, - [SMALL_STATE(7472)] = 312111, - [SMALL_STATE(7473)] = 312131, - [SMALL_STATE(7474)] = 312151, - [SMALL_STATE(7475)] = 312171, - [SMALL_STATE(7476)] = 312191, - [SMALL_STATE(7477)] = 312211, - [SMALL_STATE(7478)] = 312231, - [SMALL_STATE(7479)] = 312251, - [SMALL_STATE(7480)] = 312271, - [SMALL_STATE(7481)] = 312289, - [SMALL_STATE(7482)] = 312309, - [SMALL_STATE(7483)] = 312329, - [SMALL_STATE(7484)] = 312349, - [SMALL_STATE(7485)] = 312369, - [SMALL_STATE(7486)] = 312389, - [SMALL_STATE(7487)] = 312409, - [SMALL_STATE(7488)] = 312429, - [SMALL_STATE(7489)] = 312449, - [SMALL_STATE(7490)] = 312469, - [SMALL_STATE(7491)] = 312489, - [SMALL_STATE(7492)] = 312509, - [SMALL_STATE(7493)] = 312529, - [SMALL_STATE(7494)] = 312549, - [SMALL_STATE(7495)] = 312569, - [SMALL_STATE(7496)] = 312589, - [SMALL_STATE(7497)] = 312607, - [SMALL_STATE(7498)] = 312627, - [SMALL_STATE(7499)] = 312647, - [SMALL_STATE(7500)] = 312667, - [SMALL_STATE(7501)] = 312687, - [SMALL_STATE(7502)] = 312707, - [SMALL_STATE(7503)] = 312725, - [SMALL_STATE(7504)] = 312745, - [SMALL_STATE(7505)] = 312765, - [SMALL_STATE(7506)] = 312785, - [SMALL_STATE(7507)] = 312805, - [SMALL_STATE(7508)] = 312825, - [SMALL_STATE(7509)] = 312845, - [SMALL_STATE(7510)] = 312865, - [SMALL_STATE(7511)] = 312885, - [SMALL_STATE(7512)] = 312905, - [SMALL_STATE(7513)] = 312925, - [SMALL_STATE(7514)] = 312945, - [SMALL_STATE(7515)] = 312965, - [SMALL_STATE(7516)] = 312983, - [SMALL_STATE(7517)] = 313003, - [SMALL_STATE(7518)] = 313023, - [SMALL_STATE(7519)] = 313043, - [SMALL_STATE(7520)] = 313063, - [SMALL_STATE(7521)] = 313083, - [SMALL_STATE(7522)] = 313103, - [SMALL_STATE(7523)] = 313123, - [SMALL_STATE(7524)] = 313143, - [SMALL_STATE(7525)] = 313163, - [SMALL_STATE(7526)] = 313181, - [SMALL_STATE(7527)] = 313201, - [SMALL_STATE(7528)] = 313221, - [SMALL_STATE(7529)] = 313241, - [SMALL_STATE(7530)] = 313261, - [SMALL_STATE(7531)] = 313281, - [SMALL_STATE(7532)] = 313301, - [SMALL_STATE(7533)] = 313319, - [SMALL_STATE(7534)] = 313339, - [SMALL_STATE(7535)] = 313359, - [SMALL_STATE(7536)] = 313379, - [SMALL_STATE(7537)] = 313399, - [SMALL_STATE(7538)] = 313419, - [SMALL_STATE(7539)] = 313439, - [SMALL_STATE(7540)] = 313459, - [SMALL_STATE(7541)] = 313479, - [SMALL_STATE(7542)] = 313499, - [SMALL_STATE(7543)] = 313519, - [SMALL_STATE(7544)] = 313539, - [SMALL_STATE(7545)] = 313559, - [SMALL_STATE(7546)] = 313579, - [SMALL_STATE(7547)] = 313599, - [SMALL_STATE(7548)] = 313619, - [SMALL_STATE(7549)] = 313639, - [SMALL_STATE(7550)] = 313659, - [SMALL_STATE(7551)] = 313679, - [SMALL_STATE(7552)] = 313699, - [SMALL_STATE(7553)] = 313719, - [SMALL_STATE(7554)] = 313739, - [SMALL_STATE(7555)] = 313759, - [SMALL_STATE(7556)] = 313779, - [SMALL_STATE(7557)] = 313797, - [SMALL_STATE(7558)] = 313815, - [SMALL_STATE(7559)] = 313835, - [SMALL_STATE(7560)] = 313855, - [SMALL_STATE(7561)] = 313875, - [SMALL_STATE(7562)] = 313895, - [SMALL_STATE(7563)] = 313915, - [SMALL_STATE(7564)] = 313935, - [SMALL_STATE(7565)] = 313955, - [SMALL_STATE(7566)] = 313975, - [SMALL_STATE(7567)] = 313995, - [SMALL_STATE(7568)] = 314015, - [SMALL_STATE(7569)] = 314035, - [SMALL_STATE(7570)] = 314055, - [SMALL_STATE(7571)] = 314075, - [SMALL_STATE(7572)] = 314095, - [SMALL_STATE(7573)] = 314115, - [SMALL_STATE(7574)] = 314135, - [SMALL_STATE(7575)] = 314155, - [SMALL_STATE(7576)] = 314175, - [SMALL_STATE(7577)] = 314193, - [SMALL_STATE(7578)] = 314213, - [SMALL_STATE(7579)] = 314233, - [SMALL_STATE(7580)] = 314253, - [SMALL_STATE(7581)] = 314273, - [SMALL_STATE(7582)] = 314293, - [SMALL_STATE(7583)] = 314313, - [SMALL_STATE(7584)] = 314333, - [SMALL_STATE(7585)] = 314353, - [SMALL_STATE(7586)] = 314373, - [SMALL_STATE(7587)] = 314393, - [SMALL_STATE(7588)] = 314413, - [SMALL_STATE(7589)] = 314433, - [SMALL_STATE(7590)] = 314451, - [SMALL_STATE(7591)] = 314471, - [SMALL_STATE(7592)] = 314491, - [SMALL_STATE(7593)] = 314511, - [SMALL_STATE(7594)] = 314531, - [SMALL_STATE(7595)] = 314549, - [SMALL_STATE(7596)] = 314569, - [SMALL_STATE(7597)] = 314589, - [SMALL_STATE(7598)] = 314609, - [SMALL_STATE(7599)] = 314629, - [SMALL_STATE(7600)] = 314647, - [SMALL_STATE(7601)] = 314667, - [SMALL_STATE(7602)] = 314687, - [SMALL_STATE(7603)] = 314705, - [SMALL_STATE(7604)] = 314723, - [SMALL_STATE(7605)] = 314743, - [SMALL_STATE(7606)] = 314761, - [SMALL_STATE(7607)] = 314781, - [SMALL_STATE(7608)] = 314801, - [SMALL_STATE(7609)] = 314821, - [SMALL_STATE(7610)] = 314841, - [SMALL_STATE(7611)] = 314861, - [SMALL_STATE(7612)] = 314881, - [SMALL_STATE(7613)] = 314901, - [SMALL_STATE(7614)] = 314921, - [SMALL_STATE(7615)] = 314937, - [SMALL_STATE(7616)] = 314957, - [SMALL_STATE(7617)] = 314977, - [SMALL_STATE(7618)] = 314997, - [SMALL_STATE(7619)] = 315017, - [SMALL_STATE(7620)] = 315037, - [SMALL_STATE(7621)] = 315057, - [SMALL_STATE(7622)] = 315077, - [SMALL_STATE(7623)] = 315097, - [SMALL_STATE(7624)] = 315117, - [SMALL_STATE(7625)] = 315137, - [SMALL_STATE(7626)] = 315157, - [SMALL_STATE(7627)] = 315177, - [SMALL_STATE(7628)] = 315197, - [SMALL_STATE(7629)] = 315215, - [SMALL_STATE(7630)] = 315235, - [SMALL_STATE(7631)] = 315255, - [SMALL_STATE(7632)] = 315273, - [SMALL_STATE(7633)] = 315293, - [SMALL_STATE(7634)] = 315309, - [SMALL_STATE(7635)] = 315329, - [SMALL_STATE(7636)] = 315349, - [SMALL_STATE(7637)] = 315369, - [SMALL_STATE(7638)] = 315389, - [SMALL_STATE(7639)] = 315405, - [SMALL_STATE(7640)] = 315425, - [SMALL_STATE(7641)] = 315445, - [SMALL_STATE(7642)] = 315465, - [SMALL_STATE(7643)] = 315485, - [SMALL_STATE(7644)] = 315503, - [SMALL_STATE(7645)] = 315523, - [SMALL_STATE(7646)] = 315539, - [SMALL_STATE(7647)] = 315559, - [SMALL_STATE(7648)] = 315579, - [SMALL_STATE(7649)] = 315599, - [SMALL_STATE(7650)] = 315619, - [SMALL_STATE(7651)] = 315639, - [SMALL_STATE(7652)] = 315659, - [SMALL_STATE(7653)] = 315679, - [SMALL_STATE(7654)] = 315699, - [SMALL_STATE(7655)] = 315719, - [SMALL_STATE(7656)] = 315737, - [SMALL_STATE(7657)] = 315757, - [SMALL_STATE(7658)] = 315777, - [SMALL_STATE(7659)] = 315795, - [SMALL_STATE(7660)] = 315815, - [SMALL_STATE(7661)] = 315835, - [SMALL_STATE(7662)] = 315855, - [SMALL_STATE(7663)] = 315875, - [SMALL_STATE(7664)] = 315895, - [SMALL_STATE(7665)] = 315915, - [SMALL_STATE(7666)] = 315935, - [SMALL_STATE(7667)] = 315955, - [SMALL_STATE(7668)] = 315975, - [SMALL_STATE(7669)] = 315995, - [SMALL_STATE(7670)] = 316015, - [SMALL_STATE(7671)] = 316035, - [SMALL_STATE(7672)] = 316055, - [SMALL_STATE(7673)] = 316075, - [SMALL_STATE(7674)] = 316095, - [SMALL_STATE(7675)] = 316113, - [SMALL_STATE(7676)] = 316133, - [SMALL_STATE(7677)] = 316153, - [SMALL_STATE(7678)] = 316173, - [SMALL_STATE(7679)] = 316191, - [SMALL_STATE(7680)] = 316209, - [SMALL_STATE(7681)] = 316229, - [SMALL_STATE(7682)] = 316249, - [SMALL_STATE(7683)] = 316269, - [SMALL_STATE(7684)] = 316289, - [SMALL_STATE(7685)] = 316307, - [SMALL_STATE(7686)] = 316327, - [SMALL_STATE(7687)] = 316347, - [SMALL_STATE(7688)] = 316367, - [SMALL_STATE(7689)] = 316385, - [SMALL_STATE(7690)] = 316405, - [SMALL_STATE(7691)] = 316425, - [SMALL_STATE(7692)] = 316443, - [SMALL_STATE(7693)] = 316463, - [SMALL_STATE(7694)] = 316483, - [SMALL_STATE(7695)] = 316499, - [SMALL_STATE(7696)] = 316519, - [SMALL_STATE(7697)] = 316537, - [SMALL_STATE(7698)] = 316555, - [SMALL_STATE(7699)] = 316575, - [SMALL_STATE(7700)] = 316595, - [SMALL_STATE(7701)] = 316615, - [SMALL_STATE(7702)] = 316635, - [SMALL_STATE(7703)] = 316653, - [SMALL_STATE(7704)] = 316673, - [SMALL_STATE(7705)] = 316693, - [SMALL_STATE(7706)] = 316711, - [SMALL_STATE(7707)] = 316731, - [SMALL_STATE(7708)] = 316751, - [SMALL_STATE(7709)] = 316769, - [SMALL_STATE(7710)] = 316789, - [SMALL_STATE(7711)] = 316807, - [SMALL_STATE(7712)] = 316827, - [SMALL_STATE(7713)] = 316847, - [SMALL_STATE(7714)] = 316867, - [SMALL_STATE(7715)] = 316887, - [SMALL_STATE(7716)] = 316907, - [SMALL_STATE(7717)] = 316927, - [SMALL_STATE(7718)] = 316947, - [SMALL_STATE(7719)] = 316967, - [SMALL_STATE(7720)] = 316987, - [SMALL_STATE(7721)] = 317007, - [SMALL_STATE(7722)] = 317025, - [SMALL_STATE(7723)] = 317043, - [SMALL_STATE(7724)] = 317061, - [SMALL_STATE(7725)] = 317081, - [SMALL_STATE(7726)] = 317101, - [SMALL_STATE(7727)] = 317119, - [SMALL_STATE(7728)] = 317139, - [SMALL_STATE(7729)] = 317159, - [SMALL_STATE(7730)] = 317179, - [SMALL_STATE(7731)] = 317199, - [SMALL_STATE(7732)] = 317219, - [SMALL_STATE(7733)] = 317239, - [SMALL_STATE(7734)] = 317259, - [SMALL_STATE(7735)] = 317279, - [SMALL_STATE(7736)] = 317297, - [SMALL_STATE(7737)] = 317317, - [SMALL_STATE(7738)] = 317335, - [SMALL_STATE(7739)] = 317355, - [SMALL_STATE(7740)] = 317375, - [SMALL_STATE(7741)] = 317395, - [SMALL_STATE(7742)] = 317415, - [SMALL_STATE(7743)] = 317435, - [SMALL_STATE(7744)] = 317455, - [SMALL_STATE(7745)] = 317475, - [SMALL_STATE(7746)] = 317493, - [SMALL_STATE(7747)] = 317513, - [SMALL_STATE(7748)] = 317531, - [SMALL_STATE(7749)] = 317551, - [SMALL_STATE(7750)] = 317571, - [SMALL_STATE(7751)] = 317591, - [SMALL_STATE(7752)] = 317611, - [SMALL_STATE(7753)] = 317629, - [SMALL_STATE(7754)] = 317649, - [SMALL_STATE(7755)] = 317669, - [SMALL_STATE(7756)] = 317687, - [SMALL_STATE(7757)] = 317707, - [SMALL_STATE(7758)] = 317725, - [SMALL_STATE(7759)] = 317745, - [SMALL_STATE(7760)] = 317765, - [SMALL_STATE(7761)] = 317783, - [SMALL_STATE(7762)] = 317803, - [SMALL_STATE(7763)] = 317823, - [SMALL_STATE(7764)] = 317843, - [SMALL_STATE(7765)] = 317863, - [SMALL_STATE(7766)] = 317881, - [SMALL_STATE(7767)] = 317901, - [SMALL_STATE(7768)] = 317921, - [SMALL_STATE(7769)] = 317941, - [SMALL_STATE(7770)] = 317961, - [SMALL_STATE(7771)] = 317979, - [SMALL_STATE(7772)] = 317997, - [SMALL_STATE(7773)] = 318017, - [SMALL_STATE(7774)] = 318037, - [SMALL_STATE(7775)] = 318055, - [SMALL_STATE(7776)] = 318073, - [SMALL_STATE(7777)] = 318093, - [SMALL_STATE(7778)] = 318113, - [SMALL_STATE(7779)] = 318133, - [SMALL_STATE(7780)] = 318151, - [SMALL_STATE(7781)] = 318169, - [SMALL_STATE(7782)] = 318189, - [SMALL_STATE(7783)] = 318207, - [SMALL_STATE(7784)] = 318227, - [SMALL_STATE(7785)] = 318247, - [SMALL_STATE(7786)] = 318267, - [SMALL_STATE(7787)] = 318287, - [SMALL_STATE(7788)] = 318307, - [SMALL_STATE(7789)] = 318327, - [SMALL_STATE(7790)] = 318347, - [SMALL_STATE(7791)] = 318367, - [SMALL_STATE(7792)] = 318387, - [SMALL_STATE(7793)] = 318405, - [SMALL_STATE(7794)] = 318425, - [SMALL_STATE(7795)] = 318445, - [SMALL_STATE(7796)] = 318463, - [SMALL_STATE(7797)] = 318483, - [SMALL_STATE(7798)] = 318503, - [SMALL_STATE(7799)] = 318523, - [SMALL_STATE(7800)] = 318543, - [SMALL_STATE(7801)] = 318563, - [SMALL_STATE(7802)] = 318581, - [SMALL_STATE(7803)] = 318601, - [SMALL_STATE(7804)] = 318621, - [SMALL_STATE(7805)] = 318639, - [SMALL_STATE(7806)] = 318659, - [SMALL_STATE(7807)] = 318679, - [SMALL_STATE(7808)] = 318699, - [SMALL_STATE(7809)] = 318719, - [SMALL_STATE(7810)] = 318739, - [SMALL_STATE(7811)] = 318755, - [SMALL_STATE(7812)] = 318775, - [SMALL_STATE(7813)] = 318795, - [SMALL_STATE(7814)] = 318815, - [SMALL_STATE(7815)] = 318835, - [SMALL_STATE(7816)] = 318853, - [SMALL_STATE(7817)] = 318873, - [SMALL_STATE(7818)] = 318891, - [SMALL_STATE(7819)] = 318911, - [SMALL_STATE(7820)] = 318931, - [SMALL_STATE(7821)] = 318951, - [SMALL_STATE(7822)] = 318971, - [SMALL_STATE(7823)] = 318991, - [SMALL_STATE(7824)] = 319011, - [SMALL_STATE(7825)] = 319029, - [SMALL_STATE(7826)] = 319049, - [SMALL_STATE(7827)] = 319069, - [SMALL_STATE(7828)] = 319089, - [SMALL_STATE(7829)] = 319109, - [SMALL_STATE(7830)] = 319127, - [SMALL_STATE(7831)] = 319144, - [SMALL_STATE(7832)] = 319161, - [SMALL_STATE(7833)] = 319176, - [SMALL_STATE(7834)] = 319193, - [SMALL_STATE(7835)] = 319210, - [SMALL_STATE(7836)] = 319227, - [SMALL_STATE(7837)] = 319244, - [SMALL_STATE(7838)] = 319261, - [SMALL_STATE(7839)] = 319278, - [SMALL_STATE(7840)] = 319295, - [SMALL_STATE(7841)] = 319312, - [SMALL_STATE(7842)] = 319329, - [SMALL_STATE(7843)] = 319346, - [SMALL_STATE(7844)] = 319361, - [SMALL_STATE(7845)] = 319378, - [SMALL_STATE(7846)] = 319395, - [SMALL_STATE(7847)] = 319412, - [SMALL_STATE(7848)] = 319429, - [SMALL_STATE(7849)] = 319446, - [SMALL_STATE(7850)] = 319463, - [SMALL_STATE(7851)] = 319478, - [SMALL_STATE(7852)] = 319493, - [SMALL_STATE(7853)] = 319510, - [SMALL_STATE(7854)] = 319527, - [SMALL_STATE(7855)] = 319544, - [SMALL_STATE(7856)] = 319561, - [SMALL_STATE(7857)] = 319578, - [SMALL_STATE(7858)] = 319593, - [SMALL_STATE(7859)] = 319610, - [SMALL_STATE(7860)] = 319627, - [SMALL_STATE(7861)] = 319644, - [SMALL_STATE(7862)] = 319661, - [SMALL_STATE(7863)] = 319678, - [SMALL_STATE(7864)] = 319695, - [SMALL_STATE(7865)] = 319712, - [SMALL_STATE(7866)] = 319729, - [SMALL_STATE(7867)] = 319746, - [SMALL_STATE(7868)] = 319763, - [SMALL_STATE(7869)] = 319780, - [SMALL_STATE(7870)] = 319797, - [SMALL_STATE(7871)] = 319814, - [SMALL_STATE(7872)] = 319831, - [SMALL_STATE(7873)] = 319848, - [SMALL_STATE(7874)] = 319865, - [SMALL_STATE(7875)] = 319882, - [SMALL_STATE(7876)] = 319899, - [SMALL_STATE(7877)] = 319916, - [SMALL_STATE(7878)] = 319933, - [SMALL_STATE(7879)] = 319950, - [SMALL_STATE(7880)] = 319965, - [SMALL_STATE(7881)] = 319982, - [SMALL_STATE(7882)] = 319997, - [SMALL_STATE(7883)] = 320014, - [SMALL_STATE(7884)] = 320029, - [SMALL_STATE(7885)] = 320046, - [SMALL_STATE(7886)] = 320063, - [SMALL_STATE(7887)] = 320080, - [SMALL_STATE(7888)] = 320097, - [SMALL_STATE(7889)] = 320114, - [SMALL_STATE(7890)] = 320131, - [SMALL_STATE(7891)] = 320148, - [SMALL_STATE(7892)] = 320163, - [SMALL_STATE(7893)] = 320178, - [SMALL_STATE(7894)] = 320193, - [SMALL_STATE(7895)] = 320210, - [SMALL_STATE(7896)] = 320225, - [SMALL_STATE(7897)] = 320242, - [SMALL_STATE(7898)] = 320259, - [SMALL_STATE(7899)] = 320276, - [SMALL_STATE(7900)] = 320293, - [SMALL_STATE(7901)] = 320310, - [SMALL_STATE(7902)] = 320327, - [SMALL_STATE(7903)] = 320344, - [SMALL_STATE(7904)] = 320361, - [SMALL_STATE(7905)] = 320378, - [SMALL_STATE(7906)] = 320395, - [SMALL_STATE(7907)] = 320412, - [SMALL_STATE(7908)] = 320429, - [SMALL_STATE(7909)] = 320446, - [SMALL_STATE(7910)] = 320461, - [SMALL_STATE(7911)] = 320478, - [SMALL_STATE(7912)] = 320495, - [SMALL_STATE(7913)] = 320512, - [SMALL_STATE(7914)] = 320529, - [SMALL_STATE(7915)] = 320546, - [SMALL_STATE(7916)] = 320563, - [SMALL_STATE(7917)] = 320578, - [SMALL_STATE(7918)] = 320595, - [SMALL_STATE(7919)] = 320612, - [SMALL_STATE(7920)] = 320629, - [SMALL_STATE(7921)] = 320646, - [SMALL_STATE(7922)] = 320663, - [SMALL_STATE(7923)] = 320678, - [SMALL_STATE(7924)] = 320695, - [SMALL_STATE(7925)] = 320712, - [SMALL_STATE(7926)] = 320729, - [SMALL_STATE(7927)] = 320744, - [SMALL_STATE(7928)] = 320761, - [SMALL_STATE(7929)] = 320778, - [SMALL_STATE(7930)] = 320795, - [SMALL_STATE(7931)] = 320812, - [SMALL_STATE(7932)] = 320829, - [SMALL_STATE(7933)] = 320846, - [SMALL_STATE(7934)] = 320861, - [SMALL_STATE(7935)] = 320878, - [SMALL_STATE(7936)] = 320895, - [SMALL_STATE(7937)] = 320912, - [SMALL_STATE(7938)] = 320929, - [SMALL_STATE(7939)] = 320944, - [SMALL_STATE(7940)] = 320959, - [SMALL_STATE(7941)] = 320976, - [SMALL_STATE(7942)] = 320993, - [SMALL_STATE(7943)] = 321010, - [SMALL_STATE(7944)] = 321027, - [SMALL_STATE(7945)] = 321044, - [SMALL_STATE(7946)] = 321061, - [SMALL_STATE(7947)] = 321078, - [SMALL_STATE(7948)] = 321095, - [SMALL_STATE(7949)] = 321112, - [SMALL_STATE(7950)] = 321129, - [SMALL_STATE(7951)] = 321144, - [SMALL_STATE(7952)] = 321159, - [SMALL_STATE(7953)] = 321174, - [SMALL_STATE(7954)] = 321191, - [SMALL_STATE(7955)] = 321206, - [SMALL_STATE(7956)] = 321223, - [SMALL_STATE(7957)] = 321240, - [SMALL_STATE(7958)] = 321257, - [SMALL_STATE(7959)] = 321274, - [SMALL_STATE(7960)] = 321291, - [SMALL_STATE(7961)] = 321308, - [SMALL_STATE(7962)] = 321325, - [SMALL_STATE(7963)] = 321342, - [SMALL_STATE(7964)] = 321359, - [SMALL_STATE(7965)] = 321374, - [SMALL_STATE(7966)] = 321391, - [SMALL_STATE(7967)] = 321408, - [SMALL_STATE(7968)] = 321425, - [SMALL_STATE(7969)] = 321442, - [SMALL_STATE(7970)] = 321459, - [SMALL_STATE(7971)] = 321476, - [SMALL_STATE(7972)] = 321493, - [SMALL_STATE(7973)] = 321510, - [SMALL_STATE(7974)] = 321527, - [SMALL_STATE(7975)] = 321544, - [SMALL_STATE(7976)] = 321559, - [SMALL_STATE(7977)] = 321576, - [SMALL_STATE(7978)] = 321593, - [SMALL_STATE(7979)] = 321610, - [SMALL_STATE(7980)] = 321627, - [SMALL_STATE(7981)] = 321644, - [SMALL_STATE(7982)] = 321661, - [SMALL_STATE(7983)] = 321678, - [SMALL_STATE(7984)] = 321695, - [SMALL_STATE(7985)] = 321712, - [SMALL_STATE(7986)] = 321729, - [SMALL_STATE(7987)] = 321744, - [SMALL_STATE(7988)] = 321761, - [SMALL_STATE(7989)] = 321778, - [SMALL_STATE(7990)] = 321795, - [SMALL_STATE(7991)] = 321812, - [SMALL_STATE(7992)] = 321829, - [SMALL_STATE(7993)] = 321846, - [SMALL_STATE(7994)] = 321861, - [SMALL_STATE(7995)] = 321878, - [SMALL_STATE(7996)] = 321895, - [SMALL_STATE(7997)] = 321910, - [SMALL_STATE(7998)] = 321927, - [SMALL_STATE(7999)] = 321944, - [SMALL_STATE(8000)] = 321961, - [SMALL_STATE(8001)] = 321978, - [SMALL_STATE(8002)] = 321995, - [SMALL_STATE(8003)] = 322012, - [SMALL_STATE(8004)] = 322029, - [SMALL_STATE(8005)] = 322046, - [SMALL_STATE(8006)] = 322063, - [SMALL_STATE(8007)] = 322080, - [SMALL_STATE(8008)] = 322097, - [SMALL_STATE(8009)] = 322114, - [SMALL_STATE(8010)] = 322131, - [SMALL_STATE(8011)] = 322148, - [SMALL_STATE(8012)] = 322165, - [SMALL_STATE(8013)] = 322182, - [SMALL_STATE(8014)] = 322199, - [SMALL_STATE(8015)] = 322216, - [SMALL_STATE(8016)] = 322233, - [SMALL_STATE(8017)] = 322250, - [SMALL_STATE(8018)] = 322267, - [SMALL_STATE(8019)] = 322282, - [SMALL_STATE(8020)] = 322299, - [SMALL_STATE(8021)] = 322316, - [SMALL_STATE(8022)] = 322333, - [SMALL_STATE(8023)] = 322350, - [SMALL_STATE(8024)] = 322367, - [SMALL_STATE(8025)] = 322384, - [SMALL_STATE(8026)] = 322401, - [SMALL_STATE(8027)] = 322418, - [SMALL_STATE(8028)] = 322433, - [SMALL_STATE(8029)] = 322450, - [SMALL_STATE(8030)] = 322465, - [SMALL_STATE(8031)] = 322482, - [SMALL_STATE(8032)] = 322499, - [SMALL_STATE(8033)] = 322514, - [SMALL_STATE(8034)] = 322531, - [SMALL_STATE(8035)] = 322548, - [SMALL_STATE(8036)] = 322565, - [SMALL_STATE(8037)] = 322582, - [SMALL_STATE(8038)] = 322599, - [SMALL_STATE(8039)] = 322616, - [SMALL_STATE(8040)] = 322633, - [SMALL_STATE(8041)] = 322650, - [SMALL_STATE(8042)] = 322667, - [SMALL_STATE(8043)] = 322684, - [SMALL_STATE(8044)] = 322701, - [SMALL_STATE(8045)] = 322718, - [SMALL_STATE(8046)] = 322735, - [SMALL_STATE(8047)] = 322752, - [SMALL_STATE(8048)] = 322767, - [SMALL_STATE(8049)] = 322784, - [SMALL_STATE(8050)] = 322801, - [SMALL_STATE(8051)] = 322818, - [SMALL_STATE(8052)] = 322833, - [SMALL_STATE(8053)] = 322848, - [SMALL_STATE(8054)] = 322865, - [SMALL_STATE(8055)] = 322880, - [SMALL_STATE(8056)] = 322895, - [SMALL_STATE(8057)] = 322912, - [SMALL_STATE(8058)] = 322929, - [SMALL_STATE(8059)] = 322946, - [SMALL_STATE(8060)] = 322963, - [SMALL_STATE(8061)] = 322980, - [SMALL_STATE(8062)] = 322997, - [SMALL_STATE(8063)] = 323014, - [SMALL_STATE(8064)] = 323029, - [SMALL_STATE(8065)] = 323046, - [SMALL_STATE(8066)] = 323063, - [SMALL_STATE(8067)] = 323080, - [SMALL_STATE(8068)] = 323097, - [SMALL_STATE(8069)] = 323114, - [SMALL_STATE(8070)] = 323131, - [SMALL_STATE(8071)] = 323148, - [SMALL_STATE(8072)] = 323165, - [SMALL_STATE(8073)] = 323182, - [SMALL_STATE(8074)] = 323197, - [SMALL_STATE(8075)] = 323214, - [SMALL_STATE(8076)] = 323231, - [SMALL_STATE(8077)] = 323248, - [SMALL_STATE(8078)] = 323265, - [SMALL_STATE(8079)] = 323282, - [SMALL_STATE(8080)] = 323299, - [SMALL_STATE(8081)] = 323316, - [SMALL_STATE(8082)] = 323333, - [SMALL_STATE(8083)] = 323350, - [SMALL_STATE(8084)] = 323367, - [SMALL_STATE(8085)] = 323384, - [SMALL_STATE(8086)] = 323401, - [SMALL_STATE(8087)] = 323416, - [SMALL_STATE(8088)] = 323433, - [SMALL_STATE(8089)] = 323448, - [SMALL_STATE(8090)] = 323465, - [SMALL_STATE(8091)] = 323482, - [SMALL_STATE(8092)] = 323499, - [SMALL_STATE(8093)] = 323516, - [SMALL_STATE(8094)] = 323531, - [SMALL_STATE(8095)] = 323548, - [SMALL_STATE(8096)] = 323565, - [SMALL_STATE(8097)] = 323582, - [SMALL_STATE(8098)] = 323599, - [SMALL_STATE(8099)] = 323616, - [SMALL_STATE(8100)] = 323633, - [SMALL_STATE(8101)] = 323650, - [SMALL_STATE(8102)] = 323667, - [SMALL_STATE(8103)] = 323684, - [SMALL_STATE(8104)] = 323701, - [SMALL_STATE(8105)] = 323718, - [SMALL_STATE(8106)] = 323735, - [SMALL_STATE(8107)] = 323750, - [SMALL_STATE(8108)] = 323767, - [SMALL_STATE(8109)] = 323784, - [SMALL_STATE(8110)] = 323801, - [SMALL_STATE(8111)] = 323818, - [SMALL_STATE(8112)] = 323833, - [SMALL_STATE(8113)] = 323848, - [SMALL_STATE(8114)] = 323863, - [SMALL_STATE(8115)] = 323880, - [SMALL_STATE(8116)] = 323897, - [SMALL_STATE(8117)] = 323914, - [SMALL_STATE(8118)] = 323931, - [SMALL_STATE(8119)] = 323948, - [SMALL_STATE(8120)] = 323965, - [SMALL_STATE(8121)] = 323982, - [SMALL_STATE(8122)] = 323999, - [SMALL_STATE(8123)] = 324014, - [SMALL_STATE(8124)] = 324031, - [SMALL_STATE(8125)] = 324048, - [SMALL_STATE(8126)] = 324065, - [SMALL_STATE(8127)] = 324082, - [SMALL_STATE(8128)] = 324099, - [SMALL_STATE(8129)] = 324116, - [SMALL_STATE(8130)] = 324133, - [SMALL_STATE(8131)] = 324150, - [SMALL_STATE(8132)] = 324167, - [SMALL_STATE(8133)] = 324184, - [SMALL_STATE(8134)] = 324201, - [SMALL_STATE(8135)] = 324218, - [SMALL_STATE(8136)] = 324235, - [SMALL_STATE(8137)] = 324252, - [SMALL_STATE(8138)] = 324269, - [SMALL_STATE(8139)] = 324286, - [SMALL_STATE(8140)] = 324303, - [SMALL_STATE(8141)] = 324318, - [SMALL_STATE(8142)] = 324335, - [SMALL_STATE(8143)] = 324352, - [SMALL_STATE(8144)] = 324369, - [SMALL_STATE(8145)] = 324386, - [SMALL_STATE(8146)] = 324403, - [SMALL_STATE(8147)] = 324420, - [SMALL_STATE(8148)] = 324437, - [SMALL_STATE(8149)] = 324454, - [SMALL_STATE(8150)] = 324471, - [SMALL_STATE(8151)] = 324486, - [SMALL_STATE(8152)] = 324503, - [SMALL_STATE(8153)] = 324518, - [SMALL_STATE(8154)] = 324535, - [SMALL_STATE(8155)] = 324552, - [SMALL_STATE(8156)] = 324569, - [SMALL_STATE(8157)] = 324586, - [SMALL_STATE(8158)] = 324601, - [SMALL_STATE(8159)] = 324618, - [SMALL_STATE(8160)] = 324635, - [SMALL_STATE(8161)] = 324652, - [SMALL_STATE(8162)] = 324669, - [SMALL_STATE(8163)] = 324684, - [SMALL_STATE(8164)] = 324699, - [SMALL_STATE(8165)] = 324716, - [SMALL_STATE(8166)] = 324733, - [SMALL_STATE(8167)] = 324748, - [SMALL_STATE(8168)] = 324765, - [SMALL_STATE(8169)] = 324782, - [SMALL_STATE(8170)] = 324797, - [SMALL_STATE(8171)] = 324814, - [SMALL_STATE(8172)] = 324831, - [SMALL_STATE(8173)] = 324848, - [SMALL_STATE(8174)] = 324863, - [SMALL_STATE(8175)] = 324880, - [SMALL_STATE(8176)] = 324897, - [SMALL_STATE(8177)] = 324912, - [SMALL_STATE(8178)] = 324927, - [SMALL_STATE(8179)] = 324944, - [SMALL_STATE(8180)] = 324961, - [SMALL_STATE(8181)] = 324978, - [SMALL_STATE(8182)] = 324995, - [SMALL_STATE(8183)] = 325012, - [SMALL_STATE(8184)] = 325029, - [SMALL_STATE(8185)] = 325046, - [SMALL_STATE(8186)] = 325063, - [SMALL_STATE(8187)] = 325078, - [SMALL_STATE(8188)] = 325095, - [SMALL_STATE(8189)] = 325112, - [SMALL_STATE(8190)] = 325127, - [SMALL_STATE(8191)] = 325144, - [SMALL_STATE(8192)] = 325161, - [SMALL_STATE(8193)] = 325178, - [SMALL_STATE(8194)] = 325195, - [SMALL_STATE(8195)] = 325212, - [SMALL_STATE(8196)] = 325229, - [SMALL_STATE(8197)] = 325246, - [SMALL_STATE(8198)] = 325263, - [SMALL_STATE(8199)] = 325280, - [SMALL_STATE(8200)] = 325297, - [SMALL_STATE(8201)] = 325314, - [SMALL_STATE(8202)] = 325329, - [SMALL_STATE(8203)] = 325344, - [SMALL_STATE(8204)] = 325361, - [SMALL_STATE(8205)] = 325378, - [SMALL_STATE(8206)] = 325395, - [SMALL_STATE(8207)] = 325412, - [SMALL_STATE(8208)] = 325427, - [SMALL_STATE(8209)] = 325444, - [SMALL_STATE(8210)] = 325461, - [SMALL_STATE(8211)] = 325478, - [SMALL_STATE(8212)] = 325495, - [SMALL_STATE(8213)] = 325512, - [SMALL_STATE(8214)] = 325529, - [SMALL_STATE(8215)] = 325544, - [SMALL_STATE(8216)] = 325561, - [SMALL_STATE(8217)] = 325578, - [SMALL_STATE(8218)] = 325595, - [SMALL_STATE(8219)] = 325610, - [SMALL_STATE(8220)] = 325627, - [SMALL_STATE(8221)] = 325644, - [SMALL_STATE(8222)] = 325661, - [SMALL_STATE(8223)] = 325678, - [SMALL_STATE(8224)] = 325693, - [SMALL_STATE(8225)] = 325708, - [SMALL_STATE(8226)] = 325725, - [SMALL_STATE(8227)] = 325742, - [SMALL_STATE(8228)] = 325759, - [SMALL_STATE(8229)] = 325776, - [SMALL_STATE(8230)] = 325793, - [SMALL_STATE(8231)] = 325810, - [SMALL_STATE(8232)] = 325827, - [SMALL_STATE(8233)] = 325844, - [SMALL_STATE(8234)] = 325861, - [SMALL_STATE(8235)] = 325878, - [SMALL_STATE(8236)] = 325895, - [SMALL_STATE(8237)] = 325912, - [SMALL_STATE(8238)] = 325927, - [SMALL_STATE(8239)] = 325944, - [SMALL_STATE(8240)] = 325961, - [SMALL_STATE(8241)] = 325978, - [SMALL_STATE(8242)] = 325995, - [SMALL_STATE(8243)] = 326012, - [SMALL_STATE(8244)] = 326029, - [SMALL_STATE(8245)] = 326046, - [SMALL_STATE(8246)] = 326063, - [SMALL_STATE(8247)] = 326080, - [SMALL_STATE(8248)] = 326097, - [SMALL_STATE(8249)] = 326114, - [SMALL_STATE(8250)] = 326131, - [SMALL_STATE(8251)] = 326148, - [SMALL_STATE(8252)] = 326165, - [SMALL_STATE(8253)] = 326180, - [SMALL_STATE(8254)] = 326197, - [SMALL_STATE(8255)] = 326214, - [SMALL_STATE(8256)] = 326231, - [SMALL_STATE(8257)] = 326248, - [SMALL_STATE(8258)] = 326265, - [SMALL_STATE(8259)] = 326280, - [SMALL_STATE(8260)] = 326297, - [SMALL_STATE(8261)] = 326314, - [SMALL_STATE(8262)] = 326331, - [SMALL_STATE(8263)] = 326348, - [SMALL_STATE(8264)] = 326365, - [SMALL_STATE(8265)] = 326382, - [SMALL_STATE(8266)] = 326399, - [SMALL_STATE(8267)] = 326416, - [SMALL_STATE(8268)] = 326433, - [SMALL_STATE(8269)] = 326450, - [SMALL_STATE(8270)] = 326467, - [SMALL_STATE(8271)] = 326484, - [SMALL_STATE(8272)] = 326501, - [SMALL_STATE(8273)] = 326518, - [SMALL_STATE(8274)] = 326533, - [SMALL_STATE(8275)] = 326550, - [SMALL_STATE(8276)] = 326567, - [SMALL_STATE(8277)] = 326582, - [SMALL_STATE(8278)] = 326599, - [SMALL_STATE(8279)] = 326616, - [SMALL_STATE(8280)] = 326633, - [SMALL_STATE(8281)] = 326650, - [SMALL_STATE(8282)] = 326667, - [SMALL_STATE(8283)] = 326684, - [SMALL_STATE(8284)] = 326701, - [SMALL_STATE(8285)] = 326718, - [SMALL_STATE(8286)] = 326735, - [SMALL_STATE(8287)] = 326752, - [SMALL_STATE(8288)] = 326769, - [SMALL_STATE(8289)] = 326784, - [SMALL_STATE(8290)] = 326801, - [SMALL_STATE(8291)] = 326818, - [SMALL_STATE(8292)] = 326835, - [SMALL_STATE(8293)] = 326852, - [SMALL_STATE(8294)] = 326869, - [SMALL_STATE(8295)] = 326884, - [SMALL_STATE(8296)] = 326901, - [SMALL_STATE(8297)] = 326918, - [SMALL_STATE(8298)] = 326933, - [SMALL_STATE(8299)] = 326948, - [SMALL_STATE(8300)] = 326965, - [SMALL_STATE(8301)] = 326982, - [SMALL_STATE(8302)] = 326997, - [SMALL_STATE(8303)] = 327012, - [SMALL_STATE(8304)] = 327029, - [SMALL_STATE(8305)] = 327046, - [SMALL_STATE(8306)] = 327063, - [SMALL_STATE(8307)] = 327080, - [SMALL_STATE(8308)] = 327095, - [SMALL_STATE(8309)] = 327110, - [SMALL_STATE(8310)] = 327127, - [SMALL_STATE(8311)] = 327142, - [SMALL_STATE(8312)] = 327159, - [SMALL_STATE(8313)] = 327176, - [SMALL_STATE(8314)] = 327191, - [SMALL_STATE(8315)] = 327208, - [SMALL_STATE(8316)] = 327222, - [SMALL_STATE(8317)] = 327236, - [SMALL_STATE(8318)] = 327250, - [SMALL_STATE(8319)] = 327264, - [SMALL_STATE(8320)] = 327278, - [SMALL_STATE(8321)] = 327292, - [SMALL_STATE(8322)] = 327306, - [SMALL_STATE(8323)] = 327320, - [SMALL_STATE(8324)] = 327334, - [SMALL_STATE(8325)] = 327348, - [SMALL_STATE(8326)] = 327362, - [SMALL_STATE(8327)] = 327376, - [SMALL_STATE(8328)] = 327390, - [SMALL_STATE(8329)] = 327404, - [SMALL_STATE(8330)] = 327418, - [SMALL_STATE(8331)] = 327432, - [SMALL_STATE(8332)] = 327446, - [SMALL_STATE(8333)] = 327460, - [SMALL_STATE(8334)] = 327474, - [SMALL_STATE(8335)] = 327488, - [SMALL_STATE(8336)] = 327502, - [SMALL_STATE(8337)] = 327516, - [SMALL_STATE(8338)] = 327530, - [SMALL_STATE(8339)] = 327544, - [SMALL_STATE(8340)] = 327558, - [SMALL_STATE(8341)] = 327572, - [SMALL_STATE(8342)] = 327586, - [SMALL_STATE(8343)] = 327600, - [SMALL_STATE(8344)] = 327614, - [SMALL_STATE(8345)] = 327628, - [SMALL_STATE(8346)] = 327642, - [SMALL_STATE(8347)] = 327656, - [SMALL_STATE(8348)] = 327670, - [SMALL_STATE(8349)] = 327684, - [SMALL_STATE(8350)] = 327698, - [SMALL_STATE(8351)] = 327712, - [SMALL_STATE(8352)] = 327726, - [SMALL_STATE(8353)] = 327740, - [SMALL_STATE(8354)] = 327754, - [SMALL_STATE(8355)] = 327768, - [SMALL_STATE(8356)] = 327782, - [SMALL_STATE(8357)] = 327796, - [SMALL_STATE(8358)] = 327810, - [SMALL_STATE(8359)] = 327824, - [SMALL_STATE(8360)] = 327838, - [SMALL_STATE(8361)] = 327852, - [SMALL_STATE(8362)] = 327866, - [SMALL_STATE(8363)] = 327880, - [SMALL_STATE(8364)] = 327894, - [SMALL_STATE(8365)] = 327908, - [SMALL_STATE(8366)] = 327922, - [SMALL_STATE(8367)] = 327936, - [SMALL_STATE(8368)] = 327950, - [SMALL_STATE(8369)] = 327964, - [SMALL_STATE(8370)] = 327978, - [SMALL_STATE(8371)] = 327992, - [SMALL_STATE(8372)] = 328006, - [SMALL_STATE(8373)] = 328020, - [SMALL_STATE(8374)] = 328034, - [SMALL_STATE(8375)] = 328048, - [SMALL_STATE(8376)] = 328062, - [SMALL_STATE(8377)] = 328076, - [SMALL_STATE(8378)] = 328090, - [SMALL_STATE(8379)] = 328104, - [SMALL_STATE(8380)] = 328118, - [SMALL_STATE(8381)] = 328132, - [SMALL_STATE(8382)] = 328146, - [SMALL_STATE(8383)] = 328160, - [SMALL_STATE(8384)] = 328174, - [SMALL_STATE(8385)] = 328188, - [SMALL_STATE(8386)] = 328202, - [SMALL_STATE(8387)] = 328216, - [SMALL_STATE(8388)] = 328230, - [SMALL_STATE(8389)] = 328244, - [SMALL_STATE(8390)] = 328258, - [SMALL_STATE(8391)] = 328272, - [SMALL_STATE(8392)] = 328286, - [SMALL_STATE(8393)] = 328300, - [SMALL_STATE(8394)] = 328314, - [SMALL_STATE(8395)] = 328328, - [SMALL_STATE(8396)] = 328342, - [SMALL_STATE(8397)] = 328356, - [SMALL_STATE(8398)] = 328370, - [SMALL_STATE(8399)] = 328384, - [SMALL_STATE(8400)] = 328398, - [SMALL_STATE(8401)] = 328412, - [SMALL_STATE(8402)] = 328426, - [SMALL_STATE(8403)] = 328440, - [SMALL_STATE(8404)] = 328454, - [SMALL_STATE(8405)] = 328468, - [SMALL_STATE(8406)] = 328482, - [SMALL_STATE(8407)] = 328496, - [SMALL_STATE(8408)] = 328510, - [SMALL_STATE(8409)] = 328524, - [SMALL_STATE(8410)] = 328538, - [SMALL_STATE(8411)] = 328552, - [SMALL_STATE(8412)] = 328566, - [SMALL_STATE(8413)] = 328580, - [SMALL_STATE(8414)] = 328594, - [SMALL_STATE(8415)] = 328608, - [SMALL_STATE(8416)] = 328622, - [SMALL_STATE(8417)] = 328636, - [SMALL_STATE(8418)] = 328650, - [SMALL_STATE(8419)] = 328664, - [SMALL_STATE(8420)] = 328678, - [SMALL_STATE(8421)] = 328692, - [SMALL_STATE(8422)] = 328706, - [SMALL_STATE(8423)] = 328720, - [SMALL_STATE(8424)] = 328734, - [SMALL_STATE(8425)] = 328748, - [SMALL_STATE(8426)] = 328762, - [SMALL_STATE(8427)] = 328776, - [SMALL_STATE(8428)] = 328790, - [SMALL_STATE(8429)] = 328804, - [SMALL_STATE(8430)] = 328818, - [SMALL_STATE(8431)] = 328832, - [SMALL_STATE(8432)] = 328846, - [SMALL_STATE(8433)] = 328860, - [SMALL_STATE(8434)] = 328874, - [SMALL_STATE(8435)] = 328888, - [SMALL_STATE(8436)] = 328902, - [SMALL_STATE(8437)] = 328916, - [SMALL_STATE(8438)] = 328930, - [SMALL_STATE(8439)] = 328944, - [SMALL_STATE(8440)] = 328958, - [SMALL_STATE(8441)] = 328972, - [SMALL_STATE(8442)] = 328986, - [SMALL_STATE(8443)] = 329000, - [SMALL_STATE(8444)] = 329014, - [SMALL_STATE(8445)] = 329028, - [SMALL_STATE(8446)] = 329042, - [SMALL_STATE(8447)] = 329056, - [SMALL_STATE(8448)] = 329070, - [SMALL_STATE(8449)] = 329084, - [SMALL_STATE(8450)] = 329098, - [SMALL_STATE(8451)] = 329112, - [SMALL_STATE(8452)] = 329126, - [SMALL_STATE(8453)] = 329140, - [SMALL_STATE(8454)] = 329154, - [SMALL_STATE(8455)] = 329168, - [SMALL_STATE(8456)] = 329182, - [SMALL_STATE(8457)] = 329196, - [SMALL_STATE(8458)] = 329210, - [SMALL_STATE(8459)] = 329224, - [SMALL_STATE(8460)] = 329238, - [SMALL_STATE(8461)] = 329252, - [SMALL_STATE(8462)] = 329266, - [SMALL_STATE(8463)] = 329280, - [SMALL_STATE(8464)] = 329294, - [SMALL_STATE(8465)] = 329308, - [SMALL_STATE(8466)] = 329322, - [SMALL_STATE(8467)] = 329336, - [SMALL_STATE(8468)] = 329350, - [SMALL_STATE(8469)] = 329364, - [SMALL_STATE(8470)] = 329378, - [SMALL_STATE(8471)] = 329392, - [SMALL_STATE(8472)] = 329406, - [SMALL_STATE(8473)] = 329420, - [SMALL_STATE(8474)] = 329434, - [SMALL_STATE(8475)] = 329448, - [SMALL_STATE(8476)] = 329462, - [SMALL_STATE(8477)] = 329476, - [SMALL_STATE(8478)] = 329490, - [SMALL_STATE(8479)] = 329504, - [SMALL_STATE(8480)] = 329518, - [SMALL_STATE(8481)] = 329532, - [SMALL_STATE(8482)] = 329546, - [SMALL_STATE(8483)] = 329560, - [SMALL_STATE(8484)] = 329574, - [SMALL_STATE(8485)] = 329588, - [SMALL_STATE(8486)] = 329602, - [SMALL_STATE(8487)] = 329616, - [SMALL_STATE(8488)] = 329630, - [SMALL_STATE(8489)] = 329644, - [SMALL_STATE(8490)] = 329658, - [SMALL_STATE(8491)] = 329672, - [SMALL_STATE(8492)] = 329686, - [SMALL_STATE(8493)] = 329700, - [SMALL_STATE(8494)] = 329714, - [SMALL_STATE(8495)] = 329728, - [SMALL_STATE(8496)] = 329742, - [SMALL_STATE(8497)] = 329756, - [SMALL_STATE(8498)] = 329770, - [SMALL_STATE(8499)] = 329784, - [SMALL_STATE(8500)] = 329798, - [SMALL_STATE(8501)] = 329812, - [SMALL_STATE(8502)] = 329826, - [SMALL_STATE(8503)] = 329840, - [SMALL_STATE(8504)] = 329854, - [SMALL_STATE(8505)] = 329868, - [SMALL_STATE(8506)] = 329882, - [SMALL_STATE(8507)] = 329896, - [SMALL_STATE(8508)] = 329910, - [SMALL_STATE(8509)] = 329924, - [SMALL_STATE(8510)] = 329938, - [SMALL_STATE(8511)] = 329952, - [SMALL_STATE(8512)] = 329966, - [SMALL_STATE(8513)] = 329980, - [SMALL_STATE(8514)] = 329994, - [SMALL_STATE(8515)] = 330008, - [SMALL_STATE(8516)] = 330022, - [SMALL_STATE(8517)] = 330036, - [SMALL_STATE(8518)] = 330050, - [SMALL_STATE(8519)] = 330064, - [SMALL_STATE(8520)] = 330078, - [SMALL_STATE(8521)] = 330092, - [SMALL_STATE(8522)] = 330106, - [SMALL_STATE(8523)] = 330120, - [SMALL_STATE(8524)] = 330134, - [SMALL_STATE(8525)] = 330148, - [SMALL_STATE(8526)] = 330162, - [SMALL_STATE(8527)] = 330176, - [SMALL_STATE(8528)] = 330190, - [SMALL_STATE(8529)] = 330204, - [SMALL_STATE(8530)] = 330218, - [SMALL_STATE(8531)] = 330232, - [SMALL_STATE(8532)] = 330246, - [SMALL_STATE(8533)] = 330260, - [SMALL_STATE(8534)] = 330274, - [SMALL_STATE(8535)] = 330288, - [SMALL_STATE(8536)] = 330302, - [SMALL_STATE(8537)] = 330316, - [SMALL_STATE(8538)] = 330330, - [SMALL_STATE(8539)] = 330344, - [SMALL_STATE(8540)] = 330358, - [SMALL_STATE(8541)] = 330372, - [SMALL_STATE(8542)] = 330386, - [SMALL_STATE(8543)] = 330400, - [SMALL_STATE(8544)] = 330414, - [SMALL_STATE(8545)] = 330428, - [SMALL_STATE(8546)] = 330442, - [SMALL_STATE(8547)] = 330456, - [SMALL_STATE(8548)] = 330470, - [SMALL_STATE(8549)] = 330484, - [SMALL_STATE(8550)] = 330498, - [SMALL_STATE(8551)] = 330512, - [SMALL_STATE(8552)] = 330526, - [SMALL_STATE(8553)] = 330540, - [SMALL_STATE(8554)] = 330554, - [SMALL_STATE(8555)] = 330568, - [SMALL_STATE(8556)] = 330582, - [SMALL_STATE(8557)] = 330596, - [SMALL_STATE(8558)] = 330610, - [SMALL_STATE(8559)] = 330624, - [SMALL_STATE(8560)] = 330638, - [SMALL_STATE(8561)] = 330652, - [SMALL_STATE(8562)] = 330666, - [SMALL_STATE(8563)] = 330680, - [SMALL_STATE(8564)] = 330694, - [SMALL_STATE(8565)] = 330708, - [SMALL_STATE(8566)] = 330722, - [SMALL_STATE(8567)] = 330736, - [SMALL_STATE(8568)] = 330750, - [SMALL_STATE(8569)] = 330764, - [SMALL_STATE(8570)] = 330778, - [SMALL_STATE(8571)] = 330792, - [SMALL_STATE(8572)] = 330806, - [SMALL_STATE(8573)] = 330820, - [SMALL_STATE(8574)] = 330834, - [SMALL_STATE(8575)] = 330848, - [SMALL_STATE(8576)] = 330862, - [SMALL_STATE(8577)] = 330876, - [SMALL_STATE(8578)] = 330890, - [SMALL_STATE(8579)] = 330904, - [SMALL_STATE(8580)] = 330918, - [SMALL_STATE(8581)] = 330932, - [SMALL_STATE(8582)] = 330946, - [SMALL_STATE(8583)] = 330960, - [SMALL_STATE(8584)] = 330974, - [SMALL_STATE(8585)] = 330988, - [SMALL_STATE(8586)] = 331002, - [SMALL_STATE(8587)] = 331016, - [SMALL_STATE(8588)] = 331030, - [SMALL_STATE(8589)] = 331044, - [SMALL_STATE(8590)] = 331058, - [SMALL_STATE(8591)] = 331072, - [SMALL_STATE(8592)] = 331086, - [SMALL_STATE(8593)] = 331100, - [SMALL_STATE(8594)] = 331114, - [SMALL_STATE(8595)] = 331128, - [SMALL_STATE(8596)] = 331142, - [SMALL_STATE(8597)] = 331156, - [SMALL_STATE(8598)] = 331170, - [SMALL_STATE(8599)] = 331184, - [SMALL_STATE(8600)] = 331198, - [SMALL_STATE(8601)] = 331212, - [SMALL_STATE(8602)] = 331226, - [SMALL_STATE(8603)] = 331240, - [SMALL_STATE(8604)] = 331254, - [SMALL_STATE(8605)] = 331268, - [SMALL_STATE(8606)] = 331282, - [SMALL_STATE(8607)] = 331296, - [SMALL_STATE(8608)] = 331310, - [SMALL_STATE(8609)] = 331324, - [SMALL_STATE(8610)] = 331338, - [SMALL_STATE(8611)] = 331352, - [SMALL_STATE(8612)] = 331366, - [SMALL_STATE(8613)] = 331380, - [SMALL_STATE(8614)] = 331394, - [SMALL_STATE(8615)] = 331408, - [SMALL_STATE(8616)] = 331422, - [SMALL_STATE(8617)] = 331436, - [SMALL_STATE(8618)] = 331450, - [SMALL_STATE(8619)] = 331464, - [SMALL_STATE(8620)] = 331478, - [SMALL_STATE(8621)] = 331492, - [SMALL_STATE(8622)] = 331506, - [SMALL_STATE(8623)] = 331520, - [SMALL_STATE(8624)] = 331534, - [SMALL_STATE(8625)] = 331548, - [SMALL_STATE(8626)] = 331562, - [SMALL_STATE(8627)] = 331576, - [SMALL_STATE(8628)] = 331590, - [SMALL_STATE(8629)] = 331604, - [SMALL_STATE(8630)] = 331618, - [SMALL_STATE(8631)] = 331632, - [SMALL_STATE(8632)] = 331646, - [SMALL_STATE(8633)] = 331660, - [SMALL_STATE(8634)] = 331674, - [SMALL_STATE(8635)] = 331688, - [SMALL_STATE(8636)] = 331702, - [SMALL_STATE(8637)] = 331716, - [SMALL_STATE(8638)] = 331730, - [SMALL_STATE(8639)] = 331744, - [SMALL_STATE(8640)] = 331758, - [SMALL_STATE(8641)] = 331772, - [SMALL_STATE(8642)] = 331786, - [SMALL_STATE(8643)] = 331800, - [SMALL_STATE(8644)] = 331814, - [SMALL_STATE(8645)] = 331828, - [SMALL_STATE(8646)] = 331842, - [SMALL_STATE(8647)] = 331856, - [SMALL_STATE(8648)] = 331870, - [SMALL_STATE(8649)] = 331884, - [SMALL_STATE(8650)] = 331898, - [SMALL_STATE(8651)] = 331912, - [SMALL_STATE(8652)] = 331926, - [SMALL_STATE(8653)] = 331940, - [SMALL_STATE(8654)] = 331954, - [SMALL_STATE(8655)] = 331968, - [SMALL_STATE(8656)] = 331982, - [SMALL_STATE(8657)] = 331996, - [SMALL_STATE(8658)] = 332010, - [SMALL_STATE(8659)] = 332024, - [SMALL_STATE(8660)] = 332038, - [SMALL_STATE(8661)] = 332052, - [SMALL_STATE(8662)] = 332066, - [SMALL_STATE(8663)] = 332080, - [SMALL_STATE(8664)] = 332094, - [SMALL_STATE(8665)] = 332108, - [SMALL_STATE(8666)] = 332122, - [SMALL_STATE(8667)] = 332136, - [SMALL_STATE(8668)] = 332150, - [SMALL_STATE(8669)] = 332164, - [SMALL_STATE(8670)] = 332178, - [SMALL_STATE(8671)] = 332192, - [SMALL_STATE(8672)] = 332206, - [SMALL_STATE(8673)] = 332220, - [SMALL_STATE(8674)] = 332234, - [SMALL_STATE(8675)] = 332248, - [SMALL_STATE(8676)] = 332262, - [SMALL_STATE(8677)] = 332276, - [SMALL_STATE(8678)] = 332290, - [SMALL_STATE(8679)] = 332304, - [SMALL_STATE(8680)] = 332318, - [SMALL_STATE(8681)] = 332332, - [SMALL_STATE(8682)] = 332346, - [SMALL_STATE(8683)] = 332360, - [SMALL_STATE(8684)] = 332374, - [SMALL_STATE(8685)] = 332388, - [SMALL_STATE(8686)] = 332402, - [SMALL_STATE(8687)] = 332416, - [SMALL_STATE(8688)] = 332430, - [SMALL_STATE(8689)] = 332444, - [SMALL_STATE(8690)] = 332458, - [SMALL_STATE(8691)] = 332472, - [SMALL_STATE(8692)] = 332486, - [SMALL_STATE(8693)] = 332500, - [SMALL_STATE(8694)] = 332514, - [SMALL_STATE(8695)] = 332528, - [SMALL_STATE(8696)] = 332542, - [SMALL_STATE(8697)] = 332556, - [SMALL_STATE(8698)] = 332570, - [SMALL_STATE(8699)] = 332584, - [SMALL_STATE(8700)] = 332598, - [SMALL_STATE(8701)] = 332612, - [SMALL_STATE(8702)] = 332626, - [SMALL_STATE(8703)] = 332640, - [SMALL_STATE(8704)] = 332654, - [SMALL_STATE(8705)] = 332668, - [SMALL_STATE(8706)] = 332682, - [SMALL_STATE(8707)] = 332696, - [SMALL_STATE(8708)] = 332710, - [SMALL_STATE(8709)] = 332724, - [SMALL_STATE(8710)] = 332738, - [SMALL_STATE(8711)] = 332752, - [SMALL_STATE(8712)] = 332766, - [SMALL_STATE(8713)] = 332780, - [SMALL_STATE(8714)] = 332794, - [SMALL_STATE(8715)] = 332808, - [SMALL_STATE(8716)] = 332822, - [SMALL_STATE(8717)] = 332836, - [SMALL_STATE(8718)] = 332850, - [SMALL_STATE(8719)] = 332864, - [SMALL_STATE(8720)] = 332878, - [SMALL_STATE(8721)] = 332892, - [SMALL_STATE(8722)] = 332906, - [SMALL_STATE(8723)] = 332920, - [SMALL_STATE(8724)] = 332934, - [SMALL_STATE(8725)] = 332948, - [SMALL_STATE(8726)] = 332962, - [SMALL_STATE(8727)] = 332976, - [SMALL_STATE(8728)] = 332990, - [SMALL_STATE(8729)] = 333004, - [SMALL_STATE(8730)] = 333018, - [SMALL_STATE(8731)] = 333032, - [SMALL_STATE(8732)] = 333046, - [SMALL_STATE(8733)] = 333060, - [SMALL_STATE(8734)] = 333074, - [SMALL_STATE(8735)] = 333088, - [SMALL_STATE(8736)] = 333102, - [SMALL_STATE(8737)] = 333116, - [SMALL_STATE(8738)] = 333130, - [SMALL_STATE(8739)] = 333144, - [SMALL_STATE(8740)] = 333158, - [SMALL_STATE(8741)] = 333172, - [SMALL_STATE(8742)] = 333186, - [SMALL_STATE(8743)] = 333200, - [SMALL_STATE(8744)] = 333214, - [SMALL_STATE(8745)] = 333228, - [SMALL_STATE(8746)] = 333242, - [SMALL_STATE(8747)] = 333256, - [SMALL_STATE(8748)] = 333270, - [SMALL_STATE(8749)] = 333284, - [SMALL_STATE(8750)] = 333298, - [SMALL_STATE(8751)] = 333312, - [SMALL_STATE(8752)] = 333326, - [SMALL_STATE(8753)] = 333340, - [SMALL_STATE(8754)] = 333354, - [SMALL_STATE(8755)] = 333368, - [SMALL_STATE(8756)] = 333382, - [SMALL_STATE(8757)] = 333396, - [SMALL_STATE(8758)] = 333410, - [SMALL_STATE(8759)] = 333424, - [SMALL_STATE(8760)] = 333438, - [SMALL_STATE(8761)] = 333452, - [SMALL_STATE(8762)] = 333466, - [SMALL_STATE(8763)] = 333480, - [SMALL_STATE(8764)] = 333494, - [SMALL_STATE(8765)] = 333508, - [SMALL_STATE(8766)] = 333522, - [SMALL_STATE(8767)] = 333536, - [SMALL_STATE(8768)] = 333550, - [SMALL_STATE(8769)] = 333564, - [SMALL_STATE(8770)] = 333578, - [SMALL_STATE(8771)] = 333592, - [SMALL_STATE(8772)] = 333606, - [SMALL_STATE(8773)] = 333620, - [SMALL_STATE(8774)] = 333634, - [SMALL_STATE(8775)] = 333648, - [SMALL_STATE(8776)] = 333662, - [SMALL_STATE(8777)] = 333676, - [SMALL_STATE(8778)] = 333690, - [SMALL_STATE(8779)] = 333704, - [SMALL_STATE(8780)] = 333718, - [SMALL_STATE(8781)] = 333732, - [SMALL_STATE(8782)] = 333746, - [SMALL_STATE(8783)] = 333760, - [SMALL_STATE(8784)] = 333774, - [SMALL_STATE(8785)] = 333788, - [SMALL_STATE(8786)] = 333802, - [SMALL_STATE(8787)] = 333816, - [SMALL_STATE(8788)] = 333830, - [SMALL_STATE(8789)] = 333844, - [SMALL_STATE(8790)] = 333858, - [SMALL_STATE(8791)] = 333872, - [SMALL_STATE(8792)] = 333886, - [SMALL_STATE(8793)] = 333900, - [SMALL_STATE(8794)] = 333914, - [SMALL_STATE(8795)] = 333928, - [SMALL_STATE(8796)] = 333942, - [SMALL_STATE(8797)] = 333956, - [SMALL_STATE(8798)] = 333970, - [SMALL_STATE(8799)] = 333984, - [SMALL_STATE(8800)] = 333998, - [SMALL_STATE(8801)] = 334012, - [SMALL_STATE(8802)] = 334026, - [SMALL_STATE(8803)] = 334040, - [SMALL_STATE(8804)] = 334054, - [SMALL_STATE(8805)] = 334068, - [SMALL_STATE(8806)] = 334082, - [SMALL_STATE(8807)] = 334096, - [SMALL_STATE(8808)] = 334110, - [SMALL_STATE(8809)] = 334124, - [SMALL_STATE(8810)] = 334138, - [SMALL_STATE(8811)] = 334152, - [SMALL_STATE(8812)] = 334166, - [SMALL_STATE(8813)] = 334180, - [SMALL_STATE(8814)] = 334194, - [SMALL_STATE(8815)] = 334208, - [SMALL_STATE(8816)] = 334222, - [SMALL_STATE(8817)] = 334236, - [SMALL_STATE(8818)] = 334250, - [SMALL_STATE(8819)] = 334264, - [SMALL_STATE(8820)] = 334278, - [SMALL_STATE(8821)] = 334292, - [SMALL_STATE(8822)] = 334306, - [SMALL_STATE(8823)] = 334320, - [SMALL_STATE(8824)] = 334334, - [SMALL_STATE(8825)] = 334348, - [SMALL_STATE(8826)] = 334362, - [SMALL_STATE(8827)] = 334376, - [SMALL_STATE(8828)] = 334390, - [SMALL_STATE(8829)] = 334404, - [SMALL_STATE(8830)] = 334418, - [SMALL_STATE(8831)] = 334432, - [SMALL_STATE(8832)] = 334446, - [SMALL_STATE(8833)] = 334460, - [SMALL_STATE(8834)] = 334474, - [SMALL_STATE(8835)] = 334488, - [SMALL_STATE(8836)] = 334502, - [SMALL_STATE(8837)] = 334516, - [SMALL_STATE(8838)] = 334530, - [SMALL_STATE(8839)] = 334544, - [SMALL_STATE(8840)] = 334558, - [SMALL_STATE(8841)] = 334572, - [SMALL_STATE(8842)] = 334586, - [SMALL_STATE(8843)] = 334600, - [SMALL_STATE(8844)] = 334614, - [SMALL_STATE(8845)] = 334628, - [SMALL_STATE(8846)] = 334642, - [SMALL_STATE(8847)] = 334656, - [SMALL_STATE(8848)] = 334670, - [SMALL_STATE(8849)] = 334684, - [SMALL_STATE(8850)] = 334698, - [SMALL_STATE(8851)] = 334712, - [SMALL_STATE(8852)] = 334726, - [SMALL_STATE(8853)] = 334740, - [SMALL_STATE(8854)] = 334754, - [SMALL_STATE(8855)] = 334768, - [SMALL_STATE(8856)] = 334782, - [SMALL_STATE(8857)] = 334796, - [SMALL_STATE(8858)] = 334810, - [SMALL_STATE(8859)] = 334824, - [SMALL_STATE(8860)] = 334838, - [SMALL_STATE(8861)] = 334852, - [SMALL_STATE(8862)] = 334866, - [SMALL_STATE(8863)] = 334880, - [SMALL_STATE(8864)] = 334894, - [SMALL_STATE(8865)] = 334908, - [SMALL_STATE(8866)] = 334922, - [SMALL_STATE(8867)] = 334936, - [SMALL_STATE(8868)] = 334950, - [SMALL_STATE(8869)] = 334964, - [SMALL_STATE(8870)] = 334978, - [SMALL_STATE(8871)] = 334992, - [SMALL_STATE(8872)] = 335006, - [SMALL_STATE(8873)] = 335020, - [SMALL_STATE(8874)] = 335034, - [SMALL_STATE(8875)] = 335048, - [SMALL_STATE(8876)] = 335062, - [SMALL_STATE(8877)] = 335076, - [SMALL_STATE(8878)] = 335090, - [SMALL_STATE(8879)] = 335104, - [SMALL_STATE(8880)] = 335118, - [SMALL_STATE(8881)] = 335132, - [SMALL_STATE(8882)] = 335146, - [SMALL_STATE(8883)] = 335160, - [SMALL_STATE(8884)] = 335174, - [SMALL_STATE(8885)] = 335188, - [SMALL_STATE(8886)] = 335202, - [SMALL_STATE(8887)] = 335216, - [SMALL_STATE(8888)] = 335230, - [SMALL_STATE(8889)] = 335244, - [SMALL_STATE(8890)] = 335258, - [SMALL_STATE(8891)] = 335272, - [SMALL_STATE(8892)] = 335286, - [SMALL_STATE(8893)] = 335300, - [SMALL_STATE(8894)] = 335314, - [SMALL_STATE(8895)] = 335328, - [SMALL_STATE(8896)] = 335342, - [SMALL_STATE(8897)] = 335356, - [SMALL_STATE(8898)] = 335370, - [SMALL_STATE(8899)] = 335384, - [SMALL_STATE(8900)] = 335398, - [SMALL_STATE(8901)] = 335412, - [SMALL_STATE(8902)] = 335426, - [SMALL_STATE(8903)] = 335440, - [SMALL_STATE(8904)] = 335454, - [SMALL_STATE(8905)] = 335468, - [SMALL_STATE(8906)] = 335482, - [SMALL_STATE(8907)] = 335496, - [SMALL_STATE(8908)] = 335510, - [SMALL_STATE(8909)] = 335524, - [SMALL_STATE(8910)] = 335538, - [SMALL_STATE(8911)] = 335552, - [SMALL_STATE(8912)] = 335566, - [SMALL_STATE(8913)] = 335580, - [SMALL_STATE(8914)] = 335594, - [SMALL_STATE(8915)] = 335608, - [SMALL_STATE(8916)] = 335622, - [SMALL_STATE(8917)] = 335636, - [SMALL_STATE(8918)] = 335650, - [SMALL_STATE(8919)] = 335664, - [SMALL_STATE(8920)] = 335678, - [SMALL_STATE(8921)] = 335692, - [SMALL_STATE(8922)] = 335706, - [SMALL_STATE(8923)] = 335720, - [SMALL_STATE(8924)] = 335734, - [SMALL_STATE(8925)] = 335748, - [SMALL_STATE(8926)] = 335762, - [SMALL_STATE(8927)] = 335776, - [SMALL_STATE(8928)] = 335790, - [SMALL_STATE(8929)] = 335804, - [SMALL_STATE(8930)] = 335818, - [SMALL_STATE(8931)] = 335832, - [SMALL_STATE(8932)] = 335846, - [SMALL_STATE(8933)] = 335860, - [SMALL_STATE(8934)] = 335874, - [SMALL_STATE(8935)] = 335888, - [SMALL_STATE(8936)] = 335902, - [SMALL_STATE(8937)] = 335916, - [SMALL_STATE(8938)] = 335930, - [SMALL_STATE(8939)] = 335944, - [SMALL_STATE(8940)] = 335958, - [SMALL_STATE(8941)] = 335972, - [SMALL_STATE(8942)] = 335986, - [SMALL_STATE(8943)] = 336000, - [SMALL_STATE(8944)] = 336014, - [SMALL_STATE(8945)] = 336028, - [SMALL_STATE(8946)] = 336042, - [SMALL_STATE(8947)] = 336056, - [SMALL_STATE(8948)] = 336070, - [SMALL_STATE(8949)] = 336084, - [SMALL_STATE(8950)] = 336098, - [SMALL_STATE(8951)] = 336112, - [SMALL_STATE(8952)] = 336126, - [SMALL_STATE(8953)] = 336140, - [SMALL_STATE(8954)] = 336154, - [SMALL_STATE(8955)] = 336168, - [SMALL_STATE(8956)] = 336182, - [SMALL_STATE(8957)] = 336196, - [SMALL_STATE(8958)] = 336210, - [SMALL_STATE(8959)] = 336224, - [SMALL_STATE(8960)] = 336238, - [SMALL_STATE(8961)] = 336252, - [SMALL_STATE(8962)] = 336266, - [SMALL_STATE(8963)] = 336280, - [SMALL_STATE(8964)] = 336294, - [SMALL_STATE(8965)] = 336308, - [SMALL_STATE(8966)] = 336322, - [SMALL_STATE(8967)] = 336336, - [SMALL_STATE(8968)] = 336350, - [SMALL_STATE(8969)] = 336364, - [SMALL_STATE(8970)] = 336378, - [SMALL_STATE(8971)] = 336392, - [SMALL_STATE(8972)] = 336406, - [SMALL_STATE(8973)] = 336420, - [SMALL_STATE(8974)] = 336434, - [SMALL_STATE(8975)] = 336448, - [SMALL_STATE(8976)] = 336462, - [SMALL_STATE(8977)] = 336476, - [SMALL_STATE(8978)] = 336490, - [SMALL_STATE(8979)] = 336504, - [SMALL_STATE(8980)] = 336518, - [SMALL_STATE(8981)] = 336532, - [SMALL_STATE(8982)] = 336546, - [SMALL_STATE(8983)] = 336560, - [SMALL_STATE(8984)] = 336574, - [SMALL_STATE(8985)] = 336588, - [SMALL_STATE(8986)] = 336602, - [SMALL_STATE(8987)] = 336616, - [SMALL_STATE(8988)] = 336630, - [SMALL_STATE(8989)] = 336644, - [SMALL_STATE(8990)] = 336658, - [SMALL_STATE(8991)] = 336672, - [SMALL_STATE(8992)] = 336686, - [SMALL_STATE(8993)] = 336700, - [SMALL_STATE(8994)] = 336714, - [SMALL_STATE(8995)] = 336728, - [SMALL_STATE(8996)] = 336742, - [SMALL_STATE(8997)] = 336756, - [SMALL_STATE(8998)] = 336770, - [SMALL_STATE(8999)] = 336784, - [SMALL_STATE(9000)] = 336798, - [SMALL_STATE(9001)] = 336812, - [SMALL_STATE(9002)] = 336826, - [SMALL_STATE(9003)] = 336840, - [SMALL_STATE(9004)] = 336854, - [SMALL_STATE(9005)] = 336868, - [SMALL_STATE(9006)] = 336882, - [SMALL_STATE(9007)] = 336896, - [SMALL_STATE(9008)] = 336910, - [SMALL_STATE(9009)] = 336924, - [SMALL_STATE(9010)] = 336938, - [SMALL_STATE(9011)] = 336952, - [SMALL_STATE(9012)] = 336966, - [SMALL_STATE(9013)] = 336980, - [SMALL_STATE(9014)] = 336994, - [SMALL_STATE(9015)] = 337008, - [SMALL_STATE(9016)] = 337022, - [SMALL_STATE(9017)] = 337036, - [SMALL_STATE(9018)] = 337050, - [SMALL_STATE(9019)] = 337064, - [SMALL_STATE(9020)] = 337078, - [SMALL_STATE(9021)] = 337092, - [SMALL_STATE(9022)] = 337106, - [SMALL_STATE(9023)] = 337120, - [SMALL_STATE(9024)] = 337134, - [SMALL_STATE(9025)] = 337148, - [SMALL_STATE(9026)] = 337162, - [SMALL_STATE(9027)] = 337176, - [SMALL_STATE(9028)] = 337190, - [SMALL_STATE(9029)] = 337204, - [SMALL_STATE(9030)] = 337218, - [SMALL_STATE(9031)] = 337232, - [SMALL_STATE(9032)] = 337246, - [SMALL_STATE(9033)] = 337260, - [SMALL_STATE(9034)] = 337274, - [SMALL_STATE(9035)] = 337288, - [SMALL_STATE(9036)] = 337302, - [SMALL_STATE(9037)] = 337316, - [SMALL_STATE(9038)] = 337330, - [SMALL_STATE(9039)] = 337344, - [SMALL_STATE(9040)] = 337358, - [SMALL_STATE(9041)] = 337372, - [SMALL_STATE(9042)] = 337386, - [SMALL_STATE(9043)] = 337400, - [SMALL_STATE(9044)] = 337414, - [SMALL_STATE(9045)] = 337428, - [SMALL_STATE(9046)] = 337442, - [SMALL_STATE(9047)] = 337456, - [SMALL_STATE(9048)] = 337470, - [SMALL_STATE(9049)] = 337484, - [SMALL_STATE(9050)] = 337498, - [SMALL_STATE(9051)] = 337512, - [SMALL_STATE(9052)] = 337526, - [SMALL_STATE(9053)] = 337540, - [SMALL_STATE(9054)] = 337554, - [SMALL_STATE(9055)] = 337568, - [SMALL_STATE(9056)] = 337582, - [SMALL_STATE(9057)] = 337596, - [SMALL_STATE(9058)] = 337610, - [SMALL_STATE(9059)] = 337624, - [SMALL_STATE(9060)] = 337638, - [SMALL_STATE(9061)] = 337652, - [SMALL_STATE(9062)] = 337666, - [SMALL_STATE(9063)] = 337680, - [SMALL_STATE(9064)] = 337694, - [SMALL_STATE(9065)] = 337708, - [SMALL_STATE(9066)] = 337722, - [SMALL_STATE(9067)] = 337736, - [SMALL_STATE(9068)] = 337750, - [SMALL_STATE(9069)] = 337764, - [SMALL_STATE(9070)] = 337778, - [SMALL_STATE(9071)] = 337792, - [SMALL_STATE(9072)] = 337806, - [SMALL_STATE(9073)] = 337820, - [SMALL_STATE(9074)] = 337834, - [SMALL_STATE(9075)] = 337848, - [SMALL_STATE(9076)] = 337862, - [SMALL_STATE(9077)] = 337876, - [SMALL_STATE(9078)] = 337890, - [SMALL_STATE(9079)] = 337904, - [SMALL_STATE(9080)] = 337918, - [SMALL_STATE(9081)] = 337932, - [SMALL_STATE(9082)] = 337946, - [SMALL_STATE(9083)] = 337960, - [SMALL_STATE(9084)] = 337974, - [SMALL_STATE(9085)] = 337988, - [SMALL_STATE(9086)] = 338002, - [SMALL_STATE(9087)] = 338016, - [SMALL_STATE(9088)] = 338030, - [SMALL_STATE(9089)] = 338044, - [SMALL_STATE(9090)] = 338058, - [SMALL_STATE(9091)] = 338072, - [SMALL_STATE(9092)] = 338086, - [SMALL_STATE(9093)] = 338100, - [SMALL_STATE(9094)] = 338114, - [SMALL_STATE(9095)] = 338128, - [SMALL_STATE(9096)] = 338142, - [SMALL_STATE(9097)] = 338156, - [SMALL_STATE(9098)] = 338170, - [SMALL_STATE(9099)] = 338184, - [SMALL_STATE(9100)] = 338198, - [SMALL_STATE(9101)] = 338212, - [SMALL_STATE(9102)] = 338226, - [SMALL_STATE(9103)] = 338240, - [SMALL_STATE(9104)] = 338254, - [SMALL_STATE(9105)] = 338268, - [SMALL_STATE(9106)] = 338282, - [SMALL_STATE(9107)] = 338296, - [SMALL_STATE(9108)] = 338310, - [SMALL_STATE(9109)] = 338324, - [SMALL_STATE(9110)] = 338338, - [SMALL_STATE(9111)] = 338352, - [SMALL_STATE(9112)] = 338366, - [SMALL_STATE(9113)] = 338380, - [SMALL_STATE(9114)] = 338394, - [SMALL_STATE(9115)] = 338408, - [SMALL_STATE(9116)] = 338422, - [SMALL_STATE(9117)] = 338436, - [SMALL_STATE(9118)] = 338450, - [SMALL_STATE(9119)] = 338464, - [SMALL_STATE(9120)] = 338478, - [SMALL_STATE(9121)] = 338492, - [SMALL_STATE(9122)] = 338506, - [SMALL_STATE(9123)] = 338520, - [SMALL_STATE(9124)] = 338534, - [SMALL_STATE(9125)] = 338548, - [SMALL_STATE(9126)] = 338562, - [SMALL_STATE(9127)] = 338576, - [SMALL_STATE(9128)] = 338590, - [SMALL_STATE(9129)] = 338604, - [SMALL_STATE(9130)] = 338618, - [SMALL_STATE(9131)] = 338632, - [SMALL_STATE(9132)] = 338646, - [SMALL_STATE(9133)] = 338660, - [SMALL_STATE(9134)] = 338674, - [SMALL_STATE(9135)] = 338688, - [SMALL_STATE(9136)] = 338702, - [SMALL_STATE(9137)] = 338716, - [SMALL_STATE(9138)] = 338730, - [SMALL_STATE(9139)] = 338744, - [SMALL_STATE(9140)] = 338758, - [SMALL_STATE(9141)] = 338772, - [SMALL_STATE(9142)] = 338786, - [SMALL_STATE(9143)] = 338800, - [SMALL_STATE(9144)] = 338814, - [SMALL_STATE(9145)] = 338828, - [SMALL_STATE(9146)] = 338842, - [SMALL_STATE(9147)] = 338856, - [SMALL_STATE(9148)] = 338870, - [SMALL_STATE(9149)] = 338884, - [SMALL_STATE(9150)] = 338898, - [SMALL_STATE(9151)] = 338912, - [SMALL_STATE(9152)] = 338926, - [SMALL_STATE(9153)] = 338940, - [SMALL_STATE(9154)] = 338954, - [SMALL_STATE(9155)] = 338968, - [SMALL_STATE(9156)] = 338982, - [SMALL_STATE(9157)] = 338996, - [SMALL_STATE(9158)] = 339010, - [SMALL_STATE(9159)] = 339024, - [SMALL_STATE(9160)] = 339038, - [SMALL_STATE(9161)] = 339052, - [SMALL_STATE(9162)] = 339066, - [SMALL_STATE(9163)] = 339080, - [SMALL_STATE(9164)] = 339094, - [SMALL_STATE(9165)] = 339108, - [SMALL_STATE(9166)] = 339122, - [SMALL_STATE(9167)] = 339136, - [SMALL_STATE(9168)] = 339150, - [SMALL_STATE(9169)] = 339164, - [SMALL_STATE(9170)] = 339178, - [SMALL_STATE(9171)] = 339192, - [SMALL_STATE(9172)] = 339206, - [SMALL_STATE(9173)] = 339220, - [SMALL_STATE(9174)] = 339234, - [SMALL_STATE(9175)] = 339248, - [SMALL_STATE(9176)] = 339262, - [SMALL_STATE(9177)] = 339276, - [SMALL_STATE(9178)] = 339290, - [SMALL_STATE(9179)] = 339304, - [SMALL_STATE(9180)] = 339318, - [SMALL_STATE(9181)] = 339332, - [SMALL_STATE(9182)] = 339346, - [SMALL_STATE(9183)] = 339360, - [SMALL_STATE(9184)] = 339374, - [SMALL_STATE(9185)] = 339388, - [SMALL_STATE(9186)] = 339402, - [SMALL_STATE(9187)] = 339416, - [SMALL_STATE(9188)] = 339430, - [SMALL_STATE(9189)] = 339444, - [SMALL_STATE(9190)] = 339458, - [SMALL_STATE(9191)] = 339472, - [SMALL_STATE(9192)] = 339486, - [SMALL_STATE(9193)] = 339500, - [SMALL_STATE(9194)] = 339514, - [SMALL_STATE(9195)] = 339528, - [SMALL_STATE(9196)] = 339542, - [SMALL_STATE(9197)] = 339556, - [SMALL_STATE(9198)] = 339570, - [SMALL_STATE(9199)] = 339584, - [SMALL_STATE(9200)] = 339598, - [SMALL_STATE(9201)] = 339612, - [SMALL_STATE(9202)] = 339626, - [SMALL_STATE(9203)] = 339640, - [SMALL_STATE(9204)] = 339654, - [SMALL_STATE(9205)] = 339668, - [SMALL_STATE(9206)] = 339682, - [SMALL_STATE(9207)] = 339696, - [SMALL_STATE(9208)] = 339710, - [SMALL_STATE(9209)] = 339724, - [SMALL_STATE(9210)] = 339738, - [SMALL_STATE(9211)] = 339752, - [SMALL_STATE(9212)] = 339766, - [SMALL_STATE(9213)] = 339780, - [SMALL_STATE(9214)] = 339794, - [SMALL_STATE(9215)] = 339808, - [SMALL_STATE(9216)] = 339822, - [SMALL_STATE(9217)] = 339836, - [SMALL_STATE(9218)] = 339850, - [SMALL_STATE(9219)] = 339864, - [SMALL_STATE(9220)] = 339878, - [SMALL_STATE(9221)] = 339892, - [SMALL_STATE(9222)] = 339906, - [SMALL_STATE(9223)] = 339920, - [SMALL_STATE(9224)] = 339934, - [SMALL_STATE(9225)] = 339948, - [SMALL_STATE(9226)] = 339962, - [SMALL_STATE(9227)] = 339976, - [SMALL_STATE(9228)] = 339990, - [SMALL_STATE(9229)] = 340004, - [SMALL_STATE(9230)] = 340018, - [SMALL_STATE(9231)] = 340032, - [SMALL_STATE(9232)] = 340046, - [SMALL_STATE(9233)] = 340060, - [SMALL_STATE(9234)] = 340074, - [SMALL_STATE(9235)] = 340088, - [SMALL_STATE(9236)] = 340102, - [SMALL_STATE(9237)] = 340116, - [SMALL_STATE(9238)] = 340130, - [SMALL_STATE(9239)] = 340144, - [SMALL_STATE(9240)] = 340158, - [SMALL_STATE(9241)] = 340172, - [SMALL_STATE(9242)] = 340186, - [SMALL_STATE(9243)] = 340200, - [SMALL_STATE(9244)] = 340214, - [SMALL_STATE(9245)] = 340228, - [SMALL_STATE(9246)] = 340242, - [SMALL_STATE(9247)] = 340256, - [SMALL_STATE(9248)] = 340270, - [SMALL_STATE(9249)] = 340284, - [SMALL_STATE(9250)] = 340298, - [SMALL_STATE(9251)] = 340312, - [SMALL_STATE(9252)] = 340326, - [SMALL_STATE(9253)] = 340340, - [SMALL_STATE(9254)] = 340354, - [SMALL_STATE(9255)] = 340368, - [SMALL_STATE(9256)] = 340382, - [SMALL_STATE(9257)] = 340396, - [SMALL_STATE(9258)] = 340410, - [SMALL_STATE(9259)] = 340424, - [SMALL_STATE(9260)] = 340438, - [SMALL_STATE(9261)] = 340452, - [SMALL_STATE(9262)] = 340466, - [SMALL_STATE(9263)] = 340480, - [SMALL_STATE(9264)] = 340494, - [SMALL_STATE(9265)] = 340508, - [SMALL_STATE(9266)] = 340522, - [SMALL_STATE(9267)] = 340536, - [SMALL_STATE(9268)] = 340550, - [SMALL_STATE(9269)] = 340564, - [SMALL_STATE(9270)] = 340578, - [SMALL_STATE(9271)] = 340592, - [SMALL_STATE(9272)] = 340606, - [SMALL_STATE(9273)] = 340620, - [SMALL_STATE(9274)] = 340634, - [SMALL_STATE(9275)] = 340648, - [SMALL_STATE(9276)] = 340662, - [SMALL_STATE(9277)] = 340676, - [SMALL_STATE(9278)] = 340690, - [SMALL_STATE(9279)] = 340704, - [SMALL_STATE(9280)] = 340718, - [SMALL_STATE(9281)] = 340732, - [SMALL_STATE(9282)] = 340746, - [SMALL_STATE(9283)] = 340760, - [SMALL_STATE(9284)] = 340774, - [SMALL_STATE(9285)] = 340788, - [SMALL_STATE(9286)] = 340802, - [SMALL_STATE(9287)] = 340816, - [SMALL_STATE(9288)] = 340830, - [SMALL_STATE(9289)] = 340844, - [SMALL_STATE(9290)] = 340858, - [SMALL_STATE(9291)] = 340872, - [SMALL_STATE(9292)] = 340886, - [SMALL_STATE(9293)] = 340900, - [SMALL_STATE(9294)] = 340914, - [SMALL_STATE(9295)] = 340928, - [SMALL_STATE(9296)] = 340942, - [SMALL_STATE(9297)] = 340956, - [SMALL_STATE(9298)] = 340970, - [SMALL_STATE(9299)] = 340984, - [SMALL_STATE(9300)] = 340998, - [SMALL_STATE(9301)] = 341012, - [SMALL_STATE(9302)] = 341026, - [SMALL_STATE(9303)] = 341040, - [SMALL_STATE(9304)] = 341054, - [SMALL_STATE(9305)] = 341068, - [SMALL_STATE(9306)] = 341082, - [SMALL_STATE(9307)] = 341096, - [SMALL_STATE(9308)] = 341110, - [SMALL_STATE(9309)] = 341124, - [SMALL_STATE(9310)] = 341138, - [SMALL_STATE(9311)] = 341152, - [SMALL_STATE(9312)] = 341166, - [SMALL_STATE(9313)] = 341180, - [SMALL_STATE(9314)] = 341194, - [SMALL_STATE(9315)] = 341208, - [SMALL_STATE(9316)] = 341222, - [SMALL_STATE(9317)] = 341236, - [SMALL_STATE(9318)] = 341250, - [SMALL_STATE(9319)] = 341264, - [SMALL_STATE(9320)] = 341278, - [SMALL_STATE(9321)] = 341292, - [SMALL_STATE(9322)] = 341306, - [SMALL_STATE(9323)] = 341320, - [SMALL_STATE(9324)] = 341334, - [SMALL_STATE(9325)] = 341348, - [SMALL_STATE(9326)] = 341362, - [SMALL_STATE(9327)] = 341376, - [SMALL_STATE(9328)] = 341390, - [SMALL_STATE(9329)] = 341404, - [SMALL_STATE(9330)] = 341418, - [SMALL_STATE(9331)] = 341432, - [SMALL_STATE(9332)] = 341446, - [SMALL_STATE(9333)] = 341460, - [SMALL_STATE(9334)] = 341474, - [SMALL_STATE(9335)] = 341488, - [SMALL_STATE(9336)] = 341502, - [SMALL_STATE(9337)] = 341516, - [SMALL_STATE(9338)] = 341530, - [SMALL_STATE(9339)] = 341544, - [SMALL_STATE(9340)] = 341558, - [SMALL_STATE(9341)] = 341572, - [SMALL_STATE(9342)] = 341586, - [SMALL_STATE(9343)] = 341600, - [SMALL_STATE(9344)] = 341614, - [SMALL_STATE(9345)] = 341628, - [SMALL_STATE(9346)] = 341642, - [SMALL_STATE(9347)] = 341656, - [SMALL_STATE(9348)] = 341670, - [SMALL_STATE(9349)] = 341684, - [SMALL_STATE(9350)] = 341698, - [SMALL_STATE(9351)] = 341712, - [SMALL_STATE(9352)] = 341726, - [SMALL_STATE(9353)] = 341740, - [SMALL_STATE(9354)] = 341754, - [SMALL_STATE(9355)] = 341768, - [SMALL_STATE(9356)] = 341782, - [SMALL_STATE(9357)] = 341796, - [SMALL_STATE(9358)] = 341810, - [SMALL_STATE(9359)] = 341824, - [SMALL_STATE(9360)] = 341838, - [SMALL_STATE(9361)] = 341852, - [SMALL_STATE(9362)] = 341866, - [SMALL_STATE(9363)] = 341880, - [SMALL_STATE(9364)] = 341894, - [SMALL_STATE(9365)] = 341908, - [SMALL_STATE(9366)] = 341922, - [SMALL_STATE(9367)] = 341936, - [SMALL_STATE(9368)] = 341950, - [SMALL_STATE(9369)] = 341964, - [SMALL_STATE(9370)] = 341978, - [SMALL_STATE(9371)] = 341992, - [SMALL_STATE(9372)] = 342006, - [SMALL_STATE(9373)] = 342020, - [SMALL_STATE(9374)] = 342034, - [SMALL_STATE(9375)] = 342048, - [SMALL_STATE(9376)] = 342062, - [SMALL_STATE(9377)] = 342076, - [SMALL_STATE(9378)] = 342090, - [SMALL_STATE(9379)] = 342104, - [SMALL_STATE(9380)] = 342118, - [SMALL_STATE(9381)] = 342132, - [SMALL_STATE(9382)] = 342146, - [SMALL_STATE(9383)] = 342160, - [SMALL_STATE(9384)] = 342174, - [SMALL_STATE(9385)] = 342188, - [SMALL_STATE(9386)] = 342202, - [SMALL_STATE(9387)] = 342216, - [SMALL_STATE(9388)] = 342230, - [SMALL_STATE(9389)] = 342244, - [SMALL_STATE(9390)] = 342258, - [SMALL_STATE(9391)] = 342272, - [SMALL_STATE(9392)] = 342286, - [SMALL_STATE(9393)] = 342300, - [SMALL_STATE(9394)] = 342314, - [SMALL_STATE(9395)] = 342328, - [SMALL_STATE(9396)] = 342342, - [SMALL_STATE(9397)] = 342356, - [SMALL_STATE(9398)] = 342370, - [SMALL_STATE(9399)] = 342384, - [SMALL_STATE(9400)] = 342398, - [SMALL_STATE(9401)] = 342412, - [SMALL_STATE(9402)] = 342426, - [SMALL_STATE(9403)] = 342440, - [SMALL_STATE(9404)] = 342454, - [SMALL_STATE(9405)] = 342468, - [SMALL_STATE(9406)] = 342482, - [SMALL_STATE(9407)] = 342496, - [SMALL_STATE(9408)] = 342510, - [SMALL_STATE(9409)] = 342524, - [SMALL_STATE(9410)] = 342538, - [SMALL_STATE(9411)] = 342552, - [SMALL_STATE(9412)] = 342566, - [SMALL_STATE(9413)] = 342580, - [SMALL_STATE(9414)] = 342594, - [SMALL_STATE(9415)] = 342608, - [SMALL_STATE(9416)] = 342622, - [SMALL_STATE(9417)] = 342636, - [SMALL_STATE(9418)] = 342650, - [SMALL_STATE(9419)] = 342664, - [SMALL_STATE(9420)] = 342678, - [SMALL_STATE(9421)] = 342692, - [SMALL_STATE(9422)] = 342706, - [SMALL_STATE(9423)] = 342720, - [SMALL_STATE(9424)] = 342734, - [SMALL_STATE(9425)] = 342748, - [SMALL_STATE(9426)] = 342762, - [SMALL_STATE(9427)] = 342776, - [SMALL_STATE(9428)] = 342790, - [SMALL_STATE(9429)] = 342804, - [SMALL_STATE(9430)] = 342818, - [SMALL_STATE(9431)] = 342832, - [SMALL_STATE(9432)] = 342846, - [SMALL_STATE(9433)] = 342860, - [SMALL_STATE(9434)] = 342874, - [SMALL_STATE(9435)] = 342888, - [SMALL_STATE(9436)] = 342902, - [SMALL_STATE(9437)] = 342916, - [SMALL_STATE(9438)] = 342930, - [SMALL_STATE(9439)] = 342944, - [SMALL_STATE(9440)] = 342958, - [SMALL_STATE(9441)] = 342972, - [SMALL_STATE(9442)] = 342986, - [SMALL_STATE(9443)] = 343000, - [SMALL_STATE(9444)] = 343014, - [SMALL_STATE(9445)] = 343028, - [SMALL_STATE(9446)] = 343042, - [SMALL_STATE(9447)] = 343056, - [SMALL_STATE(9448)] = 343070, - [SMALL_STATE(9449)] = 343084, - [SMALL_STATE(9450)] = 343098, - [SMALL_STATE(9451)] = 343112, - [SMALL_STATE(9452)] = 343126, - [SMALL_STATE(9453)] = 343140, - [SMALL_STATE(9454)] = 343154, - [SMALL_STATE(9455)] = 343168, - [SMALL_STATE(9456)] = 343182, - [SMALL_STATE(9457)] = 343196, - [SMALL_STATE(9458)] = 343210, - [SMALL_STATE(9459)] = 343224, - [SMALL_STATE(9460)] = 343238, - [SMALL_STATE(9461)] = 343252, - [SMALL_STATE(9462)] = 343266, - [SMALL_STATE(9463)] = 343280, - [SMALL_STATE(9464)] = 343294, - [SMALL_STATE(9465)] = 343308, - [SMALL_STATE(9466)] = 343322, - [SMALL_STATE(9467)] = 343336, - [SMALL_STATE(9468)] = 343350, - [SMALL_STATE(9469)] = 343364, - [SMALL_STATE(9470)] = 343378, - [SMALL_STATE(9471)] = 343392, - [SMALL_STATE(9472)] = 343406, - [SMALL_STATE(9473)] = 343420, - [SMALL_STATE(9474)] = 343434, - [SMALL_STATE(9475)] = 343448, - [SMALL_STATE(9476)] = 343462, - [SMALL_STATE(9477)] = 343476, - [SMALL_STATE(9478)] = 343490, - [SMALL_STATE(9479)] = 343504, - [SMALL_STATE(9480)] = 343518, - [SMALL_STATE(9481)] = 343532, - [SMALL_STATE(9482)] = 343546, - [SMALL_STATE(9483)] = 343560, - [SMALL_STATE(9484)] = 343574, - [SMALL_STATE(9485)] = 343588, - [SMALL_STATE(9486)] = 343602, - [SMALL_STATE(9487)] = 343616, - [SMALL_STATE(9488)] = 343630, - [SMALL_STATE(9489)] = 343644, - [SMALL_STATE(9490)] = 343658, - [SMALL_STATE(9491)] = 343672, - [SMALL_STATE(9492)] = 343686, - [SMALL_STATE(9493)] = 343700, - [SMALL_STATE(9494)] = 343714, - [SMALL_STATE(9495)] = 343728, - [SMALL_STATE(9496)] = 343742, - [SMALL_STATE(9497)] = 343756, - [SMALL_STATE(9498)] = 343770, - [SMALL_STATE(9499)] = 343784, - [SMALL_STATE(9500)] = 343798, - [SMALL_STATE(9501)] = 343812, - [SMALL_STATE(9502)] = 343826, - [SMALL_STATE(9503)] = 343840, - [SMALL_STATE(9504)] = 343854, - [SMALL_STATE(9505)] = 343868, - [SMALL_STATE(9506)] = 343882, - [SMALL_STATE(9507)] = 343896, - [SMALL_STATE(9508)] = 343910, - [SMALL_STATE(9509)] = 343924, - [SMALL_STATE(9510)] = 343938, - [SMALL_STATE(9511)] = 343952, - [SMALL_STATE(9512)] = 343966, - [SMALL_STATE(9513)] = 343980, - [SMALL_STATE(9514)] = 343994, - [SMALL_STATE(9515)] = 344008, - [SMALL_STATE(9516)] = 344022, - [SMALL_STATE(9517)] = 344036, - [SMALL_STATE(9518)] = 344050, - [SMALL_STATE(9519)] = 344064, - [SMALL_STATE(9520)] = 344078, - [SMALL_STATE(9521)] = 344092, - [SMALL_STATE(9522)] = 344106, - [SMALL_STATE(9523)] = 344120, - [SMALL_STATE(9524)] = 344134, - [SMALL_STATE(9525)] = 344148, - [SMALL_STATE(9526)] = 344162, - [SMALL_STATE(9527)] = 344176, - [SMALL_STATE(9528)] = 344190, - [SMALL_STATE(9529)] = 344204, - [SMALL_STATE(9530)] = 344218, - [SMALL_STATE(9531)] = 344232, - [SMALL_STATE(9532)] = 344246, - [SMALL_STATE(9533)] = 344260, - [SMALL_STATE(9534)] = 344274, - [SMALL_STATE(9535)] = 344288, - [SMALL_STATE(9536)] = 344302, - [SMALL_STATE(9537)] = 344316, - [SMALL_STATE(9538)] = 344330, - [SMALL_STATE(9539)] = 344344, - [SMALL_STATE(9540)] = 344358, - [SMALL_STATE(9541)] = 344372, - [SMALL_STATE(9542)] = 344386, - [SMALL_STATE(9543)] = 344400, - [SMALL_STATE(9544)] = 344414, - [SMALL_STATE(9545)] = 344428, - [SMALL_STATE(9546)] = 344442, - [SMALL_STATE(9547)] = 344456, - [SMALL_STATE(9548)] = 344470, - [SMALL_STATE(9549)] = 344484, - [SMALL_STATE(9550)] = 344498, - [SMALL_STATE(9551)] = 344512, - [SMALL_STATE(9552)] = 344526, - [SMALL_STATE(9553)] = 344540, - [SMALL_STATE(9554)] = 344554, - [SMALL_STATE(9555)] = 344568, - [SMALL_STATE(9556)] = 344582, - [SMALL_STATE(9557)] = 344596, - [SMALL_STATE(9558)] = 344610, - [SMALL_STATE(9559)] = 344624, - [SMALL_STATE(9560)] = 344638, - [SMALL_STATE(9561)] = 344652, - [SMALL_STATE(9562)] = 344666, - [SMALL_STATE(9563)] = 344680, - [SMALL_STATE(9564)] = 344694, - [SMALL_STATE(9565)] = 344708, - [SMALL_STATE(9566)] = 344722, - [SMALL_STATE(9567)] = 344736, - [SMALL_STATE(9568)] = 344750, - [SMALL_STATE(9569)] = 344764, - [SMALL_STATE(9570)] = 344778, - [SMALL_STATE(9571)] = 344792, - [SMALL_STATE(9572)] = 344806, - [SMALL_STATE(9573)] = 344820, - [SMALL_STATE(9574)] = 344834, - [SMALL_STATE(9575)] = 344848, - [SMALL_STATE(9576)] = 344862, - [SMALL_STATE(9577)] = 344876, - [SMALL_STATE(9578)] = 344890, - [SMALL_STATE(9579)] = 344904, - [SMALL_STATE(9580)] = 344918, - [SMALL_STATE(9581)] = 344932, - [SMALL_STATE(9582)] = 344946, - [SMALL_STATE(9583)] = 344960, - [SMALL_STATE(9584)] = 344974, - [SMALL_STATE(9585)] = 344988, - [SMALL_STATE(9586)] = 345002, - [SMALL_STATE(9587)] = 345016, - [SMALL_STATE(9588)] = 345030, - [SMALL_STATE(9589)] = 345044, - [SMALL_STATE(9590)] = 345058, - [SMALL_STATE(9591)] = 345072, - [SMALL_STATE(9592)] = 345086, - [SMALL_STATE(9593)] = 345100, - [SMALL_STATE(9594)] = 345114, - [SMALL_STATE(9595)] = 345128, - [SMALL_STATE(9596)] = 345142, - [SMALL_STATE(9597)] = 345156, - [SMALL_STATE(9598)] = 345170, - [SMALL_STATE(9599)] = 345184, - [SMALL_STATE(9600)] = 345198, - [SMALL_STATE(9601)] = 345212, - [SMALL_STATE(9602)] = 345226, - [SMALL_STATE(9603)] = 345240, - [SMALL_STATE(9604)] = 345254, - [SMALL_STATE(9605)] = 345268, - [SMALL_STATE(9606)] = 345282, - [SMALL_STATE(9607)] = 345296, - [SMALL_STATE(9608)] = 345310, - [SMALL_STATE(9609)] = 345324, - [SMALL_STATE(9610)] = 345338, - [SMALL_STATE(9611)] = 345352, - [SMALL_STATE(9612)] = 345366, - [SMALL_STATE(9613)] = 345380, - [SMALL_STATE(9614)] = 345394, - [SMALL_STATE(9615)] = 345408, - [SMALL_STATE(9616)] = 345422, - [SMALL_STATE(9617)] = 345436, - [SMALL_STATE(9618)] = 345450, - [SMALL_STATE(9619)] = 345464, - [SMALL_STATE(9620)] = 345478, - [SMALL_STATE(9621)] = 345492, - [SMALL_STATE(9622)] = 345506, - [SMALL_STATE(9623)] = 345520, - [SMALL_STATE(9624)] = 345534, - [SMALL_STATE(9625)] = 345548, - [SMALL_STATE(9626)] = 345562, - [SMALL_STATE(9627)] = 345576, - [SMALL_STATE(9628)] = 345590, - [SMALL_STATE(9629)] = 345604, - [SMALL_STATE(9630)] = 345618, - [SMALL_STATE(9631)] = 345632, - [SMALL_STATE(9632)] = 345646, - [SMALL_STATE(9633)] = 345660, - [SMALL_STATE(9634)] = 345674, - [SMALL_STATE(9635)] = 345688, - [SMALL_STATE(9636)] = 345702, - [SMALL_STATE(9637)] = 345716, - [SMALL_STATE(9638)] = 345730, - [SMALL_STATE(9639)] = 345744, - [SMALL_STATE(9640)] = 345758, - [SMALL_STATE(9641)] = 345772, - [SMALL_STATE(9642)] = 345786, - [SMALL_STATE(9643)] = 345800, - [SMALL_STATE(9644)] = 345814, - [SMALL_STATE(9645)] = 345828, - [SMALL_STATE(9646)] = 345842, - [SMALL_STATE(9647)] = 345856, - [SMALL_STATE(9648)] = 345870, - [SMALL_STATE(9649)] = 345884, - [SMALL_STATE(9650)] = 345898, - [SMALL_STATE(9651)] = 345912, - [SMALL_STATE(9652)] = 345926, - [SMALL_STATE(9653)] = 345940, - [SMALL_STATE(9654)] = 345954, - [SMALL_STATE(9655)] = 345968, - [SMALL_STATE(9656)] = 345982, - [SMALL_STATE(9657)] = 345996, - [SMALL_STATE(9658)] = 346010, - [SMALL_STATE(9659)] = 346024, - [SMALL_STATE(9660)] = 346038, - [SMALL_STATE(9661)] = 346052, - [SMALL_STATE(9662)] = 346066, - [SMALL_STATE(9663)] = 346080, - [SMALL_STATE(9664)] = 346094, - [SMALL_STATE(9665)] = 346108, - [SMALL_STATE(9666)] = 346122, - [SMALL_STATE(9667)] = 346136, - [SMALL_STATE(9668)] = 346150, - [SMALL_STATE(9669)] = 346164, - [SMALL_STATE(9670)] = 346178, - [SMALL_STATE(9671)] = 346192, - [SMALL_STATE(9672)] = 346206, - [SMALL_STATE(9673)] = 346220, - [SMALL_STATE(9674)] = 346234, - [SMALL_STATE(9675)] = 346248, - [SMALL_STATE(9676)] = 346262, - [SMALL_STATE(9677)] = 346276, - [SMALL_STATE(9678)] = 346290, - [SMALL_STATE(9679)] = 346304, - [SMALL_STATE(9680)] = 346318, - [SMALL_STATE(9681)] = 346332, - [SMALL_STATE(9682)] = 346346, - [SMALL_STATE(9683)] = 346360, - [SMALL_STATE(9684)] = 346374, - [SMALL_STATE(9685)] = 346388, - [SMALL_STATE(9686)] = 346402, - [SMALL_STATE(9687)] = 346416, - [SMALL_STATE(9688)] = 346430, - [SMALL_STATE(9689)] = 346444, - [SMALL_STATE(9690)] = 346458, - [SMALL_STATE(9691)] = 346472, - [SMALL_STATE(9692)] = 346486, - [SMALL_STATE(9693)] = 346500, - [SMALL_STATE(9694)] = 346514, - [SMALL_STATE(9695)] = 346528, - [SMALL_STATE(9696)] = 346542, - [SMALL_STATE(9697)] = 346556, - [SMALL_STATE(9698)] = 346570, - [SMALL_STATE(9699)] = 346584, - [SMALL_STATE(9700)] = 346598, - [SMALL_STATE(9701)] = 346612, - [SMALL_STATE(9702)] = 346626, - [SMALL_STATE(9703)] = 346640, - [SMALL_STATE(9704)] = 346654, - [SMALL_STATE(9705)] = 346668, - [SMALL_STATE(9706)] = 346682, - [SMALL_STATE(9707)] = 346696, - [SMALL_STATE(9708)] = 346710, - [SMALL_STATE(9709)] = 346724, - [SMALL_STATE(9710)] = 346738, - [SMALL_STATE(9711)] = 346752, - [SMALL_STATE(9712)] = 346766, - [SMALL_STATE(9713)] = 346780, - [SMALL_STATE(9714)] = 346794, - [SMALL_STATE(9715)] = 346808, - [SMALL_STATE(9716)] = 346822, - [SMALL_STATE(9717)] = 346836, - [SMALL_STATE(9718)] = 346850, - [SMALL_STATE(9719)] = 346864, - [SMALL_STATE(9720)] = 346878, - [SMALL_STATE(9721)] = 346892, - [SMALL_STATE(9722)] = 346906, - [SMALL_STATE(9723)] = 346920, - [SMALL_STATE(9724)] = 346934, - [SMALL_STATE(9725)] = 346948, - [SMALL_STATE(9726)] = 346962, - [SMALL_STATE(9727)] = 346976, - [SMALL_STATE(9728)] = 346990, - [SMALL_STATE(9729)] = 347004, - [SMALL_STATE(9730)] = 347018, - [SMALL_STATE(9731)] = 347032, - [SMALL_STATE(9732)] = 347046, - [SMALL_STATE(9733)] = 347060, - [SMALL_STATE(9734)] = 347074, - [SMALL_STATE(9735)] = 347088, - [SMALL_STATE(9736)] = 347102, - [SMALL_STATE(9737)] = 347116, - [SMALL_STATE(9738)] = 347130, - [SMALL_STATE(9739)] = 347144, - [SMALL_STATE(9740)] = 347158, - [SMALL_STATE(9741)] = 347172, - [SMALL_STATE(9742)] = 347186, - [SMALL_STATE(9743)] = 347200, - [SMALL_STATE(9744)] = 347214, - [SMALL_STATE(9745)] = 347228, - [SMALL_STATE(9746)] = 347242, - [SMALL_STATE(9747)] = 347256, - [SMALL_STATE(9748)] = 347270, - [SMALL_STATE(9749)] = 347284, - [SMALL_STATE(9750)] = 347298, - [SMALL_STATE(9751)] = 347312, - [SMALL_STATE(9752)] = 347326, - [SMALL_STATE(9753)] = 347340, - [SMALL_STATE(9754)] = 347354, - [SMALL_STATE(9755)] = 347368, - [SMALL_STATE(9756)] = 347382, - [SMALL_STATE(9757)] = 347396, - [SMALL_STATE(9758)] = 347410, - [SMALL_STATE(9759)] = 347424, - [SMALL_STATE(9760)] = 347428, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6653), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7336), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8223), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8218), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, .production_id = 21), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 2, .production_id = 21), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7801), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8258), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7305), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7883), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6721), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7421), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8307), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8223), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9759), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6618), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6664), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7829), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8276), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 1), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 1), - [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6643), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7674), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8202), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 4), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 4), - [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 3), - [547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 3), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7674), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7320), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure, 2), - [573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure, 2), - [575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 1), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9494), - [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9675), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9484), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8871), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8945), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9480), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9480), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9479), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9450), - [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9472), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9472), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9469), - [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9665), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5560), - [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8522), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8520), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9701), - [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9525), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9439), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9699), - [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9531), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9478), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9493), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9483), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9482), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9691), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9676), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9620), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9683), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8591), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9326), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9550), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9679), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8988), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9117), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9695), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9603), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9549), - [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9703), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9485), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9412), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8415), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9685), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9291), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9684), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9652), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9454), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9452), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9681), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9086), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9240), - [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9026), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9687), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9680), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9752), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8505), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8410), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9621), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9749), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9504), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9693), - [857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9639), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9585), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8938), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9052), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9659), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9050), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9689), - [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9753), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9672), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9669), - [909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5590), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8339), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8508), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9237), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9707), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9206), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9324), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9640), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8438), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9455), - [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6626), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), - [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7795), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8093), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), - [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6614), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8054), - [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_expression, 3, .production_id = 39), - [1121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infix_expression, 3, .production_id = 39), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7896), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9255), - [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_then_clause, 2), - [1145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_then_clause, 2), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [1157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [1159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [1161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_expression, 3, .production_id = 40), - [1163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_expression, 3, .production_id = 40), - [1165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_expression, 3, .production_id = 35), - [1167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_expression, 3, .production_id = 35), - [1169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_product_expression, 3, .production_id = 37), - [1171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_product_expression, 3, .production_id = 37), - [1173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_expression, 2, .production_id = 18), - [1175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sign_expression, 2, .production_id = 18), - [1177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), - [1179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_expression, 3, .production_id = 37), - [1181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_expression, 3, .production_id = 37), - [1183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_expression_ext, 1), - [1185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sequence_expression_ext, 1), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8322), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8079), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), - [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8703), - [1241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9289), - [1259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7953), - [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6320), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9110), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8139), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8959), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [1301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1492), - [1304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), - [1306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7953), - [1309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(77), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), - [1314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1051), - [1317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1435), - [1320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2143), - [1323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5050), - [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1059), - [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6666), - [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7108), - [1335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(345), - [1338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1407), - [1341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7674), - [1344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7320), - [1347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1436), - [1350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6383), - [1353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5608), - [1356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2483), - [1359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1437), - [1362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8202), - [1365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_application_expression, 2, .production_id = 20), - [1367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_application_expression, 2, .production_id = 20), - [1369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1495), - [1372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7896), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(83), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1060), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1612), - [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2101), - [1387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5008), - [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1061), - [1393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6759), - [1396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6958), - [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(326), - [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1548), - [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7801), - [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7292), - [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1617), - [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6428), - [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5557), - [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2504), - [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1618), - [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8258), - [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [1431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1679), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(79), - [1443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1068), - [1446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1697), - [1449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2108), - [1452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4998), - [1455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1018), - [1458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6737), - [1461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6988), - [1464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(375), - [1467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1701), - [1470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7658), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7305), - [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1691), - [1479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6411), - [1482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5541), - [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2447), - [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1717), - [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7883), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [1502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1571), - [1505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8139), - [1508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(90), - [1511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1007), - [1514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1577), - [1517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2110), - [1520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5004), - [1523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1009), - [1526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6664), - [1529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7110), - [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(331), - [1535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1541), - [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7829), - [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7295), - [1544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1576), - [1547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6414), - [1550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5602), - [1553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2461), - [1556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1575), - [1559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8276), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [1586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1830), - [1589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8079), - [1592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(91), - [1595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1045), - [1598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1791), - [1601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2147), - [1604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4966), - [1607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(970), - [1610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6721), - [1613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6994), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(350), - [1619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1843), - [1622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7421), - [1625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7314), - [1628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1777), - [1631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6386), - [1634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5564), - [1637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2452), - [1640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1803), - [1643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8307), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1911), - [1651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(68), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1019), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1850), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2150), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5045), - [1666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(972), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6654), - [1672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7120), - [1675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(336), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1853), - [1681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7328), - [1684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7336), - [1687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1854), - [1690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6420), - [1693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5543), - [1696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2331), - [1699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1855), - [1702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8218), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8299), - [1711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6345), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8839), - [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [1721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8175), - [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8693), - [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [1749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [1777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [1783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), - [1793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [1795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [1801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [1803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7801), - [1807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), - [1809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), - [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), - [1817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [1819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), - [1821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [1825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [1831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [1845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), - [1849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [1851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [1853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [1855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [1857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [1861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [1863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [1865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [1867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [1881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [1897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [1903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), - [1905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [1909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), - [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [1949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [1979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), - [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), - [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [2039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), - [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_expression, 3, .production_id = 17), - [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 4, .production_id = 67), - [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, .production_id = 48), - [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), - [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [2123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7994), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8072), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6714), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6992), - [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8609), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9467), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), - [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7986), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9671), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8665), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9677), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7105), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8799), - [2227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9029), - [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9697), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9590), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9524), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [2265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [2275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [2295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [2297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9663), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7022), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8731), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [2305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [2335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2493), - [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8299), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(80), - [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(989), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2321), - [2350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2093), - [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5003), - [2356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(990), - [2359] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6804), - [2362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6968), - [2365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(347), - [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2486), - [2371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7795), - [2374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7296), - [2377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2323), - [2380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6390), - [2383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5529), - [2386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2309), - [2389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2326), - [2392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8093), - [2395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2528), - [2398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8175), - [2401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(92), - [2404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(979), - [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2622), - [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2131), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5011), - [2416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(981), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6614), - [2422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7198), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(332), - [2428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2554), - [2431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7770), - [2434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7298), - [2437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2620), - [2440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6387), - [2443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5582), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2463), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2569), - [2452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8054), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9673), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7073), - [2469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8661), - [2471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [2475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8800), - [2477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9623), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), - [2483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9082), - [2485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9083), - [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7829), - [2490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7295), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1), - [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9514), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6676), - [2509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9509), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7916), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [2533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 1, .production_id = 4), - [2535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 1, .production_id = 4), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8059), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9068), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7011), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9069), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3357), - [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8016), - [2599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(66), - [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1038), - [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3360), - [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2126), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4965), - [2614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1036), - [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6647), - [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7143), - [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(335), - [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3400), - [2629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7771), - [2632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7283), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3372), - [2638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6380), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5570), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2345), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3373), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8207), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_application, 2, .production_id = 57), - [2657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_application, 2, .production_id = 57), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8016), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6647), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7771), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8207), - [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_expression, 1), - [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_expression, 1), - [2701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3531), - [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(69), - [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1016), - [2710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3441), - [2713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2151), - [2716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5005), - [2719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1037), - [2722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6757), - [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6964), - [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(365), - [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3533), - [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7824), - [2737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7294), - [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3443), - [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6424), - [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5533), - [2749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2341), - [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3444), - [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8308), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7824), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8308), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8028), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7765), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7282), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8186), - [2836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3677), - [2839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8028), - [2842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(74), - [2845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1004), - [2848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3578), - [2851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2120), - [2854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5010), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1020), - [2860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6600), - [2863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7212), - [2866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(324), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3617), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7765), - [2875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7282), - [2878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3582), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6389), - [2884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5580), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2318), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3614), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8186), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 2, .production_id = 14), - [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 2, .production_id = 14), - [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7903), - [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8532), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7077), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8431), - [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), - [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7557), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5595), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7950), - [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 95), - [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 95), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 2, .production_id = 29), - [2948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 2, .production_id = 29), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 1, .production_id = 14), - [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 1, .production_id = 14), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 109), - [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 109), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 29), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 29), - [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [2970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 71), - [2972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 71), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [2976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 71), - [2978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 71), - [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [2982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 109), - [2984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 109), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 95), - [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 95), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), - [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), - [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [3014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), - [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3713), - [3019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), - [3021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7903), - [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1027), - [3027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8532), - [3030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2138), - [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3705), - [3036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6736), - [3039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7077), - [3042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2146), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8431), - [3048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7557), - [3051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7308), - [3054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3707), - [3057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6403), - [3060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5595), - [3063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3532), - [3066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7950), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_path, 1, .production_id = 11), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 1, .production_id = 11), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8156), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8351), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6682), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8497), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7792), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7290), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8237), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_get_expression, 3), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_get_expression, 3), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bigarray_get_expression, 6), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bigarray_get_expression, 6), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [3127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_get_expression, 6), - [3129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_get_expression, 6), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_get_expression, 5), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_get_expression, 5), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_get_expression, 5), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_get_expression, 5), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bigarray_get_expression, 5), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bigarray_get_expression, 5), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_path, 3, .production_id = 49), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_path, 3, .production_id = 49), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_get_expression, 6), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_get_expression, 6), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 2), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 2), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_prefix_expression, 2, .production_id = 18), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_prefix_expression, 2, .production_id = 18), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 5), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 5), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 5), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 5), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 6), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 6), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 6), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 6), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 6), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 6), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_path, 1), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_path, 1), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 9), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 9), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 6), - [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 6), - [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_expression, 1), - [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_expression, 1), - [3205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3911), - [3208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8127), - [3211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(81), - [3214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(1041), - [3217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3929), - [3220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2136), - [3223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4976), - [3226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(967), - [3229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6615), - [3232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7192), - [3235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(354), - [3238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(4034), - [3241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7735), - [3244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(7300), - [3247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3961), - [3250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(6433), - [3253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(5591), - [3256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(2424), - [3259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(3320), - [3262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 2, .production_id = 38), SHIFT_REPEAT(8176), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8127), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7735), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), - [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8176), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 7), - [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 7), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 8), - [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 8), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 7), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 7), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 5), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 5), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 7), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 7), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 2), - [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 2), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 5), - [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 5), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 5), - [3339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 5), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2), - [3343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_coercion_expression, 5), - [3347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_coercion_expression, 5), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 7), - [3351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 7), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 6), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 6), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 5), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 5), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 4), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 4), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_path, 1, .production_id = 16), - [3367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_path, 1, .production_id = 16), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 8), - [3371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 8), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 3), - [3375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 3), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), - [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), - [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1), - [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1), - [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 1, .production_id = 3), - [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 1, .production_id = 3), - [3393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_path, 1, .production_id = 2), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extension, 1), - [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extension, 1), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 4), - [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 4), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 2), - [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 2), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 6), - [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 6), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constant, 1), - [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constant, 1), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_name, 1), - [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_name, 1), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit, 2), - [3427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit, 2), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [3431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag, 2), - [3435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag, 2), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_path, 3, .production_id = 61), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_path, 3, .production_id = 61), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__argument, 1), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__argument, 1), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 3, .production_id = 23), - [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 3, .production_id = 23), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_operator, 3), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_operator, 3), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4), - [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 5, .production_id = 82), - [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 5, .production_id = 82), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 4), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 4), - [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 4), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 4), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 4), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 4), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_extension, 5), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_extension, 5), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_expression, 4), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_expression, 4), - [3481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_expression, 4), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_expression, 4), - [3485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension, 4), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension, 4), - [3489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_path, 3), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_path, 3), - [3493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_expression, 3), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_expression, 3), - [3497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_expression, 3, .production_id = 37), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_expression, 3, .production_id = 37), - [3501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_invocation, 3, .production_id = 36), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_invocation, 3, .production_id = 36), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_copy_expression, 3), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_copy_expression, 3), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3), - [3513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [3521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_expression, 3), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_expression, 3), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_path, 3, .production_id = 42), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_path, 3, .production_id = 42), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_path, 3, .production_id = 41), - [3531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_character, 3), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character, 3), - [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extension, 3), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extension, 3), - [3539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_string, 5), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string, 5), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_string, 4), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string, 4), - [3547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_expression, 3), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_expression, 3), - [3551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_name, 1, .production_id = 1), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_name, 1, .production_id = 1), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_expression, 3), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_expression, 3), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 1), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 1), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [3583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3840), - [3586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8156), - [3589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1040), - [3592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8351), - [3595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2127), - [3598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3869), - [3601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6682), - [3604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7002), - [3607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2128), - [3610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8497), - [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7792), - [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7290), - [3619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3861), - [3622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6407), - [3625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5562), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3760), - [3631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8237), - [3634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__label, 2, .production_id = 33), - [3636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__label, 2, .production_id = 33), - [3638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern, 1), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9502), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9502), - [3646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_pattern, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_argument, 5, .production_id = 104), - [3654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_argument, 5, .production_id = 104), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [3658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_application_repeat1, 1, .production_id = 19), - [3660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_application_repeat1, 1, .production_id = 19), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [3674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8748), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6604), - [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [3686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8531), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), - [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8063), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [3710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 78), - [3712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 78), - [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [3716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [3718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 78), - [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [3722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 58), - [3724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 58), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [3728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [3730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 58), - [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [3734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 31), - [3736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 31), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 2, .production_id = 31), - [3742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 2, .production_id = 31), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4199), - [3749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(8059), - [3752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(1057), - [3755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(9068), - [3758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(9068), - [3761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2122), - [3764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4218), - [3767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6755), - [3770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7004), - [3773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(2129), - [3776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(9069), - [3779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7318), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7316), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(4221), - [3788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(6391), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(5601), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(3274), - [3797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 2), SHIFT_REPEAT(7986), - [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9185), - [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6663), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 1), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [3848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [3850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), - [3856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [3858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8111), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6673), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), - [3874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), - [3876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6698), - [3880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [3882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9064), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6630), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [3892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [3894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8745), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), - [3906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [3908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [3912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1150), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6646), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6762), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8618), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9566), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8907), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [3988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 4, .production_id = 62), - [3990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 4, .production_id = 62), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [3994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 37), - [3996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sequence_expression, 3, .production_id = 37), - [3998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), - [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6756), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7909), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6029), - [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [4066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sequence_expression, 1), - [4068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sequence_expression, 1), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [4072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6098), - [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [4080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [4098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6213), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6015), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), - [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7106), - [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8140), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7515), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [4180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6795), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7060), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8273), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6758), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), - [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6397), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8224), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9453), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8759), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9068), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6319), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6340), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [4506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attribute_id_repeat1, 2), - [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), - [4510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(8073), - [4513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_id, 1), - [4515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_id, 1), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8073), - [4519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_id, 2), - [4521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_id, 2), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [4529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), - [4531] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat1, 2), - [4533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), SHIFT_REPEAT(2735), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 1), - [4548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat1, 1), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [4556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 2), - [4558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 2), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9273), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 2), - [4566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 2), - [4568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_expression, 3), - [4570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_expression, 3), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_expression, 3), - [4574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_expression, 3), - [4576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signed_constant, 1), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__signed_constant, 1), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5667), - [4582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signed_number, 2), - [4584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signed_number, 2), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9364), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8315), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern_ext, 1), - [4602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern_ext, 1), - [4604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 5), - [4606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 5), - [4608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 6), - [4610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 6), - [4612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binding_pattern, 1, .production_id = 7), - [4614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binding_pattern, 1, .production_id = 7), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9027), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 2), - [4624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 2), - [4626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_pattern, 2), - [4628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_pattern, 2), - [4630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 2), - [4632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 2), - [4634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_binding_pattern, 2), - [4636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_binding_pattern, 2), - [4638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_binding_pattern, 2, .production_id = 22), - [4640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_binding_pattern, 2, .production_id = 22), - [4642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_binding_pattern, 2, .production_id = 22), - [4644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_binding_pattern, 2, .production_id = 22), - [4646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_path, 1, .production_id = 10), - [4648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_path, 1, .production_id = 10), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_binding_pattern, 3), - [4654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_binding_pattern, 3), - [4656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 3), - [4658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 3), - [4660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 3), - [4662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 3), - [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constructor_path, 3, .production_id = 47), - [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constructor_path, 3, .production_id = 47), - [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 3), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 3), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_binding_pattern, 3), - [4674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_binding_pattern, 3), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_binding_pattern, 3), - [4678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_binding_pattern, 3), - [4680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_binding_pattern, 3), - [4682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_binding_pattern, 3), - [4684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_binding_pattern, 3), - [4686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_binding_pattern, 3), - [4688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_binding_pattern, 3), - [4690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_binding_pattern, 3), - [4692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3), - [4694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3), - [4696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 3), - [4698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 3), - [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 4, .production_id = 41), - [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 4, .production_id = 41), - [4704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_binding_pattern, 4, .production_id = 22), - [4706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_binding_pattern, 4, .production_id = 22), - [4708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 4), - [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 4), - [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 4), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 4), - [4716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 4), - [4718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 4), - [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 4), - [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 4), - [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 5, .production_id = 83), - [4726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 5, .production_id = 83), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_binding_pattern, 5), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_binding_pattern, 5), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 5), - [4734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 5), - [4736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_binding_pattern, 5), - [4738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_binding_pattern, 5), - [4740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_binding_pattern, 5), - [4742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_binding_pattern, 5), - [4744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 5, .production_id = 41), - [4746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 5, .production_id = 41), - [4748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 7), - [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 7), - [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_binding_pattern, 6), - [4754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_binding_pattern, 6), - [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_pattern, 6, .production_id = 83), - [4758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_pattern, 6, .production_id = 83), - [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_cases_repeat1, 2), - [4762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4), - [4766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4), - [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 2), - [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 2), - [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 2), - [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 2), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 34), - [4780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 34), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 5, .production_id = 81), - [4786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 5, .production_id = 81), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 3), - [4790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 3), - [4792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2078), - [4795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 5), - [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 5), - [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 4), - [4801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 4), - [4803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5), - [4805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5), - [4807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 3), - [4809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 3), - [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 5, .production_id = 60), - [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 5, .production_id = 60), - [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 6, .production_id = 103), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 6, .production_id = 103), - [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_cases, 1), - [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_cases, 1), - [4823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, .production_id = 119), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, .production_id = 119), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 8, .production_id = 130), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 8, .production_id = 130), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 60), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 60), - [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 4, .production_id = 63), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 4, .production_id = 63), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_case, 3, .production_id = 44), - [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_case, 3, .production_id = 44), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_refutation_case, 1), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_refutation_case, 1), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, .production_id = 34), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, .production_id = 34), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 4, .production_id = 60), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 4, .production_id = 60), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_clause, 2), - [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_clause, 2), - [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_expression, 3), - [4865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_expression, 3), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 34), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 34), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fun_expression, 4, .production_id = 43), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fun_expression, 4, .production_id = 43), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_expression, 4, .production_id = 43), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_expression, 4, .production_id = 43), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_module_expression, 4, .production_id = 43), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_module_expression, 4, .production_id = 43), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_exception_expression, 4, .production_id = 43), - [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_exception_expression, 4, .production_id = 43), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2076), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2077), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2091), - [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [4906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), - [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [4922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2102), - [4929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2115), - [4932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6369), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9714), - [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), - [4960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [4964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [4966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [4968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), - [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [4972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [4974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7926), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [4996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8157), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), - [5016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, .production_id = 32), - [5018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, .production_id = 32), - [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9044), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 4), - [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 4), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_let_binding_repeat1, 1), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_let_binding_repeat1, 1), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter, 1), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter, 1), - [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), - [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9728), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_pattern_ext, 1), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_pattern_ext, 1), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, .production_id = 4), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, .production_id = 4), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_expression, 1), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_expression, 1), - [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_abstract_type, 3), - [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_abstract_type, 3), - [5060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, .production_id = 59), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, .production_id = 59), - [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_class_expression, 3), - [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_class_expression, 3), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, .production_id = 80), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, .production_id = 80), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_class_expression, 4), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_class_expression, 4), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 3), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class, 4), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class, 4), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 5, .production_id = 80), - [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 5, .production_id = 80), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class, 5), - [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class, 5), - [5098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 7), - [5100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 7), - [5102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 6), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 6), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 5), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 5), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 5), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 5), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 6, .production_id = 80), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 6, .production_id = 80), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 5), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 5), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 5), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 5), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 4), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 80), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, .production_id = 80), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 4), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 4), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 4), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 4), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_pattern, 4), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_pattern, 4), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 7, .production_id = 84), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 7, .production_id = 84), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 8, .production_id = 84), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 8, .production_id = 84), - [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_pattern, 1, .production_id = 15), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_pattern, 1, .production_id = 15), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value_pattern, 1), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value_pattern, 1), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_local_open_pattern, 3), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_local_open_pattern, 3), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 3), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_pattern, 3), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_pattern, 3), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_pattern, 3), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_pattern, 3), - [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7951), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [5206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), - [5232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_toplevel_directive, 1), - [5234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_toplevel_directive, 1), - [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9280), - [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9063), - [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8147), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9654), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), - [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6594), - [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7931), - [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9636), - [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8518), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [5328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2080), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [5337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor, 4, .production_id = 43), - [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor, 4, .production_id = 43), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_variable, 2), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_variable, 2), - [5351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2119), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_of, 4), - [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_of, 4), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sign_operator, 1), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sign_operator, 1), - [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__add_operator, 1), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [5382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type, 1), - [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__tuple_type, 1), - [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6316), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9138), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2735), - [5399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2130), - [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6638), - [5405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5842), - [5408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), - [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6429), - [5413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6468), - [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5361), - [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(5587), - [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6471), - [5425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(7326), - [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(7418), - [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(7373), - [5434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2415), - [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(8223), - [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pow_operator, 1), - [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pow_operator, 1), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [5448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [5450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_ext, 1), - [5452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__or_operator, 1), - [5454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__or_operator, 1), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [5458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__add_operator, 1), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8544), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [5464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__mult_operator, 1), - [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mult_operator, 1), - [5468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__attribute, 2), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__attribute, 2), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__and_operator, 1), - [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__and_operator, 1), - [5476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__assign_operator, 1), - [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assign_operator, 1), - [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9066), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9344), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [5490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [5498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2103), - [5501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(6469), - [5504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 2), SHIFT_REPEAT(2470), - [5507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_ext, 1), - [5509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_ext, 1), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_aliased_type, 3), - [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_aliased_type, 3), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9667), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8336), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9479), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9469), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [5531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4296), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8297), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, .production_id = 51), - [5585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 3, .production_id = 51), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 69), - [5591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 69), - [5593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_path, 3, .production_id = 97), - [5595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_path, 3, .production_id = 97), - [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, .production_id = 93), - [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 5, .production_id = 93), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_path, 1, .production_id = 55), - [5605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_path, 1, .production_id = 55), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 4), - [5621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 4), - [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 2), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 2), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature, 1), - [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5937), - [5650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6663), - [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5843), - [5656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), - [5658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6419), - [5661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6451), - [5664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5361), - [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(5410), - [5670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6575), - [5673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(6713), - [5676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(7326), - [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(7418), - [5682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 2), SHIFT_REPEAT(7373), - [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 3), - [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 3), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7891), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_path, 3, .production_id = 41), - [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 2), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 2), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_expression, 1), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_expression, 1), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9200), - [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2107), - [5712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7891), - [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_path, 1, .production_id = 2), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature, 2), - [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 3), - [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 3), - [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_module_expression_ext, 1), - [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_module_expression_ext, 1), - [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 5), - [5733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 5), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_module_expression, 4), - [5741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typed_module_expression, 4), - [5743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 4), - [5745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 4), - [5747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 2), - [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 2), - [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 6), - [5753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 6), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 7), - [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 7), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 6), - [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 6), - [5763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [5765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_expression, 3), - [5767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_expression, 3), - [5769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [5771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 7), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 7), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 2), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 2), - [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2148), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 3), - [5790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 3), - [5792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_module_expression, 1), - [5794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_module_expression, 1), - [5796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_application, 2, .production_id = 28), - [5798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_application, 2, .production_id = 28), - [5800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [5802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [5804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_application, 3, .production_id = 53), - [5806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_application, 3, .production_id = 53), - [5808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 2), - [5810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 2), - [5812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 2), - [5814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 2), - [5816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 4), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 4), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_type, 5), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_type, 5), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 4), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 4), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 5), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 5), - [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_variant_type, 3), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_variant_type, 3), - [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructed_type, 5), - [5844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructed_type, 5), - [5846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_type, 1), - [5848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_type, 1), - [5850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_packed_module, 5), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_packed_module, 5), - [5854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_type, 4), - [5856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_type, 4), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure, 3), - [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure, 3), - [5862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [5864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [5866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_type, 6), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_type, 6), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 6, .production_id = 26), - [5872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 6, .production_id = 26), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_argument, 1), - [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), - [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 3), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 3), - [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 4, .production_id = 26), - [5892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 4, .production_id = 26), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [5896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 23), - [5898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 5, .production_id = 23), - [5900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 5, .production_id = 3), - [5902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 5, .production_id = 3), - [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 23), - [5906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 7, .production_id = 23), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, .production_id = 25), - [5910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 2, .production_id = 25), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_path, 3, .production_id = 92), - [5920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_path, 3, .production_id = 92), - [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 3, .production_id = 41), - [5924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 1, .production_id = 9), - [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 1, .production_id = 9), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [5932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 4), - [5934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 4), - [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_argument, 1), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [5940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 1), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extended_module_path, 1, .production_id = 2), - [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 1, .production_id = 2), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8163), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [5974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extended_module_path, 3, .production_id = 41), - [5976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2125), - [5979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 1, .production_id = 13), - [5981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 1, .production_id = 13), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_cases_repeat1, 2), SHIFT_REPEAT(2116), - [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), - [6000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_path, 1, .production_id = 52), - [6002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_path, 1, .production_id = 52), - [6004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module, 4), - [6006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_module, 4), - [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8050), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8545), - [6012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 2, .production_id = 13), - [6014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 2, .production_id = 13), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [6018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [6044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_expression_ext, 1), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_expression_ext, 1), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8780), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), - [6072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_class_expression, 3, .production_id = 40), - [6074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_class_expression, 3, .production_id = 40), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9130), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9343), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9119), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8965), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8801), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [6106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type_ext, 1), - [6108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [6110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type_ext, 1), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8437), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6005), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8649), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [6122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), - [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_binding_repeat1, 2), - [6126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), SHIFT_REPEAT(7599), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9732), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_directive, 2), - [6135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_directive, 2), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9144), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8361), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8367), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8433), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function, 4, .production_id = 43), - [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function, 4, .production_id = 43), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8926), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9750), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_class_expression, 4, .production_id = 43), - [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_class_expression, 4, .production_id = 43), - [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9090), - [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), - [6175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), - [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8561), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 1), - [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_binding_repeat1, 1), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8542), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [6193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 8, .production_id = 26), - [6195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 8, .production_id = 26), - [6197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_module_type, 3), - [6199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_module_type, 3), - [6201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 7, .production_id = 3), - [6203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 7, .production_id = 3), - [6205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), - [6207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), - [6209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 4), - [6211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 4), - [6213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 1), - [6215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 1), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7902), - [6219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9046), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [6223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 1, .production_id = 3), - [6225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 1, .production_id = 3), - [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [6233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_type, 1), - [6235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_type, 1), - [6237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), - [6239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_binding_repeat1, 2), - [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(4274), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 5), - [6246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 5), - [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_module_type, 5), - [6250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_module_type, 5), - [6252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 3), - [6254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 3), - [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(8122), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), - [6263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), - [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(7532), - [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrain_type, 3), - [6270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constrain_type, 3), - [6272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 9, .production_id = 23), - [6274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 9, .production_id = 23), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8122), - [6278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2), - [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2), - [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [6284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [6288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_open_class_type, 4, .production_id = 43), - [6290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_open_class_type, 4, .production_id = 43), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 3), - [6294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 3), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class_type, 4), - [6298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class_type, 4), - [6300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_constraint, 4), - [6302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_constraint, 4), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8151), - [6306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_type_ext, 1), - [6308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_type_ext, 1), - [6310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 6), - [6312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 6), - [6314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 2, .production_id = 9), - [6316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 2, .production_id = 9), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [6322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_class_type, 1), - [6324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_class_type, 1), - [6326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_parameter, 4, .production_id = 91), - [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_parameter, 4, .production_id = 91), - [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_equation, 3), - [6332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_equation, 3), - [6334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_parameter, 2), - [6336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_parameter, 2), - [6338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 25), - [6340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 25), - [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5616), - [6346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_equation, 2), - [6348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_equation, 2), - [6350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 2), - [6352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 2), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [6360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body_type, 5), - [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body_type, 5), - [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 1), - [6366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_binding_repeat1, 1), - [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiated_class_type, 5), - [6370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiated_class_type, 5), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [6406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(7525), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_attribute, 4), - [6415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_attribute, 4), - [6417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 46), - [6419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 46), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_attribute, 3), - [6423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_attribute, 3), - [6425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 9), - [6427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 9), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5516), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 1), - [6437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_item_repeat1, 1), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 3, .production_id = 13), - [6441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 3, .production_id = 13), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 64), - [6487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 64), - [6489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 2, .production_id = 26), - [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 2, .production_id = 26), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6861), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_declaration, 3, .production_id = 23), - [6504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_declaration, 3, .production_id = 23), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6956), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [6512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 107), - [6514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 107), - [6516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 4), - [6518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_constraint, 4), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 107), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 107), - [6526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 88), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 88), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 87), - [6532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 87), - [6534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 64), - [6536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 64), - [6538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 46), - [6540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 46), - [6542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 65), - [6544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 65), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 25), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 25), - [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_constraint, 3), - [6552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_constraint, 3), - [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 65), - [6560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 65), - [6562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 88), - [6564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 88), - [6566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 87), - [6568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 87), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [6578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 5), - [6580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 5), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, .production_id = 105), - [6584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 7, .production_id = 105), - [6586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_typed, 2), - [6588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module_typed, 2), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6901), - [6594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 2, .production_id = 4), - [6596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 2, .production_id = 4), - [6598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_argument, 2), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_argument, 2), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), - [6606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_type, 4), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_type, 4), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 4), - [6612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 4), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [6616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(5018), - [6619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, .production_id = 105), - [6621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 6, .production_id = 105), - [6623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 6, .production_id = 85), - [6625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 6, .production_id = 85), - [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(4329), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8101), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9334), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), - [6636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functor_type, 3), - [6638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functor_type, 3), - [6640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_declaration, 3), - [6642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_declaration, 3), - [6644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 6), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 6), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [6650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, .production_id = 63), - [6652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 5, .production_id = 63), - [6654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 5, .production_id = 85), - [6656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 5, .production_id = 85), - [6658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 7, .production_id = 120), - [6660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 7, .production_id = 120), - [6662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 8, .production_id = 120), - [6664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 8, .production_id = 120), - [6666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, .production_id = 44), - [6668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, .production_id = 44), - [6670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 4, .production_id = 63), - [6672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 4, .production_id = 63), - [6674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 5), - [6676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 5), - [6678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_binding, 3, .production_id = 44), - [6680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_binding, 3, .production_id = 44), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8018), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 122), - [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 122), - [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(8018), - [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_attribute, 4), - [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_attribute, 4), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 7, .production_id = 131), - [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 7, .production_id = 131), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 7, .production_id = 121), - [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 7, .production_id = 121), - [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 2), - [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 2), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6781), - [6727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 9), - [6729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 9), - [6731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 66), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 66), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 67), - [6737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 67), - [6739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, .production_id = 48), - [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 4, .production_id = 48), - [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 5, .production_id = 68), - [6745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 5, .production_id = 68), - [6747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 51), - [6749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 51), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 4, .production_id = 13), - [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 4, .production_id = 13), - [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 8, .production_id = 107), - [6757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 8, .production_id = 107), - [6759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 3, .production_id = 70), - [6761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 3, .production_id = 70), - [6763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 72), - [6765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 72), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [6771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 123), - [6773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 123), - [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 11, .production_id = 142), - [6777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 11, .production_id = 142), - [6779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 54), - [6781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 54), - [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 142), - [6785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 142), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__item_extension, 1), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__item_extension, 1), - [6797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 71), - [6799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 71), - [6801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 73), - [6803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 73), - [6805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 14), - [6807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 14), - [6809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 4, .production_id = 29), - [6811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 4, .production_id = 29), - [6813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 140), - [6815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 140), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 10, .production_id = 139), - [6823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 10, .production_id = 139), - [6825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 9, .production_id = 138), - [6827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 9, .production_id = 138), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 14), - [6835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 14), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [6841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 109), - [6843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 109), - [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, .production_id = 48), - [6847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 3, .production_id = 48), - [6849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 134), - [6851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 134), - [6853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 46), - [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 46), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variant_declaration, 3), - [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variant_declaration, 3), - [6861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 95), - [6863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 95), - [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), - [6867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), - [6869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), SHIFT_REPEAT(6781), - [6872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 25), - [6874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 25), - [6876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 89), - [6878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 89), - [6880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 66), - [6882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 66), - [6884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 5, .production_id = 67), - [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 5, .production_id = 67), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 6, .production_id = 90), - [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 6, .production_id = 90), - [6896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 132), - [6898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 132), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [6904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_typed, 2), - [6906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_typed, 2), - [6908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 5, .production_id = 75), - [6910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 5, .production_id = 75), - [6912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 5, .production_id = 69), - [6914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 5, .production_id = 69), - [6916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 4, .production_id = 94), - [6918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 4, .production_id = 94), - [6920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 4, .production_id = 70), - [6922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 4, .production_id = 70), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [6926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 72), - [6928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 72), - [6930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 96), - [6932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 96), - [6934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 29), - [6936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 29), - [6938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 110), - [6940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 110), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_floating_attribute, 3), - [6944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_floating_attribute, 3), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [6950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 3), - [6952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 3), - [6954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_type, 1), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__class_type, 1), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 73), - [6966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 73), - [6968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 5, .production_id = 98), - [6970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 5, .production_id = 98), - [6972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 140), - [6974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 140), - [6976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 134), - [6978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 134), - [6980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 109), - [6982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 109), - [6984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 64), - [6986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 64), - [6988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 3, .production_id = 54), - [6990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 3, .production_id = 54), - [6992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 95), - [6994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 95), - [6996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 123), - [6998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 123), - [7000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 122), - [7002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 122), - [7004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 7, .production_id = 108), - [7006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 7, .production_id = 108), - [7008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_function_type, 6, .production_id = 33), - [7010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_function_type, 6, .production_id = 33), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [7020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 6, .production_id = 121), - [7022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 6, .production_id = 121), - [7024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [7028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 65), - [7030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 65), - [7032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 6, .production_id = 89), - [7034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 6, .production_id = 89), - [7036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 139), - [7038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 139), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 133), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 133), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_binding, 6, .production_id = 93), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_binding, 6, .production_id = 93), - [7048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 5, .production_id = 94), - [7050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 5, .production_id = 94), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 108), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 108), - [7056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 9, .production_id = 132), - [7058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 9, .production_id = 132), - [7060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 8, .production_id = 133), - [7062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 8, .production_id = 133), - [7064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 71), - [7066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 71), - [7068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 96), - [7070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 96), - [7072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 110), - [7074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 110), - [7076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 8, .production_id = 138), - [7078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 8, .production_id = 138), - [7080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_binding, 6, .production_id = 98), - [7082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_binding, 6, .production_id = 98), - [7084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 3, .production_id = 27), - [7086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 3, .production_id = 27), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [7100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 4, .production_id = 50), - [7102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 4, .production_id = 50), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [7106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 88), - [7108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 88), - [7110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 7, .production_id = 87), - [7112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_binding, 7, .production_id = 87), - [7114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_binding, 8, .production_id = 131), - [7116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_binding, 8, .production_id = 131), - [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9095), - [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6940), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 4, .production_id = 27), - [7144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 4, .production_id = 27), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [7148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 4), - [7150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 4), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 7), - [7166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 7), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), - [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6876), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [7219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 3), - [7221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 3), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5702), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [7235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 4), - [7237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 4), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [7287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 5, .production_id = 50), - [7289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 5, .production_id = 50), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 7, .production_id = 90), - [7299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 7, .production_id = 90), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_open_module, 5), - [7305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_open_module, 5), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8604), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(4381), - [7318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6886), - [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), - [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(4715), - [7326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(6888), - [7329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(791), - [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(7326), - [7335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(7755), - [7338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 2), SHIFT_REPEAT(7280), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 8), - [7345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 8), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [7355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_external, 7), - [7357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_external, 7), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 5), - [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 5), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 5), - [7387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 5), - [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_item_extension, 6), - [7391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_item_extension, 6), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [7411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), - [7413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_repeat1, 2), - [7415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), SHIFT_REPEAT(5523), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_type_definition, 6, .production_id = 68), - [7432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_type_definition, 6, .production_id = 68), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_definition, 2), - [7442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_definition, 2), - [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_item_extension, 3), - [7446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_item_extension, 3), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 3), - [7466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 3), - [7468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), - [7474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4963), - [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), - [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 4), - [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 4), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 2), - [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 2), - [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_item, 2), - [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_item, 2), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), - [7527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), - [7529] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_type_definition_repeat1, 2), SHIFT_REPEAT(7177), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 5), - [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 5), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 1), - [7554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_external_repeat1, 1), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [7558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(5039), - [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 5), - [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 5), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_item, 1), - [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_item, 1), - [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6530), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_type_definition, 3), - [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_type_definition, 3), - [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_definition, 4), - [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value_definition, 4), - [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module, 4), - [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_include_module, 4), - [7597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2499), - [7600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2499), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), - [7633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_definition_repeat1, 2), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9271), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9339), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8745), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), - [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_definition_repeat1, 2), - [7649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(7602), - [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6561), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9210), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6311), - [7668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), - [7670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variant_declaration_repeat1, 2), SHIFT_REPEAT(6735), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [7681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 3), - [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 3), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), - [7691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [7693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 3), - [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8949), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9368), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8531), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [7717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2359), - [7720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2359), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 2), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9268), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9292), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9467), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_type_definition_repeat1, 2), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5945), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [7750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), - [7752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5801), - [7755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5801), - [7758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 2), SHIFT_REPEAT(5815), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8766), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9056), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9509), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), - [7773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2342), - [7776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2342), - [7779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 5), - [7781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 5), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [7785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 4), - [7787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 4), - [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_definition, 2), - [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_definition, 2), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 5), - [7795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 5), - [7797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_content, 1), - [7799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(4381), - [7802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(7211), - [7805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), - [7807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(5845), - [7810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(7193), - [7813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(7326), - [7816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(7755), - [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 2), SHIFT_REPEAT(7280), - [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [7826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 2), - [7828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 2), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 3), - [7834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 3), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_toplevel_directive, 2), - [7842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_toplevel_directive, 2), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [7846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(7086), - [7849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_definition, 4), - [7851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_definition, 4), - [7853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2344), - [7856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2344), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [7871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_external_repeat1, 2), SHIFT_REPEAT(5543), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3, .production_id = 86), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), - [7886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3, .production_id = 86), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), - [7898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_content_repeat1, 1), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_content_repeat1, 1), - [7902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure_item, 1), - [7904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure_item, 1), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [7908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_escape_sequence, 1), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_escape_sequence, 1), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 5), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 4), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__structure_repeat2, 1), - [7918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 1), - [7920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(5027), - [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_include_module_type, 4), - [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__structure_item_ext, 1), - [7927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__structure_item_ext, 1), - [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_specification, 3), - [7947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7936), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__polymorphic_type, 1), - [7955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__polymorphic_type, 1), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_polymorphic_type, 3), - [7959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_polymorphic_type, 3), - [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(7167), - [7964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__structure_repeat2, 2), - [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5951), - [7974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_definition_repeat1, 2), SHIFT_REPEAT(7000), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [7981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [7983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 2, .production_id = 30), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 76), - [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(7242), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 3, .production_id = 56), - [8002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_definition_repeat1, 2), SHIFT_REPEAT(5951), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), - [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 56), - [8011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__structure_repeat1, 2), SHIFT_REPEAT(5937), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 56), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7048), - [8028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__polymorphic_typed, 2), - [8030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__polymorphic_typed, 2), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 30), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 76), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 30), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 76), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 3, .production_id = 30), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature_item, 1), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__signature_item_ext, 1), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [8130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 76), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [8156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 56), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [8180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [8184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 4), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__typed, 2), - [8248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__typed, 2), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__signature_repeat1, 1), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6272), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9371), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9622), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8912), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8848), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9602), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9166), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8368), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8874), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8362), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8837), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9608), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8815), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8765), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8807), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9567), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9298), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9561), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8694), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8735), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8960), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9186), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9281), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9614), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8979), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9638), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9542), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9641), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9534), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9651), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9216), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8994), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9698), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8889), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9530), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8626), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9512), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9154), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9713), - [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8697), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8580), - [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [8380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 58), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9045), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9377), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9501), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9578), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9075), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9333), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9338), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9230), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9347), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8597), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9348), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9116), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9466), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9359), - [8410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 2), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8584), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9091), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9362), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9012), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9366), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9250), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9456), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9389), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9723), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9256), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9372), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8546), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9361), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9633), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9449), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9379), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9740), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9433), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8482), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9416), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9424), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9423), - [8458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 3), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9407), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8456), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8426), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9140), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9207), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9383), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8408), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9717), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9662), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9649), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9183), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9403), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8320), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9401), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 78), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 31), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8382), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 79), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 118), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 102), - [8512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 117), - [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 137), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern_ext, 1), - [8524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern_ext, 1), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 4), - [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 116), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 101), - [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 129), - [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 6), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 100), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1), - [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 30), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 115), - [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_string_content, 1), - [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 114), - [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 113), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 6, .production_id = 99), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 4, .production_id = 77), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 128), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 127), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 58), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 126), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_initializer, 3), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 76), - [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 136), - [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_initializer, 2), - [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 135), - [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 125), - [8576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), SHIFT_REPEAT(6272), - [8579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), SHIFT_REPEAT(6272), - [8582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 2), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 8, .production_id = 125), - [8586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 56), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), - [8590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 31), - [8592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 102), - [8594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 79), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 113), - [8600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 101), - [8602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_definition, 5), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 114), - [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 100), - [8608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 77), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [8612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 126), - [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 5, .production_id = 99), - [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_constraint, 5), - [8618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 2), - [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 2), - [8622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 3), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [8628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_pattern, 3), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 115), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 7, .production_id = 127), - [8638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 116), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exception_pattern, 2), - [8642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_exception_pattern, 2), - [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_pattern, 2), - [8646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 2), - [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 128), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 117), - [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 129), - [8654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lazy_pattern, 3), - [8656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lazy_pattern, 3), - [8658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), - [8660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 3), - [8662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3), - [8664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_pattern, 3), - [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 78), - [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_alias_pattern, 3), - [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_alias_pattern, 3), - [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cons_pattern, 3), - [8674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cons_pattern, 3), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), - [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_pattern, 2), - [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tag_pattern, 2), - [8682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_pattern, 3), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_pattern, 3), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 10, .production_id = 141), - [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 118), - [8690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 137), - [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 141), - [8694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 136), - [8696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_definition, 9, .production_id = 135), - [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specification, 2), - [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 5, .production_id = 124), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 5, .production_id = 36), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9188), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 4, .production_id = 36), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 4, .production_id = 112), - [8716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 4, .production_id = 124), - [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 4, .production_id = 111), - [8720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_specification, 3, .production_id = 111), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inheritance_specification, 3), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_specification, 3, .production_id = 112), - [8726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_quoted_string_content_repeat1, 1), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_quoted_string_content_repeat1, 1), - [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [8736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(4252), - [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), - [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [8783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_binding_repeat1, 2), SHIFT_REPEAT(7678), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8065), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8069), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8806), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [8832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [8844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field, 1), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [8862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [8874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_expression_repeat1, 1), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_ext, 1), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9309), - [8912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9305), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9309), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [8932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_binding_repeat1, 2), SHIFT_REPEAT(4300), - [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), - [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), - [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6841), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2789), - [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_specification, 1), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8077), - [8991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9287), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_type_repeat1, 1), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [9003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__class_field_specification_ext, 1), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8146), - [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9417), - [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6815), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7991), - [9021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9087), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [9025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6821), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [9050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8192), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6863), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), - [9068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8120), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7915), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), - [9102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8128), - [9106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8291), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [9110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6463), - [9114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8260), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [9118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8107), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), - [9126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8272), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 2), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5407), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [9150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8270), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7146), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [9168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7888), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7925), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [9224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8022), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), - [9230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7945), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5306), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [9254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8123), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7995), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), - [9266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 4), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8241), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [9272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7992), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6700), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7988), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7872), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7940), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [9340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [9346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7930), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [9358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7913), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 3), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 4, .production_id = 84), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5982), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [9410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(7414), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [9427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 3, .production_id = 59), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tag_spec, 1), - [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), - [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [9477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6067), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [9503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tag_specification_repeat1, 2), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [9507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_typed, 2), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9196), - [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8012), - [9523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_type_constraint_repeat1, 2), SHIFT_REPEAT(6879), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [9530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8056), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6024), - [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [9654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_instantiated_class_type_repeat1, 2), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 1, .production_id = 8), - [9668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tag_specification_repeat1, 2), SHIFT_REPEAT(4408), - [9671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 2), - [9673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 1), - [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 2, .production_id = 24), - [9677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 3, .production_id = 45), - [9679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_item_repeat1, 2), SHIFT_REPEAT(7628), - [9682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 5), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 1, .production_id = 12), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [9702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7638), - [9708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_param, 3), - [9710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [9712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 1), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7119), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6907), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6789), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [9788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8145), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8525), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9219), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), - [9798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 2), SHIFT_REPEAT(7287), - [9801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 2), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), - [9809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tag_specification, 1), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [9815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), - [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [9827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__abstract_type, 2), - [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8641), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9390), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8676), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9037), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), - [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8814), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8330), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8718), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7954), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), - [9931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2307), - [9934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_value_definition_repeat1, 2), SHIFT_REPEAT(2307), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_params_repeat1, 2), - [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_params_repeat1, 2), SHIFT_REPEAT(6533), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [9954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__constructor_argument_repeat1, 2), SHIFT_REPEAT(4960), - [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), - [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), - [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [9975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6835), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), - [9985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 2), - [9987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 2), SHIFT_REPEAT(7638), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5981), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9327), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6836), - [10018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat1, 2), SHIFT_REPEAT(3882), - [10021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat1, 2), - [10023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_instantiated_class_type_repeat1, 2), SHIFT_REPEAT(4261), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9126), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2847), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8507), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9392), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7923), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7921), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8991), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9097), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8950), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9328), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7725), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8152), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [10148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 2), - [10150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 2), SHIFT_REPEAT(7909), - [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9688), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6698), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7803), - [10187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_attribute_id_repeat1, 2), SHIFT_REPEAT(7954), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [10198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 2), - [10200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 2), SHIFT_REPEAT(7645), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7352), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6055), - [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8521), - [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7837), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8177), - [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8762), - [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [10245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 2), - [10247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_constructor_declaration_repeat1, 2), SHIFT_REPEAT(8111), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7841), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9738), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8243), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6283), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6622), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [10316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6681), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [10330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_copy_expression_repeat1, 2), SHIFT_REPEAT(7932), - [10333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_copy_expression_repeat1, 2), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), - [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9644), - [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9642), - [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6274), - [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [10363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9635), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [10385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__abstract_type_repeat1, 1, .production_id = 10), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), - [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6814), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7869), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7870), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7871), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7860), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7835), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), - [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), - [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7831), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [10483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), - [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7845), - [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7854), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7868), - [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7866), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7877), - [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7876), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7875), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7885), - [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7884), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7882), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6667), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [10531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7920), - [10539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7919), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7918), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [10545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7943), - [10551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7942), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7941), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8047), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7978), - [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7977), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7971), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [10595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8008), - [10601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8004), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8002), - [10605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), SHIFT_REPEAT(2619), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8046), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8045), - [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8044), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8075), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8074), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8071), - [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [10640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_binding_pattern_repeat1, 2), SHIFT_REPEAT(6818), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_binding_pattern_repeat1, 2), - [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [10647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8100), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8098), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8097), - [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [10661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8134), - [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8132), - [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8129), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), - [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8170), - [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8168), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8167), - [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8598), - [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8200), - [10737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8198), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8197), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8251), - [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8248), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8246), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), - [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8588), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8285), - [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8286), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8289), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [10813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8219), - [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8220), - [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8221), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8923), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [10837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instance_variable_expression, 1, .production_id = 17), - [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7436), - [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), - [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6679), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), - [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8037), - [10885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8038), - [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8039), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9054), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8933), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7534), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9321), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [10951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2), SHIFT_REPEAT(6855), - [10954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_expression_repeat1, 2), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7968), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7980), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7981), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7993), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [10994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(1168), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7219), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6688), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [11033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 2, .production_id = 12), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8084), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9625), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8541), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [11097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_binding_pattern_repeat1, 2), SHIFT_REPEAT(2581), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [11106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_instance_variable_specification_repeat1, 1), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9721), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), - [11116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_method_specification_repeat1, 1), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8150), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [11136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), SHIFT_REPEAT(2203), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7008), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8026), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [11195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), SHIFT_REPEAT(6890), - [11198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_pattern_repeat1, 2), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [11208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_expression_repeat1, 2), SHIFT_REPEAT(1296), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [11217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_binding_pattern, 2), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [11249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_operator_path, 3), - [11251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_operator_path, 3), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6813), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [11259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_indexing_operator_path, 1), - [11261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_indexing_operator_path, 1), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8042), - [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8040), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8036), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7720), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8034), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [11317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_declaration_repeat1, 2), SHIFT_REPEAT(7622), - [11320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_declaration_repeat1, 2), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6928), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [11350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_pattern_repeat1, 2), SHIFT_REPEAT(2224), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), - [11397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(4933), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7798), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [11414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_definition_repeat1, 2), SHIFT_REPEAT(7697), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9349), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6034), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8195), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9588), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9587), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8179), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9594), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9595), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9593), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [11469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_polymorphic_variant_type_repeat2, 1), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9583), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8212), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9582), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9581), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [11483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_label, 4, .production_id = 33), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8932), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9577), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8228), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9576), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9589), - [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9575), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8153), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9599), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9600), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9601), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9571), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8245), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9009), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9570), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8924), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9569), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8133), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9605), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9606), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9607), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9163), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9016), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9565), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8265), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9564), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9563), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9557), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8279), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9556), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9555), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8819), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9182), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, .production_id = 106), - [11591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 2, .production_id = 11), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9350), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9248), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9078), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9019), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8796), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9547), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8304), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9546), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9545), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8790), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9231), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6585), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9103), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9115), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9537), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8305), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9536), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9535), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8779), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8775), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9080), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6617), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8787), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8161), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8509), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [11745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8781), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9522), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8081), - [11751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_label, 3, .production_id = 75), - [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [11757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_type, 2, .production_id = 74), - [11759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9122), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9521), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9520), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8510), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8511), - [11775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [11777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8816), - [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8115), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9128), - [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9120), - [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9136), - [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [11801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 3), - [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9142), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9507), - [11817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8013), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9506), - [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8607), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9505), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9153), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8266), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8555), - [11837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9222), - [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8208), - [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9375), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4395), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9156), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8257), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9443), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9224), - [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9109), - [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8204), - [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8010), - [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9310), - [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9311), - [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9312), - [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9108), - [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9107), - [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9492), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7928), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9491), - [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9490), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8000), - [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7999), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [11929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9164), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8162), - [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8648), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9477), - [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), - [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9476), - [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9475), - [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9297), - [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9302), - [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), - [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9034), - [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9315), - [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8568), - [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7960), - [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8110), - [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9322), - [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8636), - [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8316), - [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [12007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9053), - [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9462), - [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7867), - [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9461), - [12017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9460), - [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), - [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), - [12025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [12029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [12031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8554), - [12033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7910), - [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [12039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [12043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9488), - [12047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6060), - [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [12053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9374), - [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8539), - [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [12069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9660), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8905), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8536), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9303), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [12089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9447), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7970), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9393), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9391), - [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9446), - [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9400), - [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9445), - [12111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [12113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [12117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9427), - [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9410), - [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8024), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), - [12135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9418), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9220), - [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [12145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 4), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7996), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9422), - [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9426), - [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6071), - [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8702), - [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8049), - [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8850), - [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9442), - [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6010), - [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9440), - [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9431), - [12183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8094), - [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9430), - [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_params, 1), - [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9429), - [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8017), - [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7887), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9394), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), - [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9444), - [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8491), - [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8135), - [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), - [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9458), - [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9473), - [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9609), - [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9489), - [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8842), - [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9503), - [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9500), - [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8199), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9415), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8210), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9414), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9413), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9712), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9518), - [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6013), - [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9527), - [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8475), - [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9146), - [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9529), - [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), - [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9533), - [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), - [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9543), - [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7982), - [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9356), - [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9357), - [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9358), - [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8295), - [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9553), - [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6043), - [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9554), - [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9562), - [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6027), - [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9560), - [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9568), - [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9574), - [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7906), - [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9580), - [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6028), - [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7973), - [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9586), - [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6054), - [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8261), - [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8373), - [12363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9592), - [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9591), - [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9598), - [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [12377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9597), - [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9399), - [12383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8239), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9604), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9398), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [12393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9611), - [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9397), - [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), - [12403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9613), - [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9615), - [12409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), - [12411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9617), - [12413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6066), - [12415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9619), - [12417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [12419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), - [12421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), - [12423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [12425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), - [12427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), - [12429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [12431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [12433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [12435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [12437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9627), - [12439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9632), - [12441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6012), - [12443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [12445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9637), - [12447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [12449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [12451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [12453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [12455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8178), - [12457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9734), - [12459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [12461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8360), - [12463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9741), - [12465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), - [12467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [12469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [12471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9678), - [12473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [12475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [12477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [12479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9682), - [12481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [12483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9690), - [12485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [12487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [12489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8020), - [12491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8083), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9380), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9381), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9382), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9747), - [12513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_guard, 2), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [12523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [12525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [12527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [12529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9411), - [12531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [12533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8104), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9756), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [12543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9670), - [12545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [12547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [12551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [12553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9754), - [12557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [12559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [12561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9743), - [12563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [12565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [12567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [12569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [12571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8033), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [12575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8656), - [12577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [12579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [12605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [12607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), - [12613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [12615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8551), - [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8126), - [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [12629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [12631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), - [12633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [12649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [12651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [12653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [12655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [12657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [12659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [12661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8188), - [12663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [12665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), - [12667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [12669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [12671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8443), - [12673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [12675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [12677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [12679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [12683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [12685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [12687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [12689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4995), - [12691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7948), - [12693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), - [12695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8793), - [12697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [12699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [12701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), - [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [12711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [12713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [12715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [12719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [12721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [12723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [12725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), - [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), - [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8365), - [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8271), - [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2975), - [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5947), - [12753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [12755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_payload, 3), - [12757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8277), - [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [12765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [12767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [12769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8354), - [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), - [12773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [12775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [12777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [12779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), - [12781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [12783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [12785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), - [12787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [12801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [12803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8940), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [12811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [12819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8399), - [12821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8180), - [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [12825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), - [12827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), - [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5921), - [12831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [12833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [12835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [12837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [12839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [12841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8125), - [12845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [12851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8569), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [12855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [12857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [12859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [12861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [12863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [12867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [12869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [12871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8852), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8853), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8855), - [12883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [12885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8638), - [12887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8067), - [12889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [12891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8651), - [12893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [12895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [12897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [12899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [12901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7894), - [12903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [12905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [12907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [12909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [12911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8009), - [12913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [12915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8732), - [12917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [12919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [12921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [12923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [12925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [12927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [12929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), - [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), - [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8786), - [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7955), - [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [12957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), - [12959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [12961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [12963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5959), - [12965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [12967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [12969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [12973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [12975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [12977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7898), - [12979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [12981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [12983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [12985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8863), - [12987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [12989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [12991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [12993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [12995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [12997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [12999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [13001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [13003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), - [13005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8922), - [13007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [13009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), - [13011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [13013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), - [13015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [13017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), - [13019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [13021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [13023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8931), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8565), - [13031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [13033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [13035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [13037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [13039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [13041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [13043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7976), - [13045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [13047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [13049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), - [13055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), - [13057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [13059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8977), - [13061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [13063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [13065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [13067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [13069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [13071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [13075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), - [13077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9139), - [13079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [13081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [13083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [13085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [13087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [13089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8124), - [13091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9114), - [13093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), - [13095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9011), - [13097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7873), - [13099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [13101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [13103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5810), - [13105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [13107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [13109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), - [13111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [13113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [13115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [13117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [13119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7905), - [13121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [13123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [13125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [13127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9071), - [13129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [13131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [13133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [13135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [13137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [13139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [13141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [13143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [13145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [13147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8007), - [13149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [13151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [13153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), - [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9099), - [13161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7937), - [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), - [13165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [13167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [13171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), - [13173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [13175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [13177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7987), - [13185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [13187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9177), - [13193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [13195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [13197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [13199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [13201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [13203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [13205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [13207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9262), - [13209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [13211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [13213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8090), - [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [13219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [13221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9223), - [13223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8031), - [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [13227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [13229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [13231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [13233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), - [13235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [13237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), - [13239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [13241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [13243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [13245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [13247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [13249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8068), - [13251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [13253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9278), - [13255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [13257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [13267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [13269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [13271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), - [13273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [13275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [13277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [13279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [13281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [13283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9317), - [13285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8091), - [13287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [13289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [13291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [13293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [13295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), - [13297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [13299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [13301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [13303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [13305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [13307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8143), - [13309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [13311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [13313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [13315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9551), - [13317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [13319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [13321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [13323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [13325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [13327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [13329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [13331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [13333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [13335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [13337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [13339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [13341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [13343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [13345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [13347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9014), - [13349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [13351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9674), - [13353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8274), - [13355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [13357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9017), - [13363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8283), - [13365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [13371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9731), - [13373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [13377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [13379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [13381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [13383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [13385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [13387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [13389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [13391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [13393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [13395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), - [13397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [13399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [13401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [13403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9755), - [13405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8311), - [13407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [13409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [13411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [13413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5927), - [13415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7890), - [13417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8284), - [13419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [13421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), - [13423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9716), - [13425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [13427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [13429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [13431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [13433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [13435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [13437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [13439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [13441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [13443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [13445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [13447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [13449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [13451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), - [13453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9686), - [13455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8278), - [13457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [13459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [13461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [13463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [13465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8267), - [13467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9646), - [13469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [13471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [13473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [13475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [13477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [13479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [13481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [13483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [13485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [13487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9631), - [13489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8262), - [13491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [13493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [13495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9195), - [13497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9610), - [13499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [13501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [13503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [13505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [13507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), - [13509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9596), - [13511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8242), - [13513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [13515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), - [13517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [13519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9572), - [13521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [13523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [13525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9048), - [13527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [13529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9559), - [13531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8226), - [13533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [13535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [13537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [13539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9540), - [13541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [13543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [13545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [13547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [13549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [13551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9528), - [13553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8209), - [13555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9510), - [13557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), - [13559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [13561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9496), - [13563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8190), - [13565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [13567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [13569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9459), - [13571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [13573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [13575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [13577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [13579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9441), - [13581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8165), - [13583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [13585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [13587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9428), - [13589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [13591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [13593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), - [13595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [13597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [13599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9420), - [13601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8144), - [13603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [13605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [13607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [13609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9404), - [13611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [13613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [13615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [13617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [13619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9395), - [13621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8131), - [13623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [13625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [13627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9367), - [13629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [13631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [13633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9370), - [13635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [13637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [13639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [13641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9365), - [13643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [13645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [13647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [13649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9354), - [13651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [13653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [13655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [13657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9342), - [13659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [13661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [13663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [13665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9332), - [13667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), - [13669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [13671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [13673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8263), - [13675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), - [13677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [13679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [13681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [13683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [13685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [13687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [13689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [13691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), - [13693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [13695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [13697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [13699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), - [13701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9242), - [13703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [13705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [13707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [13709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [13711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [13713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [13715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), - [13717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [13719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [13721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [13723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [13725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [13727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [13729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [13731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [13733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [13735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [13737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [13739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [13741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [13743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [13745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8005), - [13747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [13749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [13751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [13753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [13755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [13757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [13759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [13761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [13763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [13765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [13767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [13769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [13771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [13773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9176), - [13775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [13777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [13779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [13781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [13783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [13785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [13787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [13789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [13791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9150), - [13793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9149), - [13795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9148), - [13797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [13799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [13801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [13803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [13805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [13807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [13809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [13811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [13813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [13815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [13817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [13819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), - [13821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9133), - [13823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [13825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [13827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [13829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), - [13831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5002), - [13833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [13835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [13837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [13839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), - [13841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [13843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [13845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [13847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [13849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [13851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [13853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [13855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8314), - [13857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), - [13859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [13861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), - [13863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9739), - [13865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [13867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [13869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [13871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [13873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [13875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [13877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [13879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [13881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [13883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [13885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [13887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [13889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [13891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [13893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [13895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [13897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [13899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5770), - [13901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [13903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [13905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [13907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [13909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [13911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [13913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8473), - [13915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [13917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [13919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), - [13921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [13923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [13925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [13927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [13929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [13931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [13933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [13935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [13937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [13939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [13941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [13943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [13945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [13947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [13949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [13951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [13953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [13955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9552), - [13957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [13959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [13961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [13963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [13965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [13967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [13969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [13971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8211), - [13973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [13975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [13977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [13979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), - [13981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [13983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [13985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [13987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [13989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8670), - [13991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7406), - [13993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [13995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [13997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [13999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [14001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [14003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [14005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), - [14007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), - [14009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [14011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), - [14013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [14015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [14017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [14019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [14021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [14023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), - [14025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), - [14027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [14029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [14031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [14033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [14035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [14037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [14039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [14041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [14043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [14045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [14047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9293), - [14049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7927), - [14051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [14053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [14055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [14059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), - [14061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9760), - [14063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [14065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [14067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [14069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [14071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [14073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [14075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [14077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [14079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8030), - [14081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [14083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [14085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [14087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [14089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [14091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [14093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [14095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [14097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [14099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), - [14101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [14103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [14105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [14107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [14109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), - [14111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8060), - [14113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [14115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [14117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [14119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [14121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_character_content, 1), - [14123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8627), - [14125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8619), - [14127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8612), - [14129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [14131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [14133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [14135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [14137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [14139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [14141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), - [14143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), - [14145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [14147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [14149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [14151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [14153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7924), - [14155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [14157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [14159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [14161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [14163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6035), - [14165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [14167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [14169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [14171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [14173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [14175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [14177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [14179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [14181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5991), - [14183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8238), - [14185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [14187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [14189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [14191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [14193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [14195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8393), - [14197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8392), - [14199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8391), - [14201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), - [14203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [14205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [14207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [14209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [14211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [14213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [14217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [14219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [14221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [14223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [14225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8312), - [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [14235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [14237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8347), - [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8348), - [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8349), - [14247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [14255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [14257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8234), - [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [14267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8418), - [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8419), - [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8420), - [14275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [14277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [14287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [14295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8194), - [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8470), - [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8471), - [14303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8472), - [14305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [14309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [14311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [14315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [14317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [14321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [14323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), - [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8160), - [14327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [14329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8514), - [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8515), - [14333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8516), - [14335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [14343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [14345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [14349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [14351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6001), - [14355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8121), - [14357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8558), - [14361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8559), - [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8560), - [14365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [14373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [14381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8601), - [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8602), - [14389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8603), - [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [14401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [14405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infix_operator, 1), - [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [14411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8644), - [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8645), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8646), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [14419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [14421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [14425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [14427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [14431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8686), - [14433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8687), - [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8688), - [14437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [14439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [14447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [14455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8728), - [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8729), - [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8730), - [14463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), - [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [14471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [14479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compilation_unit, 2), - [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [14483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8770), - [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8771), - [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8772), - [14491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [14499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [14509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [14511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8811), - [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8812), - [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8813), - [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [14519] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), - [14529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), - [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8845), - [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8846), - [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8847), - [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [14539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [14547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8879), - [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8880), - [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8881), - [14555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), - [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [14565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8900), - [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8901), - [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8902), - [14571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), - [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5984), - [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8914), - [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8915), - [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8916), - [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [14587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6008), - [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8928), - [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8929), - [14593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8930), - [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [14597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [14601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8942), - [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8943), - [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8944), - [14607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [14611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8956), - [14613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8957), - [14615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8958), - [14617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), - [14621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8970), - [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8971), - [14627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8972), - [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), - [14631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [14633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [14635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8984), - [14637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8985), - [14639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8986), - [14641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6301), - [14643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [14645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [14647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8998), - [14649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8999), - [14651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9000), - [14653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [14655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [14657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [14659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), - [14661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), - [14663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6075), - [14665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [14667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [14669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [14671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [14673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [14675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), - [14677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [14679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [14681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7732), - [14683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [14685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [14687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [14689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [14691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [14693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [14695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6353), - [14697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [14699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [14701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [14703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [14705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [14707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9123), - [14709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [14711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [14713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [14715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [14717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [14719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [14725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [14729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [14731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [14735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [14739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [14741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [14743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9314), - [14745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [14747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [14749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [14751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [14753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), - [14755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [14757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [14759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [14761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [14763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [14765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), - [14767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [14769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [14773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), - [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [14809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7371), - [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), - [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), - [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [14839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [14871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), - [14877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [14879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [14883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [14885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), - [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [14891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), - [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [14899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [14901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), - [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [14911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), - [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [14929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3), - [14931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 4), -}; - -#ifdef __cplusplus -extern "C" { -#endif -void *tree_sitter_ocaml_external_scanner_create(void); -void tree_sitter_ocaml_external_scanner_destroy(void *); -bool tree_sitter_ocaml_external_scanner_scan(void *, TSLexer *, const bool *); -unsigned tree_sitter_ocaml_external_scanner_serialize(void *, char *); -void tree_sitter_ocaml_external_scanner_deserialize(void *, const char *, unsigned); - -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_ocaml(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym__identifier, - .external_scanner = { - &ts_external_scanner_states[0][0], - ts_external_scanner_symbol_map, - tree_sitter_ocaml_external_scanner_create, - tree_sitter_ocaml_external_scanner_destroy, - tree_sitter_ocaml_external_scanner_scan, - tree_sitter_ocaml_external_scanner_serialize, - tree_sitter_ocaml_external_scanner_deserialize, - }, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/src/scanner.cc b/vendored_parsers/tree-sitter-ocaml/ocaml/src/scanner.cc deleted file mode 100644 index 12ea2410d..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/src/scanner.cc +++ /dev/null @@ -1,29 +0,0 @@ -#include "../../common/scanner.h" - -extern "C" { - -void *tree_sitter_ocaml_external_scanner_create() { - return new Scanner(); -} - -void tree_sitter_ocaml_external_scanner_destroy(void *payload) { - Scanner *scanner = static_cast(payload); - delete scanner; -} - -unsigned tree_sitter_ocaml_external_scanner_serialize(void *payload, char *buffer) { - Scanner *scanner = static_cast(payload); - return scanner->serialize(buffer); -} - -void tree_sitter_ocaml_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) { - Scanner *scanner = static_cast(payload); - scanner->deserialize(buffer, length); -} - -bool tree_sitter_ocaml_external_scanner_scan(void *payload, TSLexer *lexer, const bool *valid_symbols) { - Scanner *scanner = static_cast(payload); - return scanner->scan(lexer, valid_symbols); -} - -} diff --git a/vendored_parsers/tree-sitter-ocaml/ocaml/src/tree_sitter/parser.h b/vendored_parsers/tree-sitter-ocaml/ocaml/src/tree_sitter/parser.h deleted file mode 100644 index 2b14ac104..000000000 --- a/vendored_parsers/tree-sitter-ocaml/ocaml/src/tree_sitter/parser.h +++ /dev/null @@ -1,224 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -typedef uint16_t TSStateId; - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) id - LARGE_STATE_COUNT - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = state_value, \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_ diff --git a/vendored_parsers/tree-sitter-ocaml/package.json b/vendored_parsers/tree-sitter-ocaml/package.json deleted file mode 100644 index 6f6cfd5cc..000000000 --- a/vendored_parsers/tree-sitter-ocaml/package.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "name": "tree-sitter-ocaml", - "version": "0.20.1", - "description": "OCaml grammar for tree-sitter", - "keywords": [ - "parser", - "ocaml" - ], - "author": "Max Brunsfeld", - "license": "MIT", - "dependencies": { - "nan": "^2.16.0" - }, - "devDependencies": { - "tree-sitter-cli": "^0.20.6" - }, - "scripts": { - "build": "npm run build-ocaml && npm run build-interface", - "build-ocaml": "cd ocaml && tree-sitter generate", - "build-interface": "cd interface && tree-sitter generate", - "test": "npm run test-ocaml && npm run test-interface && npm run test-highlight && script/parse-examples", - "test-ocaml": "cd ocaml && tree-sitter test", - "test-interface": "cd interface && tree-sitter test", - "test-highlight": "tree-sitter test" - }, - "tree-sitter": [ - { - "scope": "source.ocaml", - "file-types": [ - "ml" - ], - "first-line-regex": "", - "path": "ocaml", - "injection-regex": "^(ocaml|ml)$" - }, - { - "scope": "source.ocaml.interface", - "file-types": [ - "mli" - ], - "path": "interface", - "injection-regex": "^ocaml_interface$" - } - ] -} diff --git a/vendored_parsers/tree-sitter-ocaml/queries/highlights.scm b/vendored_parsers/tree-sitter-ocaml/queries/highlights.scm deleted file mode 100644 index 2ace68fbf..000000000 --- a/vendored_parsers/tree-sitter-ocaml/queries/highlights.scm +++ /dev/null @@ -1,147 +0,0 @@ -; Modules -;-------- - -[(module_name) (module_type_name)] @constructor - -; Types -;------ - -( - (type_constructor) @type.builtin - (#match? @type.builtin "^(int|char|bytes|string|float|bool|unit|exn|array|list|option|int32|int64|nativeint|format6|lazy_t)$") -) - -[(class_name) (class_type_name) (type_constructor)] @type - -[(constructor_name) (tag)] @tag - -; Functions -;---------- - -(let_binding - pattern: (value_name) @function - (parameter)) - -(let_binding - pattern: (value_name) @function - body: [(fun_expression) (function_expression)]) - -(value_specification (value_name) @function) - -(external (value_name) @function) - -(method_name) @function.method - -; Application -;------------ - -( - (value_name) @function.builtin - (#match? @function.builtin "^(raise(_notrace)?|failwith|invalid_arg)$") -) - -(infix_expression - left: (value_path (value_name) @function) - (infix_operator) @operator - (#eq? @operator "@@")) - -(infix_expression - (infix_operator) @operator - right: (value_path (value_name) @function) - (#eq? @operator "|>")) - -(application_expression - function: (value_path (value_name) @function)) - -; Variables -;---------- - -[(value_name) (type_variable)] @variable - -(value_pattern) @variable.parameter - -; Properties -;----------- - -[(label_name) (field_name) (instance_variable_name)] @property - -; Constants -;---------- - -(boolean) @constant - -[(number) (signed_number)] @number - -[(string) (character)] @string - -(quoted_string "{" @string "}" @string) @string - -(escape_sequence) @escape - -(conversion_specification) @string.special - -; Operators -;---------- - -(match_expression (match_operator) @keyword) - -(value_definition [(let_operator) (and_operator)] @keyword) - -[ - (prefix_operator) - (sign_operator) - (infix_operator) - (hash_operator) - (indexing_operator) - (let_operator) - (and_operator) - (match_operator) -] @operator - -(infix_operator ["&" "+" "-" "=" ">" "|" "%"] @operator) -(signed_number ["+" "-"] @operator) - -["*" "#" "::" "<-"] @operator - -; Keywords -;--------- - -[ - "and" "as" "assert" "begin" "class" "constraint" "do" "done" "downto" "else" - "end" "exception" "external" "for" "fun" "function" "functor" "if" "in" - "include" "inherit" "initializer" "lazy" "let" "match" "method" "module" - "mutable" "new" "nonrec" "object" "of" "open" "private" "rec" "sig" "struct" - "then" "to" "try" "type" "val" "virtual" "when" "while" "with" -] @keyword - -; Punctuation -;------------ - -(attribute ["[@" "]"] @punctuation.special) -(item_attribute ["[@@" "]"] @punctuation.special) -(floating_attribute ["[@@@" "]"] @punctuation.special) -(extension ["[%" "]"] @punctuation.special) -(item_extension ["[%%" "]"] @punctuation.special) -(quoted_extension ["{%" "}"] @punctuation.special) -(quoted_item_extension ["{%%" "}"] @punctuation.special) - -"%" @punctuation.special - -["(" ")" "[" "]" "{" "}" "[|" "|]" "[<" "[>"] @punctuation.bracket - -(object_type ["<" ">"] @punctuation.bracket) - -[ - "," "." ";" ":" "=" "|" "~" "?" "+" "-" "!" ">" "&" - "->" ";;" ":>" "+=" ":=" ".." -] @punctuation.delimiter - -; Attributes -;----------- - -(attribute_id) @attribute - -; Comments -;--------- - -[(comment) (line_number_directive) (directive) (shebang)] @comment diff --git a/vendored_parsers/tree-sitter-ocaml/queries/locals.scm b/vendored_parsers/tree-sitter-ocaml/queries/locals.scm deleted file mode 100644 index 8f3f3fdf6..000000000 --- a/vendored_parsers/tree-sitter-ocaml/queries/locals.scm +++ /dev/null @@ -1,24 +0,0 @@ -; Scopes -;------- - -[ - (let_binding) - (class_binding) - (class_function) - (method_definition) - (fun_expression) - (object_expression) - (for_expression) - (match_case) - (attribute_payload) -] @local.scope - -; Definitions -;------------ - -(value_pattern) @local.definition - -; References -;----------- - -(value_path . (value_name) @local.reference) diff --git a/vendored_parsers/tree-sitter-ocaml/queries/tags.scm b/vendored_parsers/tree-sitter-ocaml/queries/tags.scm deleted file mode 100644 index 0528a48fd..000000000 --- a/vendored_parsers/tree-sitter-ocaml/queries/tags.scm +++ /dev/null @@ -1,116 +0,0 @@ -; Modules -;-------- - -( - (comment)? @doc . - (module_definition (module_binding (module_name) @name) @definition.module) - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -(module_path (module_name) @name) @reference.module - -; Modules types -;-------------- - -( - (comment)? @doc . - (module_type_definition (module_type_name) @name) @definition.interface - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -(module_type_path (module_type_name) @name) @reference.implementation - -; Functions -;---------- - -( - (comment)? @doc . - (value_definition - [ - (let_binding - pattern: (value_name) @name - (parameter)) - (let_binding - pattern: (value_name) @name - body: [(fun_expression) (function_expression)]) - ] @definition.function - ) - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -( - (comment)? @doc . - (external (value_name) @name) @definition.function - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -(application_expression - function: (value_path (value_name) @name)) @reference.call - -(infix_expression - left: (value_path (value_name) @name) - (infix_operator) @reference.call - (#eq? @reference.call "@@")) - -(infix_expression - (infix_operator) @reference.call - right: (value_path (value_name) @name) - (#eq? @reference.call "|>")) - -; Operator -;--------- - -( - (comment)? @doc . - (value_definition - (let_binding - pattern: (parenthesized_operator [ - (prefix_operator) - (infix_operator) - (hash_operator) - (indexing_operator) - (let_operator) - (and_operator) - (match_operator) - ] @name)) @definition.function) - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -[ - (prefix_operator) - (sign_operator) - (infix_operator) - (hash_operator) - (indexing_operator) - (let_operator) - (and_operator) - (match_operator) -] @name @reference.call - -; Classes -;-------- - -( - (comment)? @doc . - [ - (class_definition (class_binding (class_name) @name) @definition.class) - (class_type_definition (class_type_binding (class_type_name) @name) @definition.class) - ] - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -[ - (class_path (class_name) @name) - (class_type_path (class_type_name) @name) -] @reference.class - -; Methods -;-------- - -( - (comment)? @doc . - (method_definition (method_name) @name) @definition.method - (#strip! @doc "^\\(\\*\\*?\\s*|\\s\\*\\)$") -) - -(method_invocation (method_name) @name) @reference.call diff --git a/vendored_parsers/tree-sitter-ocaml/script/known_failures.txt b/vendored_parsers/tree-sitter-ocaml/script/known_failures.txt deleted file mode 100644 index 9d0424f1c..000000000 --- a/vendored_parsers/tree-sitter-ocaml/script/known_failures.txt +++ /dev/null @@ -1,47 +0,0 @@ -examples/lablgtk/applications/osiris/osiris.ml -examples/lablgtk/examples/csview.ml -examples/lablgtk/tools/introspection/stubs/stubs_Atk.ml -examples/lablgtk/tools/introspection/stubs/stubs_Pango.ml -examples/lwt/src/react/lwt_react.cppo.ml -examples/lwt/src/unix/lwt_unix.cppo.ml -examples/lwt/src/unix/lwt_unix.cppo.mli -examples/lwt/test/unix/test_lwt_unix.cppo.ml -examples/merlin/tests/test-dirs/completion/infix.t/infix.ml -examples/merlin/tests/test-dirs/completion/parenthesize.t/parenthesize.ml -examples/merlin/tests/test-dirs/construct/c-modules.t/functor_app.ml -examples/merlin/tests/test-dirs/construct/c-modules.t/module.ml -examples/merlin/tests/test-dirs/errors/typing-after-parsing.t/test.ml -examples/merlin/tests/test-dirs/locate/context-detection/cd-label.t/label.ml -examples/ocaml/stdlib/templates/float.template.mli -examples/ocaml/stdlib/templates/moreLabels.template.mli -examples/ocaml/testsuite/tests/generated-parse-errors/errors.ml -examples/ocaml/testsuite/tests/lexing/escape.ml -examples/ocaml/testsuite/tests/lexing/uchar_esc.ml -examples/ocaml/testsuite/tests/parse-errors/* -examples/ocaml/testsuite/tests/parsing/anonymous_class_parameter.ml -examples/ocaml/testsuite/tests/parsing/arrow_ambiguity.ml -examples/ocaml/testsuite/tests/parsing/constructor_declarations.ml -examples/ocaml/testsuite/tests/parsing/docstrings.ml -examples/ocaml/testsuite/tests/parsing/pr6604_2.ml -examples/ocaml/testsuite/tests/parsing/pr6604.ml -examples/ocaml/testsuite/tests/tool-toplevel/error_highlighting_use2.ml -examples/ocaml/testsuite/tests/tool-toplevel/error_highlighting_use3.ml -examples/ocaml/testsuite/tests/tool-toplevel/error_highlighting.ml -examples/ocaml/testsuite/tests/typing-misc/typecore_errors.ml -examples/ocaml/testsuite/tests/typing-sigsubst/sig_local_aliases_syntax_errors.ml -examples/ocaml/testsuite/tests/typing-sigsubst/sig_local_aliases.ml -examples/ocaml/testsuite/tests/typing-warnings/pr7261.ml -examples/ocamlformat/test/failing/*/* -examples/ocamlformat/test/passing/*/* -examples/ocamlformat/test/rpc/big_margin/foo.ml -examples/ocamlformat/vendor/parser-recovery/test/expect/signature/*.mli -examples/ocamlformat/vendor/parser-recovery/test/expect/structure/*.ml -examples/ppxlib/astlib/astlib.ml -examples/ppxlib/astlib/location.ml -examples/ppxlib/astlib/longident.ml -examples/ppxlib/test/code_path/test.ml -examples/ppxlib/test/driver/non-compressible-suffix/test.ml -examples/ppxlib/test/ppx_import_support/test.ml -examples/ppxlib/test/quoter/test.ml -examples/opam/src/core/opamCompat.ml -examples/opam/src/core/opamCompat.mli diff --git a/vendored_parsers/tree-sitter-ocaml/script/parse-examples b/vendored_parsers/tree-sitter-ocaml/script/parse-examples deleted file mode 100755 index 5773db7a6..000000000 --- a/vendored_parsers/tree-sitter-ocaml/script/parse-examples +++ /dev/null @@ -1,60 +0,0 @@ -#!/bin/bash - -set -e - -cd "$(dirname "$0")/.." - -function clone_repo { - owner=$1 - name=$2 - sha=$3 - - path=examples/$name - if [ ! -d "$path" ]; then - echo "Cloning $owner/$name" - git clone "https://github.com/$owner/$name" "$path" - fi - - pushd "$path" > /dev/null - head=$(git rev-parse HEAD) - if [ "$head" != "$sha" ]; then - echo "Updating $owner/$name from $head to $sha" - git fetch - git reset --hard $sha - fi - popd > /dev/null -} - -clone_repo 0install 0install b88111c7dc1612b0beaa175df9c91df4fa36556b -clone_repo BinaryAnalysisPlatform bap a972f8a419294dfb21847db5172ba58c5d7767eb -clone_repo dbuenzli cmdliner 2c370b7ca519473584c04a3c4f89683f3cc0aad0 -clone_repo facebook flow 5ada26749e0a95a1e562aee955859cc10decf517 -clone_repo facebook pyre-check b794d924f77dd005af15da6fafb73010394804e3 -clone_repo garrigue lablgtk b298ee1b4cba588537df1c4cfd996358e3a8750b -clone_repo janestreet base 8993e35ba2e83e5020b2deb548253ef1e4a699d4 -clone_repo mirage ocaml-cohttp 628d8716b22bb7933863dd584673745c974707be -clone_repo ocaml dune 50815dbdda5c924142bf2c54feba87c5894465d5 -clone_repo ocaml merlin dd7663fcff929ac395909cada9e829acdc77e97e -clone_repo ocaml ocaml 1042d5cd441ec2c8b5c87151313dbe7d1eebf2e7 -clone_repo ocaml opam 51d458b5946d938aa2b45ddc924a2ad75130fb69 -clone_repo ocaml-ppx ocamlformat b436f8d9e53661c1f5b51d40f701b9bd74cd4f84 -clone_repo ocaml-ppx ppxlib 5fe8514d59ccbdd312b709ed3aea00781feefca3 -clone_repo ocsigen js_of_ocaml ee5c335882aab362e66f5993d2a97bf7886cd247 -clone_repo ocsigen lwt b3e7dd029dacbe37df9565c142c2206cfe6831c2 -clone_repo owlbarn owl eead31f1920e63b876421e6a30e61c947f29827f - -known_failures="$(cat script/known_failures.txt)" - -tree-sitter parse -q \ - 'examples/**/*.ml' \ - 'examples/**/*.mli' \ - $(for failure in $known_failures; do echo "!${failure}"; done) - -example_count=$(find examples -name '*.ml' -o -name '*.mli' | wc -l) -failure_count=$(wc -w <<< "$known_failures") -success_count=$(( $example_count - $failure_count )) -success_percent=$(bc -l <<< "100*${success_count}/${example_count}") - -printf \ - "Successfully parsed %d of %d example files (%.1f%%)\n" \ - $success_count $example_count $success_percent diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/attributes.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/attributes.ml deleted file mode 100644 index eb8970c57..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/attributes.ml +++ /dev/null @@ -1,4 +0,0 @@ -[@@@id payload] -(* <- punctuation.special *) - (* ^ attribute *) - (* ^ punctuation.special *) diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/constants.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/constants.ml deleted file mode 100644 index 1aa5d9def..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/constants.ml +++ /dev/null @@ -1,14 +0,0 @@ -let t = true - (* ^ constant *) - -let c = 'c' - (* ^ string *) - -let () = Printf.printf "string\n%d" 5 - (* ^ punctuation.bracket *) - (* ^ string *) - (* ^ escape *) - (* ^ string.special *) - (* ^ number *) - let x = {id|string|id} - (* ^ string *) diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/functions.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/functions.ml deleted file mode 100644 index 4e83cd4d8..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/functions.ml +++ /dev/null @@ -1,32 +0,0 @@ -let f x = failwith "not_implemented" - (* ^ function *) - (* ^ variable.parameter *) - (* ^ function.builtin *) -let f = fun x -> x - (* ^ function *) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - -let f = function Some x -> true | None -> false - (* ^ function *) - -module type T = sig - val f : int -> int - (* ^ function *) -end - -external f : int -> int = "f" - (* ^ function *) - -let x = f 0 - (* ^ variable *) - (* ^ function *) - -let x = f @@ x |> f - (* ^ variable *) - (* ^ function *) - (* ^ variable *) - (* ^ function *) - -let f ~l:x = 0 - (* ^ property *) diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/locals.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/locals.ml deleted file mode 100644 index fd8140674..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/locals.ml +++ /dev/null @@ -1,47 +0,0 @@ -let f x ({a = y} as r) (Some z) = - (* ^ function *) - (* ^ variable.parameter *) - (* ^ property *) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - (x, a, y, r, z) -(* ^ variable.parameter *) - (* ^ variable *) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - -let f = fun x -> (x, y) - (* ^ variable.parameter *) - (* ^ variable.parameter *) - (* ^ variable *) - -let _ = - match o with - | Some x -> x - (* ^ variable.parameter *) - | None -> y - (* ^ variable *) - -let () = - for x = 1 to n do - ignore x; - (* ^ variable.parameter *) - ignore n; - (* ^ variable *) - done - -let (x, y) = (x, y) - (* ^ variable *) - (* ^ variable *) - (* ^ variable *) - (* ^ variable *) - -let {a = x} = assert false - (* ^ variable *) - -let f x = (M.x, x) - (* ^ variable.parameter *) - (* ^ variable *) - (* ^ variable.parameter *) diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/modules.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/modules.ml deleted file mode 100644 index e40a4fc7c..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/modules.ml +++ /dev/null @@ -1,38 +0,0 @@ -module type T = sig -(* <- keyword *) - (* ^ keyword *) - (* ^ constructor *) - (* ^ punctuation.delimiter *) - (* ^ keyword *) - val x : int -end -(* <- keyword *) - -module M : T = struct -(* <- keyword *) - (* ^ constructor *) - (* ^ punctuation.delimiter *) - (* ^ constructor *) - let x = 0 -end - -module F (M : T) = struct - (* ^ constructor *) - (* ^ punctuation.bracket *) - (* ^ constructor *) - (* ^ constructor *) - (* ^ punctuation.bracket *) - (* ^ keyword *) - include M - (* <- keyword *) - (* ^ constructor *) -end - -module N = F (M) - (* ^ constructor *) - (* ^ constructor *) - (* ^ constructor *) - -let x = N.x - (* ^ constructor *) - (* ^ punctuation.delimiter *) diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/operators.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/operators.ml deleted file mode 100644 index 2859c8567..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/operators.ml +++ /dev/null @@ -1,19 +0,0 @@ -let ( + ) = ( * ) - (* ^ operator *) - (* ^ operator *) -let x = (1 + 2) :: 3 - (* ^ operator *) - (* ^ operator *) - -let f = function +1 -> true | -1 -> true | _ -> false - (* ^ operator *) - (* ^ operator *) - -let ( let* ) x f = f x - (* ^ operator *) - -let () = - let* x = 0 and* y = 1 in - (* <- keyword *) - (* ^ keyword *) - ignore x diff --git a/vendored_parsers/tree-sitter-ocaml/test/highlight/types.ml b/vendored_parsers/tree-sitter-ocaml/test/highlight/types.ml deleted file mode 100644 index 25aaa9bb7..000000000 --- a/vendored_parsers/tree-sitter-ocaml/test/highlight/types.ml +++ /dev/null @@ -1,33 +0,0 @@ -type ('a, 'b) either = Left of 'a | Right of 'b -(* <- keyword *) (* ^ tag *) - (* ^ variable *) (* ^ keyword *) - (* ^ variable *) (* ^ variable *) - (* ^ type *) (* ^ punctuation.delimiter *) - -let x : (bool, int) either = Left true - (* ^ type.builtin *) - (* ^ type.builtin *) - (* ^ type *) - (* ^ tag *) - - -type ('a, 'b) either' = [`Left of 'a | `Right of 'b] - (* ^ punctuation.bracket *) - (* ^ punctuation.delimiter *) - (* ^ punctuation.bracket *) - (* ^ tag *) (* ^ tag *) - -type pos = {x : int; y : int} - (* ^ punctuation.bracket *) - (* ^ property *) - (* ^ punctuation.delimiter *) - (* ^ property *) - (* ^ punctuation.bracket *) - -type x = < x : int > - (* ^ punctuation.bracket *) - (* ^ punctuation.bracket *) - -type (-'a, +'b) func = 'a -> 'b - (* ^ punctuation.delimiter *) - (* ^ punctuation.delimiter *)